blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
281
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 6
116
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 313
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 18.2k
668M
⌀ | star_events_count
int64 0
102k
| fork_events_count
int64 0
38.2k
| gha_license_id
stringclasses 17
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 107
values | src_encoding
stringclasses 20
values | language
stringclasses 1
value | is_vendor
bool 2
classes | is_generated
bool 2
classes | length_bytes
int64 4
6.02M
| extension
stringclasses 78
values | content
stringlengths 2
6.02M
| authors
listlengths 1
1
| author
stringlengths 0
175
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
86cbdae109b4c825963487d37ab3fd54f673eda2
|
0ec9e67e3d11982e1c6eb23375490217f9960dd3
|
/UCB_Python/Week3_Python1/week03 day3 python1/07-Ins_Conditionals/conditionals.py
|
ac2d92ce67378b997e17a0524bbf2d5d383dba0e
|
[] |
no_license
|
yamscha/repo_class
|
53fb317394b3a469c1b8f1d5dfbcf89982b4f0c4
|
d8080ea15c2387789f89292412a7a7a047df1a21
|
refs/heads/master
| 2020-05-02T10:59:29.839497
| 2019-03-27T03:54:50
| 2019-03-27T03:54:50
| 177,914,091
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 927
|
py
|
x = 1
y = 10
# Checks if one value is equal to another
if(x == 1):
print("x is equal to 1")
# Checks if one value is NOT equal to another
if(y != 1):
print("y is not equal to 1")
# Checks if one value is less than another
if(x < y):
print("x is less than y")
# Checks if one value is greater than another
if(y > x):
print("y is greater than x")
# Checks if a value is less than or equal to another
if(x >= 1):
print("x is greater than or equal to 1")
# Checks for two conditions to be met using "and"
if(x == 1 and y == 10):
print("Both values returned true")
# Checks if either of two conditions is met
if(x < 45 or y < 5):
print("One or the other statements were true")
# Nested if statements
if(x < 10):
if(y < 5):
print("x is less than 10 and y is less than 5")
elif(y == 5):
print("x is less than 10 and y is equal to 5")
else:
print("x is less than 10 and y is greater than 5")
|
[
"yamini@github.com"
] |
yamini@github.com
|
a96d952d1a399291f4734fc2da61c0f1807e72c0
|
72624033973a14ccf943e7a4cbfb51b88e8db3f0
|
/lesson/json_parsing.py
|
1959ad43c05cae4bf9b1846d40cf2762a65cd017
|
[] |
no_license
|
brskasimova/LearnQA_PythonAPI
|
4441690bc92f98899e1958755734877ee3f264f8
|
98bdf01c782ce7d3fc6c88a183001b956d87b2b8
|
refs/heads/master
| 2023-06-23T20:20:15.340836
| 2021-07-31T19:24:22
| 2021-07-31T19:24:22
| 385,873,244
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 359
|
py
|
import json
json_text = '{"messages":[{"message":"This is the first message","timestamp":"2021-06-04 16:40:53"},{"message":"And this is a second message","timestamp":"2021-06-04 16:41:01"}]}'
obj = json.loads(json_text)
key = "messages"
if key in obj:
value = obj[key][1]
print(value["message"])
else:
print(f"Ключа {key} в JSON нет")
|
[
"brskasimova@gmail.com"
] |
brskasimova@gmail.com
|
d195b352ac21be2ab82b0a6a1eedc768c5b2782d
|
7abdff02d94848c1d5a5f1926596b7e72e47b5c5
|
/.ipynb_checkpoints/mission_to_mars-checkpoint.ipynb
|
76356d246a3c06428cd519746747a599ad49b2f1
|
[] |
no_license
|
rsimon5/Mission-to-Mars
|
4edab055471d2cdff35874fd4fb75d86549064ac
|
bb21596ddb5db94e6872af41db9b40dfa0599bef
|
refs/heads/master
| 2020-06-01T06:34:02.836899
| 2019-06-22T14:53:03
| 2019-06-22T14:53:03
| 190,680,451
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 789,309
|
ipynb
|
{
"cells": [
{
"cell_type": "code",
"execution_count": 64,
"metadata": {},
"outputs": [],
"source": [
"from bs4 import BeautifulSoup\n",
"from splinter import Browser\n",
"import requests\n",
"import pymongo\n",
"import pandas as pd \n",
"import time\n",
"import datetime"
]
},
{
"cell_type": "code",
"execution_count": 65,
"metadata": {},
"outputs": [],
"source": [
"mars=dict()"
]
},
{
"cell_type": "code",
"execution_count": 66,
"metadata": {},
"outputs": [],
"source": [
"mars_url = 'https://mars.nasa.gov/news/'\n",
"response = requests.get(mars_url)"
]
},
{
"cell_type": "code",
"execution_count": 67,
"metadata": {},
"outputs": [],
"source": [
"soup = BeautifulSoup(response.text, 'lxml')"
]
},
{
"cell_type": "code",
"execution_count": 68,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<!DOCTYPE html>\n",
"<html lang=\"en\" xml:lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\">\n",
" <head>\n",
" <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\"/>\n",
" <!-- Always force latest IE rendering engine or request Chrome Frame -->\n",
" <meta content=\"IE=edge,chrome=1\" http-equiv=\"X-UA-Compatible\"/>\n",
" <script type=\"text/javascript\">\n",
" window.NREUM||(NREUM={});NREUM.info={\"beacon\":\"bam.nr-data.net\",\"errorBeacon\":\"bam.nr-data.net\",\"licenseKey\":\"5e33925808\",\"applicationID\":\"59562082\",\"transactionName\":\"JVcPR0MLWApSRU1eAQVVEhxSC1oSUlkWbBMHXwRAHhdcCUA=\",\"queueTime\":0,\"applicationTime\":381,\"agent\":\"\"}\n",
" </script>\n",
" <script type=\"text/javascript\">\n",
" (window.NREUM||(NREUM={})).loader_config={xpid:\"VQcPUlZTDxAFXVRUBQEPVA==\"};window.NREUM||(NREUM={}),__nr_require=function(t,n,e){function r(e){if(!n[e]){var o=n[e]={exports:{}};t[e][0].call(o.exports,function(n){var o=t[e][1][n];return r(o||n)},o,o.exports)}return n[e].exports}if(\"function\"==typeof __nr_require)return __nr_require;for(var o=0;o<e.length;o++)r(e[o]);return r}({1:[function(t,n,e){function r(t){try{s.console&&console.log(t)}catch(n){}}var o,i=t(\"ee\"),a=t(18),s={};try{o=localStorage.getItem(\"__nr_flags\").split(\",\"),console&&\"function\"==typeof console.log&&(s.console=!0,o.indexOf(\"dev\")!==-1&&(s.dev=!0),o.indexOf(\"nr_dev\")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on(\"internal-error\",function(t){r(t.stack)}),s.dev&&i.on(\"fn-err\",function(t,n,e){r(e.stack)}),s.dev&&(r(\"NR AGENT IN DEVELOPMENT MODE\"),r(\"flags: \"+a(s,function(t,n){return t}).join(\", \")))},{}],2:[function(t,n,e){function r(t,n,e,r,s){try{p?p-=1:o(s||new UncaughtException(t,n,e),!0)}catch(f){try{i(\"ierr\",[f,c.now(),!0])}catch(d){}}return\"function\"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,n,e){this.message=t||\"Uncaught error with no additional information\",this.sourceURL=n,this.line=e}function o(t,n){var e=n?null:c.now();i(\"err\",[t,e])}var i=t(\"handle\"),a=t(19),s=t(\"ee\"),c=t(\"loader\"),f=t(\"gos\"),u=window.onerror,d=!1,l=\"nr@seenError\",p=0;c.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){\"stack\"in h&&(t(8),t(7),\"addEventListener\"in window&&t(5),c.xhrWrappable&&t(9),d=!0)}s.on(\"fn-start\",function(t,n,e){d&&(p+=1)}),s.on(\"fn-err\",function(t,n,e){d&&!e[l]&&(f(e,l,function(){return!0}),this.thrown=!0,o(e))}),s.on(\"fn-end\",function(){d&&!this.thrown&&p>0&&(p-=1)}),s.on(\"internal-error\",function(t){i(\"ierr\",[t,c.now(),!0])})},{}],3:[function(t,n,e){t(\"loader\").features.ins=!0},{}],4:[function(t,n,e){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t(\"ee\"),i=t(\"handle\"),a=t(8),s=t(7),c=\"learResourceTimings\",f=\"addEventListener\",u=\"resourcetimingbufferfull\",d=\"bstResource\",l=\"resource\",p=\"-start\",h=\"-end\",m=\"fn\"+p,w=\"fn\"+h,v=\"bstTimer\",y=\"pushState\",g=t(\"loader\");g.features.stn=!0,t(6);var x=NREUM.o.EV;o.on(m,function(t,n){var e=t[0];e instanceof x&&(this.bstStart=g.now())}),o.on(w,function(t,n){var e=t[0];e instanceof x&&i(\"bst\",[e,n,this.bstStart,g.now()])}),a.on(m,function(t,n,e){this.bstStart=g.now(),this.bstType=e}),a.on(w,function(t,n){i(v,[n,this.bstStart,g.now(),this.bstType])}),s.on(m,function(){this.bstStart=g.now()}),s.on(w,function(t,n){i(v,[n,this.bstStart,g.now(),\"requestAnimationFrame\"])}),o.on(y+p,function(t){this.time=g.now(),this.startPath=location.pathname+location.hash}),o.on(y+h,function(t){i(\"bstHist\",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance[\"c\"+c]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance[\"c\"+c]()},!1):window.performance[f](\"webkit\"+u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance[\"webkitC\"+c]()},!1)),document[f](\"scroll\",r,{passive:!0}),document[f](\"keypress\",r,!1),document[f](\"click\",r,!1)}},{}],5:[function(t,n,e){function r(t){for(var n=t;n&&!n.hasOwnProperty(u);)n=Object.getPrototypeOf(n);n&&o(n)}function o(t){s.inPlace(t,[u,d],\"-\",i)}function i(t,n){return t[1]}var a=t(\"ee\").get(\"events\"),s=t(21)(a,!0),c=t(\"gos\"),f=XMLHttpRequest,u=\"addEventListener\",d=\"removeEventListener\";n.exports=a,\"getPrototypeOf\"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+\"-start\",function(t,n){var e=t[1],r=c(e,\"nr@wrapped\",function(){function t(){if(\"function\"==typeof e.handleEvent)return e.handleEvent.apply(e,arguments)}var n={object:t,\"function\":e}[typeof e];return n?s(n,\"fn-\",null,n.name||\"anonymous\"):e});this.wrapped=t[1]=r}),a.on(d+\"-start\",function(t){t[1]=this.wrapped||t[1]})},{}],6:[function(t,n,e){var r=t(\"ee\").get(\"history\"),o=t(21)(r);n.exports=r,o.inPlace(window.history,[\"pushState\",\"replaceState\"],\"-\")},{}],7:[function(t,n,e){var r=t(\"ee\").get(\"raf\"),o=t(21)(r),i=\"equestAnimationFrame\";n.exports=r,o.inPlace(window,[\"r\"+i,\"mozR\"+i,\"webkitR\"+i,\"msR\"+i],\"raf-\"),r.on(\"raf-start\",function(t){t[0]=o(t[0],\"fn-\")})},{}],8:[function(t,n,e){function r(t,n,e){t[0]=a(t[0],\"fn-\",null,e)}function o(t,n,e){this.method=e,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],\"fn-\",this,e)}var i=t(\"ee\").get(\"timer\"),a=t(21)(i),s=\"setTimeout\",c=\"setInterval\",f=\"clearTimeout\",u=\"-start\",d=\"-\";n.exports=i,a.inPlace(window,[s,\"setImmediate\"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,\"clearImmediate\"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],9:[function(t,n,e){function r(t,n){d.inPlace(n,[\"onreadystatechange\"],\"fn-\",s)}function o(){var t=this,n=u.context(t);t.readyState>3&&!n.resolved&&(n.resolved=!0,u.emit(\"xhr-resolved\",[],t)),d.inPlace(t,y,\"fn-\",s)}function i(t){g.push(t),h&&(b?b.then(a):w?w(a):(E=-E,R.data=E))}function a(){for(var t=0;t<g.length;t++)r([],g[t]);g.length&&(g=[])}function s(t,n){return n}function c(t,n){for(var e in t)n[e]=t[e];return n}t(5);var f=t(\"ee\"),u=f.get(\"xhr\"),d=t(21)(u),l=NREUM.o,p=l.XHR,h=l.MO,m=l.PR,w=l.SI,v=\"readystatechange\",y=[\"onload\",\"onerror\",\"onabort\",\"onloadstart\",\"onloadend\",\"onprogress\",\"ontimeout\"],g=[];n.exports=u;var x=window.XMLHttpRequest=function(t){var n=new p(t);try{u.emit(\"new-xhr\",[n],n),n.addEventListener(v,o,!1)}catch(e){try{u.emit(\"internal-error\",[e])}catch(r){}}return n};if(c(p,x),x.prototype=p.prototype,d.inPlace(x.prototype,[\"open\",\"send\"],\"-xhr-\",s),u.on(\"send-xhr-start\",function(t,n){r(t,n),i(n)}),u.on(\"open-xhr-start\",r),h){var b=m&&m.resolve();if(!w&&!m){var E=1,R=document.createTextNode(E);new h(a).observe(R,{characterData:!0})}}else f.on(\"fn-end\",function(t){t[0]&&t[0].type===v||a()})},{}],10:[function(t,n,e){function r(){var t=window.NREUM,n=t.info.accountID||null,e=t.info.agentID||null,r=t.info.trustKey||null,i=\"btoa\"in window&&\"function\"==typeof window.btoa;if(!n||!e||!i)return null;var a={v:[0,1],d:{ty:\"Browser\",ac:n,ap:e,id:o.generateCatId(),tr:o.generateCatId(),ti:Date.now()}};return r&&n!==r&&(a.d.tk=r),btoa(JSON.stringify(a))}var o=t(16);n.exports={generateTraceHeader:r}},{}],11:[function(t,n,e){function r(t){var n=this.params,e=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeEventListener(l[r],this.listener,!1);n.aborted||(e.duration=s.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==n.status&&(n.status=0):a(this,t),e.cbTime=this.cbTime,d.emit(\"xhr-done\",[t],t),c(\"xhr\",[n,e,this.startTime]))}}function o(t,n){var e=t.responseType;if(\"json\"===e&&null!==n)return n;var r=\"arraybuffer\"===e||\"blob\"===e||\"json\"===e?t.response:t.responseText;return w(r)}function i(t,n){var e=f(n),r=t.params;r.host=e.hostname+\":\"+e.port,r.pathname=e.pathname,t.sameOrigin=e.sameOrigin}function a(t,n){t.params.status=n.status;var e=o(n,t.lastSize);if(e&&(t.metrics.rxSize=e),t.sameOrigin){var r=n.getResponseHeader(\"X-NewRelic-App-Data\");r&&(t.params.cat=r.split(\", \").pop())}t.loadCaptureCalled=!0}var s=t(\"loader\");if(s.xhrWrappable){var c=t(\"handle\"),f=t(12),u=t(10).generateTraceHeader,d=t(\"ee\"),l=[\"load\",\"error\",\"abort\",\"timeout\"],p=l.length,h=t(\"id\"),m=t(15),w=t(14),v=window.XMLHttpRequest;s.features.xhr=!0,t(9),d.on(\"new-xhr\",function(t){var n=this;n.totalCbs=0,n.called=0,n.cbTime=0,n.end=r,n.ended=!1,n.xhrGuids={},n.lastSize=null,n.loadCaptureCalled=!1,t.addEventListener(\"load\",function(e){a(n,t)},!1),m&&(m>34||m<10)||window.opera||t.addEventListener(\"progress\",function(t){n.lastSize=t.loaded},!1)}),d.on(\"open-xhr-start\",function(t){this.params={method:t[0]},i(this,t[1]),this.metrics={}}),d.on(\"open-xhr-end\",function(t,n){\"loader_config\"in NREUM&&\"xpid\"in NREUM.loader_config&&this.sameOrigin&&n.setRequestHeader(\"X-NewRelic-ID\",NREUM.loader_config.xpid);var e=!1;if(\"init\"in NREUM&&\"distributed_tracing\"in NREUM.init&&(e=!!NREUM.init.distributed_tracing.enabled),e&&this.sameOrigin){var r=u();r&&n.setRequestHeader(\"newrelic\",r)}}),d.on(\"send-xhr-start\",function(t,n){var e=this.metrics,r=t[0],o=this;if(e&&r){var i=w(r);i&&(e.txSize=i)}this.startTime=s.now(),this.listener=function(t){try{\"abort\"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),(\"load\"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||\"function\"!=typeof n.onload))&&o.end(n)}catch(e){try{d.emit(\"internal-error\",[e])}catch(r){}}};for(var a=0;a<p;a++)n.addEventListener(l[a],this.listener,!1)}),d.on(\"xhr-cb-time\",function(t,n,e){this.cbTime+=t,n?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&\"function\"==typeof e.onload||this.end(e)}),d.on(\"xhr-load-added\",function(t,n){var e=\"\"+h(t)+!!n;this.xhrGuids&&!this.xhrGuids[e]&&(this.xhrGuids[e]=!0,this.totalCbs+=1)}),d.on(\"xhr-load-removed\",function(t,n){var e=\"\"+h(t)+!!n;this.xhrGuids&&this.xhrGuids[e]&&(delete this.xhrGuids[e],this.totalCbs-=1)}),d.on(\"addEventListener-end\",function(t,n){n instanceof v&&\"load\"===t[0]&&d.emit(\"xhr-load-added\",[t[1],t[2]],n)}),d.on(\"removeEventListener-end\",function(t,n){n instanceof v&&\"load\"===t[0]&&d.emit(\"xhr-load-removed\",[t[1],t[2]],n)}),d.on(\"fn-start\",function(t,n,e){n instanceof v&&(\"onload\"===e&&(this.onload=!0),(\"load\"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=s.now()))}),d.on(\"fn-end\",function(t,n){this.xhrCbStart&&d.emit(\"xhr-cb-time\",[s.now()-this.xhrCbStart,this.onload,n],n)})}},{}],12:[function(t,n,e){n.exports=function(t){var n=document.createElement(\"a\"),e=window.location,r={};n.href=t,r.port=n.port;var o=n.href.split(\"://\");!r.port&&o[1]&&(r.port=o[1].split(\"/\")[0].split(\"@\").pop().split(\":\")[1]),r.port&&\"0\"!==r.port||(r.port=\"https\"===o[0]?\"443\":\"80\"),r.hostname=n.hostname||e.hostname,r.pathname=n.pathname,r.protocol=o[0],\"/\"!==r.pathname.charAt(0)&&(r.pathname=\"/\"+r.pathname);var i=!n.protocol||\":\"===n.protocol||n.protocol===e.protocol,a=n.hostname===document.domain&&n.port===e.port;return r.sameOrigin=i&&(!n.hostname||a),r}},{}],13:[function(t,n,e){function r(){}function o(t,n,e){return function(){return i(t,[f.now()].concat(s(arguments)),n?null:this,e),n?void 0:this}}var i=t(\"handle\"),a=t(18),s=t(19),c=t(\"ee\").get(\"tracer\"),f=t(\"loader\"),u=NREUM;\"undefined\"==typeof window.newrelic&&(newrelic=u);var d=[\"setPageViewName\",\"setCustomAttribute\",\"setErrorHandler\",\"finished\",\"addToTrace\",\"inlineHit\",\"addRelease\"],l=\"api-\",p=l+\"ixn-\";a(d,function(t,n){u[n]=o(l+n,!0,\"api\")}),u.addPageAction=o(l+\"addPageAction\",!0),u.setCurrentRouteName=o(l+\"routeName\",!0),n.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createTracer:function(t,n){var e={},r=this,o=\"function\"==typeof n;return i(p+\"tracer\",[f.now(),t,e],r),function(){if(c.emit((o?\"\":\"no-\")+\"fn-start\",[f.now(),r,o],e),o)try{return n.apply(this,arguments)}catch(t){throw c.emit(\"fn-err\",[arguments,this,t],e),t}finally{c.emit(\"fn-end\",[f.now()],e)}}}};a(\"actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get\".split(\",\"),function(t,n){h[n]=o(p+n)}),newrelic.noticeError=function(t,n){\"string\"==typeof t&&(t=new Error(t)),i(\"err\",[t,f.now(),!1,n])}},{}],14:[function(t,n,e){n.exports=function(t){if(\"string\"==typeof t&&t.length)return t.length;if(\"object\"==typeof t){if(\"undefined\"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if(\"undefined\"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!(\"undefined\"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(n){return}}}},{}],15:[function(t,n,e){var r=0,o=navigator.userAgent.match(/Firefox[\\/\\s](\\d+\\.\\d+)/);o&&(r=+o[1]),n.exports=r},{}],16:[function(t,n,e){function r(){function t(){return n?15&n[e++]:16*Math.random()|0}var n=null,e=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(n=r.getRandomValues(new Uint8Array(31)));for(var o,i=\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\",a=\"\",s=0;s<i.length;s++)o=i[s],\"x\"===o?a+=t().toString(16):\"y\"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return a}function o(){function t(){return n?15&n[e++]:16*Math.random()|0}var n=null,e=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&Uint8Array&&(n=r.getRandomValues(new Uint8Array(31)));for(var o=[],i=0;i<16;i++)o.push(t().toString(16));return o.join(\"\")}n.exports={generateUuid:r,generateCatId:o}},{}],17:[function(t,n,e){function r(t,n){if(!o)return!1;if(t!==o)return!1;if(!n)return!0;if(!i)return!1;for(var e=i.split(\".\"),r=n.split(\".\"),a=0;a<r.length;a++)if(r[a]!==e[a])return!1;return!0}var o=null,i=null,a=/Version\\/(\\S+)\\s+Safari/;if(navigator.userAgent){var s=navigator.userAgent,c=s.match(a);c&&s.indexOf(\"Chrome\")===-1&&s.indexOf(\"Chromium\")===-1&&(o=\"Safari\",i=c[1])}n.exports={agent:o,version:i,match:r}},{}],18:[function(t,n,e){function r(t,n){var e=[],r=\"\",i=0;for(r in t)o.call(t,r)&&(e[i]=n(r,t[r]),i+=1);return e}var o=Object.prototype.hasOwnProperty;n.exports=r},{}],19:[function(t,n,e){function r(t,n,e){n||(n=0),\"undefined\"==typeof e&&(e=t?t.length:0);for(var r=-1,o=e-n||0,i=Array(o<0?0:o);++r<o;)i[r]=t[n+r];return i}n.exports=r},{}],20:[function(t,n,e){n.exports={exists:\"undefined\"!=typeof window.performance&&window.performance.timing&&\"undefined\"!=typeof window.performance.timing.navigationStart}},{}],21:[function(t,n,e){function r(t){return!(t&&t instanceof Function&&t.apply&&!t[a])}var o=t(\"ee\"),i=t(19),a=\"nr@original\",s=Object.prototype.hasOwnProperty,c=!1;n.exports=function(t,n){function e(t,n,e,o){function nrWrapper(){var r,a,s,c;try{a=this,r=i(arguments),s=\"function\"==typeof e?e(r,a):e||{}}catch(f){l([f,\"\",[r,a,o],s])}u(n+\"start\",[r,a,o],s);try{return c=t.apply(a,r)}catch(d){throw u(n+\"err\",[r,a,d],s),d}finally{u(n+\"end\",[r,a,c],s)}}return r(t)?t:(n||(n=\"\"),nrWrapper[a]=t,d(t,nrWrapper),nrWrapper)}function f(t,n,o,i){o||(o=\"\");var a,s,c,f=\"-\"===o.charAt(0);for(c=0;c<n.length;c++)s=n[c],a=t[s],r(a)||(t[s]=e(a,f?s+o:o,i,s))}function u(e,r,o){if(!c||n){var i=c;c=!0;try{t.emit(e,r,o,n)}catch(a){l([a,e,r,o])}c=i}}function d(t,n){if(Object.defineProperty&&Object.keys)try{var e=Object.keys(t);return e.forEach(function(e){Object.defineProperty(n,e,{get:function(){return t[e]},set:function(n){return t[e]=n,n}})}),n}catch(r){l([r])}for(var o in t)s.call(t,o)&&(n[o]=t[o]);return n}function l(n){try{t.emit(\"internal-error\",n)}catch(e){}}return t||(t=o),e.inPlace=f,e.flag=a,e}},{}],ee:[function(t,n,e){function r(){}function o(t){function n(t){return t&&t instanceof r?t:t?c(t,s,i):i()}function e(e,r,o,i){if(!l.aborted||i){t&&t(e,r,o);for(var a=n(o),s=m(e),c=s.length,f=0;f<c;f++)s[f].apply(a,r);var d=u[g[e]];return d&&d.push([x,e,r,a]),a}}function p(t,n){y[t]=m(t).concat(n)}function h(t,n){var e=y[t];if(e)for(var r=0;r<e.length;r++)e[r]===n&&e.splice(r,1)}function m(t){return y[t]||[]}function w(t){return d[t]=d[t]||o(e)}function v(t,n){f(t,function(t,e){n=n||\"feature\",g[e]=n,n in u||(u[n]=[])})}var y={},g={},x={on:p,addEventListener:p,removeEventListener:h,emit:e,get:w,listeners:m,context:n,buffer:v,abort:a,aborted:!1};return x}function i(){return new r}function a(){(u.api||u.feature)&&(l.aborted=!0,u=l.backlog={})}var s=\"nr@context\",c=t(\"gos\"),f=t(18),u={},d={},l=n.exports=o();l.backlog=u},{}],gos:[function(t,n,e){function r(t,n,e){if(o.call(t,n))return t[n];var r=e();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,n,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[n]=r,r}var o=Object.prototype.hasOwnProperty;n.exports=r},{}],handle:[function(t,n,e){function r(t,n,e,r){o.buffer([t],r),o.emit(t,n,e)}var o=t(\"ee\").get(\"handle\");n.exports=r,r.ee=o},{}],id:[function(t,n,e){function r(t){var n=typeof t;return!t||\"object\"!==n&&\"function\"!==n?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i=\"nr@id\",a=t(\"gos\");n.exports=r},{}],loader:[function(t,n,e){function r(){if(!E++){var t=b.info=NREUM.info,n=p.getElementsByTagName(\"script\")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&n))return u.abort();f(g,function(n,e){t[n]||(t[n]=e)}),c(\"mark\",[\"onload\",a()+b.offset],null,\"api\");var e=p.createElement(\"script\");e.src=\"https://\"+t.agent,n.parentNode.insertBefore(e,n)}}function o(){\"complete\"===p.readyState&&i()}function i(){c(\"mark\",[\"domContent\",a()+b.offset],null,\"api\")}function a(){return R.exists&&performance.now?Math.round(performance.now()):(s=Math.max((new Date).getTime(),s))-b.offset}var s=(new Date).getTime(),c=t(\"handle\"),f=t(18),u=t(\"ee\"),d=t(17),l=window,p=l.document,h=\"addEventListener\",m=\"attachEvent\",w=l.XMLHttpRequest,v=w&&w.prototype;NREUM.o={ST:setTimeout,SI:l.setImmediate,CT:clearTimeout,XHR:w,REQ:l.Request,EV:l.Event,PR:l.Promise,MO:l.MutationObserver};var y=\"\"+location,g={beacon:\"bam.nr-data.net\",errorBeacon:\"bam.nr-data.net\",agent:\"js-agent.newrelic.com/nr-1123.min.js\"},x=w&&v&&v[h]&&!/CriOS/.test(navigator.userAgent),b=n.exports={offset:s,now:a,origin:y,features:{},xhrWrappable:x,userAgent:d};t(13),p[h]?(p[h](\"DOMContentLoaded\",i,!1),l[h](\"load\",r,!1)):(p[m](\"onreadystatechange\",o),l[m](\"onload\",r)),c(\"mark\",[\"firstbyte\",s],null,\"api\");var E=0,R=t(20)},{}]},{},[\"loader\",2,11,4,3]);\n",
" </script>\n",
" <!-- Responsiveness -->\n",
" <meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\"/>\n",
" <!-- Favicon -->\n",
" <link href=\"/apple-touch-icon.png\" rel=\"apple-touch-icon\" sizes=\"180x180\"/>\n",
" <link href=\"/favicon-32x32.png\" rel=\"icon\" sizes=\"32x32\" type=\"image/png\"/>\n",
" <link href=\"/favicon-16x16.png\" rel=\"icon\" sizes=\"16x16\" type=\"image/png\"/>\n",
" <link href=\"/manifest.json\" rel=\"manifest\"/>\n",
" <link color=\"#e48b55\" href=\"/safari-pinned-tab.svg\" rel=\"mask-icon\"/>\n",
" <meta content=\"#000000\" name=\"theme-color\"/>\n",
" <meta content=\"authenticity_token\" name=\"csrf-param\"/>\n",
" <meta content=\"93Zncb2qBIXFddD4urxQgwsk4VjgzC9xlQQO12LcI40=\" name=\"csrf-token\"/>\n",
" <title>\n",
" News – NASA’s Mars Exploration Program\n",
" </title>\n",
" <meta content=\"NASA’s Mars Exploration Program \" property=\"og:site_name\"/>\n",
" <meta content=\"mars.nasa.gov\" name=\"author\"/>\n",
" <meta content=\"Mars, missions, NASA, rover, Curiosity, Opportunity, InSight, Mars Reconnaissance Orbiter, facts\" name=\"keywords\"/>\n",
" <meta content=\"NASA’s real-time portal for Mars exploration, featuring the latest news, images, and discoveries from the Red Planet.\" name=\"description\"/>\n",
" <meta content=\"NASA’s real-time portal for Mars exploration, featuring the latest news, images, and discoveries from the Red Planet.\" property=\"og:description\"/>\n",
" <meta content=\"News – NASA’s Mars Exploration Program \" property=\"og:title\"/>\n",
" <meta content=\"https://mars.nasa.gov/news\" property=\"og:url\"/>\n",
" <meta content=\"article\" property=\"og:type\"/>\n",
" <meta content=\"2017-09-22 19:53:22 UTC\" property=\"og:updated_time\"/>\n",
" <meta content=\"https://mars.nasa.gov/system/site_config_values/meta_share_images/1_142497main_PIA03154-200.jpg\" property=\"og:image\"/>\n",
" <meta content=\"https://mars.nasa.gov/system/site_config_values/meta_share_images/1_142497main_PIA03154-200.jpg\" name=\"twitter:image\"/>\n",
" <link href=\"https://mars.nasa.gov/system/site_config_values/meta_share_images/1_142497main_PIA03154-200.jpg\" rel=\"image_src\"/>\n",
" <meta content=\"195570401081308\" property=\"fb:app_id\"/>\n",
" <link href=\"https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700|Raleway:300,400\" rel=\"stylesheet\"/>\n",
" <link href=\"/assets/public_manifest-2900b89d1f605190f8bc48d7358348415c14a9f0a0288a13444603d300c88f69.css\" media=\"all\" rel=\"stylesheet\"/>\n",
" <link href=\"/assets/gulp/vendor/jquery.fancybox-364352e03618ba5a8da007665b1f0be31795293b22bc4d7c5974891d4976a137.css\" media=\"screen\" rel=\"stylesheet\"/>\n",
" <link href=\"/assets/gulp/print-240f8bfaa7f6402dfd6c49ee3c1ffea57a89ddd4c8c90e2f2a5c7d63c5753e32.css\" media=\"print\" rel=\"stylesheet\"/>\n",
" <script src=\"/assets/public_manifest-81b18e395f396f92f48c9c733f9531bc1ba9961d8bdb1c0672ca1fbdc4eb80f2.js\">\n",
" </script>\n",
" <!--[if gt IE 8]><!-->\n",
" <script src=\"/assets/not_ie8_manifest.js\">\n",
" </script>\n",
" <!--[if !IE]>-->\n",
" <script src=\"/assets/not_ie8_manifest.js\">\n",
" </script>\n",
" <!--<![endif]-->\n",
" <script src=\"/assets/vendor/jquery.fancybox-a626572eb7b79487b7a58f4c0e311ae541ca790ef45944109d8140f56dbc897d.js\">\n",
" </script>\n",
" <script src=\"/assets/mb_manifest-2b66fe44b64b49e59f255f050236b37604701279ae629f1a55a2c2c8c72ed7b8.js\">\n",
" </script>\n",
" <!-- /twitter cards -->\n",
" <meta content=\"summary_large_image\" name=\"twitter:card\"/>\n",
" <meta content=\"News \" name=\"twitter:title\"/>\n",
" <meta content=\"NASA’s real-time portal for Mars exploration, featuring the latest news, images, and discoveries from the Red Planet.\" name=\"twitter:description\"/>\n",
" <meta content=\"https://mars.nasa.gov/system/site_config_values/meta_share_images/1_142497main_PIA03154-200.jpg\" name=\"twitter:image\"/>\n",
" </head>\n",
" <body id=\"news\">\n",
" <svg display=\"none\" height=\"0\" width=\"0\">\n",
" <symbol height=\"30\" id=\"circle_plus\" viewbox=\"0 0 30 30\" width=\"30\">\n",
" <g fill-rule=\"evenodd\" transform=\"translate(1 1)\">\n",
" <circle cx=\"14\" cy=\"14\" fill=\"#fff\" fill-opacity=\".1\" fill-rule=\"nonzero\" r=\"14\" stroke=\"inherit\" stroke-width=\"1\">\n",
" </circle>\n",
" <path class=\"the_plus\" d=\"m18.856 12.96v1.738h-4.004v3.938h-1.848v-3.938h-4.004v-1.738h4.004v-3.96h1.848v3.96z\" fill=\"inherit\" stroke-width=\"0\">\n",
" </path>\n",
" </g>\n",
" </symbol>\n",
" <symbol height=\"30\" id=\"circle_arrow\" viewbox=\"0 0 30 30\" width=\"30\" xmlns=\"http://www.w3.org/2000/svg\">\n",
" <g transform=\"translate(1 1)\">\n",
" <circle cx=\"14\" cy=\"14\" fill=\"#fff\" fill-opacity=\".1\" r=\"14\" stroke=\"inherit\" stroke-width=\"1\">\n",
" </circle>\n",
" <path class=\"the_arrow\" d=\"m8.5 15.00025h7.984l-2.342 2.42c-.189.197-.189.518 0 .715l.684.717c.188.197.494.197.684 0l4.35-4.506c.188-.199.188-.52 0-.717l-4.322-4.48c-.189-.199-.496-.199-.684 0l-.684.716c-.189.197-.189.519 0 .716l2.341 2.419h-8.011c-.276 0-.5.223-.5.5v1c0 .275.224.5.5.5z\" fill=\"inherit\" stroke-width=\"0\">\n",
" </path>\n",
" </g>\n",
" </symbol>\n",
" <symbol height=\"30\" id=\"circle_close\" viewbox=\"0 0 30 30\" width=\"30\">\n",
" <g fill-rule=\"evenodd\" transform=\"translate(1 1)\">\n",
" <circle cx=\"14\" cy=\"14\" fill=\"blue\" fill-opacity=\"1\" fill-rule=\"nonzero\" r=\"14\" stroke=\"inherit\" stroke-width=\"1\">\n",
" </circle>\n",
" <path class=\"the_plus\" d=\"m18.856 12.96v1.738h-4.004v3.938h-1.848v-3.938h-4.004v-1.738h4.004v-3.96h1.848v3.96z\" fill=\"inherit\" stroke-width=\"0\">\n",
" </path>\n",
" </g>\n",
" </symbol>\n",
" <symbol height=\"30\" id=\"circle_close_hover\" viewbox=\"0 0 30 30\" width=\"30\">\n",
" <g fill-rule=\"evenodd\" transform=\"translate(1 1)\">\n",
" <circle cx=\"14\" cy=\"14\" fill=\"white\" fill-opacity=\"1\" fill-rule=\"nonzero\" r=\"14\" stroke=\"inherit\" stroke-width=\"1\">\n",
" </circle>\n",
" <path class=\"the_plus\" d=\"m18.856 12.96v1.738h-4.004v3.938h-1.848v-3.938h-4.004v-1.738h4.004v-3.96h1.848v3.96z\" fill=\"inherit\" stroke-width=\"0\">\n",
" </path>\n",
" </g>\n",
" </symbol>\n",
" <symbol height=\"6\" id=\"chevron_down\" viewbox=\"0 0 10 6\" width=\"10\" xmlns=\"http://www.w3.org/2000/svg\">\n",
" <path d=\"m59 7v2.72727273l5 3.27272727 5-3.27272727v-2.72727273l-5 3.2727273z\" transform=\"translate(-59 -7)\">\n",
" </path>\n",
" </symbol>\n",
" </svg>\n",
" <div data-react-class=\"BrowseHappier\" data-react-props='{\"gt\":1,\"lt\":11}'>\n",
" </div>\n",
" <div data-react-class=\"HiPO\" data-react-props=\"{}\">\n",
" </div>\n",
" <div id=\"main_container\">\n",
" <div id=\"site_body\">\n",
" <div class=\"site_header_area\">\n",
" <header class=\"site_header\">\n",
" <div class=\"brand_area\">\n",
" <div class=\"brand1\">\n",
" <a class=\"nasa_logo\" href=\"http://www.nasa.gov\" target=\"_blank\" title=\"visit nasa.gov\">\n",
" NASA\n",
" </a>\n",
" </div>\n",
" <div class=\"brand2\">\n",
" <a class=\"top_logo\" href=\"https://science.nasa.gov/\" target=\"_blank\" title=\"Explore NASA Science\">\n",
" NASA Science\n",
" </a>\n",
" <a class=\"sub_logo\" href=\"/mars-exploration/#\" title=\"Mars\">\n",
" Mars Exploration Program\n",
" </a>\n",
" </div>\n",
" <img alt=\"\" class=\"print_only print_logo\" src=\"/assets/logo_nasa_trio_black@2x.png\"/>\n",
" </div>\n",
" <a class=\"visuallyhidden focusable\" href=\"#page\">\n",
" Skip Navigation\n",
" </a>\n",
" <div class=\"right_header_container\">\n",
" <a class=\"menu_button\" href=\"javascript:void(0);\" id=\"menu_button\">\n",
" <span class=\"menu_icon\">\n",
" menu\n",
" </span>\n",
" </a>\n",
" <a class=\"modal_close\" id=\"modal_close\">\n",
" <span class=\"modal_close_icon\">\n",
" </span>\n",
" </a>\n",
" <div class=\"nav_area\">\n",
" <div id=\"site_nav_container\">\n",
" <nav class=\"site_nav\">\n",
" <ul class=\"nav\">\n",
" <li>\n",
" <div class=\"arrow_box\">\n",
" <span class=\"arrow_down\">\n",
" </span>\n",
" </div>\n",
" <div class=\"nav_title\">\n",
" <a class=\"main_nav_item\" href=\"/#red_planet\" target=\"_self\">\n",
" The Red Planet\n",
" </a>\n",
" </div>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li>\n",
" <a href=\"/#red_planet/0\" target=\"_self\">\n",
" Dashboard\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#red_planet/1\" target=\"_self\">\n",
" Science Goals\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#red_planet/2\" target=\"_self\">\n",
" The Planet\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#red_planet/3\" target=\"_self\">\n",
" Atmosphere\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#red_planet/4\" target=\"_self\">\n",
" Astrobiology\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#red_planet/5\" target=\"_self\">\n",
" Past, Present, Future, Timeline\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" <div class=\"gradient_line\">\n",
" </div>\n",
" </li>\n",
" <li>\n",
" <div class=\"arrow_box\">\n",
" <span class=\"arrow_down\">\n",
" </span>\n",
" </div>\n",
" <div class=\"nav_title\">\n",
" <a class=\"main_nav_item\" href=\"/#mars_exploration_program\" target=\"_self\">\n",
" The Program\n",
" </a>\n",
" </div>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/0\" target=\"_self\">\n",
" Mission Statement\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/1\" target=\"_self\">\n",
" About the Program\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/2\" target=\"_self\">\n",
" Organization\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/3\" target=\"_self\">\n",
" Why Mars?\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/4\" target=\"_self\">\n",
" Research Programs\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/5\" target=\"_self\">\n",
" Planetary Resources\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/6\" target=\"_self\">\n",
" Technologies\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" <div class=\"gradient_line\">\n",
" </div>\n",
" </li>\n",
" <li>\n",
" <div class=\"arrow_box\">\n",
" <span class=\"arrow_down\">\n",
" </span>\n",
" </div>\n",
" <div class=\"nav_title\">\n",
" <a class=\"main_nav_item\" href=\"/#news_and_events\" target=\"_self\">\n",
" News & Events\n",
" </a>\n",
" </div>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li class=\"current\">\n",
" <a href=\"/news\" target=\"_self\">\n",
" News\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/events\" target=\"_self\">\n",
" Events\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" <div class=\"gradient_line\">\n",
" </div>\n",
" </li>\n",
" <li>\n",
" <div class=\"arrow_box\">\n",
" <span class=\"arrow_down\">\n",
" </span>\n",
" </div>\n",
" <div class=\"nav_title\">\n",
" <a class=\"main_nav_item\" href=\"/#multimedia\" target=\"_self\">\n",
" Multimedia\n",
" </a>\n",
" </div>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li>\n",
" <a href=\"/multimedia/images/\" target=\"_self\">\n",
" Images\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/multimedia/videos/\" target=\"_self\">\n",
" Videos\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" <div class=\"gradient_line\">\n",
" </div>\n",
" </li>\n",
" <li>\n",
" <div class=\"arrow_box\">\n",
" <span class=\"arrow_down\">\n",
" </span>\n",
" </div>\n",
" <div class=\"nav_title\">\n",
" <a class=\"main_nav_item\" href=\"/#missions\" target=\"_self\">\n",
" Missions\n",
" </a>\n",
" </div>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li>\n",
" <a href=\"/mars-exploration/missions/?category=167\" target=\"_self\">\n",
" Past\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/mars-exploration/missions/?category=170\" target=\"_self\">\n",
" Present\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/mars-exploration/missions/?category=171\" target=\"_self\">\n",
" Future\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/mars-exploration/partners\" target=\"_self\">\n",
" International Partners\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" <div class=\"gradient_line\">\n",
" </div>\n",
" </li>\n",
" <li>\n",
" <div class=\"nav_title\">\n",
" <a class=\"main_nav_item\" href=\"/#more\" target=\"_self\">\n",
" More\n",
" </a>\n",
" </div>\n",
" <div class=\"gradient_line\">\n",
" </div>\n",
" </li>\n",
" <li>\n",
" <div class=\"nav_title\">\n",
" <a class=\"main_nav_item\" href=\"/legacy\" target=\"_self\">\n",
" Legacy Site\n",
" </a>\n",
" </div>\n",
" <div class=\"gradient_line\">\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" <form action=\"https://mars.nasa.gov/search/\" class=\"overlay_search nav_search\">\n",
" <label class=\"search_label\">\n",
" Search\n",
" </label>\n",
" <input class=\"search_field\" name=\"q\" type=\"text\" value=\"\"/>\n",
" <div class=\"search_submit\">\n",
" </div>\n",
" </form>\n",
" </nav>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </header>\n",
" </div>\n",
" <div id=\"sticky_nav_spacer\">\n",
" </div>\n",
" <div id=\"page\">\n",
" <!-- title to go in the page_header -->\n",
" <div class=\"header_mask\">\n",
" <section class=\"content_page module\">\n",
" </section>\n",
" </div>\n",
" <div class=\"grid_list_page module content_page\">\n",
" <div class=\"grid_layout\">\n",
" <article>\n",
" <header id=\"page_header\">\n",
" </header>\n",
" <div class=\"react_grid_list\" data-react-class=\"GridListPage\" data-react-props='{\"left_column\":false,\"class_name\":\"\",\"default_view\":\"list_view\",\"model\":\"news_items\",\"view_toggle\":false,\"search\":\"true\",\"list_item\":\"News\",\"title\":\"News\",\"categories\":[\"19,165,184,204\"],\"order\":\"publish_date desc,created_at desc\",\"no_items_text\":\"There are no items matching these criteria.\",\"site_title\":\"NASA’s Mars Exploration Program \",\"short_title\":\"Mars\",\"site_share_image\":\"/system/site_config_values/meta_share_images/1_142497main_PIA03154-200.jpg\",\"per_page\":null,\"filters\":\"[ [ \\\"date\\\", [ [ \\\"2019\\\", \\\"2019\\\" ], [ \\\"2018\\\", \\\"2018\\\" ], [ \\\"2017\\\", \\\"2017\\\" ], [ \\\"2016\\\", \\\"2016\\\" ], [ \\\"2015\\\", \\\"2015\\\" ], [ \\\"2014\\\", \\\"2014\\\" ], [ \\\"2013\\\", \\\"2013\\\" ], [ \\\"2012\\\", \\\"2012\\\" ], [ \\\"2011\\\", \\\"2011\\\" ], [ \\\"2010\\\", \\\"2010\\\" ], [ \\\"2009\\\", \\\"2009\\\" ], [ \\\"2008\\\", \\\"2008\\\" ], [ \\\"2007\\\", \\\"2007\\\" ], [ \\\"2006\\\", \\\"2006\\\" ], [ \\\"2005\\\", \\\"2005\\\" ], [ \\\"2004\\\", \\\"2004\\\" ], [ \\\"2003\\\", \\\"2003\\\" ], [ \\\"2002\\\", \\\"2002\\\" ], [ \\\"2001\\\", \\\"2001\\\" ], [ \\\"2000\\\", \\\"2000\\\" ] ], [ \\\"Latest\\\", \\\"\\\" ], false ], [ \\\"categories\\\", [ [ \\\"Feature Stories\\\", 165 ], [ \\\"Press Releases\\\", 19 ], [ \\\"Spotlights\\\", 184 ], [ \\\"Status Reports\\\", 204 ] ], [ \\\"All Categories\\\", \\\"\\\" ], false ] ]\",\"conditions\":null,\"scope_in_title\":true,\"options\":{\"blank_scope\":\"Latest\"},\"results_in_title\":false}'>\n",
" </div>\n",
" </article>\n",
" </div>\n",
" </div>\n",
" <section class=\"module suggested_features\">\n",
" <div class=\"grid_layout\">\n",
" <header>\n",
" <h2 class=\"module_title\">\n",
" You Might Also Like\n",
" </h2>\n",
" </header>\n",
" <section>\n",
" <script>\n",
" $(document).ready(function(){\n",
" $(\".features\").slick({\n",
" dots: false,\n",
" infinite: true,\n",
" speed: 300,\n",
" slide: '.features .slide',\n",
" slidesToShow: 3,\n",
" slidesToScroll: 3,\n",
" lazyLoad: 'ondemand',\n",
" centerMode: false,\n",
" arrows: true,\n",
" appendArrows: '.features .slick-nav',\n",
" appendDots: \".features .slick-nav\",\n",
" responsive: [{\"breakpoint\":953,\"settings\":{\"slidesToShow\":2,\"slidesToScroll\":2,\"centerMode\":false}},{\"breakpoint\":480,\"settings\":{\"slidesToShow\":1,\"slidesToScroll\":1,\"centerMode\":true,\"arrows\":false,\"centerPadding\":\"25px\"}}]\n",
" });\n",
" });\n",
" </script>\n",
" <div class=\"features\">\n",
" <div class=\"slide\">\n",
" <div class=\"image_and_description_container\">\n",
" <a href=\"/news/8442/nasas-curiosity-mars-rover-finds-a-clay-cache/\">\n",
" <div class=\"rollover_description\">\n",
" <div class=\"rollover_description_inner\">\n",
" The rover recently drilled two samples, and both showed the highest levels of clay ever found during the mission.\n",
" </div>\n",
" <div class=\"overlay_arrow\">\n",
" <img alt=\"More\" src=\"/assets/overlay-arrow.png\"/>\n",
" </div>\n",
" </div>\n",
" <img alt=\"NASA's Curiosity Mars Rover Finds a Clay Cache\" class=\"img-lazy\" data-lazy=\"/system/news_items/list_view_images/8442_PIA23240_32x24.jpg\" src=\"/assets/loading_320x240.png\"/>\n",
" </a>\n",
" </div>\n",
" <div class=\"content_title\">\n",
" <a href=\"/news/8442/nasas-curiosity-mars-rover-finds-a-clay-cache/\">\n",
" NASA's Curiosity Mars Rover Finds a Clay Cache\n",
" </a>\n",
" </div>\n",
" </div>\n",
" <div class=\"slide\">\n",
" <div class=\"image_and_description_container\">\n",
" <a href=\"/news/8436/why-this-martian-full-moon-looks-like-candy/\">\n",
" <div class=\"rollover_description\">\n",
" <div class=\"rollover_description_inner\">\n",
" For the first time, NASA's Mars Odyssey orbiter has caught the Martian moon Phobos during a full moon phase. Each color in this new image represents a temperature range detected by Odyssey's infrared camera.\n",
" </div>\n",
" <div class=\"overlay_arrow\">\n",
" <img alt=\"More\" src=\"/assets/overlay-arrow.png\"/>\n",
" </div>\n",
" </div>\n",
" <img alt=\"Why This Martian Full Moon Looks Like Candy\" class=\"img-lazy\" data-lazy=\"/system/news_items/list_view_images/8436_PIA23205_annotated-32x24.jpg\" src=\"/assets/loading_320x240.png\"/>\n",
" </a>\n",
" </div>\n",
" <div class=\"content_title\">\n",
" <a href=\"/news/8436/why-this-martian-full-moon-looks-like-candy/\">\n",
" Why This Martian Full Moon Looks Like Candy\n",
" </a>\n",
" </div>\n",
" </div>\n",
" <div class=\"slide\">\n",
" <div class=\"image_and_description_container\">\n",
" <a href=\"/news/8426/nasa-garners-7-webby-award-nominations/\">\n",
" <div class=\"rollover_description\">\n",
" <div class=\"rollover_description_inner\">\n",
" Nominees include four JPL projects: the solar system and climate websites, InSight social media, and a 360-degree Earth video. Public voting closes April 18, 2019.\n",
" </div>\n",
" <div class=\"overlay_arrow\">\n",
" <img alt=\"More\" src=\"/assets/overlay-arrow.png\"/>\n",
" </div>\n",
" </div>\n",
" <img alt=\"NASA Garners 7 Webby Award Nominations\" class=\"img-lazy\" data-lazy=\"/system/news_items/list_view_images/8426_Webby2019-320x240.jpg\" src=\"/assets/loading_320x240.png\"/>\n",
" </a>\n",
" </div>\n",
" <div class=\"content_title\">\n",
" <a href=\"/news/8426/nasa-garners-7-webby-award-nominations/\">\n",
" NASA Garners 7 Webby Award Nominations\n",
" </a>\n",
" </div>\n",
" </div>\n",
" <div class=\"slide\">\n",
" <div class=\"image_and_description_container\">\n",
" <a href=\"/news/8413/nasas-opportunity-rover-mission-on-mars-comes-to-end/\">\n",
" <div class=\"rollover_description\">\n",
" <div class=\"rollover_description_inner\">\n",
" NASA's Opportunity Mars rover mission is complete after 15 years on Mars. Opportunity's record-breaking exploration laid the groundwork for future missions to the Red Planet.\n",
" </div>\n",
" <div class=\"overlay_arrow\">\n",
" <img alt=\"More\" src=\"/assets/overlay-arrow.png\"/>\n",
" </div>\n",
" </div>\n",
" <img alt=\"NASA's Opportunity Rover Mission on Mars Comes to End\" class=\"img-lazy\" data-lazy=\"/system/news_items/list_view_images/8413_PIA06739-320x240.jpg\" src=\"/assets/loading_320x240.png\"/>\n",
" </a>\n",
" </div>\n",
" <div class=\"content_title\">\n",
" <a href=\"/news/8413/nasas-opportunity-rover-mission-on-mars-comes-to-end/\">\n",
" NASA's Opportunity Rover Mission on Mars Comes to End\n",
" </a>\n",
" </div>\n",
" </div>\n",
" <div class=\"slide\">\n",
" <div class=\"image_and_description_container\">\n",
" <a href=\"/news/8402/nasas-insight-places-first-instrument-on-mars/\">\n",
" <div class=\"rollover_description\">\n",
" <div class=\"rollover_description_inner\">\n",
" In deploying its first instrument onto the surface of Mars, the lander completes a major mission milestone.\n",
" </div>\n",
" <div class=\"overlay_arrow\">\n",
" <img alt=\"More\" src=\"/assets/overlay-arrow.png\"/>\n",
" </div>\n",
" </div>\n",
" <img alt=\"NASA's InSight Places First Instrument on Mars\" class=\"img-lazy\" data-lazy=\"/system/news_items/list_view_images/8402_PIA22977_SEIS_deploy_IDC_calibrated-th.gif\" src=\"/assets/loading_320x240.png\"/>\n",
" </a>\n",
" </div>\n",
" <div class=\"content_title\">\n",
" <a href=\"/news/8402/nasas-insight-places-first-instrument-on-mars/\">\n",
" NASA's InSight Places First Instrument on Mars\n",
" </a>\n",
" </div>\n",
" </div>\n",
" <div class=\"slide\">\n",
" <div class=\"image_and_description_container\">\n",
" <a href=\"/news/8387/nasa-announces-landing-site-for-mars-2020-rover/\">\n",
" <div class=\"rollover_description\">\n",
" <div class=\"rollover_description_inner\">\n",
" After a five-year search, NASA has chosen Jezero Crater as the landing site for its upcoming Mars 2020 rover mission.\n",
" </div>\n",
" <div class=\"overlay_arrow\">\n",
" <img alt=\"More\" src=\"/assets/overlay-arrow.png\"/>\n",
" </div>\n",
" </div>\n",
" <img alt=\"NASA Announces Landing Site for Mars 2020 Rover\" class=\"img-lazy\" data-lazy=\"/system/news_items/list_view_images/8387_JezeroCrater-320x240.jpg\" src=\"/assets/loading_320x240.png\"/>\n",
" </a>\n",
" </div>\n",
" <div class=\"content_title\">\n",
" <a href=\"/news/8387/nasa-announces-landing-site-for-mars-2020-rover/\">\n",
" NASA Announces Landing Site for Mars 2020 Rover\n",
" </a>\n",
" </div>\n",
" </div>\n",
" <div class=\"grid_layout\">\n",
" <div class=\"slick-nav_container\">\n",
" <div class=\"slick-nav\">\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </section>\n",
" </div>\n",
" </section>\n",
" </div>\n",
" <footer id=\"site_footer\">\n",
" <div class=\"grid_layout\">\n",
" <section class=\"upper_footer\">\n",
" <div class=\"share\">\n",
" <h2>\n",
" Follow the Journey\n",
" </h2>\n",
" <div class=\"social_icons\">\n",
" <!-- AddThis Button BEGIN -->\n",
" <div class=\"addthis_toolbox addthis_default_style addthis_32x32_style\">\n",
" <a addthis:userid=\"NASABeAMartian\" class=\"addthis_button_twitter_follow icon\">\n",
" <img alt=\"twitter\" src=\"/assets/twitter_icon@2x.png\"/>\n",
" </a>\n",
" <a addthis:userid=\"NASABEAM\" class=\"addthis_button_facebook_follow icon\">\n",
" <img alt=\"facebook\" src=\"/assets/facebook_icon@2x.png\"/>\n",
" </a>\n",
" <a addthis:userid=\"nasa\" class=\"addthis_button_instagram_follow icon\">\n",
" <img alt=\"instagram\" src=\"/assets/instagram_icon@2x.png\"/>\n",
" </a>\n",
" <a addthis:url=\"https://mars.nasa.gov/rss/api/?feed=news&category=all&feedtype=rss\" class=\"addthis_button_rss_follow icon\">\n",
" <img alt=\"rss\" src=\"/assets/rss_icon@2x.png\"/>\n",
" </a>\n",
" </div>\n",
" </div>\n",
" <script>\n",
" addthis_loader.init(\"//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5a690e4c1320e328\", {follow: true})\n",
" \n",
" // AddThis Button END\n",
" </script>\n",
" </div>\n",
" <div class=\"gradient_line\">\n",
" </div>\n",
" </section>\n",
" <section class=\"sitemap\">\n",
" <div class=\"sitemap_directory\" id=\"sitemap_directory\">\n",
" <div class=\"sitemap_block\">\n",
" <div class=\"footer_sitemap_item\">\n",
" <h3 class=\"sitemap_title\">\n",
" <a href=\"/#red_planet\">\n",
" The Red Planet\n",
" </a>\n",
" </h3>\n",
" <ul>\n",
" <li>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li>\n",
" <a href=\"/#red_planet/0\" target=\"_self\">\n",
" Dashboard\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#red_planet/1\" target=\"_self\">\n",
" Science Goals\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#red_planet/2\" target=\"_self\">\n",
" The Planet\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#red_planet/3\" target=\"_self\">\n",
" Atmosphere\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#red_planet/4\" target=\"_self\">\n",
" Astrobiology\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#red_planet/5\" target=\"_self\">\n",
" Past, Present, Future, Timeline\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" <div class=\"sitemap_block\">\n",
" <div class=\"footer_sitemap_item\">\n",
" <h3 class=\"sitemap_title\">\n",
" <a href=\"/#mars_exploration_program\">\n",
" The Program\n",
" </a>\n",
" </h3>\n",
" <ul>\n",
" <li>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/0\" target=\"_self\">\n",
" Mission Statement\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/1\" target=\"_self\">\n",
" About the Program\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/2\" target=\"_self\">\n",
" Organization\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/3\" target=\"_self\">\n",
" Why Mars?\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/4\" target=\"_self\">\n",
" Research Programs\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/5\" target=\"_self\">\n",
" Planetary Resources\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/#mars_exploration_program/6\" target=\"_self\">\n",
" Technologies\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" <div class=\"sitemap_block\">\n",
" <div class=\"footer_sitemap_item\">\n",
" <h3 class=\"sitemap_title\">\n",
" <a href=\"/#news_and_events\">\n",
" News & Events\n",
" </a>\n",
" </h3>\n",
" <ul>\n",
" <li>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li class=\"current\">\n",
" <a href=\"/news\" target=\"_self\">\n",
" News\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/events\" target=\"_self\">\n",
" Events\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" <div class=\"sitemap_block\">\n",
" <div class=\"footer_sitemap_item\">\n",
" <h3 class=\"sitemap_title\">\n",
" <a href=\"/#multimedia\">\n",
" Multimedia\n",
" </a>\n",
" </h3>\n",
" <ul>\n",
" <li>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li>\n",
" <a href=\"/multimedia/images/\" target=\"_self\">\n",
" Images\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/multimedia/videos/\" target=\"_self\">\n",
" Videos\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" <div class=\"sitemap_block\">\n",
" <div class=\"footer_sitemap_item\">\n",
" <h3 class=\"sitemap_title\">\n",
" <a href=\"/#missions\">\n",
" Missions\n",
" </a>\n",
" </h3>\n",
" <ul>\n",
" <li>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li>\n",
" <a href=\"/mars-exploration/missions/?category=167\" target=\"_self\">\n",
" Past\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/mars-exploration/missions/?category=170\" target=\"_self\">\n",
" Present\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/mars-exploration/missions/?category=171\" target=\"_self\">\n",
" Future\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"/mars-exploration/partners\" target=\"_self\">\n",
" International Partners\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" <div class=\"sitemap_block\">\n",
" <div class=\"footer_sitemap_item\">\n",
" <h3 class=\"sitemap_title\">\n",
" <a href=\"/#more\">\n",
" More\n",
" </a>\n",
" </h3>\n",
" <ul>\n",
" <li>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" </ul>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" <div class=\"sitemap_block\">\n",
" <div class=\"footer_sitemap_item\">\n",
" <h3 class=\"sitemap_title\">\n",
" <a href=\"/legacy\">\n",
" Legacy Site\n",
" </a>\n",
" </h3>\n",
" <ul>\n",
" <li>\n",
" <div class=\"global_subnav_container\">\n",
" <ul class=\"subnav\">\n",
" <li>\n",
" <a class=\"\" href=\"/legacy\" target=\"_self\">\n",
" Legacy Site\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"gradient_line\">\n",
" </div>\n",
" </section>\n",
" <section class=\"lower_footer\">\n",
" <div class=\"nav_container\">\n",
" <nav>\n",
" <ul>\n",
" <li>\n",
" <a href=\"http://science.nasa.gov/\" target=\"_blank\">\n",
" NASA Science Mission Directorate\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"https://www.jpl.nasa.gov/copyrights.php\" target=\"_blank\">\n",
" Privacy\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"http://www.jpl.nasa.gov/imagepolicy/\" target=\"_blank\">\n",
" Image Policy\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"https://mars.nasa.gov/feedback/\" target=\"_self\">\n",
" Feedback\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a href=\"http://mars.nasa.gov/legacy\" target=\"_blank\">\n",
" Legacy Mars Site\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </nav>\n",
" </div>\n",
" <div class=\"credits\">\n",
" <div class=\"footer_brands_top\">\n",
" <p>\n",
" Managed by the Mars Exploration Program and the Jet Propulsion Laboratory for NASA’s Science Mission Directorate\n",
" </p>\n",
" </div>\n",
" <!-- .footer_brands -->\n",
" <!-- %a.jpl{href: \"\", target: \"_blank\"}Institution -->\n",
" <!-- -->\n",
" <!-- %a.caltech{href: \"\", target: \"_blank\"}Institution -->\n",
" <!-- .staff -->\n",
" <!-- %p -->\n",
" <!-- - get_staff_for_category(get_field_from_admin_config(:web_staff_category_id)) -->\n",
" <!-- - @staff.each_with_index do |staff, idx| -->\n",
" <!-- - unless staff.is_in_footer == 0 -->\n",
" <!-- = staff.title + \": \" -->\n",
" <!-- - if staff.contact_link =~ /@/ -->\n",
" <!-- = mail_to staff.contact_link, staff.name, :subject => \"[#{@site_title}]\" -->\n",
" <!-- - elsif staff.contact_link.present? -->\n",
" <!-- = link_to staff.name, staff.contact_link -->\n",
" <!-- - else -->\n",
" <!-- = staff.name -->\n",
" <!-- - unless (idx + 1 == @staff.size) -->\n",
" <!-- %br -->\n",
" </div>\n",
" </section>\n",
" </div>\n",
" </footer>\n",
" </div>\n",
" </div>\n",
" <script id=\"_fed_an_ua_tag\" src=\"https://dap.digitalgov.gov/Universal-Federated-Analytics-Min.js?agency=NASA&subagency=JPL-Mars-MEPJPL&pua=UA-9453474-9,UA-118212757-11&dclink=true&sp=searchbox&exts=tif,tiff,wav\" type=\"text/javascript\">\n",
" </script>\n",
" </body>\n",
"</html>\n",
"\n"
]
}
],
"source": [
"print(soup.prettify())"
]
},
{
"cell_type": "code",
"execution_count": 69,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The news title is\n",
"\n",
"NASA's Curiosity Mars Rover Finds a Clay Cache\n",
"\n",
"\n",
"The text is\n",
"The rover recently drilled two samples, and both showed the highest levels of clay ever found during the mission.\n",
"\n"
]
}
],
"source": [
"try :\n",
" news_title = soup.find(\"div\", class_=\"content_title\").text\n",
" \n",
" news_p = soup.find(\"div\", class_=\"rollover_description_inner\").text\n",
" print(\"The news title is\" + news_title)\n",
" \n",
"\n",
" print(\"The text is\" + news_p)\n",
" \n",
"\n",
"except AttributeError as Atterror:\n",
" print(Atterror)"
]
},
{
"cell_type": "code",
"execution_count": 70,
"metadata": {},
"outputs": [],
"source": [
"mars[\"title\"]=news_title\n",
"mars[\"paragraph\"]=news_p"
]
},
{
"cell_type": "code",
"execution_count": 71,
"metadata": {},
"outputs": [],
"source": [
"space_url = 'https://www.jpl.nasa.gov/spaceimages/?search=&category=Mars'"
]
},
{
"cell_type": "code",
"execution_count": 72,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/usr/local/bin/chromedriver\r\n"
]
}
],
"source": [
"!which chromedriver"
]
},
{
"cell_type": "code",
"execution_count": 73,
"metadata": {},
"outputs": [],
"source": [
"executable_path = {'executable_path': '/usr/local/bin/chromedriver'}\n",
"browser = Browser('chrome', **executable_path, headless=False)"
]
},
{
"cell_type": "code",
"execution_count": 74,
"metadata": {},
"outputs": [],
"source": [
"browser.visit(space_url)"
]
},
{
"cell_type": "code",
"execution_count": 75,
"metadata": {},
"outputs": [],
"source": [
"image = browser.find_by_id('full_image')\n",
"image.click()"
]
},
{
"cell_type": "code",
"execution_count": 76,
"metadata": {},
"outputs": [],
"source": [
"time.sleep(10)\n",
"link = browser.find_link_by_partial_text('more info')\n",
"link.click()"
]
},
{
"cell_type": "code",
"execution_count": 77,
"metadata": {},
"outputs": [],
"source": [
"soup2 = BeautifulSoup(browser.html, 'html.parser')"
]
},
{
"cell_type": "code",
"execution_count": 78,
"metadata": {},
"outputs": [],
"source": [
"reference = soup2.find('figure', class_='lede')"
]
},
{
"cell_type": "code",
"execution_count": 79,
"metadata": {},
"outputs": [],
"source": [
"final_link=reference.a['href']\n",
"featured_image_url='https://www.jpl.nasa.gov/' + final_link\n",
"mars['featured_image_url']=featured_image_url"
]
},
{
"cell_type": "code",
"execution_count": 80,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"https://www.jpl.nasa.gov//spaceimages/images/largesize/PIA17009_hires.jpg\n"
]
}
],
"source": [
"print(featured_image_url)"
]
},
{
"cell_type": "code",
"execution_count": 81,
"metadata": {},
"outputs": [],
"source": [
"twitter_url = 'https://twitter.com/marswxreport?lang=en'"
]
},
{
"cell_type": "code",
"execution_count": 82,
"metadata": {},
"outputs": [],
"source": [
"response3 = requests.get(twitter_url)\n",
"soup3 = BeautifulSoup(response3.text, 'lxml')"
]
},
{
"cell_type": "code",
"execution_count": 83,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<!DOCTYPE html>\n",
"<html data-scribe-reduced-action-queue=\"true\" lang=\"en\">\n",
" <head>\n",
" <meta charset=\"utf-8\"/>\n",
" <script nonce=\"ishMkxCRB0LirxUMX0jY8Q==\">\n",
" !function(){window.initErrorstack||(window.initErrorstack=[]),window.onerror=function(r,i,n,o,t){r.indexOf(\"Script error.\")>-1||window.initErrorstack.push({errorMsg:r,url:i,lineNumber:n,column:o,errorObj:t})}}();\n",
" </script>\n",
" <script id=\"bouncer_terminate_iframe\" nonce=\"ishMkxCRB0LirxUMX0jY8Q==\">\n",
" if (window.top != window) {\n",
" window.top.postMessage({'bouncer': true, 'event': 'complete'}, '*');\n",
"}\n",
" </script>\n",
" <script id=\"swift_action_queue\" nonce=\"ishMkxCRB0LirxUMX0jY8Q==\">\n",
" !function(){function e(e){if(e||(e=window.event),!e)return!1;if(e.timestamp=(new Date).getTime(),!e.target&&e.srcElement&&(e.target=e.srcElement),document.documentElement.getAttribute(\"data-scribe-reduced-action-queue\"))for(var t=e.target;t&&t!=document.body;){if(\"A\"==t.tagName)return;t=t.parentNode}return i(\"all\",o(e)),a(e)?(document.addEventListener||(e=o(e)),e.preventDefault=e.stopPropagation=e.stopImmediatePropagation=function(){},y?(v.push(e),i(\"captured\",e)):i(\"ignored\",e),!1):(i(\"direct\",e),!0)}function t(e){n();for(var t,r=0;t=v[r];r++){var a=e(t.target),i=a.closest(\"a\")[0];if(\"click\"==t.type&&i){var o=e.data(i,\"events\"),u=o&&o.click,c=!i.hostname.match(g)||!i.href.match(/#$/);if(!u&&c){window.location=i.href;continue}}a.trigger(e.event.fix(t))}window.swiftActionQueue.wasFlushed=!0}function r(){for(var e in b)if(\"all\"!=e)for(var t=b[e],r=0;r<t.length;r++)console.log(\"actionQueue\",c(t[r]))}function n(){clearTimeout(w);for(var e,t=0;e=h[t];t++)document[\"on\"+e]=null}function a(e){if(!e.target)return!1;var t=e.target,r=(t.tagName||\"\").toLowerCase();if(e.metaKey)return!1;if(e.shiftKey&&\"a\"==r)return!1;if(t.hostname&&!t.hostname.match(g))return!1;if(e.type.match(p)&&s(t))return!1;if(\"label\"==r){var n=t.getAttribute(\"for\");if(n){var a=document.getElementById(n);if(a&&f(a))return!1}else for(var i,o=0;i=t.childNodes[o];o++)if(f(i))return!1}return!0}function i(e,t){t.bucket=e,b[e].push(t)}function o(e){var t={};for(var r in e)t[r]=e[r];return t}function u(e){for(;e&&e!=document.body;){if(\"A\"==e.tagName)return e;e=e.parentNode}}function c(e){var t=[];e.bucket&&t.push(\"[\"+e.bucket+\"]\"),t.push(e.type);var r,n,a=e.target,i=u(a),o=\"\",c=e.timestamp&&e.timestamp-d;return\"click\"===e.type&&i?(r=i.className.trim().replace(/\\s+/g,\".\"),n=i.id.trim(),o=/[^#]$/.test(i.href)?\" (\"+i.href+\")\":\"\",a='\"'+i.innerText.replace(/\\n+/g,\" \").trim()+'\"'):(r=a.className.trim().replace(/\\s+/g,\".\"),n=a.id.trim(),a=a.tagName.toLowerCase(),e.keyCode&&(a=String.fromCharCode(e.keyCode)+\" : \"+a)),t.push(a+o+(n&&\"#\"+n)+(!n&&r?\".\"+r:\"\")),c&&t.push(c),t.join(\" \")}function f(e){var t=(e.tagName||\"\").toLowerCase();return\"input\"==t&&\"checkbox\"==e.getAttribute(\"type\")}function s(e){var t=(e.tagName||\"\").toLowerCase();return\"textarea\"==t||\"input\"==t&&\"text\"==e.getAttribute(\"type\")||\"true\"==e.getAttribute(\"contenteditable\")}for(var m,d=(new Date).getTime(),l=1e4,g=/^([^\\.]+\\.)*twitter\\.com$/,p=/^key/,h=[\"click\",\"keydown\",\"keypress\",\"keyup\"],v=[],w=null,y=!0,b={captured:[],ignored:[],direct:[],all:[]},k=0;m=h[k];k++)document[\"on\"+m]=e;w=setTimeout(function(){y=!1},l),window.swiftActionQueue={buckets:b,flush:t,logActions:r,wasFlushed:!1}}();\n",
" </script>\n",
" <script id=\"composition_state\" nonce=\"ishMkxCRB0LirxUMX0jY8Q==\">\n",
" !function(){function t(t){t.target.setAttribute(\"data-in-composition\",\"true\")}function n(t){t.target.removeAttribute(\"data-in-composition\")}document.addEventListener&&(document.addEventListener(\"compositionstart\",t,!1),document.addEventListener(\"compositionend\",n,!1))}();\n",
" </script>\n",
" <link class=\"coreCSSBundles\" href=\"https://abs.twimg.com/a/1559783714/css/t1/twitter_core.bundle.css\" rel=\"stylesheet\"/>\n",
" <link class=\"moreCSSBundles\" href=\"https://abs.twimg.com/a/1559783714/css/t1/twitter_more_1.bundle.css\" rel=\"stylesheet\"/>\n",
" <link class=\"moreCSSBundles\" href=\"https://abs.twimg.com/a/1559783714/css/t1/twitter_more_2.bundle.css\" rel=\"stylesheet\"/>\n",
" <link href=\"https://pbs.twimg.com\" rel=\"dns-prefetch\"/>\n",
" <link href=\"https://t.co\" rel=\"dns-prefetch\"/>\n",
" <link as=\"script\" href=\"https://abs.twimg.com/k/en/init.en.6c678095fdbcae875604.js\" rel=\"preload\"/>\n",
" <link as=\"script\" href=\"https://abs.twimg.com/k/en/0.commons.en.06a750caea28350212ee.js\" rel=\"preload\"/>\n",
" <link as=\"script\" href=\"https://abs.twimg.com/k/en/3.pages_profile.en.77c1a9d0ab293ba63984.js\" rel=\"preload\"/>\n",
" <title>\n",
" Mars Weather (@MarsWxReport) | Twitter\n",
" </title>\n",
" <meta content=\"NOODP\" name=\"robots\"/>\n",
" <meta content=\"The latest Tweets from Mars Weather (@MarsWxReport). Updates as avail from the REMS weather instrument aboard @MarsCuriosity. Data credit: Centro deAstrobiologia, FMI, JPL/NASA, Not an official acct. Gale Crater, Mars\" name=\"description\"/>\n",
" <meta content=\"//abs.twimg.com/favicons/win8-tile-144.png\" name=\"msapplication-TileImage\"/>\n",
" <meta content=\"#00aced\" name=\"msapplication-TileColor\"/>\n",
" <link color=\"#1da1f2\" href=\"https://abs.twimg.com/a/1559783714/icons/favicon.svg\" rel=\"mask-icon\" sizes=\"any\"/>\n",
" <link href=\"//abs.twimg.com/favicons/favicon.ico\" rel=\"shortcut icon\" type=\"image/x-icon\"/>\n",
" <link href=\"https://abs.twimg.com/icons/apple-touch-icon-192x192.png\" rel=\"apple-touch-icon\" sizes=\"192x192\"/>\n",
" <link href=\"/manifest.json\" rel=\"manifest\"/>\n",
" <meta content=\"profile\" id=\"swift-page-name\" name=\"swift-page-name\"/>\n",
" <meta content=\"profile\" id=\"swift-section-name\" name=\"swift-page-section\"/>\n",
" <link href=\"https://twitter.com/marswxreport\" rel=\"canonical\"/>\n",
" <link href=\"https://twitter.com/marswxreport\" hreflang=\"x-default\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=fr\" hreflang=\"fr\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=en\" hreflang=\"en\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=ar\" hreflang=\"ar\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=ja\" hreflang=\"ja\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=es\" hreflang=\"es\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=de\" hreflang=\"de\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=it\" hreflang=\"it\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=id\" hreflang=\"id\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=pt\" hreflang=\"pt\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=ko\" hreflang=\"ko\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=tr\" hreflang=\"tr\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=ru\" hreflang=\"ru\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=nl\" hreflang=\"nl\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=fil\" hreflang=\"fil\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=ms\" hreflang=\"ms\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=zh-tw\" hreflang=\"zh-tw\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=zh-cn\" hreflang=\"zh-cn\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=hi\" hreflang=\"hi\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=no\" hreflang=\"no\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=sv\" hreflang=\"sv\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=fi\" hreflang=\"fi\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=da\" hreflang=\"da\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=pl\" hreflang=\"pl\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=hu\" hreflang=\"hu\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=fa\" hreflang=\"fa\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=he\" hreflang=\"he\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=ur\" hreflang=\"ur\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=th\" hreflang=\"th\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=uk\" hreflang=\"uk\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=ca\" hreflang=\"ca\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=ga\" hreflang=\"ga\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=el\" hreflang=\"el\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=eu\" hreflang=\"eu\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=cs\" hreflang=\"cs\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=gl\" hreflang=\"gl\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=ro\" hreflang=\"ro\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=hr\" hreflang=\"hr\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=en-gb\" hreflang=\"en-gb\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=vi\" hreflang=\"vi\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=bn\" hreflang=\"bn\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=bg\" hreflang=\"bg\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=sr\" hreflang=\"sr\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=sk\" hreflang=\"sk\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=gu\" hreflang=\"gu\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=mr\" hreflang=\"mr\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=ta\" hreflang=\"ta\" rel=\"alternate\"/>\n",
" <link href=\"https://twitter.com/marswxreport?lang=kn\" hreflang=\"kn\" rel=\"alternate\"/>\n",
" <link href=\"https://publish.twitter.com/oembed?url=https://twitter.com/MarsWxReport\" rel=\"alternate\" title=\"Mars Weather (@MarsWxReport) | Twitter\" type=\"application/json+oembed\"/>\n",
" <link href=\"https://mobile.twitter.com/marswxreport?locale=en\" media=\"handheld, only screen and (max-width: 640px)\" rel=\"alternate\"/>\n",
" <link href=\"android-app://com.twitter.android/twitter/user?screen_name=MarsWxReport&ref_src=twsrc%5Egoogle%7Ctwcamp%5Eandroidseo%7Ctwgr%5Eprofile\" rel=\"alternate\"/>\n",
" <link href=\"/opensearch.xml\" rel=\"search\" title=\"Twitter\" type=\"application/opensearchdescription+xml\"/>\n",
" <link id=\"async-css-placeholder\"/>\n",
" <meta content=\"twitter://user?screen_name=MarsWxReport\" property=\"al:ios:url\"/>\n",
" <meta content=\"333903271\" property=\"al:ios:app_store_id\"/>\n",
" <meta content=\"Twitter\" property=\"al:ios:app_name\"/>\n",
" <meta content=\"twitter://user?screen_name=MarsWxReport\" property=\"al:android:url\"/>\n",
" <meta content=\"com.twitter.android\" property=\"al:android:package\"/>\n",
" <meta content=\"Twitter\" property=\"al:android:app_name\"/>\n",
" </head>\n",
" <body class=\"three-col logged-out user-style-MarsWxReport enhanced-mini-profile ProfilePage ProfilePage--withWarning\" data-fouc-class-names=\"swift-loading no-nav-banners\" dir=\"ltr\">\n",
" <script id=\"swift_loading_indicator\" nonce=\"ishMkxCRB0LirxUMX0jY8Q==\">\n",
" document.body.className=document.body.className+\" \"+document.body.getAttribute(\"data-fouc-class-names\");\n",
" </script>\n",
" <noscript>\n",
" <form action=\"https://mobile.twitter.com/i/nojs_router?path=%2Fmarswxreport&lang=en\" class=\"NoScriptForm\" method=\"POST\">\n",
" <input name=\"authenticity_token\" type=\"hidden\" value=\"a45121e26da8b94570a7513b868ecb5fe6df6892\"/>\n",
" <div class=\"NoScriptForm-content\">\n",
" <span class=\"NoScriptForm-logo Icon Icon--logo Icon--extraLarge\">\n",
" </span>\n",
" <p>\n",
" We've detected that JavaScript is disabled in your browser. Would you like to proceed to legacy Twitter?\n",
" </p>\n",
" <p class=\"NoScriptForm-buttonContainer\">\n",
" <button class=\"EdgeButton EdgeButton--primary\" type=\"submit\">\n",
" Yes\n",
" </button>\n",
" </p>\n",
" </div>\n",
" </form>\n",
" </noscript>\n",
" <a class=\"u-hiddenVisually focusable\" href=\"#timeline\">\n",
" Skip to content\n",
" </a>\n",
" <div class=\"route-profile\" data-at-shortcutkeys='{\"Enter\":\"Open Tweet details\",\"o\":\"Expand photo\",\"/\":\"Search\",\"?\":\"This menu\",\"j\":\"Next Tweet\",\"k\":\"Previous Tweet\",\"Space\":\"Page down\",\".\":\"Load new Tweets\",\"gu\":\"Go to user\\u2026\"}' id=\"doc\">\n",
" <div class=\"topbar js-topbar\">\n",
" <div class=\"global-nav global-nav--newLoggedOut\" data-section-term=\"top_nav\">\n",
" <div class=\"global-nav-inner\">\n",
" <div class=\"container\">\n",
" <ul class=\"nav js-global-actions\" id=\"global-actions\" role=\"navigation\">\n",
" <li class=\"home\" data-global-action=\"home\" id=\"global-nav-home\">\n",
" <a class=\"js-nav js-tooltip js-dynamic-tooltip\" data-component-context=\"home_nav\" data-nav=\"home\" data-placement=\"bottom\" href=\"/\">\n",
" <span class=\"Icon Icon--bird Icon--large\">\n",
" </span>\n",
" <span aria-hidden=\"true\" class=\"text\">\n",
" Home\n",
" </span>\n",
" <span class=\"u-hiddenVisually a11y-inactive-page-text\">\n",
" Home\n",
" </span>\n",
" <span class=\"u-hiddenVisually a11y-active-page-text\">\n",
" Home, current page.\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"moments\" data-global-action=\"moments\" id=\"global-nav-moments\">\n",
" <a class=\"js-nav js-tooltip js-dynamic-tooltip\" data-component-context=\"moments_nav\" data-nav=\"moments\" data-placement=\"bottom\" href=\"/i/moments\">\n",
" <span class=\"Icon Icon--lightning Icon--large\">\n",
" </span>\n",
" <span class=\"Icon Icon--lightningFilled Icon--large\">\n",
" </span>\n",
" <span aria-hidden=\"true\" class=\"text\">\n",
" Moments\n",
" </span>\n",
" <span class=\"u-hiddenVisually a11y-inactive-page-text\">\n",
" Moments\n",
" </span>\n",
" <span class=\"u-hiddenVisually a11y-active-page-text\">\n",
" Moments, current page.\n",
" </span>\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" <div class=\"pull-right nav-extras\">\n",
" <div role=\"search\">\n",
" <form action=\"/search\" class=\"t1-form form-search js-search-form\" id=\"global-nav-search\">\n",
" <label class=\"visuallyhidden\" for=\"search-query\">\n",
" Search query\n",
" </label>\n",
" <input autocomplete=\"off\" class=\"search-input\" id=\"search-query\" name=\"q\" placeholder=\"Search Twitter\" spellcheck=\"false\" type=\"text\"/>\n",
" <span class=\"search-icon js-search-action\">\n",
" <button class=\"Icon Icon--medium Icon--search nav-search\" type=\"submit\">\n",
" <span class=\"visuallyhidden\">\n",
" Search Twitter\n",
" </span>\n",
" </button>\n",
" </span>\n",
" <div class=\"dropdown-menu typeahead\" role=\"listbox\">\n",
" <div aria-hidden=\"true\" class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <div class=\"dropdown-inner js-typeahead-results\" role=\"presentation\">\n",
" <div class=\"typeahead-saved-searches\" role=\"presentation\">\n",
" <h3 class=\"typeahead-category-title saved-searches-title\" id=\"saved-searches-heading\">\n",
" Saved searches\n",
" </h3>\n",
" <ul class=\"typeahead-items saved-searches-list\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-saved-search-item\" role=\"presentation\">\n",
" <span aria-hidden=\"true\" class=\"Icon Icon--close\">\n",
" <span class=\"visuallyhidden\">\n",
" Remove\n",
" </span>\n",
" </span>\n",
" <a aria-describedby=\"saved-searches-heading\" class=\"js-nav\" data-ds=\"saved_search\" data-query-source=\"\" data-search-query=\"\" href=\"\" role=\"option\" tabindex=\"-1\">\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" <ul class=\"typeahead-items typeahead-topics\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-topic-item\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"topics\" data-query-source=\"typeahead_click\" data-search-query=\"\" href=\"\" role=\"option\" tabindex=\"-1\">\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" <ul class=\"typeahead-items typeahead-accounts social-context js-typeahead-accounts\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-account-item js-selectable\" data-remote=\"true\" data-score=\"\" data-user-id=\"\" data-user-screenname=\"\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"account\" data-query-source=\"typeahead_click\" data-search-query=\"\" role=\"option\">\n",
" <div class=\"js-selectable typeahead-in-conversation hidden\">\n",
" <span class=\"Icon Icon--follower Icon--small\">\n",
" </span>\n",
" <span class=\"typeahead-in-conversation-text\">\n",
" In this conversation\n",
" </span>\n",
" </div>\n",
" <img alt=\"\" class=\"avatar size32\"/>\n",
" <span class=\"typeahead-user-item-info account-group\">\n",
" <span class=\"fullname\">\n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" <span class=\"Icon Icon--verified js-verified hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Verified account\n",
" </span>\n",
" </span>\n",
" <span class=\"Icon Icon--protected js-protected hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Protected Tweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" <span class=\"username u-dir\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" </b>\n",
" </span>\n",
" </span>\n",
" <span class=\"typeahead-social-context\">\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"js-selectable typeahead-accounts-shortcut js-shortcut\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"account_search\" data-query-source=\"typeahead_click\" data-search-query=\"\" data-shortcut=\"true\" href=\"\" role=\"option\">\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" <ul class=\"typeahead-items typeahead-trend-locations-list\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-trend-locations-item\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"trend_location\" data-search-query=\"\" href=\"\" role=\"option\" tabindex=\"-1\">\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" <div class=\"typeahead-user-select\" role=\"presentation\">\n",
" <div class=\"typeahead-empty-suggestions\" role=\"presentation\">\n",
" Suggested users\n",
" </div>\n",
" <ul class=\"typeahead-items typeahead-selected js-typeahead-selected\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-selected-item js-selectable\" data-remote=\"true\" data-score=\"\" data-user-id=\"\" data-user-screenname=\"\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"account\" data-query-source=\"typeahead_click\" data-search-query=\"\" role=\"option\">\n",
" <img alt=\"\" class=\"avatar size32\"/>\n",
" <span class=\"typeahead-user-item-info account-group\">\n",
" <span class=\"select-status deselect-user js-deselect-user Icon Icon--check\">\n",
" </span>\n",
" <span class=\"select-status select-disabled Icon Icon--unfollow\">\n",
" </span>\n",
" <span class=\"fullname\">\n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" <span class=\"Icon Icon--verified js-verified hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Verified account\n",
" </span>\n",
" </span>\n",
" <span class=\"Icon Icon--protected js-protected hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Protected Tweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" <span class=\"username u-dir\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"typeahead-selected-end\" role=\"presentation\">\n",
" </li>\n",
" </ul>\n",
" <ul class=\"typeahead-items typeahead-accounts js-typeahead-accounts\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-account-item js-selectable\" data-remote=\"true\" data-score=\"\" data-user-id=\"\" data-user-screenname=\"\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"account\" data-query-source=\"typeahead_click\" data-search-query=\"\" role=\"option\">\n",
" <img alt=\"\" class=\"avatar size32\"/>\n",
" <span class=\"typeahead-user-item-info account-group\">\n",
" <span class=\"select-status deselect-user js-deselect-user Icon Icon--check\">\n",
" </span>\n",
" <span class=\"select-status select-disabled Icon Icon--unfollow\">\n",
" </span>\n",
" <span class=\"fullname\">\n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" <span class=\"Icon Icon--verified js-verified hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Verified account\n",
" </span>\n",
" </span>\n",
" <span class=\"Icon Icon--protected js-protected hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Protected Tweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" <span class=\"username u-dir\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"typeahead-accounts-end\" role=\"presentation\">\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" <div class=\"typeahead-dm-conversations\" role=\"presentation\">\n",
" <ul class=\"typeahead-items typeahead-dm-conversation-items\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-dm-conversation-item\" role=\"presentation\">\n",
" <a role=\"option\" tabindex=\"-1\">\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </form>\n",
" </div>\n",
" <ul class=\"nav secondary-nav language-dropdown\">\n",
" <li class=\"dropdown js-language-dropdown\">\n",
" <a class=\"dropdown-toggle js-dropdown-toggle\" href=\"#supported_languages\">\n",
" <small>\n",
" Language:\n",
" </small>\n",
" <span class=\"js-current-language\">\n",
" English\n",
" </span>\n",
" <b class=\"caret\">\n",
" </b>\n",
" </a>\n",
" <div class=\"dropdown-menu dropdown-menu--rightAlign is-forceRight\">\n",
" <div class=\"dropdown-caret right\">\n",
" <span class=\"caret-outer\">\n",
" </span>\n",
" <span class=\"caret-inner\">\n",
" </span>\n",
" </div>\n",
" <ul id=\"supported_languages\">\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"id\" href=\"?lang=id\" rel=\"noopener\" title=\"Indonesian\">\n",
" Bahasa Indonesia\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"msa\" href=\"?lang=msa\" rel=\"noopener\" title=\"Malay\">\n",
" Bahasa Melayu\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"ca\" href=\"?lang=ca\" rel=\"noopener\" title=\"Catalan\">\n",
" Català\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"cs\" href=\"?lang=cs\" rel=\"noopener\" title=\"Czech\">\n",
" Čeština\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"da\" href=\"?lang=da\" rel=\"noopener\" title=\"Danish\">\n",
" Dansk\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"de\" href=\"?lang=de\" rel=\"noopener\" title=\"German\">\n",
" Deutsch\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"en-gb\" href=\"?lang=en-gb\" rel=\"noopener\" title=\"British English\">\n",
" English UK\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"es\" href=\"?lang=es\" rel=\"noopener\" title=\"Spanish\">\n",
" Español\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"fil\" href=\"?lang=fil\" rel=\"noopener\" title=\"Filipino\">\n",
" Filipino\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"fr\" href=\"?lang=fr\" rel=\"noopener\" title=\"French\">\n",
" Français\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"hr\" href=\"?lang=hr\" rel=\"noopener\" title=\"Croatian\">\n",
" Hrvatski\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"it\" href=\"?lang=it\" rel=\"noopener\" title=\"Italian\">\n",
" Italiano\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"hu\" href=\"?lang=hu\" rel=\"noopener\" title=\"Hungarian\">\n",
" Magyar\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"nl\" href=\"?lang=nl\" rel=\"noopener\" title=\"Dutch\">\n",
" Nederlands\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"no\" href=\"?lang=no\" rel=\"noopener\" title=\"Norwegian\">\n",
" Norsk\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"pl\" href=\"?lang=pl\" rel=\"noopener\" title=\"Polish\">\n",
" Polski\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"pt\" href=\"?lang=pt\" rel=\"noopener\" title=\"Portuguese\">\n",
" Português\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"ro\" href=\"?lang=ro\" rel=\"noopener\" title=\"Romanian\">\n",
" Română\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"sk\" href=\"?lang=sk\" rel=\"noopener\" title=\"Slovak\">\n",
" Slovenčina\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"fi\" href=\"?lang=fi\" rel=\"noopener\" title=\"Finnish\">\n",
" Suomi\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"sv\" href=\"?lang=sv\" rel=\"noopener\" title=\"Swedish\">\n",
" Svenska\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"vi\" href=\"?lang=vi\" rel=\"noopener\" title=\"Vietnamese\">\n",
" Tiếng Việt\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"tr\" href=\"?lang=tr\" rel=\"noopener\" title=\"Turkish\">\n",
" Türkçe\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"el\" href=\"?lang=el\" rel=\"noopener\" title=\"Greek\">\n",
" Ελληνικά\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"bg\" href=\"?lang=bg\" rel=\"noopener\" title=\"Bulgarian\">\n",
" Български език\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"ru\" href=\"?lang=ru\" rel=\"noopener\" title=\"Russian\">\n",
" Русский\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"sr\" href=\"?lang=sr\" rel=\"noopener\" title=\"Serbian\">\n",
" Српски\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"uk\" href=\"?lang=uk\" rel=\"noopener\" title=\"Ukrainian\">\n",
" Українська мова\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"he\" href=\"?lang=he\" rel=\"noopener\" title=\"Hebrew\">\n",
" עִבְרִית\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"ar\" href=\"?lang=ar\" rel=\"noopener\" title=\"Arabic\">\n",
" العربية\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"fa\" href=\"?lang=fa\" rel=\"noopener\" title=\"Persian\">\n",
" فارسی\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"mr\" href=\"?lang=mr\" rel=\"noopener\" title=\"Marathi\">\n",
" मराठी\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"hi\" href=\"?lang=hi\" rel=\"noopener\" title=\"Hindi\">\n",
" हिन्दी\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"bn\" href=\"?lang=bn\" rel=\"noopener\" title=\"Bangla\">\n",
" বাংলা\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"gu\" href=\"?lang=gu\" rel=\"noopener\" title=\"Gujarati\">\n",
" ગુજરાતી\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"ta\" href=\"?lang=ta\" rel=\"noopener\" title=\"Tamil\">\n",
" தமிழ்\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"kn\" href=\"?lang=kn\" rel=\"noopener\" title=\"Kannada\">\n",
" ಕನ್ನಡ\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"th\" href=\"?lang=th\" rel=\"noopener\" title=\"Thai\">\n",
" ภาษาไทย\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"ko\" href=\"?lang=ko\" rel=\"noopener\" title=\"Korean\">\n",
" 한국어\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"ja\" href=\"?lang=ja\" rel=\"noopener\" title=\"Japanese\">\n",
" 日本語\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"zh-cn\" href=\"?lang=zh-cn\" rel=\"noopener\" title=\"Simplified Chinese\">\n",
" 简体中文\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"js-language-link js-tooltip\" data-lang-code=\"zh-tw\" href=\"?lang=zh-tw\" rel=\"noopener\" title=\"Traditional Chinese\">\n",
" 繁體中文\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" <div class=\"js-front-language\">\n",
" <form action=\"/sessions/change_locale\" class=\"t1-form language\" method=\"POST\">\n",
" <input name=\"lang\" type=\"hidden\"/>\n",
" <input name=\"redirect\" type=\"hidden\"/>\n",
" <input name=\"authenticity_token\" type=\"hidden\" value=\"a45121e26da8b94570a7513b868ecb5fe6df6892\"/>\n",
" </form>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" <ul class=\"nav secondary-nav session-dropdown\" id=\"session\">\n",
" <li class=\"dropdown js-session\">\n",
" <a class=\"dropdown-toggle js-dropdown-toggle dropdown-signin\" data-nav=\"login\" href=\"/login\" id=\"signin-link\" role=\"button\">\n",
" <small>\n",
" Have an account?\n",
" </small>\n",
" <span class=\"emphasize\">\n",
" Log in\n",
" </span>\n",
" <span class=\"caret\">\n",
" </span>\n",
" </a>\n",
" <div class=\"dropdown-menu dropdown-form dropdown-menu--rightAlign is-forceRight\" id=\"signin-dropdown\">\n",
" <div class=\"dropdown-caret right\">\n",
" <span class=\"caret-outer\">\n",
" </span>\n",
" <span class=\"caret-inner\">\n",
" </span>\n",
" </div>\n",
" <div class=\"signin-dialog-body\">\n",
" <div>\n",
" Have an account?\n",
" </div>\n",
" <form action=\"https://twitter.com/sessions\" class=\"LoginForm js-front-signin\" data-component=\"login_callout\" data-element=\"form\" method=\"post\">\n",
" <div class=\"LoginForm-input LoginForm-username\">\n",
" <input autocomplete=\"username\" class=\"text-input email-input js-signin-email\" name=\"session[username_or_email]\" placeholder=\"Phone, email, or username\" type=\"text\"/>\n",
" </div>\n",
" <div class=\"LoginForm-input LoginForm-password\">\n",
" <input autocomplete=\"current-password\" class=\"text-input\" name=\"session[password]\" placeholder=\"Password\" type=\"password\"/>\n",
" </div>\n",
" <div class=\"LoginForm-rememberForgot\">\n",
" <label>\n",
" <input checked=\"checked\" name=\"remember_me\" type=\"checkbox\" value=\"1\"/>\n",
" <span>\n",
" Remember me\n",
" </span>\n",
" </label>\n",
" <span class=\"separator\">\n",
" ·\n",
" </span>\n",
" <a class=\"forgot\" href=\"/account/begin_password_reset\" rel=\"noopener\">\n",
" Forgot password?\n",
" </a>\n",
" </div>\n",
" <input class=\"EdgeButton EdgeButton--primary EdgeButton--medium submit js-submit\" type=\"submit\" value=\"Log in\"/>\n",
" <input name=\"return_to_ssl\" type=\"hidden\" value=\"true\"/>\n",
" <input name=\"scribe_log\" type=\"hidden\"/>\n",
" <input name=\"redirect_after_login\" type=\"hidden\" value=\"/marswxreport?lang=en\"/>\n",
" <input name=\"authenticity_token\" type=\"hidden\" value=\"a45121e26da8b94570a7513b868ecb5fe6df6892\"/>\n",
" <input autocomplete=\"off\" name=\"ui_metrics\" type=\"hidden\"/>\n",
" <script async=\"\" src=\"/i/js_inst?c_name=ui_metrics\">\n",
" </script>\n",
" </form>\n",
" <hr/>\n",
" <div class=\"signup SignupForm\">\n",
" <div class=\"SignupForm-header\">\n",
" New to Twitter?\n",
" </div>\n",
" <a class=\"EdgeButton EdgeButton--secondary EdgeButton--medium u-block js-signup\" data-component=\"signup_callout\" data-element=\"dropdown\" href=\"https://twitter.com/signup\" role=\"button\">\n",
" Sign up\n",
" </a>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div id=\"page-outer\">\n",
" <div class=\"AppContent\" id=\"page-container\">\n",
" <style id=\"user-style-MarsWxReport\">\n",
" a,\n",
" a:hover,\n",
" a:focus,\n",
" a:active {\n",
" color: #0084B4;\n",
" }\n",
"\n",
" .u-textUserColor,\n",
" .u-textUserColorHover:hover,\n",
" .u-textUserColorHover:hover .ProfileTweet-actionCount,\n",
" .u-textUserColorHover:focus {\n",
" color: #0084B4 !important;\n",
" }\n",
"\n",
" .u-borderUserColor,\n",
" .u-borderUserColorHover:hover,\n",
" .u-borderUserColorHover:focus {\n",
" border-color: #0084B4 !important;\n",
" }\n",
"\n",
" .u-bgUserColor,\n",
" .u-bgUserColorHover:hover,\n",
" .u-bgUserColorHover:focus {\n",
" background-color: #0084B4 !important;\n",
" }\n",
"\n",
" .u-dropdownUserColor > li:hover,\n",
" .u-dropdownUserColor > li:focus,\n",
" .u-dropdownUserColor > li > button:hover,\n",
" .u-dropdownUserColor > li > button:focus,\n",
" .u-dropdownUserColor > li > a:focus,\n",
" .u-dropdownUserColor > li > a:hover {\n",
" color: #fff !important;\n",
" background-color: #0084B4 !important;\n",
" }\n",
"\n",
" .u-boxShadowInsetUserColorHover:hover,\n",
" .u-boxShadowInsetUserColorHover:focus {\n",
" box-shadow: inset 0 0 0 5px #0084B4 !important;\n",
" }\n",
"\n",
" .u-dropdownOpenUserColor.dropdown.open .dropdown-toggle {\n",
" color: #0084B4;\n",
" }\n",
"\n",
"\n",
" .u-textUserColorLight {\n",
" color: #99CDE1 !important;\n",
" }\n",
"\n",
" .u-borderUserColorLight,\n",
" .u-borderUserColorLightFocus:focus,\n",
" .u-borderUserColorLightHover:hover,\n",
" .u-borderUserColorLightHover:focus {\n",
" border-color: #99CDE1 !important;\n",
" }\n",
"\n",
" .u-bgUserColorLight {\n",
" background-color: #99CDE1 !important;\n",
" }\n",
"\n",
"\n",
" .u-boxShadowUserColorLighterFocus:focus {\n",
" box-shadow: 0 0 8px rgba(0, 0, 0, 0.05), inset 0 1px 2px rgba(0,132,180,0.25) !important;\n",
" }\n",
"\n",
"\n",
" .u-textUserColorLightest {\n",
" color: #E5F2F7 !important;\n",
" }\n",
"\n",
" .u-borderUserColorLightest {\n",
" border-color: #E5F2F7 !important;\n",
" }\n",
"\n",
" .u-bgUserColorLightest {\n",
" background-color: #E5F2F7 !important;\n",
" }\n",
"\n",
"\n",
" .u-textUserColorLighter {\n",
" color: #BFE0EC !important;\n",
" }\n",
"\n",
" .u-borderUserColorLighter {\n",
" border-color: #BFE0EC !important;\n",
" }\n",
"\n",
" .u-bgUserColorLighter {\n",
" background-color: #BFE0EC !important;\n",
" }\n",
"\n",
"\n",
" .u-bgUserColorDarkHover:hover {\n",
" background-color: #05719A !important;\n",
" }\n",
"\n",
" .u-borderUserColorDark {\n",
" border-color: #05719A !important;\n",
" }\n",
"\n",
"\n",
" .u-bgUserColorDarkerActive:active {\n",
" background-color: #0A5F81 !important;\n",
" }\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"a,\n",
".btn-link,\n",
".btn-link:focus,\n",
".icon-btn,\n",
"\n",
"\n",
"\n",
".pretty-link b,\n",
".pretty-link:hover s,\n",
".pretty-link:hover b,\n",
".pretty-link:focus s,\n",
".pretty-link:focus b,\n",
"\n",
".metadata a:hover,\n",
".metadata a:focus,\n",
"\n",
"a.account-group:hover .fullname,\n",
"a.account-group:focus .fullname,\n",
".account-summary:focus .fullname,\n",
"\n",
".message .message-text a,\n",
".message .message-text button,\n",
".stats a strong,\n",
".plain-btn:hover,\n",
".plain-btn:focus,\n",
".dropdown.open .user-dropdown.plain-btn,\n",
".open > .plain-btn,\n",
"#global-actions .new:before,\n",
".module .list-link:hover,\n",
".module .list-link:focus,\n",
"\n",
".stats a:hover,\n",
".stats a:hover strong,\n",
".stats a:focus,\n",
".stats a:focus strong,\n",
"\n",
".find-friends-sources li:hover .source,\n",
"\n",
"\n",
"\n",
"\n",
"\n",
".stream-item a:hover .fullname,\n",
".stream-item a:focus .fullname,\n",
"\n",
".stream-item .view-all-supplements:hover,\n",
".stream-item .view-all-supplements:focus,\n",
"\n",
".tweet .time a:hover,\n",
".tweet .time a:focus,\n",
".tweet .details.with-icn b,\n",
".tweet .details.with-icn .Icon,\n",
"\n",
".stream-item:hover .original-tweet .details b,\n",
".stream-item .original-tweet.focus .details b,\n",
".stream-item.open .original-tweet .details b,\n",
"\n",
".client-and-actions a:hover,\n",
".client-and-actions a:focus,\n",
"\n",
".dismiss-btn:hover b,\n",
"\n",
".tweet .context .pretty-link:hover s,\n",
".tweet .context .pretty-link:hover b,\n",
".tweet .context .pretty-link:focus s,\n",
".tweet .context .pretty-link:focus b,\n",
"\n",
".list .username a:hover,\n",
".list .username a:focus,\n",
".list-membership-container .create-a-list,\n",
".list-membership-container .create-a-list:hover,\n",
".new-tweets-bar,\n",
"\n",
"\n",
"\n",
".card .list-details a:hover,\n",
".card .list-details a:focus,\n",
".card .card-body:hover .attribution,\n",
".card .card-body .attribution:focus {\n",
" color: #0084B4;\n",
"}\n",
"\n",
"\n",
"\n",
"\n",
" \n",
" .FoundMediaSearch--keyboard .FoundMediaSearch-focusable.is-focused {\n",
" border-color: #0084B4;\n",
" }\n",
"\n",
" \n",
" .photo-selector:hover .btn,\n",
" .icon-btn:hover,\n",
" .icon-btn:active,\n",
" .icon-btn.active,\n",
" .icon-btn.enabled {\n",
" border-color: #0084B4;\n",
" border-color: rgba(0,132,180,0.4);\n",
" color: #0084B4;\n",
" }\n",
"\n",
" \n",
" .photo-selector:hover .btn,\n",
" .icon-btn:hover {\n",
" background-image: linear-gradient(rgba(255,255,255,0), rgba(0,132,180,0.1));\n",
" }\n",
"\n",
" .icon-btn.disabled,\n",
" .icon-btn.disabled:hover,\n",
" .icon-btn[disabled],\n",
" .icon-btn[aria-disabled=true] {\n",
" color: #0084B4;\n",
" }\n",
"\n",
" \n",
" \n",
"\n",
" .EdgeButton--primary,\n",
" .EdgeButton--primary:focus {\n",
" background-color: #329CC3;\n",
" border-color: transparent;\n",
" }\n",
"\n",
" .EdgeButton--primary:hover,\n",
" .EdgeButton--primary:active {\n",
" background-color: #0084B4;\n",
" border-color: #0084B4;\n",
" }\n",
"\n",
" .EdgeButton--primary:focus {\n",
" box-shadow:\n",
" 0 0 0 2px #FFFFFF,\n",
" 0 0 0 4px #99CDE1;\n",
" }\n",
"\n",
" .EdgeButton--primary:active {\n",
" box-shadow:\n",
" 0 0 0 2px #FFFFFF,\n",
" 0 0 0 4px #329CC3;\n",
" }\n",
"\n",
" \n",
" \n",
"\n",
" .EdgeButton--secondary,\n",
" .EdgeButton--secondary:hover,\n",
" .EdgeButton--secondary:focus,\n",
" .EdgeButton--secondary:active {\n",
" border-color: #0084B4;\n",
" color: #0084B4;\n",
" }\n",
"\n",
" .EdgeButton--secondary:hover,\n",
" .EdgeButton--secondary:active {\n",
" background-color: #E5F2F7;\n",
" }\n",
"\n",
" .EdgeButton--secondary:focus {\n",
" box-shadow:\n",
" 0 0 0 2px #FFFFFF,\n",
" 0 0 0 4px rgba(0,132,180,0.4);\n",
" }\n",
"\n",
" .EdgeButton--secondary:active {\n",
" box-shadow:\n",
" 0 0 0 2px #FFFFFF,\n",
" 0 0 0 4px #0084B4;\n",
" }\n",
"\n",
" \n",
" \n",
"\n",
" .EdgeButton--invertedPrimary {\n",
" color: #0084B4 !important;\n",
" }\n",
"\n",
" .EdgeButton--invertedPrimary:focus {\n",
" box-shadow:\n",
" 0 0 0 2px #0084B4,\n",
" 0 0 0 4px #99CDE1;\n",
" }\n",
"\n",
" .EdgeButton--invertedPrimary:active {\n",
" box-shadow:\n",
" 0 0 0 2px #0084B4,\n",
" 0 0 0 4px #FFFFFF;\n",
" }\n",
"\n",
" \n",
" \n",
"\n",
" .EdgeButton--invertedSecondary {\n",
" background-color: #0084B4;\n",
" }\n",
"\n",
" .EdgeButton--invertedSecondary:hover {\n",
" background-color: #329CC3;\n",
" }\n",
"\n",
" .EdgeButton--invertedSecondary:focus {\n",
" box-shadow:\n",
" 0 0 0 2px #0084B4,\n",
" 0 0 0 4px #99CDE1;\n",
" }\n",
"\n",
" .EdgeButton--invertedSecondary:active {\n",
" box-shadow:\n",
" 0 0 0 2px #0084B4,\n",
" 0 0 0 4px #FFFFFF;\n",
" }\n",
"\n",
" \n",
"\n",
" .btn:focus,\n",
" .btn.focus,\n",
" .Button:focus,\n",
" .EmojiPicker-item.is-focused,\n",
" .EmojiPicker .EmojiCategoryIcon:focus,\n",
" .EmojiPicker-skinTone:focus + .EmojiPicker-skinToneSwatch,\n",
" a:focus > img:first-child:last-child,\n",
" button:focus {\n",
" box-shadow:\n",
" 0 0 0 2px #FFFFFF,\n",
" 0 0 2px 4px rgba(0,132,180,0.4);\n",
" }\n",
"\n",
" .selected-stream-item:focus {\n",
" box-shadow: 0 0 0 3px rgba(0,132,180,0.4);\n",
" }\n",
"\n",
" \n",
" .js-navigable-stream.stream-table-view .selected-stream-item[tabindex=\"-1\"]:focus {\n",
" outline: 3px solid rgba(0,132,180,0.4) !important;\n",
" }\n",
"\n",
" \n",
" .js-navigable-stream.stream-table-view .selected-stream-item:focus {\n",
" box-shadow: none;\n",
" }\n",
"\n",
" \n",
"\n",
" .global-dm-nav.new.with-count .dm-new .count-inner {\n",
" background: #0084B4;\n",
" }\n",
"\n",
" .global-nav .people .count .count-inner {\n",
" background: #0084B4;\n",
" }\n",
"\n",
" .dropdown-menu li > a:hover,\n",
" .dropdown-menu li > a:focus,\n",
" .dropdown-menu .dropdown-link:hover,\n",
" .dropdown-menu .dropdown-link:focus,\n",
" .dropdown-menu .dropdown-link.is-focused,\n",
" .dropdown-menu li:hover .dropdown-link,\n",
" .dropdown-menu li:focus .dropdown-link,\n",
" .dropdown-menu .selected a,\n",
" .dropdown-menu .dropdown-link.selected {\n",
" background-color: #0084B4 !important;\n",
" }\n",
"\n",
" /* for items in typeahead dropdown menu on logged in pages */\n",
" .dropdown-menu .typeahead-items li > a:focus,\n",
" .dropdown-menu .typeahead-items li > a:hover,\n",
" .dropdown-menu .typeahead-items .selected,\n",
" .dropdown-menu .typeahead-items .selected a {\n",
" background-color: #E5F2F7 !important;\n",
" color: #0084B4 !important;\n",
" }\n",
"\n",
" .typeahead a:hover,\n",
" .typeahead a:hover strong,\n",
" .typeahead a:hover .fullname,\n",
" .typeahead .selected a,\n",
" .typeahead .selected strong,\n",
" .typeahead .selected .fullname,\n",
" .typeahead .selected .Icon--close {\n",
" color: #0084B4 !important;\n",
" }\n",
"\n",
"\n",
".home-tweet-box,\n",
".LiveVideo-tweetBox,\n",
".RetweetDialog-commentBox {\n",
" background-color: #E5F2F7;\n",
"}\n",
"\n",
".top-timeline-tweetbox .timeline-tweet-box .tweet-form.condensed .tweet-box {\n",
" color: #0084B4;\n",
"}\n",
"\n",
".RichEditor,\n",
".TweetBoxAttachments {\n",
" border-color: #BFE0EC;\n",
"}\n",
"\n",
"input:focus,\n",
"textarea:focus,\n",
"div[contenteditable=\"true\"]:focus,\n",
"div[contenteditable=\"true\"].fake-focus,\n",
"div[contenteditable=\"plaintext-only\"]:focus,\n",
"div[contenteditable=\"plaintext-only\"].fake-focus {\n",
" border-color: #99CDE1;\n",
" box-shadow: inset 0 0 0 1px rgba(0,132,180,0.7);\n",
"}\n",
"\n",
".tweet-box textarea:focus,\n",
".tweet-box input[type=text],\n",
".currently-dragging .tweet-form.is-droppable .tweet-drag-help,\n",
".tweet-box[contenteditable=\"true\"]:focus,\n",
".RichEditor.is-fakeFocus,\n",
".RichEditor.is-fakeFocus ~ .TweetBoxAttachments {\n",
" border-color: #99CDE1;\n",
" box-shadow: 0 0 0 1px #99CDE1;\n",
"}\n",
"\n",
".MomentCapsuleItem.selected-stream-item:focus {\n",
" box-shadow: 0 0 0 3px rgba(0,132,180,0.4);\n",
"}\n",
"\n",
"\n",
"\n",
"\n",
"s,\n",
".pretty-link:hover s,\n",
".pretty-link:focus s,\n",
".stream-item-activity-notification .latest-tweet .tweet-row a:hover s,\n",
".stream-item-activity-notification .latest-tweet .tweet-row a:focus s {\n",
" color: #0084B4;\n",
"}\n",
"\n",
"\n",
"\n",
".vellip,\n",
".vellip:before,\n",
".vellip:after,\n",
".conversation-module > li:after,\n",
".conversation-module > li:before,\n",
".ThreadedConversation--loneTweet:after,\n",
".ThreadedConversation-tweet:not(.is-hiddenAncestor) ~ .ThreadedConversation-tweet:before,\n",
".ThreadedConversation-tweet:after,\n",
".ThreadedConversation-moreReplies:before,\n",
".ThreadedConversation-viewOther:before,\n",
".ThreadedConversation-unavailableTweet:before,\n",
".ThreadedConversation-unavailableTweet:after,\n",
".ThreadedConversation--permalinkTweetWithAncestors:before,\n",
".mini-avatar-with-thread:before,\n",
".permalink.self-thread-permalink-with-descendant .permalink-tweet-container:after,\n",
".permalink.self-thread-permalink-with-descendant .inline-reply-tweetbox-container:after {\n",
" border-color: #99CDE1;\n",
"}\n",
"\n",
"\n",
"\n",
"\n",
".tweet .sm-reply,\n",
".tweet .sm-rt,\n",
".tweet .sm-fav,\n",
".tweet .sm-image,\n",
".tweet .sm-video,\n",
".tweet .sm-audio,\n",
".tweet .sm-geo,\n",
".tweet .sm-in,\n",
".tweet .sm-trash,\n",
".tweet .sm-more,\n",
".tweet .sm-page,\n",
".tweet .sm-embed,\n",
".tweet .sm-summary,\n",
".tweet .sm-chat,\n",
"\n",
".timelines-navigation .active .profile-nav-icon,\n",
".timelines-navigation .profile-nav-icon:hover,\n",
".timelines-navigation .profile-nav-link:focus .profile-nav-icon,\n",
"\n",
".sm-top-tweet {\n",
" background-color: #0084B4;\n",
"}\n",
"\n",
".enhanced-mini-profile .mini-profile .profile-summary {\n",
" background-image: url(https://pbs.twimg.com/profile_banners/786939553/1550640093/mobile);\n",
"}\n",
"\n",
" #global-tweet-dialog .modal-header,\n",
" #Tweetstorm-dialog .modal-header {\n",
" border-bottom: solid 1px rgba(0,132,180,0.25);\n",
" }\n",
"\n",
" #global-tweet-dialog .modal-tweet-form-container,\n",
" #Tweetstorm-dialog .modal-body {\n",
" background-color: #0084B4;\n",
" background: rgba(0,132,180,0.1);\n",
" }\n",
"\n",
" .TweetstormDialog-reply-context .tweet-box-avatar:after,\n",
" .TweetstormDialog-reply-context .tweet-box-avatar:before,\n",
" .TweetstormDialog-tweet-box .tweet-box-avatar:after,\n",
" .TweetstormDialog-tweet-box .tweet-box-avatar:before {\n",
" border-color: #99CDE1;\n",
" }\n",
"\n",
" .global-nav .search-input:focus,\n",
" .global-nav .search-input.focus {\n",
" border: 2px solid #0084B4;\n",
" }\n",
"}\n",
"\n",
" .inline-reply-tweetbox {\n",
" background-color: #E5F2F7;\n",
" }\n",
" </style>\n",
" <div class=\"ProfileCanopy ProfileCanopy--withNav ProfileCanopy--large js-variableHeightTopBar\">\n",
" <div class=\"ProfileCanopy-inner\">\n",
" <div class=\"ProfileCanopy-header u-bgUserColor\">\n",
" <div class=\"ProfileCanopy-headerBg\">\n",
" <img alt=\"\" src=\"https://pbs.twimg.com/profile_banners/786939553/1550640093/1500x500\"/>\n",
" </div>\n",
" <div class=\"AppContainer\">\n",
" <div class=\"ProfileCanopy-avatar\">\n",
" <div class=\"ProfileAvatar\">\n",
" <a class=\"ProfileAvatar-container u-block js-tooltip profile-picture\" data-resolved-url-large=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_400x400.jpg\" data-url=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_400x400.jpg\" href=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_400x400.jpg\" rel=\"noopener\" target=\"_blank\" title=\"Mars Weather\">\n",
" <img alt=\"Mars Weather\" class=\"ProfileAvatar-image \" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_400x400.jpg\"/>\n",
" </a>\n",
" </div>\n",
" </div>\n",
" <div class=\"ProfileCanopy-headerPromptAnchor\">\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"ProfileCanopy-navBar u-boxShadow\">\n",
" <div class=\"AppContainer\">\n",
" <div class=\"Grid Grid--withGutter\">\n",
" <div class=\"Grid-cell u-size1of3 u-lg-size1of4\">\n",
" <div class=\"ProfileCanopy-card\" role=\"presentation\">\n",
" <div class=\"ProfileCardMini\">\n",
" <a class=\"ProfileCardMini-avatar profile-picture js-tooltip\" data-resolved-url-large=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere.jpg\" data-url=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere.jpg\" href=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere.jpg\" rel=\"noopener\" target=\"_blank\" title=\"Mars Weather\">\n",
" <img alt=\"Mars Weather\" class=\"ProfileCardMini-avatarImage\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_normal.jpg\"/>\n",
" </a>\n",
" <div class=\"ProfileCardMini-details\">\n",
" <div class=\"ProfileNameTruncated account-group\">\n",
" <div class=\"u-textTruncate u-inlineBlock\">\n",
" <a class=\"fullname ProfileNameTruncated-link u-textInheritColor js-nav\" data-aria-label-part=\"\" href=\"/MarsWxReport\">\n",
" Mars Weather\n",
" </a>\n",
" </div>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" </div>\n",
" <div class=\"ProfileCardMini-screenname\">\n",
" <a class=\"ProfileCardMini-screennameLink u-linkComplex js-nav u-dir\" dir=\"ltr\" href=\"/MarsWxReport\">\n",
" <span class=\"username u-dir\" dir=\"ltr\">\n",
" @\n",
" <b class=\"u-linkComplex-target\">\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"Grid-cell u-size2of3 u-lg-size3of4\">\n",
" <div class=\"ProfileCanopy-nav\">\n",
" <div class=\"ProfileNav\" data-user-id=\"786939553\" role=\"navigation\">\n",
" <ul class=\"ProfileNav-list\">\n",
" <li class=\"ProfileNav-item ProfileNav-item--tweets is-active\">\n",
" <a class=\"ProfileNav-stat ProfileNav-stat--link u-borderUserColor u-textCenter js-tooltip js-nav\" data-nav=\"tweets\" tabindex=\"0\" title=\"1,849 Tweets\">\n",
" <span aria-hidden=\"true\" class=\"ProfileNav-label\">\n",
" Tweets\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Tweets, current page.\n",
" </span>\n",
" <span class=\"ProfileNav-value\" data-count=\"1849\" data-is-compact=\"false\">\n",
" 1,849\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"ProfileNav-item ProfileNav-item--following\">\n",
" <a class=\"ProfileNav-stat ProfileNav-stat--link u-borderUserColor u-textCenter js-tooltip js-openSignupDialog js-nonNavigable u-textUserColor\" data-nav=\"following\" href=\"/MarsWxReport/following\" title=\"53 Following\">\n",
" <span aria-hidden=\"true\" class=\"ProfileNav-label\">\n",
" Following\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Following\n",
" </span>\n",
" <span class=\"ProfileNav-value\" data-count=\"53\" data-is-compact=\"false\">\n",
" 53\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"ProfileNav-item ProfileNav-item--followers\">\n",
" <a class=\"ProfileNav-stat ProfileNav-stat--link u-borderUserColor u-textCenter js-tooltip js-openSignupDialog js-nonNavigable u-textUserColor\" data-nav=\"followers\" href=\"/MarsWxReport/followers\" title=\"46,014 Followers\">\n",
" <span aria-hidden=\"true\" class=\"ProfileNav-label\">\n",
" Followers\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Followers\n",
" </span>\n",
" <span class=\"ProfileNav-value\" data-count=\"46014\" data-is-compact=\"true\">\n",
" 46K\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"ProfileNav-item ProfileNav-item--favorites\" data-more-item=\".ProfileNav-dropdownItem--favorites\">\n",
" <a class=\"ProfileNav-stat ProfileNav-stat--link u-borderUserColor u-textCenter js-tooltip js-openSignupDialog js-nonNavigable u-textUserColor\" data-nav=\"favorites\" href=\"/MarsWxReport/likes\" title=\"289 Likes\">\n",
" <span aria-hidden=\"true\" class=\"ProfileNav-label\">\n",
" Likes\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Likes\n",
" </span>\n",
" <span class=\"ProfileNav-value\" data-count=\"289\" data-is-compact=\"false\">\n",
" 289\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"ProfileNav-item ProfileNav-item--lists\" data-more-item=\".ProfileNav-dropdownItem--lists\">\n",
" <a class=\"ProfileNav-stat ProfileNav-stat--link u-borderUserColor u-textCenter js-tooltip js-openSignupDialog js-nonNavigable u-textUserColor\" data-nav=\"all_lists\" href=\"/MarsWxReport/lists\" title=\"9 Lists\">\n",
" <span aria-hidden=\"true\" class=\"ProfileNav-label\">\n",
" Lists\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Lists\n",
" </span>\n",
" <span class=\"ProfileNav-value\" data-is-compact=\"false\">\n",
" 9\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"ProfileNav-item ProfileNav-item--more dropdown is-hidden\">\n",
" <a class=\"ProfileNav-stat ProfileNav-stat--link ProfileNav-stat--moreLink js-openSignupDialog js-nonNavigable\" href=\"#more\" role=\"button\">\n",
" <span class=\"ProfileNav-label\">\n",
" </span>\n",
" <span class=\"ProfileNav-value\">\n",
" More\n",
" <span class=\"ProfileNav-dropdownCaret Icon Icon--medium Icon--caretDown\">\n",
" </span>\n",
" </span>\n",
" </a>\n",
" <div class=\"dropdown-menu\">\n",
" <div class=\"dropdown-caret\">\n",
" <span class=\"caret-outer\">\n",
" </span>\n",
" <span class=\"caret-inner\">\n",
" </span>\n",
" </div>\n",
" <ul>\n",
" <li>\n",
" <a class=\"ProfileNav-dropdownItem ProfileNav-dropdownItem--favorites is-hidden u-bgUserColorHover u-bgUserColorFocus u-linkClean js-nav\" href=\"/MarsWxReport/likes\">\n",
" Likes\n",
" </a>\n",
" </li>\n",
" <li>\n",
" <a class=\"ProfileNav-dropdownItem ProfileNav-dropdownItem--lists is-hidden u-bgUserColorHover u-bgUserColorFocus u-linkClean js-nav\" href=\"/MarsWxReport/lists\">\n",
" Lists\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </li>\n",
" <li class=\"ProfileNav-item ProfileNav-item--userActions u-floatRight u-textRight with-rightCaret \">\n",
" <div class=\"UserActions u-textLeft\">\n",
" <div class=\"user-actions btn-group not-following \" data-name=\"Mars Weather\" data-protected=\"false\" data-screen-name=\"MarsWxReport\" data-user-id=\"786939553\">\n",
" <span class=\"UserActions-moreActions u-inlineBlock\">\n",
" <button class=\"js-tooltip unmute-button btn small plain-btn\" data-placement=\"top\" title=\"Unmute @MarsWxReport\" type=\"button\">\n",
" <span class=\"Icon Icon--muted Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Unmute\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"first-load js-tooltip mute-button btn small plain-btn\" data-placement=\"top\" title=\"Mute @MarsWxReport\" type=\"button\">\n",
" <span class=\"Icon Icon--unmuted Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Mute\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </span>\n",
" <span class=\"user-actions-follow-button js-follow-btn follow-button\">\n",
" <button class=\" EdgeButton EdgeButton--secondary EdgeButton--medium button-text follow-text\" type=\"button\">\n",
" <span aria-hidden=\"true\">\n",
" Follow\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Follow\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\" EdgeButton EdgeButton--primary EdgeButton--medium button-text following-text\" type=\"button\">\n",
" <span aria-hidden=\"true\">\n",
" Following\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Following\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\" EdgeButton EdgeButton--danger EdgeButton--medium button-text unfollow-text\" type=\"button\">\n",
" <span aria-hidden=\"true\">\n",
" Unfollow\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Unfollow\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\" EdgeButton EdgeButton--invertedDanger EdgeButton--medium button-text blocked-text\" type=\"button\">\n",
" <span aria-hidden=\"true\">\n",
" Blocked\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Blocked\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\" EdgeButton EdgeButton--danger EdgeButton--medium button-text unblock-text\" type=\"button\">\n",
" <span aria-hidden=\"true\">\n",
" Unblock\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Unblock\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\" EdgeButton EdgeButton--secondary EdgeButton--medium button-text pending-text\" type=\"button\">\n",
" <span aria-hidden=\"true\">\n",
" Pending\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Pending follow request from\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\" EdgeButton EdgeButton--secondary EdgeButton--medium button-text cancel-text\" type=\"button\">\n",
" <span aria-hidden=\"true\">\n",
" Cancel\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Cancel your follow request to\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"AppContainer\">\n",
" <div aria-labelledby=\"content-main-heading\" class=\"AppContent-main content-main u-cf\" role=\"main\">\n",
" <div class=\"Grid Grid--withGutter\">\n",
" <div class=\"Grid-cell u-size1of3 u-lg-size1of4\">\n",
" <div class=\"Grid Grid--withGutter\">\n",
" <div class=\"Grid-cell\">\n",
" <div class=\"ProfileSidebar ProfileSidebar--withLeftAlignment\">\n",
" <div class=\"ProfileHeaderCard\">\n",
" <h1 class=\"ProfileHeaderCard-name\">\n",
" <a class=\"ProfileHeaderCard-nameLink u-textInheritColor js-nav\" href=\"/MarsWxReport\">\n",
" Mars Weather\n",
" </a>\n",
" </h1>\n",
" <h2 class=\"ProfileHeaderCard-screenname u-inlineBlock u-dir\" dir=\"ltr\">\n",
" <a class=\"ProfileHeaderCard-screennameLink u-linkComplex js-nav\" href=\"/MarsWxReport\">\n",
" <span class=\"username u-dir\" dir=\"ltr\">\n",
" @\n",
" <b class=\"u-linkComplex-target\">\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" </h2>\n",
" <p class=\"ProfileHeaderCard-bio u-dir\" dir=\"ltr\">\n",
" Updates as avail from the REMS weather instrument aboard\n",
" <a class=\"tweet-url twitter-atreply pretty-link\" data-mentioned-user-id=\"0\" dir=\"ltr\" href=\"/MarsCuriosity\" rel=\"nofollow\">\n",
" <s>\n",
" @\n",
" </s>\n",
" <b>\n",
" MarsCuriosity\n",
" </b>\n",
" </a>\n",
" . Data credit: Centro deAstrobiologia, FMI, JPL/NASA, Not an official acct.\n",
" </p>\n",
" <div class=\"ProfileHeaderCard-location \">\n",
" <span aria-hidden=\"true\" class=\"Icon Icon--geo Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <span class=\"ProfileHeaderCard-locationText u-dir\" dir=\"ltr\">\n",
" Gale Crater, Mars\n",
" </span>\n",
" </div>\n",
" <div class=\"ProfileHeaderCard-url \">\n",
" <span aria-hidden=\"true\" class=\"Icon Icon--url Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <span class=\"ProfileHeaderCard-urlText u-dir\">\n",
" <a class=\"u-textUserColor\" href=\"https://t.co/0PMWfPs8cw\" rel=\"me nofollow noopener\" target=\"_blank\" title=\"https://mars.nasa.gov/news/8415/insight-is-the-newest-mars-weather-service/\">\n",
" mars.nasa.gov/news/8415/insi…\n",
" </a>\n",
" </span>\n",
" </div>\n",
" <div class=\"ProfileHeaderCard-joinDate\">\n",
" <span aria-hidden=\"true\" class=\"Icon Icon--calendar Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <span class=\"ProfileHeaderCard-joinDateText js-tooltip u-dir\" dir=\"ltr\" title=\"5:48 AM - 28 Aug 2012\">\n",
" Joined August 2012\n",
" </span>\n",
" </div>\n",
" <div class=\"ProfileHeaderCard-birthdate u-hidden\">\n",
" <span aria-hidden=\"true\" class=\"Icon Icon--balloon Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <span class=\"ProfileHeaderCard-birthdateText u-dir\" dir=\"ltr\">\n",
" </span>\n",
" </div>\n",
" </div>\n",
" <div class=\"PhotoRail\">\n",
" <div class=\"PhotoRail-heading\">\n",
" <span aria-hidden=\"true\" class=\"Icon Icon--camera Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <span class=\"PhotoRail-headingText\">\n",
" <a class=\"PhotoRail-headingWithCount js-nav\" href=\"/MarsWxReport/media\">\n",
" 305 Photos and videos\n",
" </a>\n",
" <a class=\"PhotoRail-headingWithoutCount js-nav\" href=\"/MarsWxReport/media\">\n",
" Photos and videos\n",
" </a>\n",
" </span>\n",
" </div>\n",
" <div class=\"PhotoRail-mediaBox\">\n",
" <span class=\"js-photoRailInsertPoint\">\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"Grid-cell u-size2of3 u-lg-size3of4\">\n",
" <div class=\"Grid Grid--withGutter\">\n",
" <div class=\"Grid-cell\">\n",
" <div class=\"js-profileClusterFollow\">\n",
" </div>\n",
" </div>\n",
" <div class=\"Grid-cell u-lg-size2of3 \" data-test-selector=\"ProfileTimeline\">\n",
" <div class=\"ProfileHeading\">\n",
" <div class=\"ProfileHeading-spacer\">\n",
" </div>\n",
" <div class=\"ProfileHeading-content\">\n",
" <h2 class=\"ProfileHeading-title u-hiddenVisually \" id=\"content-main-heading\">\n",
" Tweets\n",
" </h2>\n",
" <ul class=\"ProfileHeading-toggle\">\n",
" <li class=\"ProfileHeading-toggleItem is-active\" data-element-term=\"tweets_toggle\">\n",
" <span aria-hidden=\"true\">\n",
" Tweets\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Tweets, current page.\n",
" </span>\n",
" </li>\n",
" <li class=\"ProfileHeading-toggleItem u-textUserColor\" data-element-term=\"tweets_with_replies_toggle\">\n",
" <a class=\"ProfileHeading-toggleLink js-openSignupDialog js-nonNavigable\" data-nav=\"tweets_with_replies_toggle\" href=\"/MarsWxReport/with_replies\">\n",
" Tweets & replies\n",
" </a>\n",
" </li>\n",
" <li class=\"ProfileHeading-toggleItem u-textUserColor\" data-element-term=\"photos_and_videos_toggle\">\n",
" <a class=\"ProfileHeading-toggleLink js-openSignupDialog js-nonNavigable\" data-nav=\"photos_and_videos_toggle\" href=\"/MarsWxReport/media\">\n",
" Media\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" <div class=\"ProfileWarningTimeline\" data-element-context=\"blocked_profile\">\n",
" <h2 class=\"ProfileWarningTimeline-heading\" id=\"content-main-heading\">\n",
" You blocked\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </h2>\n",
" <p class=\"ProfileWarningTimeline-explanation\">\n",
" Are you sure you want to view these Tweets? Viewing Tweets won't unblock\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </p>\n",
" <button class=\"EdgeButton EdgeButton--tertiary ProfileWarningTimeline-button\">\n",
" Yes, view profile\n",
" </button>\n",
" </div>\n",
" <div class=\"ScrollBumpDialog modal-container\" id=\"scroll-bump-dialog\">\n",
" <div class=\"modal draggable\">\n",
" <div class=\"modal-content clearfix\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Mars Weather followed\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"loading\">\n",
" <span class=\"spinner-bigger\">\n",
" </span>\n",
" </div>\n",
" <ol class=\"ScrollBumpDialog-usersList clearfix js-users-list\">\n",
" </ol>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"ProfileTimeline \" id=\"timeline\">\n",
" <div class=\"stream-container \" data-max-position=\"1137311111185948672\" data-min-position=\"1131898433265164288\">\n",
" <div class=\"stream-item js-new-items-bar-container\">\n",
" </div>\n",
" <div class=\"stream\">\n",
" <ol class=\"stream-items js-navigable-stream\" id=\"stream-items-id\">\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1137311111185948672\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1137311111185948672\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1137311111185948672\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1137311111185948672\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1137311111185948672\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1137311111185948672\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1137311111185948672\" data-tweet-nonce=\"1137311111185948672-7fbc2d3e-0b94-4e0b-b642-5a2f3a2a9aaf\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1137311111185948672\" href=\"/MarsWxReport/status/1137311111185948672\" title=\"3:51 AM - 8 Jun 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559991073\" data-time-ms=\"1559991073000\">\n",
" Jun 8\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 188 (2019-06-07) low -102.5ºC (-152.6ºF) high -21.9ºC (-7.4ºF)\n",
"winds from the SSE at 4.8 m/s (10.8 mph) gusting to 15.6 m/s (35.0 mph)\n",
"pressure at 7.60 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/ocUTA1rgaU\">\n",
" pic.twitter.com/ocUTA1rgaU\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D8iKbW7WwAE3_cj.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D8iKbW7WwAE3_cj.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1137311111185948672\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"7\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1137311111185948672\">\n",
" 7 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"17\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1137311111185948672\">\n",
" 17 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1137311111185948672\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1137311111185948672\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 7\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 7\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1137311111185948672\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 17\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 17\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1137311076733923329\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1137311076733923329\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1137311076733923329\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet \" data-conversation-id=\"1137311076733923329\" data-disclosure-type=\"\" data-follows-you=\"false\" data-item-id=\"1137311076733923329\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1137311076733923329\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1137311076733923329\" data-tweet-nonce=\"1137311076733923329-186ab071-d205-4bb2-9dfa-08492aaf95b4\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1137311076733923329\" href=\"/MarsWxReport/status/1137311076733923329\" title=\"3:51 AM - 8 Jun 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559991065\" data-time-ms=\"1559991065000\">\n",
" Jun 8\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 187 (2019-06-06) low -102.8ºC (-153.1ºF) high -21.9ºC (-7.5ºF)\n",
"winds from the SSE at 4.4 m/s (9.8 mph) gusting to 16.1 m/s (36.1 mph)\n",
"pressure at 7.60 hPa\n",
" </p>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1137311076733923329\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"4\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1137311076733923329\">\n",
" 4 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"13\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1137311076733923329\">\n",
" 13 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1137311076733923329\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1137311076733923329\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 4\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 4\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1137311076733923329\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 13\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 13\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1137311075337220096\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1137311075337220096\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1137311075337220096\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet \" data-conversation-id=\"1137311075337220096\" data-disclosure-type=\"\" data-follows-you=\"false\" data-item-id=\"1137311075337220096\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1137311075337220096\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1137311075337220096\" data-tweet-nonce=\"1137311075337220096-d1296ddb-cb33-46c7-aabc-3076912e2053\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1137311075337220096\" href=\"/MarsWxReport/status/1137311075337220096\" title=\"3:51 AM - 8 Jun 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559991065\" data-time-ms=\"1559991065000\">\n",
" Jun 8\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 186 (2019-06-05) low -101.7ºC (-151.0ºF) high -21.8ºC (-7.2ºF)\n",
"winds from the SSE at 4.6 m/s (10.3 mph) gusting to 16.2 m/s (36.3 mph)\n",
"pressure at 7.60 hPa\n",
" </p>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1137311075337220096\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"7\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1137311075337220096\">\n",
" 7 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"19\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1137311075337220096\">\n",
" 19 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1137311075337220096\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1137311075337220096\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 7\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 7\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1137311075337220096\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 19\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 19\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1137311074145964032\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1137311074145964032\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1137311074145964032\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet \" data-conversation-id=\"1137311074145964032\" data-disclosure-type=\"\" data-follows-you=\"false\" data-item-id=\"1137311074145964032\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1137311074145964032\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1137311074145964032\" data-tweet-nonce=\"1137311074145964032-d1da7504-2c88-44bb-959a-d9dc936cd765\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1137311074145964032\" href=\"/MarsWxReport/status/1137311074145964032\" title=\"3:51 AM - 8 Jun 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559991064\" data-time-ms=\"1559991064000\">\n",
" Jun 8\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 185 (2019-06-04) low -100.7ºC (-149.3ºF) high -21.2ºC (-6.2ºF)\n",
"winds from the W at 4.5 m/s (10.1 mph) gusting to 15.3 m/s (34.3 mph)\n",
"pressure at 7.60 hPa\n",
" </p>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1137311074145964032\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"4\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1137311074145964032\">\n",
" 4 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"14\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1137311074145964032\">\n",
" 14 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1137311074145964032\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1137311074145964032\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 4\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 4\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1137311074145964032\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 14\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 14\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1136790363769843713\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1136790363769843713\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1136790363769843713\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards cards-forward \" data-card2-type=\"player\" data-conversation-id=\"1136790363769843713\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1136790363769843713\" data-mentions=\"NASAJPL\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1136790363769843713\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}},{\"id_str\":\"19802879\",\"screen_name\":\"NASAJPL\",\"name\":\"NASA JPL\",\"emojified_name\":{\"text\":\"NASA JPL\",\"emojified_text_as_html\":\"NASA JPL\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1136790363769843713\" data-tweet-nonce=\"1136790363769843713-3561d1ce-114e-4ccc-a13f-e8c7a0aea219\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1136790363769843713\" href=\"/MarsWxReport/status/1136790363769843713\" title=\"5:21 PM - 6 Jun 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559866917\" data-time-ms=\"1559866917000\">\n",
" Jun 6\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" Watch the\n",
" <a class=\"twitter-hashtag pretty-link js-nav\" data-query-source=\"hashtag_click\" dir=\"ltr\" href=\"/hashtag/Mars2020?src=hash\">\n",
" <s>\n",
" #\n",
" </s>\n",
" <b>\n",
" Mars2020\n",
" </b>\n",
" </a>\n",
" rover being built live from\n",
" <a class=\"twitter-atreply pretty-link js-nav\" data-mentioned-user-id=\"19802879\" dir=\"ltr\" href=\"/NASAJPL\">\n",
" <s>\n",
" @\n",
" </s>\n",
" <b>\n",
" NASAJPL\n",
" </b>\n",
" </a>\n",
" <a class=\"twitter-timeline-link u-hidden\" data-expanded-url=\"https://youtu.be/PaNiYPglK58\" dir=\"ltr\" href=\"https://t.co/Rls4ucVpgR\" rel=\"nofollow noopener\" target=\"_blank\" title=\"https://youtu.be/PaNiYPglK58\">\n",
" <span class=\"tco-ellipsis\">\n",
" </span>\n",
" <span class=\"invisible\">\n",
" https://\n",
" </span>\n",
" <span class=\"js-display-url\">\n",
" youtu.be/PaNiYPglK58\n",
" </span>\n",
" <span class=\"invisible\">\n",
" </span>\n",
" <span class=\"tco-ellipsis\">\n",
" <span class=\"invisible\">\n",
" </span>\n",
" </span>\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"card2 js-media-container \" data-card2-name=\"player\">\n",
" <div class=\"js-macaw-cards-iframe-container initial-card-height card-type-player\" data-amplify-content-id=\"\" data-amplify-playlist-url=\"\" data-card-name=\"player\" data-card-url=\"https://t.co/Rls4ucVpgR\" data-creator-id=\"\" data-full-card-iframe-url=\"/i/cards/tfw/v1/1136790363769843713?cardname=player&autoplay_disabled=true&earned=true&edge=true&lang=en\" data-has-autoplayable-media=\"false\" data-publisher-id=\"10228272\" data-src=\"/i/cards/tfw/v1/1136790363769843713?cardname=player&autoplay_disabled=true&forward=true&earned=true&edge=true&lang=en\">\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1136790363769843713\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"7\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1136790363769843713\">\n",
" 7 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"14\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1136790363769843713\">\n",
" 14 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1136790363769843713\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1136790363769843713\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 7\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 7\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1136790363769843713\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 14\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 14\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1136042752171479040\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1136042752171479040\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1136042752171479040\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1136042752171479040\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1136042752171479040\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1136042752171479040\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1136042752171479040\" data-tweet-nonce=\"1136042752171479040-e290561a-e948-4f61-b7de-1e1c67501e68\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1136042752171479040\" href=\"/MarsWxReport/status/1136042752171479040\" title=\"3:51 PM - 4 Jun 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559688673\" data-time-ms=\"1559688673000\">\n",
" Jun 4\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 184 (2019-06-03) low -101.3ºC (-150.4ºF) high -22.1ºC (-7.7ºF)\n",
"winds from the W at 4.5 m/s (10.0 mph) gusting to 15.2 m/s (33.9 mph)\n",
"pressure at 7.60 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/9e75FL7Fj5\">\n",
" pic.twitter.com/9e75FL7Fj5\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D8QI3HzW4AY1rW9.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D8QI3HzW4AY1rW9.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1136042752171479040\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"10\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1136042752171479040\">\n",
" 10 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"18\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1136042752171479040\">\n",
" 18 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1136042752171479040\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1136042752171479040\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 10\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 10\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1136042752171479040\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 18\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 18\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1135952167490215937\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1135952167490215937\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1135952167490215937\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1135952167490215937\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1135952167490215937\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1135952167490215937\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1135952167490215937\" data-tweet-nonce=\"1135952167490215937-5c554054-e417-4c3f-857f-b468879fbce4\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1135952167490215937\" href=\"/MarsWxReport/status/1135952167490215937\" title=\"9:51 AM - 4 Jun 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559667076\" data-time-ms=\"1559667076000\">\n",
" Jun 4\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 183 (2019-06-02) low -101.1ºC (-150.0ºF) high -22.3ºC (-8.2ºF)\n",
"winds from the SSE at 4.9 m/s (11.1 mph) gusting to 15.2 m/s (33.9 mph)\n",
"pressure at 7.60 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/X7ISVrTgLY\">\n",
" pic.twitter.com/X7ISVrTgLY\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D8O2eb8XoAAGjvX.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D8O2eb8XoAAGjvX.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1135952167490215937\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"5\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1135952167490215937\">\n",
" 5 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"21\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1135952167490215937\">\n",
" 21 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1135952167490215937\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1135952167490215937\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 5\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 5\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1135952167490215937\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 21\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 21\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1135227403968684033\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1135227403968684033\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1135227403968684033\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1135227403968684033\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1135227403968684033\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1135227403968684033\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1135227403968684033\" data-tweet-nonce=\"1135227403968684033-1ed05486-ee94-474a-a5f0-315fc2b8e09c\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1135227403968684033\" href=\"/MarsWxReport/status/1135227403968684033\" title=\"9:51 AM - 2 Jun 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559494279\" data-time-ms=\"1559494279000\">\n",
" Jun 2\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 182 (2019-06-01) low -99.7ºC (-147.5ºF) high -22.6ºC (-8.7ºF)\n",
"winds from the SSE at 5.7 m/s (12.7 mph) gusting to 15.9 m/s (35.5 mph)\n",
"pressure at 7.50 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/NmzIAqOiDG\">\n",
" pic.twitter.com/NmzIAqOiDG\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D8EjTmZWwAI2Rpz.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D8EjTmZWwAI2Rpz.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"3\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-reply-count-aria-1135227403968684033\">\n",
" 3 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"7\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1135227403968684033\">\n",
" 7 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"25\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1135227403968684033\">\n",
" 25 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1135227403968684033\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 3\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1135227403968684033\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 7\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 7\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1135227403968684033\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 25\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 25\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1134683794085163009\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1134683794085163009\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1134683794085163009\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1134683794085163009\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1134683794085163009\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1134683794085163009\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1134683794085163009\" data-tweet-nonce=\"1134683794085163009-f78b7f86-f895-4a77-b347-51bbf3d06122\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1134683794085163009\" href=\"/MarsWxReport/status/1134683794085163009\" title=\"9:51 PM - 31 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559364672\" data-time-ms=\"1559364672000\">\n",
" May 31\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 181 (2019-05-31) low -100.6ºC (-149.1ºF) high -20.7ºC (-5.3ºF)\n",
"winds from the SW at 5.1 m/s (11.3 mph) gusting to 14.9 m/s (33.3 mph)\n",
"pressure at 7.50 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/li2rdNRsJx\">\n",
" pic.twitter.com/li2rdNRsJx\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D7805YvX4AA1M6s.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D7805YvX4AA1M6s.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"1\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-reply-count-aria-1134683794085163009\">\n",
" 1 reply\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"7\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1134683794085163009\">\n",
" 7 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"23\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1134683794085163009\">\n",
" 23 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1134683794085163009\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 1\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1134683794085163009\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 7\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 7\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1134683794085163009\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 23\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 23\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1134321440797278208\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1134321440797278208\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1134321440797278208\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1134321440797278208\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1134321440797278208\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1134321440797278208\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1134321440797278208\" data-tweet-nonce=\"1134321440797278208-1d00db26-6e4f-47bc-9e49-1a3bfa410caf\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1134321440797278208\" href=\"/MarsWxReport/status/1134321440797278208\" title=\"9:51 PM - 30 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559278280\" data-time-ms=\"1559278280000\">\n",
" May 30\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 180 (2019-05-30) low -101.1ºC (-149.9ºF) high -21.8ºC (-7.2ºF)\n",
"winds from the S at 4.7 m/s (10.5 mph) gusting to 14.7 m/s (32.9 mph)\n",
"pressure at 7.50 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/nkAZ6rX9xE\">\n",
" pic.twitter.com/nkAZ6rX9xE\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D73rVosUYAASKjG.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D73rVosUYAASKjG.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1134321440797278208\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"4\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1134321440797278208\">\n",
" 4 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"23\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1134321440797278208\">\n",
" 23 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1134321440797278208\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1134321440797278208\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 4\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 4\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1134321440797278208\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 23\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 23\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1133959021747167234\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1133959021747167234\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1133959021747167234\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1133959021747167234\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1133959021747167234\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1133959021747167234\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1133959021747167234\" data-tweet-nonce=\"1133959021747167234-ab99a6c8-d61c-4ff5-8c5e-0258aff6c74f\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1133959021747167234\" href=\"/MarsWxReport/status/1133959021747167234\" title=\"9:51 PM - 29 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559191873\" data-time-ms=\"1559191873000\">\n",
" May 29\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 179 (2019-05-29) low -101.0ºC (-149.8ºF) high -21.5ºC (-6.6ºF)\n",
"winds from the SW at 4.8 m/s (10.8 mph) gusting to 14.5 m/s (32.4 mph)\n",
"pressure at 7.50 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/nWS2m2GBsM\">\n",
" pic.twitter.com/nWS2m2GBsM\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D7yhuFJXoAE-Ssu.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D7yhuFJXoAE-Ssu.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1133959021747167234\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"4\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1133959021747167234\">\n",
" 4 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"24\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1133959021747167234\">\n",
" 24 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1133959021747167234\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1133959021747167234\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 4\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 4\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1133959021747167234\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 24\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 24\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1133687268521271297\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1133687268521271297\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1133687268521271297\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1133687268521271297\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1133687268521271297\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1133687268521271297\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1133687268521271297\" data-tweet-nonce=\"1133687268521271297-7fc658cc-c2ed-46f0-967f-17f6249161ae\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1133687268521271297\" href=\"/MarsWxReport/status/1133687268521271297\" title=\"3:51 AM - 29 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559127082\" data-time-ms=\"1559127082000\">\n",
" May 29\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 178 (2019-05-28) low -101.1ºC (-150.0ºF) high -23.0ºC (-9.5ºF)\n",
"winds from the SW at 4.8 m/s (10.8 mph) gusting to 15.0 m/s (33.5 mph)\n",
"pressure at 7.50 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/4Ejlnu9Kam\">\n",
" pic.twitter.com/4Ejlnu9Kam\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D7uqj52W0AAiSK-.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D7uqj52W0AAiSK-.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1133687268521271297\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"9\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1133687268521271297\">\n",
" 9 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"18\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1133687268521271297\">\n",
" 18 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1133687268521271297\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1133687268521271297\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 9\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 9\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1133687268521271297\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 18\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 18\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1133324837437476865\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1133324837437476865\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1133324837437476865\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1133324837437476865\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1133324837437476865\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1133324837437476865\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1133324837437476865\" data-tweet-nonce=\"1133324837437476865-a52da3d0-16cb-4c67-ae75-a11755e14d5e\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1133324837437476865\" href=\"/MarsWxReport/status/1133324837437476865\" title=\"3:51 AM - 28 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1559040672\" data-time-ms=\"1559040672000\">\n",
" May 28\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 177 (2019-05-27) low -100.7ºC (-149.2ºF) high -21.3ºC (-6.4ºF)\n",
"winds from the SW at 4.2 m/s (9.5 mph) gusting to 17.1 m/s (38.2 mph)\n",
"pressure at 7.50 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/lMkrj33O50\">\n",
" pic.twitter.com/lMkrj33O50\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D7pg7s8WkAAQBq3.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D7pg7s8WkAAQBq3.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1133324837437476865\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"5\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1133324837437476865\">\n",
" 5 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"23\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1133324837437476865\">\n",
" 23 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1133324837437476865\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1133324837437476865\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 5\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 5\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1133324837437476865\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 23\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 23\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1132962454101778434\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1132962454101778434\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1132962454101778434\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1132962454101778434\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1132962454101778434\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1132962454101778434\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1132962454101778434\" data-tweet-nonce=\"1132962454101778434-37cf4439-1cbf-489c-99b5-d807c1206ba5\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1132962454101778434\" href=\"/MarsWxReport/status/1132962454101778434\" title=\"3:51 AM - 27 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1558954273\" data-time-ms=\"1558954273000\">\n",
" May 27\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 176 (2019-05-26) low -100.3ºC (-148.6ºF) high -19.9ºC (-3.9ºF)\n",
"winds from the W at 4.2 m/s (9.5 mph) gusting to 15.9 m/s (35.6 mph)\n",
"pressure at 7.50 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/rI1XSUC5yf\">\n",
" pic.twitter.com/rI1XSUC5yf\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D7kXWMXXoAAU6KY.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D7kXWMXXoAAU6KY.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1132962454101778434\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"10\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1132962454101778434\">\n",
" 10 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"22\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1132962454101778434\">\n",
" 22 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1132962454101778434\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1132962454101778434\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 10\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 10\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1132962454101778434\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 22\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 22\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1132861403126292480\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1132861403126292480\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1132861403126292480\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet \" data-conversation-id=\"1132861403126292480\" data-disclosure-type=\"\" data-follows-you=\"false\" data-item-id=\"1132861403126292480\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1132861403126292480\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1132861403126292480\" data-tweet-nonce=\"1132861403126292480-396de7b3-64eb-409e-a950-d41125092581\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1132861403126292480\" href=\"/MarsWxReport/status/1132861403126292480\" title=\"9:09 PM - 26 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1558930180\" data-time-ms=\"1558930180000\">\n",
" May 26\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <p aria-hidden=\"true\" class=\"u-hiddenVisually\" data-aria-label-part=\"1\">\n",
" Mars Weather Retweeted Mars Mission Images\n",
" </p>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"4\" lang=\"en\">\n",
" Cirrus clouds ... on Mars.\n",
" <a class=\"twitter-timeline-link u-hidden\" data-expanded-url=\"https://twitter.com/MarsMissionImgs/status/1132854109571145728\" dir=\"ltr\" href=\"https://t.co/HH7Ul7DYkT\" rel=\"nofollow noopener\" target=\"_blank\" title=\"https://twitter.com/MarsMissionImgs/status/1132854109571145728\">\n",
" <span class=\"tco-ellipsis\">\n",
" </span>\n",
" <span class=\"invisible\">\n",
" https://\n",
" </span>\n",
" <span class=\"js-display-url\">\n",
" twitter.com/MarsMissionImg\n",
" </span>\n",
" <span class=\"invisible\">\n",
" s/status/1132854109571145728\n",
" </span>\n",
" <span class=\"tco-ellipsis\">\n",
" <span class=\"invisible\">\n",
" </span>\n",
" …\n",
" </span>\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <p aria-hidden=\"true\" class=\"u-hiddenVisually\" data-aria-label-part=\"3\">\n",
" Mars Weather added,\n",
" </p>\n",
" <div class=\"QuoteTweet u-block js-tweet-details-fixer\">\n",
" <div class=\"QuoteTweet-container\">\n",
" <a aria-hidden=\"true\" class=\"QuoteTweet-link js-nav\" data-conversation-id=\"1132854109571145728\" href=\"/MarsMissionImgs/status/1132854109571145728\">\n",
" </a>\n",
" <div class=\"QuoteTweet-innerContainer u-cf js-permalink js-media-container\" data-conversation-id=\"1132854109571145728\" data-item-id=\"1132854109571145728\" data-item-type=\"tweet\" data-screen-name=\"MarsMissionImgs\" data-user-id=\"1070916217215434755\" href=\"/MarsMissionImgs/status/1132854109571145728\" tabindex=\"0\">\n",
" <div class=\"tweet-content\">\n",
" <div class=\"QuoteMedia\">\n",
" <div class=\"QuoteMedia-container js-quote-media-container\">\n",
" <div class=\"QuoteMedia-singlePhoto\">\n",
" <div class=\"QuoteMedia-photoContainer js-quote-photo\" data-dominant-color=\"[48,48,48]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D7i0zx6U0AAVXC0.jpg\" style=\"background-color:rgba(48,48,48,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D7i0zx6U0AAVXC0.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"QuoteTweet-authorAndText u-alignTop\">\n",
" <div class=\"QuoteTweet-originalAuthor u-cf u-textTruncate stream-item-header account-group js-user-profile-link\">\n",
" <b class=\"QuoteTweet-fullname u-linkComplex-target\">\n",
" Mars Mission Images\n",
" </b>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsMissionImgs\n",
" </b>\n",
" </span>\n",
" </div>\n",
" <div class=\"QuoteTweet-text tweet-text u-dir js-ellipsis\" data-aria-label-part=\"2\" dir=\"ltr\" lang=\"und\">\n",
" <span class=\"twitter-hashtag pretty-link js-nav\" data-query-source=\"hashtag_click\" dir=\"ltr\">\n",
" <s>\n",
" #\n",
" </s>\n",
" <b>\n",
" CuriosityRover\n",
" </b>\n",
" </span>\n",
" <span class=\"twitter-hashtag pretty-link js-nav\" data-query-source=\"hashtag_click\" dir=\"ltr\">\n",
" <s>\n",
" #\n",
" </s>\n",
" <b>\n",
" Mars\n",
" </b>\n",
" </span>\n",
" <span class=\"twitter-hashtag pretty-link js-nav\" data-query-source=\"hashtag_click\" dir=\"ltr\">\n",
" <s>\n",
" #\n",
" </s>\n",
" <b>\n",
" NASA\n",
" </b>\n",
" </span>\n",
" <span class=\"twitter-hashtag pretty-link js-nav\" data-query-source=\"hashtag_click\" dir=\"ltr\">\n",
" <s>\n",
" #\n",
" </s>\n",
" <b>\n",
" Sol2417\n",
" </b>\n",
" </span>\n",
" <span class=\"twitter-hashtag pretty-link js-nav\" data-query-source=\"hashtag_click\" dir=\"ltr\">\n",
" <s>\n",
" #\n",
" </s>\n",
" <b>\n",
" Space\n",
" </b>\n",
" </span>\n",
" <span class=\"twitter-hashtag pretty-link js-nav\" data-query-source=\"hashtag_click\" dir=\"ltr\">\n",
" <s>\n",
" #\n",
" </s>\n",
" <b>\n",
" Navcam\n",
" </b>\n",
" </span>\n",
" <span class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\">\n",
" pic.twitter.com/rwXellZYgn\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1132861403126292480\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"18\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1132861403126292480\">\n",
" 18 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"71\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1132861403126292480\">\n",
" 71 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1132861403126292480\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1132861403126292480\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 18\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 18\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1132861403126292480\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 71\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 71\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1132328275072753664\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1132328275072753664\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1132328275072753664\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1132328275072753664\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1132328275072753664\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1132328275072753664\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1132328275072753664\" data-tweet-nonce=\"1132328275072753664-19abdb31-10ae-4513-b24e-971df5290ec8\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1132328275072753664\" href=\"/MarsWxReport/status/1132328275072753664\" title=\"9:51 AM - 25 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1558803073\" data-time-ms=\"1558803073000\">\n",
" May 25\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 174 (2019-05-24) low -101.1ºC (-149.9ºF) high -21.3ºC (-6.4ºF)\n",
"winds from the SW at 4.3 m/s (9.6 mph) gusting to 16.3 m/s (36.5 mph)\n",
"pressure at 7.50 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/7XARGO6DS6\">\n",
" pic.twitter.com/7XARGO6DS6\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D7bWkINWsAAL3H-.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D7bWkINWsAAL3H-.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"3\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-reply-count-aria-1132328275072753664\">\n",
" 3 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"10\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1132328275072753664\">\n",
" 10 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"27\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1132328275072753664\">\n",
" 27 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1132328275072753664\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 3\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1132328275072753664\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 10\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 10\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1132328275072753664\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 27\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 27\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1132008522366029825\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1132008522366029825\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1132008522366029825\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet tweet-has-context \" data-conversation-id=\"1132008522366029825\" data-disclosure-type=\"\" data-follows-you=\"false\" data-item-id=\"1132008522366029825\" data-name=\"Dr. Caroline Beghein\" data-permalink-path=\"/caro_aniso/status/1132008522366029825\" data-reply-to-users-json='[{\"id_str\":\"561249724\",\"screen_name\":\"caro_aniso\",\"name\":\"Dr. Caroline Beghein\",\"emojified_name\":{\"text\":\"Dr. Caroline Beghein\",\"emojified_text_as_html\":\"Dr. Caroline Beghein\"}},{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-retweet-id=\"1132252675586834432\" data-retweeter=\"MarsWxReport\" data-screen-name=\"caro_aniso\" data-tweet-id=\"1132008522366029825\" data-tweet-nonce=\"1132008522366029825-d19d453c-35c1-48df-8c20-02950778f98f\" data-tweet-stat-initialized=\"true\" data-user-id=\"561249724\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" <div class=\"tweet-context with-icn \">\n",
" <span class=\"Icon Icon--small Icon--retweeted\">\n",
" </span>\n",
" <span class=\"js-retweet-text\">\n",
" <a class=\"pretty-link js-user-profile-link\" data-user-id=\"786939553\" href=\"/MarsWxReport\" rel=\"noopener\">\n",
" <b>\n",
" Mars Weather\n",
" </b>\n",
" </a>\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"561249724\" href=\"/caro_aniso\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/1067075038321377285/EOWLEM9R_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \">\n",
" Dr. Caroline Beghein\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" caro_aniso\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1132008522366029825\" href=\"/caro_aniso/status/1132008522366029825\" title=\"12:40 PM - 24 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1558726838\" data-time-ms=\"1558726838000\">\n",
" May 24\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <p aria-hidden=\"true\" class=\"u-hiddenVisually\" data-aria-label-part=\"1\">\n",
" Dr. Caroline Beghein Retweeted SEIS\n",
" </p>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"4\" lang=\"en\">\n",
" The first 3 months of InSight seismic data are available for download!\n",
" <a class=\"twitter-timeline-link u-hidden\" data-expanded-url=\"https://twitter.com/InSight_IPGP/status/1132007235285135361\" dir=\"ltr\" href=\"https://t.co/Jt4V6wZV5u\" rel=\"nofollow noopener\" target=\"_blank\" title=\"https://twitter.com/InSight_IPGP/status/1132007235285135361\">\n",
" <span class=\"tco-ellipsis\">\n",
" </span>\n",
" <span class=\"invisible\">\n",
" https://\n",
" </span>\n",
" <span class=\"js-display-url\">\n",
" twitter.com/InSight_IPGP/s\n",
" </span>\n",
" <span class=\"invisible\">\n",
" tatus/1132007235285135361\n",
" </span>\n",
" <span class=\"tco-ellipsis\">\n",
" <span class=\"invisible\">\n",
" </span>\n",
" …\n",
" </span>\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <p aria-hidden=\"true\" class=\"u-hiddenVisually\" data-aria-label-part=\"3\">\n",
" Dr. Caroline Beghein added,\n",
" </p>\n",
" <div class=\"QuoteTweet u-block js-tweet-details-fixer\">\n",
" <div class=\"QuoteTweet-container\">\n",
" <a aria-hidden=\"true\" class=\"QuoteTweet-link js-nav\" data-conversation-id=\"1132007235285135361\" href=\"/InSight_IPGP/status/1132007235285135361\">\n",
" </a>\n",
" <div class=\"QuoteTweet-innerContainer u-cf js-permalink js-media-container\" data-conversation-id=\"1132007235285135361\" data-item-id=\"1132007235285135361\" data-item-type=\"tweet\" data-screen-name=\"InSight_IPGP\" data-user-id=\"981933581676236803\" href=\"/InSight_IPGP/status/1132007235285135361\" tabindex=\"0\">\n",
" <div class=\"tweet-content\">\n",
" <div class=\"QuoteMedia\">\n",
" <div class=\"QuoteMedia-container js-quote-media-container\">\n",
" <div class=\"QuoteMedia-singlePhoto\">\n",
" <div class=\"QuoteMedia-photoContainer js-quote-photo\" data-dominant-color=\"[64,64,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D7WylDAWsAcotXp.jpg\" style=\"background-color:rgba(64,64,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D7WylDAWsAcotXp.jpg\" style=\"height: 100%; left: -221px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"QuoteTweet-authorAndText u-alignTop\">\n",
" <div class=\"QuoteTweet-originalAuthor u-cf u-textTruncate stream-item-header account-group js-user-profile-link\">\n",
" <b class=\"QuoteTweet-fullname u-linkComplex-target\">\n",
" SEIS\n",
" </b>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" InSight_IPGP\n",
" </b>\n",
" </span>\n",
" </div>\n",
" <div class=\"QuoteTweet-text tweet-text u-dir js-ellipsis\" data-aria-label-part=\"2\" dir=\"ltr\" lang=\"fr\">\n",
" Aujourd'hui, je suis heureux de pouvoir partager avec vous les signaux que j'ai collectés au cours de mes trois premiers mois de présence sur Mars. Les données sont téléchargeables depuis les serveurs de\n",
" <span class=\"twitter-atreply pretty-link js-nav\" data-mentioned-user-id=\"3842930237\" dir=\"ltr\">\n",
" <s>\n",
" @\n",
" </s>\n",
" <b>\n",
" IPGP_officiel\n",
" </b>\n",
" </span>\n",
" ,\n",
" <span class=\"twitter-atreply pretty-link js-nav\" data-mentioned-user-id=\"456873753\" dir=\"ltr\">\n",
" <s>\n",
" @\n",
" </s>\n",
" <b>\n",
" nasapds\n",
" </b>\n",
" </span>\n",
" et\n",
" <span class=\"twitter-atreply pretty-link js-nav\" data-mentioned-user-id=\"45770236\" dir=\"ltr\">\n",
" <s>\n",
" @\n",
" </s>\n",
" <b>\n",
" IRIS_EPO\n",
" </b>\n",
" </span>\n",
" .\n",
" <span class=\"twitter-timeline-link\" data-expanded-url=\"https://www.seis-insight.eu/fr/actualites/483-seis-data-release\" dir=\"ltr\" rel=\"nofollow noopener\" target=\"_blank\" title=\"https://www.seis-insight.eu/fr/actualites/483-seis-data-release\">\n",
" <span class=\"tco-ellipsis\">\n",
" </span>\n",
" <span class=\"invisible\">\n",
" https://www.\n",
" </span>\n",
" <span class=\"js-display-url\">\n",
" seis-insight.eu/fr/actualites/\n",
" </span>\n",
" <span class=\"invisible\">\n",
" 483-seis-data-release\n",
" </span>\n",
" <span class=\"tco-ellipsis\">\n",
" <span class=\"invisible\">\n",
" </span>\n",
" …\n",
" </span>\n",
" </span>\n",
" <span class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\">\n",
" pic.twitter.com/pl9OrrYtE6\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"2\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-reply-count-aria-1132008522366029825\">\n",
" 2 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"30\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1132008522366029825\">\n",
" 30 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"72\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1132008522366029825\">\n",
" 72 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1132008522366029825\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 2\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1132008522366029825\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 30\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 30\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1132008522366029825\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 72\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 72\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1131898469684252672\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1131898469684252672\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1131898469684252672\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet has-cards has-content \" data-conversation-id=\"1131898469684252672\" data-disclosure-type=\"\" data-follows-you=\"false\" data-has-cards=\"true\" data-item-id=\"1131898469684252672\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1131898469684252672\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1131898469684252672\" data-tweet-nonce=\"1131898469684252672-7d91c302-276e-4cc1-bb29-774c7d7fb85c\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1131898469684252672\" href=\"/MarsWxReport/status/1131898469684252672\" title=\"5:23 AM - 24 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1558700599\" data-time-ms=\"1558700599000\">\n",
" May 24\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 173 (2019-05-22) low -100.9ºC (-149.6ºF) high -20.9ºC (-5.7ºF)\n",
"winds from the SW at 4.3 m/s (9.7 mph) gusting to 14.1 m/s (31.5 mph)\n",
"pressure at 7.50 hPa\n",
" <a class=\"twitter-timeline-link u-hidden\" data-pre-embedded=\"true\" dir=\"ltr\" href=\"https://t.co/iKQwpaUtDj\">\n",
" pic.twitter.com/iKQwpaUtDj\n",
" </a>\n",
" </p>\n",
" </div>\n",
" <div class=\"AdaptiveMediaOuterContainer\">\n",
" <div class=\"AdaptiveMedia is-square \">\n",
" <div class=\"AdaptiveMedia-container\">\n",
" <div class=\"AdaptiveMedia-singlePhoto\" style=\"padding-top: calc(0.5625 * 100% - 0.5px);\">\n",
" <div class=\"AdaptiveMedia-photoContainer js-adaptive-photo \" data-dominant-color=\"[51,52,64]\" data-element-context=\"platform_photo_card\" data-image-url=\"https://pbs.twimg.com/media/D7VPqLDXsAMdSJG.jpg\" style=\"background-color:rgba(51,52,64,1.0);\">\n",
" <img alt=\"\" data-aria-label-part=\"\" src=\"https://pbs.twimg.com/media/D7VPqLDXsAMdSJG.jpg\" style=\"width: 100%; top: -0px;\"/>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1131898469684252672\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"13\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1131898469684252672\">\n",
" 13 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"30\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1131898469684252672\">\n",
" 30 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1131898469684252672\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1131898469684252672\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 13\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 13\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1131898469684252672\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 30\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 30\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1131898434510884864\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1131898434510884864\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1131898434510884864\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet \" data-conversation-id=\"1131898434510884864\" data-disclosure-type=\"\" data-follows-you=\"false\" data-item-id=\"1131898434510884864\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1131898434510884864\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1131898434510884864\" data-tweet-nonce=\"1131898434510884864-98e8bcd7-4d6a-41c5-853d-11bf00b2f0ea\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1131898434510884864\" href=\"/MarsWxReport/status/1131898434510884864\" title=\"5:23 AM - 24 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1558700591\" data-time-ms=\"1558700591000\">\n",
" May 24\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 172 (2019-05-22) low -133.5ºC (-208.3ºF) high -20.0ºC (-4.0ºF)\n",
"pressure at 7.50 hPa\n",
" </p>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1131898434510884864\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"6\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1131898434510884864\">\n",
" 6 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"21\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1131898434510884864\">\n",
" 21 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1131898434510884864\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1131898434510884864\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 6\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 6\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1131898434510884864\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 21\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 21\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" <li class=\"js-stream-item stream-item stream-item \" data-item-id=\"1131898433265164288\" data-item-type=\"tweet\" data-suggestion-json='{\"suggestion_details\":{},\"tweet_ids\":\"1131898433265164288\",\"scribe_component\":\"tweet\"}' id=\"stream-item-tweet-1131898433265164288\">\n",
" <div class=\"tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content original-tweet js-original-tweet \" data-conversation-id=\"1131898433265164288\" data-disclosure-type=\"\" data-follows-you=\"false\" data-item-id=\"1131898433265164288\" data-name=\"Mars Weather\" data-permalink-path=\"/MarsWxReport/status/1131898433265164288\" data-reply-to-users-json='[{\"id_str\":\"786939553\",\"screen_name\":\"MarsWxReport\",\"name\":\"Mars Weather\",\"emojified_name\":{\"text\":\"Mars Weather\",\"emojified_text_as_html\":\"Mars Weather\"}}]' data-screen-name=\"MarsWxReport\" data-tweet-id=\"1131898433265164288\" data-tweet-nonce=\"1131898433265164288-68facefc-836b-487c-b814-f064636bce63\" data-tweet-stat-initialized=\"true\" data-user-id=\"786939553\" data-you-block=\"false\" data-you-follow=\"false\">\n",
" <div class=\"context\">\n",
" </div>\n",
" <div class=\"content\">\n",
" <div class=\"stream-item-header\">\n",
" <a class=\"account-group js-account-group js-action-profile js-user-profile-link js-nav\" data-user-id=\"786939553\" href=\"/MarsWxReport\">\n",
" <img alt=\"\" class=\"avatar js-action-profile-avatar\" src=\"https://pbs.twimg.com/profile_images/2552209293/220px-Mars_atmosphere_bigger.jpg\"/>\n",
" <span class=\"FullNameGroup\">\n",
" <strong class=\"fullname show-popup-with-id u-textTruncate \" data-aria-label-part=\"\">\n",
" Mars Weather\n",
" </strong>\n",
" <span>\n",
" \n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" </span>\n",
" <span class=\"username u-dir u-textTruncate\" data-aria-label-part=\"\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" MarsWxReport\n",
" </b>\n",
" </span>\n",
" </a>\n",
" <small class=\"time\">\n",
" <a class=\"tweet-timestamp js-permalink js-nav js-tooltip\" data-conversation-id=\"1131898433265164288\" href=\"/MarsWxReport/status/1131898433265164288\" title=\"5:23 AM - 24 May 2019\">\n",
" <span class=\"_timestamp js-short-timestamp \" data-aria-label-part=\"last\" data-long-form=\"true\" data-time=\"1558700590\" data-time-ms=\"1558700590000\">\n",
" May 24\n",
" </span>\n",
" </a>\n",
" </small>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions\">\n",
" <div class=\"dropdown\">\n",
" <button class=\"ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"More\">\n",
" <span class=\"Icon Icon--caretDownLight Icon--small\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" More\n",
" </span>\n",
" </div>\n",
" </button>\n",
" <div class=\"dropdown-menu is-autoCentered\">\n",
" <div class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <ul>\n",
" <li class=\"copy-link-to-tweet js-actionCopyLinkToTweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Copy link to Tweet\n",
" </button>\n",
" </li>\n",
" <li class=\"embed-link js-actionEmbedTweet\" data-nav=\"embed_tweet\">\n",
" <button class=\"dropdown-link\" type=\"button\">\n",
" Embed Tweet\n",
" </button>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-tweet-text-container\">\n",
" <p class=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\" data-aria-label-part=\"0\" lang=\"en\">\n",
" InSight sol 171 (2019-05-21) low -100.5ºC (-148.8ºF) high -20.9ºC (-5.7ºF)\n",
"winds from the SW at 4.9 m/s (11.0 mph) gusting to 14.8 m/s (33.2 mph)\n",
"pressure at 7.50 hPa\n",
" </p>\n",
" </div>\n",
" <div class=\"stream-item-footer\">\n",
" <div class=\"ProfileTweet-actionCountList u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-action--reply u-hiddenVisually\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"0\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" id=\"profile-tweet-action-reply-count-aria-1131898433265164288\">\n",
" 0 replies\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--retweet u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"3\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-retweet-count-aria-1131898433265164288\">\n",
" 3 retweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"ProfileTweet-action--favorite u-hiddenVisually\">\n",
" <span class=\"ProfileTweet-actionCount\" data-tweet-stat-count=\"17\">\n",
" <span class=\"ProfileTweet-actionCountForAria\" data-aria-label-part=\"\" id=\"profile-tweet-action-favorite-count-aria-1131898433265164288\">\n",
" 17 likes\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div aria-label=\"Tweet actions\" class=\"ProfileTweet-actionList js-actions\" role=\"group\">\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--reply\">\n",
" <button aria-describedby=\"profile-tweet-action-reply-count-aria-1131898433265164288\" class=\"ProfileTweet-actionButton js-actionButton js-actionReply\" data-modal=\"ProfileTweet-reply\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Reply\">\n",
" <span class=\"Icon Icon--medium Icon--reply\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Reply\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount ProfileTweet-actionCount--isZero \">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt\">\n",
" <button aria-describedby=\"profile-tweet-action-retweet-count-aria-1131898433265164288\" class=\"ProfileTweet-actionButton js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweet\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 3\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet\" data-modal=\"ProfileTweet-retweet\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo retweet\">\n",
" <span class=\"Icon Icon--medium Icon--retweet\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Retweeted\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 3\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" <div class=\"ProfileTweet-action ProfileTweet-action--favorite js-toggleState\">\n",
" <button aria-describedby=\"profile-tweet-action-favorite-count-aria-1131898433265164288\" class=\"ProfileTweet-actionButton js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Like\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 17\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <button class=\"ProfileTweet-actionButtonUndo ProfileTweet-action--unfavorite u-linkClean js-actionButton js-actionFavorite\" type=\"button\">\n",
" <div class=\"IconContainer js-tooltip\" title=\"Undo like\">\n",
" <span class=\"Icon Icon--heart Icon--medium\" role=\"presentation\">\n",
" </span>\n",
" <div class=\"HeartAnimation\">\n",
" </div>\n",
" <span class=\"u-hiddenVisually\">\n",
" Liked\n",
" </span>\n",
" </div>\n",
" <span class=\"ProfileTweet-actionCount\">\n",
" <span aria-hidden=\"true\" class=\"ProfileTweet-actionCountForPresentation\">\n",
" 17\n",
" </span>\n",
" </span>\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"dismiss-module\">\n",
" <div class=\"dismissed-module\">\n",
" <div class=\"feedback-actions\">\n",
" <div class=\"feedback-action\" data-feedback-type=\"DontLike\" data-feedback-url=\"\">\n",
" <div class=\"action-confirmation dismiss-module-item\">\n",
" Thanks. Twitter will use this to make your timeline better.\n",
" <span class=\"undo-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"child-feedback-confirmation\">\n",
" <div class=\"child-confirmation-item\">\n",
" <span class=\"child-confirmation-text\">\n",
" </span>\n",
" <span class=\"undo-child-feedback-action\">\n",
" Undo\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </li>\n",
" </ol>\n",
" <div class=\"stream-footer \">\n",
" <div class=\"timeline-end has-items has-more-items\">\n",
" <div class=\"stream-end\">\n",
" <div class=\"stream-end-inner\">\n",
" <span class=\"Icon Icon--large Icon--logo\">\n",
" </span>\n",
" <p class=\"empty-text\">\n",
" @MarsWxReport hasn't Tweeted yet.\n",
" </p>\n",
" <p>\n",
" <button class=\"btn-link back-to-top hidden\" type=\"button\">\n",
" Back to top ↑\n",
" </button>\n",
" </p>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-loading\">\n",
" <div class=\"stream-end-inner\">\n",
" <span class=\"spinner\" title=\"Loading...\">\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"stream-fail-container\">\n",
" <div class=\"js-stream-whale-end stream-whale-end stream-placeholder centered-placeholder\">\n",
" <div class=\"stream-end-inner\">\n",
" <h2 class=\"title\">\n",
" Loading seems to be taking a while.\n",
" </h2>\n",
" <p>\n",
" Twitter may be over capacity or experiencing a momentary hiccup.\n",
" <a class=\"try-again-after-whale\" href=\"#\" role=\"button\">\n",
" Try again\n",
" </a>\n",
" or visit\n",
" <a href=\"http://status.twitter.com\" rel=\"noopener\" target=\"_blank\">\n",
" Twitter Status\n",
" </a>\n",
" for more information.\n",
" </p>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <ol class=\"hidden-replies-container\">\n",
" </ol>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"Grid-cell u-size1of3\">\n",
" <div class=\"Grid Grid--withGutter\">\n",
" <div class=\"Grid-cell\">\n",
" <div class=\"ProfileSidebar ProfileSidebar--withRightAlignment\">\n",
" <div class=\"MoveableModule\">\n",
" <div class=\"SidebarCommonModules\">\n",
" <div class=\"SignupCallOut module js-signup-call-out \">\n",
" <div class=\"SignupCallOut-header\">\n",
" <h3 class=\"SignupCallOut-title u-textBreak\">\n",
" New to Twitter?\n",
" </h3>\n",
" </div>\n",
" <div class=\"SignupCallOut-subheader\">\n",
" Sign up now to get your own personalized timeline!\n",
" </div>\n",
" <div class=\"signup SignupForm \">\n",
" <a class=\"EdgeButton EdgeButton--large EdgeButton--primary SignupForm-submit u-block js-signup \" data-component=\"signup_callout\" data-element=\"form\" href=\"https://twitter.com/signup\" role=\"button\">\n",
" Sign up\n",
" </a>\n",
" </div>\n",
" </div>\n",
" <div class=\"RelatedUsers module u-hidden\">\n",
" <div class=\"RelatedUsers-header\">\n",
" <h3 class=\"RelatedUsers-title\">\n",
" You may also like\n",
" </h3>\n",
" ·\n",
" <button class=\"btn-link js-refresh-related-users\" type=\"button\">\n",
" Refresh\n",
" </button>\n",
" </div>\n",
" <div class=\"RelatedUsers-users\">\n",
" </div>\n",
" </div>\n",
" <div class=\"module Trends trends hidden\">\n",
" <div class=\"trends-inner\">\n",
" <div class=\"flex-module trends-container \">\n",
" <div class=\"flex-module-header\">\n",
" <h3>\n",
" <span class=\"trend-location js-trend-location\">\n",
" false\n",
" </span>\n",
" </h3>\n",
" </div>\n",
" <div class=\"flex-module-inner\">\n",
" <ul class=\"trend-items js-trends\">\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"Footer module roaming-module Footer--slim Footer--blankBackground\">\n",
" <div class=\"flex-module\">\n",
" <div class=\"flex-module-inner js-items-container\">\n",
" <ul class=\"u-cf\">\n",
" <li class=\"Footer-item Footer-copyright copyright\">\n",
" © 2019 Twitter\n",
" </li>\n",
" <li class=\"Footer-item\">\n",
" <a class=\"Footer-link\" href=\"/about\" rel=\"noopener\">\n",
" About\n",
" </a>\n",
" </li>\n",
" <li class=\"Footer-item\">\n",
" <a class=\"Footer-link\" href=\"//support.twitter.com\" rel=\"noopener\">\n",
" Help Center\n",
" </a>\n",
" </li>\n",
" <li class=\"Footer-item\">\n",
" <a class=\"Footer-link\" href=\"/tos\" rel=\"noopener\">\n",
" Terms\n",
" </a>\n",
" </li>\n",
" <li class=\"Footer-item\">\n",
" <a class=\"Footer-link\" href=\"/privacy\" rel=\"noopener\">\n",
" Privacy policy\n",
" </a>\n",
" </li>\n",
" <li class=\"Footer-item\">\n",
" <a class=\"Footer-link\" href=\"//support.twitter.com/articles/20170514\" rel=\"noopener\">\n",
" Cookies\n",
" </a>\n",
" </li>\n",
" <li class=\"Footer-item\">\n",
" <a class=\"Footer-link\" href=\"//business.twitter.com/en/help/troubleshooting/how-twitter-ads-work.html\" rel=\"noopener\">\n",
" Ads info\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"trends-dialog modal-container\" id=\"trends_dialog\">\n",
" <div class=\"modal draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Choose a trend location\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"trends-dialog-error\">\n",
" <p>\n",
" </p>\n",
" </div>\n",
" <div class=\"trends-wrapper\" id=\"trends_dialog_content\">\n",
" <div class=\"loading\">\n",
" <span class=\"spinner-bigger\">\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"alert-messages hidden\" id=\"message-drawer\">\n",
" <div class=\"message \">\n",
" <div class=\"message-inside\">\n",
" <span class=\"message-text\">\n",
" </span>\n",
" <a class=\"Icon Icon--close Icon--medium dismiss\" href=\"#\" role=\"button\">\n",
" <span class=\"visuallyhidden\">\n",
" Dismiss\n",
" </span>\n",
" </a>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"gallery-overlay\">\n",
" </div>\n",
" <div class=\"Gallery with-tweet\">\n",
" <style class=\"Gallery-styles\">\n",
" </style>\n",
" <div class=\"Gallery-closeTarget\">\n",
" </div>\n",
" <div class=\"Gallery-content\">\n",
" <div class=\"GalleryTweet-newsCameraBadge\">\n",
" </div>\n",
" <button class=\"modal-btn modal-close modal-close-fixed js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--large\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"Gallery-media\">\n",
" </div>\n",
" <div class=\"GalleryNav GalleryNav--prev\">\n",
" <span class=\"GalleryNav-handle GalleryNav-handle--prev\">\n",
" <span class=\"Icon Icon--caretLeft Icon--large\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Previous\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div class=\"GalleryNav GalleryNav--next\">\n",
" <span class=\"GalleryNav-handle GalleryNav-handle--next\">\n",
" <span class=\"Icon Icon--caretRight Icon--large\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Next\n",
" </span>\n",
" </span>\n",
" </span>\n",
" </div>\n",
" <div class=\"GalleryTweet\">\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-overlay\">\n",
" </div>\n",
" <div id=\"profile-hover-container\">\n",
" </div>\n",
" <div class=\"modal-container\" id=\"goto-user-dialog\">\n",
" <div class=\"modal modal-small draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Go to a person's profile\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"modal-inner\">\n",
" <form class=\"t1-form goto-user-form\">\n",
" <input aria-label=\"User\" class=\"input-block username-input\" placeholder=\"Start typing a name to jump to a profile\" type=\"text\"/>\n",
" <div class=\"dropdown-menu typeahead\" role=\"listbox\">\n",
" <div aria-hidden=\"true\" class=\"dropdown-caret\">\n",
" <div class=\"caret-outer\">\n",
" </div>\n",
" <div class=\"caret-inner\">\n",
" </div>\n",
" </div>\n",
" <div class=\"dropdown-inner js-typeahead-results\" role=\"presentation\">\n",
" <div class=\"typeahead-saved-searches\" role=\"presentation\">\n",
" <h3 class=\"typeahead-category-title saved-searches-title\" id=\"saved-searches-heading\">\n",
" Saved searches\n",
" </h3>\n",
" <ul class=\"typeahead-items saved-searches-list\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-saved-search-item\" role=\"presentation\">\n",
" <span aria-hidden=\"true\" class=\"Icon Icon--close\">\n",
" <span class=\"visuallyhidden\">\n",
" Remove\n",
" </span>\n",
" </span>\n",
" <a aria-describedby=\"saved-searches-heading\" class=\"js-nav\" data-ds=\"saved_search\" data-query-source=\"\" data-search-query=\"\" href=\"\" role=\"option\" tabindex=\"-1\">\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" <ul class=\"typeahead-items typeahead-topics\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-topic-item\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"topics\" data-query-source=\"typeahead_click\" data-search-query=\"\" href=\"\" role=\"option\" tabindex=\"-1\">\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" <ul class=\"typeahead-items typeahead-accounts social-context js-typeahead-accounts\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-account-item js-selectable\" data-remote=\"true\" data-score=\"\" data-user-id=\"\" data-user-screenname=\"\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"account\" data-query-source=\"typeahead_click\" data-search-query=\"\" role=\"option\">\n",
" <div class=\"js-selectable typeahead-in-conversation hidden\">\n",
" <span class=\"Icon Icon--follower Icon--small\">\n",
" </span>\n",
" <span class=\"typeahead-in-conversation-text\">\n",
" In this conversation\n",
" </span>\n",
" </div>\n",
" <img alt=\"\" class=\"avatar size32\"/>\n",
" <span class=\"typeahead-user-item-info account-group\">\n",
" <span class=\"fullname\">\n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" <span class=\"Icon Icon--verified js-verified hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Verified account\n",
" </span>\n",
" </span>\n",
" <span class=\"Icon Icon--protected js-protected hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Protected Tweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" <span class=\"username u-dir\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" </b>\n",
" </span>\n",
" </span>\n",
" <span class=\"typeahead-social-context\">\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"js-selectable typeahead-accounts-shortcut js-shortcut\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"account_search\" data-query-source=\"typeahead_click\" data-search-query=\"\" data-shortcut=\"true\" href=\"\" role=\"option\">\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" <ul class=\"typeahead-items typeahead-trend-locations-list\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-trend-locations-item\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"trend_location\" data-search-query=\"\" href=\"\" role=\"option\" tabindex=\"-1\">\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" <div class=\"typeahead-user-select\" role=\"presentation\">\n",
" <div class=\"typeahead-empty-suggestions\" role=\"presentation\">\n",
" Suggested users\n",
" </div>\n",
" <ul class=\"typeahead-items typeahead-selected js-typeahead-selected\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-selected-item js-selectable\" data-remote=\"true\" data-score=\"\" data-user-id=\"\" data-user-screenname=\"\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"account\" data-query-source=\"typeahead_click\" data-search-query=\"\" role=\"option\">\n",
" <img alt=\"\" class=\"avatar size32\"/>\n",
" <span class=\"typeahead-user-item-info account-group\">\n",
" <span class=\"select-status deselect-user js-deselect-user Icon Icon--check\">\n",
" </span>\n",
" <span class=\"select-status select-disabled Icon Icon--unfollow\">\n",
" </span>\n",
" <span class=\"fullname\">\n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" <span class=\"Icon Icon--verified js-verified hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Verified account\n",
" </span>\n",
" </span>\n",
" <span class=\"Icon Icon--protected js-protected hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Protected Tweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" <span class=\"username u-dir\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"typeahead-selected-end\" role=\"presentation\">\n",
" </li>\n",
" </ul>\n",
" <ul class=\"typeahead-items typeahead-accounts js-typeahead-accounts\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-account-item js-selectable\" data-remote=\"true\" data-score=\"\" data-user-id=\"\" data-user-screenname=\"\" role=\"presentation\">\n",
" <a class=\"js-nav\" data-ds=\"account\" data-query-source=\"typeahead_click\" data-search-query=\"\" role=\"option\">\n",
" <img alt=\"\" class=\"avatar size32\"/>\n",
" <span class=\"typeahead-user-item-info account-group\">\n",
" <span class=\"select-status deselect-user js-deselect-user Icon Icon--check\">\n",
" </span>\n",
" <span class=\"select-status select-disabled Icon Icon--unfollow\">\n",
" </span>\n",
" <span class=\"fullname\">\n",
" </span>\n",
" <span class=\"UserBadges\">\n",
" <span class=\"Icon Icon--verified js-verified hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Verified account\n",
" </span>\n",
" </span>\n",
" <span class=\"Icon Icon--protected js-protected hidden\">\n",
" <span class=\"u-hiddenVisually\">\n",
" Protected Tweets\n",
" </span>\n",
" </span>\n",
" </span>\n",
" <span class=\"UserNameBreak\">\n",
" </span>\n",
" <span class=\"username u-dir\" dir=\"ltr\">\n",
" @\n",
" <b>\n",
" </b>\n",
" </span>\n",
" </span>\n",
" </a>\n",
" </li>\n",
" <li class=\"typeahead-accounts-end\" role=\"presentation\">\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" <div class=\"typeahead-dm-conversations\" role=\"presentation\">\n",
" <ul class=\"typeahead-items typeahead-dm-conversation-items\" role=\"presentation\">\n",
" <li class=\"typeahead-item typeahead-dm-conversation-item\" role=\"presentation\">\n",
" <a role=\"option\" tabindex=\"-1\">\n",
" </a>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </form>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"QuickPromoteDialog modal-container\" id=\"quick-promote-dialog\">\n",
" <div class=\"modal draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close modal-close-fixed js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--large\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Promote this Tweet\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"quick-promote-view-container\">\n",
" <div class=\"media\">\n",
" <iframe class=\"quick-promote-iframe js-initial-focus\" frameborder=\"0\" scrolling=\"no\" src=\"\">\n",
" </iframe>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container\" id=\"block-user-dialog\">\n",
" <div class=\"modal draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Block\n",
" </h3>\n",
" </div>\n",
" <div class=\"tweet-loading\">\n",
" <div class=\"spinner-bigger\">\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-body modal-tweet\">\n",
" </div>\n",
" <div class=\"modal-footer\">\n",
" <button class=\"EdgeButton EdgeButton--tertiary cancel-action js-close\">\n",
" Cancel\n",
" </button>\n",
" <button class=\"EdgeButton EdgeButton--danger block-action\">\n",
" Block\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div id=\"geo-disabled-dropdown\">\n",
" <div tabindex=\"-1\">\n",
" <div class=\"dropdown-caret\">\n",
" <span class=\"caret-outer\">\n",
" </span>\n",
" <span class=\"caret-inner\">\n",
" </span>\n",
" </div>\n",
" <ul>\n",
" <li class=\"geo-not-enabled-yet\">\n",
" <h2>\n",
" Tweet with a location\n",
" </h2>\n",
" <p>\n",
" You can add location information to your Tweets, such as your city or precise location, from the web and via third-party applications. You always have the option to delete your Tweet location history.\n",
" <a href=\"http://support.twitter.com/forums/26810/entries/78525\" rel=\"noopener\" target=\"_blank\">\n",
" Learn more\n",
" </a>\n",
" </p>\n",
" <div>\n",
" <button class=\"geo-turn-on EdgeButton EdgeButton--primary\" type=\"button\">\n",
" Turn on\n",
" </button>\n",
" <button class=\"geo-not-now EdgeButton EdgeButton--secondary\" type=\"button\">\n",
" Not now\n",
" </button>\n",
" </div>\n",
" </li>\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" <div id=\"geo-enabled-dropdown\">\n",
" <div tabindex=\"-1\">\n",
" <div class=\"dropdown-caret\">\n",
" <span class=\"caret-outer\">\n",
" </span>\n",
" <span class=\"caret-inner\">\n",
" </span>\n",
" </div>\n",
" <div>\n",
" <div class=\"geo-query-location\">\n",
" <input autocomplete=\"off\" class=\"GeoSearch-queryInput\" placeholder=\"Search for a neighborhood or city\" type=\"text\"/>\n",
" <span class=\"Icon Icon--search\">\n",
" </span>\n",
" </div>\n",
" <div class=\"geo-dropdown-status\">\n",
" </div>\n",
" <ul class=\"GeoSearch-dropdownMenu\">\n",
" </ul>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container\" id=\"list-membership-dialog\">\n",
" <div class=\"modal modal-small draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Your lists\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"list-membership-content\">\n",
" </div>\n",
" <span class=\"spinner lists-spinner\" title=\"Loading…\">\n",
" </span>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container\" id=\"list-operations-dialog\">\n",
" <div class=\"modal modal-medium draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Create a new list\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"list-editor\">\n",
" <div class=\"field\">\n",
" <label class=\"t1-label\" for=\"list-name\">\n",
" List name\n",
" </label>\n",
" <input class=\"text\" id=\"list-name\" name=\"name\" type=\"text\" value=\"\"/>\n",
" </div>\n",
" <hr/>\n",
" <div class=\"field\">\n",
" <label class=\"t1-label\" for=\"list-description\">\n",
" Description\n",
" </label>\n",
" <textarea id=\"list-description\" name=\"description\"></textarea>\n",
" <span class=\"help-text\">\n",
" Under 100 characters, optional\n",
" </span>\n",
" </div>\n",
" <hr/>\n",
" <fieldset class=\"field\">\n",
" <legend class=\"t1-legend\">\n",
" Privacy\n",
" </legend>\n",
" <div class=\"options\">\n",
" <label class=\"t1-label\" for=\"list-public-radio\">\n",
" <input checked=\"checked\" class=\"radio\" id=\"list-public-radio\" name=\"mode\" type=\"radio\" value=\"public\"/>\n",
" <b>\n",
" Public\n",
" </b>\n",
" · Anyone can follow this list\n",
" </label>\n",
" <label class=\"t1-label\" for=\"list-private-radio\">\n",
" <input class=\"radio\" id=\"list-private-radio\" name=\"mode\" type=\"radio\" value=\"private\"/>\n",
" <b>\n",
" Private\n",
" </b>\n",
" · Only you can access this list\n",
" </label>\n",
" </div>\n",
" </fieldset>\n",
" <hr/>\n",
" <div class=\"list-editor-save\">\n",
" <button class=\"EdgeButton EdgeButton--secondary update-list-button\" data-list-id=\"\" type=\"button\">\n",
" Save list\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container\" id=\"activity-popup-dialog\">\n",
" <div class=\"modal draggable\">\n",
" <div class=\"modal-content clearfix\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"tweet-loading\">\n",
" <div class=\"spinner-bigger\">\n",
" </div>\n",
" </div>\n",
" <div class=\"activity-popup-dialog-content modal-tweet clearfix\">\n",
" </div>\n",
" <div class=\"loading\">\n",
" <span class=\"spinner-bigger\">\n",
" </span>\n",
" </div>\n",
" <div class=\"activity-popup-dialog-users clearfix\">\n",
" </div>\n",
" <div class=\"activity-popup-dialog-footer\">\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container\" id=\"copy-link-to-tweet-dialog\">\n",
" <div class=\"modal modal-medium draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Copy link to Tweet\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"copy-link-to-tweet-container\">\n",
" <label class=\"t1-label\">\n",
" <p class=\"copy-link-to-tweet-instructions\">\n",
" Here's the URL for this Tweet. Copy it to easily share with friends.\n",
" </p>\n",
" <textarea class=\"link-to-tweet-destination js-initial-focus u-dir\" dir=\"ltr\" readonly=\"\"></textarea>\n",
" </label>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container\" id=\"embed-tweet-dialog\">\n",
" <div class=\"modal modal-medium draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title embed-tweet-title\">\n",
" Embed this Tweet\n",
" </h3>\n",
" <h3 class=\"modal-title embed-video-title\">\n",
" Embed this Video\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"embed-code-container\">\n",
" <p class=\"embed-tweet-instructions\">\n",
" Add this Tweet to your website by copying the code below.\n",
" <a href=\"https://dev.twitter.com/web/embedded-tweets\" rel=\"noopener\" target=\"_blank\">\n",
" Learn more\n",
" </a>\n",
" </p>\n",
" <p class=\"embed-video-instructions\">\n",
" Add this video to your website by copying the code below.\n",
" <a href=\"https://dev.twitter.com/web/embedded-tweets\" rel=\"noopener\" target=\"_blank\">\n",
" Learn more\n",
" </a>\n",
" </p>\n",
" <form class=\"t1-form\">\n",
" <div class=\"embed-destination-wrapper\">\n",
" <div class=\"embed-overlay embed-overlay-spinner\">\n",
" <div class=\"embed-overlay-content\">\n",
" </div>\n",
" </div>\n",
" <div class=\"embed-overlay embed-overlay-error\">\n",
" <p class=\"embed-overlay-content\">\n",
" Hmm, there was a problem reaching the server.\n",
" <button class=\"btn-link retry-embed\" type=\"button\">\n",
" Try again?\n",
" </button>\n",
" </p>\n",
" </div>\n",
" <textarea class=\"embed-destination js-initial-focus\"></textarea>\n",
" <div class=\"embed-options\">\n",
" <div class=\"embed-include-parent-tweet\">\n",
" <label class=\"t1-label\" for=\"include-parent-tweet\">\n",
" <input checked=\"\" class=\"include-parent-tweet\" id=\"include-parent-tweet\" type=\"checkbox\"/>\n",
" Include parent Tweet\n",
" </label>\n",
" </div>\n",
" <div class=\"embed-include-card\">\n",
" <label class=\"t1-label\" for=\"include-card\">\n",
" <input checked=\"\" class=\"include-card\" id=\"include-card\" type=\"checkbox\"/>\n",
" Include media\n",
" </label>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </form>\n",
" <p class=\"embed-tweet-description\">\n",
" By embedding Twitter content in your website or app, you are agreeing to the Twitter\n",
" <a href=\"https://dev.twitter.com/overview/terms/agreement\" rel=\"noopener\">\n",
" Developer Agreement\n",
" </a>\n",
" and\n",
" <a href=\"https://dev.twitter.com/overview/terms/policy\" rel=\"noopener\">\n",
" Developer Policy\n",
" </a>\n",
" .\n",
" </p>\n",
" <h3 class=\"embed-preview-header\">\n",
" Preview\n",
" </h3>\n",
" <div class=\"embed-preview\">\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container why-this-ad-dialog\" id=\"why-this-ad-dialog\">\n",
" <div class=\"modal modal-large draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title why-this-ad-title\">\n",
" Why you're seeing this ad\n",
" </h3>\n",
" </div>\n",
" <div class=\"why-this-ad-content\">\n",
" <div class=\"why-this-ad-spinner\">\n",
" <div class=\"spinner-bigger\">\n",
" </div>\n",
" </div>\n",
" <iframe aria-hidden=\"true\" class=\"hidden\" id=\"why-this-ad-frame\" scrolling=\"auto\">\n",
" </iframe>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"LoginDialog modal-container u-textCenter\" id=\"login-dialog\">\n",
" <div class=\"modal modal-large draggable\">\n",
" <div class=\"LoginDialog-content modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Log in to Twitter\n",
" </h3>\n",
" </div>\n",
" <div class=\"LoginDialog-body modal-body\">\n",
" <div class=\"LoginDialog-bird\">\n",
" <span class=\"Icon Icon--bird Icon--large\">\n",
" </span>\n",
" </div>\n",
" <div class=\"LoginDialog-form\">\n",
" <form action=\"https://twitter.com/sessions\" class=\"LoginForm js-front-signin\" data-component=\"dialog\" data-element=\"login\" method=\"post\">\n",
" <div class=\"LoginForm-input LoginForm-username\">\n",
" <input autocomplete=\"username\" class=\"text-input email-input js-signin-email\" name=\"session[username_or_email]\" placeholder=\"Phone, email, or username\" type=\"text\"/>\n",
" </div>\n",
" <div class=\"LoginForm-input LoginForm-password\">\n",
" <input autocomplete=\"current-password\" class=\"text-input\" name=\"session[password]\" placeholder=\"Password\" type=\"password\"/>\n",
" </div>\n",
" <div class=\"LoginForm-rememberForgot\">\n",
" <label>\n",
" <input checked=\"checked\" name=\"remember_me\" type=\"checkbox\" value=\"1\"/>\n",
" <span>\n",
" Remember me\n",
" </span>\n",
" </label>\n",
" <span class=\"separator\">\n",
" ·\n",
" </span>\n",
" <a class=\"forgot\" href=\"/account/begin_password_reset\" rel=\"noopener\">\n",
" Forgot password?\n",
" </a>\n",
" </div>\n",
" <input class=\"EdgeButton EdgeButton--primary EdgeButton--medium submit js-submit\" type=\"submit\" value=\"Log in\"/>\n",
" <input name=\"return_to_ssl\" type=\"hidden\" value=\"true\"/>\n",
" <input name=\"scribe_log\" type=\"hidden\"/>\n",
" <input name=\"redirect_after_login\" type=\"hidden\" value=\"/marswxreport?lang=en\"/>\n",
" <input name=\"authenticity_token\" type=\"hidden\" value=\"a45121e26da8b94570a7513b868ecb5fe6df6892\"/>\n",
" <input autocomplete=\"off\" name=\"ui_metrics\" type=\"hidden\"/>\n",
" <script async=\"\" src=\"/i/js_inst?c_name=ui_metrics\">\n",
" </script>\n",
" </form>\n",
" </div>\n",
" </div>\n",
" <div class=\"LoginDialog-footer modal-footer u-textCenter\">\n",
" Don't have an account?\n",
" <a class=\"LoginDialog-signupLink\" href=\"https://twitter.com/signup\" rel=\"noopener\">\n",
" Sign up »\n",
" </a>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"SignupDialog modal-container u-textCenter\" id=\"signup-dialog\">\n",
" <div class=\"modal modal-large draggable\">\n",
" <div class=\"SignupDialog-content modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Sign up for Twitter\n",
" </h3>\n",
" </div>\n",
" <div class=\"SignupDialog-body modal-body\">\n",
" <div class=\"SignupDialog-icon\">\n",
" <span class=\"Icon Icon--bird Icon--extraLarge\">\n",
" </span>\n",
" </div>\n",
" <h2 class=\"SignupDialog-heading\">\n",
" Not on Twitter? Sign up, tune into the things you care about, and get updates as they happen.\n",
" </h2>\n",
" <div class=\"SignupDialog-form\">\n",
" <div class=\"signup SignupForm \">\n",
" <a class=\"EdgeButton EdgeButton--large EdgeButton--primary SignupForm-submit u-block js-signup \" data-component=\"dialog\" data-element=\"signup\" href=\"https://twitter.com/signup\" role=\"button\">\n",
" Sign up\n",
" </a>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"SignupDialog-footer modal-footer u-textCenter\">\n",
" Have an account?\n",
" <a class=\"SignupDialog-signinLink\" href=\"/login\" rel=\"noopener\">\n",
" Log in »\n",
" </a>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container\" id=\"sms-codes-dialog\">\n",
" <div class=\"modal modal-medium draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Two-way (sending and receiving) short codes:\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <table cellpadding=\"0\" cellspacing=\"0\" id=\"sms_codes\">\n",
" <thead>\n",
" <tr>\n",
" <th>\n",
" Country\n",
" </th>\n",
" <th>\n",
" Code\n",
" </th>\n",
" <th>\n",
" For customers of\n",
" </th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td>\n",
" United States\n",
" </td>\n",
" <td>\n",
" 40404\n",
" </td>\n",
" <td>\n",
" (any)\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td>\n",
" Canada\n",
" </td>\n",
" <td>\n",
" 21212\n",
" </td>\n",
" <td>\n",
" (any)\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td>\n",
" United Kingdom\n",
" </td>\n",
" <td>\n",
" 86444\n",
" </td>\n",
" <td>\n",
" Vodafone, Orange, 3, O2\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td>\n",
" Brazil\n",
" </td>\n",
" <td>\n",
" 40404\n",
" </td>\n",
" <td>\n",
" Nextel, TIM\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td>\n",
" Haiti\n",
" </td>\n",
" <td>\n",
" 40404\n",
" </td>\n",
" <td>\n",
" Digicel, Voila\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td>\n",
" Ireland\n",
" </td>\n",
" <td>\n",
" 51210\n",
" </td>\n",
" <td>\n",
" Vodafone, O2\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td>\n",
" India\n",
" </td>\n",
" <td>\n",
" 53000\n",
" </td>\n",
" <td>\n",
" Bharti Airtel, Videocon, Reliance\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td>\n",
" Indonesia\n",
" </td>\n",
" <td>\n",
" 89887\n",
" </td>\n",
" <td>\n",
" AXIS, 3, Telkomsel, Indosat, XL Axiata\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td rowspan=\"2\">\n",
" Italy\n",
" </td>\n",
" <td>\n",
" 4880804\n",
" </td>\n",
" <td>\n",
" Wind\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td>\n",
" 3424486444\n",
" </td>\n",
" <td>\n",
" Vodafone\n",
" </td>\n",
" </tr>\n",
" </tbody>\n",
" <tfoot>\n",
" <tr>\n",
" <td colspan=\"3\">\n",
" »\n",
" <a class=\"js-initial-focus\" href=\"http://support.twitter.com/articles/14226-how-to-find-your-twitter-short-code-or-long-code\" rel=\"noopener\" target=\"_blank\">\n",
" See SMS short codes for other countries\n",
" </a>\n",
" </td>\n",
" </tr>\n",
" </tfoot>\n",
" </table>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container\" id=\"leadgen-confirm-dialog\">\n",
" <div class=\"modal draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" Confirmation\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"leadgen-card-container\">\n",
" <div class=\"media\">\n",
" <iframe class=\"cards2-promotion-iframe\" frameborder=\"0\" scrolling=\"no\" src=\"\">\n",
" </iframe>\n",
" </div>\n",
" </div>\n",
" <div class=\"js-macaw-cards-iframe-container\" data-card-name=\"promotion\">\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"AuthWebViewDialog modal-container\" id=\"auth-webview-dialog\">\n",
" <div class=\"modal draggable\">\n",
" <div class=\"modal-content\">\n",
" <button class=\"modal-btn modal-close modal-close-fixed js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--large\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-header\">\n",
" <h3 class=\"modal-title\">\n",
" </h3>\n",
" </div>\n",
" <div class=\"modal-body\">\n",
" <div class=\"auth-webview-view-container\">\n",
" <div class=\"media\">\n",
" <iframe class=\"auth-webview-card-iframe js-initial-focus\" frameborder=\"0\" height=\"500px\" scrolling=\"no\" src=\"\" width=\"590px\">\n",
" </iframe>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container\" id=\"promptbird-modal-prompt\">\n",
" <div class=\"modal\">\n",
" <button class=\"modal-btn js-promptDismiss modal-close js-close\" type=\"button\">\n",
" <span class=\"Icon Icon--close Icon--medium\">\n",
" <span class=\"visuallyhidden\">\n",
" Close\n",
" </span>\n",
" </span>\n",
" </button>\n",
" <div class=\"modal-content\">\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container UIWalkthrough\" id=\"ui-walkthrough-dialog\">\n",
" <div class=\"UIWalkthrough-clickBlocker\">\n",
" </div>\n",
" <div class=\"modal modal-small\">\n",
" <div class=\"UIWalkthrough-caret\">\n",
" </div>\n",
" <div class=\"modal-content\">\n",
" <div class=\"modal-body\">\n",
" <div class=\"UIWalkthrough-header\">\n",
" <span class=\"UIWalkthrough-stepProgress\">\n",
" </span>\n",
" <button class=\"UIWalkthrough-skip js-close\">\n",
" Skip all\n",
" </button>\n",
" </div>\n",
" <div class=\"UIWalkthrough-step UIWalkthrough-step--welcome\">\n",
" <h3 class=\"UIWalkthrough-title\">\n",
" <span class=\"Icon Icon--home UIWalkthrough-icon\">\n",
" </span>\n",
" Welcome home!\n",
" </h3>\n",
" <p class=\"UIWalkthrough-message\">\n",
" This timeline is where you’ll spend most of your time, getting instant updates about what matters to you.\n",
" </p>\n",
" </div>\n",
" <div class=\"UIWalkthrough-step UIWalkthrough-step--unfollow\">\n",
" <h3 class=\"UIWalkthrough-title\">\n",
" <span class=\"Icon Icon--smileRating1Fill UIWalkthrough-icon\">\n",
" </span>\n",
" Tweets not working for you?\n",
" </h3>\n",
" <p class=\"UIWalkthrough-message\">\n",
" Hover over the profile pic and click the Following button to unfollow any account.\n",
" </p>\n",
" </div>\n",
" <div class=\"UIWalkthrough-step UIWalkthrough-step--like\">\n",
" <h3 class=\"UIWalkthrough-title\">\n",
" <span class=\"Icon Icon--heart UIWalkthrough-icon\">\n",
" </span>\n",
" Say a lot with a little\n",
" </h3>\n",
" <p class=\"UIWalkthrough-message\">\n",
" When you see a Tweet you love, tap the heart — it lets the person who wrote it know you shared the love.\n",
" </p>\n",
" </div>\n",
" <div class=\"UIWalkthrough-step UIWalkthrough-step--retweet\">\n",
" <h3 class=\"UIWalkthrough-title\">\n",
" <span class=\"Icon Icon--retweet UIWalkthrough-icon\">\n",
" </span>\n",
" Spread the word\n",
" </h3>\n",
" <p class=\"UIWalkthrough-message\">\n",
" The fastest way to share someone else’s Tweet with your followers is with a Retweet. Tap the icon to send it instantly.\n",
" </p>\n",
" </div>\n",
" <div class=\"UIWalkthrough-step UIWalkthrough-step--reply\">\n",
" <h3 class=\"UIWalkthrough-title\">\n",
" <span class=\"Icon Icon--reply UIWalkthrough-icon\">\n",
" </span>\n",
" Join the conversation\n",
" </h3>\n",
" <p class=\"UIWalkthrough-message\">\n",
" Add your thoughts about any Tweet with a Reply. Find a topic you’re passionate about, and jump right in.\n",
" </p>\n",
" </div>\n",
" <div class=\"UIWalkthrough-step UIWalkthrough-step--trends\">\n",
" <h3 class=\"UIWalkthrough-title\">\n",
" <span class=\"Icon Icon--discover UIWalkthrough-icon\">\n",
" </span>\n",
" Learn the latest\n",
" </h3>\n",
" <p class=\"UIWalkthrough-message\">\n",
" Get instant insight into what people are talking about now.\n",
" </p>\n",
" </div>\n",
" <div class=\"UIWalkthrough-step UIWalkthrough-step--wtf\">\n",
" <h3 class=\"UIWalkthrough-title\">\n",
" <span class=\"Icon Icon--follow UIWalkthrough-icon\">\n",
" </span>\n",
" Get more of what you love\n",
" </h3>\n",
" <p class=\"UIWalkthrough-message\">\n",
" Follow more accounts to get instant updates about topics you care about.\n",
" </p>\n",
" </div>\n",
" <div class=\"UIWalkthrough-step UIWalkthrough-step--search\">\n",
" <h3 class=\"UIWalkthrough-title\">\n",
" <span class=\"Icon Icon--search UIWalkthrough-icon\">\n",
" </span>\n",
" Find what's happening\n",
" </h3>\n",
" <p class=\"UIWalkthrough-message\">\n",
" See the latest conversations about any topic instantly.\n",
" </p>\n",
" </div>\n",
" <div class=\"UIWalkthrough-step UIWalkthrough-step--moments\">\n",
" <h3 class=\"UIWalkthrough-title\">\n",
" <span class=\"Icon Icon--lightning UIWalkthrough-icon\">\n",
" </span>\n",
" Never miss a Moment\n",
" </h3>\n",
" <p class=\"UIWalkthrough-message\">\n",
" Catch up instantly on the best stories happening as they unfold.\n",
" </p>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-footer\">\n",
" <button class=\"EdgeButton EdgeButton--tertiary u-floatLeft plain-btn UIWalkthrough-button js-previous-step\">\n",
" Back\n",
" </button>\n",
" <button class=\"EdgeButton EdgeButton--secondary UIWalkthrough-button js-next-step js-initial-focus\">\n",
" Next\n",
" </button>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"modal-container\" id=\"create-custom-timeline-dialog\">\n",
" </div>\n",
" <div class=\"modal-container\" id=\"edit-custom-timeline-dialog\">\n",
" </div>\n",
" <div class=\"modal-container\" id=\"curate-dialog\">\n",
" </div>\n",
" <div class=\"modal-container\" id=\"media-edit-dialog\">\n",
" </div>\n",
" <div class=\"PermalinkOverlay PermalinkOverlay-with-background \" id=\"permalink-overlay\">\n",
" <div class=\"PermalinkProfile-dismiss modal-close-fixed\">\n",
" <span class=\"Icon Icon--close\">\n",
" </span>\n",
" </div>\n",
" <button class=\"PermalinkOverlay-next PermalinkOverlay-button u-posFixed js-next\" type=\"button\">\n",
" <span class=\"Icon Icon--caretLeft Icon--large\">\n",
" </span>\n",
" <span class=\"u-hiddenVisually\">\n",
" Next Tweet from user\n",
" </span>\n",
" </button>\n",
" <div class=\"PermalinkOverlay-modal\">\n",
" <div class=\"PermalinkOverlay-spinnerContainer u-hidden\">\n",
" <div class=\"PermalinkOverlay-spinner\">\n",
" </div>\n",
" </div>\n",
" <div class=\"PermalinkOverlay-content\">\n",
" <div class=\"PermalinkOverlay-body\">\n",
" </div>\n",
" </div>\n",
" </div>\n",
" </div>\n",
" <div class=\"hidden\" id=\"hidden-content\">\n",
" <iframe aria-hidden=\"true\" class=\"tweet-post-iframe\" name=\"tweet-post-iframe\">\n",
" </iframe>\n",
" <iframe aria-hidden=\"true\" class=\"dm-post-iframe\" name=\"dm-post-iframe\">\n",
" </iframe>\n",
" </div>\n",
" <input class=\"json-data\" id=\"init-data\" type=\"hidden\" value='{\"keyboardShortcuts\":[{\"name\":\"Actions\",\"description\":\"Shortcuts for common actions.\",\"shortcuts\":[{\"keys\":[\"Enter\"],\"description\":\"Open Tweet details\"},{\"keys\":[\"o\"],\"description\":\"Expand photo\"},{\"keys\":[\"\\/\"],\"description\":\"Search\"}]},{\"name\":\"Navigation\",\"description\":\"Shortcuts for navigating between items in timelines.\",\"shortcuts\":[{\"keys\":[\"?\"],\"description\":\"This menu\"},{\"keys\":[\"j\"],\"description\":\"Next Tweet\"},{\"keys\":[\"k\"],\"description\":\"Previous Tweet\"},{\"keys\":[\"Space\"],\"description\":\"Page down\"},{\"keys\":[\".\"],\"description\":\"Load new Tweets\"}]},{\"name\":\"Timelines\",\"description\":\"Shortcuts for navigating to different timelines or pages.\",\"shortcuts\":[{\"keys\":[\"g\",\"u\"],\"description\":\"Go to user\\u2026\"}]}],\"baseFoucClass\":\"swift-loading\",\"bodyFoucClassNames\":\"swift-loading no-nav-banners\",\"assetsBasePath\":\"https:\\/\\/abs.twimg.com\\/a\\/1559783714\\/\",\"assetVersionKey\":\"db2000\",\"emojiAssetsPath\":\"https:\\/\\/abs.twimg.com\\/emoji\\/v2\\/72x72\\/\",\"environment\":\"production\",\"formAuthenticityToken\":\"a45121e26da8b94570a7513b868ecb5fe6df6892\",\"loggedIn\":false,\"screenName\":null,\"fullName\":null,\"userId\":null,\"guestId\":\"156014201998620216\",\"createdAt\":null,\"needsPhoneVerification\":false,\"allowAdsPersonalization\":true,\"scribeBufferSize\":3,\"pageName\":\"profile\",\"sectionName\":\"profile\",\"scribeParameters\":{},\"recaptchaApiUrl\":\"https:\\/\\/www.google.com\\/recaptcha\\/api\\/js\\/recaptcha_ajax.js\",\"internalReferer\":null,\"geoEnabled\":false,\"typeaheadData\":{\"accounts\":{\"enabled\":true,\"localQueriesEnabled\":false,\"remoteQueriesEnabled\":true,\"limit\":6},\"trendLocations\":{\"enabled\":true},\"dmConversations\":{\"enabled\":false},\"followedSearches\":{\"enabled\":false},\"savedSearches\":{\"enabled\":false,\"items\":[]},\"dmAccounts\":{\"enabled\":false,\"localQueriesEnabled\":false,\"remoteQueriesEnabled\":false,\"onlyDMable\":true},\"mediaTagAccounts\":{\"enabled\":false,\"localQueriesEnabled\":false,\"remoteQueriesEnabled\":false,\"onlyShowUsersWithCanMediaTag\":false,\"currentUserId\":-1},\"selectedUsers\":{\"enabled\":false},\"prefillUsers\":{\"enabled\":false},\"topics\":{\"enabled\":true,\"localQueriesEnabled\":false,\"remoteQueriesEnabled\":true,\"prefetchLimit\":500,\"limit\":4},\"concierge\":{\"enabled\":false,\"localQueriesEnabled\":false,\"remoteQueriesEnabled\":false,\"prefetchLimit\":500,\"limit\":6},\"recentSearches\":{\"enabled\":false},\"hashtags\":{\"enabled\":false,\"localQueriesEnabled\":false,\"remoteQueriesEnabled\":true,\"prefetchLimit\":500},\"useIndexedDB\":false,\"showSearchAccountSocialContext\":false,\"showDebugInfo\":false,\"useThrottle\":true,\"accountsOnTop\":false,\"remoteDebounceInterval\":300,\"remoteThrottleInterval\":300,\"tweetContextEnabled\":false,\"fullNameMatchingInCompose\":true,\"topicsWithFiltersEnabled\":false},\"shellReferrer\":null,\"rwebOptInCookieName\":\"rweb_optin\",\"rwebOptInCookieNewValue\":\"on\",\"dm\":{\"notifications\":false,\"usePushForNotifications\":false,\"participant_max\":50,\"welcome_message_add_to_conversation_enabled\":true,\"poll_options\":{\"foreground_poll_interval\":3000,\"burst_poll_interval\":3000,\"burst_poll_duration\":300000,\"max_poll_interval\":60000},\"card_prefetch\":true,\"card_prefetch_interval_in_seconds\":2000,\"dm_quick_reply_options_panel_dismiss_in_ms\":2000,\"open_dm_enabled\":false},\"autoplayDisabled\":false,\"pushStatePageLimit\":500000,\"routes\":{\"profile\":\"\\/\"},\"pushState\":true,\"viewContainer\":\"#page-container\",\"href\":\"\\/marswxreport?lang=en\",\"searchPathWithQuery\":\"\\/search?q=query&src=typd\",\"composeAltText\":false,\"night_mode_activated\":false,\"user_color\":null,\"deciders\":{\"gdprAgeGateDialog\":true,\"gdprSoftBounceDialog\":true,\"geo_picker_incident_reset\":true,\"custom_timeline_curation\":false,\"native_notifications\":true,\"disable_ajax_datatype_default_to_text\":false,\"dm_polling_frequency_in_seconds\":3000,\"dm_granular_mute_controls\":true,\"enable_media_tag_prefetch\":true,\"enableMacawNymizerConversionLanding\":false,\"hqImageUploads\":false,\"live_pipeline_consume\":true,\"mqImageUploads\":false,\"partnerIdSyncEnabled\":true,\"sruMediaCategory\":true,\"photoSruGifLimitMb\":15,\"promoted_logging_force_post\":true,\"promoted_video_logging_enabled\":true,\"pushState\":true,\"emojiNewCategory\":false,\"contentEditablePlainTextOnly\":false,\"web_client_api_stats\":true,\"web_perftown_stats\":true,\"web_perftown_ttft\":false,\"web_client_events_ttft\":false,\"log_push_state_ttft_metrics\":false,\"web_sru_stats\":false,\"web_upload_video\":true,\"web_upload_video_advanced\":false,\"upload_video_size\":500,\"useVmapVariants\":false,\"autoplayPreviewPreroll\":true,\"moments_home_module\":false,\"moments_lohp_enabled\":true,\"enableNativePush\":false,\"autoSubscribeNativePush\":false,\"allowWebPushVapidUpgrade\":true,\"stickersInteractivity\":true,\"stickersInteractivityDuringLoading\":true,\"stickersExperience\":true,\"dynamic_video_ads_include_long_videos\":true,\"push_state_size\":1000,\"live_video_media_control_enabled\":false,\"cards2_enable_periscope_card_transition\":true,\"use_api_for_retweet_and_unretweet\":false,\"use_api_for_follow_and_unfollow\":true,\"edge_probe_enabled\":false,\"like_over_http_client\":true,\"enable_inline_location\":true,\"enable_tweetstorm_creation\":true,\"enable_tweetstorm_drafts\":false,\"enable_tweetstorm_tooltip\":true,\"twitter_text_emoji_counting_enabled\":true,\"text_length_for_tweetstorm_tooltip\":50,\"dm_report_webview_macaw_swift_enabled\":true,\"page_title_unread_notification_count\":false,\"page_title_badge_after_unread_tweets\":20},\"experiments\":{},\"toasts_dm\":false,\"toasts_timeline\":false,\"toasts_dm_poll_scale\":60,\"defaultNotificationIcon\":\"https:\\/\\/abs.twimg.com\\/a\\/1559783714\\/img\\/t1\\/mobile\\/wp7_app_icon.png\",\"promptbirdData\":{\"promptbirdEnabled\":false,\"immediateTriggers\":[\"PullToRefresh\",\"Navigate\"],\"format\":\"ProfileOther\"},\"pageContext\":\"profile\",\"passwordResetAdvancedLoginForm\":true,\"skipAutoSignupDialog\":false,\"shouldReplaceSignupWithLogin\":false,\"activeHashflags\":{\"whipitwarriors\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_WhipItWarriors\\/FortniteE3_SummerBlockParty_2019_WhipItWarriors.png\",\"ittfworlds2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ITTFworld_2019\\/ITTFworld_2019.png\",\"growtogether\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/GrowTogether_v4\\/GrowTogether_v4.png\",\"jugarlucharyganar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_ESP\\/FIFAWWC_2019_ESP.png\",\"타노스\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thanos\\/Avengers_Endgame_2019_Thanos.png\",\"เชียร์ไทยใจเดียวกัน\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_THA\\/FIFAWWC_2019_THA.png\",\"infinitygauntlet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"loveisland\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LoveIsland_May2019\\/LoveIsland_May2019.png\",\"showthempower\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UnitedColoursofBenetton_2019\\/UnitedColoursofBenetton_2019.png\",\"最後のxメン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FOX_Xmen_Japan_2019\\/FOX_Xmen_Japan_2019.png\",\"thanos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thanos\\/Avengers_Endgame_2019_Thanos.png\",\"tresdeseos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"mightywest\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019_MightyWest\\/AFL_2019_MightyWest.png\",\"ausairforce\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AusAirForce_2019\\/AusAirForce_2019.png\",\"benedictwong\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wong\\/Avengers_Endgame_2019_Wong.png\",\"ヴァルキリー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Valkyrie\\/Avengers_Endgame_2019_Valkyrie.png\",\"cmtmusicawards\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CMTMusicAwards_2019\\/CMTMusicAwards_2019.png\",\"tsm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_TSM_filled_ext19\\/Esports_AllAccessTeam_TSM_filled_ext19.png\",\"eiropasvēlēšanas2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"princesajasmin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"euvolitve19\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"nudgessimplysliced\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Tyson_NudgesDog_2019_v2\\/Tyson_NudgesDog_2019_v2.png\",\"vidasnegrasimportam\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BlackLivesMatter_VidasNegrasImportam\\/BlackLivesMatter_VidasNegrasImportam.png\",\"alleyesonus\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FoxSports_WWC_2019\\/FoxSports_WWC_2019.png\",\"harilingkunganhidup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"ciudadesinteligentes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Cabify_DecisionesInteligentes_2019\\/Cabify_DecisionesInteligentes_2019.png\",\"로키\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Loki\\/Avengers_Endgame_2019_Loki.png\",\"thewasp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wasp\\/Avengers_Endgame_2019_Wasp.png\",\"modernwarfare\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CallofDuty_ModernWarfare_2019_v2\\/CallofDuty_ModernWarfare_2019_v2.png\",\"orbisu\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ORBIS_2019\\/ORBIS_2019.png\",\"swgalaxysedge\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/disney_starwarsgalaxysedge_2019_v2\\/disney_starwarsgalaxysedge_2019_v2.png\",\"オコエ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Okoye\\/Avengers_Endgame_2019_Okoye.png\",\"blackdahlia\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TNT_IAmTheNight_2019_v2\\/TNT_IAmTheNight_2019_v2.png\",\"令和ニッポンの愛国心\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AbemaTV_2019\\/AbemaTV_2019.png\",\"bigramadhansale\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ShopeeRamadan_May_2019\\/ShopeeRamadan_May_2019.png\",\"環境の日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019_add2\\/WorldEnvironmentDay_2019_add2.png\",\"зимнийсолдат\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WinterSoldier\\/Avengers_Endgame_2019_WinterSoldier.png\",\"ger\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_GER\\/FIFAWWC_2019_GER.png\",\"orgullo2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"vidasecretadosbichos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_2018_Snowball_Brazil\\/Pets2_2018_Snowball_Brazil.png\",\"waltdisneyworld\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_MickeyEars_Flight2\\/DisneyParks_MickeyEars_Flight2.png\",\"digwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_DIG\\/Esports_V2_19_DIG.png\",\"heretheycome\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_PHI\\/NBA_18_PHI.png\",\"맨티스\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Mantis\\/Avengers_Endgame_2019_Mantis.png\",\"щегол\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_TheGoldfinch_2019\\/WB_TheGoldfinch_2019.png\",\"oneteam\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OneTeam_2018_Evergreen\\/OneTeam_2018_Evergreen.png\",\"amorlivre\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AmorLivre_2019\\/AmorLivre_2019.png\",\"こどもの日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ChildrensDay_2019\\/ChildrensDay_2019.png\",\"timetofly\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_StLouis\\/MLB_2019_StLouis.png\",\"kolkataknightriders\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KolkataKnights_2019\\/KolkataKnights_2019.png\",\"metcamp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VogueMetGala_2019_add\\/VogueMetGala_2019_add.png\",\"世界メディア情報リテラシーウィーク\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks.png\",\"mustbewalkers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Walkers_Restage_2019\\/Walkers_Restage_2019.png\",\"marvelstudios\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_KevinFeige\\/Avengers_Endgame_2019_KevinFeige.png\",\"3月28日は三ツ矢の日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Asahi_MitsuyaBrand_2019\\/Asahi_MitsuyaBrand_2019.png\",\"cg\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LCS_2019_ClutchGaming\\/LCS_2019_ClutchGaming.png\",\"srh\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_Sunrisers\\/IPL_2019_2_Sunrisers.png\",\"meninblack\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_2019\\/Sony_MenInBlack_2019.png\",\"알라딘\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"oppomoon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Oppo_KSA_RenoLaunch_Q2_2019\\/Oppo_KSA_RenoLaunch_Q2_2019.png\",\"timesup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TimesUp_v4\\/TimesUp_v4.png\",\"godzillailfilm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Godzilla_WB_2019\\/Godzilla_WB_2019.png\",\"쿠키런\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CookieRunGame_2019\\/CookieRunGame_2019.png\",\"viratkohli\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Players_ViratKohli\\/CricketWorldCup_2019_Players_ViratKohli.png\",\"rexonanowunited\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RexonaNowUnited_72x72\\/RexonaNowUnited_72x72.png\",\"fafduplessis\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Players_FafDuPlessis\\/CricketWorldCup_2019_Players_FafDuPlessis.png\",\"グラクロバン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble7S_V3\\/Netmarble7S_V3.png\",\"untethered\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018\\/UsMovie_2018.png\",\"goldfinch\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_TheGoldfinch_2019_add\\/WB_TheGoldfinch_2019_add.png\",\"spotifypremium3ヶ月100円\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SpotifyJapan_TVCM\\/SpotifyJapan_TVCM.png\",\"2019wttc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ITTFworld_2019\\/ITTFworld_2019.png\",\"gantdelinfinité\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"джинн\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"頑張りすぎちゃう私へ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINGT_JP_2019_V3\\/KIRINGT_JP_2019_V3.png\",\"love放置少女\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/houchishoujo_2yearanniversary_v2\\/houchishoujo_2yearanniversary_v2.png\",\"dirtywater\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Boston\\/MLB_2019_Boston.png\",\"مو_قدها_لا_تلعبها\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/invasionarab1_Ramadan_2019\\/invasionarab1_Ramadan_2019.png\",\"shopeeserba10ribu\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ShopeeRamadan_May_2019\\/ShopeeRamadan_May_2019.png\",\"令和最初の乾杯\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Suntory_PremiumMalts_JP\\/Suntory_PremiumMalts_JP.png\",\"mntwins\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Minn\\/MLB_2019_Minn.png\",\"btsワールド\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BTSWorldGame_2019\\/BTSWorldGame_2019.png\",\"世界环境日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"avidasecretadosbichos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_2018_Snowball_Brazil\\/Pets2_2018_Snowball_Brazil.png\",\"g20osakasummit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"brujaescarlata\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_ScarletWitch\\/Avengers_Endgame_2019_ScarletWitch.png\",\"スカーレットウィッチ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_ScarletWitch\\/Avengers_Endgame_2019_ScarletWitch.png\",\"地球日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"pridemonth\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019_add\\/Pride2019_add.png\",\"owlmvp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TMobile_OWLMVP_2019\\/TMobile_OWLMVP_2019.png\",\"mickey90\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Mickey90th_2018\\/Mickey90th_2018.png\",\"whattowatch\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/What2Watch_Buzzfeed_2019\\/What2Watch_Buzzfeed_2019.png\",\"madamex\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"eintraumwirdwahr\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"foreverorange\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_HOU\\/MLS_19_HOU.png\",\"pagodedopericao\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pericles_2019\\/Pericles_2019.png\",\"spiceworld2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SpiceGirlsTour_2019\\/SpiceGirlsTour_2019.png\",\"미디어리터러시\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks.png\",\"bira91atcwc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BiraIndia_CWC_2019\\/BiraIndia_CWC_2019.png\",\"lableedsblue\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Dodgers\\/MLB_2019_Dodgers.png\",\"amoréamor\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"bgt2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BritainsGotTalent_2019_star\\/BritainsGotTalent_2019_star.png\",\"تراها_سهلة\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/taqa_sa_2019\\/taqa_sa_2019.png\",\"tfclive\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_TFC\\/MLS_19_TFC.png\",\"miek\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Miek\\/Avengers_Endgame_2019_Miek.png\",\"gopies\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_Part2_2019_GoPies\\/AFL_Part2_2019_GoPies.png\",\"btsworld\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BTSWorldGame_2019\\/BTSWorldGame_2019.png\",\"natgeohotzone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HotZone_NatGeoChannel_2019\\/HotZone_NatGeoChannel_2019.png\",\"diadaterra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"rapids96\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_CO\\/MLS_19_CO.png\",\"teamindia\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Teams_TeamIndia\\/CricketWorldCup_2019_Teams_TeamIndia.png\",\"gobolts\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bolts2019Playoffs\\/Bolts2019Playoffs.png\",\"happytastesgood\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DairyQueen_HappyTastesGood_2019\\/DairyQueen_HappyTastesGood_2019.png\",\"でっかいfire新登場\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINFIRE_ONEDAY_JP\\/KIRINFIRE_ONEDAY_JP.png\",\"bharatthiseid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BharatFilm_2019\\/BharatFilm_2019.png\",\"vidastarz\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_Vida_S2\\/STARZ_Vida_S2.png\",\"mightybombers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019_MightyBombers\\/AFL_2019_MightyBombers.png\",\"alwaysroyal\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Kansas\\/MLB_2019_Kansas.png\",\"mibpremiere\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_2019\\/Sony_MenInBlack_2019.png\",\"mightythor\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thor\\/Avengers_Endgame_2019_Thor.png\",\"korg\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Korg\\/Avengers_Endgame_2019_Korg.png\",\"princessjasmine\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"vidalongaàsroupas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VidaLongaAsRoupas_Unilever\\/VidaLongaAsRoupas_Unilever.png\",\"cyberpunk2077\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CyberPunkGame_2019\\/CyberPunkGame_2019.png\",\"justiceisserved\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Wash\\/OWL_19_Wash.png\",\"xメンが好き\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FOX_Xmen_Japan_2019\\/FOX_Xmen_Japan_2019.png\",\"wnba\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WNBA_2019\\/WNBA_2019.png\",\"captiamarvel\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainMarvel\\/Avengers_Endgame_2019_CaptainMarvel.png\",\"avicii\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avicii_2019\\/Avicii_2019.png\",\"バズライトイヤー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Buzz\\/Disney_ToyStory4_Buzz.png\",\"periscope\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Periscope\\/Periscope.png\",\"rr\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_Royals\\/IPL_2019_2_Royals.png\",\"魔法のランプ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"stavoltavoto\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"thefalcon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Falcon\\/Avengers_Endgame_2019_Falcon.png\",\"pawny\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_Pawny_2019\\/Sony_MenInBlack_Pawny_2019.png\",\"ned\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_NED\\/FIFAWWC_2019_NED.png\",\"madonnapride\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"jbfa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JamesBeard_FoundationAwards_2019\\/JamesBeard_FoundationAwards_2019.png\",\"orgullo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"erstdenkendannteilen\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing.png\",\"decisionesinteligentes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Cabify_DecisionesInteligentes_2019\\/Cabify_DecisionesInteligentes_2019.png\",\"историяигрушекбазз\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Buzz\\/Disney_ToyStory4_Buzz.png\",\"cblol\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LeagueofLegends_2019_CBLoL\\/LeagueofLegends_2019_CBLoL.png\",\"ggswin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LCS_2019_GGS\\/LCS_2019_GGS.png\",\"nebulaavengers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Nebula\\/Avengers_Endgame_2019_Nebula.png\",\"occiodifalco\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"tuproposito\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Adecco_2019\\/Adecco_2019.png\",\"professorx\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DarkPhoenix_ProfessorX\\/DarkPhoenix_ProfessorX.png\",\"fortnitee32019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_FortniteE3\\/FortniteE3_SummerBlockParty_2019_FortniteE3.png\",\"killthislovewithblackpink\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_BLACKPINK_2019_add\\/KPOP_BLACKPINK_2019_add.png\",\"penseavantdecliquer\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking.png\",\"bestoftweets\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BestofTweetsPrize_2019\\/BestofTweetsPrize_2019.png\",\"haloinfinite\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Xbox_Halo_2019\\/Xbox_Halo_2019.png\",\"gatormovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Crawl_2019\\/Paramount_Crawl_2019.png\",\"годзілла2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Godzilla_WB_2019\\/Godzilla_WB_2019.png\",\"nebula\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Nebula\\/Avengers_Endgame_2019_Nebula.png\",\"deixaaquímicarolar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NaturaHumor_May2019_V2\\/NaturaHumor_May2019_V2.png\",\"미투\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MeToo_Korea_2018_v2\\/MeToo_Korea_2018_v2.png\",\"bll\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HBO_BigLittleLies_Season2_2019\\/HBO_BigLittleLies_Season2_2019.png\",\"halo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Xbox_Halo_2019\\/Xbox_Halo_2019.png\",\"makemeaprince\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"cuddlecrew\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_CuddleCrew\\/FortniteE3_SummerBlockParty_2019_CuddleCrew.png\",\"donutlove\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Dunkin_NationalDonutDay_2019\\/Dunkin_NationalDonutDay_2019.png\",\"onefamily\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MumbaiIndians_2018\\/MumbaiIndians_2018.png\",\"грут\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Groot\\/Avengers_Endgame_2019_Groot.png\",\"lightupyournight\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VivoPHV15_2019\\/VivoPHV15_2019.png\",\"prado200\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MuseoDelPrado_2018\\/MuseoDelPrado_2018.png\",\"決勝で会おうぜ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/YuGiOh_DL_INFO_May2019\\/YuGiOh_DL_INFO_May2019.png\",\"diewasp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wasp\\/Avengers_Endgame_2019_Wasp.png\",\"clawsup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ClawsS3_2019\\/ClawsS3_2019.png\",\"shopeeid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ShopeeRamadan_May_2019\\/ShopeeRamadan_May_2019.png\",\"onepluslaunch\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OnePlus7_2019\\/OnePlus7_2019.png\",\"yeoldebucketlist\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BudLight_BudKnight_2019\\/BudLight_BudKnight_2019.png\",\"lovetwitter\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LoveTwitter\\/LoveTwitter.png\",\"環境の日\\\"díamundialdelmedioambiente\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"bendstudio\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PlayStation_DaysGone\\/PlayStation_DaysGone.png\",\"got7_keepspinning\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_GOT7_2019_GOT7WORLDTOUR\\/KPOP_GOT7_2019_GOT7WORLDTOUR.png\",\"ウッディ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2_add\\/Disney_ToyStory4_Woody_v2_add.png\",\"pericles50\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pericles_2019\\/Pericles_2019.png\",\"endalz\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlzAssociation_ABAM_2019\\/AlzAssociation_ABAM_2019.png\",\"weareengland\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Teams_England\\/CricketWorldCup_2019_Teams_England.png\",\"jordensdag\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"ευρωεκλογές2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"avengersendgame\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"detroitbasketball\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_DET\\/NBA_18_DET.png\",\"quakes74\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_SJ\\/MLS_19_SJ.png\",\"godcontrol\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"artisttofollow\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ArtistToFollow_2019\\/ArtistToFollow_2019.png\",\"rootedinoakland\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Oakland\\/MLB_2019_Oakland.png\",\"jasmine\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"thelamp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"budapest2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ITTFworld_2019\\/ITTFworld_2019.png\",\"vivov15prolaunch\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VivoPHV15_2019\\/VivoPHV15_2019.png\",\"happybirthdaygeorge\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/GeorgeHarrison_2019_v2\\/GeorgeHarrison_2019_v2.png\",\"mlbtheshow19\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_TheShow19\\/MLB_TheShow19.png\",\"valquiria\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Valkyrie\\/Avengers_Endgame_2019_Valkyrie.png\",\"eusouliquid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_TeamLiquid_ext19\\/Esports_AllAccessTeam_TeamLiquid_ext19.png\",\"nuestroplaneta\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netflix_OurPlanet_2019\\/Netflix_OurPlanet_2019.png\",\"korgpileofrocks\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Korg\\/Avengers_Endgame_2019_Korg.png\",\"человекпаук\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Spiderman\\/Avengers_Endgame_2019_Spiderman.png\",\"monterey5\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HBO_BigLittleLies_Season2_2019\\/HBO_BigLittleLies_Season2_2019.png\",\"togetherwe\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Texas\\/MLB_2019_Texas.png\",\"激レアモンスターだぜ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/YuGiOh_DL_INFO_May2019\\/YuGiOh_DL_INFO_May2019.png\",\"アイスクレマで贅沢なひとときを\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AIDAMITSUWO_2019\\/AIDAMITSUWO_2019.png\",\"s04win\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Schalke04\\/Riot_Schalke04.png\",\"powerstone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"katyperry\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KatyPerry_May2019\\/KatyPerry_May2019.png\",\"cbj\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bluejacketsplayoffs2019\\/Bluejacketsplayoffs2019.png\",\"teamiseverything\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_UTA\\/NBA_18_UTA.png\",\"crave\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"blueandwhiteignite\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OrlandoPlayoffs2019\\/OrlandoPlayoffs2019.png\",\"borntobaseball\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Cincinnati\\/MLB_2019_Cincinnati.png\",\"fazgostoso\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"drstrange\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_DoctorStrange\\/Avengers_Endgame_2019_DoctorStrange.png\",\"tiempodevolar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_StLouis\\/MLB_2019_StLouis.png\",\"annabelle\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_Annabelle_3_v2\\/WB_Annabelle_3_v2.png\",\"teampixie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TheVoice_UK_2019\\/TheVoice_UK_2019.png\",\"valg2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DanishElection_2019\\/DanishElection_2019.png\",\"mlsallstar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_AllStar_2019_star\\/MLS_AllStar_2019_star.png\",\"meilleursamispourlavie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"thisisnewdelhi\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DelhiCapitals_IPL\\/DelhiCapitals_IPL.png\",\"thetethered\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018\\/UsMovie_2018.png\",\"遊戯王wcs2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/YuGiOh_DL_INFO_May2019\\/YuGiOh_DL_INFO_May2019.png\",\"stanleycup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/StanleyCup_2019\\/StanleyCup_2019.png\",\"diabloguardian2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_DiabloGuardian\\/Amazon_DiabloGuardian.png\",\"воитель\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WarMachine\\/Avengers_Endgame_2019_WarMachine.png\",\"endgame\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"nba\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_logo\\/NBA_18_logo.png\",\"kkrhaitaiyaar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KolkataKnights_2019\\/KolkataKnights_2019.png\",\"earthday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"owl2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19\\/OWL_19.png\",\"peston\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PestonUK_2018_flight3\\/PestonUK_2018_flight3.png\",\"backforfour\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FoxSports_WWC_2019\\/FoxSports_WWC_2019.png\",\"highwiretimessquare\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HighwireLive_NikWallenda\\/HighwireLive_NikWallenda.png\",\"rgewin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Rogue\\/Riot_Rogue.png\",\"ゴジラ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Godzilla_WB_2019_add\\/Godzilla_WB_2019_add.png\",\"paradisehotelonfox\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Fox_Summer_ParadiseHotel\\/Fox_Summer_ParadiseHotel.png\",\"ravensrevenge\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_RavensRevenge\\/FortniteE3_SummerBlockParty_2019_RavensRevenge.png\",\"valquíria\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Valkyrie\\/Avengers_Endgame_2019_Valkyrie.png\",\"ドラガリアロスト\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/dragalialos_March2019_v2\\/dragalialos_March2019_v2.png\",\"رمضان_أجمل_هدية\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Qatar_charity2019\\/Qatar_charity2019.png\",\"超最高の働き方選手権\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINMetsJP_2019\\/KIRINMetsJP_2019.png\",\"марияхилл\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_MariaHill\\/Avengers_Endgame_2019_MariaHill.png\",\"riseofthetigers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Teams_RiseOfTheTigers\\/CricketWorldCup_2019_Teams_RiseOfTheTigers.png\",\"connectedwithpride\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Verizon_Pride_2019\\/Verizon_Pride_2019.png\",\"downtonabbeyfilm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DowntonAbbey_2019\\/DowntonAbbey_2019.png\",\"lesoldatdelhiver\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WinterSoldier\\/Avengers_Endgame_2019_WinterSoldier.png\",\"ncwtixfor20\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NationalConcertWeek_2019\\/NationalConcertWeek_2019.png\",\"e319\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/E3_2019\\/E3_2019.png\",\"tokyoafterdark\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Nike_Japan_JDI_2019\\/Nike_Japan_JDI_2019.png\",\"gloriaeterna\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Libertadores_2019\\/Libertadores_2019.png\",\"viuvanegra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackWidow\\/Avengers_Endgame_2019_BlackWidow.png\",\"playwithyourfears\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Diesel_OTB_Noe\\/Diesel_OTB_Noe.png\",\"guantedelinfinito\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"mewtu\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Mewtwo\\/WBPikachu_Mewtwo.png\",\"コーグ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Korg\\/Avengers_Endgame_2019_Korg.png\",\"xerifewoody\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"labergère\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"starwarsgalaxysedge\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/disney_starwarsgalaxysedge_2019_v2\\/disney_starwarsgalaxysedge_2019_v2.png\",\"movietvawards\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MTV_Awards_May2019\\/MTV_Awards_May2019.png\",\"rocketmanofilme\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Rocket\\/Paramount_Rocketman_Rocket.png\",\"shieldsup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_LAG\\/OWL_19_LAG.png\",\"orgulloyankees\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Yankees\\/MLB_2019_Yankees.png\",\"chevyblazer\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ChevyBlazer_2019\\/ChevyBlazer_2019.png\",\"ドラゴン当たれ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/dragalialos_March2019_v2\\/dragalialos_March2019_v2.png\",\"bulbasaur\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Bulbasaur\\/WBPikachu_Bulbasaur.png\",\"latenightthemovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_LateNight_2019\\/Amazon_LateNight_2019.png\",\"aquestavegadavoto\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"معا_للحياة\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Zamzam_2019\\/Zamzam_2019.png\",\"aisplay\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AIS_GameofThrones_2019\\/AIS_GameofThrones_2019.png\",\"mainerisesup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MaineforVivo_2019\\/MaineforVivo_2019.png\",\"tymrazemglosuje\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"어버이날\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/2019_MothersDay\\/2019_MothersDay.png\",\"مقاضي_رمضان\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ZadFresh_2019_v3\\/ZadFresh_2019_v3.png\",\"ilcardellino\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_TheGoldfinch_2019\\/WB_TheGoldfinch_2019.png\",\"mlbtheshow\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_TheShow19\\/MLB_TheShow19.png\",\"jesuistonmeilleurami\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"халк\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hulk\\/Avengers_Endgame_2019_Hulk.png\",\"hornets30\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_BCHA\\/NBA_18_BCHA.png\",\"errolspencejr\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FoxSports_PBC\\/FoxSports_PBC.png\",\"loveislandaftersun\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LoveIsland_May2019\\/LoveIsland_May2019.png\",\"infinitystones\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"goavsgo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AvsPlayoffs2019\\/AvsPlayoffs2019.png\",\"fiatlux\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Paris\\/OWL_19_Paris.png\",\"プリコネr\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Priconne_Rezaro_2019_v2\\/Priconne_Rezaro_2019_v2.png\",\"galaxysedge\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/disney_starwarsgalaxysedge_2019_v2\\/disney_starwarsgalaxysedge_2019_v2.png\",\"newbrew\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Carlsberg_NewBrew_2019\\/Carlsberg_NewBrew_2019.png\",\"onurhaftası\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"metgala\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VogueMetGala_2019\\/VogueMetGala_2019.png\",\"7afl\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019_7AFL\\/AFL_2019_7AFL.png\",\"paisleypark\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Prince_June2019\\/Prince_June2019.png\",\"theintruder\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SonyIntruder_2018\\/SonyIntruder_2018.png\",\"goodbagels\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Warburtons_Bagel_Boss\\/Warburtons_Bagel_Boss.png\",\"ownyoureveryday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlmondBoardofCalifornia_WWC\\/AlmondBoardofCalifornia_WWC.png\",\"mapfrepreguntarafa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MapfreRafaNadal_2019\\/MapfreRafaNadal_2019.png\",\"discoveryreserve\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Budweiser_SpaceBeer_2019\\/Budweiser_SpaceBeer_2019.png\",\"스쿨미투\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MeToo_Korea_2018_v2\\/MeToo_Korea_2018_v2.png\",\"setforlifetnl\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TNL_SetforLife_2019\\/TNL_SetforLife_2019.png\",\"amtodmbfn\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BuzzFeedMorning_2019ext\\/BuzzFeedMorning_2019ext.png\",\"cementeriomaldito\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_PetSematary_2019_v2\\/Paramount_PetSematary_2019_v2.png\",\"토이스토리보핍\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"kpop\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOPTwitter2019_red\\/KPOPTwitter2019_red.png\",\"ウッデ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"somespoilmoviesbutnotus\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"chargeeverythingfaster\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Anker_PD_CEF_Launch_2019\\/Anker_PD_CEF_Launch_2019.png\",\"diabloguardiánii\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_DiabloGuardian\\/Amazon_DiabloGuardian.png\",\"エムバク\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Mbaku\\/Avengers_Endgame_2019_Mbaku.png\",\"riseupfromtheexpected\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MaineforVivo_2019\\/MaineforVivo_2019.png\",\"jourdelaterre\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"капитанамерика\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainAmerica\\/Avengers_Endgame_2019_CaptainAmerica.png\",\"backtheblackcaps\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Teams_BACKTHEBLACKCAPS\\/CricketWorldCup_2019_Teams_BACKTHEBLACKCAPS.png\",\"лучшиедрузья\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"huaweip30pro\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Huawei_P30_2019\\/Huawei_P30_2019.png\",\"ggs\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LCS_2019_GGS\\/LCS_2019_GGS.png\",\"cricketmerijaan\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MumbaiIndians_2018\\/MumbaiIndians_2018.png\",\"音楽さえあればいい\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SpotifyJapan_TVCM\\/SpotifyJapan_TVCM.png\",\"nationalpetsday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_Max_v2_ext\\/Pets2_Max_v2_ext.png\",\"ettie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_Ettie\\/FIFAWWC_2019_Ettie.png\",\"metooindia\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MeToo_India_2018\\/MeToo_India_2018.png\",\"protectparadise\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Corona_ProtectParadise_2019\\/Corona_ProtectParadise_2019.png\",\"pixarpalsparty\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"vainogas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CocaCola_VaiNoGas\\/CocaCola_VaiNoGas.png\",\"gopain\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LeagueofLegends_2019_GOPAIN\\/LeagueofLegends_2019_GOPAIN.png\",\"juntosmiami\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Miami\\/MLB_2019_Miami.png\",\"mickey\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Mickey90th_2018\\/Mickey90th_2018.png\",\"爱就是爱\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"окое\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Okoye\\/Avengers_Endgame_2019_Okoye.png\",\"matildas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Matildas_WWC\\/Matildas_WWC.png\",\"teambabo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UglyDolls_Babo_add\\/UglyDolls_Babo_add.png\",\"masterchief\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Xbox_Halo_2019\\/Xbox_Halo_2019.png\",\"surprisecelebration\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"cmonaussie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Teams_CmonAussie\\/CricketWorldCup_2019_Teams_CmonAussie.png\",\"블랙팬서\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackPanther\\/Avengers_Endgame_2019_BlackPanther.png\",\"tokratgremvolit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"iheartawards2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/iHeartAwards2019\\/iHeartAwards2019.png\",\"gointz\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LeagueofLegends_2019_GOINTZ\\/LeagueofLegends_2019_GOINTZ.png\",\"toystoryland\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_ToyStoryLand\\/DisneyParks_ToyStoryLand.png\",\"euval2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"toystorywoody\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"자스민\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"laysnachampions\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Lays_UCL_2019\\/Lays_UCL_2019.png\",\"agrabah\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"아빠사랑해요\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/2019_MothersDay\\/2019_MothersDay.png\",\"lv52デス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LineageMSecondBrand_2019\\/LineageMSecondBrand_2019.png\",\"mk2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBGames_MortalKombat_2019\\/WBGames_MortalKombat_2019.png\",\"disneyaladdin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"operatingonchingonalevel\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_Vida_S2\\/STARZ_Vida_S2.png\",\"wttc2019budapest\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ITTFworld_2019\\/ITTFworld_2019.png\",\"アントマン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_AntMan\\/Avengers_Endgame_2019_AntMan.png\",\"letsgobucs\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Pitts\\/MLB_2019_Pitts.png\",\"해피호건\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_HappyHogan\\/Avengers_Endgame_2019_HappyHogan.png\",\"مسابقة_طيران_ناس\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FlyNas_2019\\/FlyNas_2019.png\",\"gocnb\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LeagueofLegends_2019_GOCNB\\/LeagueofLegends_2019_GOCNB.png\",\"gogovp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_Virtus\\/Esports_V2_19_Virtus.png\",\"ペッパーポッツ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_PepperPotts\\/Avengers_Endgame_2019_PepperPotts.png\",\"onzejacht\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_NED\\/FIFAWWC_2019_NED.png\",\"fncwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Fnatic\\/Riot_Fnatic.png\",\"cemitériomaldito\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_PetSematary_2019_v2\\/Paramount_PetSematary_2019_v2.png\",\"biglittlelies\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HBO_BigLittleLies_Season2_2019\\/HBO_BigLittleLies_Season2_2019.png\",\"fangoals\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CapitalOne_MarchMadness_2019\\/CapitalOne_MarchMadness_2019.png\",\"proximon1\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Brahma_Numero_1\\/Brahma_Numero_1.png\",\"ワスプ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wasp\\/Avengers_Endgame_2019_Wasp.png\",\"yellove\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PL_2019_2_CSK_v2\\/PL_2019_2_CSK_v2.png\",\"aus\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_AUS\\/FIFAWWC_2019_AUS.png\",\"フシギダネ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Bulbasaur\\/WBPikachu_Bulbasaur.png\",\"оса\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wasp\\/Avengers_Endgame_2019_Wasp.png\",\"ayudaaunprimerizo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AmazonHotSale2019\\/AmazonHotSale2019.png\",\"iammighty\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thor\\/Avengers_Endgame_2019_Thor.png\",\"telleurope\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019_add\\/EUElections_VoterEngagement_2019_add.png\",\"ما_نختلف\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Mobily_Branding_2019\\/Mobily_Branding_2019.png\",\"dg2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_DiabloGuardian\\/Amazon_DiabloGuardian.png\",\"토이스토리포키\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"thisfreelife\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ThisFreeLife_March_2019\\/ThisFreeLife_March_2019.png\",\"amtodm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BuzzFeedMorning_2019ext\\/BuzzFeedMorning_2019ext.png\",\"mantis\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Mantis\\/Avengers_Endgame_2019_Mantis.png\",\"тор\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thor\\/Avengers_Endgame_2019_Thor.png\",\"got7\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_GOT7_2019_GOT7WORLDTOUR\\/KPOP_GOT7_2019_GOT7WORLDTOUR.png\",\"танос\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thanos\\/Avengers_Endgame_2019_Thanos.png\",\"proteafire\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Teams_ProteaFire\\/CricketWorldCup_2019_Teams_ProteaFire.png\",\"ガモーラ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Gamora\\/Avengers_Endgame_2019_Gamora.png\",\"orgulholgbt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"toystoryporzellinchen\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"whatadelivery\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bundl_Swiggy_2019\\/Bundl_Swiggy_2019.png\",\"avispa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wasp\\/Avengers_Endgame_2019_Wasp.png\",\"iamopl\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OPL_2019\\/OPL_2019.png\",\"watchuswatchnascar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Xfinity_WatchUsWatchNASCAR_2019\\/Xfinity_WatchUsWatchNASCAR_2019.png\",\"shocktheworld\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_SF\\/OWL_19_SF.png\",\"šįkartąbalsuosiu\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"g20閣僚会合\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"brightburn\\\"evilhasfounditssuperhero\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_Brightburn_BB_2019\\/Sony_Brightburn_BB_2019.png\",\"raysbeisbol\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Tampa\\/MLB_2019_Tampa.png\",\"edboon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBGames_MortalKombat_2019\\/WBGames_MortalKombat_2019.png\",\"crydecker\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TimHeidecker_2019\\/TimHeidecker_2019.png\",\"theworldisours\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DiscoveryChannel_2019\\/DiscoveryChannel_2019.png\",\"snapforandroid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SnapAndroid_Launch_2019\\/SnapAndroid_Launch_2019.png\",\"ghostrecon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/GhostRecon_2019_v2\\/GhostRecon_2019_v2.png\",\"버즈라이트이어\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Buzz\\/Disney_ToyStory4_Buzz.png\",\"祝ロマサガrs半周年\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/romasaga_rs_2019\\/romasaga_rs_2019.png\",\"fearthedeer\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_MIL\\/NBA_18_MIL.png\",\"am2dmbf\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BuzzFeedMorning_2019ext\\/BuzzFeedMorning_2019ext.png\",\"tälläkertaaäänestän\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"flames\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FlamesPlayoffs2019\\/FlamesPlayoffs2019.png\",\"алаяведьма\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_ScarletWitch\\/Avengers_Endgame_2019_ScarletWitch.png\",\"friarfaithful\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_SD\\/MLB_2019_SD.png\",\"schalkenullfear\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Schalke04\\/Riot_Schalke04.png\",\"gamora\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Gamora\\/Avengers_Endgame_2019_Gamora.png\",\"العلا\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlUlaCity_2019\\/AlUlaCity_2019.png\",\"warburtonsbagels\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Warburtons_Bagel_Boss\\/Warburtons_Bagel_Boss.png\",\"fireワンデイブラック\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINFIRE_ONEDAY_JP\\/KIRINFIRE_ONEDAY_JP.png\",\"groot\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Groot\\/Avengers_Endgame_2019_Groot.png\",\"俺達のnba\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RakutenTV_NBA_Logo_2019_v2\\/RakutenTV_NBA_Logo_2019_v2.png\",\"хэппихоган\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_HappyHogan\\/Avengers_Endgame_2019_HappyHogan.png\",\"bharatwithfamily\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BharatFilm_2019\\/BharatFilm_2019.png\",\"lasangraazul\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Dodgers\\/MLB_2019_Dodgers.png\",\"마리아힐\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_MariaHill\\/Avengers_Endgame_2019_MariaHill.png\",\"lalámpara\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"geng\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_GENG\\/Esports_V2_19_GENG.png\",\"falconavengers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Falcon\\/Avengers_Endgame_2019_Falcon.png\",\"드랙스\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Drax\\/Avengers_Endgame_2019_Drax.png\",\"ミドガルズオルム\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/dragalialos_March2019_v2\\/dragalialos_March2019_v2.png\",\"ロケット\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Rocket\\/Avengers_Endgame_2019_Rocket.png\",\"rctid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_POR\\/MLS_19_POR.png\",\"thecontinentalhotel\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JohnWick_3_ext\\/JohnWick_3_ext.png\",\"epvalg2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"downtonabbeytrailer\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DowntonAbbey_2019\\/DowntonAbbey_2019.png\",\"qatar_charity\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Qatar_charity2019\\/Qatar_charity2019.png\",\"ourcultureouridentity\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MOCSaudi_2019\\/MOCSaudi_2019.png\",\"feelthecharge\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Guangzhou\\/OWL_19_Guangzhou.png\",\"asksadtim\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TimHeidecker_2019\\/TimHeidecker_2019.png\",\"nga\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_NGA\\/FIFAWWC_2019_NGA.png\",\"pelopantene\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PG_Spain_Pantene_2019\\/PG_Spain_Pantene_2019.png\",\"booksmart\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Booksmart_2019\\/Booksmart_2019.png\",\"tflflauntit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ThisFreeLife_March_2019\\/ThisFreeLife_March_2019.png\",\"mickeymouse\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Mickey90th_2018\\/Mickey90th_2018.png\",\"vamosbravos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Atlanta\\/MLB_2019_Atlanta.png\",\"مافي_زي_stcpay\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STCPay_2019\\/STCPay_2019.png\",\"mapfreyrafajuntos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MapfreRafaNadal_2019\\/MapfreRafaNadal_2019.png\",\"tictocnews\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/bloombergtictoc2018_ext19\\/bloombergtictoc2018_ext19.png\",\"adidasoriginals\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Adidas_NiteJogger_2019_add\\/Adidas_NiteJogger_2019_add.png\",\"오코예\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Okoye\\/Avengers_Endgame_2019_Okoye.png\",\"moishistoireautochtone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IndigenousHistoryMonth_2019\\/IndigenousHistoryMonth_2019.png\",\"любовьэтолюбовь\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"ニックフューリー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_NickFury\\/Avengers_Endgame_2019_NickFury.png\",\"thebrandisbrolic\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DesusandMero_2019\\/DesusandMero_2019.png\",\"useankerinstead\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Anker_PD_CEF_Launch_2019\\/Anker_PD_CEF_Launch_2019.png\",\"يوم_الارض\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"toystorybuzz\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Buzz\\/Disney_ToyStory4_Buzz.png\",\"opporenouae\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Oppo_KSA_RenoLaunch_Q2_2019\\/Oppo_KSA_RenoLaunch_Q2_2019.png\",\"mbaku\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Mbaku\\/Avengers_Endgame_2019_Mbaku.png\",\"放置少女2周年記念\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/houchishoujo_2yearanniversary_v2\\/houchishoujo_2yearanniversary_v2.png\",\"orgullo19\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"amoresamor\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"heartuponmysleeve\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avicii_2019\\/Avicii_2019.png\",\"mickeytrueoriginal\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Mickey90th_2018\\/Mickey90th_2018.png\",\"alampada\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"petcemetarymovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_PetSematary_2019_v2\\/Paramount_PetSematary_2019_v2.png\",\"unserplanet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netflix_OurPlanet_2019\\/Netflix_OurPlanet_2019.png\",\"alfombramágica\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"g20inosaka\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"warmachine\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WarMachine\\/Avengers_Endgame_2019_WarMachine.png\",\"beardawards\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JamesBeard_FoundationAwards_2019\\/JamesBeard_FoundationAwards_2019.png\",\"годзилла2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Godzilla_WB_2019\\/Godzilla_WB_2019.png\",\"usmovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018\\/UsMovie_2018.png\",\"ありがとうアベンジャーズ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"loveislandfinal\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LoveIsland_May2019\\/LoveIsland_May2019.png\",\"haribumi\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"walk2endalz\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlzAssociation_ABAM_2019\\/AlzAssociation_ABAM_2019.png\",\"endalzheimers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlzAssociation_ABAM_2019\\/AlzAssociation_ABAM_2019.png\",\"c9win\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_Cloud9_ext19\\/Esports_AllAccessTeam_Cloud9_ext19.png\",\"it2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"jabaritribe\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Mbaku\\/Avengers_Endgame_2019_Mbaku.png\",\"زمزم\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Zamzam_2019\\/Zamzam_2019.png\",\"disneyland\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_MickeyEars_Flight2\\/DisneyParks_MickeyEars_Flight2.png\",\"motoron\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Detroit_v2\\/MLB_2019_Detroit_v2.png\",\"thebrandisstrong\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DesusandMero_2019\\/DesusandMero_2019.png\",\"irise\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"premiosmtvmiaw\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MTV_Miaw_2019\\/MTV_Miaw_2019.png\",\"verdensmiljødag\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"nightcrawler\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DarkPhoenix_nightcrawler\\/DarkPhoenix_nightcrawler.png\",\"thinkau\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ThinkAU_2019\\/ThinkAU_2019.png\",\"bharat\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BharatFilm_2019\\/BharatFilm_2019.png\",\"thinkbeforeclicking\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking.png\",\"cf97\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_CHI\\/MLS_19_CHI.png\",\"ثقافتنا_هويتنا\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MOCSaudi_2019\\/MOCSaudi_2019.png\",\"valchiria\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Valkyrie\\/Avengers_Endgame_2019_Valkyrie.png\",\"microsoftai\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Microsoft_APAC_2019_v2\\/Microsoft_APAC_2019_v2.png\",\"orgullgai2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"tagdererde\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"almondemoji\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlmondBoardofCalifornia_WWC\\/AlmondBoardofCalifornia_WWC.png\",\"falcão\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Falcon\\/Avengers_Endgame_2019_Falcon.png\",\"wong\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wong\\/Avengers_Endgame_2019_Wong.png\",\"kohlscash\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Kohls_Q2_2019\\/Kohls_Q2_2019.png\",\"nickfuria\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_NickFury\\/Avengers_Endgame_2019_NickFury.png\",\"ダークフェニックス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/20thCenturyFox_DarkPhoenix_v2_newartwork\\/20thCenturyFox_DarkPhoenix_v2_newartwork.png\",\"블랙위도우\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackWidow\\/Avengers_Endgame_2019_BlackWidow.png\",\"sulamericana\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sulamericana_2019\\/Sulamericana_2019.png\",\"onthehunt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Splyce\\/Riot_Splyce.png\",\"nrlw\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL_2019_MidSeason_NRLW\\/NRL_2019_MidSeason_NRLW.png\",\"petsematary\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_PetSematary_2019_v2\\/Paramount_PetSematary_2019_v2.png\",\"مفاجات_وااو\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SAIB_2019\\/SAIB_2019.png\",\"baldursgate3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LarianStudios_GamesLimited_2019\\/LarianStudios_GamesLimited_2019.png\",\"шури\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Shuri\\/Avengers_Endgame_2019_Shuri.png\",\"snapdroid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SnapAndroid_Launch_2019\\/SnapAndroid_Launch_2019.png\",\"天下一武道会\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Dragonball_2019\\/Dragonball_2019.png\",\"пепперпоттс\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_PepperPotts\\/Avengers_Endgame_2019_PepperPotts.png\",\"вуди\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"ソー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thor\\/Avengers_Endgame_2019_Thor.png\",\"hawkeye\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"先想再分享\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing.png\",\"生スパ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SpiderMan_Japan_2019\\/SpiderMan_Japan_2019.png\",\"doitbig\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_NOP\\/NBA_18_NOP.png\",\"prixbestoftweets\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BestofTweetsPrize_2019\\/BestofTweetsPrize_2019.png\",\"いくぜ超刺激メッツ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINMetsJP_2019\\/KIRINMetsJP_2019.png\",\"알라딘지니\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"notjustpingpong\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ITTFworld_2019\\/ITTFworld_2019.png\",\"faze5\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_FaZeClan_ext19\\/Esports_AllAccessTeam_FaZeClan_ext19.png\",\"αυτήτηφοράψηφίζω\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"pikapika\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pikachu_Pokemon_PartnerUp_2019\\/Pikachu_Pokemon_PartnerUp_2019.png\",\"anteup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Houston_change\\/OWL_19_Houston_change.png\",\"gulbadinnaib\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Players_GulbadinNaib\\/CricketWorldCup_2019_Players_GulbadinNaib.png\",\"ofertashotsale\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AmazonHotSale2019\\/AmazonHotSale2019.png\",\"finaisnbb\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBB2019Finals\\/NBB2019Finals.png\",\"ronin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"デスナイトへの道\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LineageMSecondBrand_2019\\/LineageMSecondBrand_2019.png\",\"redv\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_RedV\\/NRL2019_RedV.png\",\"thrivetogether\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_exceL_add\\/Riot_exceL_add.png\",\"booksmartmovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Booksmart_2019\\/Booksmart_2019.png\",\"앤트맨\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_AntMan\\/Avengers_Endgame_2019_AntMan.png\",\"чернаявдова\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackWidow\\/Avengers_Endgame_2019_BlackWidow.png\",\"rallytogether\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Cleveland\\/MLB_2019_Cleveland.png\",\"mentellall\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bachelorette_2019\\/Bachelorette_2019.png\",\"ausarmy\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AusArmy_2019\\/AusArmy_2019.png\",\"чармандер\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Charmander\\/WBPikachu_Charmander.png\",\"stonewall\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019_StoneWall50\\/Pride2019_StoneWall50.png\",\"nor\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_NOR\\/FIFAWWC_2019_NOR.png\",\"betterwithpets\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PurinaBetterWithPets_2019_ext2\\/PurinaBetterWithPets_2019_ext2.png\",\"azure\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Microsoft_APAC_2019_v2\\/Microsoft_APAC_2019_v2.png\",\"сквиртл\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Squirtle_v2\\/WBPikachu_Squirtle_v2.png\",\"sorrybaby\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KillingEve_US_2019_v3\\/KillingEve_US_2019_v3.png\",\"hashtaglatenightmovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_LateNight_2019\\/Amazon_LateNight_2019.png\",\"bostonup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Boston\\/OWL_19_Boston.png\",\"프라이드2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"everybodyin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Cubs\\/MLB_2019_Cubs.png\",\"nowmorethanever\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"neverreallyover\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KatyPerry_May2019\\/KatyPerry_May2019.png\",\"gofla\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LeagueofLegends_2019_GOFLA\\/LeagueofLegends_2019_GOFLA.png\",\"redmisuperselfie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RedmiY3_2019\\/RedmiY3_2019.png\",\"aladdín\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"bestoftweetsawards\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BestofTweetsPrize_2019\\/BestofTweetsPrize_2019.png\",\"ракета\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Rocket\\/Avengers_Endgame_2019_Rocket.png\",\"timestone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"disneymagic\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"まがつリリースは4月23日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/magatsu_ver2_2019\\/magatsu_ver2_2019.png\",\"ee2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"highwire2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HighwireLive_NikWallenda\\/HighwireLive_NikWallenda.png\",\"世界ペンギンデー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldPenguinDay_2019\\/WorldPenguinDay_2019.png\",\"somosmibr\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_MIBR\\/Esports_V2_19_MIBR.png\",\"indigenouspeoplesday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IndigenousHistoryMonth_2019\\/IndigenousHistoryMonth_2019.png\",\"lijanawallenda\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HighwireLive_NikWallenda\\/HighwireLive_NikWallenda.png\",\"jordanpeele\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018\\/UsMovie_2018.png\",\"iamgroot\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Groot\\/Avengers_Endgame_2019_Groot.png\",\"รักก็คือรัก\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"mikadoensérie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/France_MondelezMikado_2019\\/France_MondelezMikado_2019.png\",\"everupward\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_NY\\/OWL_19_NY.png\",\"rockets\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_HOU\\/NBA_18_HOU.png\",\"movieandtvawards\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MTV_Awards_May2019\\/MTV_Awards_May2019.png\",\"ロケットマン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Rocket\\/Paramount_Rocketman_Rocket.png\",\"teamsolomid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_TSM_filled_ext19\\/Esports_AllAccessTeam_TSM_filled_ext19.png\",\"travelokaxperience\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Traveloka_Xperience_2019\\/Traveloka_Xperience_2019.png\",\"badmutha\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_ShaftMovie_2019\\/WB_ShaftMovie_2019.png\",\"cyclops\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DarkPhoenix_cyclops\\/DarkPhoenix_cyclops.png\",\"yadamnright\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_ShaftMovie_2019\\/WB_ShaftMovie_2019.png\",\"myfriendmiek\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Miek\\/Avengers_Endgame_2019_Miek.png\",\"ネビュラ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Nebula\\/Avengers_Endgame_2019_Nebula.png\",\"chn\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_CHN\\/FIFAWWC_2019_CHN.png\",\"secretlifeofmypet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_Max_v2_ext\\/Pets2_Max_v2_ext.png\",\"roarmacha\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DelhiCapitals_IPL\\/DelhiCapitals_IPL.png\",\"flynas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FlyNas_2019\\/FlyNas_2019.png\",\"fazeclan\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_FaZeClan_ext19\\/Esports_AllAccessTeam_FaZeClan_ext19.png\",\"withstkilda\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019_withstkilda\\/AFL_2019_withstkilda.png\",\"แอนนาเบลล์\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_Annabelle_3_v2\\/WB_Annabelle_3_v2.png\",\"pubg\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PUBGKR2019\\/PUBGKR2019.png\",\"diadelatierra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"globalmilweek\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks.png\",\"whislepodu\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_CSK\\/IPL_2019_2_CSK.png\",\"ikstemdezekeer\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"sweepthenation\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Nissan_CWC_2019\\/Nissan_CWC_2019.png\",\"tha\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_THA\\/FIFAWWC_2019_THA.png\",\"rsa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_RSA\\/FIFAWWC_2019_RSA.png\",\"アラジン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"runskg\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_SK\\/Riot_SK.png\",\"spotifyxtxt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Spotify_KPOP_2019_v3\\/Spotify_KPOP_2019_v3.png\",\"wunderlampe\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"clg\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LCS_2019_CounterLogicGaming\\/LCS_2019_CounterLogicGaming.png\",\"キリンレモントリビュート\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINLEMON_2019\\/KIRINLEMON_2019.png\",\"kor\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_KOR\\/FIFAWWC_2019_KOR.png\",\"watchyourself\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018\\/UsMovie_2018.png\",\"choosesnooze\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CasperChooseSnooze_2019\\/CasperChooseSnooze_2019.png\",\"小火龍\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Charmander\\/WBPikachu_Charmander.png\",\"tobaccofreepride\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ThisFreeLife_March_2019\\/ThisFreeLife_March_2019.png\",\"sarfarazahmed\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Players_SarfarazAhmed\\/CricketWorldCup_2019_Players_SarfarazAhmed.png\",\"weareready\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_WeAreReady\\/NRL2019_WeAreReady.png\",\"loveislandpodcast\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LoveIsland_May2019\\/LoveIsland_May2019.png\",\"toystorygarfinho\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"vivoxmaine\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MaineforVivo_2019\\/MaineforVivo_2019.png\",\"msfwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_MisfitsGaming\\/Riot_MisfitsGaming.png\",\"johnwick3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JohnWick_3_ext\\/JohnWick_3_ext.png\",\"timbergling\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avicii_2019\\/Avicii_2019.png\",\"partyroyale\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_PartyRoyale\\/FortniteE3_SummerBlockParty_2019_PartyRoyale.png\",\"onepursuit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Wash\\/MLB_2019_Wash.png\",\"deixeaquímicarolar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NaturaHumor_May2019_V2\\/NaturaHumor_May2019_V2.png\",\"quieromicamion\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Quality_Corona_May2019\\/Quality_Corona_May2019.png\",\"wearegeelong\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019_WeAreGeelong\\/AFL_2019_WeAreGeelong.png\",\"荒野行動\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netease_EVA_Collaboration_2019_v2\\/Netease_EVA_Collaboration_2019_v2.png\",\"dunkin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Dunkin_NationalDonutDay_2019\\/Dunkin_NationalDonutDay_2019.png\",\"rocketman\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Rocket\\/Paramount_Rocketman_Rocket.png\",\"アナベル\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_Annabelle_3_v2\\/WB_Annabelle_3_v2.png\",\"thestonekeeper\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_RedSkull\\/Avengers_Endgame_2019_RedSkull.png\",\"wethenorth\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_TOR\\/NBA_18_TOR.png\",\"соколиныйглаз\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"londonseries\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_London_Series_2019\\/MLB_London_Series_2019.png\",\"mingguliterasimedia\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks.png\",\"excommunicado\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JohnWick_3_ext\\/JohnWick_3_ext.png\",\"discoverychannel\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DiscoveryChannel_2019\\/DiscoveryChannel_2019.png\",\"nebulosa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Nebula\\/Avengers_Endgame_2019_Nebula.png\",\"forthefern\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_NZL\\/FIFAWWC_2019_NZL.png\",\"nicholasjfury\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_NickFury\\/Avengers_Endgame_2019_NickFury.png\",\"haloe32019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Xbox_Halo_2019\\/Xbox_Halo_2019.png\",\"pennywise\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"usmovieart\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018_add\\/UsMovie_2018_add.png\",\"parradise\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_Parradise\\/NRL2019_Parradise.png\",\"libertadores\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Libertadores_2019\\/Libertadores_2019.png\",\"lvcruise\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LouisVuittonCruiseMay2019\\/LouisVuittonCruiseMay2019.png\",\"まがつ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/magatsu_ver2_2019\\/magatsu_ver2_2019.png\",\"ڤيمتو\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Vimto_Ramadan_2019_v2\\/Vimto_Ramadan_2019_v2.png\",\"gorabbitohs\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_GoRabbitohs\\/NRL2019_GoRabbitohs.png\",\"gospursgo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_SAS\\/NBA_18_SAS.png\",\"boltonbagelboss\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Warburtons_Bagel_Boss\\/Warburtons_Bagel_Boss.png\",\"방탄소년단게임\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BTSWorldGame_2019\\/BTSWorldGame_2019.png\",\"وزارة_الثقافة\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MOCSaudi_2019\\/MOCSaudi_2019.png\",\"pikirsebelumsebar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing.png\",\"bryceharper\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_TheShow19\\/MLB_TheShow19.png\",\"thesecretlifeofpets\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_Max_v2_ext\\/Pets2_Max_v2_ext.png\",\"dubnation\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_GSW\\/NBA_18_GSW.png\",\"smugglersrun\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/disney_starwarsgalaxysedge_2019_v2\\/disney_starwarsgalaxysedge_2019_v2.png\",\"šoreizesbalsošu\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"برنامج_أصيل\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SAIB_2019\\/SAIB_2019.png\",\"team9jastrong\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_NGA\\/FIFAWWC_2019_NGA.png\",\"マンティス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Mantis\\/Avengers_Endgame_2019_Mantis.png\",\"небула\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Nebula\\/Avengers_Endgame_2019_Nebula.png\",\"lionsroar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Teams_LionsRoar\\/CricketWorldCup_2019_Teams_LionsRoar.png\",\"panteranegra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackPanther\\/Avengers_Endgame_2019_BlackPanther.png\",\"gokbm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LeagueofLegends_2019_GOKBM\\/LeagueofLegends_2019_GOKBM.png\",\"takenote\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Utah\\/Utah.png\",\"valkiria\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Valkyrie\\/Avengers_Endgame_2019_Valkyrie.png\",\"sweetbitterstarz\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_Sweetbitter_Season2\\/STARZ_Sweetbitter_Season2.png\",\"mtvmiaw2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MTV_Miaw_2019\\/MTV_Miaw_2019.png\",\"토이스토리버즈\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Buzz\\/Disney_ToyStory4_Buzz.png\",\"godzillamovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Godzilla_WB_2019\\/Godzilla_WB_2019.png\",\"teamrocketman\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Star\\/Paramount_Rocketman_Star.png\",\"highwire\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HighwireLive_NikWallenda\\/HighwireLive_NikWallenda.png\",\"3deseos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"pride2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"dcu\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_DCU\\/MLS_19_DCU.png\",\"夏スパ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SpiderMan_Japan_2019\\/SpiderMan_Japan_2019.png\",\"con_canas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PG_Spain_Pantene_2019\\/PG_Spain_Pantene_2019.png\",\"standupflagsup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_StandUpFlagsUp\\/NRL2019_StandUpFlagsUp.png\",\"twice\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_TWICE_Fancy_2019\\/KPOP_TWICE_Fancy_2019.png\",\"перчаткабесконечности\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"زاد_رمضان\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ZadFresh_2019_v3\\/ZadFresh_2019_v3.png\",\"avidasecretadosbichos2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_2018_Snowball_Brazil\\/Pets2_2018_Snowball_Brazil.png\",\"まがつリリースは4月23日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/magatsu_ver2_2019_add\\/magatsu_ver2_2019_add.png\",\"afl\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019\\/AFL_2019.png\",\"killerswhoarepartying\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"beatairpollution\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"euverkiezingen2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"onurhaftası2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"気になりだしたら止まらないこと選手権\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/rakuma_official_brand_2019\\/rakuma_official_brand_2019.png\",\"ragazzemondiali\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_ITA\\/FIFAWWC_2019_ITA.png\",\"blackpanther\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackPanther\\/Avengers_Endgame_2019_BlackPanther.png\",\"оно2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"manopladoinfinito\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"nos4a2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Nos4a2_2019\\/Nos4a2_2019.png\",\"グリムエコーズ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/GrimmsEchoes_PR_2019\\/GrimmsEchoes_PR_2019.png\",\"cidadesinteligentes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Cabify_DecisionesInteligentes_2019\\/Cabify_DecisionesInteligentes_2019.png\",\"toystory4\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"pikaparty\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pikachu_Pokemon_PartnerUp_2019\\/Pikachu_Pokemon_PartnerUp_2019.png\",\"santiago2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Libertadores_2019\\/Libertadores_2019.png\",\"الفخر2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"johnwick\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JohnWick_3_ext\\/JohnWick_3_ext.png\",\"그것2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"マネービバ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Midosuke_2019\\/Midosuke_2019.png\",\"díamundialdelmedioambiente\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019_add\\/WorldEnvironmentDay_2019_add.png\",\"放置系美少女ゲーム\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/houchishoujo_2yearanniversary_v2\\/houchishoujo_2yearanniversary_v2.png\",\"soundersmatchday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_SEA\\/MLS_19_SEA.png\",\"اليوم_العالمي_للبيئة\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"secretlifeofpets2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_Max_v2_ext\\/Pets2_Max_v2_ext.png\",\"nowruz\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/nowruz2018_v4\\/nowruz2018_v4.png\",\"lawasp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wasp\\/Avengers_Endgame_2019_Wasp.png\",\"epcot\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_MickeyEars_Flight2\\/DisneyParks_MickeyEars_Flight2.png\",\"mibaliens\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_Pawny_2019\\/Sony_MenInBlack_Pawny_2019.png\",\"timetorise\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_PHX\\/NBA_18_PHX.png\",\"pacers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_IND\\/NBA_18_IND.png\",\"ブラックパンサー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackPanther\\/Avengers_Endgame_2019_BlackPanther.png\",\"rakutennba\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RakutenTV_NBA_Logo_2019_v2\\/RakutenTV_NBA_Logo_2019_v2.png\",\"opintassilgo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_TheGoldfinch_2019\\/WB_TheGoldfinch_2019.png\",\"goone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LeagueofLegends_2019_GOONE\\/LeagueofLegends_2019_GOONE.png\",\"برنامج_وااو\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SAIB_2019\\/SAIB_2019.png\",\"블랙핑크\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_BLACKPINK_2019\\/KPOP_BLACKPINK_2019.png\",\"فكر_قبل_الضغط\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking.png\",\"thisismycrew\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Milwaukee\\/MLB_2019_Milwaukee.png\",\"charliemanx\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Nos4a2_2019\\/Nos4a2_2019.png\",\"winecountrymovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WineCountry_Netflix\\/WineCountry_Netflix.png\",\"thesecretlifeofpets2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_Max_v2_ext\\/Pets2_Max_v2_ext.png\",\"mindstone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"murmureuntweet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OuiGO_SNCF_2019\\/OuiGO_SNCF_2019.png\",\"親バカ部\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ChildrensDay_2019\\/ChildrensDay_2019.png\",\"キリンレモンのうた2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINLEMON_2019\\/KIRINLEMON_2019.png\",\"dignitas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_DIG\\/Esports_V2_19_DIG.png\",\"livingthefern\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Matildas_WWC_Fern_v2\\/Matildas_WWC_Fern_v2.png\",\"gears5\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Xbox_GearsofWar_2019\\/Xbox_GearsofWar_2019.png\",\"wiredforwireless\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Cisco_Avengers_2019\\/Cisco_Avengers_2019.png\",\"summerblockparty\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_SummerBlockParty\\/FortniteE3_SummerBlockParty_2019_SummerBlockParty.png\",\"스칼렛위치\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_ScarletWitch\\/Avengers_Endgame_2019_ScarletWitch.png\",\"グラクロメリオダス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble7S_V6_fix2\\/Netmarble7S_V6_fix2.png\",\"comisariowoody\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"g20summit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"capitánamérica\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainAmerica\\/Avengers_Endgame_2019_CaptainAmerica.png\",\"hollywoodstudios30\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"วันสิ่งแวดล้อมโลก\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"無料11連ガチャ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sinoalice_June2019\\/Sinoalice_June2019.png\",\"seeher\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SeeHer_2019\\/SeeHer_2019.png\",\"ogwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Origen\\/Riot_Origen.png\",\"三ツ矢\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Asahi_MitsuyaBrand_2019_add\\/Asahi_MitsuyaBrand_2019_add.png\",\"mtvmiaw\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MTV_Miaw_2019\\/MTV_Miaw_2019.png\",\"fuelthefire\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FuelTheFire_SuperSport_2019\\/FuelTheFire_SuperSport_2019.png\",\"kombatkast\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBGames_MortalKombat_2019\\/WBGames_MortalKombat_2019.png\",\"g20japan\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"azurefriday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Microsoft_APAC_2019_v2_add\\/Microsoft_APAC_2019_v2_add.png\",\"antman\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_AntMan\\/Avengers_Endgame_2019_AntMan.png\",\"hawkeyeavengers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"whateverittakes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"folketingsvalg\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DanishElection_2019\\/DanishElection_2019.png\",\"リネージュmは5月29日リリース\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LineageMFirstBrand_2019\\/LineageMFirstBrand_2019.png\",\"shareourplanet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netflix_OurPlanet_2019\\/Netflix_OurPlanet_2019.png\",\"magneto\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DarkPhoenix_magneto\\/DarkPhoenix_magneto.png\",\"desusandmero\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DesusandMero_2019\\/DesusandMero_2019.png\",\"iontheprize\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Phil\\/OWL_19_Phil.png\",\"mytwitteranniversary\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MyTwitterAnniversary\\/MyTwitterAnniversary.png\",\"g2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"brightburn\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_Brightburn_BB_2019_add\\/Sony_Brightburn_BB_2019_add.png\",\"토이스토리우디\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"duniyahiladenge\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MumbaiIndians_2018\\/MumbaiIndians_2018.png\",\"닉퓨리\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_NickFury\\/Avengers_Endgame_2019_NickFury.png\",\"allthemoods\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Spotify_AllTheMoods\\/Spotify_AllTheMoods.png\",\"傑尼龜\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Squirtle_v2\\/WBPikachu_Squirtle_v2.png\",\"워머신\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WarMachine\\/Avengers_Endgame_2019_WarMachine.png\",\"ヒトカゲ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Charmander\\/WBPikachu_Charmander.png\",\"ジャスミン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"サランラップのくま\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AsahiKaseiHP_2019\\/AsahiKaseiHP_2019.png\",\"diamundialdomeioambiente\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"لحظات_مكية_بالأشواق\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JODC_GreenDevice\\/JODC_GreenDevice.png\",\"princesajasmín\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"モバレ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Elex_MobileLegendsJP_2019\\/Elex_MobileLegendsJP_2019.png\",\"theboystv\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AmazonStudios_TheBoys_2019\\/AmazonStudios_TheBoys_2019.png\",\"الحب_هو_الحب\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"loki\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Loki\\/Avengers_Endgame_2019_Loki.png\",\"шерифвуди\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"nbbnotwitter\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBB_2018_2019Season\\/NBB_2018_2019Season.png\",\"bestfriends4ever\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"crawlmovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Crawl_2019\\/Paramount_Crawl_2019.png\",\"bira91supersix\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BiraIndia_CWC_2019\\/BiraIndia_CWC_2019.png\",\"amigosporsiempre\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"derdistelfink\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_TheGoldfinch_2019\\/WB_TheGoldfinch_2019.png\",\"историяигрушеквуди\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"greenwall\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_Greenwall_ext19\\/Esports_AllAccessTeam_Greenwall_ext19.png\",\"thevalkyrie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Valkyrie\\/Avengers_Endgame_2019_Valkyrie.png\",\"cheddarlive\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CheddarLIVE_2019\\/CheddarLIVE_2019.png\",\"overwatchleague\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19\\/OWL_19.png\",\"七つの大罪グラクロ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble_7deadlysins_2019\\/Netmarble_7deadlysins_2019.png\",\"golddontquit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IndianaPlayoffs2019\\/IndianaPlayoffs2019.png\",\"iambharat\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BharatFilm_2019\\/BharatFilm_2019.png\",\"nebulaendgame\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Nebula\\/Avengers_Endgame_2019_Nebula.png\",\"maineforvivo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VivoPHV15_2019\\/VivoPHV15_2019.png\",\"バッキ―\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WinterSoldier\\/Avengers_Endgame_2019_WinterSoldier.png\",\"doutorestranho\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_DoctorStrange\\/Avengers_Endgame_2019_DoctorStrange.png\",\"جمعية_زمزم\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Zamzam_2019\\/Zamzam_2019.png\",\"freshempirevibes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FreshEmpire_MayAugust_2019\\/FreshEmpire_MayAugust_2019.png\",\"elpoderdeunpelopantene\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PG_Spain_Pantene_2019\\/PG_Spain_Pantene_2019.png\",\"토이스토리4\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"spiderman\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Spiderman\\/Avengers_Endgame_2019_Spiderman.png\",\"gosnapshot\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PokemonGoJP_GoSnapshot_2019\\/PokemonGoJP_GoSnapshot_2019.png\",\"toystory\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"itsbouttime\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ESPN_UFC_2019_v3\\/ESPN_UFC_2019_v3.png\",\"letsgohunt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Chengdu\\/OWL_19_Chengdu.png\",\"thistimeimvoting\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"screamback\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SonyIntruder_2018\\/SonyIntruder_2018.png\",\"ホークアイ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"サランラップ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AsahiKaseiHP_2019\\/AsahiKaseiHP_2019.png\",\"goninjas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_NIP\\/Esports_V2_19_NIP.png\",\"ファーフロ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SpiderMan_Japan_2019\\/SpiderMan_Japan_2019.png\",\"이상해씨\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Bulbasaur\\/WBPikachu_Bulbasaur.png\",\"batuka\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"viúvanegra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackWidow\\/Avengers_Endgame_2019_BlackWidow.png\",\"euválasztás2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"мбаку\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Mbaku\\/Avengers_Endgame_2019_Mbaku.png\",\"fancyyou\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_TWICE_Fancy_2019\\/KPOP_TWICE_Fancy_2019.png\",\"프라이드\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"walküre\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Valkyrie\\/Avengers_Endgame_2019_Valkyrie.png\",\"eskapitel2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"ウィンターソルジャー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WinterSoldier\\/Avengers_Endgame_2019_WinterSoldier.png\",\"newyorkforever\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_NYK\\/NBA_18_NYK.png\",\"runasone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HoustonPlayoffs2019\\/HoustonPlayoffs2019.png\",\"elgeniodealaddín\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"keanureeves\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JohnWick_3_ext\\/JohnWick_3_ext.png\",\"tsmwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_TSM_filled_ext19\\/Esports_AllAccessTeam_TSM_filled_ext19.png\",\"mumbaiindians\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MumbaiIndians_2018\\/MumbaiIndians_2018.png\",\"sochkesharekaro\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing.png\",\"ريالك_مبارك\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ZadFresh_2019_v3\\/ZadFresh_2019_v3.png\",\"g20サミット\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"가모라\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Gamora\\/Avengers_Endgame_2019_Gamora.png\",\"ペンギンの日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldPenguinDay_2019\\/WorldPenguinDay_2019.png\",\"porzellinchen\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"リネージュm開戦\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LineageMFirstBrand_2019\\/LineageMFirstBrand_2019.png\",\"dtid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_DTID\\/MLS_19_DTID.png\",\"hulk\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hulk\\/Avengers_Endgame_2019_Hulk.png\",\"dunkincoffee\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Dunkin_NationalDonutDay_2019\\/Dunkin_NationalDonutDay_2019.png\",\"toystoryforky\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"weareourownworstenemy\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018\\/UsMovie_2018.png\",\"스파이더맨\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Spiderman\\/Avengers_Endgame_2019_Spiderman.png\",\"гамора\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Gamora\\/Avengers_Endgame_2019_Gamora.png\",\"milcity\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaLiterateCities_2018\\/MediaLiterateCities_2018.png\",\"アベンジャーズ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"good2behuman\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_Pawny_2019\\/Sony_MenInBlack_Pawny_2019.png\",\"deixeaquimicarolar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NaturaHumor_May2019_V2\\/NaturaHumor_May2019_V2.png\",\"euelections2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"homemformiga\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_AntMan\\/Avengers_Endgame_2019_AntMan.png\",\"weflyasone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019_WeFlyAsOne\\/AFL_2019_WeFlyAsOne.png\",\"y3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RedmiY3_2019\\/RedmiY3_2019.png\",\"сокол\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Falcon\\/Avengers_Endgame_2019_Falcon.png\",\"loveislove\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"godzillareidosmonstros\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Godzilla_WB_2019\\/Godzilla_WB_2019.png\",\"theuntethering\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018\\/UsMovie_2018.png\",\"comealive\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"スポティファイ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SpotifyJapan_TVCM\\/SpotifyJapan_TVCM.png\",\"bachelorette\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bachelorette_2019\\/Bachelorette_2019.png\",\"metgala2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VogueMetGala_2019\\/VogueMetGala_2019.png\",\"スパイダーマン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Spiderman\\/Avengers_Endgame_2019_Spiderman.png\",\"sunrisers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_Sunrisers\\/IPL_2019_2_Sunrisers.png\",\"妙蛙种子\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Bulbasaur\\/WBPikachu_Bulbasaur.png\",\"世界ペンギンの日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldPenguinDay_2019\\/WorldPenguinDay_2019.png\",\"alwaysfnatic\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Fnatic\\/Riot_Fnatic.png\",\"gantdelinfini\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"прайд2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"cookierun\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CookieRunGame_2019\\/CookieRunGame_2019.png\",\"what2watch\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/What2Watch_Buzzfeed_2019\\/What2Watch_Buzzfeed_2019.png\",\"världsmiljödagen\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"tchalla\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackPanther\\/Avengers_Endgame_2019_BlackPanther.png\",\"sceriffowoody\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"takis\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TAKIS_WILD_2019\\/TAKIS_WILD_2019.png\",\"newlies\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HBO_BigLittleLies_Season2_2019\\/HBO_BigLittleLies_Season2_2019.png\",\"человекмуравей\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_AntMan\\/Avengers_Endgame_2019_AntMan.png\",\"killingeve\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KillingEve_UK_2019\\/KillingEve_UK_2019.png\",\"screambackscreenings\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SonyIntruder_2018\\/SonyIntruder_2018.png\",\"latenightmovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_LateNight_2019\\/Amazon_LateNight_2019.png\",\"ojodehalcon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"canyadigit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_ShaftMovie_2019\\/WB_ShaftMovie_2019.png\",\"friendlikeme\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"聖獣麒麟\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRIN_Soccer_Japan_2019\\/KIRIN_Soccer_Japan_2019.png\",\"e32019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/E3_2019\\/E3_2019.png\",\"nitejogger\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Adidas_NiteJogger_2019\\/Adidas_NiteJogger_2019.png\",\"foreverfreo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019_ForeverFreo\\/AFL_2019_ForeverFreo.png\",\"somosargentina\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_ARG\\/FIFAWWC_2019_ARG.png\",\"anbuden\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PL_2019_2_CSK_v2\\/PL_2019_2_CSK_v2.png\",\"ドラゴンボールz_ブッチギリマッチ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Dragonball_2019\\/Dragonball_2019.png\",\"saddapunjab\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_KXIP\\/IPL_2019_2_KXIP.png\",\"intrudermovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SonyIntruder_2018\\/SonyIntruder_2018.png\",\"netneutrality\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Net_Emoji_Evergreen\\/Net_Emoji_Evergreen.png\",\"latenightout\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_LateNight_2019\\/Amazon_LateNight_2019.png\",\"超夢\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Mewtwo\\/WBPikachu_Mewtwo.png\",\"보안관우디\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"womeninblack\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_2019\\/Sony_MenInBlack_2019.png\",\"takeitback\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Houston\\/MLB_2019_Houston.png\",\"мьюту\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Mewtwo\\/WBPikachu_Mewtwo.png\",\"amazonprimevideo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AmazonPrimeVideo_Dionysus_2019_v2\\/AmazonPrimeVideo_Dionysus_2019_v2.png\",\"thevoicekidsuk\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TheVoice_UK_2019\\/TheVoice_UK_2019.png\",\"thevoicekids\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TheVoice_UK_2019\\/TheVoice_UK_2019.png\",\"amtodmbf\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BuzzFeedMorning_2019ext\\/BuzzFeedMorning_2019ext.png\",\"iamthenight\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TNT_IAmTheNight_2019_v2\\/TNT_IAmTheNight_2019_v2.png\",\"orangearmy\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_Sunrisers\\/IPL_2019_2_Sunrisers.png\",\"awholenewworld\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"nbanaespn\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ESPN_NBA_Finals_2019_Brasil\\/ESPN_NBA_Finals_2019_Brasil.png\",\"vidasecretadosbichos2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_2018_Snowball_Brazil\\/Pets2_2018_Snowball_Brazil.png\",\"riseupwithvivov15\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MaineforVivo_2019\\/MaineforVivo_2019.png\",\"超梦\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Mewtwo\\/WBPikachu_Mewtwo.png\",\"clawstnt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ClawsS3_2019\\/ClawsS3_2019.png\",\"ヴァルコネ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Vconnect_jp_2019_V2\\/Vconnect_jp_2019_V2.png\",\"hallabol\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_Royals\\/IPL_2019_2_Royals.png\",\"eng\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_ENG_v2\\/FIFAWWC_2019_ENG_v2.png\",\"sterkeresammen\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_NOR\\/FIFAWWC_2019_NOR.png\",\"ファーフロムホーム\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SpiderMan_Japan_2019\\/SpiderMan_Japan_2019.png\",\"frenchopen\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FrenchOpen_RolandGarros_2019\\/FrenchOpen_RolandGarros_2019.png\",\"worldpridenyc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019_StoneWall50\\/Pride2019_StoneWall50.png\",\"램프\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"فلاي_ناس\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FlyNas_2019\\/FlyNas_2019.png\",\"鍛えろ筋肉とロマサガrs\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/romasaga_rs_2019\\/romasaga_rs_2019.png\",\"リネm友達募集デス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LineageMSecondBrand_2019\\/LineageMSecondBrand_2019.png\",\"mortalkombat11\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBGames_MortalKombat_2019\\/WBGames_MortalKombat_2019.png\",\"europee2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"黒スパ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SpiderMan_Japan_2019\\/SpiderMan_Japan_2019.png\",\"mmas2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MYXMusicAwards_2019\\/MYXMusicAwards_2019.png\",\"gatheryourparty\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LarianStudios_GamesLimited_2019\\/LarianStudios_GamesLimited_2019.png\",\"cgwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LCS_2019_ClutchGaming\\/LCS_2019_ClutchGaming.png\",\"лампа\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"ボーピープ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"sacramentoproud\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_SAC\\/NBA_18_SAC.png\",\"キャプテンアメリカ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainAmerica\\/Avengers_Endgame_2019_CaptainAmerica.png\",\"thunderup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_OKC\\/NBA_18_OKC.png\",\"kkrtaiyaar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KolkataKnights_2019\\/KolkataKnights_2019.png\",\"오분의일상탈출\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CookieRunGame_2019\\/CookieRunGame_2019.png\",\"nbatwitter\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBATwitter_2018_RefreshEmoji\\/NBATwitter_2018_RefreshEmoji.png\",\"milcities\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaLiterateCities_2018\\/MediaLiterateCities_2018.png\",\"drax\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Drax\\/Avengers_Endgame_2019_Drax.png\",\"妙蛙種子\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Bulbasaur\\/WBPikachu_Bulbasaur.png\",\"玫瑰再绽放\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_CHN\\/FIFAWWC_2019_CHN.png\",\"бопип\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"thisisnotjust\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PercyPig_2019\\/PercyPig_2019.png\",\"díadelatierra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"buffaloranchtakis\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TAKIS_WILD_2019\\/TAKIS_WILD_2019.png\",\"오븐브레이크챌린지\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CookieRunGame_2019\\/CookieRunGame_2019.png\",\"mibnbafinals\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_Pawny_2019\\/Sony_MenInBlack_Pawny_2019.png\",\"happyhogan\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_HappyHogan\\/Avengers_Endgame_2019_HappyHogan.png\",\"neverhadafriendlikeme\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"medialitwk\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_MediaLitWk\\/MediaInformationLiteracyWeeks_2018_MediaLitWk.png\",\"upupcronulla\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_UpUpCronulla\\/NRL2019_UpUpCronulla.png\",\"f4glory\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Euroleague_Jan2019_add\\/Euroleague_Jan2019_add.png\",\"вонг\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wong\\/Avengers_Endgame_2019_Wong.png\",\"piensaantesdedarclick\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking.png\",\"weltumwelttag\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"highwirelive\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HighwireLive_NikWallenda\\/HighwireLive_NikWallenda.png\",\"insanityrules\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bethesda_RAGE2_2019\\/Bethesda_RAGE2_2019.png\",\"dcfamily\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_DC\\/NBA_18_DC.png\",\"spencejrgarcia\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FoxSports_PBC\\/FoxSports_PBC.png\",\"smashbrosultimate\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NintendoLaunch_2019\\/NintendoLaunch_2019.png\",\"diabloguardian\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_DiabloGuardian\\/Amazon_DiabloGuardian.png\",\"wロマンシング祭\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/romasaga_rs_2019\\/romasaga_rs_2019.png\",\"声でココロ診断\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AIDAMITSUWO_2019\\/AIDAMITSUWO_2019.png\",\"محبة_الحب\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"グラクロキング\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble7S_V4\\/Netmarble7S_V4.png\",\"vingadores\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"mortalkombat\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBGames_MortalKombat_2019\\/WBGames_MortalKombat_2019.png\",\"banyanabanyana\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_RSA\\/FIFAWWC_2019_RSA.png\",\"mapfretenis\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MapfreRafaNadal_2019\\/MapfreRafaNadal_2019.png\",\"supersmashbros\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NintendoLaunch_2019\\/NintendoLaunch_2019.png\",\"g2win\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_G2_ext19\\/Esports_AllAccessTeam_G2_ext19.png\",\"dontruintheendgame\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"buzzlightyear\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Buzz\\/Disney_ToyStory4_Buzz.png\",\"hegra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlUlaCity_2019\\/AlUlaCity_2019.png\",\"captainamerica\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainAmerica\\/Avengers_Endgame_2019_CaptainAmerica.png\",\"wearetfl\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ThisFreeLife_March_2019\\/ThisFreeLife_March_2019.png\",\"オルビス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ORBIS_2019_add\\/ORBIS_2019_add.png\",\"tethered\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018\\/UsMovie_2018.png\",\"whistlepodu\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PL_2019_2_CSK_v2\\/PL_2019_2_CSK_v2.png\",\"دائماً_متألقة\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Vimto_Ramadan_2019_v2\\/Vimto_Ramadan_2019_v2.png\",\"jnpacanada\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IndigenousHistoryMonth_2019\\/IndigenousHistoryMonth_2019.png\",\"schiggy\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Squirtle_v2\\/WBPikachu_Squirtle_v2.png\",\"星のドラゴンクエスト\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Hoshidora_May2019\\/Hoshidora_May2019.png\",\"optwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_Greenwall_add\\/Esports_AllAccessTeam_Greenwall_add.png\",\"prixbestoftweet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BestofTweetsPrize_2019\\/BestofTweetsPrize_2019.png\",\"イット見えたら終わり\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"mothersday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/2019_MothersDay\\/2019_MothersDay.png\",\"kcon2019ny\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KCON2019USA_2019\\/KCON2019USA_2019.png\",\"celtics\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CelticsPlayoffs2019\\/CelticsPlayoffs2019.png\",\"evo2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EVO_2019\\/EVO_2019.png\",\"ロマサガrs\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/romasaga_rs_2019\\/romasaga_rs_2019.png\",\"takewarning\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CanesPlayoff2019\\/CanesPlayoff2019.png\",\"jw3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JohnWick_3_ext\\/JohnWick_3_ext.png\",\"nerevs\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_NERevs\\/MLS_19_NERevs.png\",\"disneyparks\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_MickeyEars_Flight2\\/DisneyParks_MickeyEars_Flight2.png\",\"friedhofderkuscheltiere\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_PetSematary_2019_v2\\/Paramount_PetSematary_2019_v2.png\",\"retomemos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Houston\\/MLB_2019_Houston.png\",\"gaviaoarqueiro\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"fifawwc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_Trophy\\/FIFAWWC_2019_Trophy.png\",\"jamesbeard\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JamesBeard_FoundationAwards_2019\\/JamesBeard_FoundationAwards_2019.png\",\"骄傲\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"philaunite\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SixersPlayoffs2019v2\\/SixersPlayoffs2019v2.png\",\"amc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Nos4a2_2019\\/Nos4a2_2019.png\",\"アイアンマン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_IronMan\\/Avengers_Endgame_2019_IronMan.png\",\"アースデー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"nro\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KatyPerry_May2019\\/KatyPerry_May2019.png\",\"애나벨\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_Annabelle_3_v2\\/WB_Annabelle_3_v2.png\",\"erstdenkendannklicken\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking.png\",\"ブラックウィドウ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackWidow\\/Avengers_Endgame_2019_BlackWidow.png\",\"superherohorror\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_Brightburn_Mask_2019\\/Sony_Brightburn_Mask_2019.png\",\"theworldwillknowhisname\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_Brightburn_BB_2019\\/Sony_Brightburn_BB_2019.png\",\"laguepe\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wasp\\/Avengers_Endgame_2019_Wasp.png\",\"rg19\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FrenchOpen_RolandGarros_2019\\/FrenchOpen_RolandGarros_2019.png\",\"先想再點擊\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking.png\",\"diddarbasenivvota\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"garfinho\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"सोचकेशेयरकरो\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks.png\",\"arawngdaigdig\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"downtonabbeypelicula\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DowntonAbbey_2019\\/DowntonAbbey_2019.png\",\"kcon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KCON2019\\/KCON2019.png\",\"annabelle3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_Annabelle_3_v2\\/WB_Annabelle_3_v2.png\",\"loswhitesox\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Chicago\\/MLB_2019_Chicago.png\",\"lafc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_LAFC\\/MLS_19_LAFC.png\",\"прайд\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"homemdeferro\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_IronMan\\/Avengers_Endgame_2019_IronMan.png\",\"윈터솔져\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WinterSoldier\\/Avengers_Endgame_2019_WinterSoldier.png\",\"teamwill\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TheVoice_UK_2019\\/TheVoice_UK_2019.png\",\"ミュウツー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Mewtwo\\/WBPikachu_Mewtwo.png\",\"buckybarnes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WinterSoldier\\/Avengers_Endgame_2019_WinterSoldier.png\",\"brightburnmovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_Brightburn_BB_2019\\/Sony_Brightburn_BB_2019.png\",\"валькирия\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Valkyrie\\/Avengers_Endgame_2019_Valkyrie.png\",\"ヴァルキリーコネクト\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Vconnect_jp_2019_V2\\/Vconnect_jp_2019_V2.png\",\"allflavorswelcome\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AbsolutPlanetEarthsFavoriteVodka_2019\\/AbsolutPlanetEarthsFavoriteVodka_2019.png\",\"サノス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thanos\\/Avengers_Endgame_2019_Thanos.png\",\"sweetbitter\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_Sweetbitter_Season2\\/STARZ_Sweetbitter_Season2.png\",\"melbourneproud\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_MelbourneProud\\/NRL2019_MelbourneProud.png\",\"グルート\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Groot\\/Avengers_Endgame_2019_Groot.png\",\"scottlang\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_AntMan\\/Avengers_Endgame_2019_AntMan.png\",\"mtvawards\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MTV_Awards_May2019\\/MTV_Awards_May2019.png\",\"rsl\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_RSL\\/MLS_19_RSL.png\",\"soldadoinvernal\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WinterSoldier\\/Avengers_Endgame_2019_WinterSoldier.png\",\"mffl\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_DAL\\/NBA_18_DAL.png\",\"aviciitim\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avicii_2019\\/Avicii_2019.png\",\"carapuce\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Squirtle_v2\\/WBPikachu_Squirtle_v2.png\",\"헐크\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hulk\\/Avengers_Endgame_2019_Hulk.png\",\"sweetbitterpremiere\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_Sweetbitter_Season2\\/STARZ_Sweetbitter_Season2.png\",\"ep19dk\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"vidapremiere\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_Vida_S2\\/STARZ_Vida_S2.png\",\"金翅雀\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_TheGoldfinch_2019\\/WB_TheGoldfinch_2019.png\",\"freshevents\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FreshEmpire_MayAugust_2019\\/FreshEmpire_MayAugust_2019.png\",\"llamarecordco\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_LlamaRecordCo\\/FortniteE3_SummerBlockParty_2019_LlamaRecordCo.png\",\"isles\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IslandersPlayoffs2019\\/IslandersPlayoffs2019.png\",\"tweeptour\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TweepTour_2019\\/TweepTour_2019.png\",\"f11proinegypt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Oppo_F11ProInEgypt_2019\\/Oppo_F11ProInEgypt_2019.png\",\"hotzone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HotZone_NatGeoChannel_2019\\/HotZone_NatGeoChannel_2019.png\",\"allin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ClemsonYearLongNatty19\\/ClemsonYearLongNatty19.png\",\"eljilguero\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_TheGoldfinch_2019\\/WB_TheGoldfinch_2019.png\",\"buzzleclair\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Buzz\\/Disney_ToyStory4_Buzz.png\",\"gengwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_GENG\\/Esports_V2_19_GENG.png\",\"downtonabbey\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DowntonAbbey_2019\\/DowntonAbbey_2019.png\",\"onenationoneteam\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_USA\\/FIFAWWC_2019_USA.png\",\"aladdin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"paradadoorgulholgbt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"sherifwoody\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"diamondintherough\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"threestripelive\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/adidas_ThreeStripeLive_2019\\/adidas_ThreeStripeLive_2019.png\",\"downtonabbeylapelicula\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DowntonAbbey_2019\\/DowntonAbbey_2019.png\",\"城之内死す\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/YuGiOh_DL_INFO_May2019\\/YuGiOh_DL_INFO_May2019.png\",\"sfgiants\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_SFGiants\\/MLB_2019_SFGiants.png\",\"mashrafemortaza\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Players_MashrafeMortaza\\/CricketWorldCup_2019_Players_MashrafeMortaza.png\",\"doyoutrustme\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"全球媒介和信息素养周\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks.png\",\"am2dm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BuzzFeedMorning_2019ext\\/BuzzFeedMorning_2019ext.png\",\"3stripelive\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/adidas_ThreeStripeLive_2019\\/adidas_ThreeStripeLive_2019.png\",\"jpn\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_JPN\\/FIFAWWC_2019_JPN.png\",\"nipdcanada\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IndigenousHistoryMonth_2019\\/IndigenousHistoryMonth_2019.png\",\"californiaalmonds\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlmondBoardofCalifornia_WWC\\/AlmondBoardofCalifornia_WWC.png\",\"threelionesses\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Lucozade_WWC_2019\\/Lucozade_WWC_2019.png\",\"buscando\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Itau_2019_v2\\/Itau_2019_v2.png\",\"kcon19la\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KCON2019USA_2019\\/KCON2019USA_2019.png\",\"토르\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thor\\/Avengers_Endgame_2019_Thor.png\",\"teamdanny\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TheVoice_UK_2019\\/TheVoice_UK_2019.png\",\"dschinni\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"さよなら僕らのxメン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FOX_Xmen_Japan_2019\\/FOX_Xmen_Japan_2019.png\",\"woody\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"letsgoliquid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_TeamLiquid_ext19\\/Esports_AllAccessTeam_TeamLiquid_ext19.png\",\"callofduty\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CallofDuty_ModernWarfare_2019_v2\\/CallofDuty_ModernWarfare_2019_v2.png\",\"pikirsebelumklik\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking.png\",\"villanelle\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KillingEve_US_2019_v3\\/KillingEve_US_2019_v3.png\",\"シェアする前に考えよう\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing.png\",\"مقاضي\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ZadFresh_2019_v3\\/ZadFresh_2019_v3.png\",\"20年間ありがとう\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FOX_Xmen_Japan_2019\\/FOX_Xmen_Japan_2019.png\",\"fccincy\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_CIN\\/MLS_19_CIN.png\",\"bodegahive\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DesusandMero_2019\\/DesusandMero_2019.png\",\"can\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_CAN\\/FIFAWWC_2019_CAN.png\",\"iamironman\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_IronMan\\/Avengers_Endgame_2019_IronMan.png\",\"assunção2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sulamericana_2019_add\\/Sulamericana_2019_add.png\",\"cmtawards2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CMTMusicAwards_2019\\/CMTMusicAwards_2019.png\",\"tuiteratura\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FeriaDelHilo_v2\\/FeriaDelHilo_v2.png\",\"burnblue\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Dallas\\/OWL_19_Dallas.png\",\"تراها_سهله\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/taqa_sa_2019\\/taqa_sa_2019.png\",\"マリアヒル\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_MariaHill\\/Avengers_Endgame_2019_MariaHill.png\",\"트와이스\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_TWICE_Fancy_2019\\/KPOP_TWICE_Fancy_2019.png\",\"csk\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PL_2019_2_CSK_v2\\/PL_2019_2_CSK_v2.png\",\"haloe3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Xbox_Halo_2019\\/Xbox_Halo_2019.png\",\"egready\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_EG\\/Esports_V2_19_EG.png\",\"asuncion2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sulamericana_2019_add\\/Sulamericana_2019_add.png\",\"sweebitterseason2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_Sweetbitter_Season2\\/STARZ_Sweetbitter_Season2.png\",\"evo19\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EVO_2019\\/EVO_2019.png\",\"diablonomedesampares\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_DiabloGuardian\\/Amazon_DiabloGuardian.png\",\"alula\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlUlaCity_2019\\/AlUlaCity_2019.png\",\"forky\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"prinzessinjasmin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"gottapartnerup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pikachu_Pokemon_PartnerUp_2019\\/Pikachu_Pokemon_PartnerUp_2019.png\",\"キリンレモンのうた\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINLEMON_2019\\/KIRINLEMON_2019.png\",\"g20\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"penseantesdeclicar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking.png\",\"ブッチギリマッチ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Dragonball_2019\\/Dragonball_2019.png\",\"absolutvodka\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AbsolutPlanetEarthsFavoriteVodka_2019\\/AbsolutPlanetEarthsFavoriteVodka_2019.png\",\"oneplus7\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OnePlus7_2019\\/OnePlus7_2019.png\",\"grindcity\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_MEM\\/NBA_18_MEM.png\",\"caveofwonders\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"imteam\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_GER\\/FIFAWWC_2019_GER.png\",\"e3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/E3_2019\\/E3_2019.png\",\"saddasquad\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_KXIP\\/IPL_2019_2_KXIP.png\",\"princeoriginals\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Prince_June2019\\/Prince_June2019.png\",\"teamjessiej\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TheVoice_UK_2019\\/TheVoice_UK_2019.png\",\"キリチャレの日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRIN_Soccer_Japan_2019\\/KIRIN_Soccer_Japan_2019.png\",\"페퍼포츠\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_PepperPotts\\/Avengers_Endgame_2019_PepperPotts.png\",\"デカうまい\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINFIRE_ONEDAY_JP\\/KIRINFIRE_ONEDAY_JP.png\",\"ファルコン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Falcon\\/Avengers_Endgame_2019_Falcon.png\",\"soulstone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"skwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_SK\\/Riot_SK.png\",\"gordp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LeagueofLegends_2019_GORDP\\/LeagueofLegends_2019_GORDP.png\",\"salamèche\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Charmander\\/WBPikachu_Charmander.png\",\"mibinternational\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_Pawny_2019\\/Sony_MenInBlack_Pawny_2019.png\",\"onebadmutha\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_ShaftMovie_2019\\/WB_ShaftMovie_2019.png\",\"genie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"жасмин\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"blackwidow\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackWidow\\/Avengers_Endgame_2019_BlackWidow.png\",\"午後の紅茶\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINGT_JP_2019_V3\\/KIRINGT_JP_2019_V3.png\",\"好きだから好き\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"daretoshine\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_Trophy\\/FIFAWWC_2019_Trophy.png\",\"グラクロマーリン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble7S_V8\\/Netmarble7S_V8.png\",\"ジーニー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"tt30\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TakeThatEuropeanTour_2019\\/TakeThatEuropeanTour_2019.png\",\"アイスクレマ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AIDAMITSUWO_2019\\/AIDAMITSUWO_2019.png\",\"뮤츠\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Mewtwo\\/WBPikachu_Mewtwo.png\",\"oùestmachaussette\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Monoprix_2019\\/Monoprix_2019.png\",\"simetierre\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_PetSematary_2019_v2\\/Paramount_PetSematary_2019_v2.png\",\"ogme\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TLOG_Season2\\/TLOG_Season2.png\",\"lionessesdaily\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LionessesDaily_2019\\/LionessesDaily_2019.png\",\"stlblues\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BluesPlayoffs2019\\/BluesPlayoffs2019.png\",\"johnwickch3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JohnWick_3_ext\\/JohnWick_3_ext.png\",\"evilgeniuses\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_EG\\/Esports_V2_19_EG.png\",\"xメンの魅力を広めたい\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FOX_Xmen_Japan_2019\\/FOX_Xmen_Japan_2019.png\",\"cmtawards\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CMTMusicAwards_2019\\/CMTMusicAwards_2019.png\",\"thelastog\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TLOG_Season2\\/TLOG_Season2.png\",\"たぶんクマ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AsahiKaseiHP_2019\\/AsahiKaseiHP_2019.png\",\"spencevsgarcia\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FoxSports_PBC\\/FoxSports_PBC.png\",\"pericao50\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pericles_2019\\/Pericles_2019.png\",\"100win\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_100Thieves_ext19\\/Esports_AllAccessTeam_100Thieves_ext19.png\",\"三井住友銀行\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Midosuke_2019\\/Midosuke_2019.png\",\"xbox\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Xbox_E3_2019\\/Xbox_E3_2019.png\",\"nikwallenda\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HighwireLive_NikWallenda\\/HighwireLive_NikWallenda.png\",\"0426逆襲へ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"comigoninguemtoddy\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ComigoNinguemToddy_2019\\/ComigoNinguemToddy_2019.png\",\"ita\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_ITA\\/FIFAWWC_2019_ITA.png\",\"avespa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wasp_add\\/Avengers_Endgame_2019_Wasp_add.png\",\"virtuspro\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_Virtus\\/Esports_V2_19_Virtus.png\",\"kcon2019la\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KCON2019USA_2019\\/KCON2019USA_2019.png\",\"gotiges\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019_GoTiges\\/AFL_2019_GoTiges.png\",\"baikitumudah\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bukalapak_2019\\/Bukalapak_2019.png\",\"journeemondialedelenvironnement\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"disneysaladdin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"journéemondialedelenvironnement\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"ミーク\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Miek\\/Avengers_Endgame_2019_Miek.png\",\"empoweringdiscovery\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Traveloka_Xperience_2019\\/Traveloka_Xperience_2019.png\",\"星のファンファーレ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Hoshidora_May2019\\/Hoshidora_May2019.png\",\"rockies\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Colorado\\/MLB_2019_Colorado.png\",\"leve2pague1dosubway\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SubwayBrasil_2019_v2\\/SubwayBrasil_2019_v2.png\",\"elfutbolmesigue\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Soccer_Google_2019\\/Soccer_Google_2019.png\",\"thewintersoldier\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WinterSoldier\\/Avengers_Endgame_2019_WinterSoldier.png\",\"ridemcowboys\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_ridemcowboys\\/NRL2019_ridemcowboys.png\",\"homemaranha\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Spiderman\\/Avengers_Endgame_2019_Spiderman.png\",\"fourchette\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"シュリ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Shuri\\/Avengers_Endgame_2019_Shuri.png\",\"thecrawlmovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Crawl_2019\\/Paramount_Crawl_2019.png\",\"spencegarcia\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FoxSports_PBC\\/FoxSports_PBC.png\",\"историяигрушеквилкинс\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"星ドラギガミーティング\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Hoshidora_May2019\\/Hoshidora_May2019.png\",\"dontspoiltheendgame\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"annabellecomeshome\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_Annabelle_3_v2\\/WB_Annabelle_3_v2.png\",\"グラクロディアンヌ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble7S_V1\\/Netmarble7S_V1.png\",\"シノアリス2周年前夜祭\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sinoalice_June2019\\/Sinoalice_June2019.png\",\"g20大阪サミット\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"downtonabbeymovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DowntonAbbey_2019\\/DowntonAbbey_2019.png\",\"世界環境日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"グラクロホーク\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble7S_V7_fix2\\/Netmarble7S_V7_fix2.png\",\"فكر_قبل_المشاركة\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing.png\",\"usa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_USA\\/FIFAWWC_2019_USA.png\",\"mrwick\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JohnWick_3_ext\\/JohnWick_3_ext.png\",\"kcon19ny\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KCON2019USA_2019\\/KCON2019USA_2019.png\",\"scarletwitch\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_ScarletWitch\\/Avengers_Endgame_2019_ScarletWitch.png\",\"estoyenlacausa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/McDonalds_SpLATAM\\/McDonalds_SpLATAM.png\",\"higherfurtherfaster\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_CaptainMarvel_May2019\\/Disney_CaptainMarvel_May2019.png\",\"ドラックス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Drax\\/Avengers_Endgame_2019_Drax.png\",\"truetoatlanta\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_ATL\\/NBA_18_ATL.png\",\"leveluptovivov15\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VivoPHV15_2019\\/VivoPHV15_2019.png\",\"슈리\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Shuri\\/Avengers_Endgame_2019_Shuri.png\",\"اوبو_رينو_يقرب_الجميع\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Oppo_KSA_RenoLaunch_Q2_2019\\/Oppo_KSA_RenoLaunch_Q2_2019.png\",\"goldenbuzzer\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BritainsGotTalent_2019_buzzer\\/BritainsGotTalent_2019_buzzer.png\",\"thisfreelifepride\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ThisFreeLife_March_2019\\/ThisFreeLife_March_2019.png\",\"星ドラ応援ソング\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Hoshidora_May2019\\/Hoshidora_May2019.png\",\"bgt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BritainsGotTalent_2019_star\\/BritainsGotTalent_2019_star.png\",\"rage2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bethesda_RAGE2_2019\\/Bethesda_RAGE2_2019.png\",\"историяигрушекбопип\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"gohoos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UVAChampYearLong\\/UVAChampYearLong.png\",\"capitanamarvel\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainMarvel\\/Avengers_Endgame_2019_CaptainMarvel.png\",\"お母さんありがとう\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/2019_MothersDay\\/2019_MothersDay.png\",\"somosmapfre\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MapfreRafaNadal_2019\\/MapfreRafaNadal_2019.png\",\"fishfam\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_FishFam\\/FortniteE3_SummerBlockParty_2019_FishFam.png\",\"smashbros\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NintendoLaunch_2019\\/NintendoLaunch_2019.png\",\"clawsparty\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ClawsS3_2019\\/ClawsS3_2019.png\",\"piensaantesdecompartir\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing.png\",\"วันเพนกวินโลก\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldPenguinDay_2019\\/WorldPenguinDay_2019.png\",\"тозипътщегласувам\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"baikitumudahchallenge\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bukalapak_2019\\/Bukalapak_2019.png\",\"canwnt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_CAN\\/FIFAWWC_2019_CAN.png\",\"blackpink\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_BLACKPINK_2019\\/KPOP_BLACKPINK_2019.png\",\"sandraoh\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KillingEve_US_2019_v3\\/KillingEve_US_2019_v3.png\",\"sjsharks\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sharksplayoffsv3\\/Sharksplayoffsv3.png\",\"leveluptov15pro\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VivoPHV15_2019\\/VivoPHV15_2019.png\",\"trashpanda\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Rocket\\/Avengers_Endgame_2019_Rocket.png\",\"makeplay\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BiraIndia_CWC_2019\\/BiraIndia_CWC_2019.png\",\"dhs30\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"wearethewest\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019_WeAreTheWest_v2\\/AFL_2019_WeAreTheWest_v2.png\",\"maanpäivä\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"닥터스트레인지\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_DoctorStrange\\/Avengers_Endgame_2019_DoctorStrange.png\",\"네뷸라\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Nebula\\/Avengers_Endgame_2019_Nebula.png\",\"bira91\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BiraIndia_CWC_2019\\/BiraIndia_CWC_2019.png\",\"xmenfênixnegra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/20thCenturyFox_DarkPhoenix_v2_newartwork\\/20thCenturyFox_DarkPhoenix_v2_newartwork.png\",\"호크아이\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"mk11\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBGames_MortalKombat_2019\\/WBGames_MortalKombat_2019.png\",\"pubg_mobile\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PUBGKR2019\\/PUBGKR2019.png\",\"toghcháinae2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"vidalongaasroupas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VidaLongaAsRoupas_Unilever\\/VidaLongaAsRoupas_Unilever.png\",\"hannahb\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bachelorette_2019\\/Bachelorette_2019.png\",\"ユニクロ戦利品\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UNIQLO_Kanshasai_2019_v3\\/UNIQLO_Kanshasai_2019_v3.png\",\"لتبقى\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/taqa_sa_2019\\/taqa_sa_2019.png\",\"takiswild\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TAKIS_WILD_2019\\/TAKIS_WILD_2019.png\",\"デュエルリンクス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/YuGiOh_DL_INFO_May2019\\/YuGiOh_DL_INFO_May2019.png\",\"joehill\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Nos4a2_2019\\/Nos4a2_2019.png\",\"deixaaquimicarolar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NaturaHumor_May2019_V2\\/NaturaHumor_May2019_V2.png\",\"シノアリス2周年\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sinoalice_June2019\\/Sinoalice_June2019.png\",\"goodomens\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_GoodOmens_ext\\/Amazon_GoodOmens_ext.png\",\"thebachelorette\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bachelorette_2019\\/Bachelorette_2019.png\",\"europawal2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"risetogether\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Toronto\\/OWL_19_Toronto.png\",\"letitreign\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Atlanta\\/OWL_19_Atlanta.png\",\"gostars\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DallasNHLPlayoffs2019\\/DallasNHLPlayoffs2019.png\",\"thinkbeforesharing\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing.png\",\"وسع_افاق_رؤيتك\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Oppo_KSA_RenoLaunch_Q2_2019\\/Oppo_KSA_RenoLaunch_Q2_2019.png\",\"ミドすけ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Midosuke_2019\\/Midosuke_2019.png\",\"guerreirasdobrasil\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_BRA\\/FIFAWWC_2019_BRA.png\",\"smallactsoflove\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Unilever_LXP_smallactsoflove_2019\\/Unilever_LXP_smallactsoflove_2019.png\",\"세계팽귄의날\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldPenguinDay_2019\\/WorldPenguinDay_2019.png\",\"chopon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Atlanta\\/MLB_2019_Atlanta.png\",\"wintersoldier\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WinterSoldier\\/Avengers_Endgame_2019_WinterSoldier.png\",\"wehavewewill\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Teams_WeHaveWeWill\\/CricketWorldCup_2019_Teams_WeHaveWeWill.png\",\"snapchatandroid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SnapAndroid_Launch_2019\\/SnapAndroid_Launch_2019.png\",\"forceofnature\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Vancouver\\/OWL_19_Vancouver.png\",\"feriadehilos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FeriaDelHilo_v2\\/FeriaDelHilo_v2.png\",\"hollywoodstudios\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_MickeyEars_Flight2\\/DisneyParks_MickeyEars_Flight2.png\",\"honoramongthieves\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_100Thieves_ext19\\/Esports_AllAccessTeam_100Thieves_ext19.png\",\"twice_fancy\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_TWICE_Fancy_2019\\/KPOP_TWICE_Fancy_2019.png\",\"euvaalit2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"sweetrabbit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Rocket\\/Avengers_Endgame_2019_Rocket.png\",\"lemomentdebriller\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_Trophy\\/FIFAWWC_2019_Trophy.png\",\"hockeytwitter\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HockeyTwitter_2018\\/HockeyTwitter_2018.png\",\"vidafyc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_Vida_S2\\/STARZ_Vida_S2.png\",\"caroldanvers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainMarvel\\/Avengers_Endgame_2019_CaptainMarvel.png\",\"togetherasone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_THA\\/FIFAWWC_2019_THA.png\",\"qlder\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL_2019_MidSeason_QLDER\\/NRL_2019_MidSeason_QLDER.png\",\"liveinlevis\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Spain_Levis_2019\\/Spain_Levis_2019.png\",\"bopeep\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"got7_spinningtop\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_GOT7_2019_GOT7WORLDTOUR\\/KPOP_GOT7_2019_GOT7WORLDTOUR.png\",\"suenalacampana\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Phil\\/MLB_2019_Phil.png\",\"бульбазавр\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Bulbasaur\\/WBPikachu_Bulbasaur.png\",\"ourjungle\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_OurJungle\\/NRL2019_OurJungle.png\",\"어벤져스\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"عالم_من_القصص\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ToyotaStories_2019\\/ToyotaStories_2019.png\",\"خلنا_نجتمع\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Vimto_Ramadan_2019_v2\\/Vimto_Ramadan_2019_v2.png\",\"fv19\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DanishElection_2019\\/DanishElection_2019.png\",\"penguinday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldPenguinDay_2019\\/WorldPenguinDay_2019.png\",\"gaviãoarqueiro\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"サランラップのクマ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AsahiKaseiHP_2019\\/AsahiKaseiHP_2019.png\",\"ドン勝tv\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PUBGKR2019\\/PUBGKR2019.png\",\"リゼロプリコネrコラボ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Priconne_Rezaro_2019_v2\\/Priconne_Rezaro_2019_v2.png\",\"proudtobeabulldog\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_Proudtobeabulldog\\/NRL2019_Proudtobeabulldog.png\",\"capitanamerica\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainAmerica\\/Avengers_Endgame_2019_CaptainAmerica.png\",\"oneplus7series\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OnePlus7_2019\\/OnePlus7_2019.png\",\"ハッピーホーガン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_HappyHogan\\/Avengers_Endgame_2019_HappyHogan.png\",\"историяигрушек4\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"freshempire\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FreshEmpire_MayAugust_2019\\/FreshEmpire_MayAugust_2019.png\",\"nowapocalypsepremiere\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_NowApocalypse_2019\\/STARZ_NowApocalypse_2019.png\",\"諦めたくない夢\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RakutenTV_NBA_Logo_2019_v2\\/RakutenTV_NBA_Logo_2019_v2.png\",\"ナイキ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Nike_Japan_JDI_2019\\/Nike_Japan_JDI_2019.png\",\"illuminationsfarewell\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"فيمتو\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Vimto_Ramadan_2019_v2\\/Vimto_Ramadan_2019_v2.png\",\"escolhasinteligentes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Cabify_DecisionesInteligentes_2019\\/Cabify_DecisionesInteligentes_2019.png\",\"ひらめいてロマサガ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/romasaga_rs_2019\\/romasaga_rs_2019.png\",\"nébula\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Nebula\\/Avengers_Endgame_2019_Nebula.png\",\"dunkindonuts\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Dunkin_NationalDonutDay_2019\\/Dunkin_NationalDonutDay_2019.png\",\"foxfam\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LCS_2019_EchoFox_add\\/LCS_2019_EchoFox_add.png\",\"penseavantdepartager\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing.png\",\"heforshe\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HeForShe_fixed\\/HeForShe_fixed.png\",\"그라운드의적막을깨라\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_KOR\\/FIFAWWC_2019_KOR.png\",\"proudlysydney\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_Part2_2019_ProudlySydney\\/AFL_Part2_2019_ProudlySydney.png\",\"walkure\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Valkyrie\\/Avengers_Endgame_2019_Valkyrie.png\",\"estavezvoto\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"imfc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_IMFC\\/MLS_19_IMFC.png\",\"elpoderdelascanas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PG_Spain_Pantene_2019\\/PG_Spain_Pantene_2019.png\",\"lionesses\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LionessesEnglandFootball2019\\/LionessesEnglandFootball2019.png\",\"budknightsback\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BudLight_BudKnight_2019\\/BudLight_BudKnight_2019.png\",\"dennegangstemmerjeg\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"primevideo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AmazonPrimeVideo_Dionysus_2019_v2\\/AmazonPrimeVideo_Dionysus_2019_v2.png\",\"إبداعات_ڤيمتو\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Vimto_Ramadan_2019_add\\/Vimto_Ramadan_2019_add.png\",\"heatculture\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_MIA\\/NBA_18_MIA.png\",\"ligadia\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Spain_LigaDia_2018\\/Spain_LigaDia_2018.png\",\"theshow19\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_TheShow19\\/MLB_TheShow19.png\",\"hechoenoakland\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Oakland\\/MLB_2019_Oakland.png\",\"seekordlähenvalima\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"3wishes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"tracymorgan\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TLOG_Season2\\/TLOG_Season2.png\",\"chi\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_CHI\\/FIFAWWC_2019_CHI.png\",\"rompiendoestereotipos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PG_Spain_Pantene_2019\\/PG_Spain_Pantene_2019.png\",\"fortnitee3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_FortniteE3\\/FortniteE3_SummerBlockParty_2019_FortniteE3.png\",\"البنك_السعودي_للاستثمار\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SAIB_2019\\/SAIB_2019.png\",\"ルージュミニ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Maquillage_rouge_2019\\/Maquillage_rouge_2019.png\",\"vimto\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Vimto_Ramadan_2019_v2\\/Vimto_Ramadan_2019_v2.png\",\"happymothersday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/2019_MothersDay\\/2019_MothersDay.png\",\"kanewilliamson\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Players_KaneWilliamson\\/CricketWorldCup_2019_Players_KaneWilliamson.png\",\"로켓\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Rocket\\/Avengers_Endgame_2019_Rocket.png\",\"음바쿠\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Mbaku\\/Avengers_Endgame_2019_Mbaku.png\",\"indiaeisley\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TNT_IAmTheNight_2019_v2\\/TNT_IAmTheNight_2019_v2.png\",\"danishpilsner\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Carlsberg_NewBrew_2019\\/Carlsberg_NewBrew_2019.png\",\"グラクロエリザベス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble7S_V5\\/Netmarble7S_V5.png\",\"untethering\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018\\/UsMovie_2018.png\",\"金欲祭\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sinoalice_June2019\\/Sinoalice_June2019.png\",\"bbsightings\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_Brightburn_Mask_2019\\/Sony_Brightburn_Mask_2019.png\",\"toystorymania\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_ToyStoryLand\\/DisneyParks_ToyStoryLand.png\",\"worldpenguinday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldPenguinDay_2019\\/WorldPenguinDay_2019.png\",\"мантис\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Mantis\\/Avengers_Endgame_2019_Mantis.png\",\"بريال\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ZadFresh_2019_v3\\/ZadFresh_2019_v3.png\",\"rocketmanes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Rocket\\/Paramount_Rocketman_Rocket.png\",\"wholenewworld\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Jasmine\\/Disney_Aladdin_Jasmine.png\",\"докторстрэндж\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_DoctorStrange\\/Avengers_Endgame_2019_DoctorStrange.png\",\"slinkydogdash\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_ToyStoryLand\\/DisneyParks_ToyStoryLand.png\",\"三ツ矢サイダー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Asahi_MitsuyaBrand_2019_add\\/Asahi_MitsuyaBrand_2019_add.png\",\"riseoftheresistance\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/disney_starwarsgalaxysedge_2019_v2\\/disney_starwarsgalaxysedge_2019_v2.png\",\"charmander\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Charmander\\/WBPikachu_Charmander.png\",\"larojafemenina\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_CHI\\/FIFAWWC_2019_CHI.png\",\"connectedbypride\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Verizon_Pride_2019\\/Verizon_Pride_2019.png\",\"happybirthdaymickey\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Mickey90th_2018\\/Mickey90th_2018.png\",\"hotsaleamazon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AmazonHotSale2019\\/AmazonHotSale2019.png\",\"absolut\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AbsolutPlanetEarthsFavoriteVodka_2019\\/AbsolutPlanetEarthsFavoriteVodka_2019.png\",\"strengthinnumbers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WarriorsPlayoffsv3\\/WarriorsPlayoffsv3.png\",\"フォーキー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"aiだみつを\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AIDAMITSUWO_2019\\/AIDAMITSUWO_2019.png\",\"whywewearblack\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TimesUp_v4\\/TimesUp_v4.png\",\"spotifyxbts\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Spotify_KPOP_2019_v3\\/Spotify_KPOP_2019_v3.png\",\"bstudios\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BStudios_2019\\/BStudios_2019.png\",\"encendiendomotores\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Detroit_v2\\/MLB_2019_Detroit_v2.png\",\"cmr\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_CMR\\/FIFAWWC_2019_CMR.png\",\"lgm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Mets\\/MLB_2019_Mets.png\",\"agenth\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_2019\\/Sony_MenInBlack_2019.png\",\"nossoplaneta\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netflix_OurPlanet_2019\\/Netflix_OurPlanet_2019.png\",\"pubg_jp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PUBGKR2019\\/PUBGKR2019.png\",\"geniotangenial\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"evepolastri\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KillingEve_US_2019_v3\\/KillingEve_US_2019_v3.png\",\"absolutplanet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AbsolutPlanetEarthsFavoriteVodka_2019\\/AbsolutPlanetEarthsFavoriteVodka_2019.png\",\"doop\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_PHIL\\/MLS_19_PHIL.png\",\"winecountrynetflix\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WineCountry_Netflix\\/WineCountry_Netflix.png\",\"spotifyxblackpink\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Spotify_KPOP_2019_v3\\/Spotify_KPOP_2019_v3.png\",\"子どもの日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ChildrensDay_2019\\/ChildrensDay_2019.png\",\"禍つヴァールハイト\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/magatsu_ver2_2019\\/magatsu_ver2_2019.png\",\"아이언맨\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_IronMan\\/Avengers_Endgame_2019_IronMan.png\",\"rewritetherules\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Huawei_P30_2019\\/Huawei_P30_2019.png\",\"gomatildas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Matildas_WWC\\/Matildas_WWC.png\",\"nohayungeniotangenial\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"letsgopens\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PensPlayoffs2019\\/PensPlayoffs2019.png\",\"팽귄의날\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldPenguinDay_2019\\/WorldPenguinDay_2019.png\",\"breakthrough\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Shanghai\\/OWL_19_Shanghai.png\",\"indigenoushistorymonth\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IndigenousHistoryMonth_2019\\/IndigenousHistoryMonth_2019.png\",\"우디\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"losrockies\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Colorado\\/MLB_2019_Colorado.png\",\"loveislandreunion\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LoveIsland_May2019\\/LoveIsland_May2019.png\",\"аладдин\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"خدمة_حسابي\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SaudiElectricity_2019\\/SaudiElectricity_2019.png\",\"darkballet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"terminei\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bis_terminei_2019\\/Bis_terminei_2019.png\",\"loveisinthehair\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Vo5LoveIsland\\/Vo5LoveIsland.png\",\"itmovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"butnotus\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"maquinadeguerra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WarMachine\\/Avengers_Endgame_2019_WarMachine.png\",\"levis\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Spain_Levis_2019\\/Spain_Levis_2019.png\",\"sayitwithanudge\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Tyson_NudgesDog_2019_v2\\/Tyson_NudgesDog_2019_v2.png\",\"anuairseobeidhméagvótáil\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"gorogue\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Rogue\\/Riot_Rogue.png\",\"agentm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_2019\\/Sony_MenInBlack_2019.png\",\"oppoksa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Oppo_KSA_RenoLaunch_Q2_2019\\/Oppo_KSA_RenoLaunch_Q2_2019.png\",\"viärsverige\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_SWE\\/FIFAWWC_2019_SWE.png\",\"ناس\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FlyNas_2019\\/FlyNas_2019.png\",\"smoreslife\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Starbucks_Canada_SummerFrapp\\/Starbucks_Canada_SummerFrapp.png\",\"wakandaforever\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackPanther\\/Avengers_Endgame_2019_BlackPanther.png\",\"نوروز\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/nowruz2018_v4\\/nowruz2018_v4.png\",\"penseantesdecompartilhar\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeSharing.png\",\"lagalaxy\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_LAGalaxy\\/MLS_19_LAGalaxy.png\",\"bringthemayhem\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Florida\\/OWL_19_Florida.png\",\"çachapitre2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"warburtons\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Warburtons_Bagel_Boss\\/Warburtons_Bagel_Boss.png\",\"aşkaşktır\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"nhlbruins\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BruinsPlayoffs19\\/BruinsPlayoffs19.png\",\"flywin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_FlyQuest_add\\/Esports_AllAccessTeam_FlyQuest_add.png\",\"diesmalwähleich\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"bgmt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BritainsGotTalent_2019_star_add\\/BritainsGotTalent_2019_star_add.png\",\"blackhistorymonth\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BlackHistoryMonth\\/BlackHistoryMonth.png\",\"infinitystone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"cwc19\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Trophy\\/CricketWorldCup_2019_Trophy.png\",\"wdw\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_MickeyEars_Flight2\\/DisneyParks_MickeyEars_Flight2.png\",\"nycfc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_NYCFC\\/MLS_19_NYCFC.png\",\"スターフェス200連無料\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Vconnect_jp_2019_V2\\/Vconnect_jp_2019_V2.png\",\"xboxe3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Xbox_E3_2019\\/Xbox_E3_2019.png\",\"와스프\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wasp\\/Avengers_Endgame_2019_Wasp.png\",\"absolutpride\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AbsolutPlanetEarthsFavoriteVodka_2019\\/AbsolutPlanetEarthsFavoriteVodka_2019.png\",\"xmenstorm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DarkPhoenix_XMenStorm\\/DarkPhoenix_XMenStorm.png\",\"unitedbyvote\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UnitedColoursofBenetton_2019\\/UnitedColoursofBenetton_2019.png\",\"oneplus7pro\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OnePlus7_2019\\/OnePlus7_2019.png\",\"ep2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"인피\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"spacestone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"баззлайтер\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Buzz\\/Disney_ToyStory4_Buzz.png\",\"joguejunto\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Telefonica_Brazil_WWC_2019\\/Telefonica_Brazil_WWC_2019.png\",\"xlwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_exceL\\/Riot_exceL.png\",\"vegasborn\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/VegasPlayoffs19\\/VegasPlayoffs19.png\",\"nationalpetday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_Max_v2_ext\\/Pets2_Max_v2_ext.png\",\"squirtle\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Squirtle_v2\\/WBPikachu_Squirtle_v2.png\",\"발키리\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Valkyrie\\/Avengers_Endgame_2019_Valkyrie.png\",\"delhicapitals\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DelhiCapitals_IPL\\/DelhiCapitals_IPL.png\",\"ovajputglasam\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"قطر_الخيرية\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Qatar_charity2019\\/Qatar_charity2019.png\",\"theprocess\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JoelFace2018\\/JoelFace2018.png\",\"metoo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MeToo_v3\\/MeToo_v3.png\",\"kpopdaebak\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Spotify_KPOP_2019_v3\\/Spotify_KPOP_2019_v3.png\",\"железныйчеловек\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_IronMan\\/Avengers_Endgame_2019_IronMan.png\",\"movilidadinteligente\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Cabify_DecisionesInteligentes_2019\\/Cabify_DecisionesInteligentes_2019.png\",\"ゼニガメ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Squirtle_v2\\/WBPikachu_Squirtle_v2.png\",\"クリックする前に考えよう\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking\\/MediaInformationLiteracyWeeks_2018_ThinkBeforeClicking.png\",\"thebachelorettefinale\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bachelorette_2019\\/Bachelorette_2019.png\",\"amexcobalt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AMEX_Colbalt_2019\\/AMEX_Colbalt_2019.png\",\"wemetontwitter\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WeMetOnt_Emoji\\/WeMetOnt_Emoji.png\",\"wingsout\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_LAV\\/OWL_19_LAV.png\",\"lionkingcelebration\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"adoptaunprimerizo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AmazonHotSale2019\\/AmazonHotSale2019.png\",\"sco\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_SCO\\/FIFAWWC_2019_SCO.png\",\"magiccarpetride\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"supersixwithgaurav\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BiraIndia_CWC_2019\\/BiraIndia_CWC_2019.png\",\"ウォン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wong\\/Avengers_Endgame_2019_Wong.png\",\"pattyjenkins\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TNT_IAmTheNight_2019_v2\\/TNT_IAmTheNight_2019_v2.png\",\"nzl\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_NZL\\/FIFAWWC_2019_NZL.png\",\"idontsearchifind\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"bestoftweet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BestofTweetsPrize_2019\\/BestofTweetsPrize_2019.png\",\"bts월드\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BTSWorldGame_2019\\/BTSWorldGame_2019.png\",\"dunkout\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Dunkin_NationalDonutDay_2019\\/Dunkin_NationalDonutDay_2019.png\",\"rocketfans\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Star\\/Paramount_Rocketman_Star.png\",\"nudgesdogtreats\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Tyson_NudgesDog_2019_v2\\/Tyson_NudgesDog_2019_v2.png\",\"epvalimised2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"100thieves\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_100Thieves_ext19\\/Esports_AllAccessTeam_100Thieves_ext19.png\",\"journéenationalepeuplesautochtones\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IndigenousHistoryMonth_2019\\/IndigenousHistoryMonth_2019.png\",\"sunshinesoldiers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_SunshineSoldiers\\/FortniteE3_SummerBlockParty_2019_SunshineSoldiers.png\",\"xperienceseru\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Traveloka_Xperience_2019\\/Traveloka_Xperience_2019.png\",\"avengersengame\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_add\\/Avengers_Endgame_2019_add.png\",\"超ラジオ体操\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINMetsJP_2019\\/KIRINMetsJP_2019.png\",\"꼬부기\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Squirtle_v2\\/WBPikachu_Squirtle_v2.png\",\"파이리\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Charmander\\/WBPikachu_Charmander.png\",\"artfulepcot\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"ogfamily\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Origen\\/Riot_Origen.png\",\"captainmarvel\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainMarvel\\/Avengers_Endgame_2019_CaptainMarvel.png\",\"woodylunchbox\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_ToyStoryLand\\/DisneyParks_ToyStoryLand.png\",\"secretlifeofpets\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_Max_v2_ext\\/Pets2_Max_v2_ext.png\",\"fortnitee319\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_FortniteE3\\/FortniteE3_SummerBlockParty_2019_FortniteE3.png\",\"로켓맨\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Rocket\\/Paramount_Rocketman_Rocket.png\",\"mnufc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_MNUFC\\/MLS_19_MNUFC.png\",\"4aklondike\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Unilever_4AKlondike_2019\\/Unilever_4AKlondike_2019.png\",\"骄傲2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"arawngkalikasan\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"bitchimloca\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"weareorigen\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Origen\\/Riot_Origen.png\",\"goup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LeagueofLegends_2019_GOUP\\/LeagueofLegends_2019_GOUP.png\",\"north150\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_2019_North150\\/AFL_2019_North150.png\",\"オルビスユー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ORBIS_2019\\/ORBIS_2019.png\",\"wyboryeuropejskie2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"unamicocomeme\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"vwfc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_VAN\\/MLS_19_VAN.png\",\"feeleuphoria\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HBO_Euphoria_2019\\/HBO_Euphoria_2019.png\",\"dontlethimin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SonyIntruder_2018\\/SonyIntruder_2018.png\",\"kcon2019usa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KCON2019USA_2019\\/KCON2019USA_2019.png\",\"tokyolitmap\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Nike_Japan_JDI_2019\\/Nike_Japan_JDI_2019.png\",\"oppo60xzoom\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Oppo_KSA_RenoLaunch_Q2_2019\\/Oppo_KSA_RenoLaunch_Q2_2019.png\",\"budknightbucketlist\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BudLight_BudKnight_2019\\/BudLight_BudKnight_2019.png\",\"epvolby2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"wearemanly\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_WeAreManly\\/NRL2019_WeAreManly.png\",\"七つの大罪\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble_7deadlysins_2019\\/Netmarble_7deadlysins_2019.png\",\"redmi32mp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RedmiY3_2019\\/RedmiY3_2019.png\",\"thehustle\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TheHustle_2019\\/TheHustle_2019.png\",\"livenation\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NationalConcertWeek_2019\\/NationalConcertWeek_2019.png\",\"shaftmovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_ShaftMovie_2019\\/WB_ShaftMovie_2019.png\",\"haroldhogan\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_HappyHogan\\/Avengers_Endgame_2019_HappyHogan.png\",\"kingsxipunjab\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_KXIP\\/IPL_2019_2_KXIP.png\",\"cementeriodeanimales\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_PetSematary_2019_v2\\/Paramount_PetSematary_2019_v2.png\",\"primedayamazon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AmazonHotSale2019\\/AmazonHotSale2019.png\",\"平成ノブコブ最後の日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AbemaTV_2019\\/AbemaTV_2019.png\",\"perfectlybalanced\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thanos\\/Avengers_Endgame_2019_Thanos.png\",\"никфьюри\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_NickFury\\/Avengers_Endgame_2019_NickFury.png\",\"destavezeuvoto\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"wegohard\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_BKN\\/NBA_18_BKN.png\",\"alegeriue2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"母の日\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/2019_MothersDay\\/2019_MothersDay.png\",\"roaron\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Seoul\\/OWL_19_Seoul.png\",\"vengadores\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"chickenchampions\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_ChickenChampions\\/FortniteE3_SummerBlockParty_2019_ChickenChampions.png\",\"紅茶派\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRINGT_JP_2019_V3\\/KIRINGT_JP_2019_V3.png\",\"mlsishere\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ESPN_MLS_2019_2\\/ESPN_MLS_2019_2.png\",\"redmi32mpsuperselfie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RedmiY3_2019\\/RedmiY3_2019.png\",\"放置少女百花繚乱\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/houchishoujo_2yearanniversary_v2\\/houchishoujo_2yearanniversary_v2.png\",\"joganogoogle\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/GoogleSoccer_Brazil_2019\\/GoogleSoccer_Brazil_2019.png\",\"capitãmarvel\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainMarvel\\/Avengers_Endgame_2019_CaptainMarvel.png\",\"스타로드\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Starlord\\/Avengers_Endgame_2019_Starlord.png\",\"ナイトジョガー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Adidas_NiteJogger_2019_add\\/Adidas_NiteJogger_2019_add.png\",\"あんスタ4周年\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Ansta4th_2019\\/Ansta4th_2019.png\",\"stonewall50\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019_StoneWall50\\/Pride2019_StoneWall50.png\",\"cmtawards19\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CMTMusicAwards_2019\\/CMTMusicAwards_2019.png\",\"euroleague\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Euroleague_Jan2019\\/Euroleague_Jan2019.png\",\"paradisehotel\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Fox_Summer_ParadiseHotel\\/Fox_Summer_ParadiseHotel.png\",\"soldadodelinvierno\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WinterSoldier\\/Avengers_Endgame_2019_WinterSoldier.png\",\"clgwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LCS_2019_CounterLogicGaming\\/LCS_2019_CounterLogicGaming.png\",\"放置少女の萌姫たち\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/houchishoujo_2yearanniversary_v2\\/houchishoujo_2yearanniversary_v2.png\",\"s04\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Schalke04\\/Riot_Schalke04.png\",\"الفخر\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"رمضان_الصقور_غير\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/invasionarab1_Ramadan_2019\\/invasionarab1_Ramadan_2019.png\",\"serbuseru\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bukalapak_2019\\/Bukalapak_2019.png\",\"bhm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BlackHistoryMonth\\/BlackHistoryMonth.png\",\"mi\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MumbaiIndians_2018\\/MumbaiIndians_2018.png\",\"pepperpotts\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_PepperPotts\\/Avengers_Endgame_2019_PepperPotts.png\",\"toystoryfourchette\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"chrispine\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TNT_IAmTheNight_2019_v2\\/TNT_IAmTheNight_2019_v2.png\",\"masterchef\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Masterchef_March_2019\\/Masterchef_March_2019.png\",\"nudgestreats\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Tyson_NudgesDog_2019_v2\\/Tyson_NudgesDog_2019_v2.png\",\"elgeniodealadd\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"fazeup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_FaZeClan_ext19\\/Esports_AllAccessTeam_FaZeClan_ext19.png\",\"صقور_العرب\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/invasionarab1_Ramadan_2019\\/invasionarab1_Ramadan_2019.png\",\"winecountryus\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WineCountry_Netflix\\/WineCountry_Netflix.png\",\"snapchatforandroid\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SnapAndroid_Launch_2019\\/SnapAndroid_Launch_2019.png\",\"lalampara\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"lampada\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"capitaoamerica\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainAmerica\\/Avengers_Endgame_2019_CaptainAmerica.png\",\"microsoft\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Microsoft_APAC_2019_v2\\/Microsoft_APAC_2019_v2.png\",\"بطاقة_السفر\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SAIB_2019\\/SAIB_2019.png\",\"eleccionesue2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"eprinkimai2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"celebratemickey\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"gojetsgo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NHLJetsPlayoffs2019\\/NHLJetsPlayoffs2019.png\",\"hotzoneshow\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HotZone_NatGeoChannel_2019\\/HotZone_NatGeoChannel_2019.png\",\"petsematarymovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_PetSematary_2019_v2\\/Paramount_PetSematary_2019_v2.png\",\"bullsnation\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_CHI\\/NBA_18_CHI.png\",\"orgull\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"fiersdetrebleues\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_FRA\\/FIFAWWC_2019_FRA.png\",\"twinsbeisbol\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Minn\\/MLB_2019_Minn.png\",\"nrl\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_NRL\\/NRL2019_NRL.png\",\"eleicoeseuropeias2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"азизбирамес2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"nfl100\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NFL100AnniversaryEmoji\\/NFL100AnniversaryEmoji.png\",\"サランラップ漫画劇場\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AsahiKaseiHP_2019\\/AsahiKaseiHP_2019.png\",\"pericao\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pericles_2019\\/Pericles_2019.png\",\"血盟ジョイン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LineageMFirstBrand_2019\\/LineageMFirstBrand_2019.png\",\"letsgoc9\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_Cloud9_ext19\\/Esports_AllAccessTeam_Cloud9_ext19.png\",\"lalampe\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"glumanda\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Charmander\\/WBPikachu_Charmander.png\",\"リゼロコラボ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Priconne_Rezaro_2019_v2\\/Priconne_Rezaro_2019_v2.png\",\"moremagic\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"teamenvy\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_Envy_ext2\\/Esports_AllAccessTeam_Envy_ext2.png\",\"myxmusicawards2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MYXMusicAwards_2019\\/MYXMusicAwards_2019.png\",\"ドン勝\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PUBGKR2019\\/PUBGKR2019.png\",\"ハルク\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hulk\\/Avengers_Endgame_2019_Hulk.png\",\"الحجر\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlUlaCity_2019\\/AlUlaCity_2019.png\",\"itchaptertwo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"breakpoint\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/GhostRecon_2019_breakpoint\\/GhostRecon_2019_breakpoint.png\",\"forgloryforcity\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_SKC_v2\\/MLS_19_SKC_v2.png\",\"britainsgottalent\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BritainsGotTalent_2019_star\\/BritainsGotTalent_2019_star.png\",\"ofertasprimeday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AmazonHotSale2019\\/AmazonHotSale2019.png\",\"carlsbergpilsner\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Carlsberg_NewBrew_2019\\/Carlsberg_NewBrew_2019.png\",\"disneyworld\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_MickeyEars_Flight2\\/DisneyParks_MickeyEars_Flight2.png\",\"womeninfootball\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WomenInFootball_Flight3\\/WomenInFootball_Flight3.png\",\"पृथ्वीदिवस\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"izborieu2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"포키\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"vcnuncaviunadaigual\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBB_2018_2019Season\\/NBB_2018_2019Season.png\",\"グラクロゴウセル\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble7S_V2\\/Netmarble7S_V2.png\",\"アラジンと新しい世界へ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"kpoptwitter\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOPTwitter2019\\/KPOPTwitter2019.png\",\"worldenvironmentday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"vacinabrasil\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Brasil_InfluenzaVaccination\\/Brasil_InfluenzaVaccination.png\",\"mewtwo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Mewtwo\\/WBPikachu_Mewtwo.png\",\"mibnba\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_2019\\/Sony_MenInBlack_2019.png\",\"지구의날\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"jam\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_JAM\\/FIFAWWC_2019_JAM.png\",\"blacklivesmatter\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BlackHistoryMonth\\/BlackHistoryMonth.png\",\"foxwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LCS_2019_EchoFox\\/LCS_2019_EchoFox.png\",\"wearewarriors\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_WeAreWarriors\\/NRL2019_WeAreWarriors.png\",\"pinkcarpetmtvmiaw\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MTV_Miaw_2019\\/MTV_Miaw_2019.png\",\"senhordasestrelas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Starlord\\/Avengers_Endgame_2019_Starlord.png\",\"グラクロ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble_7deadlysins_2019\\/Netmarble_7deadlysins_2019.png\",\"wearematildas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Matildas_WWC\\/Matildas_WWC.png\",\"ourplanet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netflix_OurPlanet_2019\\/Netflix_OurPlanet_2019.png\",\"toandroidlovesnapchat\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/SnapAndroid_Launch_2019\\/SnapAndroid_Launch_2019.png\",\"moc\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MOCSaudi_2019\\/MOCSaudi_2019.png\",\"僕はおもちゃじゃない\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"gonip\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_NIP\\/Esports_V2_19_NIP.png\",\"インフィニティガントレット\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"teusegredo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pericles_2019\\/Pericles_2019.png\",\"보핍\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"starlord\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Starlord\\/Avengers_Endgame_2019_Starlord.png\",\"bg3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LarianStudios_GamesLimited_2019\\/LarianStudios_GamesLimited_2019.png\",\"nickfury\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_NickFury\\/Avengers_Endgame_2019_NickFury.png\",\"nietshoudtonstegen\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/INGxWWC_2019\\/INGxWWC_2019.png\",\"rocketmanmovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Rocket\\/Paramount_Rocketman_Rocket.png\",\"preds\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PredsPlayoffs2019\\/PredsPlayoffs2019.png\",\"feriadelhilo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FeriaDelHilo_v2\\/FeriaDelHilo_v2.png\",\"звёздныйлорд\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Starlord\\/Avengers_Endgame_2019_Starlord.png\",\"eoinmorgan\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Players_EoinMorgan\\/CricketWorldCup_2019_Players_EoinMorgan.png\",\"diamundialdelmedioambiente\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"ドクターストレンジ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_DoctorStrange\\/Avengers_Endgame_2019_DoctorStrange.png\",\"リネmプレイ中デス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LineageMSecondBrand_2019\\/LineageMSecondBrand_2019.png\",\"nudges\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Tyson_NudgesDog_2019_v2\\/Tyson_NudgesDog_2019_v2.png\",\"hawkeyeavenger\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"disneycruise\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_MickeyEars_Flight2\\/DisneyParks_MickeyEars_Flight2.png\",\"cettefoisjevote\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"gow\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Xbox_GearsofWar_2019\\/Xbox_GearsofWar_2019.png\",\"nrlmagicround\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL_2019_MidSeason_NRLWMagicRound\\/NRL_2019_MidSeason_NRLWMagicRound.png\",\"reggaegirlz\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_JAM\\/FIFAWWC_2019_JAM.png\",\"allcaps\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NHL_2017_2018_Caps_v3\\/NHL_2017_2018_Caps_v3.png\",\"дракс\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Drax\\/Avengers_Endgame_2019_Drax.png\",\"kevinfeige\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_KevinFeige\\/Avengers_Endgame_2019_KevinFeige.png\",\"eaststowin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_EastsToWin\\/NRL2019_EastsToWin.png\",\"dünyaçevregünü\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"alâmpada\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"nrgfam\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_NRG_ext19\\/Esports_AllAccessTeam_NRG_ext19.png\",\"wehaveahulk\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hulk\\/Avengers_Endgame_2019_Hulk.png\",\"キャプテンマーベル\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainMarvel\\/Avengers_Endgame_2019_CaptainMarvel.png\",\"シノアリス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sinoalice_June2019\\/Sinoalice_June2019.png\",\"杰尼龟\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Squirtle_v2\\/WBPikachu_Squirtle_v2.png\",\"vitwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_TeamVitality\\/Riot_TeamVitality.png\",\"milehighbasketball\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_DEN\\/NBA_18_DEN.png\",\"캡틴아메리카\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainAmerica\\/Avengers_Endgame_2019_CaptainAmerica.png\",\"ドラガリ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/dragalialos_March2019_v2\\/dragalialos_March2019_v2.png\",\"paradisehotelfox\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Fox_Summer_ParadiseHotel\\/Fox_Summer_ParadiseHotel.png\",\"diabloguardián\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Amazon_DiabloGuardian_add\\/Amazon_DiabloGuardian_add.png\",\"therevengers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TheHustle_2019\\/TheHustle_2019.png\",\"winecountryfilm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WineCountry_Netflix\\/WineCountry_Netflix.png\",\"aisxlisa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AISXLISA_2019\\/AISXLISA_2019.png\",\"ويش_بتسوي_لو_صرت_الحاكم\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/invasionarab1_Ramadan_2019\\/invasionarab1_Ramadan_2019.png\",\"pride\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"bronxnation\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_Bronxnation\\/NRL2019_Bronxnation.png\",\"inclusionishappening\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TwitterTogether_InclusionIsHappening_v2\\/TwitterTogether_InclusionIsHappening_v2.png\",\"hilanderos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FeriaDelHilo_v2\\/FeriaDelHilo_v2.png\",\"七つの大罪光と闇の交戦\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Netmarble_7deadlysins_2019\\/Netmarble_7deadlysins_2019.png\",\"magiclamp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"starbuckssummersippin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Starbucks_Canada_SummerFrapp_add\\/Starbucks_Canada_SummerFrapp_add.png\",\"maailmanympäristöpäivä\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"seeushearus\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019_SeeUsHearUs\\/Pride2019_SeeUsHearUs.png\",\"nothingcompares2u\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Prince_June2019\\/Prince_June2019.png\",\"lec\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_LEC\\/Riot_LEC.png\",\"draxthedestroyer\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Drax\\/Avengers_Endgame_2019_Drax.png\",\"okoye\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Okoye\\/Avengers_Endgame_2019_Okoye.png\",\"mtvaward\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MTV_Awards_May2019\\/MTV_Awards_May2019.png\",\"pileofrocks\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Korg\\/Avengers_Endgame_2019_Korg.png\",\"comeonengland\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_ENG_v2\\/FIFAWWC_2019_ENG_v2.png\",\"brokenheartedtim\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TimHeidecker_2019\\/TimHeidecker_2019.png\",\"stuber\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Fox_Stuber_2019\\/Fox_Stuber_2019.png\",\"วันคุ้มครองโลก\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EarthDay_2019_fixed\\/EarthDay_2019_fixed.png\",\"カンパイ展\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KIRIN_Soccer_Japan_2019\\/KIRIN_Soccer_Japan_2019.png\",\"リネm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LineageMFirstBrand_2019\\/LineageMFirstBrand_2019.png\",\"تبرعك_أسهل\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Zamzam_2019\\/Zamzam_2019.png\",\"рокетмен\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Rocket\\/Paramount_Rocketman_Rocket.png\",\"tlwin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_TeamLiquid_ext19\\/Esports_AllAccessTeam_TeamLiquid_ext19.png\",\"ロキ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Loki\\/Avengers_Endgame_2019_Loki.png\",\"flyquest\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_FlyQuest_ext19\\/Esports_AllAccessTeam_FlyQuest_ext19.png\",\"pets2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pets2_Max_v2_ext\\/Pets2_Max_v2_ext.png\",\"mariahill\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_MariaHill\\/Avengers_Endgame_2019_MariaHill.png\",\"캡틴마블\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainMarvel\\/Avengers_Endgame_2019_CaptainMarvel.png\",\"euroekloges2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"미에크\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Miek\\/Avengers_Endgame_2019_Miek.png\",\"чернаяпантера\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackPanther\\/Avengers_Endgame_2019_BlackPanther.png\",\"freshepcot\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"nadeshiko\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_JPN\\/FIFAWWC_2019_JPN.png\",\"thisworldcomesforyou\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PlayStation_DaysGone\\/PlayStation_DaysGone.png\",\"puremagic\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_ORL\\/NBA_18_ORL.png\",\"nbaplayoffs\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBAPlayoffs2019v2\\/NBAPlayoffs2019v2.png\",\"bulbizarre\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Bulbasaur\\/WBPikachu_Bulbasaur.png\",\"rocketfan\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Star\\/Paramount_Rocketman_Star.png\",\"spywin\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_Splyce\\/Riot_Splyce.png\",\"thehotzonenatgeo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HotZone_NatGeoChannel_2019\\/HotZone_NatGeoChannel_2019.png\",\"세계환경의날\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"maquinadecombate\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WarMachine\\/Avengers_Endgame_2019_WarMachine.png\",\"オルビスユーローション\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ORBIS_2019_add\\/ORBIS_2019_add.png\",\"got7worldtour\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_GOT7_2019_GOT7WORLDTOUR\\/KPOP_GOT7_2019_GOT7WORLDTOUR.png\",\"thecontinental\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JohnWick_3_ext\\/JohnWick_3_ext.png\",\"alfombramágicatour\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"ministryofculture\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MOCSaudi_2019\\/MOCSaudi_2019.png\",\"funkyfighters\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FortniteE3_SummerBlockParty_2019_FunkyFighters\\/FortniteE3_SummerBlockParty_2019_FunkyFighters.png\",\"leafsforever\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LeafsPlayoffs2019\\/LeafsPlayoffs2019.png\",\"rattleon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Arizona\\/MLB_2019_Arizona.png\",\"almonds\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlmondBoardofCalifornia_WWC\\/AlmondBoardofCalifornia_WWC.png\",\"อิท2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"loveislandday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LoveIsland_May2019\\/LoveIsland_May2019.png\",\"rexonadancestudio\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RexonaNowUnited_72x72\\/RexonaNowUnited_72x72.png\",\"スターロード\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Starlord\\/Avengers_Endgame_2019_Starlord.png\",\"локи\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Loki\\/Avengers_Endgame_2019_Loki.png\",\"мстители\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"thehustlemovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TheHustle_2019\\/TheHustle_2019.png\",\"ripcity\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_POR\\/NBA_18_POR.png\",\"zacharyquinto\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Nos4a2_2019\\/Nos4a2_2019.png\",\"100t\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_100Thieves_ext19\\/Esports_AllAccessTeam_100Thieves_ext19.png\",\"worldpride2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019_StoneWall50\\/Pride2019_StoneWall50.png\",\"mikeygarcia\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FoxSports_PBC\\/FoxSports_PBC.png\",\"stonekeeper\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_RedSkull\\/Avengers_Endgame_2019_RedSkull.png\",\"todosjuntos\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Texas\\/MLB_2019_Texas.png\",\"ringthebell\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Phil\\/MLB_2019_Phil.png\",\"hustlemovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TheHustle_2019\\/TheHustle_2019.png\",\"risewithus\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_Sunrisers\\/IPL_2019_2_Sunrisers.png\",\"엄마사랑해요\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/2019_MothersDay\\/2019_MothersDay.png\",\"jamesbeardawards\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JamesBeard_FoundationAwards_2019\\/JamesBeard_FoundationAwards_2019.png\",\"lakeshow\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_LAL\\/NBA_18_LAL.png\",\"toystorybetty\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"showtimelatenight\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DesusandMero_2019\\/DesusandMero_2019.png\",\"magiccarpet\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"flyq\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_FlyQuest_ext19\\/Esports_AllAccessTeam_FlyQuest_ext19.png\",\"szavaznifogok\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"budknightreturn\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BudLight_BudKnight_2019\\/BudLight_BudKnight_2019.png\",\"rbny\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_RBNY\\/MLS_19_RBNY.png\",\"magiccarpettour\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"btsgame\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BTSWorldGame_2019\\/BTSWorldGame_2019.png\",\"esp\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_ESP\\/FIFAWWC_2019_ESP.png\",\"dedataastavotez\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"makethefuture\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Shell_makethefuture_2019\\/Shell_makethefuture_2019.png\",\"ユニクロ感謝祭\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UNIQLO_Kanshasai_2019_v3\\/UNIQLO_Kanshasai_2019_v3.png\",\"raysbéisbol\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Tampa\\/MLB_2019_Tampa.png\",\"kohlscashsweepstakes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Kohls_Q2_2019\\/Kohls_Q2_2019.png\",\"darkphoenix\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/20thCenturyFox_DarkPhoenix_v2_newartwork\\/20thCenturyFox_DarkPhoenix_v2_newartwork.png\",\"moneyviva\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Midosuke_2019\\/Midosuke_2019.png\",\"トイストーリー4\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"mib\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_2019\\/Sony_MenInBlack_2019.png\",\"cmtaward\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CMTMusicAwards_2019\\/CMTMusicAwards_2019.png\",\"nowapocalypsestarz\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_NowApocalypse_2019\\/STARZ_NowApocalypse_2019.png\",\"bang\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_Hangzhou\\/OWL_19_Hangzhou.png\",\"elezzjonijietue2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"itsus\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UsMovie_2018\\/UsMovie_2018.png\",\"semainemondialeemi\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks.png\",\"faceofcity\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_ORL\\/MLS_19_ORL.png\",\"팔콘\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Falcon\\/Avengers_Endgame_2019_Falcon.png\",\"vainogás\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CocaCola_VaiNoGas\\/CocaCola_VaiNoGas.png\",\"sheriffwoody\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Woody_v2\\/Disney_ToyStory4_Woody_v2.png\",\"코르그\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Korg\\/Avengers_Endgame_2019_Korg.png\",\"星ドラ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Hoshidora_May2019\\/Hoshidora_May2019.png\",\"bulbassauro\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Bulbasaur\\/WBPikachu_Bulbasaur.png\",\"dragalialost\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/dragalialos_March2019_v2\\/dragalialos_March2019_v2.png\",\"shaftsays\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_ShaftMovie_2019\\/WB_ShaftMovie_2019.png\",\"ilguantodellinfinito\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"lastog\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TLOG_Season2\\/TLOG_Season2.png\",\"いつかきっとここで\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RakutenTV_NBA_Logo_2019_v2\\/RakutenTV_NBA_Logo_2019_v2.png\",\"realitystone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_InfinityGauntlet\\/Avengers_Endgame_2019_InfinityGauntlet.png\",\"boundbyblue\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_Part2_2019_BoundByBlue\\/AFL_Part2_2019_BoundByBlue.png\",\"usavstheworld\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FoxSports_WWC_2019\\/FoxSports_WWC_2019.png\",\"peterquill\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Starlord\\/Avengers_Endgame_2019_Starlord.png\",\"itchapter2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"mapfreandrafa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MapfreRafaNadal_2019\\/MapfreRafaNadal_2019.png\",\"विश्वपर्यावरणदिवस\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"alligatormovie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Crawl_2019\\/Paramount_Crawl_2019.png\",\"全球媒介和信息素養週\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks.png\",\"シェンロン待機中\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Dragonball_Legends_2019\\/Dragonball_Legends_2019.png\",\"오븐브레이크\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CookieRunGame_2019\\/CookieRunGame_2019.png\",\"georgeharrison\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/GeorgeHarrison_2019_v3\\/GeorgeHarrison_2019_v3.png\",\"worldpride\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019_StoneWall50\\/Pride2019_StoneWall50.png\",\"行くぜ令和\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AbemaTV_2019\\/AbemaTV_2019.png\",\"bethefight\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_CLE\\/NBA_18_CLE.png\",\"g20osaka\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"xmensmith\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DarkPhoenix_XMenSmith\\/DarkPhoenix_XMenSmith.png\",\"clippernation\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_LAC\\/NBA_18_LAC.png\",\"openingday\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019\\/MLB_2019.png\",\"bisasam\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Bulbasaur\\/WBPikachu_Bulbasaur.png\",\"tredesideri\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"thefutureischingona\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_Vida_S2\\/STARZ_Vida_S2.png\",\"denhärgångenröstarjag\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"sudamericana\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sulamericana_2019\\/Sulamericana_2019.png\",\"avengerendgame\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_add2\\/Avengers_Endgame_2019_add2.png\",\"갓세븐\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_GOT7_2019_GOT7WORLDTOUR\\/KPOP_GOT7_2019_GOT7WORLDTOUR.png\",\"livevictoriously\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/GreyGoose_REBRAND_2019\\/GreyGoose_REBRAND_2019.png\",\"capitãoamérica\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainAmerica\\/Avengers_Endgame_2019_CaptainAmerica.png\",\"quicksilver\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DarkPhoenix_Quicksilver\\/DarkPhoenix_Quicksilver.png\",\"rocketmannl\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Rocket\\/Paramount_Rocketman_Rocket.png\",\"g20大阪\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/G20Osaka_2019\\/G20Osaka_2019.png\",\"ジョジョピタ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Jojos_PitaPataHop_2019\\/Jojos_PitaPataHop_2019.png\",\"budknight\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/BudLight_BudKnight_2019\\/BudLight_BudKnight_2019.png\",\"nbafinals\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBAFinals2019\\/NBAFinals2019.png\",\"raysup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Tampa\\/MLB_2019_Tampa.png\",\"ironman\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_IronMan\\/Avengers_Endgame_2019_IronMan.png\",\"weareraiders\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_WeAreRaiders\\/NRL2019_WeAreRaiders.png\",\"tentorazidemvolit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"rocketraccoon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Rocket\\/Avengers_Endgame_2019_Rocket.png\",\"máquinadeguerra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WarMachine\\/Avengers_Endgame_2019_WarMachine.png\",\"arg\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_ARG\\/FIFAWWC_2019_ARG.png\",\"デスナイト\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LineageMSecondBrand_2019\\/LineageMSecondBrand_2019.png\",\"ウォーマシン\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WarMachine\\/Avengers_Endgame_2019_WarMachine.png\",\"alleyesonusa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FoxSports_WWC_2019\\/FoxSports_WWC_2019.png\",\"uptheblues\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL_2019_MidSeason_UpTheBlues\\/NRL_2019_MidSeason_UpTheBlues.png\",\"ausnavy\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AusNavy_DFR_2019\\/AusNavy_DFR_2019.png\",\"キャッシュレス\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Aomaru2019\\/Aomaru2019.png\",\"truetotheblue\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Seattle\\/MLB_2019_Seattle.png\",\"капитанмарвел\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainMarvel\\/Avengers_Endgame_2019_CaptainMarvel.png\",\"amorésamor\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pride2019\\/Pride2019.png\",\"リネージュm\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LineageMFirstBrand_2019\\/LineageMFirstBrand_2019.png\",\"lalampada\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Lamp\\/Disney_Aladdin_Lamp.png\",\"tonystark\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_IronMan\\/Avengers_Endgame_2019_IronMan.png\",\"myheartbeatstrue\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AFL_Part2_2019_MyHeartBeatsTrue\\/AFL_Part2_2019_MyHeartBeatsTrue.png\",\"compartilheobem\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pedigree_DogBots_2019\\/Pedigree_DogBots_2019.png\",\"alienswirlingsaucers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_ToyStoryLand\\/DisneyParks_ToyStoryLand.png\",\"threewishes\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"nitegoods\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Adidas_NiteJogger_2019_add\\/Adidas_NiteJogger_2019_add.png\",\"jasonholder\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Players_JasonHolder\\/CricketWorldCup_2019_Players_JasonHolder.png\",\"facetheintensity\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/TAKIS_WILD_2019\\/TAKIS_WILD_2019.png\",\"laguêpe\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wasp\\/Avengers_Endgame_2019_Wasp.png\",\"diamondgeezer\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bethesda_RAGE2_2019\\/Bethesda_RAGE2_2019.png\",\"aceshigh\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/OWL_19_London\\/OWL_19_London.png\",\"mouseparty\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_NowMoreThanEver_v2\\/DisneyParks_NowMoreThanEver_v2.png\",\"vivoxmaineriseup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MaineforVivo_2019\\/MaineforVivo_2019.png\",\"persiannewyear\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/nowruz2018_v4\\/nowruz2018_v4.png\",\"вилкинс\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_Forky\\/Disney_ToyStory4_Forky.png\",\"ミドすけお願い\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Midosuke_2019\\/Midosuke_2019.png\",\"letskcon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KCON2019\\/KCON2019.png\",\"letsgobluejays\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Toronto\\/MLB_2019_Toronto.png\",\"electionsue19\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"steverogers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_CaptainAmerica\\/Avengers_Endgame_2019_CaptainAmerica.png\",\"siemprereal\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Kansas\\/MLB_2019_Kansas.png\",\"tentokratbuduvolit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EUElections_VoterEngagement_2019\\/EUElections_VoterEngagement_2019.png\",\"spacebeer\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Budweiser_SpaceBeer_2019\\/Budweiser_SpaceBeer_2019.png\",\"msinnovationsummit\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Microsoft_APAC_2019_v2\\/Microsoft_APAC_2019_v2.png\",\"parabellum\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/JohnWick_3_ext\\/JohnWick_3_ext.png\",\"aviciiheaven\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avicii_2019\\/Avicii_2019.png\",\"galaxydefenders\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_Pawny_2019\\/Sony_MenInBlack_Pawny_2019.png\",\"nbb\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBB_2018_2019Season\\/NBB_2018_2019Season.png\",\"supersmashbrosultimate\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NintendoLaunch_2019\\/NintendoLaunch_2019.png\",\"平成最後にありがとう\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AbemaTV_2019\\/AbemaTV_2019.png\",\"世界環境デー\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WorldEnvironmentDay_2019\\/WorldEnvironmentDay_2019.png\",\"ngabuburight\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Traveloka_Xperience_2019\\/Traveloka_Xperience_2019.png\",\"europawahl2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"máquinadecombate\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_WarMachine\\/Avengers_Endgame_2019_WarMachine.png\",\"グリムノーツ\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/GrimmsEchoes_PR_2019\\/GrimmsEchoes_PR_2019.png\",\"madonna\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Madonna_2019\\/Madonna_2019.png\",\"uniteandconquer\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_ATL\\/MLS_19_ATL.png\",\"meninmaroon\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Teams_MenInMaroon\\/CricketWorldCup_2019_Teams_MenInMaroon.png\",\"aaronfinch\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Players_AaronFinch\\/CricketWorldCup_2019_Players_AaronFinch.png\",\"bll2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HBO_BigLittleLies_Season2_2019\\/HBO_BigLittleLies_Season2_2019.png\",\"kkr\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KolkataKnights_2019\\/KolkataKnights_2019.png\",\"ojodehalcón\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Hawkeye\\/Avengers_Endgame_2019_Hawkeye.png\",\"g2army\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_AllAccessTeam_G2_ext19\\/Esports_AllAccessTeam_G2_ext19.png\",\"rolandgarros\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FrenchOpen_RolandGarros_2019\\/FrenchOpen_RolandGarros_2019.png\",\"whitesox\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Chicago\\/MLB_2019_Chicago.png\",\"mibr\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Esports_V2_19_MIBR\\/Esports_V2_19_MIBR.png\",\"daysgone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PlayStation_DaysGone\\/PlayStation_DaysGone.png\",\"therookie\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ABC_TheRookie_2018_ext\\/ABC_TheRookie_2018_ext.png\",\"mickeymouseclub\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Mickey90th_2018\\/Mickey90th_2018.png\",\"nbatwitterlive\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBATwitterLive2019\\/NBATwitterLive2019.png\",\"kcon2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KCON2019\\/KCON2019.png\",\"neverordinary\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_Rocketman_Star\\/Paramount_Rocketman_Star.png\",\"معمل_الصراحة\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FairFactory_Jawwy\\/FairFactory_Jawwy.png\",\"serba10ribu\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ShopeeRamadan_May_2019\\/ShopeeRamadan_May_2019.png\",\"bra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_BRA\\/FIFAWWC_2019_BRA.png\",\"vedovanera\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_BlackWidow\\/Avengers_Endgame_2019_BlackWidow.png\",\"محافظة_العلا\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlUlaCity_2019\\/AlUlaCity_2019.png\",\"birdland\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Baltimore\\/MLB_2019_Baltimore.png\",\"nowapocalypse\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/STARZ_NowApocalypse_2019\\/STARZ_NowApocalypse_2019.png\",\"pinstripepride\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Yankees\\/MLB_2019_Yankees.png\",\"nationalconcertweek\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NationalConcertWeek_2019\\/NationalConcertWeek_2019.png\",\"semanadeeducaçãoemmídia\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks.png\",\"julieandalmonds\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AlmondBoardofCalifornia_WWC\\/AlmondBoardofCalifornia_WWC.png\",\"princeali\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"hilanderas\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FeriaDelHilo_v2\\/FeriaDelHilo_v2.png\",\"swe\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_SWE\\/FIFAWWC_2019_SWE.png\",\"من_الرابح_الأكبر\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/invasionarab1_Ramadan_2019\\/invasionarab1_Ramadan_2019.png\",\"طيران_ناس\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FlyNas_2019\\/FlyNas_2019.png\",\"mystique\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DarkPhoenix_mystique\\/DarkPhoenix_mystique.png\",\"lionnesindomptables\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_CMR\\/FIFAWWC_2019_CMR.png\",\"afriendlikeme\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_Genie\\/Disney_Aladdin_Genie.png\",\"crew96\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLS_19_COL\\/MLS_19_COL.png\",\"studentsstandup\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Parkland_Extension\\/Parkland_Extension.png\",\"petcemetary\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Paramount_PetSematary_2019_v2\\/Paramount_PetSematary_2019_v2.png\",\"vforvictory\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Riot_TeamVitality\\/Riot_TeamVitality.png\",\"twinsbéisbol\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Minn\\/MLB_2019_Minn.png\",\"killthislove\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_BLACKPINK_2019\\/KPOP_BLACKPINK_2019.png\",\"toystorybopeep\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_ToyStory4_BoPeep\\/Disney_ToyStory4_BoPeep.png\",\"itcapítulo2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_It_Chp2\\/WB_It_Chp2.png\",\"lechardonneret\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_TheGoldfinch_2019\\/WB_TheGoldfinch_2019.png\",\"smashperrier\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NestlePerrier_May2019\\/NestlePerrier_May2019.png\",\"redmiy3\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/RedmiY3_2019\\/RedmiY3_2019.png\",\"guccicruise20\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Gucci_Cruise20\\/Gucci_Cruise20.png\",\"xmenbeast\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DarkPhoenix_XMenBeast\\/DarkPhoenix_XMenBeast.png\",\"كفاءة_الطاقة\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/taqa_sa_2019\\/taqa_sa_2019.png\",\"وزارة_الثقافة_السعودية\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MOCSaudi_2019\\/MOCSaudi_2019.png\",\"afghanatalan\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Teams_AfghanAtalan\\/CricketWorldCup_2019_Teams_AfghanAtalan.png\",\"thegoldfinch\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WB_TheGoldfinch_2019\\/WB_TheGoldfinch_2019.png\",\"令和ニッポンの未来\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/AbemaTV_2019\\/AbemaTV_2019.png\",\"dimuthkarunaratne\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/CricketWorldCup_2019_Players_DimuthKarunaratne\\/CricketWorldCup_2019_Players_DimuthKarunaratne.png\",\"thehaloway\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_LA\\/MLB_2019_LA.png\",\"lcs\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/LCS_2019_change\\/LCS_2019_change.png\",\"dontknowwhattodo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KPOP_BLACKPINK_2019\\/KPOP_BLACKPINK_2019.png\",\"booksmartbffs\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Booksmart_2019\\/Booksmart_2019.png\",\"princealiababwa\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Disney_Aladdin_2019\\/Disney_Aladdin_2019.png\",\"orbis\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ORBIS_2019\\/ORBIS_2019.png\",\"shuri\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Shuri\\/Avengers_Endgame_2019_Shuri.png\",\"wastelandsuperhero\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Bethesda_RAGE2_2019\\/Bethesda_RAGE2_2019.png\",\"huaweip30\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Huawei_P30_2019\\/Huawei_P30_2019.png\",\"fra\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_FRA\\/FIFAWWC_2019_FRA.png\",\"gohardgoknights\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NRL2019_GoHardGoKnights\\/NRL2019_GoHardGoKnights.png\",\"meninblackinternational\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Sony_MenInBlack_2019\\/Sony_MenInBlack_2019.png\",\"shopeebigramadhansale\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ShopeeRamadan_May_2019\\/ShopeeRamadan_May_2019.png\",\"semanaglobalami\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks\\/MediaInformationLiteracyWeeks_2018_GlobalMILWeeks.png\",\"feiticeiraescarlate\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_ScarletWitch\\/Avengers_Endgame_2019_ScarletWitch.png\",\"thor\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Thor\\/Avengers_Endgame_2019_Thor.png\",\"wakanda\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Okoye\\/Avengers_Endgame_2019_Okoye.png\",\"mymarksfave\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/PercyPig_2019\\/PercyPig_2019.png\",\"alleyesnorth\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/NBA_18_MIN\\/NBA_18_MIN.png\",\"корг\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Korg\\/Avengers_Endgame_2019_Korg.png\",\"그루트\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Groot\\/Avengers_Endgame_2019_Groot.png\",\"小火龙\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/WBPikachu_Charmander\\/WBPikachu_Charmander.png\",\"thehotzone\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/HotZone_NatGeoChannel_2019\\/HotZone_NatGeoChannel_2019.png\",\"festadopikachu\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Pikachu_Pokemon_PartnerUp_2019\\/Pikachu_Pokemon_PartnerUp_2019.png\",\"hungryforloveisland\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/UberEatsUK_LoveIsland_2019_v2\\/UberEatsUK_LoveIsland_2019_v2.png\",\"korbolorbojeetbo\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/KolkataKnights_2019\\/KolkataKnights_2019.png\",\"avengers\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019\\/Avengers_Endgame_2019.png\",\"kxip\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/IPL_2019_2_KXIP\\/IPL_2019_2_KXIP.png\",\"evropskévolby2019\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/EU_Election_2019\\/EU_Election_2019.png\",\"itcanwait\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/ITCanWait_2019\\/ITCanWait_2019.png\",\"ボスからtea\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Suntory_CraftBossTea\\/Suntory_CraftBossTea.png\",\"desde1869\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/MLB_2019_Cincinnati\\/MLB_2019_Cincinnati.png\",\"doctorstrange\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_DoctorStrange\\/Avengers_Endgame_2019_DoctorStrange.png\",\"swnt\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/FIFAWWC_2019_SCO\\/FIFAWWC_2019_SCO.png\",\"웡\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Avengers_Endgame_2019_Wong\\/Avengers_Endgame_2019_Wong.png\",\"together_for_life\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Zamzam_2019\\/Zamzam_2019.png\",\"godzilla2\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/Godzilla_WB_2019\\/Godzilla_WB_2019.png\",\"magickingdom\":\"https:\\/\\/abs.twimg.com\\/hashflags\\/DisneyParks_MickeyEars_Flight2\\/DisneyParks_MickeyEars_Flight2.png\"},\"profile_user\":{\"id\":786939553,\"id_str\":\"786939553\",\"name\":\"Mars Weather\",\"screen_name\":\"MarsWxReport\",\"location\":\"Gale Crater, Mars\",\"url\":\"https:\\/\\/mars.nasa.gov\\/news\\/8415\\/insight-is-the-newest-mars-weather-service\\/\",\"description\":\"Updates as avail from the REMS weather instrument aboard @MarsCuriosity. Data credit: Centro deAstrobiologia, FMI, JPL\\/NASA, Not an official acct.\",\"protected\":false,\"followers_count\":46014,\"friends_count\":53,\"listed_count\":347,\"created_at\":\"Tue Aug 28 12:48:50 +0000 2012\",\"favourites_count\":289,\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":true,\"verified\":false,\"statuses_count\":1849,\"lang\":null,\"contributors_enabled\":false,\"is_translator\":false,\"is_translation_enabled\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/2552209293\\/220px-Mars_atmosphere_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/2552209293\\/220px-Mars_atmosphere_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/786939553\\/1550640093\",\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"FFFFFF\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"has_extended_profile\":false,\"default_profile\":false,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null,\"business_profile_state\":\"none\",\"translator_type\":\"none\"},\"profileEditingCSSBundle\":\"https:\\/\\/abs.twimg.com\\/a\\/1559783714\\/css\\/t1\\/twitter_profile_editing.bundle.css\",\"profile_id\":786939553,\"business_profile\":false,\"b2c_logged_out_support_indicators_enabled\":true,\"business_profile_featured_collections_complete\":false,\"cardsGallery\":true,\"injectComposedTweets\":false,\"inlineProfileEditing\":false,\"gdprSoftBounceEnabled\":false,\"isClusterFollowReplenishEnabled\":false,\"autoplayEnabled\":true,\"periscopeLiveStatusPollInterval\":15000,\"trendsCacheKey\":null,\"decider_personalized_trends\":false,\"trendsEndpoint\":\"\\/i\\/trends\",\"wtfOptions\":{\"pc\":true,\"connections\":true,\"limit\":3,\"display_location\":\"profile-sidebar\",\"dismissable\":true,\"similar_to_user_id\":\"786939553\"},\"showSensitiveContent\":false,\"autoPlayBalloonsAnimation\":false,\"momentsNuxTooltipsEnabled\":false,\"isCurrentUser\":false,\"isSensitiveProfile\":false,\"timeline_url\":\"\\/i\\/profiles\\/show\\/MarsWxReport\\/timeline\\/tweets\",\"initialState\":{\"title\":\"Mars Weather (@MarsWxReport) | Twitter\",\"section\":null,\"module\":\"app\\/pages\\/profile\\/highline_landing\",\"cache_ttl\":300,\"body_class_names\":\"three-col logged-out user-style-MarsWxReport enhanced-mini-profile ProfilePage ProfilePage--withWarning\",\"doc_class_names\":\"route-profile\",\"route_name\":\"profile\",\"page_container_class_names\":\"AppContent\",\"ttft_navigation\":false}}'/>\n",
" <input class=\"swift-boot-module\" type=\"hidden\" value=\"app/pages/profile/highline_landing\"/>\n",
" <input id=\"swift-module-path\" type=\"hidden\" value=\"https://abs.twimg.com/k/swift/en\"/>\n",
" <script async=\"\" src=\"https://abs.twimg.com/k/en/init.en.6c678095fdbcae875604.js\">\n",
" </script>\n",
" </body>\n",
"</html>\n",
"\n"
]
}
],
"source": [
"print(soup3.prettify())"
]
},
{
"cell_type": "code",
"execution_count": 84,
"metadata": {},
"outputs": [],
"source": [
"weather = soup3.find(\"p\", class_=\"TweetTextSize TweetTextSize--normal js-tweet-text tweet-text\").text"
]
},
{
"cell_type": "code",
"execution_count": 85,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"InSight sol 188 (2019-06-07) low -102.5ºC (-152.6ºF) high -21.9ºC (-7.4ºF)\n",
"winds from the SSE at 4.8 m/s (10.8 mph) gusting to 15.6 m/s (35.0 mph)\n",
"pressure at 7.60 hPapic.twitter.com/ocUTA1rgaU\n"
]
}
],
"source": [
"print(weather)"
]
},
{
"cell_type": "code",
"execution_count": 86,
"metadata": {},
"outputs": [],
"source": [
"mars[\"weather\"]=weather"
]
},
{
"cell_type": "code",
"execution_count": 87,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{'title': \"\\n\\nNASA's Curiosity Mars Rover Finds a Clay Cache\\n\\n\", 'paragraph': '\\nThe rover recently drilled two samples, and both showed the highest levels of clay ever found during the mission.\\n', 'featured_image_url': 'https://www.jpl.nasa.gov//spaceimages/images/largesize/PIA17009_hires.jpg', 'weather': 'InSight sol 188 (2019-06-07) low -102.5ºC (-152.6ºF) high -21.9ºC (-7.4ºF)\\nwinds from the SSE at 4.8 m/s (10.8 mph) gusting to 15.6 m/s (35.0 mph)\\npressure at 7.60 hPapic.twitter.com/ocUTA1rgaU'}\n"
]
}
],
"source": [
"print(mars)"
]
},
{
"cell_type": "code",
"execution_count": 88,
"metadata": {},
"outputs": [],
"source": [
"facts_url = 'https://space-facts.com/mars/'\n",
"mars_facts = pd.read_html(facts_url)"
]
},
{
"cell_type": "code",
"execution_count": 89,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[ 0 1\n",
"0 Equatorial Diameter: 6,792 km\n",
"1 Polar Diameter: 6,752 km\n",
"2 Mass: 6.42 x 10^23 kg (10.7% Earth)\n",
"3 Moons: 2 (Phobos & Deimos)\n",
"4 Orbit Distance: 227,943,824 km (1.52 AU)\n",
"5 Orbit Period: 687 days (1.9 years)\n",
"6 Surface Temperature: -153 to 20 °C\n",
"7 First Record: 2nd millennium BC\n",
"8 Recorded By: Egyptian astronomers]\n"
]
}
],
"source": [
"print(mars_facts)"
]
},
{
"cell_type": "code",
"execution_count": 90,
"metadata": {},
"outputs": [],
"source": [
"mars_facts[0].rename(columns={0:\"Type\", 1: \"Stat\"}, inplace=True)\n"
]
},
{
"cell_type": "code",
"execution_count": 91,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[ Type Stat\n",
"0 Equatorial Diameter: 6,792 km\n",
"1 Polar Diameter: 6,752 km\n",
"2 Mass: 6.42 x 10^23 kg (10.7% Earth)\n",
"3 Moons: 2 (Phobos & Deimos)\n",
"4 Orbit Distance: 227,943,824 km (1.52 AU)\n",
"5 Orbit Period: 687 days (1.9 years)\n",
"6 Surface Temperature: -153 to 20 °C\n",
"7 First Record: 2nd millennium BC\n",
"8 Recorded By: Egyptian astronomers]\n"
]
}
],
"source": [
"print(mars_facts)"
]
},
{
"cell_type": "code",
"execution_count": 92,
"metadata": {},
"outputs": [],
"source": [
"marsdf = mars_facts[0]"
]
},
{
"cell_type": "code",
"execution_count": 93,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" Type Stat\n",
"0 Equatorial Diameter: 6,792 km\n",
"1 Polar Diameter: 6,752 km\n",
"2 Mass: 6.42 x 10^23 kg (10.7% Earth)\n",
"3 Moons: 2 (Phobos & Deimos)\n",
"4 Orbit Distance: 227,943,824 km (1.52 AU)\n",
"5 Orbit Period: 687 days (1.9 years)\n",
"6 Surface Temperature: -153 to 20 °C\n",
"7 First Record: 2nd millennium BC\n",
"8 Recorded By: Egyptian astronomers\n"
]
}
],
"source": [
"print(marsdf)"
]
},
{
"cell_type": "code",
"execution_count": 94,
"metadata": {},
"outputs": [],
"source": [
"mars_html = marsdf.to_html()"
]
},
{
"cell_type": "code",
"execution_count": 95,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Type</th>\n",
" <th>Stat</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Equatorial Diameter:</td>\n",
" <td>6,792 km</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Polar Diameter:</td>\n",
" <td>6,752 km</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Mass:</td>\n",
" <td>6.42 x 10^23 kg (10.7% Earth)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Moons:</td>\n",
" <td>2 (Phobos & Deimos)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Orbit Distance:</td>\n",
" <td>227,943,824 km (1.52 AU)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>Orbit Period:</td>\n",
" <td>687 days (1.9 years)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>Surface Temperature:</td>\n",
" <td>-153 to 20 °C</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>First Record:</td>\n",
" <td>2nd millennium BC</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>Recorded By:</td>\n",
" <td>Egyptian astronomers</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n"
]
}
],
"source": [
"print(mars_html)"
]
},
{
"cell_type": "code",
"execution_count": 96,
"metadata": {},
"outputs": [],
"source": [
"mars['html'] = mars_html"
]
},
{
"cell_type": "code",
"execution_count": 97,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'title': \"\\n\\nNASA's Curiosity Mars Rover Finds a Clay Cache\\n\\n\",\n",
" 'paragraph': '\\nThe rover recently drilled two samples, and both showed the highest levels of clay ever found during the mission.\\n',\n",
" 'featured_image_url': 'https://www.jpl.nasa.gov//spaceimages/images/largesize/PIA17009_hires.jpg',\n",
" 'weather': 'InSight sol 188 (2019-06-07) low -102.5ºC (-152.6ºF) high -21.9ºC (-7.4ºF)\\nwinds from the SSE at 4.8 m/s (10.8 mph) gusting to 15.6 m/s (35.0 mph)\\npressure at 7.60 hPapic.twitter.com/ocUTA1rgaU',\n",
" 'html': '<table border=\"1\" class=\"dataframe\">\\n <thead>\\n <tr style=\"text-align: right;\">\\n <th></th>\\n <th>Type</th>\\n <th>Stat</th>\\n </tr>\\n </thead>\\n <tbody>\\n <tr>\\n <th>0</th>\\n <td>Equatorial Diameter:</td>\\n <td>6,792 km</td>\\n </tr>\\n <tr>\\n <th>1</th>\\n <td>Polar Diameter:</td>\\n <td>6,752 km</td>\\n </tr>\\n <tr>\\n <th>2</th>\\n <td>Mass:</td>\\n <td>6.42 x 10^23 kg (10.7% Earth)</td>\\n </tr>\\n <tr>\\n <th>3</th>\\n <td>Moons:</td>\\n <td>2 (Phobos & Deimos)</td>\\n </tr>\\n <tr>\\n <th>4</th>\\n <td>Orbit Distance:</td>\\n <td>227,943,824 km (1.52 AU)</td>\\n </tr>\\n <tr>\\n <th>5</th>\\n <td>Orbit Period:</td>\\n <td>687 days (1.9 years)</td>\\n </tr>\\n <tr>\\n <th>6</th>\\n <td>Surface Temperature:</td>\\n <td>-153 to 20 °C</td>\\n </tr>\\n <tr>\\n <th>7</th>\\n <td>First Record:</td>\\n <td>2nd millennium BC</td>\\n </tr>\\n <tr>\\n <th>8</th>\\n <td>Recorded By:</td>\\n <td>Egyptian astronomers</td>\\n </tr>\\n </tbody>\\n</table>'}"
]
},
"execution_count": 97,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"mars"
]
},
{
"cell_type": "code",
"execution_count": 98,
"metadata": {},
"outputs": [],
"source": [
"mars_hem ='https://astrogeology.usgs.gov/search/results?q=hemisphere+enhanced&k1=target&v1=Mars'\n",
"browser.visit(mars_hem)"
]
},
{
"cell_type": "code",
"execution_count": 99,
"metadata": {},
"outputs": [],
"source": [
"soup5 = BeautifulSoup(browser.html, 'html.parser')"
]
},
{
"cell_type": "code",
"execution_count": 100,
"metadata": {},
"outputs": [],
"source": [
"class_collap_results = soup5.find('div', class_=\"collapsible results\")"
]
},
{
"cell_type": "code",
"execution_count": 101,
"metadata": {},
"outputs": [],
"source": [
"items = soup5.find('div', class_=\"collapsible results\").find_all('div',class_='item')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"items"
]
},
{
"cell_type": "code",
"execution_count": 102,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[<div class=\"item\"><a class=\"itemLink product-item\" href=\"/search/map/Mars/Viking/cerberus_enhanced\"><img alt=\"Cerberus Hemisphere Enhanced thumbnail\" class=\"thumb\" src=\"/cache/images/dfaf3849e74bf973b59eb50dab52b583_cerberus_enhanced.tif_thumb.png\"/></a><div class=\"description\"><a class=\"itemLink product-item\" href=\"/search/map/Mars/Viking/cerberus_enhanced\"><h3>Cerberus Hemisphere Enhanced</h3></a><span class=\"subtitle\" style=\"float:left\">image/tiff 21 MB</span><span class=\"pubDate\" style=\"float:right\"></span><br/><p>Mosaic of the Cerberus hemisphere of Mars projected into point perspective, a view similar to that which one would see from a spacecraft. This mosaic is composed of 104 Viking Orbiter images acquired…</p></div> <!-- end description --></div>,\n",
" <div class=\"item\"><a class=\"itemLink product-item\" href=\"/search/map/Mars/Viking/schiaparelli_enhanced\"><img alt=\"Schiaparelli Hemisphere Enhanced thumbnail\" class=\"thumb\" src=\"/cache/images/7677c0a006b83871b5a2f66985ab5857_schiaparelli_enhanced.tif_thumb.png\"/></a><div class=\"description\"><a class=\"itemLink product-item\" href=\"/search/map/Mars/Viking/schiaparelli_enhanced\"><h3>Schiaparelli Hemisphere Enhanced</h3></a><span class=\"subtitle\" style=\"float:left\">image/tiff 35 MB</span><span class=\"pubDate\" style=\"float:right\"></span><br/><p>Mosaic of the Schiaparelli hemisphere of Mars projected into point perspective, a view similar to that which one would see from a spacecraft. The images were acquired in 1980 during early northern…</p></div> <!-- end description --></div>,\n",
" <div class=\"item\"><a class=\"itemLink product-item\" href=\"/search/map/Mars/Viking/syrtis_major_enhanced\"><img alt=\"Syrtis Major Hemisphere Enhanced thumbnail\" class=\"thumb\" src=\"/cache/images/aae41197e40d6d4f3ea557f8cfe51d15_syrtis_major_enhanced.tif_thumb.png\"/></a><div class=\"description\"><a class=\"itemLink product-item\" href=\"/search/map/Mars/Viking/syrtis_major_enhanced\"><h3>Syrtis Major Hemisphere Enhanced</h3></a><span class=\"subtitle\" style=\"float:left\">image/tiff 25 MB</span><span class=\"pubDate\" style=\"float:right\"></span><br/><p>Mosaic of the Syrtis Major hemisphere of Mars projected into point perspective, a view similar to that which one would see from a spacecraft. This mosaic is composed of about 100 red and violet…</p></div> <!-- end description --></div>,\n",
" <div class=\"item\"><a class=\"itemLink product-item\" href=\"/search/map/Mars/Viking/valles_marineris_enhanced\"><img alt=\"Valles Marineris Hemisphere Enhanced thumbnail\" class=\"thumb\" src=\"/cache/images/04085d99ec3713883a9a57f42be9c725_valles_marineris_enhanced.tif_thumb.png\"/></a><div class=\"description\"><a class=\"itemLink product-item\" href=\"/search/map/Mars/Viking/valles_marineris_enhanced\"><h3>Valles Marineris Hemisphere Enhanced</h3></a><span class=\"subtitle\" style=\"float:left\">image/tiff 27 MB</span><span class=\"pubDate\" style=\"float:right\"></span><br/><p>Mosaic of the Valles Marineris hemisphere of Mars projected into point perspective, a view similar to that which one would see from a spacecraft. The distance is 2500 kilometers from the surface of…</p></div> <!-- end description --></div>]"
]
},
"execution_count": 102,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"items"
]
},
{
"cell_type": "code",
"execution_count": 110,
"metadata": {},
"outputs": [],
"source": [
"List=list()\n",
"image_urls = list()\n",
"titles = list()\n",
"for i in items:\n",
" title = i.h3.text\n",
" # titles.append(title)\n",
" href = \"https://astrogeology.usgs.gov\" + i.find('a',class_='itemLink product-item')['href']\n",
" browser.visit(href)\n",
" time.sleep(10)\n",
" soup6 = BeautifulSoup(browser.html, 'html.parser')\n",
" urls = soup6.find('div', class_='downloads').find('li').a['href']\n",
" # image_urls.append(urls)\n",
" \n",
" hem_dict = dict()\n",
" hem_dict['title'] = title\n",
" hem_dict['img_url'] = urls\n",
" List.append(hem_dict)\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 111,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[{'title': 'Cerberus Hemisphere Enhanced', 'img_url': 'http://astropedia.astrogeology.usgs.gov/download/Mars/Viking/cerberus_enhanced.tif/full.jpg'}, {'title': 'Schiaparelli Hemisphere Enhanced', 'img_url': 'http://astropedia.astrogeology.usgs.gov/download/Mars/Viking/schiaparelli_enhanced.tif/full.jpg'}, {'title': 'Syrtis Major Hemisphere Enhanced', 'img_url': 'http://astropedia.astrogeology.usgs.gov/download/Mars/Viking/syrtis_major_enhanced.tif/full.jpg'}, {'title': 'Valles Marineris Hemisphere Enhanced', 'img_url': 'http://astropedia.astrogeology.usgs.gov/download/Mars/Viking/valles_marineris_enhanced.tif/full.jpg'}]\n"
]
}
],
"source": [
"print(List)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.1"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
|
[
"rsimon5@gmu.edu"
] |
rsimon5@gmu.edu
|
f8829530e57c7661aff17909cf2af499c0580ec3
|
40f82a8341c7912540644fe5b51dc6e455ea8cb2
|
/shares/admin.py
|
6a9f67d06537c324008251fffef486777ce9b521
|
[] |
no_license
|
persionalWeb/persionalWeb
|
3765a3329ba34b4866774dc8167613e4a452043f
|
e80b1b92a1c55369d1f121d609b90f7edf47d588
|
refs/heads/master
| 2022-07-07T02:54:19.517215
| 2020-05-17T04:07:02
| 2020-05-17T04:07:02
| 258,783,764
| 1
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 605
|
py
|
from django.contrib import admin
from .models import Klins,Stocks
class KlinsAdmin(admin.ModelAdmin):
list_display = ['id','fid', 'code', 'name', 'short_data', 'flag', 'addtime']
search_fields = ['name']
list_filter = ['flag']
list_per_page = 10
ordering = ['id']
class StocksAdmin(admin.ModelAdmin):
list_display = ['id','fid', 'code', 'name', 'industry', 'area', 'price_change', 'pricediff', 'totals', 'short_data', 'addtime']
search_fields = ['name']
list_per_page = 10
ordering = ['id']
admin.site.register(Klins,KlinsAdmin)
admin.site.register(Stocks,StocksAdmin)
|
[
"63894777+niexingang123@users.noreply.github.com"
] |
63894777+niexingang123@users.noreply.github.com
|
e179478d80e77a3260a018b7c4f15a9b826bef9c
|
3f364166a2e89c57c8f823d68568eea84920817e
|
/comment/migrations/0001_initial.py
|
b76d98a708b72b9dcf6c574f34888243be4413ef
|
[] |
no_license
|
damondengxin/forum
|
84f66b90c8660e43c5f6fccd89d267c083c0a77f
|
8fd4337cb63a63f7aaf108cfeba90c7043d02e83
|
refs/heads/master
| 2020-04-12T05:37:48.748073
| 2016-10-13T07:27:44
| 2016-10-13T07:27:44
| 64,310,328
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,228
|
py
|
# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2016-09-01 01:48
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = [
('article', '0003_auto_20160901_0948'),
]
operations = [
migrations.CreateModel(
name='Comment',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('owner', models.CharField(max_length=50, verbose_name='作者')),
('content', models.CharField(max_length=10000, verbose_name='评论内容')),
('status', models.IntegerField(choices=[(0, '正常'), (-1, '删除')], verbose_name='评论状态')),
('create_timestamp', models.DateTimeField(auto_now_add=True, verbose_name='创建时间')),
('last_update_timestamp', models.DateTimeField(auto_now=True, verbose_name='最后更新时间')),
('article', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='article.Article', verbose_name='文章')),
],
),
]
|
[
"air@MacbookdeMacBook-Air.local"
] |
air@MacbookdeMacBook-Air.local
|
3402c06780d9b02619086786a13c693ba57cb730
|
8e936ff1b7b1dfe5cce859691cd45037552c1568
|
/kiasa.py
|
37025b2540366f07b2cdd80a600f1d55c1a8b217
|
[] |
no_license
|
mortimervonchappuis/Kiasa
|
be0db9950ea5ffa536d3f28baba72a35f5855a9d
|
b79743066bdbb159ef3d9a9fce1b505fd2c3c000
|
refs/heads/master
| 2020-12-21T00:44:09.135543
| 2020-02-02T22:45:25
| 2020-02-02T22:45:25
| 236,256,989
| 1
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 3,062
|
py
|
import pathos.pools as p
import chess.polyglot as opening
from random import shuffle
from copy import deepcopy as copy
from board import *
from time import time, sleep
from math import exp
class Kiasa:
def __init__(self, opening_book=True, variation=True, depth=3, offset=3):
self.chess = Board()
self.opening_book = opening_book
self.variation = variation
self.min_depth = depth
self.max_depth = depth + offset
self.count = 0
def __call__(self):
with opening.open_reader("data/performance.bin") as book:
moves = [entry.move for entry in book.find_all(self.chess.board)]
if moves and self.opening_book:
if self.variation:
shuffle(moves)
phi = lambda x: 1/(1+exp(-x))-0.5
move = moves[0]
self.chess(move)
sleep(1)
print(f"""
OPENING MODE
MOVE: {move}
""")
return move, phi(self.chess.util)
t = time()
moves = self.chess.legal_moves()
if len(list(moves)) == 1:
move = list(moves)[0]
self.chess(move)
return move, self.chess.utility()
alpha=float('-inf')
beta=float('inf')
result = None
boards = sorted(((copy(self.chess)(move), False, move) for move in moves), key=lambda x: x[0].util, reverse=self.chess.turn())
self.count = 0
if self.chess.turn():
value = float('-inf')
for board, urgent, move in boards:
self.count += 1
alphabeta_result = self.alphabeta(board, urgent, 1, alpha, beta)
if value <= alphabeta_result:
value = alphabeta_result
result = move
alpha = max(value, alpha)
if alpha >= beta:
break
else:
value = float('inf')
for board, urgent, move in boards:
self.count += 1
alphabeta_result = self.alphabeta(board, urgent, 1, alpha, beta)
if value >= alphabeta_result:
value = alphabeta_result
result = move
beta = min(value, beta)
if alpha >= beta:
break
if result is None:
move = 'RESIGN'
else:
move = result.uci().upper()
timer = round(time()-t, 1)
print(f"""
MOVE: {move}
UTIL: {round(value, 3)}
TIME: {timer} s
NODE: {self.count}
ONCE: {round(timer/self.count*1e3, 3)} ms""")
self.chess(result)
return result, value
def alphabeta(self, chess, urgent, depth=0, alpha=float('-inf'), beta=float('inf')):
if chess.board.is_repetition(2):
return 0
if chess.board.is_game_over():
return chess.util
if (depth >= self.min_depth and not urgent) or depth >= self.max_depth:
return chess.util
boards = sorted(((copy(chess)(move), chess.is_capture(move) or chess.board.is_check()) for move in chess.legal_moves()), key=lambda x: x[0].util, reverse=chess.turn())
if chess.turn():
value = float('-inf')
for board, urgent in boards:
self.count += 1
value = max(value, self.alphabeta(board, urgent, depth+1, alpha, beta))
alpha = max(value, alpha)
if alpha >= beta:
break
return value
else:
value = float('inf')
for board, urgent in boards:
self.count += 1
value = min(value, self.alphabeta(board, urgent, depth+1, alpha, beta))
beta = min(value, beta)
if alpha >= beta:
break
return value
|
[
"mortimervonchappuis@protonmail.com"
] |
mortimervonchappuis@protonmail.com
|
57dcf4ac4135b21514dedd7221615770f17b6223
|
5b315e1606c8b3c753431f028e9bb76600148db7
|
/todo_list/admin.py
|
857b3bd6df7d0d13fc69369d7feeffcd07676f99
|
[] |
no_license
|
abel-masila/django_todo
|
0e23d45fefc45a0e9463639dbe7125d4a0fec8cf
|
634914967dc024e1a765fa8618481a23285cea7e
|
refs/heads/master
| 2020-04-30T01:06:40.794234
| 2019-03-23T13:40:02
| 2019-03-23T13:40:02
| 176,520,149
| 1
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 114
|
py
|
from django.contrib import admin
from .models import List
# Register your models here.
admin.site.register(List)
|
[
"abelmasila@gmail.com"
] |
abelmasila@gmail.com
|
17e6f75ed18e0677f37465f1e06fd694ac1f207c
|
7790e3a3f2de068fef343585ec856983591997a2
|
/employee/templatetags/custom_math.py
|
f84010231a266d25ecf80f4bd85b0e1e5c8705ff
|
[] |
no_license
|
mehdi1361/tadbir
|
ce702a9a02672826f0bf06e8d5cf0644efe31949
|
c0a67710099f713cf96930e25df708625de89a6f
|
refs/heads/master
| 2021-06-04T07:35:37.624372
| 2018-07-23T05:25:04
| 2018-07-23T05:25:04
| 148,870,028
| 0
| 0
| null | 2019-10-22T21:40:28
| 2018-09-15T04:40:26
|
HTML
|
UTF-8
|
Python
| false
| false
| 484
|
py
|
from django import template
from django.db.models import Sum
from bank.models import File
register = template.Library()
@register.simple_tag
def add(a, b):
return a + b
@register.simple_tag
def count_files(user):
files = File.objects.filter(employees__employee=user)
return files.count()
@register.simple_tag
def sum_main_deposit(user):
result = File.objects.filter(employees__employee=user).aggregate(Sum('main_deposit'))
return result['main_deposit__sum']
|
[
"mhd.mosavi@gmail.com"
] |
mhd.mosavi@gmail.com
|
4861ac85dd04717d62ba306fdcc2924c58a23062
|
8ffc97dcf9bab5c6d2a75039ed12b2bc9acf6548
|
/HMWK_03_saa3053/ParseTree/Literal.py
|
0b30ca2c4aa398e8ac5f77904653d72b9b8a514e
|
[] |
no_license
|
saidadem3/compilers
|
2f88f51d57dbffd9623de01c318d499f2e7d06df
|
56e4b07485d412325970170c7b1544b5e914621b
|
refs/heads/master
| 2022-03-08T11:26:16.555606
| 2019-10-24T11:00:47
| 2019-10-24T11:00:47
| 213,783,061
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 797
|
py
|
# Adem, Said
# saa3053
# 2019-10-23
#---------#---------#---------#---------#---------#--------#
import sys
from .common import *
#---------#---------#---------#---------#---------#--------#
class Literal() :
def __init__( self, lineNum, valType, value ) :
self.m_NodeType = 'Literal'
self.m_LineNum = lineNum
self.m_Type = valType
self.m_Value = value
#---------------------------------------
def dump( self, indent = 0, fp = sys.stdout ) :
if self.m_Type.isReal() :
dumpHeaderLine( indent, self.m_LineNum,
f'LITERAL {self.m_Type!r} {self.m_Value:.16e}', fp )
else :
dumpHeaderLine( indent, self.m_LineNum,
f'LITERAL {self.m_Type!r} {self.m_Value!r}', fp )
#---------#---------#---------#---------#---------#--------#
|
[
"saidadem3@gmail.com"
] |
saidadem3@gmail.com
|
5efdcd21a7640545a98bab365bbcc45294f53786
|
bafb1d32f798e69b2d811495f615f36a8761d776
|
/simplemooc/core/urls.py
|
7b54cb2c9250c416d5a19b1a41e4de9da8f5d8da
|
[] |
no_license
|
andreylucasantosss/TCC-Evolution
|
8c02eadd798ba8f7d773c8adcd5417efb0734f22
|
94a9fb15ba4ff0c6c4ecc92444840e0d8365ba39
|
refs/heads/master
| 2022-12-10T00:47:00.385427
| 2019-12-06T18:12:57
| 2019-12-06T18:12:57
| 216,825,473
| 0
| 0
| null | 2022-11-22T04:17:51
| 2019-10-22T13:49:43
|
HTML
|
UTF-8
|
Python
| false
| false
| 190
|
py
|
from django.conf.urls import include, url
from simplemooc.core import views
urlpatterns = [
url(r'^$', views.home, name='home'),
url(r'^contato/$', views.contact, name='contact')
]
|
[
"andrey.santos.as1@votorantim.com"
] |
andrey.santos.as1@votorantim.com
|
bb07eb8c3aa2bc5fe116eb4b06c0d8860091b772
|
5175cba1f24acd31db04bdf130d2da69eee31336
|
/tag_OG_text_with_XML_enit.py
|
0d42bb9e4b12848ea3ca2d4bbbedc3ea6f60fe9d
|
[] |
no_license
|
magpie1984/gv_info_extractor
|
f5ceb6a04368f5f918ed16749420afda866162f9
|
6fff8b4ac144a1feca57f310f0dbfcaaafc8cfbf
|
refs/heads/master
| 2021-08-23T13:02:56.567244
| 2017-12-05T00:49:18
| 2017-12-05T00:49:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 8,935
|
py
|
import xml.etree.ElementTree
import sys, json, re
import traceback
import os
from time import sleep
from unidecode import unidecode
reload(sys)
sys.setdefaultencoding('utf8')
def load_xml(input_filename):
xmldoc = xml.etree.ElementTree.parse(input_filename).getroot()
return xmldoc
def gather_entites(xmldoc):
entities = []
for entity in xmldoc.findall('./document/entity'):
tup = ( entity.attrib['TYPE'],
# entity.find('entity_mention/extent/charseq').text,
# entity.find('entity_mention/extent/charseq').attrib['START'],
# entity.find('entity_mention/extent/charseq').attrib['END'],
entity.find('entity_mention/head/charseq').text,
entity.find('entity_mention/head/charseq').attrib['START'],
entity.find('entity_mention/head/charseq').attrib['END'] )
entities.append(tup)
return entities
def gather_events(xmldoc):
events = []
for event in xmldoc.findall('./document/event'):
event_entities = []
for event_entity in event.findall('event_mention/anchor'):
tup = ( event_entity.find('charseq').text,
event_entity.find('charseq').attrib['START'],
event_entity.find('charseq').attrib['END'] )
event_entities.append(tup)
tup = (event.attrib['SUBTYPE'], event_entities)
events.append(tup)
return events
def get_Text(xmldoc):
return xml.etree.ElementTree.tostring(xmldoc.encode("utf-8"), method='text').strip().encode("utf-8")
def tag_og_text_with_entities(og_text, xml_info):
xml_info_entitites = gather_entites(xml_info)
tagged_text = og_text
tags_and_texts = []
# print xml_info_entitites
# print ""
og_search_index = 0
tags_search_index = 0
tag_num = 0
doc_tagged = {}
doc_tagged["og_text"] = og_text
doc_tagged["xml_info_entitites"] = xml_info_entitites
for tag in xml_info_entitites:
temp = {}
og_text_list = list(og_text)
#tag info
temp["tag"] = tag[0]
temp["entity_tag_id"] = tag_num
tag_num = tag_num + 1
# print ("tag", tag[0])
# print ("enity", tag[1])
temp["entity"] = tag[1]
# print ("search text", str(og_text[og_search_index:]))
print(temp["entity"])
temp["entity_start_in_og_text"] = og_search_index + re.search(r'\b{}\b'.format(tag[1]), str(og_text[og_search_index:])).start() #og_text[og_search_index:].find(tag[1] + " ")
temp["entity_end_in_og_text"] = temp["entity_start_in_og_text"] + len(tag[1])
# print ("start index:",temp["entity_start_in_og_text"], "end index:", temp["entity_end_in_og_text"])
#print temp["entity_start_in_og_text"]
# print ("found text in og", og_text[temp["entity_start_in_og_text"]: temp["entity_end_in_og_text"]])
# print ("found text in og with surr",og_text[temp["entity_start_in_og_text"]: temp["entity_end_in_og_text"] + 10])
# print ("new search index:", temp["entity_end_in_og_text"])
og_search_index = temp["entity_end_in_og_text"]
# print "\n\n\n\n\n\n"
#find entity in tagged_text
# print ("search tagged_text", str(tagged_text[tags_search_index:]))
temp["tag_text_start_in_tagged_text"] = tags_search_index + re.search(r'\b{}\b'.format(tag[1]), str(tagged_text[tags_search_index:])).start() #og_text[og_search_index:].find(tag[1] + " ")
replace_index = temp["tag_text_start_in_tagged_text"] + len(tag[1])
# print ("start index:",temp["tag_text_start_in_tagged_text"], "end index:", replace_index)
tagged_text = tagged_text[:temp["tag_text_start_in_tagged_text"]] + tag[0] + tagged_text[replace_index:]
temp["tag_text_end_in_tagged_text"] = temp["tag_text_start_in_tagged_text"] + len(tag[0])
tags_search_index = temp["tag_text_end_in_tagged_text"]
# print ("new tagged search index:", tags_search_index)
# print ("search tagged_text", str(tagged_text[tags_search_index:]))
# print "\n"
# print tagged_text
# print "\n\n\n\n\n\n"
tags_and_texts.append(temp)
# print temp
#exit()
# print og_text
# print ""
# print tagged_text
# for x in tags_and_texts:
# #print x["tag"]
# print ("enity", og_text[int(x["entity_start_in_og_text"]) : int(x["entity_end_in_og_text"])])
# print ("tag from xml", x["tag"])
# print ("tag in text",tagged_text[int(x["tag_text_start_in_tagged_text"]) : int(x["tag_text_end_in_tagged_text"])])
# print len(xml_info_entitites)
doc_tagged["tagged_text"] = tagged_text
doc_tagged["json_to_link_og_text_with_tagged_entities"] = tags_and_texts
#exit()
return doc_tagged
def tag_og_text_with_events(doc_tagged, og_text, xml_info):
xml_info_events = gather_events(xml_info)
doc_tagged["xml_info_events"] = xml_info_events
tagged_text = doc_tagged["tagged_text"]
tags_and_texts = []
og_search_index = 0
tags_search_index = 0
tag_num = 0
for tag in xml_info_events:
# print tag[1]
# print og_text
temp = {}
temp["tag"] = tag[0].upper()
temp["event_tag_id"] = tag_num
tag_num = tag_num + 1
#entity info
temp["event"] = tag[1][0][0]
# print temp["event"]
temp["event_start_in_og_text"] = og_search_index + re.search(r'\b{}\b'.format(temp["event"]), str(og_text[og_search_index:])).start()
og_search_index = temp["event_start_in_og_text"] + len(temp["event"])
temp["event_end_in_og_text"] = og_search_index
# print temp["event_start_in_og_text"]
# print temp["event_end_in_og_text"]
# print og_text[temp["event_start_in_og_text"] : temp["event_end_in_og_text"]]
#tag start end
# print tagged_text
# print tags_search_index
temp["tag_text_start_in_tagged_text"] = tags_search_index + re.search(r'\b{}\b'.format(temp["event"]), str(tagged_text[tags_search_index:])).start()
replace_index = temp["tag_text_start_in_tagged_text"] + len(temp["event"])
# print temp["tag_text_start_in_tagged_text"]
tagged_text = tagged_text[:temp["tag_text_start_in_tagged_text"]] + tag[0].upper() + tagged_text[replace_index:]
temp["tag_text_end_in_tagged_text"] = temp["tag_text_start_in_tagged_text"] + len(temp["tag"])
# print tags_search_index
tags_search_index = temp["tag_text_end_in_tagged_text"]
# print tagged_text[temp["tag_text_start_in_tagged_text"] : temp["tag_text_end_in_tagged_text"]]
tags_and_texts.append(temp)
doc_tagged["tagged_text"] = tagged_text
doc_tagged["json_to_link_og_text_with_tagged_events"] = tags_and_texts
# for x in tags_and_texts:
# #print x["tag"]
# print ("enity", og_text[int(x["event_start_in_og_text"]) : int(x["event_end_in_og_text"])])
# print ("tag from xml", x["tag"])
# print ("tag in text",tagged_text[int(x["tag_text_start_in_tagged_text"]) : int(x["tag_text_end_in_tagged_text"])])
# print len(xml_info_events)
# exit()
return doc_tagged
if __name__ == '__main__':
#_dir = "DATASET_FOR_FINAL"
_dir = "UNSEEN_DATA"
data_gs_file = os.listdir(_dir)
for gs_file in data_gs_file:
if gs_file.endswith(".txt"):
print("\n\n\n\n\n")
#print gs_file
text_file = open(_dir + "/" + gs_file, "r")
#og_xml = load_xml(text_file)
#og_text = text_file.read()#.encode("utf-8")
og_text = unidecode(unicode(text_file.read(), encoding = "utf-8"))
og_text = og_text.strip("\n")
og_text = og_text.replace("\"\""," ")
og_text = og_text.replace("\""," ")
#return ''.join([i if ord(i) < 128 else ' ' for i in text])
xml_file = open(_dir + "/" + gs_file.replace(".txt", ".sgm.apf.xml"), "r")
xml_info = load_xml(xml_file)
doc_tagged = tag_og_text_with_entities(og_text, xml_info)#tag_og_text(og_xml, xml_info)#tag_og_text(og_text, xml_info)
doc_tagged = tag_og_text_with_events(doc_tagged, og_text, xml_info)
doc_tagged["file"] = gs_file
#print doc_tagged
json.dump(doc_tagged, open(_dir +"/tagged_" + gs_file.replace(".txt",".json"), "w"), indent=2, ensure_ascii=False)
#exit()
# input_filename = sys.argv[1]
#
# print("")
# print("XML info extractor")
# xml_info = load_xml(input_filename)
# print("----------------------")
#
# print("\nEntities:\n----------------------")
# xml_info_entitites = gather_entites(xml_info)
# for item in xml_info_entitites:
# print(item)
#
# print("\nEvents:\n----------------------")
# xml_info_events = gather_events(xml_info)
# print len(xml_info_events)
# for item in xml_info_events:
# print(item)
# print("")
|
[
"mike.partin@gmail.com"
] |
mike.partin@gmail.com
|
50aa9ec1e8375790464d80b6b8c2427b866fb928
|
5e9d846c15a736f6ffdbeb567184c51267af76f7
|
/create_sql_engine.py
|
786e44345cb7b48045e5fe5488456649804ebba5
|
[] |
no_license
|
soffenberger/resistor
|
82f5e6bf47bbca123a6985d8165fbf894ae50255
|
b9146c30488a16d19f82196afc7f9669fad7b001
|
refs/heads/master
| 2016-09-12T16:29:12.243786
| 2016-05-16T05:55:12
| 2016-05-16T05:55:12
| 58,840,003
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 575
|
py
|
import os
import sys
import sqlite3 as sql
import numpy as np
import io
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship
from sqlalchemy import create_engine
from sqlalchemy import *
Base = declarative_base()
class img(Base):
__tablename__ = 'img'
id = Column(Integer, primary_key=True)
name = Column(String(250), nullable=False, unique=True)
array = Column(BLOB, nullable=False)
pt = (String(250))
tru_false = Column(Boolean(name='bool'))
engine = create_engine('sqlite:///img.db')
Base.metadata.create_all(engine)
|
[
"soffenbe@asu.edu"
] |
soffenbe@asu.edu
|
94e3faddb581f06f82806b5938d8e3a57f3f58da
|
4c1360643fa444e6c96e4cd1af709662b79f632c
|
/api/tests/test_settings.py
|
0efab65543bc96c3e3d612389cae227212181854
|
[] |
no_license
|
pascalchevrel/shipit
|
aa02e8fbdf96ece798a8d1e323e014b7c1b4b8a8
|
273c14a2631a2e7166ae654c4a8a7cdf57286018
|
refs/heads/master
| 2023-03-16T08:15:52.319768
| 2021-04-20T10:29:25
| 2021-04-20T10:29:25
| 216,795,185
| 0
| 0
| null | 2023-03-07T13:02:19
| 2019-10-22T11:18:02
|
Python
|
UTF-8
|
Python
| false
| false
| 3,380
|
py
|
import os
def flatten(lst):
return [item for sublist in lst for item in sublist]
def test_scopes(monkeypatch):
FAKE_ENV = dict(
APP_CHANNEL="development",
TASKCLUSTER_ROOT_URL="fake",
TASKCLUSTER_CLIENT_ID="fake",
TASKCLUSTER_ACCESS_TOKEN="fake",
AUTH_DOMAIN="fake",
AUTH_CLIENT_ID="fake",
AUTH_CLIENT_SECRET="fake",
SECRET_KEY_BASE64="fake",
DATABASE_URL="fake",
)
# mock the environment in order to import settings
monkeypatch.setattr(os, "environ", FAKE_ENV)
from shipit_api.admin.settings import (
AUTH0_AUTH_SCOPES,
GROUPS,
XPI_MOZILLAONLINE_PRIVILEGED_ADMIN_GROUP,
XPI_MOZILLAONLINE_PRIVILEGED_GROUP,
XPI_PRIVILEGED_ADMIN_GROUP,
XPI_PRIVILEGED_BUILD_GROUP,
XPI_SYSTEM_ADMIN_GROUP,
)
# make sure the admin group has all scopes
assert all([set(GROUPS["admin"]).issubset(entry) for entry in AUTH0_AUTH_SCOPES.values()])
# github API, for XPI and Fenix groups only
github_users = flatten([users for group, users in GROUPS.items() if group.startswith("xpi_") or group.startswith("fenix_")])
assert set(github_users).issubset(set(AUTH0_AUTH_SCOPES["project:releng:services/shipit_api/github"]))
# firefox-signoff has no access to TB and XPI
firefox_users = GROUPS["firefox-signoff"]
tb_users = flatten([users for scope, users in AUTH0_AUTH_SCOPES.items() if "thunderbird" in scope])
assert set(firefox_users).isdisjoint(set(tb_users))
xpi_users = flatten([users for scope, users in AUTH0_AUTH_SCOPES.items() if "xpi_" in scope])
assert set(firefox_users).isdisjoint(set(xpi_users))
# thunderbird-signoff has no access to Firefox and XPI
tb_users = GROUPS["thunderbird-signoff"]
firefox_users = flatten(
[users for scope, users in AUTH0_AUTH_SCOPES.items() if "firefox" in scope or "fenix" in scope or "fennec" in scope or "devedition" in scope]
)
assert set(firefox_users).isdisjoint(set(tb_users))
xpi_users = (
XPI_PRIVILEGED_BUILD_GROUP
+ XPI_PRIVILEGED_ADMIN_GROUP
+ XPI_SYSTEM_ADMIN_GROUP
+ XPI_MOZILLAONLINE_PRIVILEGED_GROUP
+ XPI_MOZILLAONLINE_PRIVILEGED_ADMIN_GROUP
)
# XPI users have no access to Firefox and Thunderbird
firefox_users = flatten(
[users for scope, users in AUTH0_AUTH_SCOPES.items() if "firefox" in scope or "fenix" in scope or "fennec" in scope or "devedition" in scope]
)
assert set(firefox_users).isdisjoint(set(xpi_users))
tb_users = flatten([users for scope, users in AUTH0_AUTH_SCOPES.items() if "thunderbird" in scope])
assert set(xpi_users).isdisjoint(set(tb_users))
# xpi_privileged_build has a limited set of scopes
scopes = set([scope for scope, users in AUTH0_AUTH_SCOPES.items() if set(XPI_PRIVILEGED_BUILD_GROUP).issubset(set(users))])
expected_scopes = set(
[
"project:releng:services/shipit_api/github",
"project:releng:services/shipit_api/add_release/xpi/privileged",
"project:releng:services/shipit_api/abandon_release/xpi/privileged",
"project:releng:services/shipit_api/schedule_phase/xpi/privileged/build",
"project:releng:services/shipit_api/phase_signoff/xpi/privileged/build",
]
)
assert scopes == expected_scopes
|
[
"noreply@github.com"
] |
noreply@github.com
|
33c679ef31d8a55ff6125c693fa10ac8d9f24460
|
795df757ef84073c3adaf552d5f4b79fcb111bad
|
/hypercube/hypercube_integrals.py
|
d41fbf8b960343823c0f1eb202c112bb2e36bffd
|
[] |
no_license
|
tnakaicode/jburkardt-python
|
02cb2f9ba817abf158fc93203eb17bf1cb3a5008
|
1a63f7664e47d6b81c07f2261b44f472adc4274d
|
refs/heads/master
| 2022-05-21T04:41:37.611658
| 2022-04-09T03:31:00
| 2022-04-09T03:31:00
| 243,854,197
| 3
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 31,020
|
py
|
#! /usr/bin/env python3
#
def hypercube01_monomial_integral ( m, e ):
#*****************************************************************************80
#
## HYPERCUBE01_MONOMIAL_INTEGRAL: integrals over the unit hypercube in M dimensions.
#
# Discussion:
#
# The integration region is
#
# 0 <= X(1:M) <= 1,
#
# The monomial is F(X) = product ( 1 <= I <= M ) X(I)^E(I).
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 22 June 2015
#
# Author:
#
# John Burkardt
#
# Reference:
#
# Philip Davis, Philip Rabinowitz,
# Methods of Numerical Integration,
# Second Edition,
# Academic Press, 1984, page 263.
#
# Parameters:
#
# Input, integer M, the spatial dimension.
#
# Input, integer E(M), the exponents. Each exponent must be nonnegative.
#
# Output, real INTEGRAL, the integral.
#
from sys import exit
for i in range ( 0, m ):
if ( e[i] < 0 ):
print ( '' )
print ( 'HYPERCUBE01_MONOMIAL_INTEGRAL - Fatal error!' )
print ( ' All exponents must be nonnegative.' )
error ( 'HYPERCUBE01_MONOMIAL_INTEGRAL - Fatal error!' )
integral = 1.0
for i in range ( 0, m ):
integral = integral / float ( e[i] + 1 )
return integral
def hypercube01_monomial_integral_test ( ):
#*****************************************************************************80
#
## HYPERCUBE01_MONOMIAL_INTEGRAL_TEST tests HYPERCUBE01_MONOMIAL_INTEGRAL.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 22 June 2015
#
# Author:
#
# John Burkardt
#
import numpy as np
import platform
m = 3
n = 4192
test_num = 20
print ( '' )
print ( 'HYPERCUBE01_MONOMIAL_INTEGRAL_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' HYPERCUBE01_MONOMIAL_INTEGRAL returns the integral of a monomial' )
print ( ' over the interior of the unit hypercube in 3D.' )
print ( ' Compare with a Monte Carlo estimate.' )
print ( '' )
print ( ' Using M = %d' % ( m ) )
#
# Get sample points.
#
seed = 123456789
x, seed = hypercube01_sample ( m, n, seed )
print ( '' )
print ( ' Number of sample points used is %d' % ( n ) )
#
# Randomly choose exponents.
#
print ( '' )
print ( ' Ex Ey Ez MC-Estimate Exact Error' )
print ( '' )
for test in range ( 0, test_num ):
e, seed = i4vec_uniform_ab ( m, 0, 4, seed )
value = monomial_value ( m, n, e, x )
result = hypercube01_volume ( m ) * np.sum ( value ) / float ( n )
exact = hypercube01_monomial_integral ( m, e )
error = abs ( result - exact )
for i in range ( 0, m ):
print ( ' %2d' % ( e[i] ) ),
print ( ' %14.6g %14.6g %10.2g' % ( result, exact, error ) )
#
# Terminate.
#
print ( '' )
print ( 'HYPERCUBE01_MONOMIAL_INTEGRAL_TEST:' )
print ( ' Normal end of execution.' )
return
def hypercube01_sample ( m, n, seed ):
#*****************************************************************************80
#
## HYPERCUBE01_SAMPLE samples points in the unit hypercube in M dimensions.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 22 June 2015
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# Input, integer M, the spatial dimension.
#
# Input, integer N, the number of points.
#
# Input/output, integer SEED, a seed for the random
# number generator.
#
# Output, real X(M,N), the points.
#
x, seed = r8mat_uniform_01 ( m, n, seed )
return x, seed
def hypercube01_sample_test ( ):
#*****************************************************************************80
#
## HYPERCUBE01_SAMPLE_TEST tests HYPERCUBE01_SAMPLE.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 22 June 2015
#
# Author:
#
# John Burkardt
#
import platform
print ( '' )
print ( 'HYPERCUBE01_SAMPLE_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' HYPERUBE01_SAMPLE samples the unit hypercube' )
print ( ' in M dimensions.' )
m = 3
n = 10
seed = 123456789
x, seed = hypercube01_sample ( m, n, seed )
r8mat_transpose_print ( m, n, x, ' Sample points in the unit hypercube.' )
#
# Terminate.
#
print ( '' )
print ( 'HYPERCUBE01_SAMPLE_TEST' )
print ( ' Normal end of execution.' )
return
def hypercube01_volume ( m ):
#*****************************************************************************80
#
## HYPERCUBE01_VOLUME returns the volume of the unit hypercube in M dimensions.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 22 June 2015
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# Input, integer M, the spatial dimension.
#
# Output, real VALUE, the volume.
#
value = 1.0
return value
def hypercube01_volume_test ( ) :
#*****************************************************************************80
#
## HYPERCUBE01_VOLUME tests HYPERCUBE01_VOLUME.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 22 June 2015
#
# Author:
#
# John Burkardt
#
import platform
print ( '' )
print ( 'HYPERCUBE01_VOLUME_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' HYPERCUBE01_VOLUME returns the volume of the unit hypercube' )
print ( ' in M dimensions.' )
m = 3
value = hypercube01_volume ( m )
print ( '' )
print ( ' HYPERCUBE01_VOLUME(%d) = %g' % ( m, value ) )
#
# Terminate.
#
print ( '' )
print ( 'HYPERCUBE01_VOLUME_TEST' )
print ( ' Normal end of execution.' )
return
def hypercube_integrals_test ( ):
#*****************************************************************************80
#
## HYPERCUBE_INTEGRALS_TEST tests the HYPERCUBE_INTEGRALS library.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 22 June 2015
#
# Author:
#
# John Burkardt
#
import platform
print ( '' )
print ( 'HYPERCUBE_INTEGRALS_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' Test the HYPERCUBE_INTEGRALS library.' )
#
# Utility functions.
#
i4vec_print_test ( )
i4vec_transpose_print_test ( )
i4vec_uniform_ab_test ( )
r8mat_print_test ( )
r8mat_print_some_test ( )
r8mat_transpose_print_test ( )
r8mat_transpose_print_some_test ( )
r8mat_uniform_01_test ( )
r8mat_uniform_ab_test ( )
#
# Library functions.
#
hypercube01_monomial_integral_test ( )
hypercube01_sample_test ( )
hypercube01_volume_test ( )
monomial_value_test ( )
#
# Terminate.
#
print ( '' )
print ( 'HYPERCUBE_INTEGRALS_TEST:' )
print ( ' Normal end of execution.' )
return
def i4vec_print ( n, a, title ):
#*****************************************************************************80
#
## I4VEC_PRINT prints an I4VEC.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 31 August 2014
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# Input, integer N, the dimension of the vector.
#
# Input, integer A(N), the vector to be printed.
#
# Input, string TITLE, a title.
#
print ( '' )
print ( title )
print ( '' )
for i in range ( 0, n ):
print ( '%6d %6d' % ( i, a[i] ) )
return
def i4vec_print_test ( ):
#*****************************************************************************80
#
## I4VEC_PRINT_TEST tests I4VEC_PRINT.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 25 September 2016
#
# Author:
#
# John Burkardt
#
import numpy as np
import platform
print ( '' )
print ( 'I4VEC_PRINT_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' I4VEC_PRINT prints an I4VEC.' )
n = 4
v = np.array ( [ 91, 92, 93, 94 ], dtype = np.int32 )
i4vec_print ( n, v, ' Here is an I4VEC:' )
#
# Terminate.
#
print ( '' )
print ( 'I4VEC_PRINT_TEST:' )
print ( ' Normal end of execution.' )
return
def i4vec_transpose_print ( n, a, title ):
#*****************************************************************************80
#
## I4VEC_TRANSPOSE_PRINT prints an I4VEC "transposed".
#
# Example:
#
# A = (/ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 /)
# TITLE = 'My vector: '
#
# My vector:
#
# 1 2 3 4 5
# 6 7 8 9 10
# 11
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 08 September 2018
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# Input, integer N, the number of components of the vector.
#
# Input, integer A(N), the vector to be printed.
#
# Input, string TITLE, a title.
#
if ( 0 < len ( title ) ):
print ( title, end = '' )
if ( 0 < n ):
for i in range ( 0, n ):
print ( ' %d' % ( a[i] ), end = '' )
if ( ( i + 1 ) % 20 == 0 or i == n - 1 ):
print ( '' )
else:
print ( '(empty vector)' )
return
def i4vec_transpose_print_test ( ):
#*****************************************************************************80
#
## I4VEC_TRANSPOSE_PRINT_TEST tests I4VEC_TRANSPOSE_PRINT.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 09 September 2018
#
# Author:
#
# John Burkardt
#
import numpy as np
import platform
print ( '' )
print ( 'I4VEC_TRANSPOSE_PRINT_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' I4VEC_TRANSPOSE_PRINT prints an I4VEC' )
print ( ' with 5 entries to a row, and an optional title.' )
n = 12
a = np.zeros ( n, dtype = np.int32 )
for i in range ( 0, n ):
a[i] = i + 1
print ( '' )
i4vec_transpose_print ( n, a, ' My array: ' )
#
# Terminate.
#
print ( '' )
print ( 'I4VEC_TRANSPOSE_PRINT_TEST:' )
print ( ' Normal end of execution.' )
return
def i4vec_uniform_ab ( n, a, b, seed ):
#*****************************************************************************80
#
## I4VEC_UNIFORM_AB returns a scaled pseudorandom I4VEC.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 05 April 2013
#
# Author:
#
# John Burkardt
#
# Reference:
#
# Paul Bratley, Bennett Fox, Linus Schrage,
# A Guide to Simulation,
# Second Edition,
# Springer, 1987,
# ISBN: 0387964673,
# LC: QA76.9.C65.B73.
#
# Bennett Fox,
# Algorithm 647:
# Implementation and Relative Efficiency of Quasirandom
# Sequence Generators,
# ACM Transactions on Mathematical Software,
# Volume 12, Number 4, December 1986, pages 362-376.
#
# Pierre L'Ecuyer,
# Random Number Generation,
# in Handbook of Simulation,
# edited by Jerry Banks,
# Wiley, 1998,
# ISBN: 0471134031,
# LC: T57.62.H37.
#
# Peter Lewis, Allen Goodman, James Miller,
# A Pseudo-Random Number Generator for the System/360,
# IBM Systems Journal,
# Volume 8, Number 2, 1969, pages 136-143.
#
# Parameters:
#
# Input, integer N, the number of entries in the vector.
#
# Input, integer A, B, the minimum and maximum acceptable values.
#
# Input, integer SEED, a seed for the random number generator.
#
# Output, integer C(N), the randomly chosen integer vector.
#
# Output, integer SEED, the updated seed.
#
import numpy as np
from sys import exit
i4_huge = 2147483647
seed = np.floor ( seed )
if ( seed < 0 ):
seed = seed + i4_huge
if ( seed == 0 ):
print ( '' )
print ( 'I4VEC_UNIFORM_AB - Fatal error!' )
print ( ' Input SEED = 0!' )
exit ( 'I4VEC_UNIFORM_AB - Fatal error!' )
seed = np.floor ( seed )
a = round ( a )
b = round ( b )
c = np.zeros ( n, dtype = np.int32 )
for i in range ( 0, n ):
k = ( seed // 127773 )
seed = 16807 * ( seed - k * 127773 ) - k * 2836
seed = ( seed % i4_huge )
if ( seed < 0 ):
seed = seed + i4_huge
r = seed * 4.656612875E-10
#
# Scale R to lie between A-0.5 and B+0.5.
#
r = ( 1.0 - r ) * ( min ( a, b ) - 0.5 ) \
+ r * ( max ( a, b ) + 0.5 )
#
# Use rounding to convert R to an integer between A and B.
#
value = round ( r )
value = max ( value, min ( a, b ) )
value = min ( value, max ( a, b ) )
c[i] = value
return c, seed
def i4vec_uniform_ab_test ( ):
#*****************************************************************************80
#
## I4VEC_UNIFORM_AB_TEST tests I4VEC_UNIFORM_AB.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 27 October 2014
#
# Author:
#
# John Burkardt
#
import platform
n = 20
a = -100
b = 200
seed = 123456789
print ( '' )
print ( 'I4VEC_UNIFORM_AB_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' I4VEC_UNIFORM_AB computes pseudorandom values' )
print ( ' in an interval [A,B].' )
print ( '' )
print ( ' The lower endpoint A = %d' % ( a ) )
print ( ' The upper endpoint B = %d' % ( b ) )
print ( ' The initial seed is %d' % ( seed ) )
print ( '' )
v, seed = i4vec_uniform_ab ( n, a, b, seed )
i4vec_print ( n, v, ' The random vector:' )
#
# Terminate.
#
print ( '' )
print ( 'I4VEC_UNIFORM_AB_TEST:' )
print ( ' Normal end of execution.' )
return
def monomial_value ( m, n, e, x ):
#*****************************************************************************80
#
## MONOMIAL_VALUE evaluates a monomial.
#
# Discussion:
#
# This routine evaluates a monomial of the form
#
# product ( 1 <= i <= m ) x(i)^e(i)
#
# The combination 0.0^0, if encountered, is treated as 1.0.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 07 April 2015
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# Input, integer M, the spatial dimension.
#
# Input, integer N, the number of evaluation points.
#
# Input, integer E(M), the exponents.
#
# Input, real X(M,N), the point coordinates.
#
# Output, real V(N), the monomial values.
#
import numpy as np
v = np.ones ( n )
for i in range ( 0, m ):
if ( 0 != e[i] ):
for j in range ( 0, n ):
v[j] = v[j] * x[i,j] ** e[i]
return v
def monomial_value_test ( ):
#*****************************************************************************80
#
## MONOMIAL_VALUE_TEST tests MONOMIAL_VALUE on sets of data in various dimensions.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 07 April 2015
#
# Author:
#
# John Burkardt
#
import platform
print ( '' )
print ( 'MONOMIAL_VALUE_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' Use monomial_value() to evaluate some monomials' )
print ( ' in dimensions 1 through 3.' )
e_min = -3
e_max = 6
n = 5
seed = 123456789
x_min = -2.0
x_max = +10.0
for m in range ( 1, 4 ):
print ( '' )
print ( ' Spatial dimension M = %d' % ( m ) )
e, seed = i4vec_uniform_ab ( m, e_min, e_max, seed )
i4vec_transpose_print ( m, e, ' Exponents:' )
x, seed = r8mat_uniform_ab ( m, n, x_min, x_max, seed )
#
# To make checking easier, make the X values integers.
#
for i in range ( 0, m ):
for j in range ( 0, n ):
x[i,j] = round ( x[i,j] )
v = monomial_value ( m, n, e, x )
print ( '' )
print ( ' V(X) ', end = '' )
for i in range ( 0, m ):
print ( ' X(%d)' % ( i ), end = '' )
print ( '' )
print ( '' )
for j in range ( 0, n ):
print ( '%14.6g ' % ( v[j] ), end = '' )
for i in range ( 0, m ):
print ( '%10.4f' % ( x[i,j] ), end = '' )
print ( '' )
#
# Terminate.
#
print ( '' )
print ( 'MONOMIAL_VALUE_TEST' )
print ( ' Normal end of execution.' )
return
def r8mat_print ( m, n, a, title ):
#*****************************************************************************80
#
## R8MAT_PRINT prints an R8MAT.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 31 August 2014
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# Input, integer M, the number of rows in A.
#
# Input, integer N, the number of columns in A.
#
# Input, real A(M,N), the matrix.
#
# Input, string TITLE, a title.
#
r8mat_print_some ( m, n, a, 0, 0, m - 1, n - 1, title )
return
def r8mat_print_test ( ):
#*****************************************************************************80
#
## R8MAT_PRINT_TEST tests R8MAT_PRINT.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 10 February 2015
#
# Author:
#
# John Burkardt
#
import numpy as np
import platform
print ( '' )
print ( 'R8MAT_PRINT_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' R8MAT_PRINT prints an R8MAT.' )
m = 4
n = 6
v = np.array ( [ \
[ 11.0, 12.0, 13.0, 14.0, 15.0, 16.0 ],
[ 21.0, 22.0, 23.0, 24.0, 25.0, 26.0 ],
[ 31.0, 32.0, 33.0, 34.0, 35.0, 36.0 ],
[ 41.0, 42.0, 43.0, 44.0, 45.0, 46.0 ] ], dtype = np.float64 )
r8mat_print ( m, n, v, ' Here is an R8MAT:' )
#
# Terminate.
#
print ( '' )
print ( 'R8MAT_PRINT_TEST:' )
print ( ' Normal end of execution.' )
return
def r8mat_print_some ( m, n, a, ilo, jlo, ihi, jhi, title ):
#*****************************************************************************80
#
## R8MAT_PRINT_SOME prints out a portion of an R8MAT.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 10 February 2015
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# Input, integer M, N, the number of rows and columns of the matrix.
#
# Input, real A(M,N), an M by N matrix to be printed.
#
# Input, integer ILO, JLO, the first row and column to print.
#
# Input, integer IHI, JHI, the last row and column to print.
#
# Input, string TITLE, a title.
#
incx = 5
print ( '' )
print ( title )
if ( m <= 0 or n <= 0 ):
print ( '' )
print ( ' (None)' )
return
for j2lo in range ( max ( jlo, 0 ), min ( jhi + 1, n ), incx ):
j2hi = j2lo + incx - 1
j2hi = min ( j2hi, n )
j2hi = min ( j2hi, jhi )
print ( '' )
print ( ' Col: ', end = '' )
for j in range ( j2lo, j2hi + 1 ):
print ( '%7d ' % ( j ), end = '' )
print ( '' )
print ( ' Row' )
i2lo = max ( ilo, 0 )
i2hi = min ( ihi, m )
for i in range ( i2lo, i2hi + 1 ):
print ( '%7d :' % ( i ), end = '' )
for j in range ( j2lo, j2hi + 1 ):
print ( '%12g ' % ( a[i,j] ), end = '' )
print ( '' )
return
def r8mat_print_some_test ( ):
#*****************************************************************************80
#
## R8MAT_PRINT_SOME_TEST tests R8MAT_PRINT_SOME.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 31 October 2014
#
# Author:
#
# John Burkardt
#
import numpy as np
import platform
print ( '' )
print ( 'R8MAT_PRINT_SOME_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' R8MAT_PRINT_SOME prints some of an R8MAT.' )
m = 4
n = 6
v = np.array ( [ \
[ 11.0, 12.0, 13.0, 14.0, 15.0, 16.0 ],
[ 21.0, 22.0, 23.0, 24.0, 25.0, 26.0 ],
[ 31.0, 32.0, 33.0, 34.0, 35.0, 36.0 ],
[ 41.0, 42.0, 43.0, 44.0, 45.0, 46.0 ] ], dtype = np.float64 )
r8mat_print_some ( m, n, v, 0, 3, 2, 5, ' Here is an R8MAT:' )
#
# Terminate.
#
print ( '' )
print ( 'R8MAT_PRINT_SOME_TEST:' )
print ( ' Normal end of execution.' )
return
def r8mat_transpose_print ( m, n, a, title ):
#*****************************************************************************80
#
## R8MAT_TRANSPOSE_PRINT prints an R8MAT, transposed.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 31 August 2014
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# Input, integer M, the number of rows in A.
#
# Input, integer N, the number of columns in A.
#
# Input, real A(M,N), the matrix.
#
# Input, string TITLE, a title.
#
r8mat_transpose_print_some ( m, n, a, 0, 0, m - 1, n - 1, title )
return
def r8mat_transpose_print_test ( ):
#*****************************************************************************80
#
## R8MAT_TRANSPOSE_PRINT_TEST tests R8MAT_TRANSPOSE_PRINT.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 31 October 2014
#
# Author:
#
# John Burkardt
#
import numpy as np
import platform
print ( '' )
print ( 'R8MAT_TRANSPOSE_PRINT_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' R8MAT_TRANSPOSE_PRINT prints an R8MAT.' )
m = 4
n = 3
v = np.array ( [ \
[ 11.0, 12.0, 13.0 ],
[ 21.0, 22.0, 23.0 ],
[ 31.0, 32.0, 33.0 ],
[ 41.0, 42.0, 43.0 ] ], dtype = np.float64 )
r8mat_transpose_print ( m, n, v, ' Here is an R8MAT, transposed:' )
#
# Terminate.
#
print ( '' )
print ( 'R8MAT_TRANSPOSE_PRINT_TEST:' )
print ( ' Normal end of execution.' )
return
def r8mat_transpose_print_some ( m, n, a, ilo, jlo, ihi, jhi, title ):
#*****************************************************************************80
#
## R8MAT_TRANSPOSE_PRINT_SOME prints a portion of an R8MAT, transposed.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 13 November 2014
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# Input, integer M, N, the number of rows and columns of the matrix.
#
# Input, real A(M,N), an M by N matrix to be printed.
#
# Input, integer ILO, JLO, the first row and column to print.
#
# Input, integer IHI, JHI, the last row and column to print.
#
# Input, string TITLE, a title.
#
incx = 5
print ( '' )
print ( title )
if ( m <= 0 or n <= 0 ):
print ( '' )
print ( ' (None)' )
return
for i2lo in range ( max ( ilo, 0 ), min ( ihi, m - 1 ), incx ):
i2hi = i2lo + incx - 1
i2hi = min ( i2hi, m - 1 )
i2hi = min ( i2hi, ihi )
print ( '' )
print ( ' Row: ' ),
for i in range ( i2lo, i2hi + 1 ):
print ( '%7d ' % ( i ) ),
print ( '' )
print ( ' Col' )
j2lo = max ( jlo, 0 )
j2hi = min ( jhi, n - 1 )
for j in range ( j2lo, j2hi + 1 ):
print ( '%7d :' % ( j ) ),
for i in range ( i2lo, i2hi + 1 ):
print ( '%12g ' % ( a[i,j] ) ),
print ( '' )
return
def r8mat_transpose_print_some_test ( ):
#*****************************************************************************80
#
## R8MAT_TRANSPOSE_PRINT_SOME_TEST tests R8MAT_TRANSPOSE_PRINT_SOME.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 31 October 2014
#
# Author:
#
# John Burkardt
#
import numpy as np
import platform
print ( '' )
print ( 'R8MAT_TRANSPOSE_PRINT_SOME_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' R8MAT_TRANSPOSE_PRINT_SOME prints some of an R8MAT, transposed.' )
m = 4
n = 6
v = np.array ( [ \
[ 11.0, 12.0, 13.0, 14.0, 15.0, 16.0 ],
[ 21.0, 22.0, 23.0, 24.0, 25.0, 26.0 ],
[ 31.0, 32.0, 33.0, 34.0, 35.0, 36.0 ],
[ 41.0, 42.0, 43.0, 44.0, 45.0, 46.0 ] ], dtype = np.float64 )
r8mat_transpose_print_some ( m, n, v, 0, 3, 2, 5, ' R8MAT, rows 0:2, cols 3:5:' )
#
# Terminate.
#
print ( '' )
print ( 'R8MAT_TRANSPOSE_PRINT_SOME_TEST:' )
print ( ' Normal end of execution.' )
return
def r8mat_uniform_01 ( m, n, seed ):
#*****************************************************************************80
#
## R8MAT_UNIFORM_01 returns a unit pseudorandom R8MAT.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 08 April 2013
#
# Author:
#
# John Burkardt
#
# Reference:
#
# Paul Bratley, Bennett Fox, Linus Schrage,
# A Guide to Simulation,
# Second Edition,
# Springer, 1987,
# ISBN: 0387964673,
# LC: QA76.9.C65.B73.
#
# Bennett Fox,
# Algorithm 647:
# Implementation and Relative Efficiency of Quasirandom
# Sequence Generators,
# ACM Transactions on Mathematical Software,
# Volume 12, Number 4, December 1986, pages 362-376.
#
# Pierre L'Ecuyer,
# Random Number Generation,
# in Handbook of Simulation,
# edited by Jerry Banks,
# Wiley, 1998,
# ISBN: 0471134031,
# LC: T57.62.H37.
#
# Peter Lewis, Allen Goodman, James Miller,
# A Pseudo-Random Number Generator for the System/360,
# IBM Systems Journal,
# Volume 8, Number 2, 1969, pages 136-143.
#
# Parameters:
#
# Input, integer M, N, the number of rows and columns in the array.
#
# Input, integer SEED, the integer "seed" used to generate
# the output random number.
#
# Output, real R(M,N), an array of random values between 0 and 1.
#
# Output, integer SEED, the updated seed. This would
# normally be used as the input seed on the next call.
#
import numpy
from math import floor
from sys import exit
i4_huge = 2147483647
seed = floor ( seed )
if ( seed < 0 ):
seed = seed + i4_huge
if ( seed == 0 ):
print ( '' )
print ( 'R8MAT_UNIFORM_01 - Fatal error!' )
print ( ' Input SEED = 0!' )
exit ( 'R8MAT_UNIFORM_01 - Fatal error!' )
r = numpy.zeros ( ( m, n ) )
for j in range ( 0, n ):
for i in range ( 0, m ):
k = ( seed // 127773 )
seed = 16807 * ( seed - k * 127773 ) - k * 2836
seed = ( seed % i4_huge )
if ( seed < 0 ):
seed = seed + i4_huge
r[i][j] = seed * 4.656612875E-10
return r, seed
def r8mat_uniform_01_test ( ):
#*****************************************************************************80
#
## R8MAT_UNIFORM_01_TEST tests R8MAT_UNIFORM_01.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 31 October 2014
#
# Author:
#
# John Burkardt
#
import numpy as np
import platform
m = 5
n = 4
seed = 123456789
print ( '' )
print ( 'R8MAT_UNIFORM_01_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' R8MAT_UNIFORM_01 computes a random R8MAT.' )
print ( '' )
print ( ' 0 <= X <= 1' )
print ( ' Initial seed is %d' % ( seed ) )
v, seed = r8mat_uniform_01 ( m, n, seed )
r8mat_print ( m, n, v, ' Random R8MAT:' )
#
# Terminate.
#
print ( '' )
print ( 'R8MAT_UNIFORM_01_TEST:' )
print ( ' Normal end of execution.' )
return
def r8mat_uniform_ab ( m, n, a, b, seed ):
#*****************************************************************************80
#
## R8MAT_UNIFORM_AB returns a scaled pseudorandom R8MAT.
#
# Discussion:
#
# An R8MAT is an array of R8's.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 08 April 2013
#
# Author:
#
# John Burkardt
#
# Reference:
#
# Paul Bratley, Bennett Fox, Linus Schrage,
# A Guide to Simulation,
# Second Edition,
# Springer, 1987,
# ISBN: 0387964673,
# LC: QA76.9.C65.B73.
#
# Bennett Fox,
# Algorithm 647:
# Implementation and Relative Efficiency of Quasirandom
# Sequence Generators,
# ACM Transactions on Mathematical Software,
# Volume 12, Number 4, December 1986, pages 362-376.
#
# Pierre L'Ecuyer,
# Random Number Generation,
# in Handbook of Simulation,
# edited by Jerry Banks,
# Wiley, 1998,
# ISBN: 0471134031,
# LC: T57.62.H37.
#
# Peter Lewis, Allen Goodman, James Miller,
# A Pseudo-Random Number Generator for the System/360,
# IBM Systems Journal,
# Volume 8, Number 2, 1969, pages 136-143.
#
# Parameters:
#
# Input, integer M, N, the number of rows and columns in the array.
#
# Input, real A, B, the range of the pseudorandom values.
#
# Input, integer SEED, the integer "seed" used to generate
# the output random number.
#
# Output, real R(M,N), an array of random values between 0 and 1.
#
# Output, integer SEED, the updated seed. This would
# normally be used as the input seed on the next call.
#
import numpy
from math import floor
from sys import exit
i4_huge = 2147483647
seed = floor ( seed )
if ( seed < 0 ):
seed = seed + i4_huge
if ( seed == 0 ):
print ( '' )
print ( 'R8MAT_UNIFORM_AB - Fatal error!' )
print ( ' Input SEED = 0!' )
exit ( 'R8MAT_UNIFORM_AB - Fatal error!' )
r = numpy.zeros ( ( m, n ) )
for j in range ( 0, n ):
for i in range ( 0, m ):
k = ( seed // 127773 )
seed = 16807 * ( seed - k * 127773 ) - k * 2836
seed = floor ( seed )
seed = ( seed % i4_huge )
if ( seed < 0 ):
seed = seed + i4_huge
r[i][j] = a + ( b - a ) * seed * 4.656612875E-10
return r, seed
def r8mat_uniform_ab_test ( ):
#*****************************************************************************80
#
## R8MAT_UNIFORM_AB_TEST tests R8MAT_UNIFORM_AB.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 31 October 2014
#
# Author:
#
# John Burkardt
#
import numpy as np
import platform
m = 5
n = 4
a = -1.0
b = +5.0
seed = 123456789
print ( '' )
print ( 'R8MAT_UNIFORM_AB_TEST' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' R8MAT_UNIFORM_AB computes a random R8MAT.' )
print ( '' )
print ( ' %g <= X <= %g' % ( a, b ) )
print ( ' Initial seed is %d' % ( seed ) )
v, seed = r8mat_uniform_ab ( m, n, a, b, seed )
r8mat_print ( m, n, v, ' Random R8MAT:' )
#
# Terminate.
#
print ( '' )
print ( 'R8MAT_UNIFORM_AB_TEST:' )
print ( ' Normal end of execution.' )
return
def timestamp ( ):
#*****************************************************************************80
#
## TIMESTAMP prints the date as a timestamp.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 06 April 2013
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# None
#
import time
t = time.time ( )
print ( time.ctime ( t ) )
return None
def timestamp_test ( ):
#*****************************************************************************80
#
## TIMESTAMP_TEST tests TIMESTAMP.
#
# Licensing:
#
# This code is distributed under the GNU LGPL license.
#
# Modified:
#
# 03 December 2014
#
# Author:
#
# John Burkardt
#
# Parameters:
#
# None
#
import platform
print ( '' )
print ( 'TIMESTAMP_TEST:' )
print ( ' Python version: %s' % ( platform.python_version ( ) ) )
print ( ' TIMESTAMP prints a timestamp of the current date and time.' )
print ( '' )
timestamp ( )
#
# Terminate.
#
print ( '' )
print ( 'TIMESTAMP_TEST:' )
print ( ' Normal end of execution.' )
return
if ( __name__ == '__main__' ):
timestamp ( )
hypercube_integrals_test ( )
timestamp ( )
|
[
"tnakaicode@gmail.com"
] |
tnakaicode@gmail.com
|
9057ed04cf369d4a838d9fe112ebf8c99e9ee024
|
572b5639ceccd7d5b0551af2376283c126663d45
|
/account/forms.py
|
47c4a988e56e3c2a0f7ed0ec88900f6cf615d4c9
|
[] |
no_license
|
luoying1105/myblog
|
348cb363413f917312d8507fb04ae8fb235bce59
|
9f13d228772027797c1b915c1a19b5b5841bd97b
|
refs/heads/master
| 2020-07-02T22:08:32.771781
| 2016-11-29T02:09:45
| 2016-11-29T02:09:45
| 74,278,812
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,051
|
py
|
from django import forms
from django.contrib.auth.models import User
from blog.models import Profile
class UserEditForm(forms.ModelForm):
class Meta:
model = User
fields = ('first_name', 'last_name', 'email',)
class ProfileEditForm(forms.ModelForm):
class Meta:
model = Profile
fields = ('date_of_birth', 'image')
class LoginForm(forms.Form):
username = forms.CharField()
password = forms.CharField(widget=forms.PasswordInput)
class UserRegistrationForm(forms.ModelForm):
password = forms.CharField(label='Password',
widget=forms.PasswordInput)
password2 = forms.CharField(label='Repeat password',
widget=forms.PasswordInput)
class Meta:
model = User
fields = ('username', 'first_name', 'email')
def clean_password2(self):
cd = self.cleaned_data
if cd['password'] != cd['password2']:
raise forms.ValidationError('Passwords don\'t match.')
return cd['password2']
|
[
"411426150@qq.com"
] |
411426150@qq.com
|
616cf3654526e0f3ecb4547651c5536bb2e4bc82
|
9c5116ab446a0fba4dfaaa1685cbd3a1042dc054
|
/kubernetes/test/test_v1_image_stream.py
|
3129b06ad6d6ea315c9b6d88a781b4978cc33449
|
[
"Apache-2.0"
] |
permissive
|
caruccio/client-python
|
fc11a354ce15507c94308e35b6790b6776e01e6e
|
cb65186027ce68beedcd7752c488b8e3b5c0968e
|
refs/heads/master
| 2021-01-25T08:18:45.601502
| 2017-06-08T13:14:06
| 2017-06-08T13:14:06
| 93,747,698
| 0
| 0
| null | 2017-06-08T12:37:32
| 2017-06-08T12:37:32
| null |
UTF-8
|
Python
| false
| false
| 4,144
|
py
|
# coding: utf-8
"""
OpenShift API (with Kubernetes)
OpenShift provides builds, application lifecycle, image content management, and administrative policy on top of Kubernetes. The API allows consistent management of those objects. All API operations are authenticated via an Authorization bearer token that is provided for service accounts as a generated secret (in JWT form) or via the native OAuth endpoint located at /oauth/authorize. Core infrastructure components may use kubernetes.client certificates that require no authentication. All API operations return a 'resourceVersion' string that represents the version of the object in the underlying storage. The standard LIST operation performs a snapshot read of the underlying objects, returning a resourceVersion representing a consistent version of the listed objects. The WATCH operation allows all updates to a set of objects after the provided resourceVersion to be observed by a kubernetes.client. By listing and beginning a watch from the returned resourceVersion, kubernetes.clients may observe a consistent view of the state of one or more objects. Note that WATCH always returns the update after the provided resourceVersion. Watch may be extended a limited time in the past - using etcd 2 the watch window is 1000 events (which on a large cluster may only be a few tens of seconds) so kubernetes.clients must explicitly handle the \"watch to old error\" by re-listing. Objects are divided into two rough categories - those that have a lifecycle and must reflect the state of the cluster, and those that have no state. Objects with lifecycle typically have three main sections: * 'metadata' common to all objects * a 'spec' that represents the desired state * a 'status' that represents how much of the desired state is reflected on the cluster at the current time Objects that have no state have 'metadata' but may lack a 'spec' or 'status' section. Objects are divided into those that are namespace scoped (only exist inside of a namespace) and those that are cluster scoped (exist outside of a namespace). A namespace scoped resource will be deleted when the namespace is deleted and cannot be created if the namespace has not yet been created or is in the process of deletion. Cluster scoped resources are typically only accessible to admins - resources like nodes, persistent volumes, and cluster policy. All objects have a schema that is a combination of the 'kind' and 'apiVersion' fields. This schema is additive only for any given version - no backwards incompatible changes are allowed without incrementing the apiVersion. The server will return and accept a number of standard responses that share a common schema - for instance, the common error type is 'unversioned.Status' (described below) and will be returned on any error from the API server. The API is available in multiple serialization formats - the default is JSON (Accept: application/json and Content-Type: application/json) but kubernetes.clients may also use YAML (application/yaml) or the native Protobuf schema (application/vnd.kubernetes.protobuf). Note that the format of the WATCH API call is slightly different - for JSON it returns newline delimited objects while for Protobuf it returns length-delimited frames (4 bytes in network-order) that contain a 'versioned.Watch' Protobuf object. See the OpenShift documentation at https://docs.openshift.org for more information.
OpenAPI spec version: latest
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import os
import sys
import unittest
import kubernetes.client
from kubernetes.client.rest import ApiException
from kubernetes.client.models.v1_image_stream import V1ImageStream
class TestV1ImageStream(unittest.TestCase):
""" V1ImageStream unit test stubs """
def setUp(self):
pass
def tearDown(self):
pass
def testV1ImageStream(self):
"""
Test V1ImageStream
"""
model = kubernetes.client.models.v1_image_stream.V1ImageStream()
if __name__ == '__main__':
unittest.main()
|
[
"mateus.caruccio@getupcloud.com"
] |
mateus.caruccio@getupcloud.com
|
a6fa615f7fb4b26b658dab52008462a204aaa48f
|
c8fc387b0b440bf1681e581adaac5b5ef718525f
|
/project/src/utils/output_util.py
|
e49077470bc0acbdcf2c936edf1f99a927b514f5
|
[] |
no_license
|
MingjunGuo/bdt_5002
|
bc0f37a2f5453d531a6b73c1dccc959c1cc7311c
|
591ec7f3854d5d0e1ffd47f2086776253ce405ce
|
refs/heads/master
| 2020-04-01T13:09:35.819447
| 2019-01-24T06:50:28
| 2019-01-24T06:50:28
| 153,239,171
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 3,637
|
py
|
# -*- coding: UTF-8 -*-
## 主程序
import numpy as np
import pandas as pd
import os
def write_value_to_csv(city,
file_name,
values,
output_features,
day=True,
seperate=False,
one_day_model=False):
'''
write all the values to a csv file according to output_features.
day : False to use old model, True to use day model.
'''
# just use the last element of values
# values shape is (m, output_hours, output_features)
# values = values[-1,:,:]
df_list = []
for i in range(values.shape[0]):
value = values[i, :, :]
# load sample
if city == "bj":
df = pd.read_csv('E:/python/5002DM/project/data/sample_submission.csv')
# df = pd.read_csv("submission/sample_bj_submission.csv")
features = ["PM2.5", "PM10", "O3"]
df["PM2.5"] = df["PM2.5"].astype('float64')
df["PM10"] = df["PM10"].astype('float64')
for index in df.index:
test_id = df.test_id[index]
station, hour = test_id.split("#")
for feature in features:
r = get_value_from_array(value, output_features, station, int(hour), feature)
# print(r)
df.set_value(index, feature, r)
df.set_index("test_id", inplace=True)
df[df < 0] = 0
# rename columns
original_names = df.columns.values.tolist()
names_dict = {original_name: original_name + "_" + str(i) for original_name in original_names}
df.rename(index=str, columns=names_dict, inplace=True)
df_list.append(df)
df = pd.concat(df_list, axis=1)
if seperate:
path = "./model_preds_seperate/%s/%s.csv" % (city, file_name)
file_dir = os.path.split(path)[0]
if not os.path.isdir(file_dir):
os.makedirs(file_dir)
df.to_csv(path)
if day:
path = "./model_preds_day/%s/%s.csv" % (city, file_name)
file_dir = os.path.split(path)[0]
if not os.path.isdir(file_dir):
os.makedirs(file_dir)
df.to_csv(path)
if one_day_model:
path = "./model_preds_one_day/%s/%s.csv" % (city, file_name)
file_dir = os.path.split(path)[0]
if not os.path.isdir(file_dir):
os.makedirs(file_dir)
df.to_csv(path)
else:
path = "./model_preds/%s/%s.csv" % (city, file_name)
file_dir = os.path.split(path)[0]
if not os.path.isdir(file_dir):
os.makedirs(file_dir)
df.to_csv(path)
# if seperate:
# df.to_csv("model_preds_seperate/%s/%s.csv" % (city, file_name))
# if day:
# df.to_csv("model_preds_day/%s/%s.csv" % (city, file_name))
# if one_day_model:
# df.to_csv("model_preds_one_day/%s/%s.csv" % (city, file_name))
# else:
# df.to_csv("model_preds/%s/%s.csv" % (city, file_name))
def get_value_from_array(value_array, output_features, target_station, target_hour, target_feature):
for index, output_feature in enumerate(output_features) :
features = output_feature.split("_")
if "aq" in features :
features.remove("aq")
station, feature = features
if "aq" in target_station :
target_station = target_station.split("_")[0]
if target_station in station and feature == target_feature :
return value_array[target_hour,index]
return -1
|
[
"noreply@github.com"
] |
noreply@github.com
|
147b3bc0148ddc69e31304519e65c37ad3c790e6
|
80de5ac86ce85b5aa93788d5d2325d88b87b47f7
|
/cf/1334/c.py
|
0d9603f1d8a8e97a68d5e3f095f080f1f5405a4e
|
[] |
no_license
|
ethicalrushi/cp
|
9a46744d647053fd3d2eaffc52888ec3c190f348
|
c881d912b4f77acfde6ac2ded0dc9e0e4ecce1c1
|
refs/heads/master
| 2022-04-24T07:54:05.350193
| 2020-04-27T20:27:31
| 2020-04-27T20:27:31
| 257,911,320
| 1
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,169
|
py
|
t = int(input())
for _ in range(t):
n = int(input())
a =[]
for i in range(n):
u, v = [int(x) for x in input().strip().split()]
a.append([u,v])
if n==1:
res=a[0]
else:
mn = 10**10
si = None
for i in range(1,n):
if a[i][0]>a[i-1][1]:
diff = a[i-1][1]
else:
diff = a[i][0]
if diff<mn:
mn = diff
si = i
if a[0][0]>a[-1][1]:
diff = a[-1][1]
else:
diff = a[0][0]
if diff<mn:
mn = diff
si = 0
# print(si)
if si is None:
res = min(a[i][0] for i in range(n))
else:
# res=0
res=a[si][0]
ct=1
prev_i=si
i = si+1
if i==n:
i=0
while ct<n:
# print(i, prev_i, res)
res+=max(0,a[i][0]-a[prev_i][1])
prev_i = i
i+=1
if i==n:
i=0
ct+=1
print(res)
|
[
"pupalerushikesh@gmail.com"
] |
pupalerushikesh@gmail.com
|
86e28e058036e1492b3a36eb2e82fa2641ec4989
|
2deddb3a19163f9cc461bdb9c2dacfdbb57b9f47
|
/sfbay_cons_tracer_00.py
|
dc2f2067ff4a50328831179e3832cba4d0b2f4f5
|
[] |
no_license
|
rustychris/sfbay_cons_tracer
|
f1548bbf06841d56790110e1019c92ee60e5a142
|
7d7653d5747b638a10ebdb3dac7b2b89c18cbc1c
|
refs/heads/master
| 2021-06-11T02:01:16.386183
| 2019-09-06T19:33:32
| 2019-09-06T19:33:32
| 128,102,887
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 7,917
|
py
|
"""
Copied from
/home/rusty/models/delft/nbwaq/spinupdate/spinupdate_wy2013_D02cons_tracer.py
Moving on to 4/28/16, np=4, D02 hydrodynamics
this one does the full list of passive tracers
"""
import os
import shutil
import logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger()
import numpy as np
from stompy import utils
from stompy.model.delft import waq_scenario
import pandas as pd
import ugrid
from stompy.spatial import (wkb2shp,proj_utils)
from stompy.grid import unstructured_grid
##
# The 2017-10-16 runs used this older hydrodynamic data.
# hydro=waq_scenario.HydroFiles("../../delft/sfb_dfm_v2/runs/wy2013a/DFM_DELWAQ_wy2013a/wy2013a.hyd")
# This is the hydro described in the Intermim Model Validation Report, with the adjusted
# fluxes for issues with that version of DFM.
hydro=waq_scenario.HydroFiles("../../delft/sfb_dfm_v2/runs/wy2013c/DFM_DELWAQ_wy2013c_adj/wy2013c.hyd")
hydro.enable_write_symlink=True
##
PC=waq_scenario.ParameterConstant
Sub=waq_scenario.Substance
IC=waq_scenario.Initial
# Water quality setup
class Scen(waq_scenario.Scenario):
name="sfb_dfm_v2"
desc=('sfb_dfm_v2',
'wy2013c',
'conserv_tracer')
# removed BALANCES-SOBEK-STYLE
# IMPORTANT to have the NODISP-AT-BOUND in there.
integration_option="""15 ;
LOWER-ORDER-AT-BOUND NODISP-AT-BOUND
BALANCES-OLD-STYLE BALANCES-GPP-STYLE
BAL_NOLUMPPROCESSES BAL_NOLUMPLOADS BAL_NOLUMPTRANSPORT
BAL_NOSUPPRESSSPACE BAL_NOSUPPRESSTIME
"""
base_path='runs/wy2013c-20180404'
#maybe this will be more stable with shorter time step?
# with 30 minutes, failed with non-convergence at 0.09% or so.
# with 15 minutes, failed with non-convergence at 7.28%
time_step=1000 # dwaq HHMMSS integer format
# a bit less annoying than nefis
map_formats=['binary']
# stormwater is grouped into a single tracer
storm_sources=['SCLARAVW2_flow',
'SCLARAVW1_flow',
'SCLARAVW4_flow',
'SCLARAVW3_flow',
'UALAMEDA_flow',
'EBAYS_flow',
'COYOTE_flow',
'PENINSULb1_flow',
'EBAYCc3_flow',
'USANLORZ_flow',
'PENINSULb3_flow',
'PENINSULb4_flow',
'EBAYCc2_flow',
'PENINSULb6_flow',
'PENINSULb2_flow',
'PENINSULb7_flow',
'PENINSULb5_flow',
'SCLARAVCc_flow',
'SCLARAVW5_flow',
'MARINS1_flow',
'EBAYCc6_flow',
'EBAYCc1_flow',
'EBAYCc5_flow',
'EBAYCc4_flow',
'MARINN_flow',
'NAPA_flow',
'CCOSTAW2_flow',
'CCOSTAW3_flow',
'MARINS3_flow',
'MARINS2_flow',
'PETALUMA_flow',
'SONOMA_flow',
'CCOSTAW1_flow',
'SOLANOWc_flow',
'CCOSTAC2_flow',
'EBAYN1_flow',
'EBAYN4_flow',
'EBAYN2_flow',
'EBAYN3_flow',
'SOLANOWa_flow',
'SOLANOWb_flow',
'CCOSTAC3_flow',
'CCOSTAC1_flow',
'CCOSTAC4_flow']
delta_sources=['Jersey_flow',
'RioVista_flow']
sea_sources=[ 'Sea_ssh' ]
# run only a subset of substances
sub_subset=None
def init_substances(self):
subs=super(Scen,self).init_substances()
# with the DFM run, how do we get the labeling of boundary condition
# and discharge flows?
# previous code just used horizontal boundary flows.
# what do the discharges look like the dwaq data?
# there is a .bnd file, with 88 labeled entries, things like
# "SCLARAVW2_flow".
# each of those has what appears to be the numbers (negative)
# for the boundary exchanges (sometime several boundary exchanges)
# and some xy coordinates
# maybe that's all we need.
link_groups=self.hydro.group_boundary_links()
groups={} # just used for sanity checks to make sure that BCs that we're
# trying to set exist.
for link_group in link_groups:
if link_group['id']>=0 and link_group['name'] not in groups:
groups[ link_group['name'] ] = link_group
# all src_tags default to a concentration BC of 1.0, which is exactly
# what we want here. no need to specify additional data.
def check(name):
return (self.sub_subset is None) or (name in self.sub_subset)
for k in groups.keys():
if k in self.delta_sources + self.storm_sources + self.sea_sources:
# these are lumped below
continue
# if k!='ebda':#DBG
# continue
name=k
if name=='millbrae':
# millbrae and burlingame got combined along the way, due to
# entering in the same cell.
name='millbrae_burlingame'
if not check(name):
continue
print("Adding tracer for %s"%name)
subs[name]=Sub(initial=IC(default=0.0))
# any additional work required here?
# hopefully waq_scenario is going to use these same names to label
# boundaries
self.src_tags.append(dict(tracer=name,items=[k]))
if check('delta'):
subs['delta']=Sub(initial=IC(default=0.0))
self.src_tags.append( dict(tracer='delta',
items=self.delta_sources) )
if check('stormwater'):
subs['stormwater']=Sub(initial=IC(default=0.0))
self.src_tags.append( dict(tracer='stormwater',
items=self.storm_sources) )
if check('sea'):
subs['sea']=Sub(initial=IC(default=0.0))
self.src_tags.append( dict(tracer='sea',
items=self.sea_sources) )
if check('continuity'):
subs['continuity']=Sub(initial=IC(default=1.0))
self.src_tags.append( dict(tracer='continuity',
items=list(groups.keys())))
return subs
def init_parameters(self):
# choose which processes are enabled. Includes some
# parameters which are not currently used.
params=super(Scen,self).init_parameters()
params['NOTHREADS']=PC(24) # one processor.. or maybe two, or four
# maybe defaulted to 1e-7?
# 1e-6 failed to 0.09%, same as before
params['Tolerance']=1e-5
params['ACTIVE_DYNDEPTH']=1
params['ACTIVE_TOTDEPTH']=1
return params
def cmd_default(self):
self.cmd_write_hydro()
self.cmd_write_inp()
self.cmd_delwaq1()
self.cmd_delwaq2()
def __init__(self,*a,**k):
super(Scen,self).__init__(*a,**k)
self.map_output+=('TotalDepth',
'volume',
'depth')
##
if __name__=='__main__':
scen=Scen(hydro=hydro,
sub_subset=['stormwater'])
scen.start_time=scen.time0+scen.scu*hydro.t_secs[0]
scen.stop_time =scen.time0+scen.scu*hydro.t_secs[-2]
# real run, but just daily map output
scen.map_time_step=240000 # map output daily
# debugging - hourly output
# scen.map_time_step=10000 # map output hourly
if 1:
scen.cmd_default()
# scen.cmd_write_nc()
else:
scen.main()
|
[
"rustyh@sfei.org"
] |
rustyh@sfei.org
|
14b450a72c93ad9b78cf7685fe19e4122eb15c24
|
add74ecbd87c711f1e10898f87ffd31bb39cc5d6
|
/xcp2k/classes/_mp21.py
|
562fa5609e8ddc81fe2febf073542f27d358c618
|
[] |
no_license
|
superstar54/xcp2k
|
82071e29613ccf58fc14e684154bb9392d00458b
|
e8afae2ccb4b777ddd3731fe99f451b56d416a83
|
refs/heads/master
| 2021-11-11T21:17:30.292500
| 2021-11-06T06:31:20
| 2021-11-06T06:31:20
| 62,589,715
| 8
| 2
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 514
|
py
|
from xcp2k.inputsection import InputSection
from xcp2k.classes._mp2_info1 import _mp2_info1
class _mp21(InputSection):
def __init__(self):
InputSection.__init__(self)
self.Section_parameters = None
self.Method = None
self.Big_send = None
self.MP2_INFO = _mp2_info1()
self._name = "MP2"
self._keywords = {'Method': 'METHOD', 'Big_send': 'BIG_SEND'}
self._subsections = {'MP2_INFO': 'MP2_INFO'}
self._attributes = ['Section_parameters']
|
[
"xingwang1991@gmail.com"
] |
xingwang1991@gmail.com
|
2722446b64a90b86d4f746b22fdad8f220f3b9d9
|
172e35bb936c0219c1ae751f48c331047b7fd68f
|
/problems/py-strings/gc2.py
|
431b8360e044c41e1d33d7b736c245c75d625fd6
|
[] |
no_license
|
cmrrsn/abe487
|
8f25d49533450ee69637fe397aeec7ba374642e0
|
2572e418bbd7d76fe2028da07896c02de40cd420
|
refs/heads/master
| 2021-01-23T17:55:25.414975
| 2017-12-05T19:38:40
| 2017-12-05T19:38:40
| 102,779,271
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 493
|
py
|
#!/usr/bin/env python3
import sys
import os
def main():
"""main"""
files = sys.argv[1:]
if len(files) != 1:
print('Usage: {} FILE' .format(sys.argv[0]))
sys.exit(1)
if os.path.isfile(files[0]) == False:
print('"{}" is not a file'.format(files[0]))
sys.exit(1)
for seq in open(files[0]):
i=0
gc=0
for bp in seq:
if bp in 'aAtTcCgG':
i += 1
if bp in 'gGcC':
gc += 1
pgc = int((gc/i)*100)
print('{}'.format(pgc))
if __name__ == '__main__':
main()
|
[
"cmmorrison1@login2.cm.cluster"
] |
cmmorrison1@login2.cm.cluster
|
a5c946729ef57bcccc32f61428f82484fc908fba
|
f7387905bfe862e525602a5a3e997de088684e10
|
/Swagger/python-client/setup.py
|
bea8806adae6917c4d8806ab2f19f8cfe88674b4
|
[] |
no_license
|
AnirudhNagulapalli/Flyingsaucers
|
a5724f81e1dec698cc3bcebda182f04e6fb4e07a
|
a429300273626f259ee158ba8a97d44a23d68406
|
refs/heads/master
| 2021-01-23T14:30:53.828674
| 2017-12-11T09:37:58
| 2017-12-11T09:37:58
| 102,689,225
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 832
|
py
|
# coding: utf-8
"""
Flying Saucers
This is for MSCS710 Project Course
OpenAPI spec version: 1.0.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import sys
from setuptools import setup, find_packages
NAME = "swagger-client"
VERSION = "1.0.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
setup(
name=NAME,
version=VERSION,
description="Flying Saucers",
author_email="",
url="",
keywords=["Swagger", "Flying Saucers"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description="""\
This is for MSCS710 Project Course
"""
)
|
[
"anirudh.nagulapalli1@marist.edu"
] |
anirudh.nagulapalli1@marist.edu
|
73616b9e93361ad0fc86bdeef7e8e7d1c8c6c9fb
|
c86043aff8b6803102e44bc0f323b5dd3e2e3a2d
|
/comp/plot_numbers.py
|
b8e06d6ceeeb439f02390acf3575a407cef2e273
|
[] |
no_license
|
ivotron/open-comp-rsc-popper
|
6a3a2d6fe0b17aae5d4f26ff25ed186187e3c714
|
05acba677f68f3fea6c88245c84d181384163a96
|
refs/heads/master
| 2020-03-16T21:54:13.804728
| 2018-10-18T08:16:16
| 2018-10-18T08:16:16
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 190
|
py
|
import sys, matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as pl
import numpy as np
fpath = sys.argv[1]
data = np.load(fpath)
pl.plot(data)
pl.savefig('comp/data/original.png')
|
[
"ivo.jimenez@gmail.com"
] |
ivo.jimenez@gmail.com
|
4ae48a9d376d47aaba570ad7568afe37cbb02418
|
6953e2f2ef4d70f940dfbe0671f1d2ef6bb1bd03
|
/classtutorial.py
|
51d73ab22cb1123c9a0693d0cb06b496a8cd283e
|
[] |
no_license
|
mogarg/Python-Tutorial-Lynda
|
2e786880a2e98b067095af5fefb4b1b3adac4bd2
|
452326453ddb6990d81e1a6b5a478da72f8769cb
|
refs/heads/master
| 2021-01-17T17:44:27.357207
| 2016-06-18T22:45:07
| 2016-06-18T22:45:07
| 58,245,884
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 311
|
py
|
#!/usr/bin/python3
class Fibonacci():
def __init__(self, a, b):
self.a = a
self.b = b
def series(self):
while(True):
yield(self.b)
self.a, self.b = self.b, self.a + self.b
f = Fibonacci(0, 1)
for r in f.series():
if r > 100: break
print(r)
|
[
"matpsycic@gmail.com"
] |
matpsycic@gmail.com
|
4d23735583d49ed6fba1925bf636572e5d146be5
|
2f2e9cd97d65751757ae0a92e8bb882f3cbc5b5b
|
/121.买卖股票的最佳时机.py
|
7cd0e5ce63fc4da08187b59ea4f973e49037b644
|
[] |
no_license
|
mqinbin/python_leetcode
|
77f0a75eb29f8d2f9a789958e0120a7df4d0d0d3
|
73e0c81867f38fdf4051d8f58d0d3dc245be081e
|
refs/heads/main
| 2023-03-10T18:27:36.421262
| 2021-02-25T07:24:10
| 2021-02-25T07:24:10
| 314,410,703
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 463
|
py
|
#
# @lc app=leetcode.cn id=121 lang=python3
#
# [121] 买卖股票的最佳时机
#
# @lc code=start
class Solution:
def maxProfit(self, prices: List[int]) -> int:
if not prices:
return 0
min_price = prices[0]
max_profit = 0
for i in range(1, len(prices)):
max_profit = max(prices[i] - min_price ,max_profit)
min_price = min(min_price, prices[i])
return max_profit
# @lc code=end
|
[
"mqinbin@gmail.com"
] |
mqinbin@gmail.com
|
06b857862b7da068774dc2990c21f01bfaffbd27
|
aec21c0a63b4a29fe1c911fada0dc479c1803f02
|
/scripts/profile.py
|
80a0a6a6f07b8305226999c54b80794a781378f4
|
[
"MIT"
] |
permissive
|
ultimachine/Reflow-Profiler
|
fb3e4cde1a8649d4d68e4853eee43d39079ecec2
|
f472c14a9555473a83626909da16ffcf2db3f59b
|
refs/heads/master
| 2020-05-29T22:58:24.993275
| 2013-07-25T17:13:56
| 2013-07-25T17:13:56
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 4,600
|
py
|
#!/usr/bin/env python
import matplotlib.pyplot as plt
import serial
import time
import sys
import numpy as np
import re
import signal
import argparse
#Setup Command line arguments
parser = argparse.ArgumentParser(
prog = "reflow-profiler",
usage = "%(prog)s [options] input...",
description = "Log thermocouple data from serial to profile a reflow oven."
)
parser.add_argument("-p", "--port", action='store', default='', help="set serial port")
parser.add_argument("-b", "--baudrate", action='store', type=int, default=115200, help="set serial port (default: 115200)")
parser.add_argument("-n", "--nograph", action='store_true', default=False, help="supress graph data")
parser.add_argument('--version', action='version', version="%(prog)s 0.0.1-dev")
#Always output help by default
if len(sys.argv) == 1:
parser.print_help()
sys.exit(0)
args = parser.parse_args()
endLoop = False
char = ''
#Setup shutdown handlers
def signal_handler(signal, frame):
print "Stop record."
global endLoop
endLoop = True
signal.signal(signal.SIGINT, signal_handler)
print "Reflow Profiler"
if args.port == "":
print "No serial port specified, exiting"
sys.exit(0)
print "Opening " + args.port
print "Connecting at " + str(args.baudrate) + " baud"
ser = serial.Serial(port=args.port, baudrate=args.baudrate)
print "Initializing thermocouple board"
ser.setDTR(False)
time.sleep(1)
ser.setDTR(True)
while not ser.inWaiting():
time.sleep(0.1)
print "Press Enter to begin profiling"
ser.flushInput()
ser.flushOutput()
raw_input()
print "Gathering data"
profile = "Test started at: " + time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime())
startTime = time.time()
output = ser.read(ser.inWaiting())
tempString = ""
lastLen = 0
lastTime = startTime
chars = 0
print "Current temp (C): ",
while not endLoop:
char = ser.read(ser.inWaiting())
output += char
sys.stdout.write(char)
ser.close()
endTime = time.time()
humanEndTime = time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime())
profile += "Test ended at: " + humanEndTime
runTime = endTime - startTime
samples = map(int,re.findall(r'\b\d+\b', output))
timeIncrement = runTime/len(samples)
timeScale = np.arange(0,runTime,timeIncrement)
residency = [0,0,0,0,0,0]
finding = 0
maxTemp = max(samples)
firstReading = False
startAbove227 = 0
endAbove227 = 0
#find time above points
lastVal = samples[0]
for idx, val in enumerate(samples):
#clone prevoius val ifdeviate more than +-2 degrees
if val in range(lastVal-3,lastVal+3,1):
lastVal = val
else:
val = lastVal
samples[idx] = lastVal
if val == 40 and finding == 0:
startTime = idx
profileStart = idx
elif val == 150 and finding == 0:
lastTime = idx
residency[finding] = (lastTime - startTime) * timeIncrement
startTime = idx
finding = 1
elif val == 175 and finding == 1:
lastTime = idx
residency[finding] = (lastTime - startTime) * timeIncrement
startTime = idx
finding = 2
elif val == maxTemp and finding == 2:
lastTime = idx
residency[finding] = (lastTime - startTime) * timeIncrement
startTime = idx
finding = 4
elif val == 227 and not firstReading:
startAbove227 = idx
firstReading = True
elif val == 227:
endAbove227 = idx
elif val == 95 and finding == 4:
lastTime = idx
residency[5] = (lastTime - profileStart) * timeIncrement/60
residency[3] = (endAbove227 - startAbove227) * timeIncrement
residency[4] = (227-40)/((endAbove227 - lastTime) * timeIncrement)
profile += "\nMax temp: " + str(maxTemp)
profile += "\nSeconds from 40C to 150C: " + str(residency[0])
profile += "\nSeconds from 150C to 175C: " + str(residency[1])
profile += "\nSeconds to max temp: " + str(residency[2])
profile += "\nSeconds above 227C: " + str(residency[3])
profile += "\nCooldown rate (C/sec): " + str(residency[4])
profile += "\nProfile length (min): " + str(residency[5]) + "\n"
print profile
profile = profile + "Data entries taken every " + str(timeIncrement) + " seconds:\n" + output
path = humanEndTime+".waveprofile"
f = open(path,"w")
f.write(profile)
f.close()
if not args.nograph:
plt.plot(timeScale, samples)
plt.plot([0,runTime],[150,150])
plt.plot([0,runTime],[175,175])
plt.plot([0,runTime],[227,227])
plt.plot([0,runTime],[235,235])
plt.plot([0,runTime],[255,255])
plt.ylabel('Temp (C)')
plt.xlabel('Time (S)')
plt.title('Thermocouple Output')
plt.show()
|
[
"kd2cca@gmail.com"
] |
kd2cca@gmail.com
|
510ee037286e9bb98097631e6f4b1e333b3618f9
|
93c58b92803d0467d29fd9c9c4b1a3998bcf283f
|
/transcriptions/models/show_the_model.py
|
c55516278826758fd4b5e249b1086d7d9947b427
|
[
"MIT"
] |
permissive
|
Ipuch/dms-vs-dc
|
ac4ac5d62bca9839cbe7b60f58fd9cb7f96f4416
|
2878e00f4a862c5bcb9064b0c962922af6be00ea
|
refs/heads/main
| 2023-09-04T00:00:22.787777
| 2023-08-21T20:13:19
| 2023-08-21T20:13:19
| 519,305,613
| 2
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 5,598
|
py
|
"""
This file is to display the human model into bioviz
"""
import os
import bioviz
from transcriptions import Models
# model_name = Models.LEG
# model_name = Models.ARM
# model_name = Models.ACROBAT
model_name = Models.UPPER_LIMB_XYZ_VARIABLES
# model_name = Models.HUMANOID_10DOF
export_model = False
background_color = (1, 1, 1) if export_model else (0.5, 0.5, 0.5)
show_gravity_vector = False if export_model else True
show_floor = False if export_model else True
# show_local_ref_frame = False if export_model else True
show_local_ref_frame = True
show_global_ref_frame = False if export_model else True
show_global_ref_frame = False
show_markers = False if export_model else True
show_mass_center = False if export_model else True
show_global_center_of_mass = False if export_model else True
show_segments_center_of_mass = False if export_model else True
def print_all_camera_parameters(biorbd_viz: bioviz.Viz):
print("Camera roll: ", biorbd_viz.get_camera_roll())
print("Camera zoom: ", biorbd_viz.get_camera_zoom())
print("Camera position: ", biorbd_viz.get_camera_position())
print("Camera focus point: ", biorbd_viz.get_camera_focus_point())
if model_name == Models.LEG:
biorbd_viz = bioviz.Viz(model_name.value,
show_gravity_vector=False,
show_floor=False,
show_local_ref_frame=show_local_ref_frame,
show_global_ref_frame=show_global_ref_frame,
show_markers=show_markers,
show_mass_center=show_mass_center,
show_global_center_of_mass=False,
show_segments_center_of_mass=True,
mesh_opacity=1,
background_color=(1, 1, 1),
)
biorbd_viz.resize(1000, 1000)
biorbd_viz.set_camera_roll(-82.89751054930615)
biorbd_viz.set_camera_zoom(2.7649491449197656)
biorbd_viz.set_camera_position(1.266097531449429, -0.6523601622496974, 0.24962580067391163)
biorbd_viz.set_camera_focus_point(0.07447263939980919, 0.025078204682856153, -0.013568198245759833)
if model_name == Models.ARM:
biorbd_viz = bioviz.Viz(
model_name.value,
show_gravity_vector=False,
show_floor=False,
show_local_ref_frame=show_local_ref_frame,
show_global_ref_frame=show_global_ref_frame,
show_markers=show_markers,
show_mass_center=show_mass_center,
show_global_center_of_mass=False,
show_segments_center_of_mass=True,
mesh_opacity=1,
background_color=(1, 1, 1),
)
biorbd_viz.resize(1000, 1000)
biorbd_viz.set_q([-0.15, 0.24, -0.41, 0.21, 0, 0])
biorbd_viz.set_camera_roll(-84.5816885957667)
biorbd_viz.set_camera_zoom(2.112003880097381)
biorbd_viz.set_camera_position(1.9725681105744026, -1.3204979216430117, 0.35790018139336177)
biorbd_viz.set_camera_focus_point(-0.3283876664932833, 0.5733643134562766, 0.018451815011995998)
if model_name == Models.ACROBAT:
biorbd_viz = bioviz.Viz(
model_name.value,
show_gravity_vector=False,
show_floor=False,
show_local_ref_frame=False,
show_global_ref_frame=False,
show_markers=False,
show_mass_center=False,
show_global_center_of_mass=False,
show_segments_center_of_mass=False,
mesh_opacity=1,
background_color=(1, 1, 1),
)
biorbd_viz.set_camera_position(-8.782458942185185, 0.486269131372712, 4.362010279585766)
biorbd_viz.set_camera_roll(90)
biorbd_viz.set_camera_zoom(0.308185240948253)
biorbd_viz.set_camera_focus_point(1.624007185850899, 0.009961251074366406, 1.940316420941989)
biorbd_viz.resize(600, 900)
if model_name == Models.UPPER_LIMB_XYZ_VARIABLES:
biorbd_viz = bioviz.Viz(
model_name.value,
show_gravity_vector=False,
show_floor=False,
show_local_ref_frame=False,
show_global_ref_frame=False,
show_markers=False,
show_mass_center=False,
show_global_center_of_mass=False,
show_segments_center_of_mass=False,
mesh_opacity=1,
background_color=(1, 1, 1),
)
biorbd_viz.resize(1000, 1000)
# biorbd_viz.set_q([-0.15, 0.24, -0.41, 0.21, 0, 0])
biorbd_viz.set_camera_roll(-100.90843467296737)
biorbd_viz.set_camera_zoom(1.9919059008044755)
biorbd_viz.set_camera_position(0.8330547810707182, 2.4792370867179256, 0.1727481994453778)
biorbd_viz.set_camera_focus_point(-0.2584435804313228, 0.8474543937884143, 0.2124670559215174)
# get current path file
# file_name, extension = os.path.splitext(model_name)
# biorbd_viz.snapshot(f"{file_name}/{Models.UPPER_LIMB_XYZ_VARIABLES.name}.png")
if model_name == Models.HUMANOID_10DOF:
biorbd_viz = bioviz.Viz(
model_name.value[0],
show_gravity_vector=False,
show_floor=False,
show_local_ref_frame=False,
show_global_ref_frame=False,
show_markers=False,
show_mass_center=False,
show_global_center_of_mass=False,
show_segments_center_of_mass=False,
mesh_opacity=1,
background_color=(1, 1, 1),
)
biorbd_viz.resize(1000, 1000)
biorbd_viz.set_q([-0.20120228, 0.84597746, -0.12389997, -0.15, 0.41, -0.37, -0.86, 0.36, 0.39, 0.66, -0.58, 0])
biorbd_viz.set_camera_roll(-91.44517177211645)
biorbd_viz.set_camera_zoom(0.7961539827851234)
biorbd_viz.set_camera_position(4.639962934524132, 0.4405891958030146, 0.577705598983718)
biorbd_viz.set_camera_focus_point(-0.2828701273331326, -0.04065388066757992, 0.9759133347931428)
biorbd_viz.exec()
print_all_camera_parameters(biorbd_viz)
print("Done")
|
[
"pierre.puchaud@umontreal.ca"
] |
pierre.puchaud@umontreal.ca
|
02640468512f314887a6c73faf4f94bf5dd034af
|
a0583ceb402497e77a2f683424decea16b8ab80b
|
/sushichef.py
|
0ca31f6a58af0eb64e63a82b0aa4e93b4a557a15
|
[
"MIT"
] |
permissive
|
richard-dinh/sushi-chef-newz-beat
|
b5a07e21ec18b7539071a520dc910c8910253d3a
|
766e5251b2f0002db0c5fe912fe0bf07f7c1ad94
|
refs/heads/main
| 2023-03-05T00:32:11.104007
| 2020-10-23T23:49:36
| 2020-10-23T23:49:36
| 309,466,267
| 0
| 0
|
MIT
| 2020-11-02T18:54:48
| 2020-11-02T18:54:47
| null |
UTF-8
|
Python
| false
| false
| 2,826
|
py
|
#!/usr/bin/env python
import os
import sys
from ricecooker.utils import downloader, html_writer
from ricecooker.chefs import YouTubeSushiChef
from ricecooker.classes import nodes, files, questions, licenses
from ricecooker.config import LOGGER # Use LOGGER to print messages
from ricecooker.exceptions import raise_for_invalid_channel
from le_utils.constants import exercises, content_kinds, file_formats, format_presets, languages
# Run constants
################################################################################
CHANNEL_ID = "32e5033ebc7a456b91fccbd2747d4035" # UUID of channel
CHANNEL_NAME = "Newz Beat" # Name of Kolibri channel
CHANNEL_SOURCE_ID = "<yourid>" # Unique ID for content source
CHANNEL_DOMAIN = "<yourdomain.org>" # Who is providing the content
CHANNEL_LANGUAGE = "en" # Language of channel
CHANNEL_DESCRIPTION = None # Description of the channel (optional)
CHANNEL_THUMBNAIL = None # Local path or url to image file (optional)
CONTENT_ARCHIVE_VERSION = 1 # Increment this whenever you update downloaded content
# Additional constants
################################################################################
# The chef subclass
################################################################################
class NewzBeatChef(YouTubeSushiChef):
"""
This class converts content from the content source into the format required by Kolibri,
then uploads the {channel_name} channel to Kolibri Studio.
Your command line script should call the `main` method as the entry point,
which performs the following steps:
- Parse command line arguments and options (run `./sushichef.py -h` for details)
- Call the `SushiChef.run` method which in turn calls `pre_run` (optional)
and then the ricecooker function `uploadchannel` which in turn calls this
class' `get_channel` method to get channel info, then `construct_channel`
to build the contentnode tree.
For more info, see https://ricecooker.readthedocs.io
"""
channel_info = {
'CHANNEL_ID': CHANNEL_ID,
'CHANNEL_SOURCE_DOMAIN': CHANNEL_DOMAIN,
'CHANNEL_SOURCE_ID': CHANNEL_SOURCE_ID,
'CHANNEL_TITLE': CHANNEL_NAME,
'CHANNEL_LANGUAGE': CHANNEL_LANGUAGE,
'CHANNEL_THUMBNAIL': CHANNEL_THUMBNAIL,
'CHANNEL_DESCRIPTION': CHANNEL_DESCRIPTION,
}
# CLI
################################################################################
if __name__ == '__main__':
# This code runs when sushichef.py is called from the command line
chef = NewzBeatChef()
chef.main()
|
[
"kevino@theolliviers.com"
] |
kevino@theolliviers.com
|
2846ddd10fe2bc71174ac826856a840867ef6f23
|
8ed9ad7935736bd53c112768e823585d67300773
|
/pipelines/record_only.py
|
64f333cad79b7a1fd045f547a2cb2fae9b60ceb9
|
[] |
no_license
|
danielhertenstein/streaming-object-detection
|
5913da972d72cdd6ce4aedbfb2b83f10de261292
|
3b7aa2923d0f5e4b03ff97ce13e12509f1abcacc
|
refs/heads/master
| 2021-04-27T10:12:51.607914
| 2018-04-28T19:04:39
| 2018-04-28T19:04:39
| 122,532,498
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 262
|
py
|
import assembler
from pieces import WebcamCapture, Record
def main():
pipeline = assembler.Pipeline(
pieces=[[WebcamCapture], [Record]],
options=[[{}], [{'framerate': 60.0}]]
)
pipeline.run()
if __name__ == '__main__':
main()
|
[
"daniel.hertenstein@gmail.com"
] |
daniel.hertenstein@gmail.com
|
ccf640a6f3089b61899c512ea864d117a27d00e3
|
f0d713996eb095bcdc701f3fab0a8110b8541cbb
|
/a7WiKcyrTtggTym3f_11.py
|
38c97ae03767b14cd4f73e59493d45390792e3c0
|
[] |
no_license
|
daniel-reich/turbo-robot
|
feda6c0523bb83ab8954b6d06302bfec5b16ebdf
|
a7a25c63097674c0a81675eed7e6b763785f1c41
|
refs/heads/main
| 2023-03-26T01:55:14.210264
| 2021-03-23T16:08:01
| 2021-03-23T16:08:01
| 350,773,815
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 516
|
py
|
"""
Create a function that takes two numbers as arguments and return the LCM of
the two numbers.
### Examples
lcm(3, 5) ➞ 15
lcm(14, 28) ➞ 28
lcm(4, 6) ➞ 12
### Notes
* Don't forget to return the result.
* You may want to use the GCD function to make this a little easier.
* LCM stands for least common multiple, the smallest multiple of both integers.
"""
def lcm(a, b):
m = max(a,b)
while True:
if m%a==0 and m%b==0:
return m
m += 1
|
[
"daniel.reich@danielreichs-MacBook-Pro.local"
] |
daniel.reich@danielreichs-MacBook-Pro.local
|
7ea7df614f889ecc385d58e0cb8da56dff59d665
|
bb735076e6a351dd6cbf74b7eb34b9a4538789b7
|
/Laboratorio 25_4.py
|
562bd35a30b90071fdfb8a5713776cf23201b51f
|
[] |
no_license
|
Santi0207/mapa-mental
|
27a4915c9c5c2184b4325f90eab53820f4ea7a6e
|
95dff50253792145deea509337d83d1b474aea15
|
refs/heads/main
| 2023-05-03T03:03:06.578337
| 2021-05-25T19:38:41
| 2021-05-25T19:38:41
| 359,498,950
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 373
|
py
|
# -*- coding: utf-8 -*-
"""
Created on Sat Mar 20 14:19:58 2021
@author: santi
"""
def cantidad_A(palabra):
cont=0
for x in range (len(palabra)):
if palabra [x] =="a" or palabra [x] =="A":
cont+=1
return cont
palabra=input("Ingrese una palabra: ")
print ("la palabra", palabra,"tiene", cantidad_A(palabra), "a")
|
[
"noreply@github.com"
] |
noreply@github.com
|
407c2a6677c326a7a56789bea899851a9a6a5764
|
dda862418770f3885256d96e9bdb13d0759c5f43
|
/codeforces/april-fools-day/is_it_rated.py
|
2f78bf4c3d6d9df72b4d6880be8c4503b3f93453
|
[
"MIT"
] |
permissive
|
bellatrixdatacommunity/data-structure-and-algorithms
|
d56ec485ebe7a5117d4922caeb0cd44c5dddc96f
|
d24c4001a797c12347973263a0f4f98939e86900
|
refs/heads/master
| 2022-12-03T00:51:07.944915
| 2020-08-13T20:30:51
| 2020-08-13T20:30:51
| 270,268,375
| 4
| 0
|
MIT
| 2020-08-13T20:30:53
| 2020-06-07T10:19:36
|
Python
|
UTF-8
|
Python
| false
| false
| 114
|
py
|
"""
[A. Is it rated?](https://codeforces.com/contest/1331/problem/A)
"""
print("No") # The contest was not rated
|
[
"adityaraman96@gmail.com"
] |
adityaraman96@gmail.com
|
a9151a391b64c038d80fc25c24e8ae9bcc938c36
|
927fc31a0144c308a5c8d6dbe46ba8f2728276c9
|
/tasks/final_tasks/file_handling/2.count_word_in_file.py
|
7ad9f89f0c38383b2a89b17194e5f946ad3c11d8
|
[] |
no_license
|
ChandraSiva11/sony-presamplecode
|
b3ee1ba599ec90e357a4b3a656f7a00ced1e8ad3
|
393826039e5db8a448fa4e7736b2199c30f5ed24
|
refs/heads/master
| 2023-01-14T00:09:19.185822
| 2020-11-23T02:07:00
| 2020-11-23T02:07:00
| 299,527,171
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 268
|
py
|
# Python Program to Count the Number of Words in a Text File
def main():
num_words = 0
with open('text_doc.txt', 'r') as f:
for line in f:
words = line.split()
num_words += len(words)
print('Number of words', num_words)
if __name__ == '__main__':
main()
|
[
"chandra2.s@aricent.com"
] |
chandra2.s@aricent.com
|
244746f59dab7356af77d6b088d09be0109e7eea
|
5e76a420178dcb9008d6e4c12543ad0e3a50c289
|
/python/104.py
|
188ebec7d7866ddc2ac4ab6f887b025327467442
|
[] |
no_license
|
LichAmnesia/LeetCode
|
da6b3e883d542fbb3cae698a61750bd2c99658fe
|
e890bd480de93418ce10867085b52137be2caa7a
|
refs/heads/master
| 2020-12-25T14:22:58.125158
| 2017-07-18T06:44:53
| 2017-07-18T06:44:53
| 67,002,242
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 596
|
py
|
# -*- coding: utf-8 -*-
# @Author: Lich_Amnesia
# @Email: alwaysxiaop@gmail.com
# @Date: 2016-09-18 17:38:27
# @Last Modified time: 2016-09-18 17:41:20
# @FileName: 104.py
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution(object):
def maxDepth(self, root):
"""
:type root: TreeNode
:rtype: int
"""
if root is None:
return 0
return max(self.maxDepth(root.left), self.maxDepth(root.right)) + 1
|
[
"lich@D-10-157-202-8.dhcp4.washington.edu"
] |
lich@D-10-157-202-8.dhcp4.washington.edu
|
fcceb2b371e8ee367db6bbabddea88495e6aef69
|
ed7708e815a30ebbac6efc696d826b9c3d59c561
|
/1049.py
|
1ec3142525e48fe57e4bc7096ee7b7216248eea4
|
[] |
no_license
|
LehmannPi/URIOnlineJudge
|
222e1c44f6613e79a023227bd6f1ab9ac353eedd
|
5bb82d7b623c152aeb89264ca16dc3c758bf1209
|
refs/heads/master
| 2020-12-04T23:34:01.365947
| 2020-01-05T15:38:17
| 2020-01-05T15:38:17
| 231,935,424
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 549
|
py
|
#estrutura: l[0]; classe: l[1]; habitos_alimentares: l[2]
l = []
for i in range(3):
l.append(input())
if l[0] == 'vertebrado':
if l[1] == 'ave':
if l[2] == 'carnivoro':
print('aguia')
else:
print('pomba')
else:
if l[2] == 'onivoro':
print('homem')
else:
print('vaca')
else:
if l[1] == 'inseto':
if l[2] == 'hematofago':
print('pulga')
else:
print('lagarta')
else:
if l[2] == 'hematofago':
print('sanguessuga')
else:
print('minhoca')
|
[
"noreply@github.com"
] |
noreply@github.com
|
5e2bc1d085bbd63facebfeafee69c6b6b83a580a
|
c1aae64218b22140097dd9c4047684fcaa61cb6e
|
/code/栈的压入、弹出序列.py
|
8ae1b7115d253d3ed4f61511426741ad471436da
|
[] |
no_license
|
KIM199511/-offer
|
b3b75609d4885b1616db541aa10e54f83655e4ce
|
0ddb5c0d7f32fe3654ab9de7ac132a50c016dd7e
|
refs/heads/master
| 2022-11-08T22:00:02.598019
| 2020-07-05T16:27:29
| 2020-07-05T16:27:29
| 277,333,073
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 681
|
py
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2020/5/11 19:16
# @Author : XXX
# @title : 栈的压入、弹出序列
# @Site :
# @File : 栈的压入、弹出序列.py
# @Software: PyCharm
class Solution:
def IsPopOrder(self,pushV, popV):
temp = []
while pushV:
for value in pushV:
temp.append(value)
while temp[-1] == popV[0]:
temp.pop()
popV.pop(0)
if popV == []:
return True
return False
if __name__ == '__main__':
A = Solution()
a = [1,2,3,4,5]
b = [4,5,3,2,1]
print(A.IsPopOrder(a,b))
|
[
"15061112157@163.com"
] |
15061112157@163.com
|
dc518d3adbaa5570a85345dacbb2b97213280b09
|
eb35535691c4153ba2a52774f0e40468dfc6383d
|
/hash_table/uncommon_words.py
|
849d39c6b50e9e3e7e62e2067fc6a68f1b0c2178
|
[] |
no_license
|
BJV-git/leetcode
|
1772cca2e75695b3407bed21af888a006de2e4f3
|
dac001f7065c3c5b210024d1d975b01fb6d78805
|
refs/heads/master
| 2020-04-30T19:04:12.837450
| 2019-03-21T21:56:24
| 2019-03-21T21:56:24
| 177,027,662
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 253
|
py
|
def uncommon_words(A,B):
A=A.split(' ')
B=B.split(' ')
res=[]
d={}
for i in A:
d[i] = d.get(i,0)+1
for i in B:
d[i] = d.get(i,0)+1
for i in d:
if d[i]==1:
res.append(i)
return res
|
[
"noreply@github.com"
] |
noreply@github.com
|
4e6c68f2c808e9ad3a64694e5548a0ffd6165878
|
7532253fcc5d2fb01ceefe924bac7de45376e97b
|
/main.py
|
2b371e6750e3035b3d4edc940eff390d60352c51
|
[
"MIT"
] |
permissive
|
NixonZ/QNetwork-RL
|
37879cc0b976ed9594833598ba3532546d2fef51
|
acf34dd8d598104267da88f3eacc3e44f06265a7
|
refs/heads/main
| 2023-08-28T18:11:31.536607
| 2021-09-29T13:14:54
| 2021-09-29T13:14:54
| 381,694,681
| 1
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 2,272
|
py
|
from environment.env import Env,node
from environment.metalog import U,Exp,metalog
import numpy as np
# from agent.agent import MPNN,Graph_Representation,Agent
from trainer import trainer
from agent.Qmix import Qmix
from agent.agent import device
p = 2
b = 32
n = 6
M = 100
temp = Env(
arrival = [lambda t: Exp(0.1),lambda t: Exp(0.1)],
num_priority= p,
network = [
[]
],
nodes_list = [
node( [
metalog.from_sampler(b,lambda : Exp(0.2),n,(0,np.inf)),
metalog.from_sampler(b,lambda : Exp(0.23),n,(0,np.inf))
], M, p),
],
b = b,
n_terms = n,
M = M
)
# print(temp.action_space)
# print(temp.obervation_space)
# print(temp.get_state()[0].shape)
quantiles = np.array(
[
np.array(metalog.from_sampler(b,lambda : Exp(0.2),n,(0,np.inf)).quantile_val),
np.array(metalog.from_sampler(b,lambda : Exp(0.2),n,(0,np.inf)).quantile_val)
])
temp.step( ( "add node", (M-10,quantiles) ) )
temp.step( ( "add edge", (0, 1.00 ) ) )
temp.step( ( "add node", (M-50,quantiles) ) )
temp.step( ( "add edge", (2, 10 ) ) )
temp.step( ( "edit weights", [[0,2],0.9] ) )
print()
print(temp.action_space)
print(temp.obervation_space)
print(temp.get_state()[0].shape)
print(temp.get_state())
print(temp.get_state_torch())
# print()
data = temp.get_state_torch()
edge_index = data.edge_index
edge_attr = data.edge_attr
x = data.x
# forward_message = MPNN((p,b),1,25,mode='forward').double()
# backward_message = MPNN((p,b),1,25,mode='backward').double()
# x = forward_message.forward(x,edge_attr,edge_index) + backward_message.forward(x,edge_attr,edge_index)
# print()
# model = Graph_Representation((p,b),1,250,500,2).double()
# print(model.forward(data))
# print()
# agent = Agent("edit weights",(p,b),1,25,50,2).double()
# print(agent.forward(data))
# print(agent)
# [ (p.numel(),p.names) for p in agent.parameters() ]
temp = trainer(p,b,M,temp,10,25,3,[Exp(0.7) for _ in range(10000)], max_nodes=5, buffer_size=5e5, train_size=100, lr= 0.0001*6, gamma = 0.9, epsilon = 0.15)
temp.modules.to(device=device)
print(sum(p.numel() for p in temp.modules.parameters() if p.requires_grad))
temp.train(100000,"test1")
# temp = Qmix(2,(p,b),1,100,250,10).double()
# temp.set_weights(data)
|
[
"nalinshani14@gmail.com"
] |
nalinshani14@gmail.com
|
ecf6379021503cfa49fc77acfc14f9a1a5136758
|
4ebb06450c79980f5726bba62e1a61dad811c1da
|
/src/excerpt_server.py
|
1ae4afb3b92564a3a532b3c2a7613999be2257cc
|
[
"MIT"
] |
permissive
|
joy13975/covidprof_submission
|
5a2b1d89c0c53f6c11bed8669b865e8ae7209ae8
|
b3c7bb0ebf6fa1557edb8d1ca5d3d41377508e7d
|
refs/heads/main
| 2023-01-31T14:15:51.336935
| 2020-12-08T12:43:58
| 2020-12-08T12:43:58
| 314,133,178
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 3,416
|
py
|
import logging
import json
import sys
from http.server import BaseHTTPRequestHandler, HTTPServer
from excerpt_gen import ExcerptGen
from base.config_loader import ConfigLoader
class ExcerptServer(ConfigLoader):
def run(self, **kwargs):
# allow command line arguments to overwrite config
for k, v in kwargs.items():
setattr(self, k, v)
eg = ExcerptGen(accelerator=self.accelerator,
model_name=self.model_name)
class RequestHandler(BaseHTTPRequestHandler):
def _set_response(self):
self.send_response(200)
self.send_header('Content-type', 'application/json')
self.end_headers()
def do_POST(self):
# refuse to receive non-json content
ctype = self.headers['Content-Type']
if ctype != 'application/json':
logging.info(f'Got Content-Type={ctype}')
self.send_response(400)
self.end_headers()
return
content_length = int(self.headers['Content-Length'])
body = self.rfile.read(content_length)
logging.info(f'POST request,\nPath: {self.path}')
if self.path == '/get_excerpts':
response = self._get_excerpts(body)
elif self.path == '/get_excerpts_from_docs':
response = self._get_excerpts_from_docs(body)
else:
logging.info(f'Got path={self.path}')
self.send_response(400)
self.end_headers()
return
self._set_response()
self.wfile.write(json.dumps(response).encode('utf-8'))
def _get_excerpts(self, body):
message = json.loads(body)
question = message.get('question', '')
url = message.get(
'url', 'https://en.wikipedia.org/wiki/COVID-19_pandemic')
if question:
response = \
eg.get_excerpts(question, url=url)
else:
response = {'error': 'No question provided'}
return response
def _get_excerpts_from_docs(self, body):
message = json.loads(body)
question = message.get('question', '')
docs = message.get('docs', [])
if question and docs:
response = eg.get_excerpts_from_docs(question, docs)
else:
response = {
'error': (f'No question (len={len(question)}) or '
f'docs (len={len(docs)}) provided')
}
return response
httpd = HTTPServer((self.host, self.port), RequestHandler)
logging.info(f'Listening on {self.host}:{self.port}')
try:
httpd.serve_forever()
except KeyboardInterrupt:
logging.info('KeyboardInterrupt')
finally:
httpd.server_close()
if __name__ == '__main__':
logging.basicConfig(
format='%(asctime)s %(levelname)-8s %(message)s',
level=logging.INFO,
datefmt='%Y-%m-%d %H:%M:%S'
)
s = ExcerptServer()
s.run(**dict(v.split('=') for v in sys.argv[1:]))
|
[
"joyyeh.tw@gmail.com"
] |
joyyeh.tw@gmail.com
|
ef74b6c780caea8be24fb7a36c1bd5e228e66148
|
f36a9701975eec736b5e43ab09ec318eee80c8cc
|
/pyspeckit/spectrum/widgets.py
|
ae949705761f3d5018daacf9ece04cedd453487e
|
[
"MIT"
] |
permissive
|
soylentdeen/pyspeckit
|
e995f38531256d85313038a0ddeb181a4c6480b8
|
11c449c6951468f2c07dfda3b1177b138f810f16
|
refs/heads/master
| 2021-01-18T11:32:51.659032
| 2013-06-26T00:39:22
| 2013-06-26T00:39:22
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 14,757
|
py
|
from matplotlib.widgets import Widget,Button,Slider
from matplotlib import pyplot
import matplotlib
class dictlist(list):
def __init__(self, *args):
list.__init__(self, *args)
self._dict = {}
self._dict_index = {}
for ii,value in enumerate(self):
if len(value) == 2:
self._dict[value[0]] = value[1]
self._dict_index[value[0]] = ii
self._dict_index[ii] = value[0]
else:
self._dict[ii] = value
self._dict_index[ii] = ii
def __getitem__(self, key):
if type(key) is int:
return super(dictlist,self).__getitem__(key)
else:
return self._dict[key]
def __setitem__(self, key, value):
if type(key) is int:
super(dictlist,self).__setitem__(key,value)
self._dict[self._dict_index[key]] = value
else:
if key in self._dict:
self._dict[key] = value
self[self._dict_index[key]] = value
else:
self._dict[key] = value
self._dict_index[key] = len(self)
self._dict_index[len(self)] = key
self.append(value)
def __slice__(self, s1, s2):
pass
def values(self):
return [self._dict[self._dict_index[ii]] for ii in xrange(len(self))]
def keys(self):
return [self._dict_index[ii] for ii in xrange(len(self))]
class ModifiableSlider(Slider):
def set_valmin(self, valmin):
"""
Change the minimum value of the slider
"""
self.valmin = valmin
self.ax.set_xlim((self.valmin,self.valmax))
if self.val < self.valmin:
self.set_val(self.valmin)
if self.valinit < self.valmin:
self.valinit = (self.valmax-self.valmin)/2. + self.valmin
if self.vline in self.ax.lines:
self.ax.lines.remove(self.vline)
self.vline = self.ax.axvline(self.valinit,0,1, color='r', lw=1)
def set_valmax(self, valmax):
"""
Change the maximum value of the slider
"""
self.valmax = valmax
self.ax.set_xlim((self.valmin,self.valmax))
if self.val > self.valmax:
self.set_val(self.valmax)
if self.valinit > self.valmax:
self.valinit = (self.valmax-self.valmin)/2. + self.valmin
if self.vline in self.ax.lines:
self.ax.lines.remove(self.vline)
self.vline = self.ax.axvline(self.valinit,0,1, color='r', lw=1)
class FitterSliders(Widget):
"""
A tool to adjust to subplot params of a :class:`matplotlib.figure.Figure`
"""
def __init__(self, specfit, targetfig, npars=1, toolfig=None, parlimitdict={}):
"""
*targetfig*
The figure instance to adjust
*toolfig*
The figure instance to embed the subplot tool into. If
None, a default figure will be created. If you are using
this from the GUI
"""
self.targetfig = targetfig
self.specfit = specfit
self.parlimitdict = parlimitdict
if toolfig is None:
tbar = matplotlib.rcParams['toolbar'] # turn off the navigation toolbar for the toolfig
matplotlib.rcParams['toolbar'] = 'None'
self.toolfig = pyplot.figure(figsize=(6,3))
if hasattr(targetfig.canvas.manager,'window'):
self.toolfig.canvas.set_window_title("Fit Sliders for "+targetfig.canvas.manager.window.title())
self.toolfig.subplots_adjust(top=0.9,left=0.2,right=0.9)
matplotlib.rcParams['toolbar'] = tbar
else:
self.toolfig = toolfig
self.toolfig.subplots_adjust(left=0.2, right=0.9)
bax = self.toolfig.add_axes([0.8, 0.05, 0.15, 0.075])
self.buttonreset = Button(bax, 'Reset')
self.set_sliders(parlimitdict)
def reset(event):
thisdrawon = self.drawon
self.drawon = False
# store the drawon state of each slider
bs = []
for slider in self.sliders:
bs.append(slider.drawon)
slider.drawon = False
# reset the slider to the initial position
for slider in self.sliders:
slider.reset()
# reset drawon
for slider, b in zip(self.sliders, bs):
slider.drawon = b
# draw the canvas
self.drawon = thisdrawon
if self.drawon:
self.toolfig.canvas.draw()
self.targetfig.canvas.draw()
# during reset there can be a temporary invalid state
# depending on the order of the reset so we turn off
# validation for the resetting
validate = self.toolfig.subplotpars.validate
self.toolfig.subplotpars.validate = False
self.buttonreset.on_clicked(reset)
self.toolfig.subplotpars.validate = validate
def clear_sliders(self):
"""
Get rid of the sliders...
"""
try:
for sl in self.sliders:
sl.ax.remove()
except NotImplementedError:
for sl in self.sliders:
self.specfit.Spectrum.plotter.figure.delaxes(sl.ax)
self.specfit.Spectrum.plotter.refresh()
def set_sliders(self, parlimitdict={}):
"""
Set the slider properties, actions, and values
can also reset their limits
"""
def update(value):
mpp = [slider.val for slider in self.sliders]
for line in self.specfit.modelplot:
line.set_ydata(self.specfit.get_model_frompars(line.get_xdata(),mpp))
# update components too
for ii,line in enumerate(self.specfit._plotted_components):
xdata = line.get_xdata()
modelcomponents = self.specfit.fitter.components(xdata, mpp, **self.specfit._component_kwargs)
for jj,data in enumerate(modelcomponents):
if ii % 2 == jj:
# can have multidimensional components
if len(data.shape) > 1:
for d in (data):
line.set_ydata(d)
else:
line.set_ydata(data)
self.specfit.Spectrum.plotter.refresh()
self.sliders = dictlist()
npars = len(self.specfit.parinfo)
for param in self.specfit.parinfo:
name = param['parname']
value = param['value']
limited = param['limited']
limits = param['limits']
# make one less subplot so that there's room for buttons
# param['n'] is zero-indexed, subplots are 1-indexed
ax = self.toolfig.add_subplot(npars+1,1,param['n']+1)
ax.set_navigate(False)
if name in parlimitdict:
limits = parlimitdict[name]
limited = [True,True]
if limited[0]:
vmin = limits[0]
elif value != 0:
vmin = min([value/4.0,value*4.0])
else:
vmin = -1
if limited[1]:
vmax = limits[1]
elif value != 0:
vmax = max([value/4.0,value*4.0])
else:
vmax = 1
self.sliders[name] = ModifiableSlider(ax,
name, vmin, vmax, valinit=value)
self.sliders[-1].on_changed(update)
def get_values(self):
return [s.val for s in self.sliders]
class FitterTools(Widget):
"""
A tool to monitor and play with :class:`pyspeckit.spectrum.fitter` properties
--------------------------
| Baseline range [x,x] |
| Baseline order - |
| (Baseline subtracted) |
| |
| Fitter range [x,x] |
| Fitter type ------- |
| Fitter Guesses [p,w] |
| ... ... |
| ... ... |
| |
| (Fit) (BL fit) (reset) |
--------------------------
"""
def __init__(self, specfit, targetfig, toolfig=None, nsubplots=12):
"""
*targetfig*
The figure instance to adjust
*toolfig*
The figure instance to embed the subplot tool into. If
None, a default figure will be created. If you are using
this from the GUI
"""
self.targetfig = targetfig
self.specfit = specfit
self.baseline = specfit.Spectrum.baseline
self.plotter = specfit.Spectrum.plotter
if toolfig is None:
tbar = matplotlib.rcParams['toolbar'] # turn off the navigation toolbar for the toolfig
matplotlib.rcParams['toolbar'] = 'None'
self.toolfig = pyplot.figure(figsize=(6,3))
self.toolfig.canvas.set_window_title("Fit Tools for "+targetfig.canvas.manager.window.title())
self.toolfig.subplots_adjust(top=0.9,left=0.05,right=0.95)
matplotlib.rcParams['toolbar'] = tbar
else:
self.toolfig = toolfig
self.toolfig.subplots_adjust(left=0.0, right=1.0)
#bax = self.toolfig.add_axes([0.6, 0.05, 0.15, 0.075])
#self.buttonrefresh = Button(bax, 'Refresh')
# buttons ruin everything.
# fax = self.toolfig.add_axes([0.1, 0.05, 0.15, 0.075])
# self.buttonfit = Button(fax, 'Fit')
#
# resetax = self.toolfig.add_axes([0.7, 0.05, 0.15, 0.075])
# self.buttonreset = Button(resetax, 'Reset')
# resetblax = self.toolfig.add_axes([0.3, 0.05, 0.15, 0.075])
# self.buttonresetbl = Button(resetblax, 'Reset BL')
# resetfitax = self.toolfig.add_axes([0.5, 0.05, 0.15, 0.075])
# self.buttonresetfit = Button(resetfitax, 'Reset fit')
def refresh(event):
thisdrawon = self.drawon
self.drawon = False
self.update_information()
# draw the canvas
self.drawon = thisdrawon
if self.drawon:
self.toolfig.canvas.draw()
self.targetfig.canvas.draw()
def fit(event):
self.specfit.button3action(event)
def reset_fit(event):
self.specfit.guesses = []
self.specfit.npeaks = 0
self.specfit.includemask[:] = True
self.refresh(event)
def reset_baseline(event):
self.baseline.unsubtract()
self.refresh(event)
def reset(event):
reset_baseline(event)
reset_fit(event)
self.plotter()
self.refresh(event)
# during refresh there can be a temporary invalid state
# depending on the order of the refresh so we turn off
# validation for the refreshting
#validate = self.toolfig.subplotpars.validate
#self.toolfig.subplotpars.validate = False
#self.buttonrefresh.on_clicked(refresh)
#self.toolfig.subplotpars.validate = validate
# these break everything.
# self.buttonfit.on_clicked(fit)
# self.buttonresetfit.on_clicked(reset_fit)
# self.buttonresetbl.on_clicked(reset_baseline)
# self.buttonreset.on_clicked(reset)
#menuitems = []
#for label in ('polynomial','blackbody','log-poly'):
# def on_select(item):
# print 'you selected', item.labelstr
# item = MenuItem(fig, label, props=props, hoverprops=hoverprops,
# on_select=on_select)
# menuitems.append(item)
#menu = Menu(fig, menuitems)
self.axes = [self.toolfig.add_subplot(nsubplots,1,spnum, frame_on=False, navigate=False, xticks=[], yticks=[])
for spnum in xrange(1,nsubplots+1)]
#self.axes = self.toolfig.add_axes([0,0,1,1])
self.use_axes = [0,1,2,4,5,6,7,8,9,10,11]
self.labels = dict([(axnum,None) for axnum in self.use_axes])
self.update_information()
self.targetfig.canvas.mpl_connect('button_press_event',self.refresh)
self.targetfig.canvas.mpl_connect('key_press_event',self.refresh)
self.targetfig.canvas.mpl_connect('draw_event',self.refresh)
def refresh(self, event):
try:
thisdrawon = self.drawon
self.drawon = False
self.update_information()
# draw the canvas
self.drawon = thisdrawon
if self.drawon:
self.toolfig.canvas.draw()
except:
# ALWAYS fail silently
# this is TERRIBLE coding practice, but I have no idea how to tell the object to disconnect
# when the figure is closed
pass
def update_information(self, **kwargs):
self.information = [
("Baseline Range","(%g,%g)" % (self.baseline.xmin,self.baseline.xmax)),
("Baseline Order","%i" % (self.baseline.order)),
("Baseline Subtracted?","%s" % (self.baseline.subtracted)),
("Fitter Range","(%g,%g)" % (self.specfit.xmin,self.specfit.xmax)),
("Fitter Type","%s" % (self.specfit.fittype)),
]
for ii in xrange(self.specfit.npeaks):
guesses = tuple(self.specfit.guesses[ii:ii+3])
if len(guesses) == 3:
self.information += [("Fitter guesses%i:" % ii , "p: %g c: %g w: %g" % guesses) ]
else:
break
self.show_labels(**kwargs)
def show_selected_region(self):
self.specfit.highlight_fitregion()
def show_label(self, axis, text, xloc=0.0, yloc=0.5, **kwargs):
return axis.text(xloc, yloc, text, **kwargs)
def show_value(self, axis, text, xloc=0.5, yloc=0.5, **kwargs):
return axis.text(xloc, yloc, text, **kwargs)
def show_labels(self, **kwargs):
for axnum,(label,text) in zip(self.use_axes, self.information):
if self.labels[axnum] is not None and len(self.labels[axnum]) == 2:
labelobject,textobject = self.labels[axnum]
labelobject.set_label(label)
textobject.set_text(text)
else:
self.labels[axnum] = (self.show_label(self.axes[axnum],label),
self.show_value(self.axes[axnum],text))
def update_info_texts(self):
for newtext,textobject in zip(self.information.values(), self.info_texts):
textobject.set_text(newtext)
#import parinfo
#
#class ParameterButton(parinfo.Parinfo):
# """
# A class to manipulate individual parameter values
# """
# def __init__(self,
|
[
"keflavich@gmail.com"
] |
keflavich@gmail.com
|
2226ec9d9a3aed988198452e5700c9f65c9fc0f1
|
185d97a996e75d153b881d0ebf847ec33e7b049d
|
/primepairs.py
|
1fa54588c0bb0b309897a824aaa8546b59b8aa53
|
[] |
no_license
|
shivank96/pythonbasiclevel
|
88a12d366ed015928cc21b405dcb9ca96d0ade36
|
46623ad75ec176161a780b75651fa80c2d35f107
|
refs/heads/master
| 2023-04-03T13:43:32.974100
| 2021-04-12T13:11:21
| 2021-04-12T13:11:21
| 305,385,010
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,085
|
py
|
import collections
def primepairs():
n=int(input())
i=2
k=0
le=0
li=[]
while i<=n:
count=0
j=1
while j<=i:
if i%j==0:
count=count+1
j=j+1
if count==2:
li.append(i)
le=le+1
i=i+1
l=0
# pairs = []
# pair = []
if n%2==0:
response = int(n/2)
else:
response=int(n/2)+1
for l in range(len(li)):
m=1
for m in range(len(li)):
res=li[l]+li[m]
if res== n and li[l]<=response:
print(li[l],"+",li[m],"=",n)
# pair.append(li[l])
# pair.append(li[m])
# pairs.append(pair)
m=m+1
l=l+1
# temp = collections.Counter(frozenset(ele) for ele in pairs)
# ans = [temp[frozenset(ele)]==1 for ele in pairs]
# if len(ans)%2==0:
# response = int(len(ans)/2)
# else:
# response = int((len(ans)/2)+1)
#
# for x in range(response):
# print(ans[x])
print(li)
primepairs()
|
[
"shivankg96@gmail.com"
] |
shivankg96@gmail.com
|
131cac583fbecae810f6bf5d0f112c5dca2fef27
|
9894fe2e1a1777845f7625fdff21092ba7629c96
|
/src/functions/Preprocess.py
|
0006dce3b6a14abeb294f8ff4cc947b40515b967
|
[] |
no_license
|
Gion-KS/GSSL
|
443ef533779b682e87894109e5946fbde9550dbb
|
90207f29f45512760eb1141b5a484184095e9cff
|
refs/heads/master
| 2020-06-04T00:04:22.364907
| 2019-06-13T14:45:40
| 2019-06-13T14:45:40
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 14,586
|
py
|
import re
import nltk
from nltk.corpus import wordnet
from nltk.stem import WordNetLemmatizer
import string
from sklearn.datasets import fetch_20newsgroups
from src.classes import Dataset
from sklearn.feature_extraction.text import CountVectorizer
import src.functions.Vocabulary as voc
from src.classes.dataset import Dataset
# Preprocess the 20 Newsgroups data
def process(categories):
i = 0
while i < len(categories):
trainingdata = fetch_20newsgroups(subset='train',
remove=('headers', 'footers', 'quotes'),
categories=[categories[i]])
testdata = fetch_20newsgroups(subset='test',
remove=('headers', 'footers', 'quotes'),
categories=[categories[i]])
lemmatize_newsgroup(trainingdata, testdata, categories[i])
remove_stopwords(trainingdata)
remove_stopwords(testdata)
print_docs(trainingdata, testdata, categories[i])
i += 1
dataset = Dataset(categories)
dataset.load_preprocessed_V1(categories)
remove_frequent_and_infrequent_words(dataset.train)
print_docs_reduced_feature_count(dataset, categories)
print_v2_docs(categories)
print_v2_test_docs_vocabulary(categories)
# Determines how a word shall change to convert it to its base form
def get_wordnet_pos(word):
tag = nltk.pos_tag([word])[0][1][0].upper()
tag_dict = {"J": wordnet.ADJ,
"N": wordnet.NOUN,
"V": wordnet.VERB,
"R": wordnet.ADV}
return tag_dict.get(tag, wordnet.NOUN)
# Lemmatization of text in documents
def lemmatize_newsgroup(newsgroups_train, newsgroups_test, category):
i = 0
lemmatizer = WordNetLemmatizer()
size = len(newsgroups_train.data)
print("Lemmatization in progress...")
print(category + " training data: ", i, "/", size)
while i < len(newsgroups_train.data):
newsgroups_train.data[i] = newsgroups_train.data[i].lower()
newsgroups_train.data[i] = (" ".join([lemmatizer.lemmatize(w, get_wordnet_pos(w)) for w in
nltk.word_tokenize(newsgroups_train.data[i]) if w not in
string.punctuation]))
i += 1
print(category + " training data: ", i, "/", size)
size = len(newsgroups_test.data)
i = 0
print(category + " test data: ", i, "/", size)
while i < len(newsgroups_test.data):
newsgroups_test.data[i] = newsgroups_test.data[i].lower()
newsgroups_test.data[i] = (" ".join([lemmatizer.lemmatize(w, get_wordnet_pos(w)) for w in
nltk.word_tokenize(newsgroups_test.data[i]) if w not in
string.punctuation]))
i += 1
print(category + " test data: ", i, "/", size)
print("Lemmatization finished")
# prints the training and test documents of a category to a their respective file.
def print_docs(newsgroups_train, newsgroups_test, category):
i = 0
print("Printing docs...")
with open('../assets/20newsgroups/train/newsgroups_train_' + category + '.txt', 'w') as f:
while i < len(newsgroups_train.data):
f.write("%s\n" % newsgroups_train.data[i].encode("utf-8"))
i += 1
f.close()
i = 0
with open('../assets/20newsgroups/test/newsgroups_test_' + category + '.txt', 'w') as f:
while i < len(newsgroups_test.data):
f.write("%s\n" % newsgroups_test.data[i].encode("utf-8"))
i += 1
f.close()
print("Printing finished...")
# prints the training documents after frequent and infrequent words have been removed
def print_docs_reduced_feature_count(dataset, categories):
print("Printing docs...")
i = 0
train_category = []
while i < len(categories):
train_category.append([])
i += 1
i = 0
while i < len(dataset.train['data']):
c = 0
category = dataset.train['target_names'][dataset.train['target'][i]]
while c < len(categories):
if category == categories[c]:
train_category[c].append(dataset.train['data'][i])
break
c += 1
i += 1
i = 0
print("Docs sorted")
while i < len(train_category):
if len(train_category[i]) > 1:
with open('../assets/20newsgroups/train/newsgroups_train_' + categories[i] + '.txt', 'w') as f:
j = 0
while j < len(train_category[i]):
f.write("%s\n" % train_category[i][j])
j += 1
f.close()
i += 1
print("Printing finished...")
# prints a new version of the previously printed documents to a new file
# documents without content are not printed
def print_v2_docs(categories):
i = 0
removed_train = 0
removed_test = 0
print("Printing docs...")
while i < len(categories):
with open('../assets/20newsgroups/train2/newsgroups_train_' + categories[i] + '.txt', 'w') as f:
lines = [line.rstrip('\n') for line in open('../assets/20newsgroups/train/newsgroups_train_'
+ categories[i] + '.txt')]
j = 0
while j < len(lines):
lines[j] = re.sub(r'[^\w]', " ", lines[j])
lines[j] = re.sub(r'\b[a-zA-Z]\b', " ", lines[j])
lines[j] = re.sub(r'[ \t]+', " ", lines[j]) # remove extra space or tab
lines[j] = lines[j].strip() + "\n"
size = len(lines[j])
# lines[j] = lines[j][1:size]
if len(lines[j]) > 4:
f.write(lines[j])
else:
removed_train += 1
j += 1
f.close()
with open('../assets/20newsgroups/test2/newsgroups_test_' + categories[i] + '.txt', 'w') as f:
lines = [line.rstrip('\n') for line in open('../assets/20newsgroups/test/newsgroups_test_'
+ categories[i] + '.txt')]
j = 0
dataset = Dataset(categories)
vectorizer = CountVectorizer(stop_words=get_stopwords(), max_df=0.5, min_df=10)
vectors = vectorizer.fit_transform(dataset.train['data'])
vocabulary = vectorizer.vocabulary_
while j < len(lines):
lines[j] = re.sub(r'[^\w]', " ", lines[j])
lines[j] = re.sub(r'\b[a-zA-Z]\b', " ", lines[j])
lines[j] = re.sub(r'[ \t]+', " ", lines[j]) # remove extra space or tab
lines[j] = lines[j].strip() + "\n"
remove_doc = 1
words = lines[j].split()
for word in words:
if word in vocabulary.keys():
remove_doc = 0
break
size = len(lines[j])
# lines[j] = lines[j][1:size]
if len(lines[j]) > 4 and not remove_doc:
f.write(lines[j])
else:
removed_test += 1
j += 1
f.close()
i += 1
print("Printing finished")
print("Removed training doc:", removed_train)
print("Removed testing doc:", removed_test)
# same function as print_v2_docs but prints a new version of test docs which for when the vocabulary constructed
# using all the training documents are in use
def print_v2_test_docs_vocabulary(categories):
i = 0
removed_test = 0
print("Printing docs...")
while i < len(categories):
with open('../assets/20newsgroups/test2vocabulary/newsgroups_test_' + categories[i] + '.txt', 'w') as f:
lines = [line.rstrip('\n') for line in open('../assets/20newsgroups/test/newsgroups_test_'
+ categories[i] + '.txt')]
j = 0
dataset = Dataset(categories)
vectorizer = CountVectorizer(vocabulary=voc.get_vocabulary(categories))
vectors = vectorizer.fit_transform(dataset.train['data'])
vocabulary = vectorizer.vocabulary_
while j < len(lines):
lines[j] = re.sub(r'[^\w]', " ", lines[j])
lines[j] = re.sub(r'\b[a-zA-Z]\b', " ", lines[j])
lines[j] = re.sub(r'[ \t]+', " ", lines[j]) # remove extra space or tab
lines[j] = lines[j].strip() + "\n"
remove_doc = 1
words = lines[j].split()
for word in words:
if word in vocabulary.keys():
remove_doc = 0
break
size = len(lines[j])
# lines[j] = lines[j][1:size]
if len(lines[j]) > 4 and not remove_doc:
f.write(lines[j])
else:
removed_test += 1
j += 1
f.close()
i += 1
print("Printing finished")
print("Removed testing doc:", removed_test)
# same as print_v2_test_docs_vocabulary but for when the runtime vocabulary are in use
def print_v2_test_docs_vocabulary_labeled(categories):
i = 0
removed_test = 0
print("Printing docs...")
while i < len(categories):
with open('../assets/20newsgroups/test2vocabulary_labeled/newsgroups_test_' + categories[i] + '.txt', 'w') as f:
lines = [line.rstrip('\n') for line in open('../assets/20newsgroups/test/newsgroups_test_'
+ categories[i] + '.txt')]
j = 0
dataset = Dataset(categories)
vectorizer = CountVectorizer(vocabulary=voc.get_vocabulary_only_labeled(categories))
vectors = vectorizer.fit_transform(dataset.train['data'])
vocabulary = vectorizer.vocabulary_
while j < len(lines):
lines[j] = re.sub(r'[^\w]', " ", lines[j])
lines[j] = re.sub(r'\b[a-zA-Z]\b', " ", lines[j])
lines[j] = re.sub(r'[ \t]+', " ", lines[j]) # remove extra space or tab
lines[j] = lines[j].strip() + "\n"
remove_doc = 1
words = lines[j].split()
for word in words:
if word in vocabulary.keys():
remove_doc = 0
break
size = len(lines[j])
# lines[j] = lines[j][1:size]
if len(lines[j]) > 4 and not remove_doc:
f.write(lines[j])
else:
removed_test += 1
j += 1
f.close()
i += 1
print("Printing finished")
print("Removed testing doc:", removed_test)
# get stopwords from file
def get_stopwords():
f = open('../assets/stopwords.txt') # https://github.com/suzanv/termprofiling/blob/master/stoplist.txt
x = f.read().split("\n")
f.close()
return x
# removes words with which occur in less than 10 document and more than 50%
def remove_frequent_and_infrequent_words(newsgroup):
vectorizer = CountVectorizer(max_df=0.5, min_df=10)
vectors = vectorizer.fit_transform(newsgroup['data'])
vocabulary = voc.get_top_n_words(newsgroup['data'], len(vectorizer.vocabulary_))
vectorizer = CountVectorizer()
vectors = vectorizer.fit_transform(newsgroup['data'])
vocabulary_with_freq_and_infreq = voc.get_top_n_words(newsgroup['data'], len(vectorizer.vocabulary_))
i = 0
while i < len(vocabulary_with_freq_and_infreq):
vocabulary_with_freq_and_infreq[i] = vocabulary_with_freq_and_infreq[i][0]
if i < len(vocabulary):
vocabulary[i] = vocabulary[i][0]
i += 1
print(len(vocabulary))
print(len(vocabulary_with_freq_and_infreq))
remove = []
i = 0
while i < len(vocabulary_with_freq_and_infreq):
if vocabulary_with_freq_and_infreq[i] not in vocabulary:
remove.append(vocabulary_with_freq_and_infreq[i])
i += 1
remove = "|".join(remove)
i = 0
while i < len(newsgroup['data']):
newsgroup['data'][i] = re.sub(r'\b(' + remove + ')\s', ' ', newsgroup['data'][i])
i += 1
print("Document: ", i, "/", len(newsgroup['data']))
"""
while i < len(vocabulary_with_freq_and_infreq):
j = 0
if vocabulary_with_freq_and_infreq[i] not in vocabulary:
while j < len(newsgroup['data']):
newsgroup['data'][j] = re.sub(r'\b' + vocabulary_with_freq_and_infreq[i] + '\s', ' ',
newsgroup['data'][j])
j += 1
i += 1
print("Freq/Infreq: ", i, "/", len(vocabulary_with_freq_and_infreq))
"""
# fetches the most frequent words from the documents
def get_top_n_words(documents, nbr_of_top_words=None):
vec = CountVectorizer().fit(documents.data)
bag_of_words = vec.transform(documents.data)
sum_words = bag_of_words.sum(axis=0)
words_freq = [(word, sum_words[0, idx]) for word, idx in vec.vocabulary_.items()]
words_freq = sorted(words_freq, key=lambda x: x[1], reverse=True)
return words_freq[:nbr_of_top_words]
# removes stopwords from newsgroup
def remove_stopwords(newsgroup):
print("Removal in progress...")
remove_regex_words(newsgroup)
i = 0
with open('../assets/stopwords.txt', 'r') as f:
words = f.read().split("\n")
while i < len(words):
j = 0
while j < len(newsgroup.data):
newsgroup.data[j] = re.sub(r'\b' + words[i] + '\s', ' ', newsgroup.data[j])
j += 1
i += 1
f.close()
print("Stopwords removed")
# remove stopwords containing a ' using regex.
def remove_regex_words(newsgroup):
i = 0
with open('../assets/stopwords_regex.txt', 'r') as f:
words = f.read().split("\n")
print("Regex in progress...")
while i < len(words):
j = 0
while j < len(newsgroup.data):
newsgroup.data[j] = re.sub(r'[^\w,\']', " ", newsgroup.data[j]) # removes special characters except '
newsgroup.data[j] = re.sub(r'\b' + words[i] + '\s', ' ', newsgroup.data[j])
newsgroup.data[j] = re.sub(r'[^\w]', " ", newsgroup.data[j]) # removes special characters
j += 1
i += 1
f.close()
print("Regex finished")
|
[
"LUCBO@users.noreply.github.com"
] |
LUCBO@users.noreply.github.com
|
d4d5988e623e558b14497efc3dc84f1a4d62bd63
|
bd0a310924a6987250314f995be4d264731e6efa
|
/python_auto/part 2/part2_2.py
|
49740cee76e666254c3d9aa1174d4463242f4493
|
[] |
no_license
|
Maryks44/my_project
|
5696e4e8ba473947c13d48b98ef14a1c358de032
|
9ce7afd6dc4a027635cca803b0c7a09a85942a53
|
refs/heads/master
| 2023-06-24T06:21:30.709721
| 2021-07-30T15:35:19
| 2021-07-30T15:35:19
| 381,142,455
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 316
|
py
|
# Вывести на экран чикл N из звездоче. Причем каждая строка должна быть пронумерована и ровна колличеству звездочек
count = int(input('Укажите число N: '))
for i in range(1, count + 1):
print(i, '*' * i)
|
[
"maryks44m@yandex.ru"
] |
maryks44m@yandex.ru
|
731f1ef4f038c7584b72ccae8637f6c4ca8c0302
|
6414ff7510850f898ae791af24bd4daebedd1ed8
|
/Unet_Mobile/train.py
|
e62ad2b35e106fb7c030a35c6630893425aba13a
|
[
"MIT"
] |
permissive
|
Ice833/Semantic-Segmentation
|
00ba943a0e33e34e19cbd579598ef8ac4f081460
|
23d23f6da3b34884c044a2253d65a1e4097adb2d
|
refs/heads/master
| 2022-12-02T02:37:46.145036
| 2020-08-14T02:17:15
| 2020-08-14T02:17:15
| 284,207,399
| 0
| 0
|
MIT
| 2020-08-01T07:05:31
| 2020-08-01T07:05:30
| null |
UTF-8
|
Python
| false
| false
| 4,563
|
py
|
from nets.unet import mobilenet_unet
from keras.optimizers import Adam
from keras.callbacks import TensorBoard, ModelCheckpoint, ReduceLROnPlateau, EarlyStopping
from PIL import Image
import keras
from keras import backend as K
import numpy as np
NCLASSES = 2
HEIGHT = 416
WIDTH = 416
def generate_arrays_from_file(lines,batch_size):
# 获取总长度
n = len(lines)
i = 0
while 1:
X_train = []
Y_train = []
# 获取一个batch_size大小的数据
for _ in range(batch_size):
if i==0:
np.random.shuffle(lines)
name = lines[i].split(';')[0]
# 从文件中读取图像
img = Image.open(r".\dataset2\jpg" + '/' + name)
img = img.resize((WIDTH,HEIGHT))
img = np.array(img)
img = img/255
X_train.append(img)
name = (lines[i].split(';')[1]).replace("\n", "")
# 从文件中读取图像
img = Image.open(r".\dataset2\png" + '/' + name)
img = img.resize((int(WIDTH/2),int(HEIGHT/2)))
img = np.array(img)
seg_labels = np.zeros((int(HEIGHT/2),int(WIDTH/2),NCLASSES))
for c in range(NCLASSES):
seg_labels[: , : , c ] = (img[:,:,0] == c ).astype(int)
seg_labels = np.reshape(seg_labels, (-1,NCLASSES))
Y_train.append(seg_labels)
# 读完一个周期后重新开始
i = (i+1) % n
yield (np.array(X_train),np.array(Y_train))
def loss(y_true, y_pred):
loss = K.categorical_crossentropy(y_true,y_pred)
return loss
if __name__ == "__main__":
log_dir = "logs/"
# 获取model
model = mobilenet_unet(n_classes=NCLASSES,input_height=HEIGHT, input_width=WIDTH)
# model.summary()
BASE_WEIGHT_PATH = ('https://github.com/fchollet/deep-learning-models/'
'releases/download/v0.6/')
model_name = 'mobilenet_%s_%d_tf_no_top.h5' % ( '1_0' , 224 )
weight_path = BASE_WEIGHT_PATH + model_name
weights_path = keras.utils.get_file(model_name, weight_path )
print(weight_path)
model.load_weights(weights_path,by_name=True,skip_mismatch=True)
# model.summary()
# 打开数据集的txt
with open(r".\dataset2\train.txt","r") as f:
lines = f.readlines()
# 打乱行,这个txt主要用于帮助读取数据来训练
# 打乱的数据更有利于训练
np.random.seed(10101)
np.random.shuffle(lines)
np.random.seed(None)
# 90%用于训练,10%用于估计。
num_val = int(len(lines)*0.1)
num_train = len(lines) - num_val
# 保存的方式,1世代保存一次
checkpoint_period = ModelCheckpoint(
log_dir + 'ep{epoch:03d}-loss{loss:.3f}-val_loss{val_loss:.3f}.h5',
monitor='val_loss',
save_weights_only=True,
save_best_only=True,
period=1
)
# 学习率下降的方式,val_loss三次不下降就下降学习率继续训练
reduce_lr = ReduceLROnPlateau(
monitor='val_loss',
factor=0.5,
patience=3,
verbose=1
)
# 是否需要早停,当val_loss一直不下降的时候意味着模型基本训练完毕,可以停止
early_stopping = EarlyStopping(
monitor='val_loss',
min_delta=0,
patience=10,
verbose=1
)
# 交叉熵
model.compile(loss = loss,
optimizer = Adam(lr=1e-3),
metrics = ['accuracy'])
batch_size = 2
print('Train on {} samples, val on {} samples, with batch size {}.'.format(num_train, num_val, batch_size))
# 开始训练
model.fit_generator(generate_arrays_from_file(lines[:num_train], batch_size),
steps_per_epoch=max(1, num_train//batch_size),
validation_data=generate_arrays_from_file(lines[num_train:], batch_size),
validation_steps=max(1, num_val//batch_size),
epochs=50,
initial_epoch=0,
callbacks=[checkpoint_period, reduce_lr])
model.save_weights(log_dir+'last1.h5')
|
[
"noreply@github.com"
] |
noreply@github.com
|
36fff049a68fa9e7fb10cd09b31ccfc987e4d16b
|
7a3d56fac035f2de9ed94ccb852293ea9e643aee
|
/PortfolioGenerator/Library/DataClass.py
|
4374cafd40bd3112d75f2a83086db26f1d4dea99
|
[] |
no_license
|
DT021/MoneyTree
|
612d7d811a2f8109b9e369d906f45920fcc7e935
|
064600fec4c5664dd191c4f203284ca05534640e
|
refs/heads/master
| 2022-11-06T03:47:16.014120
| 2020-06-18T21:27:13
| 2020-06-18T21:27:13
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 3,376
|
py
|
from dataclasses import dataclass
from dataclasses_json import dataclass_json
from typing import List
from enum import Enum
import datetime
import pandas as pd
### Dataclasses used internally for generating portfolios and risk calculations ###
@dataclass()
class Asset():
Ticker: str #asset ticker symbol
Name: str #full name
AssetType: str # type of asset stocks, bonds, crypto ..
PriceHistoryFile: str #absolute path location of CSV file with historical data of stock
LastPrice: float # latest price of asset, used for generating portfolio to ensure correct allocation
AssetData: pd.DataFrame
@dataclass
class Universe():
count: int
UniverseSet: List[Asset]
UniverseStartDate: str
UniverseEndDate: str
@dataclass()
class Portfolio():
UserID: int # unique identifier for user to know who's portfolio it is
BuyingPower: float # Money available for this user that has not being invested yet
assets: List[Asset] # a list of stocks in this portfolio
AssetAlloc: dict # weight distribution each asset in the portfolio
AssetShares: dict # number of shares of each asset in the portfolio
### User Database data classes for messaging ###
class UDRequestType(Enum):
Holding = 0
Portfolio = 1
PortfolioHistory = 2
User = 3
class UDOperation(Enum):
Insert = 0
Read = 1
Update = 2
Delete = 3
class Risk(Enum):
Low = 0
Med = 1
High = 2
@dataclass_json()
@dataclass()
class UDMHolding():
Id: int # unique ID
PortfolioId: int
Name: str # full name of asset
Abbreviation: str # ticker
Description: str # notes on asset
Quantity: int # number of assets currently owned of this asset
@dataclass_json()
@dataclass()
class UDMPortfolio():
Id: int # unique ID
OwnerId: int
Active: bool # portfolio live or not in use
Generated: str # date portfolio was generated by portfolio generator
InitialValue: float # initial total value of portfolio
StopValue: float
DesiredRisk: Risk # low,medium, or high
Holding: List[UDMHolding] # list of assets in portfolio
@dataclass_json()
@dataclass()
class UDMPortfolioHistory():
Id: int # unique id
PortfolioId: int
Date: str # date of instance
Valuation: float # value of portfolio
Risk: float # low, medium, or high
ActionTakenId: int # buy, sell, hold ...
@dataclass_json()
@dataclass()
class UDMUser():
Email: str
FirstName: str
LastName: str
BrokerageAccount: str
@dataclass_json()
@dataclass()
class UDMRequest():
Email: str
objectID: int
RequestType: UDRequestType # request info for database
Operation: UDOperation # database operation for this portfolio
Holding: UDMHolding
Portfolio: List[UDMPortfolio] # list of portfolios to go in request
PortfolioHistory: List[List[UDMPortfolioHistory]]
User: UDMUser # User these portfolios are for
#### Portfolio generator data classes for messaging ######
class PGRequestType(Enum):
Generate = 0
BackTestResults = 1
@dataclass_json()
@dataclass()
class PGRequest():
PGMessageType: int
# back test elements
|
[
"matthewsages@gmail.com"
] |
matthewsages@gmail.com
|
20e72c8d12bd0c7a49dd9f63a286d85a7d31f4fe
|
15fb5db5c65b06303e3251f11bf2450e7bb1fa74
|
/Mac_address.py
|
5f1f47a3e7b393fc4dc88ed91322a8ce6141cc65
|
[] |
no_license
|
schirrecker/Codewars
|
27d18af79f29cb1b7d8980344f858e1ecb031274
|
e1ee5126488589c1213779480f6b066c85740f74
|
refs/heads/master
| 2022-01-14T09:08:47.617250
| 2022-01-10T05:49:24
| 2022-01-10T05:49:24
| 158,765,158
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 259
|
py
|
import time
from time import sleep
import os
import uuid
def get_mac():
mac_num = hex(uuid.getnode()).replace('0x', '').upper()
mac = '-'.join(mac_num[i: i + 2] for i in range(0, 11, 2))
return mac
print(uuid.getnode())
print(get_mac())
|
[
"noreply@github.com"
] |
noreply@github.com
|
7be171b3c6ccd20d4e7c354d4e4620d1a88c649d
|
fa1faa5c480ba249fbec18c0fb79b696d6b4bdf9
|
/4 - Arrays/RemoveKDigits.py
|
2c3dd044de47a9f8f777661c108947dbbc7b6b7f
|
[] |
no_license
|
AbhiniveshP/CodeBreakersCode
|
10dad44c82be352d7e984ba6b7296a7324f01713
|
7dabfe9392d74ec65a5811271b5b0845c3667848
|
refs/heads/master
| 2022-11-14T11:58:24.364934
| 2020-07-11T22:34:04
| 2020-07-11T22:34:04
| 268,859,697
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,180
|
py
|
class Solution:
# Time: O(N) --> a max of double visit
# Space: O(N)
def removeKdigits(self, num: str, k: int) -> str:
stack = []
# before pushing a digit to stack, take care that it is monotonically increasing stack, also k > 0 and stack not empty
for i in range(len(num)):
currentNumber = int(num[i])
while (len(stack) > 0 and k > 0 and currentNumber < stack[-1]):
stack.pop()
k -= 1
stack.append(currentNumber)
# as stack is monotonically increasing => we can pop all lastly added elements until k <= 0
while (k > 0):
stack.pop()
k -= 1
# remove all leading zeros
cursor = 0
while (cursor < len(stack)):
if (stack[cursor] != 0):
break
cursor += 1
stack = stack[cursor:]
# edge case
if (len(stack) == 0):
return '0'
# now join the stack again
return ''.join([str(n) for n in stack])
|
[
"pabhinivesh@gmail.com"
] |
pabhinivesh@gmail.com
|
9e2990da4d26978bf83a7eada161aa6270a0f17e
|
8084a7e3289d4ae530ce5808b2c19323b34d6289
|
/invoices/nfe.py
|
df183a009323f01b74ba45110d0bcc130eb28bd1
|
[
"MIT"
] |
permissive
|
lclpsoz/misc-scripts
|
c05f16d128d4b4eee8d7ccf22332831627ee681d
|
7834292011bf47e0f7272485e2f440b68a2c6414
|
refs/heads/main
| 2023-08-28T20:23:42.635825
| 2021-11-13T21:28:53
| 2021-11-13T21:28:53
| 387,044,544
| 0
| 0
|
MIT
| 2021-11-13T21:28:54
| 2021-07-17T22:06:15
|
JavaScript
|
UTF-8
|
Python
| false
| false
| 2,761
|
py
|
#%% Request
import requests
from bs4 import BeautifulSoup
import re
nfe_code = input('Input nf-e code: ')
nfe_code = re.sub('\D', '', nfe_code)
url_qrcode = 'http://www.nfce.se.gov.br/portal/qrcode.jsp?p=' + nfe_code + '|2|1|3|bb608455a1c917b0cb910034688a4fa65f851089'
headers = {
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9",
"accept-language": "pt-BR,pt;q=0.9,en-US;q=0.8,en;q=0.7",
"cache-control": "max-age=0",
"upgrade-insecure-requests": "1"
}
print('Making request...')
try:
req = requests.post(url=url_qrcode, headers=headers, timeout=2)
print('\t', req, sep='')
except:
print('\tProblem with the request. Probably nf-e is not available yet.')
print('\tTry to go directly to the nfe page:', url_qrcode)
#%% Process
html_doc = req.text
soup = BeautifulSoup(html_doc, 'lxml')
tags = {
'name': 'txtTit',
'id': 'RCod',
'amount': 'Rqtd',
'price_unit': 'RvlUnit'
}
assigned = {}
res = input('Amount of assigned rows to be read, separated by | (0 or empty for no):')
if len(res) > 0 and int(res) > 0:
for i in range(int(res)):
row = input()
id, assigned_str = row.split('|')
if id in assigned and assigned[id] != assigned_str:
print('Code already register and different. Old:', assigned[id])
assigned[id] = assigned_str
total = 0
products = {}
for row in soup.find_all('td'):
if len(row.find_all('span', {'class': 'txtTit'})) > 0:
name = row.find_all('span', {'class': tags['name']})[0].string
id = row.find_all('span', {'class': tags['id']})[0].string.split(' ')[1].replace(')', '')
amount = row.find_all('span', {'class': tags['amount']})[0].text.split(':')[1].replace(',', '.')
price_unit = row.find_all('span', {'class': tags['price_unit']})[0].text.split('\xa0')[-1].replace(',', '.')
amount, price_unit = float(amount), float(price_unit)
assigned_str = ''
if id in assigned:
assigned_str = assigned[id]
if id in products:
products[id]['amount'] += amount
else:
products[id] = {
'name': name,
'assigned_str': assigned_str,
'amount': amount,
'price_unit': price_unit
}
total += amount*price_unit
print('\nTable:')
for id in products:
prod = products[id]
name, assigned_str, amount, price_unit = prod['name'], prod['assigned_str'], prod['amount'], prod['price_unit']
print(name, id, assigned_str, str(amount).replace('.', ','), str(price_unit).replace('.', ','), sep='|')
print('\nTotal = R$', round(total*100)/100)
|
[
"lclpsoz@gmail.com"
] |
lclpsoz@gmail.com
|
ba877f1d961002ab0c0e83e9928982deed661a66
|
089e5c10201815ff5b44c4b1aa510f5745d43c13
|
/ThreadUtil.py
|
164bb25bfb019c158db26893fbf2b162a4011a33
|
[] |
no_license
|
Remaerdeno/Passer-zhihu
|
ebe1589b44dd388141224d47bcef8cb37239dece
|
8f60d6d3952df90dad92b095a1d6aae520e8eaf9
|
refs/heads/master
| 2021-06-17T15:47:51.668190
| 2017-06-07T13:11:01
| 2017-06-07T13:11:01
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 3,117
|
py
|
# encoding=utf8
import Util,urllib
from IpProxy import *
class ThreadDeco(object):
def __init__(self,func):
self._func = func
def __call__(self,*args):
self._func(*args)
proxy = Proxy()
while True:
if not args[0].empty():
page = args[0].get()
if page == Util.ENG_FLAG:
args[1].put(Util.ENG_FLAG)
break
while True:
try:
res = args[2].get(url=page,headers=Util.Default_Headers,timeout=2)
status_code = res.status_code
if status_code == 200:
args[1].put(res)
args[0].task_done()
break
elif status_code == 404:
break
elif status_code == 401 or status_code == 410:
break
else:
Util.PROXIES['https'] = proxy.archieve_activity_proxy()
except Exception as e:
Util.PROXIES['https'] = proxy.archieve_activity_proxy()
def init_thread(url,pageCount,url_queue,s):
ftype = url.split('/')[-1]
offset,count_page = 1,0
post_data = {'offset':offset,'limit':pageCount,'include':choose_include(ftype)}
answer_data = urllib.parse.urlencode(post_data)
proxy = Proxy()
while True:
try:
r = s.get(url='{}?{}'.format(url,answer_data),headers=Util.Default_Headers,timeout=2)
status_code = r.status_code
if status_code == 200:
count_page = (int(r.json()['paging']['totals'])-1)//pageCount + 1
for page in range(0,count_page):
post_data['offset'] = page*pageCount
answer_data = urllib.parse.urlencode(post_data)
url_queue.put('{}?{}'.format(url,answer_data))
break
elif status_code == 404:
break
elif status_code == 401 or status_code == 410:
break
else:
Util.PROXIES['https'] = proxy.archieve_activity_proxy()
except Exception as e:
Util.PROXIES['https'] = proxy.archieve_activity_proxy()
def choose_include(ftype):
if ftype == 'voters':
return 'data[*].answer_count,articles_count,follower_count,gender,is_followed,is_following,badge[?(type=best_answerer)].topics'
elif ftype == 'followees' or ftype == 'followers':
return 'data[*].answer_count,articles_count,gender,follower_count,is_followed,is_following,badge[?(type=best_answerer)].topics'
elif ftype == 'favlists':
return 'data[*].updated_time,answer_count,follower_count,creator,is_following'
elif ftype == 'answers':
return 'data[*].is_normal,is_sticky,collapsed_by,suggest_edit,comment_count,can_comment,content,editable_content,voteup_count,reshipment_settings,comment_permission,mark_infos,created_time,updated_time,relationship.is_authorized,is_author,voting,is_thanked,is_nothelp,upvoted_followees;data[*].author.badge[?(type=best_answerer)].topics'
elif ftype == 'following-columns':
return 'data[*].intro,followers,articles_count,image_url,image_width,image_height,is_following,last_article.created'
elif ftype == 'following-questions' or ftype == 'questions':
return 'data[*].created,answer_count,follower_count,author'
elif ftype == 'comments':
return 'data[*].author,collapsed,reply_to_author,disliked,content,voting,vote_count,is_parent_author,is_author'
else:
return ''
@ThreadDeco
def thread_queue(urlqueue,htmlqueue,session):
pass
|
[
"904727147@qq.com"
] |
904727147@qq.com
|
5629815332356a23d2c3641637248dc89de4587e
|
a535ca0344d629837ab8f75b51c7d7e4eba91fca
|
/res/bin/usbtoh.py
|
928ab934251e71fdf57d7dfd5dc08bf9c8b96d82
|
[
"Zlib"
] |
permissive
|
TheHoodedFoot/SpaceLCD
|
f2661433ee3dd917e5bd0d28f58f4a4020d43ef3
|
52a8409c7b83a98c8200bddecbb17e9371349294
|
refs/heads/master
| 2023-01-18T15:39:52.147606
| 2020-12-13T13:53:15
| 2020-12-13T13:53:15
| 320,777,918
| 3
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,113
|
py
|
#!/usr/bin/env python3
import sys
import re
# Output header
out = "static const unsigned char bitmap[] = {"
char_count = 0
line_count = 0
things = ""
things_size = 0
for line in sys.stdin:
x = re.search(".*0x00(..): (.*)$", line)
if x is not None:
buffer = x.group(2) + " "
for word in re.findall(".... ", buffer):
things += "0x" + word[:2] + ", 0x" + word[2:4] + ", "
things_size += 2
# print(things)
char_count += 2
if int(x.group(1)) == 30:
# print(buffer)
out += things[:-2] + ","
things = ""
things_size = 0
line_count += 1
# buffer = ""
# Footer
out += "};"
print("#define BITMAP_PACKET_SIZE 64")
print("#define BITMAP_PACKETS " + str(line_count))
print(out)
if things != "":
print("#define BITMAP_THINGS_SIZE " + str(things_size))
print("static const unsigned char bitmap_footer[] = {")
print(things)
print("};")
else:
print("#define BITMAP_THINGS_SIZE 0")
print("static const unsigned char bitmap_footer[] = { 0x00 };")
|
[
"thf@thehoodedfoot.com"
] |
thf@thehoodedfoot.com
|
62c4cad48205db17deb8d43ff05d2268ff749191
|
1e60b1b311e4e1ced836f43ef055c65f5e78f7ef
|
/test/functional/feature_block.py
|
1e075691fa322b966b361988062a716df107a1a1
|
[
"MIT"
] |
permissive
|
liufile/BlackHatWallet
|
529bd4b492dbf672aa3d7b1f7dd456e53508fdc4
|
0e6b310fb6cb9bdb3b51a81ab55e606efed891f2
|
refs/heads/master
| 2023-04-24T13:49:07.117712
| 2021-05-01T12:34:50
| 2021-05-01T12:34:50
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 51,998
|
py
|
#!/usr/bin/env python3
# Copyright (c) 2015-2017 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Test block processing.
This reimplements tests from the bitcoinj/FullBlockTestGenerator used
by the pull-tester.
We use the testing framework in which we expect a particular answer from
each test.
"""
from test_framework.test_framework import ComparisonTestFramework
from test_framework.util import *
from test_framework.comptool import TestManager, TestInstance, RejectResult
from test_framework.blocktools import *
import time
from test_framework.key import CECKey
from test_framework.script import *
from test_framework.mininode import network_thread_start
import struct
class PreviousSpendableOutput():
def __init__(self, tx = CTransaction(), n = -1):
self.tx = tx
self.n = n # the output we're spending
# Use this class for tests that require behavior other than normal "mininode" behavior.
# For now, it is used to serialize a bloated varint (b64).
class CBrokenBlock(CBlock):
def __init__(self, header=None):
super(CBrokenBlock, self).__init__(header)
def initialize(self, base_block):
self.vtx = copy.deepcopy(base_block.vtx)
self.hashMerkleRoot = self.calc_merkle_root()
def serialize(self, with_witness=False):
r = b""
r += super(CBlock, self).serialize()
r += struct.pack("<BQ", 255, len(self.vtx))
for tx in self.vtx:
if with_witness:
r += tx.serialize_with_witness()
else:
r += tx.serialize_without_witness()
return r
def normal_serialize(self):
r = b""
r += super(CBrokenBlock, self).serialize()
return r
class FullBlockTest(ComparisonTestFramework):
# Can either run this test as 1 node with expected answers, or two and compare them.
# Change the "outcome" variable from each TestInstance object to only do the comparison.
def set_test_params(self):
self.num_nodes = 1
self.setup_clean_chain = True
self.block_heights = {}
self.coinbase_key = CECKey()
self.coinbase_key.set_secretbytes(b"horsebattery")
self.coinbase_pubkey = self.coinbase_key.get_pubkey()
self.tip = None
self.blocks = {}
def add_options(self, parser):
super().add_options(parser)
parser.add_option("--runbarelyexpensive", dest="runbarelyexpensive", default=True)
def run_test(self):
self.test = TestManager(self, self.options.tmpdir)
self.test.add_all_connections(self.nodes)
network_thread_start()
self.test.run()
def add_transactions_to_block(self, block, tx_list):
[ tx.rehash() for tx in tx_list ]
block.vtx.extend(tx_list)
# this is a little handier to use than the version in blocktools.py
def create_tx(self, spend_tx, n, value, script=CScript([OP_TRUE, OP_DROP] * 15 + [OP_TRUE])):
tx = create_transaction(spend_tx, n, b"", value, script)
return tx
# sign a transaction, using the key we know about
# this signs input 0 in tx, which is assumed to be spending output n in spend_tx
def sign_tx(self, tx, spend_tx, n):
scriptPubKey = bytearray(spend_tx.vout[n].scriptPubKey)
if (scriptPubKey[0] == OP_TRUE): # an anyone-can-spend
tx.vin[0].scriptSig = CScript()
return
(sighash, err) = SignatureHash(spend_tx.vout[n].scriptPubKey, tx, 0, SIGHASH_ALL)
tx.vin[0].scriptSig = CScript([self.coinbase_key.sign(sighash) + bytes(bytearray([SIGHASH_ALL]))])
def create_and_sign_transaction(self, spend_tx, n, value, script=CScript([OP_TRUE])):
tx = self.create_tx(spend_tx, n, value, script)
self.sign_tx(tx, spend_tx, n)
tx.rehash()
return tx
def next_block(self, number, spend=None, additional_coinbase_value=0, script=CScript([OP_TRUE]), solve=True):
if self.tip == None:
base_block_hash = self.genesis_hash
block_time = int(time.time())+1
else:
base_block_hash = self.tip.sha256
block_time = self.tip.nTime + 1
# First create the coinbase
height = self.block_heights[base_block_hash] + 1
coinbase = create_coinbase(height, self.coinbase_pubkey)
coinbase.vout[0].nValue += additional_coinbase_value
coinbase.rehash()
if spend == None:
block = create_block(base_block_hash, coinbase, block_time)
else:
coinbase.vout[0].nValue += spend.tx.vout[spend.n].nValue - 1 # all but one satoshi to fees
coinbase.rehash()
block = create_block(base_block_hash, coinbase, block_time)
tx = create_transaction(spend.tx, spend.n, b"", 1, script) # spend 1 satoshi
self.sign_tx(tx, spend.tx, spend.n)
self.add_transactions_to_block(block, [tx])
block.hashMerkleRoot = block.calc_merkle_root()
if solve:
block.solve()
self.tip = block
self.block_heights[block.sha256] = height
assert number not in self.blocks
self.blocks[number] = block
return block
def get_tests(self):
self.genesis_hash = int(self.nodes[0].getbestblockhash(), 16)
self.block_heights[self.genesis_hash] = 0
spendable_outputs = []
# save the current tip so it can be spent by a later block
def save_spendable_output():
spendable_outputs.append(self.tip)
# get an output that we previously marked as spendable
def get_spendable_output():
return PreviousSpendableOutput(spendable_outputs.pop(0).vtx[0], 0)
# returns a test case that asserts that the current tip was accepted
def accepted():
return TestInstance([[self.tip, True]])
# returns a test case that asserts that the current tip was rejected
def rejected(reject = None):
if reject is None:
return TestInstance([[self.tip, False]])
else:
return TestInstance([[self.tip, reject]])
# move the tip back to a previous block
def tip(number):
self.tip = self.blocks[number]
# adds transactions to the block and updates state
def update_block(block_number, new_transactions):
block = self.blocks[block_number]
self.add_transactions_to_block(block, new_transactions)
old_sha256 = block.sha256
block.hashMerkleRoot = block.calc_merkle_root()
block.solve()
# Update the internal state just like in next_block
self.tip = block
if block.sha256 != old_sha256:
self.block_heights[block.sha256] = self.block_heights[old_sha256]
del self.block_heights[old_sha256]
self.blocks[block_number] = block
return block
# shorthand for functions
block = self.next_block
create_tx = self.create_tx
create_and_sign_tx = self.create_and_sign_transaction
# these must be updated if consensus changes
MAX_BLOCK_SIGOPS = 20000
# Create a new block
block(0)
save_spendable_output()
yield accepted()
# Now we need that block to mature so we can spend the coinbase.
test = TestInstance(sync_every_block=False)
for i in range(99):
block(5000 + i)
test.blocks_and_transactions.append([self.tip, True])
save_spendable_output()
yield test
# collect spendable outputs now to avoid cluttering the code later on
out = []
for i in range(33):
out.append(get_spendable_output())
# Start by building a couple of blocks on top (which output is spent is
# in parentheses):
# genesis -> b1 (0) -> b2 (1)
block(1, spend=out[0])
save_spendable_output()
yield accepted()
block(2, spend=out[1])
yield accepted()
save_spendable_output()
# so fork like this:
#
# genesis -> b1 (0) -> b2 (1)
# \-> b3 (1)
#
# Nothing should happen at this point. We saw b2 first so it takes priority.
tip(1)
b3 = block(3, spend=out[1])
txout_b3 = PreviousSpendableOutput(b3.vtx[1], 0)
yield rejected()
# Now we add another block to make the alternative chain longer.
#
# genesis -> b1 (0) -> b2 (1)
# \-> b3 (1) -> b4 (2)
block(4, spend=out[2])
yield accepted()
# ... and back to the first chain.
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b3 (1) -> b4 (2)
tip(2)
block(5, spend=out[2])
save_spendable_output()
yield rejected()
block(6, spend=out[3])
yield accepted()
# Try to create a fork that double-spends
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b7 (2) -> b8 (4)
# \-> b3 (1) -> b4 (2)
tip(5)
block(7, spend=out[2])
yield rejected()
block(8, spend=out[4])
yield rejected()
# Try to create a block that has too much fee
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b9 (4)
# \-> b3 (1) -> b4 (2)
tip(6)
block(9, spend=out[4], additional_coinbase_value=1)
yield rejected(RejectResult(16, b'bad-cb-amount'))
# Create a fork that ends in a block with too much fee (the one that causes the reorg)
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b10 (3) -> b11 (4)
# \-> b3 (1) -> b4 (2)
tip(5)
block(10, spend=out[3])
yield rejected()
block(11, spend=out[4], additional_coinbase_value=1)
yield rejected(RejectResult(16, b'bad-cb-amount'))
# Try again, but with a valid fork first
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b12 (3) -> b13 (4) -> b14 (5)
# (b12 added last)
# \-> b3 (1) -> b4 (2)
tip(5)
b12 = block(12, spend=out[3])
save_spendable_output()
b13 = block(13, spend=out[4])
# Deliver the block header for b12, and the block b13.
# b13 should be accepted but the tip won't advance until b12 is delivered.
yield TestInstance([[CBlockHeader(b12), None], [b13, False]])
save_spendable_output()
# b14 is invalid, but the node won't know that until it tries to connect
# Tip still can't advance because b12 is missing
block(14, spend=out[5], additional_coinbase_value=1)
yield rejected()
yield TestInstance([[b12, True, b13.sha256]]) # New tip should be b13.
# Add a block with MAX_BLOCK_SIGOPS and one with one more sigop
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b12 (3) -> b13 (4) -> b15 (5) -> b16 (6)
# \-> b3 (1) -> b4 (2)
# Test that a block with a lot of checksigs is okay
lots_of_checksigs = CScript([OP_CHECKSIG] * (MAX_BLOCK_SIGOPS - 1))
tip(13)
block(15, spend=out[5], script=lots_of_checksigs)
yield accepted()
save_spendable_output()
# Test that a block with too many checksigs is rejected
too_many_checksigs = CScript([OP_CHECKSIG] * (MAX_BLOCK_SIGOPS))
block(16, spend=out[6], script=too_many_checksigs)
yield rejected(RejectResult(16, b'bad-blk-sigops'))
# Attempt to spend a transaction created on a different fork
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b12 (3) -> b13 (4) -> b15 (5) -> b17 (b3.vtx[1])
# \-> b3 (1) -> b4 (2)
tip(15)
block(17, spend=txout_b3)
yield rejected(RejectResult(16, b'bad-txns-inputs-missingorspent'))
# Attempt to spend a transaction created on a different fork (on a fork this time)
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b12 (3) -> b13 (4) -> b15 (5)
# \-> b18 (b3.vtx[1]) -> b19 (6)
# \-> b3 (1) -> b4 (2)
tip(13)
block(18, spend=txout_b3)
yield rejected()
block(19, spend=out[6])
yield rejected()
# Attempt to spend a coinbase at depth too low
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b12 (3) -> b13 (4) -> b15 (5) -> b20 (7)
# \-> b3 (1) -> b4 (2)
tip(15)
block(20, spend=out[7])
yield rejected(RejectResult(16, b'bad-txns-premature-spend-of-coinbase'))
# Attempt to spend a coinbase at depth too low (on a fork this time)
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b12 (3) -> b13 (4) -> b15 (5)
# \-> b21 (6) -> b22 (5)
# \-> b3 (1) -> b4 (2)
tip(13)
block(21, spend=out[6])
yield rejected()
block(22, spend=out[5])
yield rejected()
# Create a block on either side of MAX_BLOCK_BASE_SIZE and make sure its accepted/rejected
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b12 (3) -> b13 (4) -> b15 (5) -> b23 (6)
# \-> b24 (6) -> b25 (7)
# \-> b3 (1) -> b4 (2)
tip(15)
b23 = block(23, spend=out[6])
tx = CTransaction()
script_length = MAX_BLOCK_BASE_SIZE - len(b23.serialize()) - 69
script_output = CScript([b'\x00' * script_length])
tx.vout.append(CTxOut(0, script_output))
tx.vin.append(CTxIn(COutPoint(b23.vtx[1].sha256, 0)))
b23 = update_block(23, [tx])
# Make sure the math above worked out to produce a max-sized block
assert_equal(len(b23.serialize()), MAX_BLOCK_BASE_SIZE)
yield accepted()
save_spendable_output()
# Make the next block one byte bigger and check that it fails
tip(15)
b24 = block(24, spend=out[6])
script_length = MAX_BLOCK_BASE_SIZE - len(b24.serialize()) - 69
script_output = CScript([b'\x00' * (script_length+1)])
tx.vout = [CTxOut(0, script_output)]
b24 = update_block(24, [tx])
assert_equal(len(b24.serialize()), MAX_BLOCK_BASE_SIZE+1)
yield rejected(RejectResult(16, b'bad-blk-length'))
block(25, spend=out[7])
yield rejected()
# Create blocks with a coinbase input script size out of range
# genesis -> b1 (0) -> b2 (1) -> b5 (2) -> b6 (3)
# \-> b12 (3) -> b13 (4) -> b15 (5) -> b23 (6) -> b30 (7)
# \-> ... (6) -> ... (7)
# \-> b3 (1) -> b4 (2)
tip(15)
b26 = block(26, spend=out[6])
b26.vtx[0].vin[0].scriptSig = b'\x00'
b26.vtx[0].rehash()
# update_block causes the merkle root to get updated, even with no new
# transactions, and updates the required state.
b26 = update_block(26, [])
yield rejected(RejectResult(16, b'bad-cb-length'))
# Extend the b26 chain to make sure blkcd isn't accepting b26
block(27, spend=out[7])
yield rejected(False)
# Now try a too-large-coinbase script
tip(15)
b28 = block(28, spend=out[6])
b28.vtx[0].vin[0].scriptSig = b'\x00' * 101
b28.vtx[0].rehash()
b28 = update_block(28, [])
yield rejected(RejectResult(16, b'bad-cb-length'))
# Extend the b28 chain to make sure blkcd isn't accepting b28
block(29, spend=out[7])
yield rejected(False)
# b30 has a max-sized coinbase scriptSig.
tip(23)
b30 = block(30)
b30.vtx[0].vin[0].scriptSig = b'\x00' * 100
b30.vtx[0].rehash()
b30 = update_block(30, [])
yield accepted()
save_spendable_output()
# b31 - b35 - check sigops of OP_CHECKMULTISIG / OP_CHECKMULTISIGVERIFY / OP_CHECKSIGVERIFY
#
# genesis -> ... -> b30 (7) -> b31 (8) -> b33 (9) -> b35 (10)
# \-> b36 (11)
# \-> b34 (10)
# \-> b32 (9)
#
# MULTISIG: each op code counts as 20 sigops. To create the edge case, pack another 19 sigops at the end.
lots_of_multisigs = CScript([OP_CHECKMULTISIG] * ((MAX_BLOCK_SIGOPS-1) // 20) + [OP_CHECKSIG] * 19)
b31 = block(31, spend=out[8], script=lots_of_multisigs)
assert_equal(get_legacy_sigopcount_block(b31), MAX_BLOCK_SIGOPS)
yield accepted()
save_spendable_output()
# this goes over the limit because the coinbase has one sigop
too_many_multisigs = CScript([OP_CHECKMULTISIG] * (MAX_BLOCK_SIGOPS // 20))
b32 = block(32, spend=out[9], script=too_many_multisigs)
assert_equal(get_legacy_sigopcount_block(b32), MAX_BLOCK_SIGOPS + 1)
yield rejected(RejectResult(16, b'bad-blk-sigops'))
# CHECKMULTISIGVERIFY
tip(31)
lots_of_multisigs = CScript([OP_CHECKMULTISIGVERIFY] * ((MAX_BLOCK_SIGOPS-1) // 20) + [OP_CHECKSIG] * 19)
block(33, spend=out[9], script=lots_of_multisigs)
yield accepted()
save_spendable_output()
too_many_multisigs = CScript([OP_CHECKMULTISIGVERIFY] * (MAX_BLOCK_SIGOPS // 20))
block(34, spend=out[10], script=too_many_multisigs)
yield rejected(RejectResult(16, b'bad-blk-sigops'))
# CHECKSIGVERIFY
tip(33)
lots_of_checksigs = CScript([OP_CHECKSIGVERIFY] * (MAX_BLOCK_SIGOPS - 1))
b35 = block(35, spend=out[10], script=lots_of_checksigs)
yield accepted()
save_spendable_output()
too_many_checksigs = CScript([OP_CHECKSIGVERIFY] * (MAX_BLOCK_SIGOPS))
block(36, spend=out[11], script=too_many_checksigs)
yield rejected(RejectResult(16, b'bad-blk-sigops'))
# Check spending of a transaction in a block which failed to connect
#
# b6 (3)
# b12 (3) -> b13 (4) -> b15 (5) -> b23 (6) -> b30 (7) -> b31 (8) -> b33 (9) -> b35 (10)
# \-> b37 (11)
# \-> b38 (11/37)
#
# save 37's spendable output, but then double-spend out11 to invalidate the block
tip(35)
b37 = block(37, spend=out[11])
txout_b37 = PreviousSpendableOutput(b37.vtx[1], 0)
tx = create_and_sign_tx(out[11].tx, out[11].n, 0)
b37 = update_block(37, [tx])
yield rejected(RejectResult(16, b'bad-txns-inputs-missingorspent'))
# attempt to spend b37's first non-coinbase tx, at which point b37 was still considered valid
tip(35)
block(38, spend=txout_b37)
yield rejected(RejectResult(16, b'bad-txns-inputs-missingorspent'))
# Check P2SH SigOp counting
#
#
# 13 (4) -> b15 (5) -> b23 (6) -> b30 (7) -> b31 (8) -> b33 (9) -> b35 (10) -> b39 (11) -> b41 (12)
# \-> b40 (12)
#
# b39 - create some P2SH outputs that will require 6 sigops to spend:
#
# redeem_script = COINBASE_PUBKEY, (OP_2DUP+OP_CHECKSIGVERIFY) * 5, OP_CHECKSIG
# p2sh_script = OP_HASH160, ripemd160(sha256(script)), OP_EQUAL
#
tip(35)
b39 = block(39)
b39_outputs = 0
b39_sigops_per_output = 6
# Build the redeem script, hash it, use hash to create the p2sh script
redeem_script = CScript([self.coinbase_pubkey] + [OP_2DUP, OP_CHECKSIGVERIFY]*5 + [OP_CHECKSIG])
redeem_script_hash = hash160(redeem_script)
p2sh_script = CScript([OP_HASH160, redeem_script_hash, OP_EQUAL])
# Create a transaction that spends one satoshi to the p2sh_script, the rest to OP_TRUE
# This must be signed because it is spending a coinbase
spend = out[11]
tx = create_tx(spend.tx, spend.n, 1, p2sh_script)
tx.vout.append(CTxOut(spend.tx.vout[spend.n].nValue - 1, CScript([OP_TRUE])))
self.sign_tx(tx, spend.tx, spend.n)
tx.rehash()
b39 = update_block(39, [tx])
b39_outputs += 1
# Until block is full, add tx's with 1 satoshi to p2sh_script, the rest to OP_TRUE
tx_new = None
tx_last = tx
total_size=len(b39.serialize())
while(total_size < MAX_BLOCK_BASE_SIZE):
tx_new = create_tx(tx_last, 1, 1, p2sh_script)
tx_new.vout.append(CTxOut(tx_last.vout[1].nValue - 1, CScript([OP_TRUE])))
tx_new.rehash()
total_size += len(tx_new.serialize())
if total_size >= MAX_BLOCK_BASE_SIZE:
break
b39.vtx.append(tx_new) # add tx to block
tx_last = tx_new
b39_outputs += 1
b39 = update_block(39, [])
yield accepted()
save_spendable_output()
# Test sigops in P2SH redeem scripts
#
# b40 creates 3333 tx's spending the 6-sigop P2SH outputs from b39 for a total of 19998 sigops.
# The first tx has one sigop and then at the end we add 2 more to put us just over the max.
#
# b41 does the same, less one, so it has the maximum sigops permitted.
#
tip(39)
b40 = block(40, spend=out[12])
sigops = get_legacy_sigopcount_block(b40)
numTxes = (MAX_BLOCK_SIGOPS - sigops) // b39_sigops_per_output
assert_equal(numTxes <= b39_outputs, True)
lastOutpoint = COutPoint(b40.vtx[1].sha256, 0)
new_txs = []
for i in range(1, numTxes+1):
tx = CTransaction()
tx.vout.append(CTxOut(1, CScript([OP_TRUE])))
tx.vin.append(CTxIn(lastOutpoint, b''))
# second input is corresponding P2SH output from b39
tx.vin.append(CTxIn(COutPoint(b39.vtx[i].sha256, 0), b''))
# Note: must pass the redeem_script (not p2sh_script) to the signature hash function
(sighash, err) = SignatureHash(redeem_script, tx, 1, SIGHASH_ALL)
sig = self.coinbase_key.sign(sighash) + bytes(bytearray([SIGHASH_ALL]))
scriptSig = CScript([sig, redeem_script])
tx.vin[1].scriptSig = scriptSig
tx.rehash()
new_txs.append(tx)
lastOutpoint = COutPoint(tx.sha256, 0)
b40_sigops_to_fill = MAX_BLOCK_SIGOPS - (numTxes * b39_sigops_per_output + sigops) + 1
tx = CTransaction()
tx.vin.append(CTxIn(lastOutpoint, b''))
tx.vout.append(CTxOut(1, CScript([OP_CHECKSIG] * b40_sigops_to_fill)))
tx.rehash()
new_txs.append(tx)
update_block(40, new_txs)
yield rejected(RejectResult(16, b'bad-blk-sigops'))
# same as b40, but one less sigop
tip(39)
block(41, spend=None)
update_block(41, b40.vtx[1:-1])
b41_sigops_to_fill = b40_sigops_to_fill - 1
tx = CTransaction()
tx.vin.append(CTxIn(lastOutpoint, b''))
tx.vout.append(CTxOut(1, CScript([OP_CHECKSIG] * b41_sigops_to_fill)))
tx.rehash()
update_block(41, [tx])
yield accepted()
# Fork off of b39 to create a constant base again
#
# b23 (6) -> b30 (7) -> b31 (8) -> b33 (9) -> b35 (10) -> b39 (11) -> b42 (12) -> b43 (13)
# \-> b41 (12)
#
tip(39)
block(42, spend=out[12])
yield rejected()
save_spendable_output()
block(43, spend=out[13])
yield accepted()
save_spendable_output()
# Test a number of really invalid scenarios
#
# -> b31 (8) -> b33 (9) -> b35 (10) -> b39 (11) -> b42 (12) -> b43 (13) -> b44 (14)
# \-> ??? (15)
# The next few blocks are going to be created "by hand" since they'll do funky things, such as having
# the first transaction be non-coinbase, etc. The purpose of b44 is to make sure this works.
height = self.block_heights[self.tip.sha256] + 1
coinbase = create_coinbase(height, self.coinbase_pubkey)
b44 = CBlock()
b44.nTime = self.tip.nTime + 1
b44.hashPrevBlock = self.tip.sha256
b44.nBits = 0x207fffff
b44.vtx.append(coinbase)
b44.hashMerkleRoot = b44.calc_merkle_root()
b44.solve()
self.tip = b44
self.block_heights[b44.sha256] = height
self.blocks[44] = b44
yield accepted()
# A block with a non-coinbase as the first tx
non_coinbase = create_tx(out[15].tx, out[15].n, 1)
b45 = CBlock()
b45.nTime = self.tip.nTime + 1
b45.hashPrevBlock = self.tip.sha256
b45.nBits = 0x207fffff
b45.vtx.append(non_coinbase)
b45.hashMerkleRoot = b45.calc_merkle_root()
b45.calc_sha256()
b45.solve()
self.block_heights[b45.sha256] = self.block_heights[self.tip.sha256]+1
self.tip = b45
self.blocks[45] = b45
yield rejected(RejectResult(16, b'bad-cb-missing'))
# A block with no txns
tip(44)
b46 = CBlock()
b46.nTime = b44.nTime+1
b46.hashPrevBlock = b44.sha256
b46.nBits = 0x207fffff
b46.vtx = []
b46.hashMerkleRoot = 0
b46.solve()
self.block_heights[b46.sha256] = self.block_heights[b44.sha256]+1
self.tip = b46
assert 46 not in self.blocks
self.blocks[46] = b46
s = ser_uint256(b46.hashMerkleRoot)
yield rejected(RejectResult(16, b'bad-blk-length'))
# A block with invalid work
tip(44)
b47 = block(47, solve=False)
target = uint256_from_compact(b47.nBits)
while b47.sha256 < target: #changed > to <
b47.nNonce += 1
b47.rehash()
yield rejected(RejectResult(16, b'high-hash'))
# A block with timestamp > 2 hrs in the future
tip(44)
b48 = block(48, solve=False)
b48.nTime = int(time.time()) + 60 * 60 * 3
b48.solve()
yield rejected(RejectResult(16, b'time-too-new'))
# A block with an invalid merkle hash
tip(44)
b49 = block(49)
b49.hashMerkleRoot += 1
b49.solve()
yield rejected(RejectResult(16, b'bad-txnmrklroot'))
# A block with an incorrect POW limit
tip(44)
b50 = block(50)
b50.nBits = b50.nBits - 1
b50.solve()
yield rejected(RejectResult(16, b'bad-diffbits'))
# A block with two coinbase txns
tip(44)
b51 = block(51)
cb2 = create_coinbase(51, self.coinbase_pubkey)
b51 = update_block(51, [cb2])
yield rejected(RejectResult(16, b'bad-cb-multiple'))
# A block w/ duplicate txns
# Note: txns have to be in the right position in the merkle tree to trigger this error
tip(44)
b52 = block(52, spend=out[15])
tx = create_tx(b52.vtx[1], 0, 1)
b52 = update_block(52, [tx, tx])
yield rejected(RejectResult(16, b'bad-txns-duplicate'))
# Test block timestamps
# -> b31 (8) -> b33 (9) -> b35 (10) -> b39 (11) -> b42 (12) -> b43 (13) -> b53 (14) -> b55 (15)
# \-> b54 (15)
#
tip(43)
block(53, spend=out[14])
yield rejected() # rejected since b44 is at same height
save_spendable_output()
# invalid timestamp (b35 is 5 blocks back, so its time is MedianTimePast)
b54 = block(54, spend=out[15])
b54.nTime = b35.nTime - 1
b54.solve()
yield rejected(RejectResult(16, b'time-too-old'))
# valid timestamp
tip(53)
b55 = block(55, spend=out[15])
b55.nTime = b35.nTime
update_block(55, [])
yield accepted()
save_spendable_output()
# Test CVE-2012-2459
#
# -> b42 (12) -> b43 (13) -> b53 (14) -> b55 (15) -> b57p2 (16)
# \-> b57 (16)
# \-> b56p2 (16)
# \-> b56 (16)
#
# Merkle tree malleability (CVE-2012-2459): repeating sequences of transactions in a block without
# affecting the merkle root of a block, while still invalidating it.
# See: src/consensus/merkle.h
#
# b57 has three txns: coinbase, tx, tx1. The merkle root computation will duplicate tx.
# Result: OK
#
# b56 copies b57 but duplicates tx1 and does not recalculate the block hash. So it has a valid merkle
# root but duplicate transactions.
# Result: Fails
#
# b57p2 has six transactions in its merkle tree:
# - coinbase, tx, tx1, tx2, tx3, tx4
# Merkle root calculation will duplicate as necessary.
# Result: OK.
#
# b56p2 copies b57p2 but adds both tx3 and tx4. The purpose of the test is to make sure the code catches
# duplicate txns that are not next to one another with the "bad-txns-duplicate" error (which indicates
# that the error was caught early, avoiding a DOS vulnerability.)
# b57 - a good block with 2 txs, don't submit until end
tip(55)
b57 = block(57)
tx = create_and_sign_tx(out[16].tx, out[16].n, 1)
tx1 = create_tx(tx, 0, 1)
b57 = update_block(57, [tx, tx1])
# b56 - copy b57, add a duplicate tx
tip(55)
b56 = copy.deepcopy(b57)
self.blocks[56] = b56
assert_equal(len(b56.vtx),3)
b56 = update_block(56, [tx1])
assert_equal(b56.hash, b57.hash)
yield rejected(RejectResult(16, b'bad-txns-duplicate'))
# b57p2 - a good block with 6 tx'es, don't submit until end
tip(55)
b57p2 = block("57p2")
tx = create_and_sign_tx(out[16].tx, out[16].n, 1)
tx1 = create_tx(tx, 0, 1)
tx2 = create_tx(tx1, 0, 1)
tx3 = create_tx(tx2, 0, 1)
tx4 = create_tx(tx3, 0, 1)
b57p2 = update_block("57p2", [tx, tx1, tx2, tx3, tx4])
# b56p2 - copy b57p2, duplicate two non-consecutive tx's
tip(55)
b56p2 = copy.deepcopy(b57p2)
self.blocks["b56p2"] = b56p2
assert_equal(b56p2.hash, b57p2.hash)
assert_equal(len(b56p2.vtx),6)
b56p2 = update_block("b56p2", [tx3, tx4])
yield rejected(RejectResult(16, b'bad-txns-duplicate'))
tip("57p2")
yield accepted()
tip(57)
yield rejected() #rejected because 57p2 seen first
save_spendable_output()
# Test a few invalid tx types
#
# -> b35 (10) -> b39 (11) -> b42 (12) -> b43 (13) -> b53 (14) -> b55 (15) -> b57 (16) -> b60 (17)
# \-> ??? (17)
#
# tx with prevout.n out of range
tip(57)
b58 = block(58, spend=out[17])
tx = CTransaction()
assert(len(out[17].tx.vout) < 42)
tx.vin.append(CTxIn(COutPoint(out[17].tx.sha256, 42), CScript([OP_TRUE]), 0xffffffff))
tx.vout.append(CTxOut(0, b""))
tx.calc_sha256()
b58 = update_block(58, [tx])
yield rejected(RejectResult(16, b'bad-txns-inputs-missingorspent'))
# tx with output value > input value out of range
tip(57)
b59 = block(59)
tx = create_and_sign_tx(out[17].tx, out[17].n, 51*COIN)
b59 = update_block(59, [tx])
yield rejected(RejectResult(16, b'bad-txns-in-belowout'))
# reset to good chain
tip(57)
b60 = block(60, spend=out[17])
yield accepted()
save_spendable_output()
# Test tx.isFinal is properly rejected (not an exhaustive tx.isFinal test, that should be in data-driven transaction tests)
#
# -> b39 (11) -> b42 (12) -> b43 (13) -> b53 (14) -> b55 (15) -> b57 (16) -> b60 (17)
# \-> b62 (18)
#
tip(60)
b62 = block(62)
tx = CTransaction()
tx.nLockTime = 0xffffffff #this locktime is non-final
assert(out[18].n < len(out[18].tx.vout))
tx.vin.append(CTxIn(COutPoint(out[18].tx.sha256, out[18].n))) # don't set nSequence
tx.vout.append(CTxOut(0, CScript([OP_TRUE])))
assert(tx.vin[0].nSequence < 0xffffffff)
tx.calc_sha256()
b62 = update_block(62, [tx])
yield rejected(RejectResult(16, b'bad-txns-nonfinal'))
# Test a non-final coinbase is also rejected
#
# -> b39 (11) -> b42 (12) -> b43 (13) -> b53 (14) -> b55 (15) -> b57 (16) -> b60 (17)
# \-> b63 (-)
#
tip(60)
b63 = block(63)
b63.vtx[0].nLockTime = 0xffffffff
b63.vtx[0].vin[0].nSequence = 0xDEADBEEF
b63.vtx[0].rehash()
b63 = update_block(63, [])
yield rejected(RejectResult(16, b'bad-txns-nonfinal'))
# This checks that a block with a bloated VARINT between the block_header and the array of tx such that
# the block is > MAX_BLOCK_BASE_SIZE with the bloated varint, but <= MAX_BLOCK_BASE_SIZE without the bloated varint,
# does not cause a subsequent, identical block with canonical encoding to be rejected. The test does not
# care whether the bloated block is accepted or rejected; it only cares that the second block is accepted.
#
# What matters is that the receiving node should not reject the bloated block, and then reject the canonical
# block on the basis that it's the same as an already-rejected block (which would be a consensus failure.)
#
# -> b39 (11) -> b42 (12) -> b43 (13) -> b53 (14) -> b55 (15) -> b57 (16) -> b60 (17) -> b64 (18)
# \
# b64a (18)
# b64a is a bloated block (non-canonical varint)
# b64 is a good block (same as b64 but w/ canonical varint)
#
tip(60)
regular_block = block("64a", spend=out[18])
# make it a "broken_block," with non-canonical serialization
b64a = CBrokenBlock(regular_block)
b64a.initialize(regular_block)
self.blocks["64a"] = b64a
self.tip = b64a
tx = CTransaction()
# use canonical serialization to calculate size
script_length = MAX_BLOCK_BASE_SIZE - len(b64a.normal_serialize()) - 69
script_output = CScript([b'\x00' * script_length])
tx.vout.append(CTxOut(0, script_output))
tx.vin.append(CTxIn(COutPoint(b64a.vtx[1].sha256, 0)))
b64a = update_block("64a", [tx])
assert_equal(len(b64a.serialize()), MAX_BLOCK_BASE_SIZE + 8)
yield TestInstance([[self.tip, None]])
# comptool workaround: to make sure b64 is delivered, manually erase b64a from blockstore
self.test.block_store.erase(b64a.sha256)
tip(60)
b64 = CBlock(b64a)
b64.vtx = copy.deepcopy(b64a.vtx)
assert_equal(b64.hash, b64a.hash)
assert_equal(len(b64.serialize()), MAX_BLOCK_BASE_SIZE)
self.blocks[64] = b64
update_block(64, [])
yield accepted()
save_spendable_output()
# Spend an output created in the block itself
#
# -> b42 (12) -> b43 (13) -> b53 (14) -> b55 (15) -> b57 (16) -> b60 (17) -> b64 (18) -> b65 (19)
#
tip(64)
block(65)
tx1 = create_and_sign_tx(out[19].tx, out[19].n, out[19].tx.vout[0].nValue)
tx2 = create_and_sign_tx(tx1, 0, 0)
update_block(65, [tx1, tx2])
yield accepted()
save_spendable_output()
# Attempt to spend an output created later in the same block
#
# -> b43 (13) -> b53 (14) -> b55 (15) -> b57 (16) -> b60 (17) -> b64 (18) -> b65 (19)
# \-> b66 (20)
tip(65)
block(66)
tx1 = create_and_sign_tx(out[20].tx, out[20].n, out[20].tx.vout[0].nValue)
tx2 = create_and_sign_tx(tx1, 0, 1)
update_block(66, [tx2, tx1])
yield rejected(RejectResult(16, b'bad-txns-inputs-missingorspent'))
# Attempt to double-spend a transaction created in a block
#
# -> b43 (13) -> b53 (14) -> b55 (15) -> b57 (16) -> b60 (17) -> b64 (18) -> b65 (19)
# \-> b67 (20)
#
#
tip(65)
block(67)
tx1 = create_and_sign_tx(out[20].tx, out[20].n, out[20].tx.vout[0].nValue)
tx2 = create_and_sign_tx(tx1, 0, 1)
tx3 = create_and_sign_tx(tx1, 0, 2)
update_block(67, [tx1, tx2, tx3])
yield rejected(RejectResult(16, b'bad-txns-inputs-missingorspent'))
# More tests of block subsidy
#
# -> b43 (13) -> b53 (14) -> b55 (15) -> b57 (16) -> b60 (17) -> b64 (18) -> b65 (19) -> b69 (20)
# \-> b68 (20)
#
# b68 - coinbase with an extra 10 satoshis,
# creates a tx that has 9 satoshis from out[20] go to fees
# this fails because the coinbase is trying to claim 1 satoshi too much in fees
#
# b69 - coinbase with extra 10 satoshis, and a tx that gives a 10 satoshi fee
# this succeeds
#
tip(65)
block(68, additional_coinbase_value=10)
tx = create_and_sign_tx(out[20].tx, out[20].n, out[20].tx.vout[0].nValue-9)
update_block(68, [tx])
yield rejected(RejectResult(16, b'bad-cb-amount'))
tip(65)
b69 = block(69, additional_coinbase_value=10)
tx = create_and_sign_tx(out[20].tx, out[20].n, out[20].tx.vout[0].nValue-10)
update_block(69, [tx])
yield accepted()
save_spendable_output()
# Test spending the outpoint of a non-existent transaction
#
# -> b53 (14) -> b55 (15) -> b57 (16) -> b60 (17) -> b64 (18) -> b65 (19) -> b69 (20)
# \-> b70 (21)
#
tip(69)
block(70, spend=out[21])
bogus_tx = CTransaction()
bogus_tx.sha256 = uint256_from_str(b"23c70ed7c0506e9178fc1a987f40a33946d4ad4c962b5ae3a52546da53af0c5c")
tx = CTransaction()
tx.vin.append(CTxIn(COutPoint(bogus_tx.sha256, 0), b"", 0xffffffff))
tx.vout.append(CTxOut(1, b""))
update_block(70, [tx])
yield rejected(RejectResult(16, b'bad-txns-inputs-missingorspent'))
# Test accepting an invalid block which has the same hash as a valid one (via merkle tree tricks)
#
# -> b53 (14) -> b55 (15) -> b57 (16) -> b60 (17) -> b64 (18) -> b65 (19) -> b69 (20) -> b72 (21)
# \-> b71 (21)
#
# b72 is a good block.
# b71 is a copy of 72, but re-adds one of its transactions. However, it has the same hash as b71.
#
tip(69)
b72 = block(72)
tx1 = create_and_sign_tx(out[21].tx, out[21].n, 2)
tx2 = create_and_sign_tx(tx1, 0, 1)
b72 = update_block(72, [tx1, tx2]) # now tip is 72
b71 = copy.deepcopy(b72)
b71.vtx.append(tx2) # add duplicate tx2
self.block_heights[b71.sha256] = self.block_heights[b69.sha256] + 1 # b71 builds off b69
self.blocks[71] = b71
assert_equal(len(b71.vtx), 4)
assert_equal(len(b72.vtx), 3)
assert_equal(b72.sha256, b71.sha256)
tip(71)
yield rejected(RejectResult(16, b'bad-txns-duplicate'))
tip(72)
yield accepted()
save_spendable_output()
# Test some invalid scripts and MAX_BLOCK_SIGOPS
#
# -> b55 (15) -> b57 (16) -> b60 (17) -> b64 (18) -> b65 (19) -> b69 (20) -> b72 (21)
# \-> b** (22)
#
# b73 - tx with excessive sigops that are placed after an excessively large script element.
# The purpose of the test is to make sure those sigops are counted.
#
# script is a bytearray of size 20,526
#
# bytearray[0-19,998] : OP_CHECKSIG
# bytearray[19,999] : OP_PUSHDATA4
# bytearray[20,000-20,003]: 521 (max_script_element_size+1, in little-endian format)
# bytearray[20,004-20,525]: unread data (script_element)
# bytearray[20,526] : OP_CHECKSIG (this puts us over the limit)
#
tip(72)
b73 = block(73)
size = MAX_BLOCK_SIGOPS - 1 + MAX_SCRIPT_ELEMENT_SIZE + 1 + 5 + 1
a = bytearray([OP_CHECKSIG] * size)
a[MAX_BLOCK_SIGOPS - 1] = int("4e",16) # OP_PUSHDATA4
element_size = MAX_SCRIPT_ELEMENT_SIZE + 1
a[MAX_BLOCK_SIGOPS] = element_size % 256
a[MAX_BLOCK_SIGOPS+1] = element_size // 256
a[MAX_BLOCK_SIGOPS+2] = 0
a[MAX_BLOCK_SIGOPS+3] = 0
tx = create_and_sign_tx(out[22].tx, 0, 1, CScript(a))
b73 = update_block(73, [tx])
assert_equal(get_legacy_sigopcount_block(b73), MAX_BLOCK_SIGOPS+1)
yield rejected(RejectResult(16, b'bad-blk-sigops'))
# b74/75 - if we push an invalid script element, all prevous sigops are counted,
# but sigops after the element are not counted.
#
# The invalid script element is that the push_data indicates that
# there will be a large amount of data (0xffffff bytes), but we only
# provide a much smaller number. These bytes are CHECKSIGS so they would
# cause b75 to fail for excessive sigops, if those bytes were counted.
#
# b74 fails because we put MAX_BLOCK_SIGOPS+1 before the element
# b75 succeeds because we put MAX_BLOCK_SIGOPS before the element
#
#
tip(72)
b74 = block(74)
size = MAX_BLOCK_SIGOPS - 1 + MAX_SCRIPT_ELEMENT_SIZE + 42 # total = 20,561
a = bytearray([OP_CHECKSIG] * size)
a[MAX_BLOCK_SIGOPS] = 0x4e
a[MAX_BLOCK_SIGOPS+1] = 0xfe
a[MAX_BLOCK_SIGOPS+2] = 0xff
a[MAX_BLOCK_SIGOPS+3] = 0xff
a[MAX_BLOCK_SIGOPS+4] = 0xff
tx = create_and_sign_tx(out[22].tx, 0, 1, CScript(a))
b74 = update_block(74, [tx])
yield rejected(RejectResult(16, b'bad-blk-sigops'))
tip(72)
b75 = block(75)
size = MAX_BLOCK_SIGOPS - 1 + MAX_SCRIPT_ELEMENT_SIZE + 42
a = bytearray([OP_CHECKSIG] * size)
a[MAX_BLOCK_SIGOPS-1] = 0x4e
a[MAX_BLOCK_SIGOPS] = 0xff
a[MAX_BLOCK_SIGOPS+1] = 0xff
a[MAX_BLOCK_SIGOPS+2] = 0xff
a[MAX_BLOCK_SIGOPS+3] = 0xff
tx = create_and_sign_tx(out[22].tx, 0, 1, CScript(a))
b75 = update_block(75, [tx])
yield accepted()
save_spendable_output()
# Check that if we push an element filled with CHECKSIGs, they are not counted
tip(75)
b76 = block(76)
size = MAX_BLOCK_SIGOPS - 1 + MAX_SCRIPT_ELEMENT_SIZE + 1 + 5
a = bytearray([OP_CHECKSIG] * size)
a[MAX_BLOCK_SIGOPS-1] = 0x4e # PUSHDATA4, but leave the following bytes as just checksigs
tx = create_and_sign_tx(out[23].tx, 0, 1, CScript(a))
b76 = update_block(76, [tx])
yield accepted()
save_spendable_output()
# Test transaction resurrection
#
# -> b77 (24) -> b78 (25) -> b79 (26)
# \-> b80 (25) -> b81 (26) -> b82 (27)
#
# b78 creates a tx, which is spent in b79. After b82, both should be in mempool
#
# The tx'es must be unsigned and pass the node's mempool policy. It is unsigned for the
# rather obscure reason that the Python signature code does not distinguish between
# Low-S and High-S values (whereas the bitcoin code has custom code which does so);
# as a result of which, the odds are 50% that the python code will use the right
# value and the transaction will be accepted into the mempool. Until we modify the
# test framework to support low-S signing, we are out of luck.
#
# To get around this issue, we construct transactions which are not signed and which
# spend to OP_TRUE. If the standard-ness rules change, this test would need to be
# updated. (Perhaps to spend to a P2SH OP_TRUE script)
#
tip(76)
block(77)
tx77 = create_and_sign_tx(out[24].tx, out[24].n, 10*COIN)
update_block(77, [tx77])
yield accepted()
save_spendable_output()
block(78)
tx78 = create_tx(tx77, 0, 9*COIN)
update_block(78, [tx78])
yield accepted()
block(79)
tx79 = create_tx(tx78, 0, 8*COIN)
update_block(79, [tx79])
yield accepted()
# mempool should be empty
assert_equal(len(self.nodes[0].getrawmempool()), 0)
tip(77)
block(80, spend=out[25])
yield rejected()
save_spendable_output()
block(81, spend=out[26])
yield rejected() # other chain is same length
save_spendable_output()
block(82, spend=out[27])
yield accepted() # now this chain is longer, triggers re-org
save_spendable_output()
# now check that tx78 and tx79 have been put back into the peer's mempool
mempool = self.nodes[0].getrawmempool()
assert_equal(len(mempool), 2)
assert(tx78.hash in mempool)
assert(tx79.hash in mempool)
# Test invalid opcodes in dead execution paths.
#
# -> b81 (26) -> b82 (27) -> b83 (28)
#
block(83)
op_codes = [OP_IF, OP_INVALIDOPCODE, OP_ELSE, OP_TRUE, OP_ENDIF]
script = CScript(op_codes)
tx1 = create_and_sign_tx(out[28].tx, out[28].n, out[28].tx.vout[0].nValue, script)
tx2 = create_and_sign_tx(tx1, 0, 0, CScript([OP_TRUE]))
tx2.vin[0].scriptSig = CScript([OP_FALSE])
tx2.rehash()
update_block(83, [tx1, tx2])
yield accepted()
save_spendable_output()
# Reorg on/off blocks that have OP_RETURN in them (and try to spend them)
#
# -> b81 (26) -> b82 (27) -> b83 (28) -> b84 (29) -> b87 (30) -> b88 (31)
# \-> b85 (29) -> b86 (30) \-> b89a (32)
#
#
block(84)
tx1 = create_tx(out[29].tx, out[29].n, 0, CScript([OP_RETURN]))
tx1.vout.append(CTxOut(0, CScript([OP_TRUE])))
tx1.vout.append(CTxOut(0, CScript([OP_TRUE])))
tx1.vout.append(CTxOut(0, CScript([OP_TRUE])))
tx1.vout.append(CTxOut(0, CScript([OP_TRUE])))
tx1.calc_sha256()
self.sign_tx(tx1, out[29].tx, out[29].n)
tx1.rehash()
tx2 = create_tx(tx1, 1, 0, CScript([OP_RETURN]))
tx2.vout.append(CTxOut(0, CScript([OP_RETURN])))
tx3 = create_tx(tx1, 2, 0, CScript([OP_RETURN]))
tx3.vout.append(CTxOut(0, CScript([OP_TRUE])))
tx4 = create_tx(tx1, 3, 0, CScript([OP_TRUE]))
tx4.vout.append(CTxOut(0, CScript([OP_RETURN])))
tx5 = create_tx(tx1, 4, 0, CScript([OP_RETURN]))
update_block(84, [tx1,tx2,tx3,tx4,tx5])
yield accepted()
save_spendable_output()
tip(83)
block(85, spend=out[29])
yield rejected()
block(86, spend=out[30])
yield accepted()
tip(84)
block(87, spend=out[30])
yield rejected()
save_spendable_output()
block(88, spend=out[31])
yield accepted()
save_spendable_output()
# trying to spend the OP_RETURN output is rejected
block("89a", spend=out[32])
tx = create_tx(tx1, 0, 0, CScript([OP_TRUE]))
update_block("89a", [tx])
yield rejected()
# Test re-org of a week's worth of blocks (1088 blocks)
# This test takes a minute or two and can be accomplished in memory
#
if self.options.runbarelyexpensive:
tip(88)
LARGE_REORG_SIZE = 1088
test1 = TestInstance(sync_every_block=False)
spend=out[32]
for i in range(89, LARGE_REORG_SIZE + 89):
b = block(i, spend)
tx = CTransaction()
script_length = MAX_BLOCK_BASE_SIZE - len(b.serialize()) - 69
script_output = CScript([b'\x00' * script_length])
tx.vout.append(CTxOut(0, script_output))
tx.vin.append(CTxIn(COutPoint(b.vtx[1].sha256, 0)))
b = update_block(i, [tx])
assert_equal(len(b.serialize()), MAX_BLOCK_BASE_SIZE)
test1.blocks_and_transactions.append([self.tip, True])
save_spendable_output()
spend = get_spendable_output()
yield test1
chain1_tip = i
# now create alt chain of same length
tip(88)
test2 = TestInstance(sync_every_block=False)
for i in range(89, LARGE_REORG_SIZE + 89):
block("alt"+str(i))
test2.blocks_and_transactions.append([self.tip, False])
yield test2
# extend alt chain to trigger re-org
block("alt" + str(chain1_tip + 1))
yield accepted()
# ... and re-org back to the first chain
tip(chain1_tip)
block(chain1_tip + 1)
yield rejected()
block(chain1_tip + 2)
yield accepted()
chain1_tip += 2
if __name__ == '__main__':
FullBlockTest().main()
|
[
"contact@blackhatco.in"
] |
contact@blackhatco.in
|
1af4a2a2ce07a8d901b6177b7776dc669f8f06fe
|
faf50edfb415f2c5232d3279cf9b6d3684d1bb39
|
/src/python/ml/eval_functions.py
|
939d893f862fccee2383548006d15267f6b62b37
|
[] |
no_license
|
ALFA-group/EEG_coma
|
aff66ed15f597bdde8583e11bec7d33210bab224
|
c2e65ab1d6491378c71520bc75827f8c1374715d
|
refs/heads/main
| 2023-04-23T18:42:17.519875
| 2021-05-04T21:22:09
| 2021-05-04T21:22:09
| 364,260,929
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 4,344
|
py
|
import torch
import numpy as np
import matplotlib.pyplot as plt
from torch.autograd import Variable
import math
def encode(bursts, masks, encoder):
try:
if isinstance(bursts, np.ndarray):
bursts = torch.Tensor(bursts)
if isinstance(masks, np.ndarray):
masks = torch.Tensor(masks)
bursts = Variable(bursts)
masks = Variable(masks)
if torch.cuda.is_available():
bursts = bursts.cuda()
masks = masks.cuda()
burst_lens = masks.sum(dim=1)
max_seq_length = int(burst_lens.max().data.cpu().numpy()[0])
# trim bursts and masks to be padded only up to the max_seq_length
bursts_trimmed = bursts.narrow(1, 0, max_seq_length)
masks_trimmed = masks.narrow(1, 0, max_seq_length)
# print burst_lens.min().data.numpy()[0], burst_lens.max().data.numpy()[0]
enc_out, hidden, cell = encoder(bursts_trimmed)
except Exception as e:
return bursts, masks, None
print e
return enc_out, hidden, cell
def autoencode(inp_array, encoder, decoder, toss_encoder_output=False, reverse=False):
# inp_array - numpy array or tensor of burst data
# returns numpy array of output
if isinstance(inp_array, np.ndarray):
inp_array = torch.Tensor(inp_array)
inp_var = Variable(inp_array)
if torch.cuda.is_available():
inp_var = inp_var.cuda()
pad_length = inp_var.size(0)
enc_out, hidden, cell = encoder(inp_var.view(1,pad_length))
# output is size batch_size x pad_length x input_size
hidden_size = hidden.size(0)
output = decoder(hidden, cell, pad_length)
if toss_encoder_output:
output = decoder(torch.zeros_like(hidden), torch.zeros_like(cell), pad_length)
out_array = output.data.cpu().numpy()
out_array = out_array.reshape(pad_length)
if reverse:
return np.flip(out_array,axis=0).copy()
return out_array
def plot_autoencoding(sample, encoder, decoder, toss_encoder_output=False, reverse=False, undownsampled=None):
# sample is just an element of the dataset
# undownsampled is same as sample, except without downsampling. Used to plot the original, complete, un-downsampled
# burst for comparison with the output
seq_len = int(sample['mask'].sum())
inp_array = sample['burst'].cpu().numpy()
out_array = autoencode(inp_array, encoder, decoder, toss_encoder_output, reverse)
if undownsampled is None:
plt.plot(inp_array[:seq_len], label='Original burst')
plt.plot(out_array[:seq_len], label='Autoencoder output')
else:
unds_seq_len = int(undownsampled['mask'].sum())
unds_inp_array = undownsampled['burst'].cpu().numpy()
out_array_trim = out_array[:seq_len]
unds_inp_array_trim = unds_inp_array[:unds_seq_len]
out_xrange = np.arange(0,len(out_array_trim),1)
ds_factor = math.ceil(len(unds_inp_array_trim)/(0.0+len(out_array_trim)))
undownsampled_xrange = np.arange(0, len(out_array_trim), 1.0/ds_factor)[:len(unds_inp_array_trim)]
undownsampled_xrange = np.arange(0, len(unds_inp_array_trim), 1)
out_xrange = np.arange(0,len(unds_inp_array_trim),ds_factor)
plt.plot(undownsampled_xrange, unds_inp_array_trim, label='Original burst')
plt.plot(out_xrange, out_array_trim, label='Autoencder output')
plt.title('Original vs autoencoded')
plt.xlabel('Samples')
plt.ylabel('Signal')
plt.legend()
plt.show()
def get_mse(sample, encoder, decoder, toss_encoder_output=False, reverse=False):
# sample is just an element of the dataset
seq_len = int(sample['mask'].sum())
inp_array = sample['burst'].cpu().numpy()
out_array = autoencode(inp_array, encoder, decoder, toss_encoder_output, reverse)
loss_fn = torch.nn.MSELoss(reduce=False)
out_var = Variable(torch.Tensor(out_array))
burst_var = Variable(sample['burst'])
mask_var = Variable(sample['mask'])
if torch.cuda.is_available():
out_var = out_var.cuda()
burst_var = burst_var.cuda()
mask_var = mask_var.cuda()
mses = loss_fn(out_var, burst_var)
# avg_mses is size [batch_size], giving mse for each elt in batch
avg_mse = torch.sum(mses * mask_var) / seq_len
avg_mse = avg_mse.data.cpu().numpy()[0]
return avg_mse
|
[
"shash@mit.edu"
] |
shash@mit.edu
|
45be357e7b38ec918dbbec6c0e106c1fd5ccafbb
|
91578595b5aa689b277827860141c60ca26753a4
|
/src/State.py
|
6315ad42a83966bbb8cf9d922bf9347d459a5c60
|
[
"BSD-3-Clause"
] |
permissive
|
lnerit/ktailFSM
|
bfb99378ea2e23d0a392cf88e43e2892c2734a02
|
abed58d97aad87a1b6eb7f062cd42a7256c55306
|
refs/heads/master
| 2021-01-10T08:09:59.412708
| 2016-02-21T05:24:21
| 2016-02-21T05:24:21
| 49,031,698
| 3
| 1
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 2,539
|
py
|
'''
Created on 15/12/2015
@author: lenz
'''
MACHINES = dict()
NOOP = lambda: None
NOOP_ARG = lambda arg: None
class FSMError(Exception):
"""Base FSM exception."""
pass
class StateError(FSMError):
"""State manipulation error."""
class State(dict):
"""State class."""
DOT_ATTRS = {
'shape': 'circle',
'height': '1.2',
}
DOT_ACCEPTING = 'doublecircle'
def __init__(self, name, initial=False, accepting=False, output=None,
on_entry=NOOP, on_exit=NOOP, on_input=NOOP_ARG,
on_transition=NOOP_ARG, machine=None, default=None):
"""Construct a state."""
dict.__init__(self)
self.name = name
self.entry_action = on_entry
self.exit_action = on_exit
self.input_action = on_input
self.transition_action = on_transition
self.output_values = [(None, output)]
self.default_transition = default
if machine is None:
try:
machine = MACHINES['default']
except KeyError:
pass
if machine:
machine.states.append(self)
if accepting:
try:
machine.accepting_states.append(self)
except AttributeError:
raise StateError('The %r %s does not support accepting '
'states.' % (machine.name,
machine.__class__.__name__))
if initial:
machine.init_state = self
def __getitem__(self, input_value):
"""Make a transition to the next state."""
next_state = dict.__getitem__(self, input_value)
self.input_action(input_value)
self.exit_action()
self.transition_action(next_state)
next_state.entry_action()
return next_state
def __setitem__(self, input_value, next_state):
"""Set a transition to a new state."""
if not isinstance(next_state, State):
raise StateError('A state must transition to another state,'
' got %r instead.' % next_state)
if isinstance(input_value, tuple):
input_value, output_value = input_value
self.output_values.append((input_value, output_value))
dict.__setitem__(self, input_value, next_state)
def __repr__(self):
"""Represent the object in a string."""
return '<%r %s @ 0x%x>' % (self.name, self.__class__.__name__, id(self))
|
[
"lewelnerit@gmail.com"
] |
lewelnerit@gmail.com
|
27765d93a89279793b38eb5ecee621db296f5941
|
1ad7addd3cf4d29130a09eb379dbce572a8351b8
|
/Github-Spider/dummy_spider1.py
|
8fec7d7ec4e810cebce2920ef19399e81927d75c
|
[] |
no_license
|
parasKumarSahu/KML
|
9f23e9d02303eba00f95966d95097aa7bf0b001c
|
385370ca4c631ed99d5f352ff31b3fa40c9007ea
|
refs/heads/master
| 2020-04-17T14:01:00.394848
| 2018-11-30T23:04:55
| 2018-11-30T23:04:55
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,573
|
py
|
import scrapy
f = open('haha.txt', "w")
# 'https://github.com/jquery/jquery/commits/master',
# 'https://github.com/codeschool-projects/HelloCodeSchoolProject/commits/master'
class DummySpider(scrapy.Spider):
name = "dummy"
start_urls = [
'https://github.com/codeschool-projects/HelloCodeSchoolProject/commits/master'
]
download_delay = 0.05
def doit(self, response):
arr = response.xpath('//tr//span/text()').extract()
string = ""
for stri in arr:
string += stri
yield {
'insider': string,
}
def parse(self, response):
for listitem in response.xpath('//li[@class="commit commits-list-item js-commits-list-item table-list-item js-navigation-item js-details-container Details js-socket-channel js-updatable-content"]'):
rel_url = listitem.xpath('div/div/a/@href').extract_first()
complete_url = response.urljoin(rel_url)
yield {
'RevisionId': complete_url,
'TimeStamp': listitem.xpath('div/div/div/relative-time/@datetime').extract_first(),
'Contributors': listitem.xpath('div/div/div/a/text()').extract_first(),
'EditDetails': listitem.xpath('div/p/a/text()').extract_first(),
}
f.write(complete_url + '\n')
#response.follow(rel_url, self.doit)
next_page = response.xpath('//div/div/div/div/div/div/div/a/@href')[-1].extract()
if next_page is not None:
yield response.follow(next_page, self.parse)
|
[
"2016csb1047@iitrpr.ac.in"
] |
2016csb1047@iitrpr.ac.in
|
6a5c1ea749f8102e0c5b36a0df88242b59dbcb09
|
96a62c5639154d9985148bce698362eb5be19735
|
/svr-2.7/arelle/PrototypeDtsObject.py
|
551bd298f0b3d1e1619e37f3bbadb514a22f77a6
|
[
"Apache-2.0"
] |
permissive
|
sternshus/not_arelle2.7
|
c535d35305af08a7d774be9bac8eeb68ba7c62bf
|
e2315999c514d6d30897168a98e5f343b06520f9
|
refs/heads/master
| 2020-04-14T07:27:43.615174
| 2016-06-20T21:16:02
| 2016-06-20T21:16:02
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 6,115
|
py
|
from arelle import XmlUtil, XbrlConst
from arelle.ModelValue import QName
from arelle.XmlValidate import VALID
from collections import defaultdict
import decimal, os
ModelDocument = None
class LinkPrototype(): # behaves like a ModelLink for relationship prototyping
def __init__(self, modelDocument, parent, qname, role):
self.modelDocument = modelDocument
self._parent = parent
self.modelXbrl = modelDocument.modelXbrl
self.qname = self.elementQname = qname
self.role = role
# children are arc and loc elements or prototypes
self.childElements = []
self.text = self.textValue = None
self.attributes = {u"{http://www.w3.org/1999/xlink}type":u"extended"}
if role:
self.attributes[u"{http://www.w3.org/1999/xlink}role"] = role
self.labeledResources = defaultdict(list)
def clear(self):
self.__dict__.clear() # dereference here, not an lxml object, don't use superclass clear()
def __iter__(self):
return iter(self.childElements)
def getparent(self):
return self._parent
def iterchildren(self):
return iter(self.childElements)
def get(self, key, default=None):
return self.attributes.get(key, default)
def __getitem(self, key):
return self.attributes[key]
class LocPrototype():
def __init__(self, modelDocument, parent, label, locObject, role=None):
self.modelDocument = modelDocument
self._parent = parent
self.modelXbrl = modelDocument.modelXbrl
self.qname = self.elementQname = XbrlConst.qnLinkLoc
self.text = self.textValue = None
# children are arc and loc elements or prototypes
self.attributes = {u"{http://www.w3.org/1999/xlink}type":u"locator",
u"{http://www.w3.org/1999/xlink}label":label}
# add an href if it is a 1.1 id
if isinstance(locObject,_STR_BASE): # it is an id
self.attributes[u"{http://www.w3.org/1999/xlink}href"] = u"#" + locObject
if role:
self.attributes[u"{http://www.w3.org/1999/xlink}role"] = role
self.locObject = locObject
def clear(self):
self.__dict__.clear() # dereference here, not an lxml object, don't use superclass clear()
@property
def xlinkLabel(self):
return self.attributes.get(u"{http://www.w3.org/1999/xlink}label")
def dereference(self):
if isinstance(self.locObject,_STR_BASE): # dereference by ID
return self.modelDocument.idObjects[self.locObject]
else: # it's an object pointer
return self.locObject
def getparent(self):
return self._parent
def get(self, key, default=None):
return self.attributes.get(key, default)
def __getitem(self, key):
return self.attributes[key]
class ArcPrototype():
def __init__(self, modelDocument, parent, qname, fromLabel, toLabel, linkrole, arcrole, order=u"1"):
self.modelDocument = modelDocument
self._parent = parent
self.modelXbrl = modelDocument.modelXbrl
self.qname = self.elementQname = qname
self.linkrole = linkrole
self.arcrole = arcrole
self.order = order
self.text = self.textValue = None
# children are arc and loc elements or prototypes
self.attributes = {u"{http://www.w3.org/1999/xlink}type":u"arc",
u"{http://www.w3.org/1999/xlink}from": fromLabel,
u"{http://www.w3.org/1999/xlink}to": toLabel,
u"{http://www.w3.org/1999/xlink}arcrole": arcrole}
# must look validated (because it can't really be validated)
self.xValid = VALID
self.xValue = self.sValue = None
self.xAttributes = {}
@property
def orderDecimal(self):
return decimal.Decimal(self.order)
def clear(self):
self.__dict__.clear() # dereference here, not an lxml object, don't use superclass clear()
def getparent(self):
return self._parent
def get(self, key, default=None):
return self.attributes.get(key, default)
def items(self):
return self.attributes.items()
def __getitem(self, key):
return self.attributes[key]
class DocumentPrototype():
def __init__(self, modelXbrl, uri, base=None, referringElement=None, isEntry=False, isDiscovered=False, isIncluded=None, namespace=None, reloadCache=False, **kwargs):
global ModelDocument
if ModelDocument is None:
from arelle import ModelDocument
self.modelXbrl = modelXbrl
self.skipDTS = modelXbrl.skipDTS
self.modelDocument = self
if referringElement is not None:
if referringElement.localName == u"schemaRef":
self.type = ModelDocument.Type.SCHEMA
elif referringElement.localName == u"linkbaseRef":
self.type = ModelDocument.Type.LINKBASE
else:
self.type = ModelDocument.Type.UnknownXML
else:
self.type = ModelDocument.Type.UnknownXML
normalizedUri = modelXbrl.modelManager.cntlr.webCache.normalizeUrl(uri, base)
self.filepath = modelXbrl.modelManager.cntlr.webCache.getfilename(normalizedUri, filenameOnly=True)
self.uri = modelXbrl.modelManager.cntlr.webCache.normalizeUrl(self.filepath)
self.basename = os.path.basename(self.filepath)
self.targetNamespace = None
self.referencesDocument = {}
self.hrefObjects = []
self.schemaLocationElements = set()
self.referencedNamespaces = set()
self.inDTS = False
self.xmlRootElement = None
def clear(self):
self.__dict__.clear() # dereference here, not an lxml object, don't use superclass clear()
|
[
"ndraper2@gmail.com"
] |
ndraper2@gmail.com
|
d301667e9da5f7d349fdf435dc6c5bdd2dd9d67e
|
46bd3e3ba590785cbffed5f044e69f1f9bafbce5
|
/env/lib/python3.8/site-packages/pip/_vendor/pep517/envbuild.py
|
7e6160fc539bc7bd382d6a660739256889eb380f
|
[] |
no_license
|
adamkluk/casper-getstarted
|
a6a6263f1547354de0e49ba2f1d57049a5fdec2b
|
01e846621b33f54ed3ec9b369e9de3872a97780d
|
refs/heads/master
| 2023-08-13T11:04:05.778228
| 2021-09-19T22:56:59
| 2021-09-19T22:56:59
| 408,036,193
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 129
|
py
|
version https://git-lfs.github.com/spec/v1
oid sha256:2dc493d0c01299c40d2ce16a0cfc43a12d648e4825c7c17a784868049f835a48
size 6112
|
[
"a.klukowski@live.com"
] |
a.klukowski@live.com
|
1d898f4d7db5808af12b3e9bd413033060f8403f
|
dfaf6f7ac83185c361c81e2e1efc09081bd9c891
|
/k8sdeployment/k8sstat/python/kubernetes/test/test_v1_local_object_reference.py
|
db02de623a1ffb63d799a47e9d655bb2206d76b9
|
[
"MIT",
"Apache-2.0"
] |
permissive
|
JeffYFHuang/gpuaccounting
|
d754efac2dffe108b591ea8722c831d979b68cda
|
2c63a63c571240561725847daf1a7f23f67e2088
|
refs/heads/master
| 2022-08-09T03:10:28.185083
| 2022-07-20T00:50:06
| 2022-07-20T00:50:06
| 245,053,008
| 0
| 0
|
MIT
| 2021-03-25T23:44:50
| 2020-03-05T02:44:15
|
JavaScript
|
UTF-8
|
Python
| false
| false
| 994
|
py
|
# coding: utf-8
"""
Kubernetes
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
OpenAPI spec version: v1.15.6
Generated by: https://openapi-generator.tech
"""
from __future__ import absolute_import
import unittest
import kubernetes.client
from kubernetes.client.models.v1_local_object_reference import V1LocalObjectReference # noqa: E501
from kubernetes.client.rest import ApiException
class TestV1LocalObjectReference(unittest.TestCase):
"""V1LocalObjectReference unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testV1LocalObjectReference(self):
"""Test V1LocalObjectReference"""
# FIXME: construct object with mandatory attributes with example values
# model = kubernetes.client.models.v1_local_object_reference.V1LocalObjectReference() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()
|
[
"JeffYFHuang@github.com"
] |
JeffYFHuang@github.com
|
95606499c7800d62f8e508016262efca1b1262b1
|
92225c51f4d4ccf6330afc83eb8cebc9eda2d767
|
/mach_o/headers/prebind_cksum_command.py
|
1bde67456e66355c17e8e187f9f685e37f328299
|
[
"Apache-2.0"
] |
permissive
|
jeffli678/MachOTool
|
17f120b1dbec0f5b50d56b4bcd450ae5be08dad5
|
469c0fd06199356fcc6d68809c7ba15a12eac1fd
|
refs/heads/master
| 2020-07-02T01:23:21.048970
| 2015-10-31T09:21:59
| 2015-10-31T09:21:59
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 488
|
py
|
from utils.header import MagicField, Field
from load_command import LoadCommandHeader, LoadCommandCommand
class PrebindCksumCommand(LoadCommandHeader):
ENDIAN = None
FIELDS = (
MagicField('cmd', 'I', {LoadCommandCommand.COMMANDS['LC_DYSYMTAB']: 'LC_DYSYMTAB'}),
Field('cmdsize', 'I'),
Field('cksum', 'I'),
)
def __init__(self, bytes_=None, **kwargs):
self.cksum = None
super(PrebindCksumCommand, self).__init__(bytes_, **kwargs)
|
[
"henrykwok2000@yahoo.com"
] |
henrykwok2000@yahoo.com
|
25265341286876db617a7ceabe8e9353a1421c8d
|
64a82fb1ac6ff3e1ec0c9f9306f4eeafca01837e
|
/users/migrations/0015_auto_20210607_1909.py
|
cf197dc2584939f2a37101c62243b4bcfa80d3d8
|
[] |
no_license
|
DiabCh/Online-Store-Project
|
54b6e1aad7563471b81eade81f1daf2baeec19b8
|
065302fb9e363a1645bff2e516248a22fb49f9db
|
refs/heads/main
| 2023-07-15T01:53:36.611256
| 2021-08-20T10:44:59
| 2021-08-20T10:44:59
| 398,246,910
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 688
|
py
|
# Generated by Django 3.1.7 on 2021-06-07 19:09
import datetime
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0014_auto_20210607_0735'),
]
operations = [
migrations.AlterField(
model_name='activation',
name='expires_at',
field=models.DateTimeField(default=datetime.datetime(2021, 6, 7, 19, 39, 12, 604098)),
),
migrations.AlterField(
model_name='activation',
name='token',
field=models.CharField(default='49daf8d2be3aafdb41704c2f3851e8e6169ec344814420b22964be7d1a25e072', max_length=64),
),
]
|
[
"chraifdiab@gmail.com"
] |
chraifdiab@gmail.com
|
20900db7b1b8044e1bf0b27b91907868005a426c
|
5a52ccea88f90dd4f1acc2819997fce0dd5ffb7d
|
/alipay/aop/api/domain/AlipayInsSceneSellerActivitySignModel.py
|
4ef2bcff18867f0f8ba427a6a7c71a574c386b9c
|
[
"Apache-2.0"
] |
permissive
|
alipay/alipay-sdk-python-all
|
8bd20882852ffeb70a6e929038bf88ff1d1eff1c
|
1fad300587c9e7e099747305ba9077d4cd7afde9
|
refs/heads/master
| 2023-08-27T21:35:01.778771
| 2023-08-23T07:12:26
| 2023-08-23T07:12:26
| 133,338,689
| 247
| 70
|
Apache-2.0
| 2023-04-25T04:54:02
| 2018-05-14T09:40:54
|
Python
|
UTF-8
|
Python
| false
| false
| 2,623
|
py
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
from alipay.aop.api.constant.ParamConstants import *
class AlipayInsSceneSellerActivitySignModel(object):
def __init__(self):
self._biz_data = None
self._channel_account_id = None
self._channel_account_type = None
self._sp_code = None
@property
def biz_data(self):
return self._biz_data
@biz_data.setter
def biz_data(self, value):
self._biz_data = value
@property
def channel_account_id(self):
return self._channel_account_id
@channel_account_id.setter
def channel_account_id(self, value):
self._channel_account_id = value
@property
def channel_account_type(self):
return self._channel_account_type
@channel_account_type.setter
def channel_account_type(self, value):
self._channel_account_type = value
@property
def sp_code(self):
return self._sp_code
@sp_code.setter
def sp_code(self, value):
self._sp_code = value
def to_alipay_dict(self):
params = dict()
if self.biz_data:
if hasattr(self.biz_data, 'to_alipay_dict'):
params['biz_data'] = self.biz_data.to_alipay_dict()
else:
params['biz_data'] = self.biz_data
if self.channel_account_id:
if hasattr(self.channel_account_id, 'to_alipay_dict'):
params['channel_account_id'] = self.channel_account_id.to_alipay_dict()
else:
params['channel_account_id'] = self.channel_account_id
if self.channel_account_type:
if hasattr(self.channel_account_type, 'to_alipay_dict'):
params['channel_account_type'] = self.channel_account_type.to_alipay_dict()
else:
params['channel_account_type'] = self.channel_account_type
if self.sp_code:
if hasattr(self.sp_code, 'to_alipay_dict'):
params['sp_code'] = self.sp_code.to_alipay_dict()
else:
params['sp_code'] = self.sp_code
return params
@staticmethod
def from_alipay_dict(d):
if not d:
return None
o = AlipayInsSceneSellerActivitySignModel()
if 'biz_data' in d:
o.biz_data = d['biz_data']
if 'channel_account_id' in d:
o.channel_account_id = d['channel_account_id']
if 'channel_account_type' in d:
o.channel_account_type = d['channel_account_type']
if 'sp_code' in d:
o.sp_code = d['sp_code']
return o
|
[
"liuqun.lq@alibaba-inc.com"
] |
liuqun.lq@alibaba-inc.com
|
096663cd9cbae0fabe082fe91e8332f3900bd763
|
d95e3c7cd912a2eab479bbe66e747e4709edf2d0
|
/bs_scrape.spec
|
ba36aa3a232605334babf932789b283ca0fb76c4
|
[] |
no_license
|
jaked842/ammoscrape
|
91666e0166156c5a9dc1e3c7f64a3091b05ff3e4
|
e09a01508cc110a8685f075e1ef75460caaaeaff
|
refs/heads/main
| 2023-06-03T22:57:55.615450
| 2021-06-24T18:01:34
| 2021-06-24T18:01:34
| 379,684,986
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 862
|
spec
|
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(['bs_scrape.py'],
pathex=['/Users/admin/Downloads/bsoup'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='bs_scrape',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True )
|
[
"admin@MacBook-Pro.local"
] |
admin@MacBook-Pro.local
|
622684ec5c306509536391a79ee86352bd8df45f
|
088cc2a6e03aedea5f86372fc23f646836e6b9eb
|
/data/migrations/0008_auto_20201113_1031.py
|
ab1c23632751618ca4963f85913725bff8c55a8a
|
[] |
no_license
|
EliSEstes/Air-Quality-Forum
|
6cd2055151d9523a02de847ab5440f25cb52f128
|
f3fbd95ed0a9711d9a8fe5cc72942d38fec5ebdd
|
refs/heads/main
| 2023-03-31T23:10:00.985683
| 2021-03-23T02:23:36
| 2021-03-23T02:23:36
| 348,881,797
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,120
|
py
|
# Generated by Django 3.1.1 on 2020-11-13 16:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('data', '0007_city_humidity'),
]
operations = [
migrations.RemoveField(
model_name='city',
name='maxCo2',
),
migrations.RemoveField(
model_name='city',
name='maxSo2',
),
migrations.RemoveField(
model_name='city',
name='minCo2',
),
migrations.RemoveField(
model_name='city',
name='minSo2',
),
migrations.AddField(
model_name='city',
name='n',
field=models.IntegerField(default='000'),
),
migrations.AddField(
model_name='city',
name='pm10',
field=models.IntegerField(default='000'),
),
migrations.AddField(
model_name='city',
name='pm25',
field=models.IntegerField(default='000'),
),
]
|
[
"noreply@github.com"
] |
noreply@github.com
|
bab5556638f533d64d9c39fd6e03374ca346dcbd
|
9c2e87292aa0892e621c67b8f335f569e457837e
|
/problem_12/main.py
|
c3fd712667a53a7f074c89d5bf13a929d3cffa19
|
[] |
no_license
|
scirelli/dailycodingproblem.com
|
66253198e738ec7dc8f741e3230ffa8fbed1ecf7
|
3f84e5a19dada4fd69c0e8fc02f930c8531193c0
|
refs/heads/master
| 2023-08-05T08:50:59.569552
| 2023-07-20T13:11:48
| 2023-07-20T14:08:05
| 159,087,800
| 0
| 0
| null | 2023-07-20T14:08:06
| 2018-11-26T00:20:24
|
Python
|
UTF-8
|
Python
| false
| false
| 417
|
py
|
#!/usr/bin/env python3
def unique_climbs(N, X={1, 2}):
"""
Brought force method. Try out all possible combinations.
"""
result = 0
if N == 0:
return 1
if N < 0:
return 0
for cnt in X:
result += unique_climbs(N-cnt, X)
return result
print(unique_climbs(4))
print(unique_climbs(4, {1, 3, 5}))
print(unique_climbs(4, {1}))
print(unique_climbs(5, {1, 2}))
|
[
"stephen.cirelli@capitalone.com"
] |
stephen.cirelli@capitalone.com
|
bfae83b275fbfae46d9026de5ef5217a6f90a547
|
872a6279df8f6c8786002f9012cad3ca2d99bcb3
|
/countries/admin.py
|
0e838f57e0febdd25e4eaac3c191a25a229c68a2
|
[] |
no_license
|
ndanield/countries_list
|
50611cffd22a8c3c59c5e4972c4785db21663e94
|
532334dc6767182479501a189ac797997fb3efbc
|
refs/heads/master
| 2021-01-10T07:05:34.679445
| 2015-12-02T05:19:32
| 2015-12-02T05:19:32
| 47,042,450
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 214
|
py
|
from django.contrib import admin
from .models import Country
class CountryAdmin(admin.ModelAdmin):
list_display = ['code', 'name', 'continent', 'region', 'population']
admin.site.register(Country, CountryAdmin)
|
[
"Nelson Daniel Durán Morel"
] |
Nelson Daniel Durán Morel
|
b3fcc969062efca70aa4b4866ce7e8189b6d948a
|
8c953249a62367a8f0138eff488ce5d510e65620
|
/cs109/lab1OldClone/rpnc.py
|
5a6a89132f900087c2e0ed5306b2da657c50dcb0
|
[] |
no_license
|
nahawtho/cs109copy
|
5ce87799eb09ac22b38f63b8d77b3878f8b5b001
|
66e2b2be6adf54bf724a437f2a32090a1d834cba
|
refs/heads/master
| 2020-04-05T06:50:35.063576
| 2018-11-08T05:10:56
| 2018-11-08T05:10:56
| 156,653,424
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 166
|
py
|
#
# Python3 Reverse Polish Notation (RPN) Calculator
#
# Accepts an single argument in RPN, evaluates it and prints the answer to stdout.
#
print("not implemented")
|
[
"nahawtho@thor.soe.ucsc.edu"
] |
nahawtho@thor.soe.ucsc.edu
|
dea7dc5a83f238f53995a42c85e7a082cf7c8435
|
67c846e50f9179b062bb9d70b637d4ea00b33e2f
|
/venv/Scripts/easy_install-3.6-script.py
|
0c33e21fc36e535c2ec12d6a20db1b8af6367546
|
[] |
no_license
|
feriosch/Hack2019
|
2cdb71f06e4ba8ca8c1246b8b06f43460de14c9c
|
e1a6085b53ab6509c1eb4e5f4056814c1fa78985
|
refs/heads/master
| 2020-05-17T16:30:50.417049
| 2019-04-28T17:07:44
| 2019-04-28T17:07:44
| 183,820,846
| 0
| 0
| null | 2019-04-28T05:57:23
| 2019-04-27T20:55:24
|
Python
|
UTF-8
|
Python
| false
| false
| 458
|
py
|
#!C:\Users\ferio\PycharmProjects\Banorte\venv\Scripts\python.exe
# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==39.1.0','console_scripts','easy_install-3.6'
__requires__ = 'setuptools==39.1.0'
import re
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('setuptools==39.1.0', 'console_scripts', 'easy_install-3.6')()
)
|
[
"47795404+feriosch@users.noreply.github.com"
] |
47795404+feriosch@users.noreply.github.com
|
d7b4a024eaa06f6f3213a1527629e074bed475ed
|
5185954d3e4a076b779522007148b8420ff3d30b
|
/freeze.py
|
c803becf9318a6a9b29946174616d8faf465bde6
|
[] |
no_license
|
wcraft/first-news-app
|
bdb0cec5e159a1cadce739752f4c383bf0ce2c10
|
5cd960ac04f2eda690aac2726be486b4421c84d3
|
refs/heads/master
| 2021-01-10T01:36:32.709958
| 2016-03-24T19:43:41
| 2016-03-24T19:43:41
| 53,678,967
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 269
|
py
|
from flask_frozen import Freezer
from app import app, get_csv
freezer = Freezer(app)
@freezer.register_generator
def detail():
for row in get_csv("./static/la-riots-deaths.csv"):
yield {'row_id': row['id']}
if __name__ == '__main__':
freezer.freeze()
|
[
"wcraft1204@gmail.com"
] |
wcraft1204@gmail.com
|
08e5d1a22b5e130fdb0e5d1100450e88632081a4
|
726a25e7bdc6e12645afcd00db693f2b561a4daa
|
/youtubeNet/load_YouTubeNet_model_to_predict.py
|
e2ac6deb62438f08a13aed14eef3517132a6ed62
|
[] |
no_license
|
13483910551/deep_ctr
|
5e6d6a24eac12422118890142b6ecf61a1e8df43
|
239abcb3a93dbd296c90ff827a9f761d0228f708
|
refs/heads/master
| 2022-11-12T06:04:13.557727
| 2020-06-29T10:44:55
| 2020-06-29T10:44:55
| 276,299,940
| 1
| 1
| null | 2020-07-01T06:50:54
| 2020-07-01T06:50:53
| null |
UTF-8
|
Python
| false
| false
| 3,344
|
py
|
#-*- coding:utf-8 -*-
import tensorflow as tf
import numpy as np
from tensorflow.keras.models import Model
from YouTubeNet import YouTubeNet
from data_generator import init_output
# 1. Load model
re_model = YouTubeNet()
re_model.load_weights('YouTubeNet_model.h5')
# 2. Load data
user_id, gender, age, occupation, zip, \
hist_movie_id, hist_len, pos_movie_id, neg_movie_id = init_output()
with open("test.txt", 'r') as f:
for line in f.readlines():
buf = line.strip().split('\t')
user_id.append(int(buf[0]))
gender.append(int(buf[1]))
age.append(int(buf[2]))
occupation.append(int(buf[3]))
zip.append(int(buf[4]))
hist_movie_id.append(np.array([int(i) for i in buf[5].strip().split(",")]))
hist_len.append(int(buf[6]))
pos_movie_id.append(int(buf[7]))
user_id = np.array(user_id, dtype='int32')
gender = np.array(gender, dtype='int32')
age = np.array(age, dtype='int32')
occupation = np.array(occupation, dtype='int32')
zip = np.array(zip, dtype='int32')
hist_movie_id = np.array(hist_movie_id, dtype='int32')
hist_len = np.array(hist_len, dtype='int32')
pos_movie_id = np.array(pos_movie_id, dtype='int32')
# 3. Generate user features for testing and full item features for retrieval
test_user_model_input = [user_id, gender, age, occupation, zip, hist_movie_id, hist_len]
all_item_model_input = list(range(0, 3706+1))
user_embedding_model = Model(inputs=re_model.user_input, outputs=re_model.user_embedding)
item_embedding_model = Model(inputs=re_model.item_input, outputs=re_model.item_embedding)
user_embs = user_embedding_model.predict(test_user_model_input)
item_embs = item_embedding_model.predict(all_item_model_input, batch_size=2 ** 12)
print(user_embs.shape)
print(item_embs.shape)
user_embs = np.reshape(user_embs, (-1, 64))
item_embs = np.reshape(item_embs, (-1, 64))
print(user_embs[:2])
"""
(6040, 1, 64)
(3707, 1, 64)
[[0. 0.84161407 0.5913373 1.4273984 0.3627409 0.3708319
0. 0. 1.1993251 2.023305 0. 0.
0. 0. 1.7670951 0.558543 1.0881244 1.7819335
0.6492757 2.6123888 0.3125449 0.36506268 0. 1.1256831
4.410721 1.7535956 0.52042466 1.4845431 0.4248005 0.
2.1689777 1.296214 1.1852415 0. 0. 0.43460703
1.927466 5.7313547 0. 0. 0. 0.36566824
2.012046 0. 0. 1.5223947 3.8016186 0.
0.34814402 1.909086 1.8206354 0.39664558 1.0465539 0.
1.8064818 0. 1.3177121 0.5385138 0. 2.6539533
0. 0. 0. 0. ]
[0.8107976 1.1632944 0. 0.53690577 1.0428483 1.2018232
3.4726145 2.21235 0. 0.1572555 0.97843236 0.
0. 0.99380946 0.76257807 0.05231025 1.6611706 0.0405544
0.9629851 1.3969578 1.9982753 0. 0.1676663 0.
0. 0.07090688 2.1441605 0.5842841 0.09379 0.
0. 0. 0.49283475 2.134187 0. 0.8167961
0. 0. 1.8054122 0. 0. 1.266642
2.730833 0. 0. 0.5958151 0. 1.2587492
0.08325796 0. 0.22326717 0.6559374 0.54102665 0.
1.0489423 0. 0.5308376 0.62447524 0. 0.
2.3295872 0. 2.5632188 1.3600256 ]]
(3707, 64)
"""
|
[
"wangdehua@360buyad.local"
] |
wangdehua@360buyad.local
|
7405dcae9c9ff0679f22af578de88618c8ccd5ee
|
42adb09d60cfca14a5beb1f581538d8d730d457c
|
/logic/weapon/Club.py
|
a292e9364387dabb0993e9705d5631aca337e91d
|
[] |
no_license
|
martinKindall/dungeon-game
|
70514e26b245c5208c1e4f4ba0adfd1c9463676f
|
95c6a66ae1c3f39aae5c0d006dbf3df23a61baa4
|
refs/heads/master
| 2022-06-01T15:10:06.675187
| 2020-04-30T01:53:22
| 2020-04-30T01:53:22
| 259,819,762
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 152
|
py
|
from logic.weapon.Weapon import Weapon
class Club(Weapon):
def getAttackPoints(self) -> int:
return 2
def __str__(self) -> str:
return "Club"
|
[
"mart256@gmail.com"
] |
mart256@gmail.com
|
f552c9dfa2e04cea58e9d077a133917bf59a3b5b
|
8a83b2b6e5906b28de898123d8a895727f1dd300
|
/ai/cf_ai/cf_action_eval_ai.py
|
94fd1bc7f3f3a8ffc0d5eea8e1deadf722523779
|
[] |
no_license
|
iamsure89/ticket_to_ride
|
bac86f45e2d1b03b12a90908fa0978a4996f8332
|
59ebcd65707faa4471c367fc7b5ae5852f0ad6d2
|
refs/heads/master
| 2022-06-23T07:53:29.154858
| 2016-12-17T21:45:53
| 2016-12-17T21:45:53
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 5,713
|
py
|
from random import randrange
import game.board as board
from game import Player, Game
from game.actions import *
from game.classes import Colors
from game.methods import find_paths_for_destinations
from cf_base_ai import CFBaseAI
class CFActionEvalAI(CFBaseAI):
"Evaluate Every Action Based on the cost function"
Destination_Threshold = 15
Wild_Card_Value = 2
Wild_Card_Cost = 9
Threat_Action_Weight = 0 # weight when combined with other cost
gui_debug = False
def __init__(self, name):
CFBaseAI.__init__(self, name)
self.remaining_edge_score = 0
self.threatened_edges = []
self.threatened_edges_score = []
def make_decision(self, game):
"""
Evaluate every available action and select the best
:param game:
:return:
"""
# update remaining edge score
self.remaining_edge_score = 0
for edge in self.remaining_edge:
self.remaining_edge_score += board.get_scoring()[edge.cost]
# evaluate the threaten edge first
self.eval_threatened_edges()
# decision making part
if not self.opponent_name:
self.opponent_name = game.get_opponents_name(self)
# calculate the value of each action
values = []
for action in self.available_actions:
value = self.eval_action(action)
values.append(value)
# if self.print_debug:
# print action, "has value", value
if self.print_debug:
self.print_cards_needed()
action = self.available_actions[values.index(max(values))]
self.action_history.append(action)
return action
def eval_threatened_edges(self):
# this will be implemented in combined AI
pass
def eval_action(self, action):
"""
Evaluate action based on path and cost function
:param action: the action to be evaluated
:return: the value of the action
"""
value = 0
if action.is_connect():
# add the score to the value first
# value += board.get_scoring()[action.edge.cost]
# add the value of threatened edge
# in CFAE this won't have any effect
if self.threatened_edges:
for id, edge in enumerate(self.threatened_edges):
if action.edge == edge:
value += self.threatened_edges_score[id] * self.Threat_Action_Weight
if self.print_debug:
print action
print '#### Threaten Action #####:', value
# if we have path, we double reward the action
if self.path is not None:
if action.edge in self.remaining_edge:
# intuition here is:
# when we just have a few edge remains, the action to claim those edge would be high
value += self.Wild_Card_Value + board.get_scoring()[action.edge.cost] \
+ self.path.score - self.remaining_edge_score
if self.print_debug:
print "Path action ", action
print "Before: ", value
else: # edge is not in path
# intuition here is if the we have path, and we may still claim it
# if it has higher score than the remaining destination
# value += board.get_scoring()[action.edge.cost] - self.path.cost
# intuition here is never claim other routes
value += -1
# subtract the cost of card using if we have a path
for card in action.cards.elements():
# if card is Wild card
if card == Colors.none:
value -= self.Wild_Card_Cost
else:
# if edge is gray, make sure it doesn't take the cards we need for other edge
if action.edge.color == Colors.none:
value -= self.cards_needed[card]
else: # if path is None
# when we don't have path, we better claim the best path that has the highest score
value += board.get_scoring()[action.edge.cost]
if action.edge in self.remaining_edge or action.edge in self.threatened_edges:
if self.print_debug:
print "After: ", value
return value
if action.is_draw_destination():
if self.info.destinations:
return -1
else: # if we don't have destination card
value = -self.Destination_Threshold + self.info.num_cars
return value
if action.is_draw_deck():
value += 1
return value
if action.is_draw_face_up():
if action.card == Colors.none:
value += self.Wild_Card_Value
else:
value += self.cards_needed[action.card]
if self.print_debug:
print action, " has value ", value
return value
def game_ended(self, game):
"""
end of the game, let's print some shit
:param game:
:return:
"""
if self.print_debug:
print "%s made decisions as below:" % self.name
for action in self.action_history:
print action
print "########\nDi:To cancel the action print in cf_action_eval_ai.py line 25-26\n#########\n"
# if self.gui is not None:
# self.gui.close()
|
[
"di.zeng@transcendrobotics.com"
] |
di.zeng@transcendrobotics.com
|
d6e1af3c1f70472c05f440c578e0bb66519b95d3
|
205d581673e3960c99e6b8fe1475efb661421cb3
|
/bikeshed/update/main.py
|
1be2b76b3f73f81060b4b4fa57d6141ebd24f5e6
|
[
"CC0-1.0"
] |
permissive
|
TBBle/bikeshed
|
08f9137f7a561d154720297b76ced061cdd6a04a
|
5834a15f311a639c0b59ff2edbf3a060391d15ff
|
refs/heads/master
| 2021-01-12T18:33:43.213471
| 2017-09-29T20:56:24
| 2017-09-29T20:56:24
| 81,327,888
| 0
| 0
| null | 2017-02-08T12:30:22
| 2017-02-08T12:30:21
| null |
UTF-8
|
Python
| false
| false
| 3,886
|
py
|
# -*- coding: utf-8 -*-
from __future__ import division, unicode_literals
import os
from . import updateCrossRefs
from . import updateBiblio
from . import updateCanIUse
from . import updateLinkDefaults
from . import updateTestSuites
from . import updateLanguages
from . import manifest
from .. import config
from ..messages import *
def update(anchors=False, biblio=False, caniuse=False, linkDefaults=False, testSuites=False, languages=False, path=None, dryRun=False, force=False):
if path is None:
path = config.scriptPath("spec-data")
# Update via manifest by default, falling back to a full update only if failed or forced.
if not force:
success = manifest.updateByManifest(path=path, dryRun=dryRun)
if not success:
say("Falling back to a manual update...")
force = True
if force:
# If all are False, update everything
updateAnyway = not (anchors or biblio or caniuse or linkDefaults or testSuites or languages)
if anchors or updateAnyway:
updateCrossRefs.update(path=path, dryRun=dryRun)
if biblio or updateAnyway:
updateBiblio.update(path=path, dryRun=dryRun)
if caniuse or updateAnyway:
updateCanIUse.update(path=path, dryRun=dryRun)
if linkDefaults or updateAnyway:
updateLinkDefaults.update(path=path, dryRun=dryRun)
if testSuites or updateAnyway:
updateTestSuites.update(path=path, dryRun=dryRun)
if languages or updateAnyway:
updateLanguages.update(path=path, dryRun=dryRun)
manifest.createManifest(path=path, dryRun=dryRun)
def fixupDataFiles():
'''
Checks the readonly/ version is more recent than your current mutable data files.
This happens if I changed the datafile format and shipped updated files as a result;
using the legacy files with the new code is quite bad!
'''
try:
localVersion = int(open(localPath("version.txt"), 'r').read())
except IOError:
localVersion = None
try:
remoteVersion = int(open(remotePath("version.txt"), 'r').read())
except IOError, err:
warn("Couldn't check the datafile version. Bikeshed may be unstable.\n{0}", err)
return
if localVersion == remoteVersion:
# Cool
return
# If versions don't match, either the remote versions have been updated
# (and we should switch you to them, because formats may have changed),
# or you're using a historical version of Bikeshed (ditto).
try:
for filename in os.listdir(remotePath()):
copyanything(remotePath(filename), localPath(filename))
except Exception, err:
warn("Couldn't update datafiles from cache. Bikeshed may be unstable.\n{0}", err)
return
def updateReadonlyDataFiles():
'''
Like fixupDataFiles(), but in the opposite direction --
copies all my current mutable data files into the readonly directory.
This is a debugging tool to help me quickly update the built-in data files,
and will not be called as part of normal operation.
'''
try:
for filename in os.listdir(localPath()):
if filename.startswith("readonly"):
continue
copyanything(localPath(filename), remotePath(filename))
except Exception, err:
warn("Error copying over the datafiles:\n{0}", err)
return
def copyanything(src, dst):
import shutil
import errno
try:
shutil.rmtree(dst, ignore_errors=True)
shutil.copytree(src, dst)
except OSError as exc:
if exc.errno in [errno.ENOTDIR, errno.EINVAL]:
shutil.copy(src, dst)
else:
raise
def localPath(*segs):
return config.scriptPath("spec-data", *segs)
def remotePath(*segs):
return config.scriptPath("spec-data", "readonly", *segs)
|
[
"jackalmage@gmail.com"
] |
jackalmage@gmail.com
|
93cc65a38af08b3fdc484d18995da04bb407aee2
|
a689be48a5b5d844fb196df95e1df8e91a3ce59e
|
/python/035. Search Insert Position/searchInsert.py
|
781bea8b68f8f46654f9b95b17b0a2820a389989
|
[] |
no_license
|
stevepomp/LeetCode
|
a923cb0f5af42e4449a922d8edabd289f43c5210
|
9b9f37fe573c8a6a6b3a00a34b2a4c9a7835c16e
|
refs/heads/master
| 2020-03-22T21:18:47.708688
| 2018-08-09T03:46:00
| 2018-08-09T03:46:00
| 140,676,259
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 517
|
py
|
'''
Given a sorted array and a target value, return the index if the target is found.
If not, return the index where it would be if it were inserted in order.
Input: [1,3,5,6], 5
Output: 2
Input: [1,3,5,6], 2
Output: 1
Input: [1,3,5,6], 7
Output: 4
Input: [1,3,5,6], 0
Output: 0
'''
class Solution:
def searchInsert(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: int
"""
bisect.insort(nums, target)
return nums.index(target)
|
[
"noreply@github.com"
] |
noreply@github.com
|
41387b0edba51a241184f0ce0eaf133c66de62b7
|
7c92b1e9faf4f7823373dfecfb5ad3a4e4840961
|
/s11b-rm-ko.py
|
429618006e3dbaa1c40a3d7f7cf3de090141d053
|
[
"BSD-3-Clause"
] |
permissive
|
CardiacModelling/AtrialLowK
|
7fcd9db47c4551db4decc9b8113abac07edcd9bf
|
c73a294de137c416eb6dbe5e57231206bcef9d86
|
refs/heads/main
| 2023-08-10T21:24:45.472769
| 2023-08-02T13:10:34
| 2023-08-02T13:10:34
| 196,734,580
| 0
| 0
|
BSD-3-Clause
| 2023-08-02T13:10:35
| 2019-07-13T15:05:19
|
Python
|
UTF-8
|
Python
| false
| false
| 2,921
|
py
|
#!/usr/bin/env python3
#
# Rm calculcations with different step sizes and durations
#
import os
import sys
import matplotlib.pyplot as plt
import matplotlib.gridspec
import myokit
import shared
# Get path for figure
fpath = shared.figure_dir()
fname = 'figure-s11b-rm-ko'
debug = 'debug' in sys.argv
shared.splash(fname)
# Create protocol
cl = 1000
protocol = myokit.pacing.blocktrain(cl, duration=0.5, offset=50)
# Load and prepare model
model = shared.model('voigt')
shared.prepare_model(model, protocol, pre_pace=not debug)
# Maximum time to show in plots
tmax = 800
# Time to pre-pace
pre_time = 1000
# Create figure
fig = plt.figure(figsize=(9, 11.6))
fig.subplots_adjust(0.07, 0.045, 0.92, 0.99, hspace=0.095, wspace=0.09)
grid = matplotlib.gridspec.GridSpec(7, len(shared.ko_levels))
def rm_plot(fig, i, j, model, protocol, simulation, color, t, v, dt, dv):
"""Plot AP and Rm"""
simulation.reset()
d = simulation.run(tmax, log=[t, v]).npview()
ax = fig.add_subplot(grid[i, j])
if i == 6:
ax.set_xlabel('Time (ms)')
else:
ax.set_xticklabels('')
if j == 0:
ax.set_ylabel('V (mV)')
else:
ax.set_yticklabels('')
ax.plot(pre_time + d.time(), d[v], color=color)
ax = ax.twinx()
if j == 3:
ax.set_ylabel('Rm (MOhm)')
ax.yaxis.set_label_position('right')
else:
ax.set_yticklabels('')
ax.set_ylim(0, 3000)
ax.text(0.95, 0.85, f'dt={dt} dv={dv}',
horizontalalignment='right',
fontdict={'size': 8},
transform=ax.transAxes)
if j == 0:
ax.text(0.95, 0.70, model.name(),
horizontalalignment='right',
fontdict={'size': 7},
transform=ax.transAxes)
if not debug:
ts, rs = shared.rm(model, protocol, dt, dv, tmax, simulation)
ax.plot(pre_time + ts, rs, color='tab:green', ls=':')
rs[rs < 0] = float('nan')
ax.plot(pre_time + ts, rs, color='tab:green', label=f'{dt}ms {dv}mV')
# Plot for all
for i, (k, c) in enumerate(zip(shared.ko_levels, shared.ko_colors)):
print(f'Adding plots for {k}mM')
t = model.time()
v = model.label('membrane_potential')
model.labelx('K_o').set_rhs(k)
s = myokit.Simulation(model, protocol)
s.set_tolerance(1e-8, 1e-8)
if pre_time:
s.pre(pre_time)
rm_plot(fig, 0, i, model, protocol, s, c, t, v, 5, 5)
rm_plot(fig, 1, i, model, protocol, s, c, t, v, 10, 5)
rm_plot(fig, 2, i, model, protocol, s, c, t, v, 20, 2)
rm_plot(fig, 3, i, model, protocol, s, c, t, v, 10, 10)
rm_plot(fig, 4, i, model, protocol, s, c, t, v, 0.1, 2)
rm_plot(fig, 5, i, model, protocol, s, c, t, v, 0.1, 5)
rm_plot(fig, 6, i, model, protocol, s, c, t, v, 0.1, 10)
# Show / store
path = os.path.join(fpath, fname)
print('Saving to ' + path)
plt.savefig(path + '.png')
plt.savefig(path + '.pdf')
print('Done')
|
[
"michael.clerx@nottingham.ac.uk"
] |
michael.clerx@nottingham.ac.uk
|
3183747cd1835046d97a500fd56fc5a714d8f69c
|
f90a30cfafc5d786a3dc269f3ca48dce3fc59028
|
/Payload_Types/apfell/mythic/agent_functions/iterm.py
|
94b35b48c3156d56770b68fba7a567e64efb0415
|
[
"BSD-3-Clause",
"MIT"
] |
permissive
|
NotoriousRebel/Mythic
|
93026df4a829b7b88de814e805fdce0ab19f3ab9
|
4576654af4025b124edb88f9cf9d0821f0b73070
|
refs/heads/master
| 2022-12-03T01:19:20.868900
| 2020-08-18T03:48:55
| 2020-08-18T03:48:55
| 288,780,757
| 1
| 0
|
NOASSERTION
| 2020-08-19T16:20:19
| 2020-08-19T16:20:18
| null |
UTF-8
|
Python
| false
| false
| 920
|
py
|
from CommandBase import *
import json
class ITermArguments(TaskArguments):
def __init__(self, command_line):
super().__init__(command_line)
self.args = {}
async def parse_arguments(self):
pass
class ITermCommand(CommandBase):
cmd = "iTerm"
needs_admin = False
help_cmd = "iTerm"
description = "Read the contents of all open iTerm tabs if iTerms is open, otherwise just inform the operator that it's not currently running"
version = 1
is_exit = False
is_file_browse = False
is_process_list = False
is_download_file = False
is_remove_file = False
is_upload_file = False
author = "@its_a_feature_"
attackmapping = ["T1139", "T1056"]
argument_class = ITermArguments
async def create_tasking(self, task: MythicTask) -> MythicTask:
return task
async def process_response(self, response: AgentResponse):
pass
|
[
"codybthomas@gmail.com"
] |
codybthomas@gmail.com
|
62f15e21cc7da0172f76ec0118796903115796ca
|
4944541b0cd0fa48a01581ffce5e7ce16f5cf8d7
|
/src/Backend/MbkExam/Notification/serializers.py
|
a64b1c49829f6af25ac8f32051e5c5e42e2348cb
|
[] |
no_license
|
aballah-chamakh/the_exam
|
49a5b5c9d28c61b2283f2d42d2b2fb771dd48bf4
|
dbbbdc7a955ca61572f26430a7788407eaf0c632
|
refs/heads/main
| 2023-03-28T13:19:18.148630
| 2021-04-03T22:12:51
| 2021-04-03T22:12:51
| 354,404,833
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 912
|
py
|
from rest_framework import serializers
from .models import AdminNotification,StudentNotification
class AdminNotificationSerializer(serializers.ModelSerializer):
student_username = serializers.CharField(source='student.user.username')
student_img = serializers.CharField(source="student.image.url")
student_slug = serializers.SlugField(source="student.slug")
student_email = serializers.CharField(source="student.user.email")
class Meta :
model = AdminNotification
fields = ('student_email','student_img','student_username',"student_slug",'event_type','event_msg','event_slug','datetime','viewed')
class StudentNotificationSerializer(serializers.ModelSerializer):
student_slug = serializers.SlugField(source="student.slug")
class Meta :
model = StudentNotification
fields = ('student_slug','event_type','event_msg','event_slug','datetime','viewed')
|
[
"chamakhabdallah8@gmail.com"
] |
chamakhabdallah8@gmail.com
|
5a1955b494c614d47f8fb98e8dfc46c8d5d321b8
|
18111180983ce2d2c0f3557741efbbc6234f2c36
|
/layers/modules/multibox_loss.py
|
4424e181c5cf8eb8a96a4edf667c880b8fb64947
|
[] |
no_license
|
bmemm/AP-MTL
|
61ba8f72a6fa9b70cf4cd1ed869f0bfa6b26f5f9
|
30470e818442a4383ed778fa164e79499aed9a9c
|
refs/heads/main
| 2023-08-01T22:42:38.400053
| 2021-09-11T00:45:51
| 2021-09-11T00:45:51
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 6,521
|
py
|
# -*- coding: utf-8 -*-
import torch
import torch.nn as nn
import torch.nn.functional as F
from torch.autograd import Variable
#from data import coco as cfg
#from data import *
from ..box_utils import match, log_sum_exp
class MultiBoxLoss(nn.Module):
"""SSD Weighted Loss Function
Compute Targets:
1) Produce Confidence Target Indices by matching ground truth boxes
with (default) 'priorboxes' that have jaccard index > threshold parameter
(default threshold: 0.5).
2) Produce localization target by 'encoding' variance into offsets of ground
truth boxes and their matched 'priorboxes'.
3) Hard negative mining to filter the excessive number of negative examples
that comes with using a large number of default bounding boxes.
(default negative:positive ratio 3:1)
Objective Loss:
L(x,c,l,g) = (Lconf(x, c) + αLloc(x,l,g)) / N
Where, Lconf is the CrossEntropy Loss and Lloc is the SmoothL1 Loss
weighted by α which is set to 1 by cross val.
Args:
c: class confidences,
l: predicted boxes,
g: ground truth boxes
N: number of matched default boxes
See: https://arxiv.org/pdf/1512.02325.pdf for more details.
"""
def __init__(self, num_classes, overlap_thresh, prior_for_matching,
bkg_label, neg_mining, neg_pos, neg_overlap, encode_target,
use_gpu=True):
super(MultiBoxLoss, self).__init__()
self.use_gpu = use_gpu
self.num_classes = num_classes
self.threshold = overlap_thresh
self.background_label = bkg_label
self.encode_target = encode_target
self.use_prior_for_matching = prior_for_matching
self.do_neg_mining = neg_mining
self.negpos_ratio = neg_pos
self.neg_overlap = neg_overlap
#cfg = instruments
self.variance = [0.1, 0.2]
def forward(self, predictions, targets):
"""Multibox Loss
Args:
predictions (tuple): A tuple containing loc preds, conf preds,
and prior boxes from SSD net.
conf shape: torch.size(batch_size,num_priors,num_classes)
loc shape: torch.size(batch_size,num_priors,4)
priors shape: torch.size(num_priors,4)
targets (tensor): Ground truth boxes and labels for a batch,
shape: [batch_size,num_objs,5] (last idx is the label).
"""
#print('self.num_classes',self.num_classes)
#print('predictions', predictions[0].size(),predictions[1].size(), predictions[2].size(), 'targets', np.array(targets).shape)
loc_data, conf_data, priors = predictions
#print('lol',loc_data)
num = loc_data.size(0) #batch
priors = priors[:loc_data.size(1), :]
#print('priors',len(priors))
num_priors = (priors.size(0)) #prior num 8732
num_classes = self.num_classes
#print('num_priors', num_priors)
# match priors (default boxes) and ground truth boxes
loc_t = torch.Tensor(num, num_priors, 4)
conf_t = torch.LongTensor(num, num_priors)
for idx in range(num):
# if targets[idx].nelement() == 0:
# print('target',targets[idx].size())
#print('num', num, len(targets))
#print('targets',targets[idx].size())
truths = targets[idx][:, :-1].data
#truths = targets[idx][:, :-1].data
#print(truths)
labels = targets[idx][:, -1].data
#print('labels',labels)
defaults = priors.data
#print('mobarakkkkkkkkkkkkk ',truths, self.variance, labels)
match(self.threshold, truths, defaults, self.variance, labels,loc_t, conf_t, idx)
if self.use_gpu:
loc_t = loc_t.cuda()
conf_t = conf_t.cuda()
# wrap targets
#print('conf_t match', conf_t.size(), conf_t.data.max(), num)
#print('loct', loc_t)
loc_t = Variable(loc_t, requires_grad=False)
conf_t = Variable(conf_t, requires_grad=False)
#print('loct', loc_t)
pos = conf_t > 0
num_pos = pos.sum(dim=1, keepdim=True)
#print('mobarak pos', pos)
# Localization Loss (Smooth L1)
# Shape: [batch,num_priors,4]
pos_idx = pos.unsqueeze(pos.dim()).expand_as(loc_data)
#print('mobarak pos_idx', pos)
loc_p = loc_data[pos_idx].view(-1, 4)
loc_t = loc_t[pos_idx].view(-1, 4)
#print('lol', loc_p, loc_t)
loss_l = F.smooth_l1_loss(loc_p, loc_t, size_average=False)
#print('loloo', loss_l)
# Compute max conf across batch for hard negative mining
#print('mobarak conf_data',conf_data.size(),conf_data)
batch_conf = conf_data.view(-1, self.num_classes)
#print('mobarak batch_conf', batch_conf.size(), batch_conf.data.max())
#print('mobarak conf_t', conf_t.size(), conf_t.data.max())
#print('mobarak conf_t.view(-1, 1)', conf_t.view(-1, 1).size(), conf_t.view(-1, 1).data.max())
batch_conf_gat = batch_conf.gather(1, conf_t.view(-1, 1))
#print('mobarak batch_conf_gat', batch_conf_gat.size(), batch_conf_gat)
loss_c = log_sum_exp(batch_conf) - batch_conf.gather(1, conf_t.view(-1, 1))
#print('mobarak loss_cccccc', loss_c)
# Hard Negative Mining
loss_c = loss_c.view(pos.size()[0], pos.size()[1]) # add line
loss_c[pos] = 0 # filter out pos boxes for now
loss_c = loss_c.view(num, -1)
_, loss_idx = loss_c.sort(1, descending=True)
_, idx_rank = loss_idx.sort(1)
num_pos = pos.long().sum(1, keepdim=True)
num_neg = torch.clamp(self.negpos_ratio * num_pos, max=pos.size(1) - 1)
neg = idx_rank < num_neg.expand_as(idx_rank)
# Confidence Loss Including Positive and Negative Examples
pos_idx = pos.unsqueeze(2).expand_as(conf_data)
neg_idx = neg.unsqueeze(2).expand_as(conf_data)
conf_p = conf_data[(pos_idx + neg_idx).gt(0)].view(-1, self.num_classes)
targets_weighted = conf_t[(pos + neg).gt(0)]
loss_c = F.cross_entropy(conf_p, targets_weighted, size_average=False)
# Sum of losses: L(x,c,l,g) = (Lconf(x, c) + αLloc(x,l,g)) / N
N = num_pos.data.sum().double()
loss_l = loss_l.double()
loss_c = loss_c.double()
loss_l /= N
loss_c /= N
return loss_l, loss_c
|
[
"mobarakol@u.nus.edu"
] |
mobarakol@u.nus.edu
|
4c800d767661ee69f80d462a929fd68be4f8b58f
|
a39dbda2d9f93a126ffb189ec51a63eb82321d64
|
/mongoengine/queryset/__init__.py
|
026a7acdd533719065dcc1c7c1955565b13d6f6f
|
[
"MIT"
] |
permissive
|
closeio/mongoengine
|
6e22ec67d991ea34c6fc96e9b29a9cbfa945132b
|
b083932b755a9a64f930a4a98b0129f40f861abe
|
refs/heads/master
| 2023-04-30T04:04:52.763382
| 2023-04-20T07:13:41
| 2023-04-20T07:13:41
| 5,533,627
| 21
| 5
|
MIT
| 2023-04-20T07:13:42
| 2012-08-23T23:02:20
|
Python
|
UTF-8
|
Python
| false
| false
| 525
|
py
|
from mongoengine.errors import (DoesNotExist, MultipleObjectsReturned,
InvalidQueryError, OperationError,
NotUniqueError)
from mongoengine.queryset.field_list import *
from mongoengine.queryset.manager import *
from mongoengine.queryset.queryset import *
from mongoengine.queryset.transform import *
from mongoengine.queryset.visitor import *
__all__ = (field_list.__all__ + manager.__all__ + queryset.__all__ +
transform.__all__ + visitor.__all__)
|
[
"ross.lawley@gmail.com"
] |
ross.lawley@gmail.com
|
5fda096a90541b4f8f01c8692ee9f34c6977c70a
|
b40a140a911279f3c61737367ab8f3b7c15fe98b
|
/avakas/get_parameters_file.py
|
6f6976a02b4d1dc3baa10e6796e10d3f55ed8aa2
|
[] |
no_license
|
AurelienNioche/HotellingBathtub
|
80fef9b4106454ec339a6c106c52738f1e95e77b
|
5b370a20b1d2417022fd2a6de8a7a4baeeda321e
|
refs/heads/master
| 2021-05-06T13:02:04.130850
| 2018-02-16T22:47:01
| 2018-02-16T22:47:01
| 113,213,538
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 222
|
py
|
import os
def get_parameters_file(i):
parameters_files = sorted(
[os.path.join("tasks", f)
for f in os.listdir("tasks") if os.path.isfile(os.path.join("tasks", f))])
return parameters_files[i]
|
[
"nioche.aurelien@gmail.com"
] |
nioche.aurelien@gmail.com
|
5f9505e1e1b70de95dcb28c6046a8d0e0f7887d4
|
99d268ebdbd2ace4f1d7a77287233f79d3e568a6
|
/ABC.py
|
174dd811d1789206877702fd869b7f2f1feb263a
|
[] |
no_license
|
hakannatayy/KutuphaneSqlite
|
9ed1ec1fdbf08059451f9c9d8ecde7df419e03ba
|
e5dbfd1b49c1edd0967d8395daa2dc3b645012ac
|
refs/heads/master
| 2020-06-19T22:12:50.218842
| 2019-07-14T23:39:15
| 2019-07-14T23:39:15
| 196,893,704
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 627
|
py
|
import sqlite3
db = sqlite3.connect("Kitaplar.sqlite")
imlec = db.cursor()
menu="""
[1] Kitap Ara
[2] Yazar Ara
"""
print(menu)
islem=input("işleminiz: ")
if islem =="1":
isim = input("Kitap Adı: ")
sorgu = "SELECT * FROM 'kitaplik' WHERE kitap = '{}'".format(isim)
imlec.execute(sorgu)
veriler = imlec.fetchall()
for i in veriler:
print(i)
if islem =="2":
isim = input("Yazar Adı: ")
sorgu = "SELECT * FROM 'kitaplik' WHERE yazar = '{}'".format(isim)
imlec.execute(sorgu)
veriler = imlec.fetchall()
for i in veriler:
print(i)
db.close()
|
[
"noreply@github.com"
] |
noreply@github.com
|
eb4921718ea76bd76fd0d09bef6d3040445b07fe
|
bfd6ac084fcc08040b94d310e6a91d5d804141de
|
/PulseSequences2/multi2d_test2.py
|
1609e844e7a2e84b959142d2d35d97635fe46e69
|
[] |
no_license
|
jqwang17/HaeffnerLabLattice
|
3b1cba747b8b62cada4467a4ea041119a7a68bfa
|
03d5bedf64cf63efac457f90b189daada47ff535
|
refs/heads/master
| 2020-12-07T20:23:32.251900
| 2019-11-11T19:26:41
| 2019-11-11T19:26:41
| 232,792,450
| 1
| 0
| null | 2020-01-09T11:23:28
| 2020-01-09T11:23:27
| null |
UTF-8
|
Python
| false
| false
| 671
|
py
|
import numpy as np
from common.devel.bum.sequences.pulse_sequence import pulse_sequence
from labrad.units import WithUnit as U
from treedict import TreeDict
from common.client_config import client_info as cl
from multi_test import multi_test
class multi2d_test2(pulse_sequence):
is_2dimensional = True
is_composite = True
show_params = ['NSY.pi_time']
scannable_params = {
'Heating.background_heating_time': [(0., 5000., 500., 'us'), 'current']
}
fixed_params = {'StateReadout.ReadoutMode':'pmt'}
sequence = multi_test
@classmethod
def run_finally(cls, cxn, parameter_dct, all_data, data_x):
return 0.1
|
[
"haeffnerlab@gmail.com"
] |
haeffnerlab@gmail.com
|
5c6ed42382f1049861f15353853dc3dcd95f30ef
|
bbd77439acd004b394552d59c2a4eb2293a76387
|
/jam_ro/execute.py
|
cf88d32702ac6cca8bb4755154c7a4af3da496a2
|
[
"BSD-3-Clause",
"BSD-2-Clause"
] |
permissive
|
platipusica/jampy-demo
|
e041833d18df47ab8a3c8193e9a6c8695b686d7c
|
ecd30c028b66ede4672a951c93d6d60aca1bba39
|
refs/heads/master
| 2022-12-08T21:41:47.425379
| 2022-12-07T02:45:15
| 2022-12-07T02:45:15
| 135,378,069
| 6
| 4
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 6,682
|
py
|
from __future__ import division
import sys, os
import datetime
import traceback
from werkzeug._compat import string_types
from .common import consts, error_message
def execute_select(cursor, db_module, command):
# ~ print('')
# ~ print(command)
try:
cursor.execute(command)
except Exception as x:
consts.app.log.exception(error_message(x))
# ~ print('\nError: %s\n command: %s' % (str(x), command))
raise
return db_module.process_sql_result(cursor.fetchall())
def execute(cursor, command, params=None):
# ~ print('')
# ~ print(command)
# ~ print(params)
try:
if params:
cursor.execute(command, params)
else:
cursor.execute(command)
except Exception as x:
consts.app.log.exception(error_message(x))
# ~ print('\nError: %s\n command: %s\n params: %s' % (str(x), command, params))
raise
def execute_command(cursor, db_module, command, params=None, select=False):
if select:
result = execute_select(cursor, db_module, command)
else:
result = execute(cursor, command, params)
return result
def process_delta(cursor, db_module, delta, master_rec_id, result):
ID, sqls = delta
result['ID'] = ID
changes = []
result['changes'] = changes
for sql in sqls:
(command, params, info, h_sql, h_params, h_del_details), details = sql
if h_del_details:
for d_select, d_sql, d_params in h_del_details:
ids = execute_select(cursor, db_module, d_select)
for i in ids:
d_params[1] = i[0]
execute(cursor, d_sql, db_module.process_sql_params(d_params, cursor))
if info:
rec_id = info.get('pk')
inserted = info.get('inserted')
if inserted:
master_pk_index = info.get('master_pk_index')
if master_pk_index:
params[master_pk_index] = master_rec_id
pk_index = info.get('pk_index')
gen_name = info.get('gen_name')
if not rec_id and db_module.get_lastrowid is None and gen_name and \
not pk_index is None and pk_index >= 0:
next_sequence_value_sql = db_module.next_sequence_value_sql(gen_name)
if next_sequence_value_sql:
cursor.execute(next_sequence_value_sql)
rec = cursor.fetchone()
rec_id = rec[0]
params[pk_index] = rec_id
if params:
params = db_module.process_sql_params(params, cursor)
if command:
before = info.get('before_command')
if before:
execute(cursor, before)
execute(cursor, command, params)
after = info.get('after_command')
if after:
execute(cursor, after)
if inserted and not rec_id and db_module.get_lastrowid:
rec_id = db_module.get_lastrowid(cursor)
result_details = []
if rec_id:
changes.append({'log_id': info['log_id'], 'rec_id': rec_id, 'details': result_details})
for detail in details:
result_detail = {}
result_details.append(result_detail)
process_delta(cursor, db_module, detail, rec_id, result_detail)
elif command:
execute(cursor, command, params)
if h_sql:
if not h_params[1]:
h_params[1] = rec_id
h_params = db_module.process_sql_params(h_params, cursor)
execute(cursor, h_sql, h_params)
def execute_delta(cursor, db_module, command, params, delta_result):
delta = command['delta']
process_delta(cursor, db_module, delta, None, delta_result)
def execute_list(cursor, db_module, command, delta_result, params, select):
res = None
for com in command:
command_type = type(com)
if command_type in string_types:
res = execute_command(cursor, db_module, com, params, select)
elif command_type == dict:
res = execute_delta(cursor, db_module, com, params, delta_result)
elif command_type == list:
res = execute_list(cursor, db_module, com, delta_result, params, select)
elif command_type == tuple:
res = execute_command(cursor, db_module, com[0], com[1], select)
elif not com:
pass
else:
raise Exception('server_classes execute_list: invalid argument - command: %s' % command)
return res
def execute_sql_connection(connection, command, params, select, db_module, close_on_error=False, autocommit=True):
delta_result = {}
result = None
error = None
info = ''
try:
cursor = connection.cursor()
command_type = type(command)
if command_type in string_types:
result = execute_command(cursor, db_module, command, params, select)
elif command_type == dict:
res = execute_delta(cursor, db_module, command, params, delta_result)
elif command_type == list:
result = execute_list(cursor, db_module, command, delta_result, params, select)
else:
result = execute_command(cursor, db_module, command, params, select)
if autocommit:
if select:
connection.rollback()
else:
connection.commit()
if delta_result:
result = delta_result
except Exception as x:
try:
if connection:
connection.rollback()
if close_on_error:
connection.close()
error = str(x)
if not error:
error = 'SQL execution error'
traceback.print_exc()
finally:
if close_on_error:
connection = None
finally:
result = connection, (result, error)
return result
def execute_sql(db_module, db_server, db_database, db_user, db_password,
db_host, db_port, db_encoding, connection, command,
params=None, select=False):
if connection is None:
try:
connection = db_module.connect(db_database, db_user, db_password, db_host, db_port, db_encoding, db_server)
except Exception as x:
consts.app.log.exception(error_message(x))
# ~ print(str(x))
return None, (None, str(x))
return execute_sql_connection(connection, command, params, select, db_module, close_on_error=True)
|
[
"dbabic"
] |
dbabic
|
b2a641f6cfdf9e6783620ae9de8ec4a54e4811f0
|
562a487181ba6605dd119ba7fb14f3ee7e4b0832
|
/CSE_231/Lab/Lab 9/lab09a.py
|
962322851fca48f296e96809c56cffeb322ec31a
|
[] |
no_license
|
JudeJang7/CSE_231
|
d25930ff9c43e909dfff4fc483cdf4c893286d87
|
a91148d843cecab908357fda8d3ec8fd59faa365
|
refs/heads/master
| 2020-04-05T01:11:14.994327
| 2018-11-06T18:12:49
| 2018-11-06T18:12:49
| 156,426,928
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,501
|
py
|
import string
def build_word_set( input_file ):
word_set = set()
for line in input_file:
# Making a list of every word in the line
word_lst = line.strip().split()
# Puts all of the word in lower case and gets rid of all punctuation
word_lst = [w.lower().strip(string.punctuation) for w in word_lst]
for word in word_lst:
if word != "":
# If the world is not an empty string, add it to the set of words
word_set.add( word )
return word_set
def compare_files( file1, file2 ):
# Build two sets:
# all of the unique words in file1
# all of the unique words in file2
set1 = build_word_set(file1)
set2 = build_word_set(file2)
# Display the total number of unique words between the
# two files. If a word appears in both files, it should
# only be counted once.
unique_word_count = set1 | set2
print("Total unique words:", len(unique_word_count))
# Display the number of unique words which appear in both
# files. A word should only be counted if it is present in
# both files.
unique_word_in_both_count = set1 & set2
print("Unique words that appear in both files:", len(unique_word_in_both_count))
######################################################################
f1 = open( "document1.txt" )
f2 = open( "document2.txt" )
compare_files( f1, f2 )
f1.close()
f2.close()
|
[
"noreply@github.com"
] |
noreply@github.com
|
18a8a1313433d0b60915c2d10c7992f7f4edbf22
|
b9264524ecfa5e3607ee8d70b8b60eb9090c26d2
|
/.github/scripts/core_checker.py
|
f02f4f7bc5789e2dab38f722d8da08ce8d37b0a8
|
[
"MIT"
] |
permissive
|
kilograham/FreeRTOS
|
884fe99a520616796e29aa4fdb0f0c4f6f641756
|
e117bdcd178c4074fd0d255958487807a7b50032
|
refs/heads/main
| 2023-06-10T21:22:00.915782
| 2021-05-07T22:15:00
| 2021-05-07T22:15:00
| 366,805,094
| 2
| 1
|
MIT
| 2021-05-12T17:57:40
| 2021-05-12T17:57:39
| null |
UTF-8
|
Python
| false
| false
| 5,879
|
py
|
#!/usr/bin/env python3
# python >= 3.4
import os
from common.header_checker import HeaderChecker
#--------------------------------------------------------------------------------------------------
# CONFIG
#--------------------------------------------------------------------------------------------------
FREERTOS_IGNORED_EXTENSIONS = [
'.1',
'.ASM',
'.C',
'.DSW',
'.G_C',
'.H',
'.Hbp',
'.IDE',
'.LIB',
'.Opt',
'.PC',
'.PRM',
'.TXT',
'.URL',
'.UVL',
'.Uv2',
'.a',
'.ac',
'.am',
'.atsln',
'.atstart',
'.atsuo',
'.bash',
'.bat',
'.bbl',
'.bit',
'.board',
'.bsb',
'.bsdl',
'.bts',
'.ccxml',
'.cdkproj',
'.cdkws',
'.cfg',
'.cgp',
'.cmake',
'.cmd',
'.config',
'.cpp',
'.cproj',
'.crun',
'.css',
'.csv',
'.custom_argvars',
'.cxx',
'.cydwr',
'.cyprj',
'.cysch',
'.dat',
'.datas',
'.db',
'.dbgdt',
'.dep',
'.dni',
'.dnx',
'.doc',
'.dox',
'.doxygen',
'.ds',
'.dsk',
'.dtd',
'.dts',
'.elf',
'.env_conf',
'.ewd',
'.ewp',
'.ewt',
'.eww',
'.exe',
'.filters',
'.flash',
'.fmt',
'.ftl',
'.gdb',
'.gif',
'.gise',
'.gld',
'.gpdsc',
'.gui',
'.h_from_toolchain',
'.hdf',
'.hdp',
'.hex',
'.hist',
'.history',
'.hsf',
'.htm',
'.html',
'.hwc',
'.hwl',
'.hwp',
'.hws',
'.hzp',
'.hzs',
'.i',
'.icf',
'.ide',
'.idx',
'.in',
'.inc',
'.include',
'.index',
'.inf',
'.ini',
'.init',
'.ipcf',
'.ise',
'.jlink',
'.json',
'.la',
'.launch',
'.lcf',
'.lds',
'.lib',
'.lk1',
'.lkr',
'.lm',
'.lo',
'.lock',
'.lsl',
'.lst',
'.m4',
'.mac',
'.make',
'.map',
'.mbt',
'.mcp',
'.mcpar',
'.mcs',
'.mcw',
'.md',
'.mdm',
'.mem',
'.mhs',
'.mk',
'.mk1',
'.mmi',
'.mrt',
'.mss',
'.mtpj',
'.nav',
'.ntrc_log',
'.opa',
'.opb',
'.opc',
'.opl',
'.opt',
'.opv',
'.out',
'.pack',
'.par',
'.patch',
'.pbd',
'.pdsc',
'.pe',
'.pem',
'.pgs',
'.pl',
'.plg',
'.png',
'.prc',
'.pref',
'.prefs',
'.prj',
'.properties',
'.ps1',
'.ptf',
'.py',
'.r79',
'.rapp',
'.rc',
'.reggroups',
'.reglist',
'.resc',
'.resources',
'.rom',
'.rprj',
'.s79',
'.s82',
'.s90',
'.sc',
'.scf',
'.scfg',
'.script',
'.sct',
'.scvd',
'.session',
'.sfr',
'.sh',
'.shtml',
'.sig',
'.sln',
'.spec',
'.stf',
'.stg',
'.suo',
'.sup',
'.svg',
'.tags',
'.tcl',
'.tdt',
'.template',
'.tgt',
'.tps',
'.tra',
'.tree',
'.tws',
'.txt',
'.ucf',
'.url',
'.user',
'.ut',
'.uvmpw',
'.uvopt',
'.uvoptx',
'.uvproj',
'.uvprojx',
'.vcproj',
'.vcxproj',
'.version',
'.webserver',
'.wpj',
'.wsdt',
'.wsp',
'.wspos',
'.wsx',
'.x',
'.xbcd',
'.xcl',
'.xise',
'.xml',
'.xmp',
'.xmsgs',
'.xsl',
'.yml',
'.md',
'.zip'
]
FREERTOS_IGNORED_PATTERNS = [
r'.*\.git.*',
r'.*mbedtls_config\.h.*',
r'.*mbedtls_config\.h.*',
r'.*CMSIS.*',
r'.*/makefile',
r'.*/Makefile',
r'.*/trcConfig\.h.*',
r'.*/trcConfig\.c.*',
r'.*/trcSnapshotConfig\.h.*'
]
FREERTOS_IGNORED_FILES = [
'fyi-another-way-to-ignore-file.txt',
'mbedtls_config.h',
'requirements.txt',
'run-cbmc-proofs.py',
'.editorconfig',
'lcovrc',
'htif.c', 'htif.h'
]
FREERTOS_HEADER = [
'/*\n',
' * FreeRTOS V202104.00\n',
' * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n',
' *\n',
' * Permission is hereby granted, free of charge, to any person obtaining a copy of\n',
' * this software and associated documentation files (the "Software"), to deal in\n',
' * the Software without restriction, including without limitation the rights to\n',
' * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\n',
' * the Software, and to permit persons to whom the Software is furnished to do so,\n',
' * subject to the following conditions:\n',
' *\n',
' * The above copyright notice and this permission notice shall be included in all\n',
' * copies or substantial portions of the Software.\n',
' *\n',
' * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n',
' * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\n',
' * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\n',
' * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n',
' * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n',
' * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n',
' *\n',
' * https://www.FreeRTOS.org\n',
' * https://github.com/FreeRTOS\n',
' *\n',
' */\n',
]
def main():
parser = HeaderChecker.configArgParser()
args = parser.parse_args()
# Configure the checks then run
checker = HeaderChecker(FREERTOS_HEADER)
checker.ignoreExtension(*FREERTOS_IGNORED_EXTENSIONS)
checker.ignorePattern(*FREERTOS_IGNORED_PATTERNS)
checker.ignoreFile(*FREERTOS_IGNORED_FILES)
checker.ignoreFile(os.path.split(__file__)[-1])
rc = checker.processArgs(args)
if rc:
checker.showHelp(__file__)
return rc
if __name__ == '__main__':
exit(main())
|
[
"noreply@github.com"
] |
noreply@github.com
|
f58ab100b7516d0f0afa1a0daff5254a61b54ada
|
eeb609b8555a4ac6b948c5ce2485a12a88ad2c4b
|
/app_calendar/views.py
|
0c73d3b88588054b4b49ea2e17cbd1509693954f
|
[] |
no_license
|
Karasevgen1205/The_calendar
|
ab99b99ecc358024c0b49c90d457c0c10d04e577
|
c90ab3fbf9f113379b12f6b255ccda100d7241b0
|
refs/heads/master
| 2023-03-12T00:59:22.492732
| 2021-03-01T19:33:56
| 2021-03-01T19:33:56
| 332,513,739
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 2,009
|
py
|
import django_filters
import holidays
from django.http import request
from django.shortcuts import render
from django_filters.rest_framework import DjangoFilterBackend, FilterSet, BaseInFilter, CharFilter, RangeFilter
from ics import Calendar, Event
from rest_framework.generics import ListAPIView, UpdateAPIView, CreateAPIView
from rest_framework.viewsets import ModelViewSet
from app_calendar.models import Holiday, Country
from app_calendar.serializer import CountrySerializer, EventSerializer, UserSerializer, \
HolidaySerializerRead, HolidaySerializerWrite
class ListCountries(ListAPIView):
serializer_class = CountrySerializer
# queryset = Country.objects.all()
# filter_backends = (DjangoFilterBackend)
# filter_fields = ['name']
def get_queryset(self):
# if self.kwargs.get('name'):
# return Country.objects.filter(name=self.kwargs.get('name'))
return Country.objects.all()
class CountryViewSet(ListAPIView):
serializer_class = CountrySerializer
queryset = Country.objects.all()
filter_backends = (DjangoFilterBackend)
filter_fields = ['name']
# class CharFilterInFilter(BaseInFilter, CharFilter):
# pass
#
# class CountryFilter(FilterSet):
# name = CharFilterInFilter(field_name='country__name', lookup_expr='in')
# id = RangeFilter()
#
# class Meta:
# model = Country
# fields = ['id', 'name']
class ListHolidays(ListAPIView):
serializer_class = HolidaySerializerRead
def get_queryset(self):
# if self.kwargs.get('id'):
# return Holiday.objects.filter(id=self.kwargs.get('id'))
return Holiday.objects.all()
class ListCountryHolidays(ListAPIView):
serializer_class = HolidaySerializerRead
def get_queryset(self):
if self.kwargs.get('id'):
return Holiday.objects.filter(country=self.kwargs.get('id'))
return Holiday.objects.all()
class CreateHolidays(CreateAPIView):
serializer_class = HolidaySerializerWrite
|
[
"Karasevgen1205@yandex.ru"
] |
Karasevgen1205@yandex.ru
|
7c238c319c6f6d8ba62cadcb28faf56b3f32ab3b
|
b3c47795e8b6d95ae5521dcbbb920ab71851a92f
|
/AtCoder/AtCoder Beginner Contest 247/B.py
|
973864707113b363529868eab237a721c0f7de7b
|
[
"LicenseRef-scancode-warranty-disclaimer"
] |
no_license
|
Wizmann/ACM-ICPC
|
6afecd0fd09918c53a2a84c4d22c244de0065710
|
7c30454c49485a794dcc4d1c09daf2f755f9ecc1
|
refs/heads/master
| 2023-07-15T02:46:21.372860
| 2023-07-09T15:30:27
| 2023-07-09T15:30:27
| 3,009,276
| 51
| 23
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 954
|
py
|
from collections import defaultdict
n = int(raw_input())
d1 = defaultdict(int)
d2 = defaultdict(int)
names = []
for i in xrange(n):
name1, name2 = raw_input().split()
d1[name1] += 1
d2[name2] += 1
names.append((name1, name2))
flag = True
for (name1, name2) in names:
if name1 == name2:
if d1[name1] > 1 or d2[name1] > 1:
flag = False
break
else:
if ((d1[name1] <= 1 and d2[name1] == 0) or
(d1[name2] == 0 and d2[name2] <= 1)):
pass
else:
flag = False
break
if flag:
print 'Yes'
else:
print 'No'
'''
^^^^TEST^^^^
3
tanaka taro
tanaka jiro
suzuki hanako
-----
Yes
$$$TEST$$$
^^^^TEST^^^^
3
aaa bbb
xxx aaa
bbb yyy
-----
No
$$$TEST$$$
^^^^TEST^^^^
2
tanaka taro
tanaka taro
-----
No
$$$TEST$$$
^^^^TEST^^^^
3
takahashi chokudai
aoki kensho
snu ke
-----
Yes
$$$TEST$$$
^^^^TEST^^^^
3
a a
b b
c a
-----
No
$$$TEST$$$
'''
|
[
"noreply@github.com"
] |
noreply@github.com
|
5d2b4dfaf7911d6060185e33b0f2355572409db8
|
9137e1b185c5588f6e5f057a2a23f85aaa53ffcb
|
/time.py
|
7d3770849e29989662a33eb6c90de6916c0563f5
|
[] |
no_license
|
jslijb/python3.x
|
e8335078cab08939984fb88261aea96f957f4886
|
5675c2cd23b3b9ac63ac13dffb02a8fa3c41b95b
|
refs/heads/master
| 2021-09-02T23:23:23.109466
| 2018-01-04T03:13:55
| 2018-01-04T03:13:55
| 114,987,618
| 1
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,301
|
py
|
# Countdown using Tkinter
from Tkinter import *
import time
import tkMessageBox
class App:
def __init__(self,master):
frame = Frame(master)
frame.pack()
self.entryWidget = Entry(frame)
self.entryWidget["width"] = 15
self.entryWidget.pack(side=LEFT)
self.hi_there = Button(frame,text="Start",command=self.start)
self.hi_there.pack(side=LEFT)
self.button = Button(frame,text="QUIT",fg="red",command=frame.quit)
self.button.pack(side=LEFT)
def start(self):
text = self.entryWidget.get().strip()
if text != "":
num = int(text)
self.countDown(num)
def countDown(self,seconds):
lbl1.config(bg='yellow')
lbl1.config(height=3, font=('times',20,'bold'))
for k in range(seconds, 0, -1):
lbl1["text"] = k
root.update()
time.sleep(1)
lbl1.config(bg='red')
lbl1.config(fg='white')
lbl1["text"] = "Time up!"
tkMessageBox.showinfo("Time up!","Time up!")
def GetSource():
get_window = Tkinter.Toplevel(root)
get_window.title('Source File?')
Tkinter.Entry(get_window, width=30,
textvariable=source).pack()
Tkinter.Button(get_window, text="Change",
command=lambda: update_specs()).pack()
root = Tk()
root.title("Countdown")
lbl1 = Label()
lbl1.pack(fill=BOTH, expand=1)
app = App(root)
root.mainloop()
|
[
"jslijb@126.com"
] |
jslijb@126.com
|
da0f752f37d66f5033607317460320c51b7d99e2
|
91d1a6968b90d9d461e9a2ece12b465486e3ccc2
|
/ec2_write_f/vpc_create.py
|
72acec139ecc5774ba67c1d8199de44fc116c546
|
[] |
no_license
|
lxtxl/aws_cli
|
c31fc994c9a4296d6bac851e680d5adbf7e93481
|
aaf35df1b7509abf5601d3f09ff1fece482facda
|
refs/heads/master
| 2023-02-06T09:00:33.088379
| 2020-12-27T13:38:45
| 2020-12-27T13:38:45
| 318,686,394
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 588
|
py
|
#!/usr/bin/python
# -*- codding: utf-8 -*-
import os
import sys
sys.path.append(os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
from common.execute_command import write_parameter
# url : https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-instances.html
if __name__ == '__main__':
"""
delete-vpc : https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/delete-vpc.html
describe-vpcs : https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-vpcs.html
"""
write_parameter("ec2", "create-vpc")
|
[
"hcseo77@gmail.com"
] |
hcseo77@gmail.com
|
8987a79b8238e079d6527786951d545fffd1ab1c
|
f1614f3531701a29a33d90c31ab9dd6211c60c6b
|
/test/menu_sun_integration/infrastructure/aws/sqs/mocks/customer_mock.py
|
a7b78f7010ca6a18c5de255b002fa7e7ea1d8312
|
[] |
no_license
|
pfpacheco/menu-sun-api
|
8a1e11543b65db91d606b2f3098847e3cc5f2092
|
9bf2885f219b8f75d39e26fd61bebcaddcd2528b
|
refs/heads/master
| 2022-12-29T13:59:11.644409
| 2020-10-16T03:41:54
| 2020-10-16T03:41:54
| 304,511,679
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 4,321
|
py
|
def mock_queue_make_api_call(self, operation_name, kwarg):
if operation_name == 'SendMessage':
return {'MD5OfMessageBody': 'a836c42e687e8a08e66a794a5dacd8c1',
'MessageId': '85e8a505-2ba4-4fa3-a93c-cc30bf5e65e7',
'ResponseMetadata': {'RequestId': '7313c686-bca3-5d79-9295-90a51d270c9c',
'HTTPStatusCode': 200,
'HTTPHeaders': {
'x-amzn-requestid': '7313c686-bca3-5d79-9295-90a51d270c9c',
'date': 'Fri, 18 Oct 2019 11:17:24 GMT',
'content-type': 'text/xml', 'content-length': '378'},
'RetryAttempts': 0}}
if operation_name == 'ReceiveMessage':
return {'Messages': [{'MessageId': '92de7972-f8e5-4998-a182-3977455f8cb0',
'ReceiptHandle': 'AQEBWvhuG9mMCVO0LE7k'
'+flexfAzfGFn4yGRI5Xm60pwu1RwlGot4GqWveL1tOYmUTM63bwR+OFj5CL'
'/e1ZchKlZ0DTF6rc9Q+pyNdbIKckaVrfgbYySsZDkr68AtoWzFoIf0U68SUO83ys0ydK'
'+TSHgpw38zKICpupwccqe67HDu2Vve6ATFtjHa10+w3fU6l63NRFnmNeDjuDw'
'/uq86s0puouRFHQmoeNlLg'
'/5wjlT1excIDKxlIvJFBoc420ZgxulvIOcblqUxcGIG6Ah6x3aJw27q14vT'
'+0wRi9aoQ8dG0ys57OeWjlRRG3UII1J5uiShet9F15CKF3GZatNEZOOXkIqdQO'
'+lMHIhwMt7wls2EMtVO4KFIdWokzIFhidzfAHMTANCoAD26gUsp2Z9UyZaA==',
'MD5OfBody': 'a836c42e687e8a08e66a794a5dacd8c1',
'Body': '{"integration_type": "BRF","seller_id": 1,"seller_code": "ABC",'
'"document": "00005234000121",'
'"cep": "09185030",'
'"credit_limit": "103240.72",'
'"customer_id": "1",'
'"payment_terms":['
'{"deadline": 5,"description": "Payment 5","payment_type": "BOLETO"},'
'{"deadline": 10,"description": "Payment 10","payment_type": "CHEQUE"}],'
'"seller_metafields": [{"namespace": "CODIGO_PAGAMENTO","key": "BOLETO_7",'
'"value": "007"},{"namespace": "CODIGO_PAGAMENTO","key": "BOLETO_14",'
'"value": "014"}],'
'"customer_metafields": [{"namespace": "Customer Namespace 1",'
'"key": "Customer Key 1",'
'"value": "Customer VALUE 1"},{"namespace": "Customer Namespace 2",'
'"key": "Customer Key 2","value": "Customer VALUE 2"}]}'},
],
'ResponseMetadata': {'RequestId': '0ffbdfb3-809f-539e-84dd-899024785f25',
'HTTPStatusCode': 200,
'HTTPHeaders': {
'x-amzn-requestid': '0ffbdfb3-809f-539e-84dd-899024785f25',
'date': 'Fri, 18 Oct 2019 11:31:51 GMT',
'content-type': 'text/xml',
'content-length': '892'}, 'RetryAttempts': 0}}
if operation_name == 'DeleteMessage':
return {'MD5OfMessageBody': 'a836c42e687e8a08e66a794a5dacd8c1',
'ResponseMetadata': {'RequestId': '7313c686-bca3-5d79-9295-90a51d270c9c',
'HTTPStatusCode': 200,
'HTTPHeaders': {
'x-amzn-requestid': '7313c686-bca3-5d79-9295-90a51d270c9c',
'date': 'Fri, 18 Oct 2019 11:17:24 GMT',
'content-type': 'text/xml', 'content-length': '378'},
'RetryAttempts': 0}}
|
[
"pfpacheco@gmail.com"
] |
pfpacheco@gmail.com
|
ad62e62ad82ee0af317cf8a52a60259baf388df5
|
5be744f908ea25bd5442dfb4cb8a24a0d7941e14
|
/projects/admin.py
|
c8920bf36677cf7e0c9cc134b005263cc4b8b0d0
|
[] |
no_license
|
CalebMuhia/JobsBoard
|
f986d7c4af939dded0a3e2f8305a444f3502bad3
|
66c40dd5151261bc7e4fb8309a6139d11604f215
|
refs/heads/master
| 2022-07-07T22:49:06.733313
| 2022-06-23T20:52:20
| 2022-06-23T20:52:20
| 4,616,096
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 154
|
py
|
__author__ = 'caleb'
from django.contrib import admin
from projects.models import *
admin.site.register(Project_categories)
admin.site.register(Projects)
|
[
"clbnjoroge@gmail.com"
] |
clbnjoroge@gmail.com
|
c8dfde3b6b267ec0e287ec27c1758df7672a6ea0
|
6050eb3d2b7833ac918440539b243a3456164de5
|
/start.py
|
f810e05f34956c350b5c783a0deb3bba107bcfe0
|
[] |
no_license
|
Ma-Min-Min/tiide
|
56f1dfe2294d909b5cf03c8f5eed78c21f4be02b
|
c8eb57032579ba442173c388abc55b2e1148cbc3
|
refs/heads/master
| 2020-03-19T12:18:19.091235
| 2018-06-13T16:34:23
| 2018-06-13T16:34:23
| 136,508,098
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 233
|
py
|
from flask import Flask
myapp = Flask(__name__)
@myapp.route("/")
def hello():
return "Hello World"
@myapp.route("/tiide")
def tiide():
return "Welcome to TIIDE World"
if __name__=="__main__":
app.run()
|
[
"minmin12697@gmail.com"
] |
minmin12697@gmail.com
|
464e3a6a337dc9407f02ce39e571e1809949a6a1
|
a719b8d93e0517badd0d9c3c61c7e3149fb80b46
|
/exhaustive_search.py
|
38e7219edf5abd2c29d6cd6ef898a61c60c08c02
|
[] |
no_license
|
srishilesh/Optimization_Algorithms
|
01b9a8648b788b87a443ef07299b44ecb74a8791
|
ff688e5a90b7d32844bbef2b7e3fcdd51d33bdc4
|
refs/heads/master
| 2020-08-05T12:40:31.154220
| 2019-10-03T06:17:01
| 2019-10-03T06:17:01
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 609
|
py
|
print("\n *** EXHAUSTIVE SEARCH METHOD *** \n")
a = int(input("Enter the lower bound : "))
b = int(input("Enter the upper bound : "))
n = int(input("Enter the number of steps : "))
def func(x):
if(x!=0):
f = (x*x) + (54/x)
else:
f = 100000
return f
cx = (b-a)/n
x1 = a
x2 = x1 + cx
x3 = x2 + cx
f = 0
while(True):
if(func(x1)>=func(x2) and func(x2)<=func(x3)):
f = 1
break
else:
f = 0
x1 = x2
x2 = x3
x3 = x2 + cx
if(f==1):
print("Minimum lies between {} and {} ".format(x1,x3))
else:
print("Minimum not found")
|
[
"noreply@github.com"
] |
noreply@github.com
|
0615c365276b7014f1b2c30106aefa87169532e2
|
20190c7bfbb96819ae707c0c0dd36d4628bd7661
|
/cons.py
|
6a73ceda7a3c7f2a81f2065d832dc58db9f7faf6
|
[] |
no_license
|
Jananisathya/jananisathya
|
f2ccea6da30ee70a780ce8410ec6c2cd4bf90ea0
|
e6b38d860d93690a9176a679a47cd1fa76043412
|
refs/heads/master
| 2020-06-29T20:47:23.069326
| 2020-01-07T04:22:20
| 2020-01-07T04:22:20
| 200,620,459
| 4
| 1
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 220
|
py
|
ch = input("Enter Character : ")
if(ch == 'a' or ch == 'e' or ch == 'i' or ch == 'o' or ch == 'u' or ch == 'A'
or ch == 'E' or ch == 'I' or ch == 'O' or ch == 'U'):
print("Vowel")
else:
print("Constant")
|
[
"noreply@github.com"
] |
noreply@github.com
|
04481c8e9c3a8ab5864fbd9d4073e09189de4c58
|
0953f9aa0606c2dfb17cb61b84a4de99b8af6d2c
|
/python/ray/serve/http_proxy.py
|
e129f5d60cab56228bd2a379ba2a9be0ab162c29
|
[
"Apache-2.0",
"BSD-3-Clause",
"MIT"
] |
permissive
|
oscarknagg/ray
|
da3dc03e24945ff4d5718fd35fc1b3408d8907eb
|
20d47873c9e8f5bbb80fe36e5d16256c337c4db3
|
refs/heads/master
| 2023-09-01T01:45:26.364731
| 2021-10-21T07:46:52
| 2021-10-21T07:46:52
| 382,402,491
| 2
| 1
|
Apache-2.0
| 2021-09-15T12:34:41
| 2021-07-02T16:25:05
|
Python
|
UTF-8
|
Python
| false
| false
| 13,432
|
py
|
import asyncio
import socket
import time
import pickle
from typing import Callable, List, Dict, Optional, Tuple
import uvicorn
import starlette.responses
import starlette.routing
import ray
from ray import serve
from ray.exceptions import RayActorError, RayTaskError
from ray.serve.common import EndpointInfo, EndpointTag
from ray.serve.long_poll import LongPollNamespace
from ray.util import metrics
from ray.serve.utils import logger
from ray.serve.handle import RayServeHandle
from ray.serve.http_util import HTTPRequestWrapper, receive_http_body, Response
from ray.serve.long_poll import LongPollClient
from ray.serve.handle import DEFAULT
MAX_REPLICA_FAILURE_RETRIES = 10
async def _send_request_to_handle(handle, scope, receive, send):
http_body_bytes = await receive_http_body(scope, receive, send)
headers = {k.decode(): v.decode() for k, v in scope["headers"]}
handle = handle.options(
method_name=headers.get("X-SERVE-CALL-METHOD".lower(), DEFAULT.VALUE),
shard_key=headers.get("X-SERVE-SHARD-KEY".lower(), DEFAULT.VALUE),
http_method=scope["method"].upper(),
http_headers=headers,
)
# scope["router"] and scope["endpoint"] contain references to a router
# and endpoint object, respectively, which each in turn contain a
# reference to the Serve client, which cannot be serialized.
# The solution is to delete these from scope, as they will not be used.
# TODO(edoakes): this can be removed once we deprecate the old API.
if "router" in scope:
del scope["router"]
if "endpoint" in scope:
del scope["endpoint"]
# NOTE(edoakes): it's important that we defer building the starlette
# request until it reaches the backend replica to avoid unnecessary
# serialization cost, so we use a simple dataclass here.
request = HTTPRequestWrapper(scope, http_body_bytes)
# Perform a pickle here to improve latency. Stdlib pickle for simple
# dataclasses are 10-100x faster than cloudpickle.
request = pickle.dumps(request)
retries = 0
backoff_time_s = 0.05
while retries < MAX_REPLICA_FAILURE_RETRIES:
object_ref = await handle.remote(request)
try:
result = await object_ref
break
except RayActorError:
logger.warning("Request failed due to replica failure. There are "
f"{MAX_REPLICA_FAILURE_RETRIES - retries} retries "
"remaining.")
await asyncio.sleep(backoff_time_s)
backoff_time_s *= 2
retries += 1
if isinstance(result, RayTaskError):
error_message = "Task Error. Traceback: {}.".format(result)
await Response(
error_message, status_code=500).send(scope, receive, send)
elif isinstance(result, starlette.responses.Response):
await result(scope, receive, send)
else:
await Response(result).send(scope, receive, send)
class LongestPrefixRouter:
"""Router that performs longest prefix matches on incoming routes."""
def __init__(self, get_handle: Callable):
# Function to get a handle given a name. Used to mock for testing.
self._get_handle = get_handle
# Routes sorted in order of decreasing length.
self.sorted_routes: List[str] = list()
# Endpoints associated with the routes.
self.route_info: Dict[str, EndpointTag] = dict()
# Contains a ServeHandle for each endpoint.
self.handles: Dict[str, RayServeHandle] = dict()
def endpoint_exists(self, endpoint: EndpointTag) -> bool:
return endpoint in self.handles
def update_routes(self,
endpoints: Dict[EndpointTag, EndpointInfo]) -> None:
logger.debug(f"Got updated endpoints: {endpoints}.")
existing_handles = set(self.handles.keys())
routes = []
route_info = {}
for endpoint, info in endpoints.items():
# Default case where the user did not specify a route prefix.
if info.route is None:
route = f"/{endpoint}"
else:
route = info.route
routes.append(route)
route_info[route] = endpoint
if endpoint in self.handles:
existing_handles.remove(endpoint)
else:
self.handles[endpoint] = self._get_handle(endpoint)
# Clean up any handles that are no longer used.
for endpoint in existing_handles:
del self.handles[endpoint]
# Routes are sorted in order of decreasing length to enable longest
# prefix matching.
self.sorted_routes = sorted(routes, key=lambda x: len(x), reverse=True)
self.route_info = route_info
def match_route(self, target_route: str
) -> Tuple[Optional[str], Optional[RayServeHandle]]:
"""Return the longest prefix match among existing routes for the route.
Args:
target_route (str): route to match against.
Returns:
(matched_route (str), serve_handle (RayServeHandle)) if found,
else (None, None).
"""
for route in self.sorted_routes:
if target_route.startswith(route):
matched = False
# If the route we matched on ends in a '/', then so does the
# target route and this must be a match.
if route.endswith("/"):
matched = True
# If the route we matched on doesn't end in a '/', we need to
# do another check to ensure that either this is an exact match
# or the next character in the target route is a '/'. This is
# to guard against the scenario where we have '/route' as a
# prefix and there's a request to '/routesuffix'. In this case,
# it should *not* be a match.
elif (len(target_route) == len(route)
or target_route[len(route)] == "/"):
matched = True
if matched:
endpoint = self.route_info[route]
return route, self.handles[endpoint]
return None, None
class HTTPProxy:
"""This class is meant to be instantiated and run by an ASGI HTTP server.
>>> import uvicorn
>>> uvicorn.run(HTTPProxy(controller_name, controller_namespace))
"""
def __init__(self, controller_name: str, controller_namespace: str):
# Set the controller name so that serve will connect to the
# controller instance this proxy is running in.
ray.serve.api._set_internal_replica_context(None, None,
controller_name, None)
# Used only for displaying the route table.
self.route_info: Dict[str, EndpointTag] = dict()
def get_handle(name):
return serve.api._get_global_client().get_handle(
name,
sync=False,
missing_ok=True,
_internal_pickled_http_request=True,
)
self.prefix_router = LongestPrefixRouter(get_handle)
self.long_poll_client = LongPollClient(
ray.get_actor(controller_name, namespace=controller_namespace), {
LongPollNamespace.ROUTE_TABLE: self._update_routes,
},
call_in_event_loop=asyncio.get_event_loop())
self.request_counter = metrics.Counter(
"serve_num_http_requests",
description="The number of HTTP requests processed.",
tag_keys=("route", ))
def _update_routes(self,
endpoints: Dict[EndpointTag, EndpointInfo]) -> None:
self.route_info: Dict[str, Tuple[EndpointTag, List[str]]] = dict()
for endpoint, info in endpoints.items():
route = info.route if info.route is not None else f"/{endpoint}"
self.route_info[route] = endpoint
self.prefix_router.update_routes(endpoints)
async def block_until_endpoint_exists(self, endpoint: EndpointTag,
timeout_s: float):
start = time.time()
while True:
if time.time() - start > timeout_s:
raise TimeoutError(
f"Waited {timeout_s} for {endpoint} to propagate.")
for existing_endpoint in self.route_info.values():
if existing_endpoint == endpoint:
return
await asyncio.sleep(0.2)
async def _not_found(self, scope, receive, send):
current_path = scope["path"]
response = Response(
f"Path '{current_path}' not found. "
"Please ping http://.../-/routes for route table.",
status_code=404)
await response.send(scope, receive, send)
async def __call__(self, scope, receive, send):
"""Implements the ASGI protocol.
See details at:
https://asgi.readthedocs.io/en/latest/specs/index.html.
"""
assert scope["type"] == "http"
self.request_counter.inc(tags={"route": scope["path"]})
if scope["path"] == "/-/routes":
return await starlette.responses.JSONResponse(self.route_info)(
scope, receive, send)
route_prefix, handle = self.prefix_router.match_route(scope["path"])
if route_prefix is None:
return await self._not_found(scope, receive, send)
# Modify the path and root path so that reverse lookups and redirection
# work as expected. We do this here instead of in replicas so it can be
# changed without restarting the replicas.
if route_prefix != "/":
assert not route_prefix.endswith("/")
scope["path"] = scope["path"].replace(route_prefix, "", 1)
scope["root_path"] = route_prefix
await _send_request_to_handle(handle, scope, receive, send)
@ray.remote(num_cpus=0)
class HTTPProxyActor:
def __init__(self,
host: str,
port: int,
controller_name: str,
controller_namespace: str,
http_middlewares: Optional[List[
"starlette.middleware.Middleware"]] = None): # noqa: F821
if http_middlewares is None:
http_middlewares = []
self.host = host
self.port = port
self.setup_complete = asyncio.Event()
self.app = HTTPProxy(controller_name, controller_namespace)
self.wrapped_app = self.app
for middleware in http_middlewares:
self.wrapped_app = middleware.cls(self.wrapped_app,
**middleware.options)
# Start running the HTTP server on the event loop.
# This task should be running forever. We track it in case of failure.
self.running_task = asyncio.get_event_loop().create_task(self.run())
async def ready(self):
"""Returns when HTTP proxy is ready to serve traffic.
Or throw exception when it is not able to serve traffic.
"""
done_set, _ = await asyncio.wait(
[
# Either the HTTP setup has completed.
# The event is set inside self.run.
self.setup_complete.wait(),
# Or self.run errored.
self.running_task,
],
return_when=asyncio.FIRST_COMPLETED)
# Return None, or re-throw the exception from self.running_task.
return await done_set.pop()
async def block_until_endpoint_exists(self, endpoint: EndpointTag,
timeout_s: float):
await self.app.block_until_endpoint_exists(endpoint, timeout_s)
async def run(self):
sock = socket.socket()
# These two socket options will allow multiple process to bind the the
# same port. Kernel will evenly load balance among the port listeners.
# Note: this will only work on Linux.
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
if hasattr(socket, "SO_REUSEPORT"):
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1)
try:
sock.bind((self.host, self.port))
except OSError:
# The OS failed to bind a socket to the given host and port.
raise ValueError(
f"""Failed to bind Ray Serve HTTP proxy to '{self.host}:{self.port}'.
Please make sure your http-host and http-port are specified correctly.""")
# Note(simon): we have to use lower level uvicorn Config and Server
# class because we want to run the server as a coroutine. The only
# alternative is to call uvicorn.run which is blocking.
config = uvicorn.Config(
self.wrapped_app,
host=self.host,
port=self.port,
lifespan="off",
access_log=False)
server = uvicorn.Server(config=config)
# TODO(edoakes): we need to override install_signal_handlers here
# because the existing implementation fails if it isn't running in
# the main thread and uvicorn doesn't expose a way to configure it.
server.install_signal_handlers = lambda: None
self.setup_complete.set()
await server.serve(sockets=[sock])
|
[
"noreply@github.com"
] |
noreply@github.com
|
92683c997042e0e8864518890e6c61563e68ef16
|
8cffac7fa29566c2ce8f4881e5cd8ee04a8b3476
|
/sample_pdfminer/table.py
|
cb270c2a18696cb70b634f0ec429619a3ce200d9
|
[] |
no_license
|
tsukko/sample-prg-python
|
c4ca293430adfa7de8579a3fe7b16561a5091fb4
|
82afffd767c504f5560c9bb7979f4a90ec9c6289
|
refs/heads/master
| 2023-03-04T22:58:39.269926
| 2021-02-10T18:23:27
| 2021-02-10T18:23:27
| 189,197,767
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 1,488
|
py
|
from pdfminer.layout import LTCurve
# 表
class LTTableRect(LTCurve):
def __init__(self, text, bbox, stroke=False, fill=False, evenodd=False, stroking_color=None,
non_stroking_color=None):
(x0, y0, x1, y1) = bbox
self.text = text
LTCurve.__init__(self, 0, [(x0, y0), (x1, y0), (x1, y1), (x0, y1)], stroke, fill, evenodd,
stroking_color, non_stroking_color)
return
def get_text(self):
return self.text
# text文章のブロック
class LTTextBlock(LTCurve):
def __init__(self, text, bbox, stroke=False, fill=False, evenodd=False, stroking_color=None,
non_stroking_color=None):
(x0, y0, x1, y1) = bbox
self.text = text
LTCurve.__init__(self, 0, [(x0, y0), (x1, y0), (x1, y1), (x0, y1)], stroke, fill, evenodd,
stroking_color, non_stroking_color)
return
def get_text(self):
return self.text
# block
class LTBlock(LTCurve):
def __init__(self, text, bbox, stroke=False, fill=False, evenodd=False, stroking_color=None,
non_stroking_color=None):
(x0, y0, x1, y1) = bbox
self.text = text
LTCurve.__init__(self, 0, [(x0, y0), (x1, y0), (x1, y1), (x0, y1)], stroke, fill, evenodd,
stroking_color, non_stroking_color)
return
def get_text(self):
return self.text
def set_text(self, text):
self.text = text
|
[
"tsukko@gmail.com"
] |
tsukko@gmail.com
|
84bd69b3aecc431f55e1f816dbfe988f0e2443fc
|
98c6ea9c884152e8340605a706efefbea6170be5
|
/examples/data/Assignment_2/mlxnas004/question1.py
|
615d9525446c91fd8b2b6c646c028b7d0a290c6e
|
[] |
no_license
|
MrHamdulay/csc3-capstone
|
479d659e1dcd28040e83ebd9e3374d0ccc0c6817
|
6f0fa0fa1555ceb1b0fb33f25e9694e68b6a53d2
|
refs/heads/master
| 2021-03-12T21:55:57.781339
| 2014-09-22T02:22:22
| 2014-09-22T02:22:22
| 22,372,174
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 279
|
py
|
#nasha meoli
#mlxnas004
#leap year
x = eval(input("Enter a year:\n"))
condition_1 = x%400
condition_2 = x%4
condition_3 = x%100
if (condition_1 == 0) or ((condition_2 == 0) and (condition_3 >= 1)):
print(x,"is a leap year.")
else:
print(x,"is not a leap year.")
|
[
"jarr2000@gmail.com"
] |
jarr2000@gmail.com
|
d0d20fa9e6734a72dee78b47ba0146e83bb3c2c1
|
aa0d747ebd4fe6a0d6ba421df1b55bbf7e56449f
|
/lobby/admin.py
|
1e848b1ebea4a77de45e23bc10fef9a11807e178
|
[] |
no_license
|
cardholder/server-side
|
0dbaca74d1962bd4813f8ca38f0b1ceccfa49019
|
bbe0eda02286d5722882e1d4b4c95a31024176f4
|
refs/heads/master
| 2022-11-14T02:26:25.979819
| 2019-07-14T10:54:58
| 2019-07-14T10:54:58
| 183,203,087
| 0
| 0
| null | 2022-11-04T19:35:10
| 2019-04-24T10:08:01
|
Python
|
UTF-8
|
Python
| false
| false
| 138
|
py
|
from django.contrib import admin
from .models import *
admin.site.register(Game)
admin.site.register(Card)
admin.site.register(CardSet)
|
[
"stefan.kroeker@fh-bielefeld.de"
] |
stefan.kroeker@fh-bielefeld.de
|
7be1adfbae6084374a99a6320ce4b8a69079caf5
|
cd65010c3142b693013984e1eef232b1a34fecc4
|
/main_project/hom.py
|
fd5263c216197fb6160c440260118ea3b7125d6b
|
[] |
no_license
|
simofane4/tkinter
|
26f3a762807db31790477706249fcbf808bae029
|
628ed26198a5aa093488f0dc0ff8bbe255c2043b
|
refs/heads/master
| 2023-04-03T11:29:57.998185
| 2021-04-20T00:55:35
| 2021-04-20T00:55:35
| 359,479,930
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 3,919
|
py
|
from tkinter import *
import tkinter as tk
from PIL import Image, ImageTk
import time
from tkinter import ttk
from time import strftime
app = tk.Tk()
app.geometry("800x800+350+150")
app.title("Gestion de Stock des Pièces de Rechange")
app.configure(background='#0b2239')
app.resizable(width=False, height=True)
#localtime = time.strftime("%H:%M:%S %y-%m-%d")
def enter(event):
lbl_img5.config(bg='white')
def leave(event):
lbl_img5.config(bg='#164777')
def enter_1(event):
lbl_img6.config(bg='white')
def leave_1(event):
lbl_img6.config(bg='#164777')
def enter_2(event):
lbl_img7.config(bg='white')
def leave_2(event):
lbl_img7.config(bg='#164777')
def enter_3(event):
lbl_img8.config(bg='white')
def leave_3(event):
lbl_img8.config(bg='#164777')
def enter_4(event):
lbl_img4.config(bg='white')
def leave_4(event):
lbl_img4.config(bg='#164777')
def enter_5(event):
lbl_img9.config(bg='white')
def leave_5(event):
lbl_img9.config(bg='#164777')
icon = tk.PhotoImage(file="icon.png")
app.call("wm", "iconphoto", app._w, icon)
app.img1 = Image.open("settings.png").resize((80, 80), Image.ANTIALIAS)
app.photo_image1 = ImageTk.PhotoImage(app.img1)
lbl_img1 = Label(image=app.photo_image1, fg="black", bg="#0b2239").place(x=20, y=15, width=80, height=80)
ho_lbl6 = tk.Label(app, text="Gestion de Stock ", fg="white", font=("Times New roman", 16), bg='#0b2239').place(x=115, y=40)
#app.img4 = Image.open("client.png").resize((100, 100), Image.ANTIALIAS)
#app.photo_image4 = ImageTk.PhotoImage(app.img4)
#lbl_img4 = Button(image=app.photo_image4, borderwidth=0, bg="white", activebackground="red").place(x=50, y=150, width=100, height=100)
app.img5 = Image.open("group.png").resize((100, 100), Image.ANTIALIAS)
app.photo_image5 = ImageTk.PhotoImage(app.img5)
lbl_img5 = Button(image=app.photo_image5, borderwidth=0, bg="#164777", activebackground="red")
lbl_img5.place(x=150, y=250, width=150, height=150)
lbl_img5.bind('<Enter>' , enter)
lbl_img5.bind('<Leave>', leave)
app.img6 = Image.open("service.png").resize((100, 100), Image.ANTIALIAS)
app.photo_image6 = ImageTk.PhotoImage(app.img6)
lbl_img6 = Button(image=app.photo_image6, borderwidth=0, bg="#164777", activebackground="red")
lbl_img6.place(x=150, y=410, width=150, height=150)
lbl_img6.bind('<Enter>' , enter_1)
lbl_img6.bind('<Leave>', leave_1)
app.img7 = Image.open("tool-box.png").resize((100, 100), Image.ANTIALIAS)
app.photo_image7 = ImageTk.PhotoImage(app.img7)
lbl_img7 = Button(image=app.photo_image7, borderwidth=0, bg="#164777", activebackground="red")
lbl_img7.place(x=310, y=250, width=150, height=150)
lbl_img7.bind('<Enter>' , enter_2)
lbl_img7.bind('<Leave>', leave_2)
app.img8 = Image.open("cart.png").resize((100, 100), Image.ANTIALIAS)
app.photo_image8 = ImageTk.PhotoImage(app.img8)
lbl_img8 = Button(image=app.photo_image8, borderwidth=0, bg="#164777", activebackground="red")
lbl_img8.place(x=310, y=410, width=150, height=150)
lbl_img8.bind('<Enter>' , enter_3)
lbl_img8.bind('<Leave>', leave_3)
app.img4 = Image.open("invoice.png").resize((100, 100), Image.ANTIALIAS)
app.photo_image4 = ImageTk.PhotoImage(app.img4)
lbl_img4 = Button(image=app.photo_image4, borderwidth=0, bg="#164777", activebackground="red")
lbl_img4.place(x=470, y=250, width=150, height=150)
lbl_img4.bind('<Enter>' , enter_4)
lbl_img4.bind('<Leave>', leave_4)
app.img9 = Image.open("warehouse.png").resize((100, 100), Image.ANTIALIAS)
app.photo_image9 = ImageTk.PhotoImage(app.img9)
lbl_img9 = Button(image=app.photo_image9, borderwidth=0, bg="#164777", activebackground="red")
lbl_img9.place(x=470, y=410, width=150, height=150)
lbl_img9.bind('<Enter>' , enter_5)
lbl_img9.bind('<Leave>', leave_5)
app.mainloop()
|
[
"simofane4@gmail.com"
] |
simofane4@gmail.com
|
c4813a92e720fa53d9eefd406d9c0a0a181b36c8
|
dead387c1bd3f3193d0f8ec980b9d8103cfc3113
|
/process_create.py
|
02daa051df5a1258131d48327e0473f9dcfc9986
|
[] |
no_license
|
purndaum/web3
|
c593eaccbff50895e729acb2c342ee961345932f
|
96d57e8e7ff635113c237fd55bf7929de7fad281
|
refs/heads/master
| 2021-05-22T18:19:22.350482
| 2020-04-04T15:51:20
| 2020-04-04T15:51:20
| 251,065,088
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 280
|
py
|
#!python
import cgi
form = cgi.FieldStorage()
title = form["title"].value
description = form['description'].value
opened_file = open('data/'+title, 'w')
opened_file.write(description)
opened_file.close()
#Redirection
print("Location: index.py?id="+title)
print()
|
[
"noreply@github.com"
] |
noreply@github.com
|
ff41fc1eefe176679341826517f20a6a0712d7c4
|
45b3fb7717c23b10d84efb3cfceb546cf0adaa97
|
/blog/posts/forms.py
|
b45ebd4e45d0c77d2ccca303794400d7874f7088
|
[] |
no_license
|
IvanovVitalii/project_n
|
0a7ca549ff0b28162d9f133b8abd1de63f66c9a6
|
8a12956b7aebdba32129b341c3ad5320ae916b89
|
refs/heads/main
| 2023-06-15T03:40:17.673498
| 2021-07-15T10:25:10
| 2021-07-15T10:25:10
| 382,883,812
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 418
|
py
|
from django import forms
from posts.models import Post, Product
class LoginForm(forms.Form):
username = forms.CharField()
password = forms.CharField(widget=forms.PasswordInput)
class PostForm(forms.ModelForm):
class Meta:
model = Post
fields = ('title', 'content',)
class ProductForm(forms.ModelForm):
class Meta:
model = Product
fields = ('title', 'content',)
|
[
"ivanov.v.v13@gmail.com"
] |
ivanov.v.v13@gmail.com
|
c07ba76a6ce1700bed5939dd56790525d85ad59a
|
3e64d1fb4998fae24a4178d0925e0f30e30b00e7
|
/venv/lib/python3.8/encodings/utf_7.py
|
fabe5e915e16c26cdb4c57b6fa50ed8570d0dee2
|
[] |
no_license
|
viraatdas/Model-Rest-API
|
a39e150c484c7136141f462932d741de5b45e044
|
a08500a28e4ad32094de6f88223088b9a9081d69
|
refs/heads/master
| 2022-11-12T15:33:06.624474
| 2020-07-05T05:04:50
| 2020-07-05T05:04:50
| 257,821,478
| 0
| 0
| null | null | null | null |
UTF-8
|
Python
| false
| false
| 82
|
py
|
/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/encodings/utf_7.py
|
[
"viraat.laldas@gmail.com"
] |
viraat.laldas@gmail.com
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.