blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 616 | content_id stringlengths 40 40 | detected_licenses listlengths 0 69 | license_type stringclasses 2 values | repo_name stringlengths 5 118 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 63 | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 2.91k 686M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 220 values | src_encoding stringclasses 30 values | language stringclasses 1 value | is_vendor bool 2 classes | is_generated bool 2 classes | length_bytes int64 2 10.3M | extension stringclasses 257 values | content stringlengths 2 10.3M | authors listlengths 1 1 | author_id stringlengths 0 212 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ad3c6e6becb9b5646766ed2063c8d949313bda56 | aee573c81dc297a97772b99cd90e05d494b25f77 | /learnpython/matplotlib/demo_plot_2.py | e5879a3c9928961f2b12810475ab9a793f96f56e | [] | no_license | YuxuanSu-Sean/learning | 6df9d7b348e3f6c8cad0347e222c1ed244c92332 | 1356b85c2b673925f1fc89ff45f54fb499d342d0 | refs/heads/master | 2022-11-13T14:08:17.808037 | 2022-11-10T05:15:16 | 2022-11-10T05:15:16 | 204,625,964 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 82 | py | import matplotlib.pyplot as plt
fig = plt.figure()
ax1 = fig.add_subplot(111)
| [
"497572121@qq.com"
] | 497572121@qq.com |
7ca71e74e605112ef507f107584f872545a68564 | 499efac953f9f0ed3ef1876b3a470250c75f7ac1 | /mnist_sklearn.py | 7f778519c5dc8279f17a25ce634530272f3881e0 | [] | no_license | ravi911sharma44/MNIST- | b7ffe5c2b9492e7997590a618c8a483f72709e95 | 15fb747ce7e928f963d4bd61d28a5411e98878c8 | refs/heads/main | 2023-07-17T03:04:02.138426 | 2021-08-14T15:31:24 | 2021-08-14T15:31:24 | 396,047,993 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 538 | py | import pandas as pd
df = pd.read_csv (r'E:\chat bot intern\week 3\mnist_train.csv\mnist_train.csv')
df = pd.DataFrame(df)
from sklearn.model_selection import train_test_split
X = df.drop('label', axis = 1)
Y = df.label
x_train, x_test, y_train, y_test = train_test_split(X, Y, test_size = 0.2)
from sklearn.linear_model import LinearRegression
from sklearn.metrics import mean_squared_error
model = LinearRegression()
model.fit(x_train, y_train)
pred = model.predict(x_test)
print(mean_squared_error(y_test, pred)) | [
"noreply@github.com"
] | ravi911sharma44.noreply@github.com |
2bcd1788de6e9a593abedae6ed61b48c43c67654 | 06d6c9346331e392f6d8067eb9ee52d38ae5fab8 | /carver/pe/setup.py | 299b8bff264703b5031d4a1ddd6b11e7c4e69e92 | [
"Apache-2.0"
] | permissive | maydewd/stoq-plugins-public | 5d5e824dda0c78acab4ff9aef72f567e6b85e555 | 8b2877b5091ae731437ef35a95d4debdbf0a19f3 | refs/heads/master | 2020-03-22T18:57:41.061748 | 2018-06-12T14:36:42 | 2018-06-12T14:36:42 | 140,494,475 | 0 | 0 | Apache-2.0 | 2018-07-10T22:39:08 | 2018-07-10T22:39:08 | null | UTF-8 | Python | false | false | 371 | py | from setuptools import setup, find_packages
setup(
name="pe",
version="0.10",
author="Jeff Ito, Marcus LaFerrera (@mlaferrera)",
url="https://github.com/PUNCH-Cyber/stoq-plugins-public",
license="Apache License 2.0",
description="Carve portable executable files from a data stream",
packages=find_packages(),
include_package_data=True,
)
| [
"marcus@randomhack.org"
] | marcus@randomhack.org |
6e366b23ce962f4acf818615c993eb9f30b28562 | d8f44692c9f9f0a9a391a49db0f4f659a2ef6fe8 | /jsBuilds/jsSupport.py | 4817320de831b302adb53f3eddacb01f0fbe8e4b | [
"MIT"
] | permissive | skylarkgit/sql2phpclass | 045e71963574b719313fc98882f5c710435f101f | a79e7f3cfda8cb41ba00e8cbba0de33e9be759d6 | refs/heads/master | 2020-03-19T02:34:34.229287 | 2018-07-04T18:58:28 | 2018-07-04T18:58:28 | 135,640,687 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 759 | py | import sys
sys.path.append('..')
from jsBuilds.jsTemplates import *
def args(varList):
return ','.join(varList)
def reqData(varList):
return '+"&"+'.join('"'+x+'="obj.'+x for x in varList)
def objFormation(varlist):
return ','.join(x+':'+SCOPE(x) for x in varList)
def varsToAliasArr(varList):
arr={}
for v in varList.values():
arr[v.alias]=v
return arr
def createObjFromScope(varList):
return '{'+(','.join(v.alias+":"+PARSER(v.validType,SCOPE(v.alias)) for v in varList.values()))+'}'
def responseToScope(varList):
return ''.join(SCOPE(v.alias)+"=response.data.data."+v.alias+";" for v in varList.values())
def argsToScope(varList):
return ''.join(SCOPE(v.alias)+"="+v.alias+";" for v in varList.values())
| [
"abhay199658@gmail.com"
] | abhay199658@gmail.com |
a2db15dc70256c5ac16e2d712ccd8393faf996ac | c820e028be4239bc20e76af41574e561ba8d8e02 | /gsw/version.py | 2f5fd65dfc4d9ab9ae7c7b3df560f34efabacd78 | [
"MIT"
] | permissive | lukecampbell/python-gsw | 7657c2e3a0dbadad00ff17557f4ca45f971f3964 | c555921b5f1fcbc1c1a3565172b946f782d15db4 | refs/heads/master | 2016-09-06T16:54:47.074484 | 2013-02-20T20:00:03 | 2013-02-20T20:00:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 43 | py | #!/usr/bin/env python
version = '3.0.1a1'
| [
"luke.s.campbell@gmail.com"
] | luke.s.campbell@gmail.com |
550abb7570d8b8943d140a815dfcc92c727bbc0b | fbb1494be3ff7b6a5dfa3b9204cc927af4103b59 | /api/urls.py | 242b792a393d67ac9d39ff798fc079072c76b9ff | [] | no_license | james-work-account/raml_loader_api | a3380faf6f07ae82b1b113e7019fbb5f6840df31 | 4483b13de5d74c20f7c3696ba6180332b36fdc2b | refs/heads/master | 2021-07-24T07:32:28.507993 | 2020-10-06T08:38:23 | 2020-10-06T08:38:23 | 222,752,033 | 0 | 0 | null | 2020-10-06T08:25:55 | 2019-11-19T17:29:11 | Python | UTF-8 | Python | false | false | 802 | py | """api URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.2/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('raml/', include('raml_parser.urls')),
path('admin/', admin.site.urls),
]
| [
"31282758+james-work-account@users.noreply.github.com"
] | 31282758+james-work-account@users.noreply.github.com |
b301691a347e993eeb0904ec4da555a684042612 | caf39133030e9e9d9240769fbfe72287009c6b51 | /math/0x02-calculus/17-integrate.py | 70e1a9c8db0993bc659e0d727a1f9eab6e7a5be6 | [] | no_license | sazad44/holbertonschool-machine_learning | d08facbc24582ebcedf9a8607c82b18909fe7867 | b92e89b980a8f1360a24f4ed5654a2ab0dfac679 | refs/heads/master | 2022-11-30T22:32:21.264942 | 2020-08-12T05:25:06 | 2020-08-12T05:25:06 | 280,286,486 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 728 | py | #!/usr/bin/env python3
"""task 17 py function to integrate a polynomial"""
def poly_integral(poly, C=0):
"""py function to calculate integral of poly"""
if not isinstance(
poly,
list
) or len(
poly
) == 0 or not isinstance(
C,
int
):
return None
newPoly = [C]
for c in range(len(poly)):
appVal = poly[c] / (c + 1)
if appVal.is_integer():
newPoly.append(int(appVal))
else:
newPoly.append(appVal)
if sum(newPoly) == 0:
return [0]
cutoff = 1
while newPoly[-cutoff] == 0:
cutoff += 1
if newPoly[-1] == 0:
newPoly = newPoly[:-(cutoff - 1)]
return newPoly
| [
"36613205+sazad44@users.noreply.github.com"
] | 36613205+sazad44@users.noreply.github.com |
f6feb1566f4a0b2b2e1860b1005500bb45004b68 | 79429bd1c124044572bef9d1062d145c01e20b24 | /ex026.py | d7d2e948a9f0c2b06d59b7d78ecec3325b3eb7ee | [] | no_license | xxweell/exerciciosPython | b6fe00d67a39391bb8794953832f07f7f75eb504 | 93c1ac25dc1d1875c4102e1126fa54a537bb0973 | refs/heads/master | 2022-11-14T20:30:13.587004 | 2020-06-17T21:06:59 | 2020-06-17T21:06:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 353 | py | frase = str(input('Digite uma frase: ')).strip().upper()
print('A letra A aparece {} vezes na frase.'.format(frase.count('A')))
print('A primeira letra A apareceu na posição {}.'.format(frase.find('A')+1)) # find retorna a posição em que foi encontrado a primeira vez
print('A última letra A apareceu na posição {}.'.format(frase.rfind('A')+1))
| [
"wellingtoncw7@gmail.com"
] | wellingtoncw7@gmail.com |
60c083d45755c5c8515e991f42f96dd819d6e4d5 | fbbbcfa050612a6242c095060bad774b60fc914d | /archive_project/old_version.py | 184a635253393fb5e1f993b883ce043eb4385aee | [] | no_license | MitjaNemec/Kicad_action_plugins | 79b4fa0fb8fdcb0aba3770f871f0c25bd982bea6 | f7f2eaa567a7354459e17f108427584fa6a6a8a4 | refs/heads/master | 2023-08-29T12:09:48.978854 | 2023-06-15T18:41:08 | 2023-06-15T18:41:08 | 110,839,994 | 406 | 79 | null | 2022-03-31T06:31:07 | 2017-11-15T13:55:47 | Python | UTF-8 | Python | false | false | 1,473 | py | # -*- coding: utf-8 -*-
# action_replicate_layout.py
#
# Copyright (C) 2018 Mitja Nemec
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#
import pcbnew
import wx
class OldVersion(pcbnew.ActionPlugin):
"""
Notify user of missing wxpython
"""
def defaults(self):
self.name = "Archive project"
self.category = "Archive project"
self.description = "Archive schematics symbols and 3D models"
def Run(self):
_pcbnew_frame = [x for x in wx.GetTopLevelWindows() if x.GetTitle().lower().startswith('pcbnew')][0]
caption = 'Archive project'
message = "This plugin works with KiCad 5.1 and higher"
dlg = wx.MessageDialog(_pcbnew_frame, message, caption, wx.OK | wx.ICON_INFORMATION)
dlg.ShowModal()
dlg.Destroy()
| [
"mitja.nemec@fe.uni-lj.si"
] | mitja.nemec@fe.uni-lj.si |
ab523c3751accac0cb2820f8f76621d3ca5474ab | 53fab060fa262e5d5026e0807d93c75fb81e67b9 | /backup/user_172/ch88_2020_05_06_12_07_01_120079.py | 65c8bdbe203ac21abf9a6631e62483803e27d184 | [] | no_license | gabriellaec/desoft-analise-exercicios | b77c6999424c5ce7e44086a12589a0ad43d6adca | 01940ab0897aa6005764fc220b900e4d6161d36b | refs/heads/main | 2023-01-31T17:19:42.050628 | 2020-12-16T05:21:31 | 2020-12-16T05:21:31 | 306,735,108 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 344 | py | class Retangulo:
def _init_(self,coord1, coord2):
coord1 = Ponto(x1, y1)
coord2 = Ponto(x2, y2)
def calcula_perimetro(self):
base = x2 - x1
altura = y2 - y1
p = 2*base + 2*altura
def calcula_area(self):
base = x2 - x1
altura = y2 - y1
a = base*altura | [
"you@example.com"
] | you@example.com |
bdd9f479c4b2fdd3901be2b45127d857c7560c00 | 60b1c5ab904a773e81d3f817279f9f2f72e15ac6 | /individual.py | be8c4cc2e02443bef755cf708e9a8b67834da694 | [
"MIT"
] | permissive | n0lley/polycube | 1dede161444c9f50220e8683742d95468290bdee | bc97b81b7455a8682fcd83f198fad437bb3dc4cb | refs/heads/master | 2021-08-07T01:09:05.584330 | 2020-07-28T23:18:28 | 2020-07-28T23:18:28 | 180,885,490 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 242 | py | class INDIVIDUAL:
def __init__(self, *args, **kwargs):
raise NotImplementedError
def mutate(self, *args, **kwargs):
raise NotImplementedError
def evaluate(self, *args, **kwargs):
raise NotImplementedError | [
"david.matthews.1@uvm.edu"
] | david.matthews.1@uvm.edu |
2b6516b8357caff161af954e665fc30dd6a1ad1e | 8bb6e8535c12c541866ad87fbd221750c7dac127 | /lib/kb_irep/kb_irepImpl.py | 0794129841b97942c4a676c5bd19fb284a692a7c | [
"MIT"
] | permissive | jungbluth/kb_irep | 1a0caa793133ec587a0cf8b8de4154c2bb5c82aa | 55c8f2bfb3ccba74d3418dec31acf6d9630b1ac5 | refs/heads/master | 2021-07-18T06:00:00.508236 | 2020-12-30T20:26:15 | 2020-12-30T20:26:15 | 227,967,740 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,768 | py | # -*- coding: utf-8 -*-
#BEGIN_HEADER
import logging
import os
from installed_clients.KBaseReportClient import KBaseReport
#END_HEADER
class kb_irep:
'''
Module Name:
kb_irep
Module Description:
A KBase module: kb_irep
'''
######## WARNING FOR GEVENT USERS ####### noqa
# Since asynchronous IO can lead to methods - even the same method -
# interrupting each other, you must be *very* careful when using global
# state. A method could easily clobber the state set by another while
# the latter method is running.
######################################### noqa
VERSION = "0.0.1"
GIT_URL = "https://github.com/jungbluth/kb_irep"
GIT_COMMIT_HASH = "27849324019fb7eeabff2796e9e33115d976f459"
#BEGIN_CLASS_HEADER
#END_CLASS_HEADER
# config contains contents of config file in a hash or None if it couldn't
# be found
def __init__(self, config):
#BEGIN_CONSTRUCTOR
self.callback_url = os.environ['SDK_CALLBACK_URL']
self.shared_folder = config['scratch']
logging.basicConfig(format='%(created)s %(levelname)s: %(message)s',
level=logging.INFO)
#END_CONSTRUCTOR
pass
def run_kb_irep(self, ctx, params):
"""
This example function accepts any number of parameters and returns results in a KBaseReport
:param params: instance of mapping from String to unspecified object
:returns: instance of type "ReportResults" -> structure: parameter
"report_name" of String, parameter "report_ref" of String
"""
# ctx is the context object
# return variables are: output
#BEGIN run_kb_irep
report = KBaseReport(self.callback_url)
report_info = report.create({'report': {'objects_created':[],
'text_message': params['parameter_1']},
'workspace_name': params['workspace_name']})
output = {
'report_name': report_info['name'],
'report_ref': report_info['ref'],
}
#END run_kb_irep
# At some point might do deeper type checking...
if not isinstance(output, dict):
raise ValueError('Method run_kb_irep return value ' +
'output is not type dict as required.')
# return the results
return [output]
def status(self, ctx):
#BEGIN_STATUS
returnVal = {'state': "OK",
'message': "",
'version': self.VERSION,
'git_url': self.GIT_URL,
'git_commit_hash': self.GIT_COMMIT_HASH}
#END_STATUS
return [returnVal]
| [
"jungbluth.sean@gmail.com"
] | jungbluth.sean@gmail.com |
f06e6cd20ffd0594a254af576292149542c248bf | 7d57247e1cefc7dfdd4c12a745366fae5e413a11 | /tests/conftest.py | 9731d89f424cc00aa2b48745e73b0a2e2a1149b7 | [
"BSD-2-Clause"
] | permissive | chintal/sphinxcontrib-collations | 6920314dddba4eea7b059028a9cb2c7dba9e3121 | dd2b7f449bf025695fb25a4c685fd3ab9b1c6c53 | refs/heads/master | 2020-06-21T09:12:09.492796 | 2019-07-17T13:14:03 | 2019-07-17T14:22:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 293 | py | """
pytest config for sphinxcontrib/collations/tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: Copyright 2017 by Chintalagiri Shashank <shashank.chintalagiri@gmail.com>
:license: BSD, see LICENSE for details.
"""
pytest_plugins = 'sphinx.testing.fixtures'
| [
"shashank.chintalagiri@gmail.com"
] | shashank.chintalagiri@gmail.com |
d7d2b1821665e6ce2fba837251c3f8cc1a3c770e | fff4663f296e081d4aa3ca4b36c301afb95aee88 | /lib_translate/term_protection.py | b5dab0be375d36ef3d46bc9c0450aa52067b961f | [] | no_license | sammichenVV/translateserver-py | 84d7787c0b4e42542be433b909ed243f65e4ed38 | b4c6900281b2219097d6f1f86a71311180a60c1e | refs/heads/main | 2023-03-19T14:20:00.579830 | 2021-03-17T06:54:01 | 2021-03-17T06:54:01 | 348,186,221 | 3 | 1 | null | null | null | null | UTF-8 | Python | false | false | 7,773 | py | """
对输入文本的专业术语进行保护,目前仅支持一句话中对一个术语进行保护
>>> src_word, tgt_word = "Hello world", "你好世界"
>>> add_words([[src_word, tgt_word]])
>>> src_word.lower() in show_words(return_dict=True)
True
>>> add_words([["I'm", "我是"]])
>>> sent, term = mask_term("hello world! I'm.")
>>> de_mask_term(sent, term)
'你好世界! 我是.'
>>> delete_words(["I'm", "hello world"])
>>> src_word.lower() not in show_words(return_dict=True)
True
>>> mask_term("hello world! I'm.")
("hello world! I'm.", [])
"""
import re
import warnings
import pandas
from sqlalchemy import Column, String, create_engine
from sqlalchemy.orm import sessionmaker
from sqlalchemy.ext.declarative import declarative_base
from config import global_config
PROTECTION_SYMBOL = global_config["term_mask_symbol"]
DICT_FILE = global_config.get("term_protection_dict", None)
SRC_LANG = global_config["translate_src_lang"]
TGT_LANG = global_config["translate_tgt_lang"]
TERM_PROTECTION_DB = global_config["term_protection_db"]
__all__ = ["mask_term", "de_mask_term",
"add_words", "delete_words", "show_words"]
def _transform_word(word):
"""
对加入词表的词进行预处理
"""
return word.strip().lower()
class DFAFilter():
"""
使用dfa算法构建的term filter
>>> keywords = ["hello world", "I'm", "hello"]
>>> dfa_filter = DFAFilter(keywords)
>>> terms, indexes = dfa_filter.filter("Hello world. I'm fine thank you.")
>>> terms
['Hello world', "I'm"]
>>> indexes
[(0, 11), (13, 16)]
"""
def __init__(self, keywords):
self.keyword_chains = {}
self.delimit = '\x00'
self.keywords = keywords
for word in keywords:
if isinstance(word, str):
self.add(word.strip())
def remove(self, keyword):
"""
移除过滤器中的词
"""
if not keyword:
return
chars = _transform_word(keyword)
level = self.keyword_chains
prev_level = None
prev_key = None
for char in chars:
if char not in level:
return
if self.delimit in level:
prev_level = level
prev_key = char
level = level[char]
if len(level) > 1:
level.pop(self.delimit)
else:
prev_level.pop(prev_key)
def add(self, keyword):
"""
向过滤器中添加词表
"""
chars = _transform_word(keyword)
if not chars:
return
level = self.keyword_chains
for i in range(0, len(chars)):
if chars[i] in level:
level = level[chars[i]]
else:
for j in range(i, len(chars)):
level[chars[j]] = {}
last_level, last_char = level, chars[j]
level = level[chars[j]]
last_level[last_char] = {self.delimit: 0}
break
if i == len(chars) - 1:
level[self.delimit] = 0
def filter(self, message):
"""
从文本中找出词表中的词
"""
origin_message = message
message = _transform_word(message)
sensitive_words = []
indexes = []
start = 0
while start < len(message):
level = self.keyword_chains
step_ins = 0
word_start, word_end = -1, -1
for char in message[start:]:
if char in level:
step_ins += 1
if self.delimit in level[char]:
word_start, word_end = start, start + step_ins
level = level[char]
else:
break
if word_end >= 0:
sensitive_words.append(origin_message[word_start: word_end])
indexes.append((word_start, word_end))
start = word_end - 1
start += 1
return sensitive_words, indexes
Base = declarative_base()
class Vocab(Base):
__tablename__ = "{}-{}".format(SRC_LANG, TGT_LANG)
src_word = Column(String(64), primary_key=True)
tgt_word = Column(String(64))
ENGIN = create_engine("sqlite:///{}".format(TERM_PROTECTION_DB))
SESSION = sessionmaker(bind=ENGIN)()
Base.metadata.create_all(ENGIN)
def read_dict_sqlite():
"""
从sqlite数据库中读取需要保护的词典
"""
mapping = {}
for item in SESSION.query(Vocab):
mapping[_transform_word(item.src_word)] = item.tgt_word
return mapping
def read_dict_excel(term_file):
"""
从原文和译文中获取需要保护的词典。
格式规定:词典的第一行为列名,分别有源语言和目标语言的简称,中文:zh 英文:en
后面每一行是对应语言需要保护的term
"""
dataframe = pandas.read_excel(term_file)
langs = dataframe.columns.tolist()
mapping = {}
reverse_mapping = {}
for _, (src, tgt) in dataframe.iterrows():
if isinstance(src, str) and isinstance(tgt, str):
mapping[_transform_word(src)] = tgt
reverse_mapping[_transform_word(tgt)] = src
vocab = {
"{}-{}".format(*langs): mapping,
"{}-{}".format(*reversed(langs)): reverse_mapping
}
return vocab.get("{}-{}".format(SRC_LANG, TGT_LANG))
if DICT_FILE:
try:
MAPPING = read_dict_excel(DICT_FILE)
except FileNotFoundError:
MAPPING = {}
else:
MAPPING = {}
if not MAPPING:
warnings.warn(
"Can't find mapping {}-{} from dict file for term protecting.".format(SRC_LANG, TGT_LANG))
MAPPING.update(read_dict_sqlite())
TERM_FILTER = DFAFilter(list(MAPPING.keys()))
def mask_term(sent):
"""
给定一段平行语料,对其中的term进行保护操作
"""
terms, indexes = TERM_FILTER.filter(sent)
if PROTECTION_SYMBOL in sent:
return sent, ""
string_builder = ""
prev = 0 # 记录上一个term的位置
for i, (start, end) in enumerate(indexes):
string_builder += sent[prev:start]
string_builder += PROTECTION_SYMBOL + str(i)
prev = end
string_builder += sent[prev:]
return string_builder, terms
RE_DEMULTY = re.compile(
"([{} ]+)([0-9]+)".format("".join(set(PROTECTION_SYMBOL))))
def de_mask_term(sent, terms):
"""
对句子进行去保护
"""
string_builder = ""
prev = 0 # 记录上一个term的位置
for obj in RE_DEMULTY.finditer(sent):
start, end = obj.span()
string_builder += sent[prev:start]
prev = end
prefix, num = obj.groups()
if not prefix.replace(" ", ""):
# 如果提取的前缀中只有空格,则跳过
continue
num = int(num)
if num >= len(terms):
continue
term = terms[num]
string_builder += MAPPING[_transform_word(term)]
string_builder += sent[prev:]
return string_builder
def add_words(words):
"""添加词典"""
for src_word, tgt_word in words:
SESSION.merge(Vocab(src_word=src_word, tgt_word=tgt_word))
MAPPING[_transform_word(src_word)] = tgt_word
TERM_FILTER.add(src_word)
SESSION.commit()
def delete_words(words):
"""
从词典中删除
"""
for word in words:
MAPPING.pop(_transform_word(word), None)
TERM_FILTER.remove(word)
SESSION.query(Vocab).filter(Vocab.src_word == word).delete()
SESSION.commit()
def show_words(return_dict=False):
"""
返回当前词典中的全部数据
"""
if return_dict:
return MAPPING
else:
return [[key, value] for key, value in MAPPING.items()]
| [
"00025@yu.lan-bridge.com"
] | 00025@yu.lan-bridge.com |
0da9380cc1898690b9c39d5b4b7ff4392ed376b1 | 753a03d58940847b76203e39b8cb60d775bc8370 | /test/test_systems_generators_dockerignore.py | d95c632c27a1cd1a45a647dd3008e979abe95f4c | [
"MIT"
] | permissive | SanthoshBala18/skelebot | 912d84abef113f86eeb6b05f50ae9c2bd6115d45 | 13055dba1399b56a76a392699aa0aa259ca916a9 | refs/heads/master | 2020-08-03T15:24:11.105137 | 2019-09-27T15:12:25 | 2019-09-27T15:12:25 | 211,799,653 | 0 | 0 | MIT | 2019-09-30T07:19:27 | 2019-09-30T07:19:27 | null | UTF-8 | Python | false | false | 1,284 | py | from unittest import TestCase
from unittest import mock
import skelebot as sb
import os
class TestDockerignore(TestCase):
path = ""
config = None
# Get the path to the current working directory before we mock the function to do so
def setUp(self):
self.path = os.getcwd()
@mock.patch('os.path.expanduser')
@mock.patch('os.getcwd')
def test_buildDockerignore(self, mock_getcwd, mock_expanduser):
folderPath = "{path}/test/files".format(path=self.path)
filePath = "{folder}/.dockerignore".format(folder=folderPath)
mock_expanduser.return_value = "{path}/test/plugins".format(path=self.path)
mock_getcwd.return_value = folderPath
self.config = sb.systems.generators.yaml.loadConfig()
expected= """
# This dockerignore was generated by Skelebot
# Editing this file manually is not advised as all changes will be overwritten by Skelebot
**/*.zip
**/*.RData
**/*.pkl
**/*.csv
**/*.model
**/*.pyc
"""
sb.systems.generators.dockerignore.buildDockerignore(self.config)
data = None
with open(filePath, "r") as file:
data = file.read()
self.assertTrue(data is not None)
self.assertEqual(data, expected)
if __name__ == '__main__':
unittest.main()
| [
"noreply@github.com"
] | SanthoshBala18.noreply@github.com |
973f38ed0345cb23c877e3d788c07856de7093ea | aa97a1a30d3f4cc65b80cfbb76ff88f55e96f67b | /A-Star-Search/search/searchAgents.py | bf0c1649b6b366a5fb4c716f1af59a0f9fa5d13a | [] | no_license | yorhaha/AI-Tasks | a0df0728ef013fd8053d3ef699b04baa38b931ce | 6197b9990f997bcf9f3f5ccb6773513670b35ea0 | refs/heads/main | 2023-09-03T16:50:48.365762 | 2021-10-30T02:04:13 | 2021-10-30T02:04:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 14,856 | py | """
This file contains all of the agents that can be selected to control Pacman. To
select an agent, use the '-p' option when running pacman.py. Arguments can be
passed to your agent using '-a'. For example, to load a SearchAgent that uses
depth first search (dfs), run the following command:
> python pacman.py -p SearchAgent -a fn=depthFirstSearch
Commands to invoke other search strategies can be found in the project
description.
Please only change the parts of the file you are asked to. Look for the lines
that say
"*** YOUR CODE HERE ***"
The parts you fill in start about 3/4 of the way down. Follow the project
description for details.
Good luck and happy searching!
"""
from game import Directions
from game import Agent
from game import Actions
import util
import time
import search
class GoWestAgent(Agent):
"An agent that goes West until it can't."
def getAction(self, state):
"The agent receives a GameState (defined in pacman.py)."
if Directions.WEST in state.getLegalPacmanActions():
return Directions.WEST
else:
return Directions.STOP
#######################################################
# This portion is written for you, but will only work #
# after you fill in parts of search.py #
#######################################################
class SearchAgent(Agent):
"""
This very general search agent finds a path using a supplied search
algorithm for a supplied search problem, then returns actions to follow that
path.
As a default, this agent runs DFS on a PositionSearchProblem to find
location (1,1)
Options for fn include:
depthFirstSearch or dfs
breadthFirstSearch or bfs
aStarSearch or astar
Note: You should NOT change any code in SearchAgent
"""
def __init__(self, fn='depthFirstSearch', prob='PositionSearchProblem', heuristic='nullHeuristic'):
# Warning: some advanced Python magic is employed below to find the right functions and problems
# Get the search function from the name and heuristic
if fn not in dir(search):
raise AttributeError(fn + ' is not a search function in search.py.')
func = getattr(search, fn)
if 'heuristic' not in func.__code__.co_varnames:
print('[SearchAgent] using function ' + fn)
self.searchFunction = func
else:
if heuristic in globals().keys():
heur = globals()[heuristic]
elif heuristic in dir(search):
heur = getattr(search, heuristic)
else:
raise AttributeError(heuristic + ' is not a function in searchAgents.py or search.py.')
print('[SearchAgent] using function %s and heuristic %s' % (fn, heuristic))
# Note: this bit of Python trickery combines the search algorithm and the heuristic
self.searchFunction = lambda x: func(x, heuristic=heur)
# Get the search problem type from the name
if prob not in globals().keys() or not prob.endswith('Problem'):
raise AttributeError(prob + ' is not a search problem type in SearchAgents.py.')
self.searchType = globals()[prob]
print('[SearchAgent] using problem type ' + prob)
def registerInitialState(self, state):
"""
This is the first time that the agent sees the layout of the game
board. Here, we choose a path to the goal. In this phase, the agent
should compute the path to the goal and store it in a local variable.
All of the work is done in this method!
state: a GameState object (pacman.py)
"""
if self.searchFunction == None: raise Exception("No search function provided for SearchAgent")
starttime = time.time()
problem = self.searchType(state) # Makes a new search problem
self.actions = self.searchFunction(problem) # Find a path
totalCost = problem.getCostOfActionSequence(self.actions)
print('Path found with total cost of %d in %.1f seconds' % (totalCost, time.time() - starttime))
if '_expanded' in dir(problem): print('Search nodes expanded: %d' % problem._expanded)
def getAction(self, state):
"""
Returns the next action in the path chosen earlier (in
registerInitialState). Return Directions.STOP if there is no further
action to take.
state: a GameState object (pacman.py)
"""
if 'actionIndex' not in dir(self): self.actionIndex = 0
i = self.actionIndex
self.actionIndex += 1
if i < len(self.actions):
return self.actions[i]
else:
return Directions.STOP
class PositionSearchProblem(search.SearchProblem):
"""
A search problem defines the state space, start state, goal test, child
function and cost function. This search problem can be used to find paths
to a particular point on the pacman board.
The state space consists of (x,y) positions in a pacman game.
Note: this search problem is fully specified; you should NOT change it.
"""
def __init__(self, gameState, costFn = lambda x: 1, goal=(1,1), start=None, warn=True, visualize=True):
"""
Stores the start and goal.
gameState: A GameState object (pacman.py)
costFn: A function from a search state (tuple) to a non-negative number
goal: A position in the gameState
"""
self.walls = gameState.getWalls()
self.startState = gameState.getPacmanPosition()
if start != None: self.startState = start
self.goal = goal
self.costFn = costFn
self.visualize = visualize
if warn and (gameState.getNumFood() != 1 or not gameState.hasFood(*goal)):
print('Warning: this does not look like a regular search maze')
# For display purposes
self._visited, self._visitedlist, self._expanded = {}, [], 0 # DO NOT CHANGE
def getStartState(self):
return self.startState
def isGoalState(self, state):
isGoal = state == self.goal
# For display purposes only
if isGoal and self.visualize:
self._visitedlist.append(state)
import __main__
if '_display' in dir(__main__):
if 'drawExpandedCells' in dir(__main__._display): #@UndefinedVariable
__main__._display.drawExpandedCells(self._visitedlist) #@UndefinedVariable
return isGoal
def expand(self, state):
"""
Returns child states, the actions they require, and a cost of 1.
As noted in search.py:
For a given state, this should return a list of triples,
(child, action, stepCost), where 'child' is a
child to the current state, 'action' is the action
required to get there, and 'stepCost' is the incremental
cost of expanding to that child
"""
children = []
for action in self.getActions(state):
nextState = self.getNextState(state, action)
cost = self.getActionCost(state, action, nextState)
children.append( ( nextState, action, cost) )
# Bookkeeping for display purposes
self._expanded += 1 # DO NOT CHANGE
if state not in self._visited:
self._visited[state] = True
self._visitedlist.append(state)
return children
def getActions(self, state):
possible_directions = [Directions.NORTH, Directions.SOUTH, Directions.EAST, Directions.WEST]
valid_actions_from_state = []
for action in possible_directions:
x, y = state
dx, dy = Actions.directionToVector(action)
nextx, nexty = int(x + dx), int(y + dy)
if not self.walls[nextx][nexty]:
valid_actions_from_state.append(action)
return valid_actions_from_state
def getActionCost(self, state, action, next_state):
assert next_state == self.getNextState(state, action), (
"Invalid next state passed to getActionCost().")
return self.costFn(next_state)
def getNextState(self, state, action):
assert action in self.getActions(state), (
"Invalid action passed to getActionCost().")
x, y = state
dx, dy = Actions.directionToVector(action)
nextx, nexty = int(x + dx), int(y + dy)
return (nextx, nexty)
def getCostOfActionSequence(self, actions):
"""
Returns the cost of a particular sequence of actions. If those actions
include an illegal move, return 999999.
"""
if actions == None: return 999999
x,y= self.getStartState()
cost = 0
for action in actions:
# Check figure out the next state and see whether its' legal
dx, dy = Actions.directionToVector(action)
x, y = int(x + dx), int(y + dy)
if self.walls[x][y]: return 999999
cost += self.costFn((x,y))
return cost
def manhattanHeuristic(position, problem, info={}):
"The Manhattan distance heuristic for a PositionSearchProblem"
xy1 = position
xy2 = problem.goal
return abs(xy1[0] - xy2[0]) + abs(xy1[1] - xy2[1])
def euclideanHeuristic(position, problem, info={}):
"The Euclidean distance heuristic for a PositionSearchProblem"
xy1 = position
xy2 = problem.goal
return ( (xy1[0] - xy2[0]) ** 2 + (xy1[1] - xy2[1]) ** 2 ) ** 0.5
#####################################################
# This portion is incomplete. Time to write code! #
#####################################################
class FoodSearchProblem:
"""
A search problem associated with finding the a path that collects all of the
food (dots) in a Pacman game.
A search state in this problem is a tuple ( pacmanPosition, foodGrid ) where
pacmanPosition: a tuple (x,y) of integers specifying Pacman's position
foodGrid: a Grid (see game.py) of either True or False, specifying remaining food
"""
def __init__(self, startingGameState):
self.start = (startingGameState.getPacmanPosition(), startingGameState.getFood())
self.walls = startingGameState.getWalls()
self.startingGameState = startingGameState
self._expanded = 0 # DO NOT CHANGE
self.heuristicInfo = {} # A dictionary for the heuristic to store information
def getStartState(self):
return self.start
def isGoalState(self, state):
return state[1].count() == 0
def expand(self, state):
"Returns child states, the actions they require, and a cost of 1."
children = []
self._expanded += 1 # DO NOT CHANGE
for action in self.getActions(state):
next_state = self.getNextState(state, action)
action_cost = self.getActionCost(state, action, next_state)
children.append( ( next_state, action, action_cost) )
return children
def getActions(self, state):
possible_directions = [Directions.NORTH, Directions.SOUTH, Directions.EAST, Directions.WEST]
valid_actions_from_state = []
for action in possible_directions:
x, y = state[0]
dx, dy = Actions.directionToVector(action)
nextx, nexty = int(x + dx), int(y + dy)
if not self.walls[nextx][nexty]:
valid_actions_from_state.append(action)
return valid_actions_from_state
def getActionCost(self, state, action, next_state):
assert next_state == self.getNextState(state, action), (
"Invalid next state passed to getActionCost().")
return 1
def getNextState(self, state, action):
assert action in self.getActions(state), (
"Invalid action passed to getActionCost().")
x, y = state[0]
dx, dy = Actions.directionToVector(action)
nextx, nexty = int(x + dx), int(y + dy)
nextFood = state[1].copy()
nextFood[nextx][nexty] = False
return ((nextx, nexty), nextFood)
def getCostOfActionSequence(self, actions):
"""Returns the cost of a particular sequence of actions. If those actions
include an illegal move, return 999999"""
x,y= self.getStartState()[0]
cost = 0
for action in actions:
# figure out the next state and see whether it's legal
dx, dy = Actions.directionToVector(action)
x, y = int(x + dx), int(y + dy)
if self.walls[x][y]:
return 999999
cost += 1
return cost
class AStarFoodSearchAgent(SearchAgent):
"A SearchAgent for FoodSearchProblem using A* and your foodHeuristic"
def __init__(self):
self.searchFunction = lambda prob: search.aStarSearch(prob, foodHeuristic)
self.searchType = FoodSearchProblem
def foodHeuristic(state, problem: FoodSearchProblem):
"""
Your heuristic for the FoodSearchProblem goes here.
This heuristic must be consistent to ensure correctness. First, try to come
up with an admissible heuristic; almost all admissible heuristics will be
consistent as well.
If using A* ever finds a solution that is worse uniform cost search finds,
your heuristic is *not* consistent, and probably not admissible! On the
other hand, inadmissible or inconsistent heuristics may find optimal
solutions, so be careful.
The state is a tuple ( pacmanPosition, foodGrid ) where foodGrid is a Grid
(see game.py) of either True or False. You can call foodGrid.asList() to get
a list of food coordinates instead.
If you want access to info like walls, capsules, etc., you can query the
problem. For example, problem.walls gives you a Grid of where the walls
are.
If you want to *store* information to be reused in other calls to the
heuristic, there is a dictionary called problem.heuristicInfo that you can
use. For example, if you only want to count the walls once and store that
value, try: problem.heuristicInfo['wallCount'] = problem.walls.count()
Subsequent calls to this heuristic can access
problem.heuristicInfo['wallCount']
"""
position, foodGrid = state
"*** YOUR CODE HERE ***"
# TODO: Finished
def getDistance(pos1, pos2, gameStartState):
childProblem = PositionSearchProblem(gameStartState, start=pos1, goal=pos2, warn=False, visualize=False)
solution = search.breadthFirstSearch(childProblem)
return len(solution)
value = 0
for x in range(foodGrid.width):
for y in range(foodGrid.height):
if foodGrid[x][y]:
length = getDistance(position, (x, y), problem.startingGameState)
value = length if value < length else value
return value
| [
"blueice-thu@outlook.com"
] | blueice-thu@outlook.com |
998e74d73408d3c5bf3bf99ce5df17a7a52ee3f8 | 0a40a0d63c8fce17f4a686e69073a4b18657b160 | /test/functional/rpc_bip38.py | b70349a25ed83fb3fc00d631b1bc8dcd9eb3f3e4 | [
"MIT"
] | permissive | MotoAcidic/Cerebellum | 23f1b8bd4f2170c1ed930eafb3f2dfff07df1c24 | 6aec42007c5b59069048b27db5a8ea1a31ae4085 | refs/heads/main | 2023-05-13T06:31:23.481786 | 2021-06-09T15:28:28 | 2021-06-09T15:28:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,025 | py | #!/usr/bin/env python3
# Copyright (c) 2018-2019 The CEREBELLUM developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Test RPC commands for BIP38 encrypting and decrypting addresses."""
from test_framework.test_framework import CerebellumTestFramework
from test_framework.util import assert_equal
class Bip38Test(CerebellumTestFramework):
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 2
def run_test(self):
password = 'test'
address = self.nodes[0].getnewaddress()
privkey = self.nodes[0].dumpprivkey(address)
self.log.info('encrypt address %s' % (address))
bip38key = self.nodes[0].bip38encrypt(address, password)['Encrypted Key']
self.log.info('decrypt bip38 key %s' % (bip38key))
assert_equal(self.nodes[1].bip38decrypt(bip38key, password)['Address'], address)
if __name__ == '__main__':
Bip38Test().main()
| [
"travisfinch01@gmail.com"
] | travisfinch01@gmail.com |
89a610ca7cd1c5022c19cb112a2eab06b5bf334a | e9b06f7b8b210c550879c1e8c484b42719ccd633 | /custom_components/samsungtv_smart/api/samsungws.py | be8b20e1dd6ee7b4498cd6934fd4be4cf43f6dcf | [] | no_license | eplantequebec/Home-Assistant-Config | a5b69d3e2fa21068dc15b20a8988a24440140300 | ed05566ee476ec4490efa9b9d5bfdf55fca9a808 | refs/heads/master | 2021-08-17T00:11:15.805600 | 2021-07-18T23:40:23 | 2021-07-18T23:40:23 | 201,519,408 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 27,202 | py | """
SamsungTVWS - Samsung Smart TV WS API wrapper
Copyright (C) 2019 Xchwarze
Copyright (C) 2020 Ollo69
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1335 USA
"""
import base64
import json
import logging
import re
import requests
import ssl
import subprocess
import sys
import time
import uuid
import websocket
from datetime import datetime
from enum import Enum
from threading import Thread, Lock
from yarl import URL
from . import exceptions
from . import shortcuts
PING_MATCHER = re.compile(
r"(?P<min>\d+.\d+)\/(?P<avg>\d+.\d+)\/(?P<max>\d+.\d+)\/(?P<mdev>\d+.\d+)"
)
PING_MATCHER_BUSYBOX = re.compile(
r"(?P<min>\d+.\d+)\/(?P<avg>\d+.\d+)\/(?P<max>\d+.\d+)"
)
WIN32_PING_MATCHER = re.compile(r"(?P<min>\d+)ms.+(?P<max>\d+)ms.+(?P<avg>\d+)ms")
MIN_APP_SCAN_INTERVAL = 10
MAX_WS_PING_INTERVAL = 10
TYPE_DEEP_LINK = "DEEP_LINK"
TYPE_NATIVE_LAUNCH = "NATIVE_LAUNCH"
_LOGGING = logging.getLogger(__name__)
def gen_uuid():
return str(uuid.uuid4())
class App:
def __init__(self, app_id, app_name, app_type):
self.app_id = app_id
self.app_name = app_name
self.app_type = app_type
class ArtModeStatus(Enum):
Unsupported = 0
Unavailable = 1
Off = 2
On = 3
class Ping:
"""The Class for handling the data retrieval."""
def __init__(self, host, count):
"""Initialize the data object."""
self._ip_address = host
self._count = count
self.available = False
if sys.platform == "win32":
self._ping_cmd = [
"ping",
"-n",
str(self._count),
"-w",
"2000",
self._ip_address,
]
else:
self._ping_cmd = [
"ping",
"-n",
"-q",
"-c",
str(self._count),
"-W2",
self._ip_address,
]
def ping(self):
"""Send ICMP echo request and return details if success."""
pinger = subprocess.Popen(
self._ping_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
try:
out = pinger.communicate()
_LOGGING.debug("Output is %s", str(out))
if sys.platform == "win32":
match = WIN32_PING_MATCHER.search(str(out).split("\n")[-1])
rtt_min, rtt_avg, rtt_max = match.groups()
elif "max/" not in str(out):
match = PING_MATCHER_BUSYBOX.search(str(out).split("\n")[-1])
rtt_min, rtt_avg, rtt_max = match.groups()
else:
match = PING_MATCHER.search(str(out).split("\n")[-1])
rtt_min, rtt_avg, rtt_max, rtt_mdev = match.groups()
return True
except (subprocess.CalledProcessError, AttributeError):
return False
class SamsungTVWS:
_WS_ENDPOINT_REMOTE_CONTROL = "/api/v2/channels/samsung.remote.control"
_WS_ENDPOINT_APP_CONTROL = "/api/v2"
_WS_ENDPOINT_ART = "/api/v2/channels/com.samsung.art-app"
_REST_URL_FORMAT = "http://{host}:8001/api/v2/{append}"
def __init__(
self,
host,
token=None,
token_file=None,
port=8001,
timeout=None,
key_press_delay=1,
name="SamsungTvRemote",
app_list=None,
):
self.host = host
self.token = token
self.token_file = token_file
self.port = port
self.timeout = None if timeout == 0 else timeout
self.key_press_delay = key_press_delay
self.name = name
self.connection = None
self._app_list = app_list
self._artmode_status = ArtModeStatus.Unsupported
self._power_on_requested = False
self._power_on_requested_time = datetime.min
self._installed_app = {}
self._running_app = None
self._app_type = {}
self._sync_lock = Lock()
self._last_app_scan = datetime.min
self._last_ping = datetime.min
self._is_connected = False
self._ws_remote = None
self._client_remote = None
self._ws_control = None
self._client_control = None
self._ws_art = None
self._client_art = None
self._client_art_supported = 2
self._ping = Ping(self.host, 1)
def __enter__(self):
return self
def __exit__(self, type, value, traceback):
self.close()
def _serialize_string(self, string):
if isinstance(string, str):
string = str.encode(string)
return base64.b64encode(string).decode("utf-8")
def _is_ssl_connection(self):
return self.port == 8002
def _format_websocket_url(self, path, is_ssl=False, use_token=True):
scheme = "wss" if is_ssl else "ws"
if is_ssl and use_token:
token = self._get_token()
else:
token = ""
new_uri = URL.build(
scheme=scheme,
host=self.host,
port=self.port,
path=path,
query={"name": self._serialize_string(self.name)}
)
if token:
return str(new_uri.update_query({"token": token}))
return str(new_uri)
def _format_rest_url(self, append=""):
params = {
"host": self.host,
"append": append,
}
return self._REST_URL_FORMAT.format(**params)
def _get_token(self):
if self.token_file is not None:
try:
with open(self.token_file, "r") as token_file:
return token_file.readline()
except:
return ""
else:
return self.token
def _set_token(self, token):
_LOGGING.info("New token %s", token)
if self.token_file is not None:
_LOGGING.debug("Save token to file", token)
with open(self.token_file, "w") as token_file:
token_file.write(token)
else:
self.token = token
def _ws_send(self, command, key_press_delay=None, *, use_control=False, ws_socket=None):
using_remote = False
if not use_control:
if self._ws_remote:
connection = self._ws_remote
using_remote = True
else:
connection = self.open()
elif ws_socket:
connection = ws_socket
else:
return
payload = json.dumps(command)
connection.send(payload)
if using_remote:
# we consider a message sent valid as a ping
self._last_ping = datetime.now()
if key_press_delay is None:
time.sleep(self.key_press_delay)
elif key_press_delay > 0:
time.sleep(key_press_delay)
def _rest_request(self, target, method="GET"):
url = self._format_rest_url(target)
try:
if method == "POST":
return requests.post(url, timeout=self.timeout)
elif method == "PUT":
return requests.put(url, timeout=self.timeout)
elif method == "DELETE":
return requests.delete(url, timeout=self.timeout)
else:
return requests.get(url, timeout=self.timeout)
except requests.ConnectionError:
raise exceptions.HttpApiError(
"TV unreachable or feature not supported on this model."
)
def _process_api_response(self, response):
try:
return json.loads(response)
except json.JSONDecodeError:
_LOGGING.debug(
"Failed to parse response from TV. response text: %s", response
)
raise exceptions.ResponseError(
"Failed to parse response from TV. Maybe feature not supported on this model"
)
def _client_remote_thread(self):
if self._ws_remote:
return
is_ssl = self._is_ssl_connection()
url = self._format_websocket_url(
self._WS_ENDPOINT_REMOTE_CONTROL,
is_ssl=is_ssl
)
sslopt = {"cert_reqs": ssl.CERT_NONE} if is_ssl else {}
self._ws_remote = websocket.WebSocketApp(
url,
on_message=self._on_message_remote,
on_ping=self._on_ping_remote,
)
_LOGGING.debug("Thread SamsungRemote started")
# we set ping interval (1 hour) only to enable multi-threading mode
# on socket. TV do not answer to ping but send ping to client
self._ws_remote.run_forever(
sslopt=sslopt, ping_interval=3600, ping_timeout=2
)
self._is_connected = False
if self._ws_art:
self._ws_art.close()
if self._ws_control:
self._ws_control.close()
self._ws_remote.close()
self._ws_remote = None
_LOGGING.debug("Thread SamsungRemote terminated")
def _on_ping_remote(self, payload):
_LOGGING.debug("Received ping %s, sending pong", payload)
self._last_ping = datetime.now()
if self._ws_remote.sock:
try:
self._ws_remote.sock.pong(payload)
except Exception as ex:
_LOGGING.warning("send_pong failed: {}".format(ex))
def _on_message_remote(self, message):
response = self._process_api_response(message)
_LOGGING.debug(response)
event = response.get("event")
if not event:
return
# we consider a message valid as a ping
self._last_ping = datetime.now()
if event == "ms.channel.connect":
_LOGGING.debug("Message remote: received connect")
if response.get("data") and response.get("data").get("token"):
token = response.get("data").get("token")
_LOGGING.debug("Got token %s", token)
self._set_token(token)
self._is_connected = True
self._request_apps_list()
self.start_client(start_all=True)
elif event == "ed.installedApp.get":
_LOGGING.debug("Message remote: received installedApp")
self._handle_installed_app(response)
# self.start_client(start_all=True)
elif event == "ed.edenTV.update":
_LOGGING.debug("Message remote: received edenTV")
self.get_running_app(force_scan=True)
def _request_apps_list(self):
_LOGGING.debug("Request app list")
self._ws_send(
{
"method": "ms.channel.emit",
"params": {"event": "ed.installedApp.get", "to": "host"},
},
key_press_delay=0,
)
def _handle_installed_app(self, response):
list_app = response.get("data", {}).get("data")
installed_app = {}
for app_info in list_app:
app_id = app_info["appId"]
_LOGGING.debug("Found app: %s", app_id)
app = App(app_id, app_info["name"], app_info["app_type"])
installed_app[app_id] = app
self._installed_app = installed_app
def _client_control_thread(self):
if self._ws_control:
return
is_ssl = self._is_ssl_connection()
url = self._format_websocket_url(
self._WS_ENDPOINT_APP_CONTROL,
is_ssl=is_ssl,
use_token=False
)
sslopt = {"cert_reqs": ssl.CERT_NONE} if is_ssl else {}
self._ws_control = websocket.WebSocketApp(
url,
on_message=self._on_message_control,
)
_LOGGING.debug("Thread SamsungControl started")
self._ws_control.run_forever(sslopt=sslopt)
self._ws_control.close()
self._ws_control = None
_LOGGING.debug("Thread SamsungControl terminated")
def _on_message_control(self, message):
response = self._process_api_response(message)
_LOGGING.debug(response)
result = response.get("result")
if result:
self._set_running_app(response)
return
error = response.get("error")
if error:
self._manage_control_err(response)
return
event = response.get("event")
if not event:
return
if event == "ms.channel.connect":
_LOGGING.debug("Message control: received connect")
self.get_running_app()
def _set_running_app(self, response):
app_id = response.get("id")
if not app_id:
return
result = response.get("result")
if result is None:
return
elif isinstance(result, bool):
is_running = result
else:
is_running = result.get("visible")
if is_running is None:
return
if self._running_app:
if is_running and app_id != self._running_app:
_LOGGING.debug("app running: %s", app_id)
self._running_app = app_id
elif not is_running and app_id == self._running_app:
_LOGGING.debug("app stopped: %s", app_id)
self._running_app = None
elif is_running:
_LOGGING.debug("app running: %s", app_id)
self._running_app = app_id
def _manage_control_err(self, response):
app_id = response.get("id")
if not app_id:
return
error_code = response.get("error", {}).get("code", 0)
if error_code == 404: # Not found error
if self._installed_app:
if app_id not in self._installed_app:
_LOGGING.error("App ID %s not found", app_id)
return
# app_type = self._app_type.get(app_id)
# if app_type is None:
# _LOGGING.info(
# "App ID %s with type DEEP_LINK not found, set as NATIVE_LAUNCH",
# app_id,
# )
# self._app_type[app_id] = 4
def _get_app_status(self, app_id, app_type):
_LOGGING.debug("Get app status: AppID: %s, AppType: %s", app_id, app_type)
# if app_type == 4:
# method = "ms.webapplication.get"
# else:
# method = "ms.application.get"
if app_type == 4: # app type 4 always return not found error
return
method = "ms.application.get"
self._ws_send(
{
"id": app_id,
"method": method,
"params": {"id": app_id},
},
key_press_delay=0,
use_control=True,
ws_socket=self._ws_control,
)
def _client_art_thread(self):
if self._ws_art:
return
is_ssl = self._is_ssl_connection()
url = self._format_websocket_url(
self._WS_ENDPOINT_ART,
is_ssl=is_ssl,
use_token=False
)
sslopt = {"cert_reqs": ssl.CERT_NONE} if is_ssl else {}
self._ws_art = websocket.WebSocketApp(
url,
on_message=self._on_message_art,
)
_LOGGING.debug("Thread SamsungArt started")
self._ws_art.run_forever(sslopt=sslopt)
self._ws_art.close()
self._ws_art = None
_LOGGING.debug("Thread SamsungArt terminated")
def _on_message_art(self, message):
response = self._process_api_response(message)
_LOGGING.debug(response)
event = response.get("event")
if not event:
return
if event == "ms.channel.connect":
_LOGGING.debug("Message art: received connect")
self._client_art_supported = 1
elif event == "ms.channel.ready":
_LOGGING.debug("Message art: channel ready")
self._get_artmode_status()
elif event == "d2d_service_message":
_LOGGING.debug("Message art: d2d message")
self._handle_artmode_status(response)
def _get_artmode_status(self):
_LOGGING.debug("Sending get_art_status")
msg_data = {
"request": "get_artmode_status",
"id": gen_uuid(),
}
self._ws_send(
{
"method": "ms.channel.emit",
"params": {
"data": json.dumps(msg_data),
"to": "host",
"event": "art_app_request",
},
},
key_press_delay=0,
use_control=True,
ws_socket=self._ws_art,
)
def _handle_artmode_status(self, response):
data_str = response.get("data")
if not data_str:
return
data = self._process_api_response(data_str)
event = data.get("event", "")
if event == "art_mode_changed":
status = data.get("status", "")
if status == "on":
artmode_status = ArtModeStatus.On
else:
artmode_status = ArtModeStatus.Off
elif event == "artmode_status":
value = data.get("value", "")
if value == "on":
artmode_status = ArtModeStatus.On
else:
artmode_status = ArtModeStatus.Off
elif event == "go_to_standby":
artmode_status = ArtModeStatus.Unavailable
elif event == "wakeup":
self._get_artmode_status()
return
else:
# Unknown message
return
if self._power_on_requested and artmode_status != ArtModeStatus.Unavailable:
if artmode_status == ArtModeStatus.On:
self.send_key("KEY_POWER", key_press_delay=0)
self._power_on_requested = False
self._artmode_status = artmode_status
@property
def is_connected(self):
return self._is_connected
@property
def artmode_status(self):
return self._artmode_status
@property
def installed_app(self):
return self._installed_app
@property
def running_app(self):
return self._running_app
def ping_device(self):
result = self._ping.ping()
# check ws ping/pong
call_time = datetime.now()
if result and self._ws_remote:
difference = (call_time - self._last_ping).total_seconds()
result = difference < MAX_WS_PING_INTERVAL
if not result:
self.stop_client()
if self._artmode_status != ArtModeStatus.Unsupported:
self._artmode_status = ArtModeStatus.Unavailable
if self._power_on_requested:
difference = (call_time - self._power_on_requested_time).total_seconds()
if difference > 20:
self._power_on_requested = False
return result
def set_power_on_request(self):
self._power_on_requested = True
self._power_on_requested_time = datetime.now()
def get_running_app(self, *, force_scan=False):
if not self._ws_control:
return
with self._sync_lock:
call_time = datetime.now()
difference = (call_time - self._last_app_scan).total_seconds()
if (difference < MIN_APP_SCAN_INTERVAL and not force_scan) or difference < 1:
return
self._last_app_scan = call_time
if self._app_list is not None:
app_to_check = {}
for app_name, app_id in self._app_list.items():
app = None
if self._installed_app:
app = self._installed_app.get(app_id)
else:
app_type = self._app_type.get(app_id, 2)
if app_type <= 4:
app = App(app_id, app_name, app_type)
if app:
app_to_check[app_id] = app
else:
app_to_check = self._installed_app
for app in app_to_check.values():
self._get_app_status(app.app_id, app.app_type)
def start_client(self, *, start_all=False):
"""Start all thread that connect to the TV websocket"""
if self._client_remote is None or not self._client_remote.is_alive():
self._client_remote = Thread(target=self._client_remote_thread)
self._client_remote.name = "SamsungRemote"
self._client_remote.setDaemon(True)
self._client_remote.start()
if start_all:
if self._client_control is None or not self._client_control.is_alive():
self._client_control = Thread(target=self._client_control_thread)
self._client_control.name = "SamsungControl"
self._client_control.setDaemon(True)
self._client_control.start()
if (
self._client_art_supported > 0 and
(self._client_art is None or not self._client_art.is_alive())
):
if self._client_art_supported > 1:
self._client_art_supported = 0
self._client_art = Thread(target=self._client_art_thread)
self._client_art.name = "SamsungArt"
self._client_art.setDaemon(True)
self._client_art.start()
def stop_client(self):
if self._ws_remote:
self._ws_remote.close()
def open(self):
if self.connection is not None:
return self.connection
is_ssl = self._is_ssl_connection()
url = self._format_websocket_url(
self._WS_ENDPOINT_REMOTE_CONTROL,
is_ssl=is_ssl
)
sslopt = {"cert_reqs": ssl.CERT_NONE} if is_ssl else {}
_LOGGING.debug("WS url %s", url)
connection = websocket.create_connection(url, self.timeout, sslopt=sslopt)
response = self._process_api_response(connection.recv())
if response["event"] == "ms.channel.connect":
if response.get("data") and response.get("data").get("token"):
token = response.get("data").get("token")
_LOGGING.debug("Got token %s", token)
self._set_token(token)
else:
self.close()
raise exceptions.ConnectionFailure(response)
self.connection = connection
return connection
def close(self):
if self.connection:
self.connection.close()
self.connection = None
_LOGGING.debug("Connection closed.")
def send_key(self, key, key_press_delay=None, cmd="Click"):
_LOGGING.debug("Sending key %s", key)
self._ws_send(
{
"method": "ms.remote.control",
"params": {
"Cmd": cmd,
"DataOfCmd": key,
"Option": "false",
"TypeOfRemote": "SendRemoteKey",
},
},
key_press_delay,
)
def hold_key(self, key, seconds):
self.send_key(key, key_press_delay=0, cmd="Press")
time.sleep(seconds)
self.send_key(key, key_press_delay=0, cmd="Release")
def move_cursor(self, x, y, duration=0):
self._ws_send(
{
"method": "ms.remote.control",
"params": {
"Cmd": "Move",
"Position": {"x": x, "y": y, "Time": str(duration)},
"TypeOfRemote": "ProcessMouseDevice",
},
},
key_press_delay=0,
)
def run_app(self, app_id, action_type="", meta_tag="", *, use_remote=False):
if not action_type:
app = self._installed_app.get(app_id)
if app:
app_type = app.app_type
else:
app_type = self._app_type.get(app_id, 2)
action_type = TYPE_DEEP_LINK if app_type == 2 else TYPE_NATIVE_LAUNCH
elif action_type != TYPE_NATIVE_LAUNCH:
action_type = TYPE_DEEP_LINK
_LOGGING.debug(
"Sending run app app_id: %s app_type: %s meta_tag: %s",
app_id,
action_type,
meta_tag,
)
if self._ws_control and action_type == TYPE_DEEP_LINK and not use_remote:
self._ws_send(
{
"id": app_id,
"method": "ms.application.start",
"params": {"id": app_id},
},
key_press_delay=0,
use_control=True,
ws_socket=self._ws_control,
)
return
self._ws_send(
{
"method": "ms.channel.emit",
"params": {
"event": "ed.apps.launch",
"to": "host",
"data": {
# action_type: NATIVE_LAUNCH / DEEP_LINK
# app_type == 2 ? 'DEEP_LINK' : 'NATIVE_LAUNCH',
"action_type": action_type,
"appId": app_id,
"metaTag": meta_tag,
},
},
},
key_press_delay=0,
)
def open_browser(self, url):
_LOGGING.debug("Opening url in browser %s", url)
self.run_app("org.tizen.browser", TYPE_NATIVE_LAUNCH, url)
def rest_device_info(self):
_LOGGING.debug("Get device info via rest api")
response = self._rest_request("")
return self._process_api_response(response.text)
def rest_app_status(self, app_id):
_LOGGING.debug("Get app %s status via rest api", app_id)
response = self._rest_request("applications/" + app_id)
return self._process_api_response(response.text)
def rest_app_run(self, app_id):
_LOGGING.debug("Run app %s via rest api", app_id)
response = self._rest_request("applications/" + app_id, "POST")
return self._process_api_response(response.text)
def rest_app_close(self, app_id):
_LOGGING.debug("Close app %s via rest api", app_id)
response = self._rest_request("applications/" + app_id, "DELETE")
return self._process_api_response(response.text)
def rest_app_install(self, app_id):
_LOGGING.debug("Install app %s via rest api", app_id)
response = self._rest_request("applications/" + app_id, "PUT")
return self._process_api_response(response.text)
def shortcuts(self):
return shortcuts.SamsungTVShortcuts(self)
| [
"eric@plante.ca"
] | eric@plante.ca |
b08dd544b2f32a4764ba76171b76226e77090569 | 2628f51ef7ab5aae691dc72556ab312cc5b2a876 | /venv/lib/python3.8/site-packages/unyt/_version.py | c41cbda0701c4538c26555538502bd76e89985b4 | [
"BSD-3-Clause"
] | permissive | Jack-kelly-22/ps-4 | f933a8bb7bf5c865d846a30a5e0c8352c448a18d | fbbf327f1717bbd1902f437147640dfdf6aa118c | refs/heads/master | 2023-02-10T23:56:48.499720 | 2021-01-05T21:43:59 | 2021-01-05T21:43:59 | 327,124,314 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 498 | py |
# This file was generated by 'versioneer.py' (0.18) from
# revision-control system data, or from the parent directory name of an
# unpacked source archive. Distribution tarballs contain a pre-generated copy
# of this file.
import json
version_json = '''
{
"date": "2020-10-05T14:17:00-0600",
"dirty": false,
"error": null,
"full-revisionid": "eeefa00a2fddbf0dba6ab854e968ef43e31f851e",
"version": "v2.8.0"
}
''' # END VERSION_JSON
def get_versions():
return json.loads(version_json)
| [
"Jacklaxjk@gmail.com"
] | Jacklaxjk@gmail.com |
b768abfeda8056001f6bd64fe0e1e40d66c85e89 | c7bb49430a2651955e545c3ae4907e870a7f2568 | /patterns/Observer/observer.py | 504ceae4e97e41bceceda740bb0b9bffbce54681 | [] | no_license | jvrcavalcanti/Algorithms | 133dd29d985c41560b212ed1b204d8220bd89bc9 | d83f8e61d959e9da970d6270b373eaea39701927 | refs/heads/master | 2020-12-31T22:34:25.696750 | 2020-06-16T18:25:58 | 2020-06-16T18:25:58 | 239,056,779 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 116 | py | from abc import ABC, abstractmethod
class Observer():
@abstractmethod
def handle(self, state):
pass | [
"jonnyvictor01@gmail.com"
] | jonnyvictor01@gmail.com |
a564fadbeb8da66f7e99e8a1c5af6eec0923b3f2 | 5160cd2cf1ff8aa1d48935a783ba39e59f8d9ca7 | /src/py.py | bbfff52bf7a351f5fc2d85e6364080af152fd517 | [] | no_license | harry-uglow/BananaBeats | eb9df6f9458e1d12a406f0d96dbe9980f278af6e | 2e0eb211f5646be5675237c5c1c70d2feed8c57f | refs/heads/master | 2021-01-19T12:47:57.520881 | 2017-08-29T20:36:19 | 2017-08-29T20:36:19 | 100,810,285 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,279 | py | import subprocess
import threading
import sys
import time
import pygame
import os
import signal
import python.adafruit_libraries.Adafruit_MPR121.MPR121 as MPR121
print('strt')
p = subprocess.Popen(['./main'], stdin = subprocess.PIPE, close_fds=True, shell=True)
# Maybe add shell=True if it doesn't work
print('mon')
monitorInputs()
def monitorInputs():
# Create MPR121 instance
device = MPR121.MPR121()
if not device.begin():
sys.exit(1)
pygame.mixer.pre_init(44100, -16, 12, 2048)
pygame.init()
# Main loop to play the corroect sound every time a pin is touched
last_touched = device.touched()
while True:
current_touched = device.touched()
for i in range(12):
pin_bit = 1 << i
if current_touched & pin_bit and not last_touched & pin_bit:
p.stdin.write('t' + i + '\n')
print('t' + i)
p.stdin.flush()
print('Pin ', i, ' touched') # Get rid of this?
if not current_touched & pin_bit and last_touched & pin_bit:
p.stdin.write('r' + i + '\n')
p.stdin.flush() # Get rid of this?
print('Pin ', i, ' released')
last_touched = current_touched
time.sleep(0.1)
| [
"mauriceyap@hotmail.co.uk"
] | mauriceyap@hotmail.co.uk |
a1e59a682c3d21feebcf29921ab2ec3829992fd1 | de3a062138d3fbdfcf76e09915be553aea450e61 | /Tests.py | 2b1454136905d54427a60069f63bcf68cbcf68c4 | [] | no_license | AlyonaMon/autotests | be9d0793ad36f917d7315325c3071042b592207f | 4457f7f3f5ef65b1b67b08221e43693bf7c742f3 | refs/heads/master | 2021-01-11T18:54:34.717373 | 2016-11-14T21:35:02 | 2016-11-14T21:35:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 7,032 | py | # coding=utf-8
import json
import logging
logger = logging.getLogger(__name__)
logging.basicConfig(datefmt='%m/%d/%Y %I:%M:%S %p', filename="msg.log",
format='%(asctime)s %(name)-20s %(levelname)-8s %(message)s', filemode='w')
from xml.etree import ElementTree
import xml.etree.ElementTree as etree
from xml.dom import minidom
from xml.etree.ElementTree import Element, SubElement, Comment
import csv
global response, test_dic_for_case, name_testsuite, name_testcase
def prettify(elem):
rough_string = ElementTree.tostring(elem, 'utf-8')
reparsed = minidom.parseString(rough_string)
return reparsed.toprettyxml(indent=" ")
# def XML_FILE(name_testsuite, name_testcase, m):
# # print name_testcase, name_testsuite
# top = Element('testsuites', name=str(name_testsuite))
# parent = SubElement(top, 'testsuite', name=str(name_testcase))
# # children = [Element('testsuite', name=str(Tests(response)))]
#
# top.extend(parent)
# return prettify(top)
def STATUS_CODE(response):
# print response.status_code
if response.status_code == 200 or response.status_code == 201:
text = "Response code is 200 or 201"
result = True
else:
text = "Response code is " + str(response.status_code)
result = False
text = text + ": " + str(result)
# print result
return text
def STATUS_CODE_NAME(response):
if response.reason == 'OK':
text = "Status code name has string '" + str(response.reason) + "'"
result = True
else:
text = "Status code name '" + str(response.reason) + "'"
result = False
text = text + ": " + str(result)
return text
def RESPONSE_TIME(response):
# if response.elapsed >
time = response.elapsed.total_seconds()
if time < 0.5:
text = "Response time is less than 0.5ms"
result = time
else:
text = "Response time is more than 0.5ms"
result = "False, time is " + str(time)
text = text + ": " + str(result) + "ms"
return text
def CONTENT_TYPE_IS_PRESENT(response):
if response.content != "":
text = "Content type is present"
result = True
else:
text = "Content type is not present"
result = False
text = text + ": " + str(result)
return text
def RESPONSE_HAS_ACCKEY(r):
text = "Access Key present in response "
if "access_key" in r:
result = r["access_key"]
logger.info('Authentication is successful')
logger.info('Access Key present in response: %s', str(result))
text = text + ": " + str(True)
elif "Message" in r:
logger.setLevel(logging.ERROR)
logger.error('Access Key absent in response: %s', str(r))
text = text + ": " + str(False)
else:
logger.setLevel(logging.ERROR)
logger.error('Fails for an paar App key - Access Key')
text = text + ": " + str(False)
# print text
return text
#
# def _is_empty(text):
# return not text or text.isspace()
"""def indent(elem, level=0, tab=' '):
i = '\n' + level * tab
j = i + tab # j = i_n+1
indent_parent = False
if len(elem):
if _is_empty(elem.text):
# Indent before element.
elem.text = j
if _is_empty(elem.tail):
# Indent after element.
elem.tail = i
prev = None
for child in elem:
indent_block = indent(child, level + 1, tab)
if indent_block or len(child) > 1:
# This child or some lower child block should be super-indented.
if len(elem) == 1:
# Pass indentation up because this level only has one child.
indent_parent = True
else:
# Surround this block with newlines for emphasis.
if prev is not None and _is_empty(prev.tail):
prev.tail = '\n' + j
if _is_empty(child.tail):
child.tail = '\n' + j
prev = child
if _is_empty(child.tail):
# Last child element determines closing tag tab level.
child.tail = i
else:
if level and _is_empty(elem.tail):
elem.tail = i
return indent_parent"""
def Tests(response, test_dic_for_case, name_testcase, top):
parent = SubElement(top, 'testsuite', name=str(name_testcase))
if "STATUS_CODE" in test_dic_for_case:
m = STATUS_CODE(response)
children = SubElement(parent, 'testcase', name=str(m))
if "False" in m:
children_1 = SubElement(children, 'failure', type="AssertionFailure")
children_2 = SubElement(children_1, 'failed')
children_2.text = "![CDATA[Failed]]"
children_1.extend(children_2)
else:
parent.extend(children)
if "STATUS_CODE_NAME" in test_dic_for_case:
m = STATUS_CODE_NAME(response)
children = SubElement(parent, 'testcase', name=str(m))
if "False" in m:
children_1 = SubElement(children, 'failure', type="AssertionFailure")
children_2 = SubElement(children_1, 'failed')
children_2.text = "![CDATA[Failed]]"
children_1.extend(children_2)
else:
parent.extend(children)
if "RESPONSE_TIME" in test_dic_for_case:
m = RESPONSE_TIME(response)
children = SubElement(parent, 'testcase', name=str(m))
if 'False' in m:
children_1 = SubElement(children, 'failure', type="AssertionFailure")
children_2 = SubElement(children_1, 'failed')
children_2.text = "![CDATA[Failed]]"
children_1.extend(children_2)
else:
parent.extend(children)
if "CONTENT_TYPE_IS_PRESENT" in test_dic_for_case:
m = CONTENT_TYPE_IS_PRESENT(response)
children = SubElement(parent, 'testcase', name=str(m))
if 'False' in m:
children_1 = SubElement(children, 'failure', type="AssertionFailure")
children_2 = SubElement(children_1, 'failed')
children_2.text = "![CDATA[Failed]]"
children_1.extend(children_2)
else:
parent.extend(children)
if "RESPONSE_HAS_ACCKEY" in test_dic_for_case:
dict_response = response.__dict__["_content"]
r = json.loads(dict_response)
m = RESPONSE_HAS_ACCKEY(r)
# print m
children = SubElement(parent, 'testcase', name=str(m))
if 'False' in m:
children_1 = SubElement(children, 'failure', type="AssertionFailure")
children_2 = SubElement(children_1, 'failed')
children_2.text = "![CDATA[Failed]]"
children_1.extend(children_2)
else:
parent.extend(children)
| [
"evmon@ex.ua"
] | evmon@ex.ua |
392d504d2b4be2f95ee073ec8a8beccce1d6bd49 | d1a111119ec7aed797d1487b9a5740217d43effc | /students/templatetags/tags.py | 28e1e2ea85fd52a4ce90660cb5ee127a9c1a29cf | [] | no_license | shurique/student_task | 3f693f20691971f9e7fee03e8cc4cffd130aa53b | 2cf873adbc8657ac31e6efc4c12805c0387a67d7 | refs/heads/master | 2021-01-10T22:20:51.941404 | 2012-02-03T08:31:30 | 2012-02-03T08:31:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 851 | py | #-*-coding: utf-8 -*-
from django import template
from django.core import urlresolvers
from django.contrib.contenttypes.models import ContentType
register = template.Library()
class EditListNode(template.Node):
def __init__(self, value):
self.var = template.Variable(value)
def render(self, context):
var = self.var.resolve(context)
ctype = ContentType.objects.get_for_model(type(var))
link = u'admin:%s_%s_change' % (ctype.app_label, ctype.model)
return urlresolvers.reverse(link, args=(var.id,))
@register.tag
def edit_list(parser, token):
try:
tag_name, value = token.split_contents()
except ValueError:
msg = u'Тег %r требует один аргумент' % token.split_contents()[0]
raise template.TemplateSyntaxError(msg)
return EditListNode(value)
| [
"godetskiy@ya.ru"
] | godetskiy@ya.ru |
fe57a510beaf39e45c60b51b452a5c31026ab28d | 3ecce3646d66033d214db3749be63e78d4f663e9 | /Assignment 4/load_utils.py | 9b4f3fc6a5fb3ab71f6dc4b5ce5cbba2fb817a22 | [
"Apache-2.0"
] | permissive | pradyumnakr/EIP-3.0 | f36aaed042d65beef163b08dbb0de05139e3fee7 | 67bc5168b169406d7567f3d1d3b9b35fc7dd61af | refs/heads/master | 2022-01-27T15:23:00.013031 | 2019-07-28T17:25:35 | 2019-07-28T17:25:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,699 | py | def load_tiny_imagenet(path, dtype=np.float32, subtract_mean=True):
# First load wnids
with open(os.path.join(path, 'wnids.txt'), 'r') as f:
wnids = [x.strip() for x in f]
# Map wnids to integer labels
wnid_to_label = {wnid: i for i, wnid in enumerate(wnids)}
# Use words.txt to get names for each class
with open(os.path.join(path, 'words.txt'), 'r') as f:
wnid_to_words = dict(line.split('\t') for line in f)
for wnid, words in wnid_to_words.items():
wnid_to_words[wnid] = [w.strip() for w in words.split(',')]
class_names = [wnid_to_words[wnid] for wnid in wnids]
# Next load training data.
X_train = []
y_train = []
for i, wnid in enumerate(wnids):
if (i + 1) % 20 == 0:
print(f'loading training data for synset {(i + 1)}/{len(wnids)}')
# To figure out the filenames we need to open the boxes file
boxes_file = os.path.join(path, 'train', wnid, '%s_boxes.txt' % wnid)
with open(boxes_file, 'r') as f:
filenames = [x.split('\t')[0] for x in f]
num_images = len(filenames)
X_train_block = np.zeros((num_images, 64, 64, 3), dtype=dtype)
y_train_block = wnid_to_label[wnid] * np.ones(num_images, dtype=np.int64)
for j, img_file in enumerate(filenames):
img_file = os.path.join(path, 'train', wnid, 'images', img_file)
img = imread(img_file)
if img.ndim == 2:
## grayscale file
img.shape = (64, 64, 1)
X_train_block[j] = img.transpose(1, 0, 2)
X_train.append(X_train_block)
y_train.append(y_train_block)
# We need to concatenate all training data
X_train = np.concatenate(X_train, axis=0)
y_train = np.concatenate(y_train, axis=0)
# Next load validation data
with open(os.path.join(path, 'val', 'val_annotations.txt'), 'r') as f:
img_files = []
val_wnids = []
for line in f:
img_file, wnid = line.split('\t')[:2]
img_files.append(img_file)
val_wnids.append(wnid)
num_val = len(img_files)
y_val = np.array([wnid_to_label[wnid] for wnid in val_wnids])
X_val = np.zeros((num_val, 64, 64, 3), dtype=dtype)
for i, img_file in enumerate(img_files):
img_file = os.path.join(path, 'val', 'images', img_file)
img = imread(img_file)
if img.ndim == 2:
img.shape = (64, 64, 1)
X_val[i] = img.transpose(1, 0, 2)
# Next load test images
# Students won't have test labels, so we need to iterate over files in the
# images directory.
img_files = os.listdir(os.path.join(path, 'test', 'images'))
X_test = np.zeros((len(img_files), 64, 64, 3), dtype=dtype)
for i, img_file in enumerate(img_files):
img_file = os.path.join(path, 'test', 'images', img_file)
img = imread(img_file)
if img.ndim == 2:
img.shape = (64, 64, 1)
X_test[i] = img.transpose(1, 0, 2)
y_test = None
y_test_file = os.path.join(path, 'test', 'test_annotations.txt')
if os.path.isfile(y_test_file):
with open(y_test_file, 'r') as f:
img_file_to_wnid = {}
for line in f:
line = line.split('\t')
img_file_to_wnid[line[0]] = line[1]
y_test = [wnid_to_label[img_file_to_wnid[img_file]] for img_file in img_files]
y_test = np.array(y_test)
mean_image = X_train.mean(axis=0)
if subtract_mean:
X_train -= mean_image[None]
X_val -= mean_image[None]
X_test -= mean_image[None]
return {
'class_names': class_names,
'X_train': X_train,
'y_train': y_train,
'X_val': X_val,
'y_val': y_val,
'X_test': X_test,
'y_test': y_test,
'class_names': class_names,
'mean_image': mean_image,
}
data = load_tiny_imagenet('/content/tiny-imagenet-200/', dtype=np.float32, subtract_mean=True)
| [
"vishal114186@gmail.com"
] | vishal114186@gmail.com |
90ab9fd8dbaf028130901ea8dc146e64dc36e060 | 8270ee8435d2c95dcc9f0e8f9f2119a45cafdf34 | /authentication/authentication/urls.py | 62d83125245dc2239a6a24bc1a945d75afe0e38f | [] | no_license | venkatapriya2020/Django_Hands_On | d8fa20124181f8ed59aaea91f2c3ebfec45495b6 | 28bd9d6fd95730c8f85c40c0d284d2d7cb3fe462 | refs/heads/master | 2023-02-04T05:19:42.708484 | 2020-12-20T22:32:28 | 2020-12-20T22:32:28 | 323,177,354 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 802 | py | """authentication URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.0/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path , include
urlpatterns = [
path("",include("users.urls")),
path('admin/', admin.site.urls),
]
| [
"venkatapriya@live.com"
] | venkatapriya@live.com |
ce2ce7dc2c0f952870f86143e1a519cfa7a22b93 | 2825a2d056db418a3bf04d8d2ffc7133cd552d0f | /jsondiff/mountpoint.py | b2b2f60d5cdfca5d072f5297f75289d5d311cb15 | [] | no_license | trendsnet/jsondiff | eabba41a2c9111d2a2aefdb460564fcc7f1743b8 | dce2af96542cb986dd1bd927972faf8c505364d9 | refs/heads/master | 2020-05-30T04:57:37.713001 | 2017-05-08T07:41:22 | 2017-05-08T07:41:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 131 | py | #coding:utf-8
__author__ = 'Feng Lu'
from .views.diff import diff
MOUNT_POINTS = ((diff, "/diff"),
(diff, "/"),
) | [
"liyanjie8@wanda.cn"
] | liyanjie8@wanda.cn |
b215c554ca3a503adec1ad978c11a8f6d483768c | 2d71efd7d8eecd057ba1705ae61bef03358b7605 | /heating/common.py | 4fa33355fe10a9902743eddfea3219bcf3a5bd75 | [] | no_license | graememorgan/smart-thermostat | 9a35765b32b324e907eab76ee36e645ac77d2711 | 7b2294de8d0752f9518f50541a1f2b42610bcb26 | refs/heads/master | 2021-01-10T10:52:36.556316 | 2016-02-04T13:30:02 | 2016-02-04T13:30:02 | 50,459,147 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 99 | py | import datetime
def epoch(date):
return (date - datetime.datetime(1970, 1, 1)).total_seconds()
| [
"mail@graeme.io"
] | mail@graeme.io |
e41f7a4ee3dff131d8b4f169176cf7ead839fc16 | 8af82d8482761aa99f6db95527a20c8854c00fdb | /PT_Approve.py | e951714fc9aff612626a16950f2f94ad0101e9a3 | [] | no_license | vandy1992/SCM-Automation | 62c02f665dcf42e79459f7aec575f07e35720c81 | 38c4266b943ece80df66ea32ba22f774a46df6c6 | refs/heads/master | 2022-11-20T13:15:56.572776 | 2020-07-10T09:05:47 | 2020-07-10T09:05:47 | 278,587,474 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,805 | py | import unittest
# import HtmlTestRunner
import time
import allure
from allure_commons.types import AttachmentType
from selenium import webdriver
import sys
sys.path.append("C://Users/Vandana Mallaiah/PycharmProjects/loginpage") #run through cmd and to generate report we need this or else no need
from pages.purchase_tender_page import Purchase_Tender
#https://clever-brahmagupta-0d6b23.netlify.app
class purchase_tender_Test(unittest.TestCase):
baseURL="https://testscm.digicollect.com/"
email ="manager@testdigibar.com"
password ="testdigibar123"
# driver = webdriver.Firefox(executable_path="E:\geckodriver-v0.26.0-win64\geckodriver.exe")
driver = webdriver.Chrome(executable_path="E:\chromedriver_win32\chromedriver.exe")
prno="DIGICOLLECT1234"
Bran="Test Digibar"
trno="vandy@@K654"
@classmethod
def setUpClass(cls):
cls.driver.get(cls.baseURL)
cls.driver.maximize_window()
def test_Purchase_tender(self):
pt=Purchase_Tender(self.driver)
time.sleep(3)
allure.attach(self.driver.get_screenshot_as_png(), name="loginpage", attachment_type=AttachmentType.PNG)
pt.login_page("manager@testdigibar.com","testdigibar123")
time.sleep(5)
allure.attach(self.driver.get_screenshot_as_png(), name="homepage", attachment_type=AttachmentType.PNG)
pt.click_create_new()
time.sleep(3)
pt.click_foreign()
time.sleep(3)
pt.click_tr_no(self.trno)
pt.click_pr_no()
pt.click_branch()
pt.click_dept()
pt.click_Attention()
pt.click_date()
pt.click_currency()
pt.click_authorised()
pt.click_phone()
# pt.click_address()
# pt.click_Save()
pt.click_same_as_billing()
pt.click_product()
pt.other_info()
# pt.file_attach()
pt.click_saveandsend()
allure.attach(self.driver.get_screenshot_as_png(), name="sendapproval", attachment_type=AttachmentType.PNG)
pt.approval()
pt.click_send()
pt.click_approve()
pt.enter_note()
pt.click_yes()
pt.click_List()
allure.attach(self.driver.get_screenshot_as_png(), name="listview", attachment_type=AttachmentType.PNG)
pt.click_single()
# pt.click_approved()
pt.click_view_attach()
allure.attach(self.driver.get_screenshot_as_png(), name="viewattach", attachment_type=AttachmentType.PNG)
pt.click_close()
pt.click_single()
pt.click_list_delete()
allure.attach(self.driver.get_screenshot_as_png(), name="delete", attachment_type=AttachmentType.PNG)
#
if __name__=='__main__':
unittest.main() | [
"noreply@github.com"
] | vandy1992.noreply@github.com |
bdf356f1b24561547e82750dcf298ac1a820f9f4 | f53ebcc05ccc8892c32fc2b5c121ba0d78451adb | /classify_images.py | a0f79e4a9fbf09917707b7f53e0b97d22a0ea8eb | [] | no_license | XDUNZC/TBtianchi_submit | 4a45e1096fa389ea9123647e7caaa7cb52a9c322 | e6b1497c0063379f34f9e8cab4926fb160944fdd | refs/heads/master | 2023-08-15T19:45:07.112471 | 2020-04-12T06:56:57 | 2020-04-12T06:56:57 | 249,676,498 | 0 | 0 | null | 2023-07-23T09:42:19 | 2020-03-24T10:20:56 | Jupyter Notebook | UTF-8 | Python | false | false | 4,010 | py | from read_dataset import Reader
from save import Saver
from model.Resnet50.run import Worker as MatchWorker
from model.mmdetection_coco import run as DetectionWorker
import utils
import os
import mmcv
import random
class Classifier():
def __init__(self,classify_model,reader):
self.classify_model = classify_model
self.reader = reader
self.class2commoditys = {i:set() for i in range(23)}
self.img_boxes_label_result = {}
self._classify_image()
def _classify_image(self):
print('开始检测所有商品图,并进行分类剪枝:')
# 为了加速debug 只剪枝前1000个商品图
for commodity in mmcv.track_iter_progress(self.reader.commodity_index_list):
labels_in_this_commodity = {i:0 for i in range(23)}
imgs_in_this_commodity = list(self.reader.commodity_index2img_path_list[commodity])
for img in imgs_in_this_commodity:
result_over_thr, labels_over_thr, _ = DetectionWorker.get_result_and_feats(self.classify_model, img)
self.img_boxes_label_result[img] = (result_over_thr, labels_over_thr)
for label in labels_over_thr:
labels_in_this_commodity[label]+=1
labels_in_this_commodity_list = sorted(labels_in_this_commodity.items(), key=lambda x: x[1], reverse=True)[:2] # 取出现类标最多的两个
for i,item in enumerate(labels_in_this_commodity_list):
label, appear_num = item
if i!=0 and appear_num==0:
break
self.class2commoditys[label].add(commodity) # 将商品加入到所属类标下
# 选出具有代表性的图 剪枝商品图
present_imgs = []
random.shuffle(imgs_in_this_commodity)
for img in imgs_in_this_commodity:
result_over_thr, labels_over_thr = self.img_boxes_label_result[img]
if [x for x in labels_in_this_commodity_list if x in labels_over_thr] != []:
present_imgs.append(img)
if len(present_imgs) == 2 : # 控制选择几幅图
break
self.reader.commodity_index2img_path_list[commodity] = present_imgs
def show_classify_result(self):
for label,commoditys in self.class2commoditys.items():
print('lable: ',label,' commoditys: ',commoditys)
def main():
# 初始化文件路径获得类
reader = Reader(test_dataset_path='tcdata/',
img_path='tcdata/test_dataset_3w/image/',
video_path='tcdata/test_dataset_3w/video/')
print("success init reader")
# 初始化结果保存类
saver = Saver()
print("success init saver")
# 执行匹配工作
"""初始化匹配模型"""
# TODO 替换参数
# match_worker = MatchWorker(model_path='./model/Resnet50/models/model-inter-500001.pt')
print("success load match model")
"""初始化获得框模型"""
idx = 0
config_file = ['./model/mmdetection_coco/configs/tbtc_fater_rcnn_voc.py',
'tbtc_retinanet_voc.py', 'tbtc_feature_exteactor_faster_rcnn.py',
'tbtc_feature_exteactor_faster_rcnn.py'][idx]
checkpoint_file = ['./model/mmdetection_coco/checkpoints/faster_rcnn_x101_64x4d_fpn_1x20200324-ba5926a5.pth',
'retinanet_x101_64x4d_fpn_1x20200322-53c08bb4.pth'][idx]
# TODO 替换参数
coco_model = DetectionWorker.get_model(config_file=config_file,
checkpoint_file=checkpoint_file)
print("success load detection model")
"""逐个视频运行"""
classifier = Classifier(coco_model,reader)
print("success build classifier")
# 显示分类结果,正式提交的时候请注释
classifier.show_classify_result()
if __name__ == "__main__":
# success run
print("successful open run.py")
main()
# end run
print("successful end test.py")
| [
"903244773@qq.com"
] | 903244773@qq.com |
db5c965f2a0a9a8eca0e23b6beaa853f2fa82cff | 14d7dbf445a5fde2a6611c41cd55bc17978afec4 | /flask_app/application.py | bfdd92df2989f1ed4b3c63654868c835612a6b6b | [] | no_license | Happollyon/Class2 | a7ef72caefebf5e23209b06ecf84560d3b73394f | 8136fd0c70cf1cc4e82361d5a2ca54c282e5066c | refs/heads/master | 2022-09-17T07:14:09.356631 | 2020-05-28T14:23:37 | 2020-05-28T14:23:37 | 257,603,308 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 405 | py | from flask import Flask, render_template,request, session
#from flask_session import Session
app=Flask(__name__)
@app.route('/')
def index():
return "Hello world"
@app.route('/fagner')
def fagner():
return"hello fagner"
@app.route("/<string:name>") # you can set a rout name
def hello(name):
return f"hello, {name}"
#templates look at netes and conditions inside ginger
#extend templates
| [
"36013973+Happollyon@users.noreply.github.com"
] | 36013973+Happollyon@users.noreply.github.com |
6346038aeef107d5a4c7721f2a780ff4708abbcc | f5b2ee7b630385a8173326aede9b3c43794c4b3e | /server/world/item.py | 5720951d7a49726ebb51efe2d3f6063c6f5e02af | [] | no_license | dslice25/tinymmo-server | 3a324c38475b64220cf6a6bde6ee1277a9bf259b | 2d01212a8ce6ba9ecc87e2fcf2a3c4979255e926 | refs/heads/master | 2021-01-23T10:07:33.355822 | 2017-12-08T21:02:06 | 2017-12-08T21:02:06 | 102,606,582 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 1,571 | py | import ConfigParser
import uuid
class Item:
index = 0
config = ConfigParser.RawConfigParser()
config.read('server_data/items.ini')
def getid(self):
Item.index += 1
return Item.index
def __init__(self, name, player, container, equipped, world):
#self.name = "%s-%s" % (name, self.getid())
self.name = str(uuid.uuid4())
self.player = player
self.container = container
self.equipped = equipped
self.world = world
self.title = Item.config.get(name, 'title')
self.gear_type = Item.config.get(name, 'gear_type')
self.slot = Item.config.get(name, 'slot')
self.hit = Item.config.getint(name, 'hit')
self.dam = Item.config.getint(name, 'dam')
self.arm = Item.config.getint(name, 'arm')
self.spi = Item.config.getint(name, 'spi')
self.hp = Item.config.getint(name, 'hp')
self.mp = Item.config.getint(name, 'mp')
self.speed = Item.config.getfloat(name, 'speed')
self.icon = Item.config.get(name,'icon')
self.value = Item.config.getint(name, 'value')
self.consumeable = Item.config.getboolean(name, 'consumeable')
self.world.items[self.name] = self
def state(self):
return { 'title': self.title, 'name': self.name, 'slot': self.slot, 'equipped': self.equipped, 'gear_type': self.gear_type, 'icon': self.icon, 'hit': self.hit, 'dam': self.dam, 'arm': self.arm, 'spi': self.spi, 'speed': self.speed, 'value': self.value, 'hp': self.hp, 'mp': self.mp, 'consumeable': self.consumeable }
| [
"dablum@mit.edu"
] | dablum@mit.edu |
09c006664cf108d6ae9fc0f41fcb8e22fcea4877 | a9e60d0e5b3b5062a81da96be2d9c748a96ffca7 | /configurations/i21-config/scripts/functions/sample_vessel_vacuum_control.py | 055be6350f0c567e280cfe42194b79f557165ef8 | [] | no_license | openGDA/gda-diamond | 3736718596f47607335ada470d06148d7b57526e | bbb64dcfd581c30eddb210c647db5b5864b59166 | refs/heads/master | 2023-08-16T08:01:11.075927 | 2023-08-15T16:01:52 | 2023-08-15T16:01:52 | 121,757,699 | 4 | 1 | null | null | null | null | UTF-8 | Python | false | false | 1,543 | py | '''
define function to control the sample vessel vacuum valves for sample changes
Created on 18 Jul 2023
@author: fy65
'''
import installation
from gda.device.scannable import ScannableMotionBase
from gda.epics import CAClient
# control PV = BL21I-EA-SMPL-01:SEQ:CTRL
# state PV = BL21I-EA-SMPL-01:SEQ:CTRL:STATE_RBV
class SampleVesselValvesControl(ScannableMotionBase):
def __init__(self, name, pv):
self.setName(name)
self.setInputNames([name])
self.setOutputFormat(["%d"])
self.control = CAClient(pv)
self.state = CAClient(pv + ":STATE_RBV")
self.control.configure()
self.state.configure()
self.val = 0
def getPosition(self):
if installation.isLive():
return int(self.control.get()) #0 - Close, 1 - Open
if installation.isDummy():
return self.val
def asynchronousMoveTo(self, val):
if installation.isLive():
self.control.caput(int(val))
if installation.isDummy():
self.val = val
if val == 1:
print("Open sample vessel valves")
if val == 0:
print("Close sample vessel valves")
def isBusy(self):
if installation.isLive():
return int(self.state.caget()) != 2 #2 - Ready, 1 - Opening, 0 - Closing
if installation.isDummy():
return False
sample_vessel_valves = SampleVesselValvesControl("sample_vessel_valves", "BL21I-EA-SMPL-01:SEQ:CTRL")
| [
"fajin.yuan@diamond.ac.uk"
] | fajin.yuan@diamond.ac.uk |
2f9db9f890c9233e5af1669088468a7683d1af35 | 0fb3b73f8e6bb9e931afe4dcfd5cdf4ba888d664 | /awssam/fullfeblog/blog/migrations/0002_auto_20201208_1414.py | b61387acb7dcbe792fb0d7d8887e97d528f46789 | [] | no_license | mrpal39/ev_code | 6c56b1a4412503604260b3346a04ef53a2ba8bf2 | ffa0cf482fa8604b2121957b7b1d68ba63b89522 | refs/heads/master | 2023-03-24T03:43:56.778039 | 2021-03-08T17:48:39 | 2021-03-08T17:48:39 | 345,743,264 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,023 | py | # Generated by Django 3.1.4 on 2020-12-08 14:14
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('blog', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='post',
options={'ordering': ('-publish',)},
),
migrations.RenameField(
model_name='post',
old_name='content',
new_name='body',
),
migrations.RenameField(
model_name='post',
old_name='date_posted',
new_name='publish',
),
migrations.AddField(
model_name='post',
name='created',
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
preserve_default=False,
),
migrations.AddField(
model_name='post',
name='slug',
field=models.SlugField(default=django.utils.timezone.now, max_length=250, unique_for_date='publish'),
preserve_default=False,
),
migrations.AddField(
model_name='post',
name='status',
field=models.CharField(choices=[('draft', 'Draft'), ('published', 'Published')], default='draft', max_length=10),
),
migrations.AddField(
model_name='post',
name='updated',
field=models.DateTimeField(auto_now=True),
),
migrations.AlterField(
model_name='post',
name='author',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='blog_posts', to=settings.AUTH_USER_MODEL),
),
migrations.AlterField(
model_name='post',
name='title',
field=models.CharField(max_length=250),
),
]
| [
"rp9545416@gmail.com"
] | rp9545416@gmail.com |
5d911f4022457d7e47942adf723047dc59cefa2f | 4a5f3b26fca176a80ca8eca796bc646bb225b017 | /attentive-reader-2/sgu.py | 8ddc21a3a0732b54672764fcd0003dcc2dec4e7a | [] | no_license | musyoku/NLP | 9a63dc882b07b017f7cfc72d863c4d9e5cbeff5e | 9b040bb960b65fb2a1c330adafa6c52e3284a0c1 | refs/heads/master | 2021-01-21T04:53:57.029200 | 2016-07-10T17:08:03 | 2016-07-10T17:08:03 | 55,848,677 | 1 | 1 | null | null | null | null | UTF-8 | Python | false | false | 3,107 | py | import numpy
import chainer
from chainer import cuda
from chainer.functions.activation import sigmoid
from chainer.functions.activation import softplus
from chainer.functions.activation import tanh
from chainer.functions.math import clip
from chainer import link
from chainer.links.connection import linear
from chainer import variable
def hard_sigmoid(x):
return clip.clip(x * 0.2 + 0.5, 0.0, 1.0)
class SGU(link.Chain):
def __init__(self, in_size, out_size):
super(SGU, self).__init__(
W_xh=linear.Linear(in_size, out_size),
W_zxh=linear.Linear(out_size, out_size),
W_xz=linear.Linear(in_size, out_size),
W_hz=linear.Linear(out_size, out_size),
)
def __call__(self, h, x):
x_g = self.W_xh(x)
z_g = tanh.tanh(self.W_zxh(x_g * h))
z_out = softplus.softplus(z_g * h)
z_t = hard_sigmoid(self.W_xz(x) + self.W_hz(h))
h_t = (1 - z_t) * h + z_t * z_out
return h_t
class StatefulSGU(SGU):
def __init__(self, in_size, out_size):
super(StatefulSGU, self).__init__(in_size, out_size)
self.state_size = out_size
self.reset_state()
def to_cpu(self):
super(StatefulSGU, self).to_cpu()
if self.h is not None:
self.h.to_cpu()
def to_gpu(self, device=None):
super(StatefulSGU, self).to_gpu(device)
if self.h is not None:
self.h.to_gpu(device)
def set_state(self, h):
assert isinstance(h, chainer.Variable)
h_ = h
if self.xp == numpy:
h_.to_cpu()
else:
h_.to_gpu()
self.h = h_
def reset_state(self):
self.h = None
def __call__(self, x):
if self.h is None:
xp = cuda.get_array_module(x)
zero = variable.Variable(xp.zeros_like(x.data))
z_out = softplus.softplus(zero)
z_t = hard_sigmoid(self.W_xz(x))
h_t = z_t * z_out
else:
h_t = SGU.__call__(self, self.h, x)
self.h = h_t
return h_t
class DSGU(link.Chain):
def __init__(self, in_size, out_size):
super(DSGU, self).__init__(
W_xh=linear.Linear(in_size, out_size),
W_zxh=linear.Linear(out_size, out_size),
W_go=linear.Linear(out_size, out_size),
W_xz=linear.Linear(in_size, out_size),
W_hz=linear.Linear(out_size, out_size),
)
def __call__(self, h, x):
x_g = self.W_xh(x)
z_g = tanh.tanh(self.W_zxh(x_g * h))
z_out = sigmoid.sigmoid(self.W_go(z_g * h))
z_t = hard_sigmoid(self.W_xz(x) + self.W_hz(h))
h_t = (1 - z_t) * h + z_t * z_out
return h_t
class StatefulDSGU(DSGU):
def __init__(self, in_size, out_size):
super(StatefulDSGU, self).__init__(in_size, out_size)
self.state_size = out_size
self.reset_state()
def to_cpu(self):
super(StatefulDSGU, self).to_cpu()
if self.h is not None:
self.h.to_cpu()
def to_gpu(self, device=None):
super(StatefulDSGU, self).to_gpu(device)
if self.h is not None:
self.h.to_gpu(device)
def set_state(self, h):
assert isinstance(h, chainer.Variable)
h_ = h
if self.xp == numpy:
h_.to_cpu()
else:
h_.to_gpu()
self.h = h_
def reset_state(self):
self.h = None
def __call__(self, x):
if self.h is None:
z_t = hard_sigmoid(self.W_xz(x))
h_t = z_t * 0.5
else:
h_t = DSGU.__call__(self, self.h, x)
self.h = h_t
return h_t | [
"musyoku@users.noreply.github.com"
] | musyoku@users.noreply.github.com |
b393a423256aa0f889b3a2d9a5f23682e1c3053d | 31136f3b2aa9ff7166f771a7f4e1da8dd1764b2e | /website/events/migrations/0005_auto_20190715_1440.py | ec4ca8cd745c5758545e2f31f6086ffdfe7a64c0 | [
"MIT"
] | permissive | PyAr/asoc_members | 202bb05f6c58644f5edb19c80a7276b493d3c76b | ed3944acadd7d08e53acd6edb5961a4248ea4782 | refs/heads/master | 2023-04-15T07:41:45.725797 | 2023-04-11T15:13:24 | 2023-04-11T15:13:24 | 131,543,379 | 10 | 26 | MIT | 2023-08-22T22:41:12 | 2018-04-30T01:10:30 | Python | UTF-8 | Python | false | false | 7,405 | py | # Generated by Django 2.0.4 on 2019-07-15 14:40
from django.conf import settings
import django.core.validators
from django.db import migrations, models
import django.db.models.deletion
import django_extensions.db.fields
import events.helpers.models
import events.models
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('events', '0004_auto_20190618_1853'),
]
operations = [
migrations.CreateModel(
name='Expense',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('created', django_extensions.db.fields.CreationDateTimeField(auto_now_add=True, verbose_name='created')),
('modified', django_extensions.db.fields.ModificationDateTimeField(auto_now=True, verbose_name='modified')),
('description', models.CharField(blank=True, default='', help_text='Descripción del gasto', max_length=317, verbose_name='descripción')),
('amount', models.DecimalField(decimal_places=2, max_digits=18, verbose_name='monto')),
('invoice_type', models.CharField(choices=[('A', 'Factura A'), ('B', 'Factura B'), ('C', 'Factura C'), ('Tic', 'Ticket'), ('Otr', 'Otro')], max_length=5, verbose_name='tipo factura')),
('invoice_date', models.DateField(verbose_name='fecha factura')),
('invoice', models.FileField(upload_to=events.models.expense_upload_path, verbose_name='factura')),
('category', models.CharField(choices=[('Prv', 'Gasto proveedor'), ('Ref', 'Reintegro organizador')], max_length=5, verbose_name='tipo gasto')),
],
options={
'permissions': (('view_expenses', 'puede ver gastos'),),
},
bases=(events.helpers.models.SaveReversionMixin, models.Model),
),
migrations.CreateModel(
name='Payment',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('created', django_extensions.db.fields.CreationDateTimeField(auto_now_add=True, verbose_name='created')),
('modified', django_extensions.db.fields.ModificationDateTimeField(auto_now=True, verbose_name='modified')),
('document', models.FileField(upload_to='media/events/payments/', verbose_name='comprobante')),
('changed_by', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='events_payment_changed_by', to=settings.AUTH_USER_MODEL)),
('created_by', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='events_payment_created_by', to=settings.AUTH_USER_MODEL)),
],
options={
'abstract': False,
},
bases=(events.helpers.models.SaveReversionMixin, models.Model),
),
migrations.CreateModel(
name='Provider',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('created', django_extensions.db.fields.CreationDateTimeField(auto_now_add=True, verbose_name='created')),
('modified', django_extensions.db.fields.ModificationDateTimeField(auto_now=True, verbose_name='modified')),
('document_number', models.CharField(help_text='CUIT del propietario de la cuenta, formato ##-########-#', max_length=13, unique=True, validators=[django.core.validators.RegexValidator('^(20|23|24|27|30|33|34)-[0-9]{8}-[0-9]$', 'El CUIT ingresado no es correcto.')], verbose_name='CUIT')),
('bank_entity', models.CharField(help_text='Nombre de la entiedad bancaria.', max_length=317, verbose_name='entidad bancaria')),
('account_number', models.CharField(help_text='Número de cuenta.', max_length=13, verbose_name='número de cuenta')),
('account_type', models.CharField(choices=[('CC', 'Cuenta corriente'), ('CA', 'Caja de ahorros')], max_length=3, verbose_name='Tipo cuenta')),
('organization_name', models.CharField(help_text='Razón social o nombre del propietario de la cuenta.', max_length=317, verbose_name='razón social')),
('cbu', models.CharField(help_text='CBU de la cuenta', max_length=317, verbose_name='CBU')),
('changed_by', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='events_provider_changed_by', to=settings.AUTH_USER_MODEL)),
('created_by', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='events_provider_created_by', to=settings.AUTH_USER_MODEL)),
],
options={
'ordering': ['-created'],
'permissions': (('view_providers', 'puede ver proveedores'),),
},
bases=(events.helpers.models.SaveReversionMixin, models.Model),
),
migrations.CreateModel(
name='OrganizerRefund',
fields=[
('expense_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='events.Expense')),
('organizer', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='refunds', to='events.Organizer', verbose_name='Organizador')),
('payment', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='events.Payment', verbose_name='pago')),
],
options={
'abstract': False,
},
bases=('events.expense',),
),
migrations.CreateModel(
name='ProviderExpense',
fields=[
('expense_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='events.Expense')),
('payment', models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='events.Payment', verbose_name='pago')),
('provider', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='expenses', to='events.Provider', verbose_name='Proveedor')),
],
options={
'abstract': False,
},
bases=('events.expense',),
),
migrations.AddField(
model_name='expense',
name='changed_by',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='events_expense_changed_by', to=settings.AUTH_USER_MODEL),
),
migrations.AddField(
model_name='expense',
name='created_by',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='events_expense_created_by', to=settings.AUTH_USER_MODEL),
),
migrations.AddField(
model_name='expense',
name='event',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='expenses', to='events.Event', verbose_name='Evento'),
),
]
| [
"andres.ramirez.miori@gmail.com"
] | andres.ramirez.miori@gmail.com |
25511219866cbb40fbd6b80bfdc1df6200549f29 | db46e847a9e382bcc7e062cfbac52fbac0cea490 | /Bolum1/otsu1.py | ef7e7265b90e4fec9241caa5466f6d9d53430f01 | [] | no_license | pnarbedir/ImageProcessing | 137ecb3a027afbb41573466415e570055ac00ad5 | 94f4778e773c1ffdda398e6da3824267b7c68651 | refs/heads/master | 2023-05-02T13:10:15.254882 | 2021-05-16T00:28:42 | 2021-05-16T00:28:42 | 363,901,232 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 440 | py | import cv2
import numpy as np
from matplotlib import pyplot as plt
img = cv2.imread('original.jfif',0)
ret,th1 = cv2.threshold(img,127,255,cv2.THRESH_BINARY)
ret,th2 = cv2.threshold(img,0,255,cv2.THRESH_BINARY+cv2.THRESH_OTSU)
blur = cv2.GaussianBlur(img,(5,5),0)
ret,th3 = cv2.threshold(blur,0,255,cv2.THRESH_BINARY+cv2.THRESH_OTSU)
cv2.imshow('orj',img)
cv2.imshow('th1',th1)
cv2.imshow('th2',th2)
cv2.imshow('th3',th3)
cv2.waitKey()
| [
"pnarbedir98@gmail.com"
] | pnarbedir98@gmail.com |
1ca54c25efd9250bdc727477130bd4e28d32ef07 | c6f063e2f6ab9aed7743255b8c4b131a3638dd30 | /env1/lib/python3.9/site-packages/webpush/migrations/0003_auto_20211108_1056.py | 22febc2a8208476cc38e6b2d934e7872117439d3 | [] | no_license | Muthoniyahya/agricoope | 31d94ee02e0e5cc650afc251104c6fe4a91cb1b9 | c1ef91866b4646a19825a6d833f78868663d61d1 | refs/heads/master | 2023-09-02T21:33:41.991628 | 2021-11-18T23:22:27 | 2021-11-18T23:22:27 | 429,600,463 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 881 | py | # Generated by Django 3.2.8 on 2021-11-08 10:56
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('webpush', '0002_auto_20190603_0005'),
]
operations = [
migrations.AlterField(
model_name='group',
name='id',
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
migrations.AlterField(
model_name='pushinformation',
name='id',
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
migrations.AlterField(
model_name='subscriptioninfo',
name='id',
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
]
| [
"Muthoniyahya@gmail.com"
] | Muthoniyahya@gmail.com |
d8ded25ef10e93c72605b89d85452c69e80636d6 | 9fdc3443090052d31089f8181cfce4d62ca97616 | /exception_handling_advanced_example61.py | aaca7a2d555cedf68e1fb60cee48b451d3e7b846 | [] | no_license | ahmedyoko/python-course-Elzero | 9d82b08e81d597292ee85c0d517d8116d0be0905 | bc11dca9b7ccbccb7c66d6a5b34ded0e6dedc9f8 | refs/heads/master | 2023-07-25T19:44:22.073679 | 2021-09-07T19:35:30 | 2021-09-07T19:35:30 | 399,866,512 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,097 | py | #...........................................
# exception_handling_advanced_examples
# try | except | else | finally
#....................................................
the_file = None
the_tries = 5
while the_tries > 0 :
print(f'{the_tries} tries left')
the_tries -= 1
else :
print('All tries are done')
print('*'*50)
the_file = None
the_tries = 5
while the_tries > 0 :
try : # try to open the file
print('enter the file name with the absolute path to open')
print(f'you have {the_tries} tries left')
print('Example => D:\python\file\yourfile.extension')
file_name_and_path = input('file name => : ').strip().lower()
the_file = open(file_name_and_path,'r')
print(the_file.read())
break
except FileNotFoundError:
print('the file not found please be sure the name is valid')
the_tries -= 1
except :
print('error happens')
finally :
if the_file is not None :
the_file.close()
print('the file is closed')
else :
print('All tries are done') | [
"aos438479@gmail.com"
] | aos438479@gmail.com |
9138de1148cd345ac2d731ad25502eed850fa264 | 2d83d627c446fa84e301f27196f893902066a8a3 | /smartcity/dbview/migrations/0008_auto_20171030_1950.py | 8a2f889d476a5e7077de8a008cc9e650156ad104 | [] | no_license | PoeticIron/ifb299-57lines | 1e71a79c97a05c0ff7e6c1651469dbd0904385a7 | 837d49437c674daafec805c8f4b1a6c7f595eedf | refs/heads/master | 2021-01-01T18:36:47.580779 | 2017-11-03T05:42:05 | 2017-11-03T05:42:05 | 98,384,561 | 0 | 2 | null | 2017-09-19T07:34:37 | 2017-07-26T05:51:16 | Python | UTF-8 | Python | false | false | 639 | py | # -*- coding: utf-8 -*-
# Generated by Django 1.11.3 on 2017-10-30 09:50
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dbview', '0007_auto_20171030_1947'),
]
operations = [
migrations.AlterField(
model_name='museums',
name='Lat',
field=models.CharField(default='-27.4772', max_length=30),
),
migrations.AlterField(
model_name='museums',
name='Lon',
field=models.CharField(default='153.0278', max_length=30),
),
]
| [
"nmestone@gmail.com"
] | nmestone@gmail.com |
840f45903a811282a9e7105496d723fef512547a | 743778017a0e775832e45fc05d9a056604f608ad | /km71/Guro_Dmytro/4/Task7.py | e6d342044e39db64385b0d1b3e66988e2430196c | [] | no_license | Kalinia/amis_python71 | fed5ff37a5909c090a53962daa689141498755b1 | 0123af48b1eaa6d752409b1b643f548c6b0e4ab8 | refs/heads/master | 2021-05-07T17:24:21.974699 | 2017-12-21T22:13:00 | 2017-12-21T22:13:00 | 108,726,150 | 0 | 0 | null | 2017-10-29T10:54:14 | 2017-10-29T10:54:14 | null | UTF-8 | Python | false | false | 590 | py | while True:
try:
x1 = int(input())
break
except:
print("Please enter number")
while True:
try:
y1=int(input())
break
except:
print("Please enter number")
while True:
try:
x2=int(input())
break
except:
print("Please enter number")
while True:
try:
y2=int(input())
break
except:
print("Please enter number")
if (x1+x2)%2==0 and (y1+y2)%2==0:
print("YES")
elif (x1+x2)%2!=0 and (y1+y2)%2!=0:
print("YES")
else:
print("NO")
| [
"noreply@github.com"
] | Kalinia.noreply@github.com |
2908f0e3db2a300277114b39d46d25d3ea5e1012 | 2d3976964d8923a1e91e31af702bd68fbf37d474 | /runTask/server.py | 1bd36c0754e0d042ad090870e35b568521b7c88d | [] | no_license | barry800414/master_thesis | 2f6900fb2964891849dadef9283ed6e7f11cc696 | 01a0cac30ab63fcf818f1f43959634094b624af5 | refs/heads/master | 2020-05-29T08:53:32.810702 | 2016-06-04T02:03:52 | 2016-06-04T02:03:52 | 38,382,667 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 609 | py | #!/usr/bin/env python3
from multiprocessing.managers import BaseManager
import queue
import sys
if __name__ == '__main__':
port = 3333
if len(sys.argv) == 2:
port = int(sys.argv[1])
q = queue.Queue()
# a QueueManager hold a queue q, which automatically handle race condition
class QueueManager(BaseManager):
pass
QueueManager.register('get_queue', callable = lambda: q)
m = QueueManager(address = ('0.0.0.0', port), authkey = b'barry800414')
s = m.get_server()
print('Server is running now (port:%d) ...' % (port), file=sys.stderr)
s.serve_forever()
| [
"barry800414@gmail.com"
] | barry800414@gmail.com |
11e7feb68dc8e7c7d92ddb397418250a2ca1228e | eb3cd8723752e34e46728d02d5f95f3e8e7a864d | /Django/myvenv/bin/chardetect-3.8 | d426c822917bb3d16d6de63f05b1eeafdc98791e | [] | no_license | AbhisarSaraswat/Projects | bdf5b455e6f2480401d646c1115be1a79de6b83d | 59fe23b803a3d7617b26ecec4259c418704d4cc7 | refs/heads/master | 2021-11-17T09:51:32.410418 | 2021-05-21T10:42:31 | 2021-05-21T10:42:31 | 168,728,445 | 0 | 0 | null | 2021-09-22T19:50:09 | 2019-02-01T16:40:42 | Python | UTF-8 | Python | false | false | 245 | 8 | #!/home/lucifer/Projects/myvenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from chardet.cli.chardetect import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())
| [
"abhisarsaraswat@gmail.com"
] | abhisarsaraswat@gmail.com |
de075cc155d45012e62fee4fd10dbfd477ea0b69 | 5e0ef0a177306aa205493259cc274be7bb72b9eb | /login_and_registration/apps/log_regs_app/urls.py | 0167a0fd2c5be22b28dbfc5dee64462961a66956 | [] | no_license | reinib/PythonDjangoCD | 07654f45e6e339cb3091d66d7bfccb04a46111d1 | 5fef1906a90c997c13a17ef9aec0df30733d5ea8 | refs/heads/master | 2020-04-11T10:31:42.034181 | 2018-12-14T01:55:06 | 2018-12-14T01:55:06 | 161,717,686 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 259 | py | from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.index),
url(r'^validate_register$', views.validate_register),
url(r'^users/(?P<id>\d+)$', views.success),
url(r'^validate_login$', views.validate_login),
]
| [
"brent.reininger89@gmail.com"
] | brent.reininger89@gmail.com |
9ba996ef80069b6979c8495ddbf3ffbab87f533c | d0af71157005190c6421b640b0e6cee2f237aace | /examples/bamboo/bamboo_plan_directory_info.py | 9706338f0eb798ba9532324312cadf808092d542 | [
"Apache-2.0"
] | permissive | atlassian-api/atlassian-python-api | d8adeb43ea4c92c10a03f1b53b53b87820f1841d | bb1c0f2d4187ba8efa1a838cd0041b54c944fee8 | refs/heads/master | 2023-08-29T06:57:22.136461 | 2023-08-27T18:53:00 | 2023-08-27T18:53:00 | 19,530,263 | 1,130 | 679 | Apache-2.0 | 2023-09-13T19:27:44 | 2014-05-07T10:26:26 | Python | UTF-8 | Python | false | false | 433 | py | # coding=utf-8
import os
from atlassian import Bamboo
BAMBOO_URL = os.environ.get("BAMBOO_URL", "http://localhost:8085")
ATLASSIAN_USER = os.environ.get("ATLASSIAN_USER", "admin")
ATLASSIAN_PASSWORD = os.environ.get("ATLASSIAN_PASSWORD", "admin")
bamboo = Bamboo(url=BAMBOO_URL, username=ATLASSIAN_USER, password=ATLASSIAN_PASSWORD)
plan_directories_roots = bamboo.plan_directory_info("PROJ-PLAN")
print(plan_directories_roots)
| [
"noreply@github.com"
] | atlassian-api.noreply@github.com |
f50f22f4257ef2bd4b135c4c4b543869c019f8b8 | 4eeb40dcc265caf4a2b84bc90a28d481930d6a8a | /cssproject/cssproject/wsgi.py | e87cec6d202682e65310c1cd76e7ac0245d43209 | [] | no_license | mprasu/Sample-Projects | eb7fc46e81b09d7c97c238047e3c93b6fff3fb8d | 7363baf630900ab2babb4af2afe77911d8a548b2 | refs/heads/master | 2020-04-16T06:43:16.345750 | 2019-01-12T07:07:34 | 2019-01-12T07:07:34 | 165,358,055 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 397 | py | """
WSGI config for cssproject project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cssproject.settings")
application = get_wsgi_application()
| [
"muppuriprasanna5@gmail.com"
] | muppuriprasanna5@gmail.com |
58cbe82bcc8bd6afeed52101fca9d77621105eef | 4be56098894a95da5964622fc4102b69e4530ab6 | /题库/1399.页面推荐.py | 5a140da6d4ab9fa5c70e7d7e978fdf740737d005 | [] | no_license | ACENDER/LeetCode | 7c7c7ecc8d0cc52215272f47ec34638637fae7ac | 3383b09ab1246651b1d7b56ab426a456f56a4ece | refs/heads/master | 2023-03-13T19:19:07.084141 | 2021-03-15T09:29:21 | 2021-03-15T09:29:21 | 299,332,864 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 80 | py | # !/usr/bin/env python3
# -*- coding: utf-8 -*-
# @File : 1399.页面推荐.py
| [
"1641429327@qq.com"
] | 1641429327@qq.com |
ddbeff68f2104fbd657620867d9acc172c5adecb | 3af6960c805e9903eb27c09d8bc7ebc77f5928fe | /problems/0190_Reverse_Bits/__init__.py | 13d13496fce71652ff8239e68ab130a72e9cc66e | [] | no_license | romain-li/leetcode | b3c8d9d4473eebd039af16ad2d4d99abc2768bdd | 5e82b69bd041c2c168d75cb9179a8cbd7bf0173e | refs/heads/master | 2020-06-04T20:05:03.592558 | 2015-06-08T18:05:03 | 2015-06-08T18:05:03 | 27,431,664 | 2 | 1 | null | 2015-06-08T18:05:04 | 2014-12-02T12:31:58 | Python | UTF-8 | Python | false | false | 656 | py | ID = '190'
TITLE = 'Reverse Bits'
DIFFICULTY = 'Easy'
URL = 'https://oj.leetcode.com/problems/reverse-bits/'
BOOK = False
PROBLEM = r"""Reverse bits of a given 32 bits unsigned integer.
For example, given input 43261596 (represented in binary as
**00000010100101000001111010011100**), return 964176192 (represented in binary
as **00111001011110000010100101000000**).
**Follow up**:
If this function is called many times, how would you optimize it?
Related problem: [Reverse Integer](/problems/reverse-integer/)
**Credits:**
Special thanks to [@ts](https://oj.leetcode.com/discuss/user/ts) for adding
this problem and creating all test cases.
"""
| [
"romain_li@163.com"
] | romain_li@163.com |
45278734804df48db80172a886fbefcd6bf1b64f | dd1462c6dd2aacf13113834854be92b119315722 | /commands.py | ff1f0b7e79f927c5cdb5fd2a885a25572c1fbd0c | [] | no_license | voiceassistant-SEDA/Voice-Asistant | 8d9298f2b5e41c0f14c9d8f31de58df1deca0a93 | 7995875fccde96f4745f4c87fc370d81ac7f61ef | refs/heads/main | 2023-05-05T11:45:07.850369 | 2021-05-21T15:45:33 | 2021-05-21T15:45:33 | 369,581,536 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 6,342 | py | import os
import json
import function
import backend
import random
from fuzzywuzzy import process
import Levenshtein as lev
class Commands :
def __init__ (self,function,module,neuralNetwork) :
self.function = function
self.module = module
self.neuralNetwork = neuralNetwork
with open ("./Data/commands.json","r",encoding='utf8' ) as file:
self.commands=json.load (file)
def Run (self,data) :
data=data.lower()
for key in self.commands.keys():
for command in self.commands[key]:
if data in self.commands[key][command]:
return self.Execute( command,key )
#search komutları
words=data.split(" ")
for command in self.commands["search"].keys():
for word in words:
if word in self.commands["search"][command]:
words.remove(word)
search=""
for i in words:
search+=i+" "
return self.Execute(command,"search",search)
"""
#Yapay sinir ağı analizi
i = neuralNetwork.Analyse(data)
if i == 1:
data=data.lower()
ratio = 0
command = ""
key=""
for k in self.commands.keys():
for com in self.commands[k]:
highest = process.extractOne(data,com)
if ratio<highest[1]:
ratio=highest[1]
command=highest[0]
key=k
return self.Execute(command,key)
elif i == 2:
self.Execute2()
else:
data=data.lower()
ratio = 0
command = ""
key=""
for k in self.commands.keys():
for com in self.commands[k]:
highest = process.extractOne(data,com)
if ratio<highest[1]:
ratio=highest[1]
command=highest[0]
key=k
return self.Execute(command,key)
"""
self.module.speak ("Ne dediğini anlayamadım.")
return 1
def Execute (self,command,commandType,search="") :
#conversation
if commandType=="sohbetCumleleri":
if command=="nasilsin":
self.module.speak(random.choice(self.commands["nasilsindonusCumleleri"]["donus"]))
elif command=="tesekkur":
self.module.speak("Rica ederim {}".format(self.function.GetInfo("name")))
elif command=="iyiyim":
self.module.speak("Hep iyi ol :)")
#user update
elif commandType=="update" :
if command=="isimguncelle" :
if self.function.UpdateInfo ("name"):
self.module.speak ("İsmini {} olarak güncelledim".format( self.function.GetInfo ("name")))
elif command=="yasguncelle" :
if self.function.UpdateInfo( "age"):
self.module.speak("Yaşını {} olarak güncelledim.".format(self.function.GetInfo("age")))
elif command=="sehirguncelle":
if self.function.UpdateInfo("hometown","city"):
self.module.speak("Yaşadığın şehri {} olarak güncelledim.".format(self.function.GetInfo("hometown","city")))
elif command=="dogumtarihiguncelle":
if self.function.UpdateInfo("birthdate"):
self.module.speak("Doğum tarihini {} olarak güncelledim.".format(self.function.GetInfo("birthdate")))
elif command=="okulguncelle":
if self.function.UpdateInfo("university","faculty","department"):
self.module.speak("Okul bilgilerini {} olarak güncelledim.".format(self.function.GetInfo("university","faculty","department")))
elif command=="meslekguncelle":
if self.function.UpdateInfo("job"):
self.module.speak( "Meslek bilgilerini {} olarak güncelledim.".format(self.function.GetInfo("job")))
#user info
elif commandType=="getInfo" :
if command=="meslekgetir" :
self.module.speak(self.function.GetInfo ("job"))
if command=="yasgetir":
self.module.speak(self.function.GetInfo("age"))
if command=="sehirgetir":
self.module.speak(self.function.GetInfo("hometown","city"))
if command=="dogumtarihigetir":
self.module.speak(self.function.GetInfo("birthdate"))
if command=="okulbilgisigetir":
self.module.speak(self.function.GetInfo("school","university"))
self.module.speak(self.function.GetInfo("school","faculty"))
self.module.speak(self.function.GetInfo("school","department"))
#asistan info
elif commandType=="asistanInfo" :
if command=="kendinitanit" :
self.module.speak ("Merhabalar benim adım Seda. Ben bir sesli asistanım" )
elif command=="isimsoru" :
self.module.speak ("Benim adım Seda" )
#time functions
elif commandType=="timeFunctions" :
if command=="saatSoru" :
self.module.speak ("Şu an saat "+self.function.Clock() )
elif command=="tarihSoru" :
self.module.speak ("Bugün: "+self.function.Date())
#quick search
elif commandType=="quickSearch":
if command=="havaDurumuSoru":
self.module.speak("İşte bugünkü hava durumu:")
self.function.Search("Hava durumu")
#search
elif commandType=="search":
if command=="webAra":
self.module.speak("İşte senin için bulduklarım: ")
self.function.Search(search)
if command=="musicAra":
self.function.YoutubePlay(search)
#close
elif commandType=="close" :
if command=="kapat" :
self.module.speak ("Görüşmek üzere {}".format (self.function.GetInfo ("name")))
return 0
else:
self.module.speak ("Bir şeyler ters gitti" )
return 0
return 1 | [
"73945726+sirmakalender@users.noreply.github.com"
] | 73945726+sirmakalender@users.noreply.github.com |
fd5b3d07a2a0a980e3a2da89214375a9c7a9d6ec | 1cfb61bb6cee6c8978ad50956d5af36edeb7ee6f | /menu/migrations/0007_auto_20161007_1750.py | 21534b135687d6b66964406bad09b712e06dffb0 | [] | no_license | greenmails2001/analytics | 221a2264e8a9db63df9ab57fa6393b1e0df62052 | cfde53d5402f302e904b96991d67a0c9a210a6c9 | refs/heads/master | 2021-01-11T05:43:43.666368 | 2016-10-31T14:45:11 | 2016-10-31T14:45:11 | 71,340,991 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,978 | py | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('menu', '0006_auto_20161005_1327'),
]
operations = [
migrations.RenameField(
model_name='file',
old_name='created',
new_name='createddate',
),
migrations.RenameField(
model_name='file',
old_name='updated',
new_name='updateddate',
),
migrations.RenameField(
model_name='image',
old_name='created',
new_name='createddate',
),
migrations.RenameField(
model_name='image',
old_name='updated',
new_name='updateddate',
),
migrations.RenameField(
model_name='menudetail',
old_name='created',
new_name='createddate',
),
migrations.RenameField(
model_name='menudetail',
old_name='updated',
new_name='updateddate',
),
migrations.RenameField(
model_name='menuheader',
old_name='created',
new_name='createddate',
),
migrations.RenameField(
model_name='menuheader',
old_name='updated',
new_name='updateddate',
),
migrations.RenameField(
model_name='text',
old_name='created',
new_name='createddate',
),
migrations.RenameField(
model_name='text',
old_name='updated',
new_name='updateddate',
),
migrations.RenameField(
model_name='video',
old_name='created',
new_name='createddate',
),
migrations.RenameField(
model_name='video',
old_name='updated',
new_name='updateddate',
),
]
| [
"greenmails2001@gmail.com"
] | greenmails2001@gmail.com |
92ec94b88e74f9385c3753e035a3676a25f2ecc7 | 6e5c2ba6cd380af56d7714cd6b3ec31b0e0d947e | /src/error_single.py | 082454e4f3df909b97bfed7a7eed20a83a2d8748 | [] | no_license | luedu/Bokeh-Effect | 74a0d2b2800a458da9983d377418542bf40d409c | f985dd366918f35de92ec118ca0b4783812ad4d6 | refs/heads/master | 2022-04-17T12:32:54.975888 | 2020-04-19T14:10:54 | 2020-04-19T14:10:54 | 257,001,932 | 0 | 0 | null | 2020-04-19T13:08:40 | 2020-04-19T13:08:40 | null | UTF-8 | Python | false | false | 1,794 | py | import torch
import cv2
import sys
from utils import dice_coeff,dice_loss,normalization,denormalize,ab_rel_diff,sq_rel_diff,rms_linear
import numpy as np
def set_requires_grad(nets, requires_grad=False):
if not isinstance(nets, list):
nets = [nets]
for net in nets:
if net is not None:
for param in net.parameters():
param.requires_grad = requires_grad
modelName = sys.argv[1]
modelType = sys.argv[2]
imagePath = sys.argv[3]
depthMap = sys.argv[4]
image = cv2.resize(cv2.imread(imagePath),(256,256), interpolation=cv2.INTER_CUBIC)
depth = cv2.resize(cv2.imread(depthMap),(256,256), interpolation=cv2.INTER_CUBIC)
image = torch.from_numpy(np.array(image).reshape(1,3,256,256)).float()
depth = torch.from_numpy(np.array(depth).reshape(1,3,256,256)).float()
if modelType == 'c' :
model = torch.load("../CGmodel/"+modelName)
gen = model.G_XtoY
elif modelType == 'p' :
model = torch.load("../P2Pmodel/"+modelName)
gen = model.G
else:
print("Choose a model type from 'c/p'")
exit(1)
set_requires_grad(gen,False)
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
image = normalization(image).to(device)
pred_depth = gen.to(device).forward(image)
depth = normalization(depth).to(device)
cv2.imwrite("testDepth.jpg", np.array(denormalize(depth).cpu().detach()).reshape(256,256,3))
pred_depth = denormalize(pred_depth,flag=1)
depth = denormalize(depth,flag=1)
# dice=dice_coeff(pred_depth,depth)
rel_dif = ab_rel_diff(pred_depth,depth)
sq_rel_dif = sq_rel_diff(pred_depth,depth)
rms = rms_linear(pred_depth,depth)
# print("Dice Coefficient is : ", dice)
print("Absolute Relative Difference is : ", rel_dif)
print("Square Relative Difference is : ", sq_rel_dif)
print("RMS Difference is : ", rms)
| [
"yashkhem1@gmail.com"
] | yashkhem1@gmail.com |
f28ba09e107306b65b13e2ac8683488c3fbf89a0 | 13152e95d8f0fa7c9b9bcb0be368b869b8c34b0f | /apps/diary/migrations/0003_auto_20180929_1857.py | 869839b1cbe31778bbda7881611ab44efa2b9530 | [] | no_license | Emiyaaaaa/personalweb | 75872239a963ce59665735a2c9bfff46dc2a671a | a4d47dc9a3a5fdf1c3d24d587a177e19b878b661 | refs/heads/master | 2021-06-03T09:22:31.201318 | 2020-09-02T07:16:49 | 2020-09-02T07:16:49 | 148,086,883 | 1 | 1 | null | null | null | null | UTF-8 | Python | false | false | 386 | py | # Generated by Django 2.1.1 on 2018-09-29 18:57
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('diary', '0002_diary_diarycomment'),
]
operations = [
migrations.AlterModelOptions(
name='diarycomment',
options={'verbose_name': '评论', 'verbose_name_plural': '评论'},
),
]
| [
"2914034404@qq.com"
] | 2914034404@qq.com |
e886796a357ded12e7a87bd69fcd9177507e8a8b | 348d736636ddc3490df1b47fafbe26d10124148e | /camera_pi.py | d502e24cc78b9b0ae47ee12cd1dd097b5bc64041 | [] | no_license | HensonZl/hackrfpibot | 2636fbf19627913ddc754f5acc89d866612cb672 | 4eb730f5add931d0d26f2ec1177994dee5417012 | refs/heads/master | 2020-05-18T13:11:47.446115 | 2019-05-01T21:57:28 | 2019-05-01T21:57:28 | 184,431,429 | 16 | 1 | null | null | null | null | UTF-8 | Python | false | false | 1,986 | py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# camera_pi.py
#
# NOT MY SCRIPT this was used from https://www.hackster.io/ruchir1674/video-streaming-on-flask-server-using-rpi-ef3d75
# Look at the above link to get the documentation for the following script.
import time
import io
import threading
import picamera
class Camera(object):
thread = None # background thread that reads frames from camera
frame = None # current frame is stored here by background thread
last_access = 0 # time of last client access to the camera
def initialize(self):
if Camera.thread is None:
# start background frame thread
Camera.thread = threading.Thread(target=self._thread)
Camera.thread.start()
# wait until frames start to be available
while self.frame is None:
time.sleep(0)
def get_frame(self):
Camera.last_access = time.time()
self.initialize()
return self.frame
@classmethod
def _thread(cls):
with picamera.PiCamera() as camera:
# camera setup
camera.resolution = (320, 240)
camera.hflip = True
camera.vflip = True
# let camera warm up
camera.start_preview()
time.sleep(2)
stream = io.BytesIO()
for foo in camera.capture_continuous(stream, 'jpeg',
use_video_port=True):
# store frame
stream.seek(0)
cls.frame = stream.read()
# reset stream for next frame
stream.seek(0)
stream.truncate()
# if there hasn't been any clients asking for frames in
# the last 10 seconds stop the thread
if time.time() - cls.last_access > 10:
break
cls.thread = None | [
"noreply@github.com"
] | HensonZl.noreply@github.com |
4c87054e4f6b517be8dae9e5d95da62f3c6a37aa | 47884bb53ffb293ccfff5e4c808915e00f6cc0d3 | /archive/timeDelta.py | d80a440ffeeba2400e92fbacc59bb5a9a95990b1 | [] | no_license | andyschultz/Scripts | f0b75b537b825fa7ff89efec63299e2a697790f7 | 7d3b57e292ce8f48ac40553a51c052bbc1c975f8 | refs/heads/master | 2021-01-13T01:29:40.853048 | 2015-04-30T17:17:08 | 2015-04-30T17:17:08 | 26,029,990 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 583 | py | #!/usr/local/bin/python3
import pandas as pd, numpy as np,sys
file = sys.argv[1]
def buildDelta(file):
df = pd.read_csv(file,sep="\t",index_col=False,skiprows=1)
df.iloc[:,0]= pd.to_datetime(df.iloc[:,0])
df.insert(1,"Cumulative Time","NaN")
df["Cumulative Time"] = (df.iloc[:,0]-df.iloc[:,0].shift()).fillna(0)
df["Cumulative Time"] = df["Cumulative Time"].cumsum(axis=0)
df["Cumulative Time"] = df["Cumulative Time"] / np.timedelta64(1,'h')
df.to_csv(file.rstrip(".txt")+"-delta.txt",index=False,sep="\t")
buildDelta(file) | [
"andy.schultz1@gmail.com"
] | andy.schultz1@gmail.com |
5991aa7286b2e0849710359d66a0645c362da72d | 3b3be533e7fd90a84c54693975dd1809a8814e92 | /terrains.py | 4dffc6e4808ac39e3c204805f9124af000578d2e | [] | no_license | Fenrir127/advance_wars | ed9e91013fb7972d39557551b0a7964a255115a1 | 736eecde986111fa15f452f292201d2abb483a4e | refs/heads/main | 2023-03-27T13:21:32.349864 | 2021-03-26T03:14:57 | 2021-03-26T03:14:57 | 304,418,098 | 0 | 0 | null | 2021-02-20T00:02:20 | 2020-10-15T18:41:44 | Python | UTF-8 | Python | false | false | 9,912 | py | from os import path
from sprites import *
from setting import *
"""
This contains all the information for the different terrain in the game
Nothing should change in there unless there's a way to change terrain in the game which I don't think there is (except building hp)
"""
# This is the master class Terrain which only serves to pass on the function get_mvt_cost()
class Terrain:
def __init__(self, game):
self.game = game
self.terrain_type = None
self.infantry_mvt_cost = None
self.mech_mvt_cost = None
self.tires_mvt_cost = None
self.tread_mvt_cost = None
self.air_mvt_cost = None
self.ship_mvt_cost = None
self.transport_mvt_cost = None
# This function returns the mvt_cost for one of the 7 mvt_type on a given terrain
def get_mvt_cost(self, type):
if type == INFANTRY:
return self.infantry_mvt_cost
elif type == MECH:
return self.mech_mvt_cost
elif type == TIRES:
return self.tires_mvt_cost
elif type == TREAD:
return self.tread_mvt_cost
elif type == AIR:
return self.air_mvt_cost
elif type == SHIP:
return self.ship_mvt_cost
elif type == TRANSPORT:
return self.transport_mvt_cost
else:
print("get_mvt_cost was given the wrong input:")
print(type)
class Plain(Terrain):
def __init__(self, game, x, y):
super().__init__(game) # the super init doesn't really do anything for now
self.sprite = Plain_sprite(game, x, y)
self.name = "Plain"
self.defense = 1
self.type = LAND
# every terrain class must define the mvt cost for all movement types
# when a mvt_type cost is 0, it means units with this type of mvt cannot go on the tile
self.infantry_mvt_cost = 1
self.mech_mvt_cost = 1
self.tires_mvt_cost = 2
self.tread_mvt_cost = 1
self.air_mvt_cost = 1
self.ship_mvt_cost = 0
self.transport_mvt_cost = 0
class River(Terrain):
def __init__(self, game, x, y):
super().__init__(game) # the super init doesn't really do anything for now
self.sprite = River_sprite(game, x, y)
self.name = "River"
self.defense = 0
self.type = LAND
# every terrain class must define the mvt cost for all movement types
# when a mvt_type cost is 0, it means units with this type of mvt cannot go on the tile
self.infantry_mvt_cost = 2
self.mech_mvt_cost = 1
self.tires_mvt_cost = 0
self.tread_mvt_cost = 0
self.air_mvt_cost = 1
self.ship_mvt_cost = 0
self.transport_mvt_cost = 0
class Wood(Terrain):
def __init__(self, game, x, y):
super().__init__(game) # the super init doesn't really do anything for now
self.sprite = Wood_sprite(game, x, y)
self.name = "Wood"
self.defense = 2
self.type = LAND
# every terrain class must define the mvt cost for all movement types
# when a mvt_type cost is 0, it means units with this type of mvt cannot go on the tile
self.infantry_mvt_cost = 1
self.mech_mvt_cost = 1
self.tires_mvt_cost = 3
self.tread_mvt_cost = 2
self.air_mvt_cost = 1
self.ship_mvt_cost = 0
self.transport_mvt_cost = 0
class Mountain(Terrain):
def __init__(self, game, x, y):
super().__init__(game) # the super init doesn't really do anything for now
self.sprite = Mountain_sprite(game, x, y)
self.name = "Mountain"
self.defense = 4
self.type = LAND
# every terrain class must define the mvt cost for all movement types
# when a mvt_type cost is 0, it means units with this type of mvt cannot go on the tile
self.infantry_mvt_cost = 2
self.mech_mvt_cost = 1
self.tires_mvt_cost = 0
self.tread_mvt_cost = 0
self.air_mvt_cost = 1
self.ship_mvt_cost = 0
self.transport_mvt_cost = 0
class Sea(Terrain):
def __init__(self, game, x, y):
super().__init__(game) # the super init doesn't really do anything for now
self.sprite = Sea_sprite(game, x, y)
self.name = "Sea"
self.defense = 0
self.type = WATER
# every terrain class must define the mvt cost for all movement types
# when a mvt_type cost is 0, it means units with this type of mvt cannot go on the tile
self.infantry_mvt_cost = 0
self.mech_mvt_cost = 0
self.tires_mvt_cost = 0
self.tread_mvt_cost = 0
self.air_mvt_cost = 1
self.ship_mvt_cost = 1
self.transport_mvt_cost = 1
class Beach(Terrain):
def __init__(self, game, x, y):
super().__init__(game) # the super init doesn't really do anything for now
self.sprite = Beach_sprite(game, x, y)
self.name = "Sea"
self.defense = 0
self.type = WATER
# every terrain class must define the mvt cost for all movement types
# when a mvt_type cost is 0, it means units with this type of mvt cannot go on the tile
self.infantry_mvt_cost = 1
self.mech_mvt_cost = 1
self.tires_mvt_cost = 2
self.tread_mvt_cost = 1
self.air_mvt_cost = 1
self.ship_mvt_cost = 0
self.transport_mvt_cost = 1
class Road(Terrain):
def __init__(self, game, x, y):
super().__init__(game) # the super init doesn't really do anything for now
self.sprite = Road_sprite(game, x, y)
self.name = "Road"
self.defense = 0
self.type = LAND
# every terrain class must define the mvt cost for all movement types
# when a mvt_type cost is 0, it means units with this type of mvt cannot go on the tile
self.infantry_mvt_cost = 1
self.mech_mvt_cost = 1
self.tires_mvt_cost = 1
self.tread_mvt_cost = 1
self.air_mvt_cost = 1
self.ship_mvt_cost = 0
self.transport_mvt_cost = 0
class City(Terrain):
def __init__(self, game, x, y, owner):
super().__init__(game) # the super init doesn't really do anything for now
self.sprite = City_sprite(game, x, y, owner)
self.name = "City"
self.defense = 3
self.type = BUILDING
self.building_type = LAND
self.hp = 20
self.x = x
self.y = y
# every terrain class must define the mvt cost for all movement types
# when a mvt_type cost is 0, it means units with this type of mvt cannot go on the tile
self.infantry_mvt_cost = 1
self.mech_mvt_cost = 1
self.tires_mvt_cost = 1
self.tread_mvt_cost = 1
self.air_mvt_cost = 1
self.ship_mvt_cost = 0
self.transport_mvt_cost = 0
self.owner = owner
if owner is not None:
self.owner.buildings.append(self)
def add_funds(self):
self.owner.funds += 1000
def new_owner(self, player):
self.owner.buildings.remove(self)
self.sprite.kill()
self.sprite = City_sprite(self.game, self.x, self.y, player)
self.owner = player
self.owner.buildings.append(self)
class Factory(Terrain):
def __init__(self, game, x, y, owner):
super().__init__(game) # the super init doesn't really do anything for now
self.sprite = Factory_sprite(game, x, y, owner)
self.name = "factory"
self.defense = 3
self.type = BUILDING
self.building_type = LAND
self.hp = 20
self.x = x
self.y = y
# every terrain class must define the mvt cost for all movement types
# when a mvt_type cost is 0, it means units with this type of mvt cannot go on the tile
self.infantry_mvt_cost = 1
self.mech_mvt_cost = 1
self.tires_mvt_cost = 1
self.tread_mvt_cost = 1
self.air_mvt_cost = 1
self.ship_mvt_cost = 0
self.transport_mvt_cost = 0
self.owner = owner
if owner is not None:
self.owner.buildings.append(self)
def add_funds(self):
self.owner.funds += 1000
def new_owner(self, player):
self.owner.buildings.remove(self)
self.sprite.kill()
self.sprite = City_sprite(self.game, self.x, self.y, player)
self.owner = player
self.owner.buildings.append(self)
class HQ(Terrain):
def __init__(self, game, x, y, owner):
super().__init__(game) # the super init doesn't really do anything for now
self.sprite = Hq_sprite(game, x, y, owner)
self.name = "HQ"
self.defense = 4
self.type = BUILDING
self.building_type = LAND
self.hp = 20
self.x = x
self.y = y
# every terrain class must define the mvt cost for all movement types
# when a mvt_type cost is 0, it means units with this type of mvt cannot go on the tile
self.infantry_mvt_cost = 1
self.mech_mvt_cost = 1
self.tires_mvt_cost = 1
self.tread_mvt_cost = 1
self.air_mvt_cost = 1
self.ship_mvt_cost = 0
self.transport_mvt_cost = 0
self.owner = owner
if owner is not None:
self.owner.buildings.append(self)
def add_funds(self):
self.owner.funds += 1000
def new_owner(self, player):
print("You win the game!")
self.game.preview_text.text = ""
self.game.preview_text.text = "You win the game!!!"
self.game.draw()
exit()
| [
"noreply@github.com"
] | Fenrir127.noreply@github.com |
c2ae54754ea651fb4d0e578fe907000e3bf0da28 | f1efbd5d8039e95809ad8d313bd1a9c96d51cbf9 | /sql_queries.py | 0bbbb3f48c5d256f37eb83270cec170d4660c9b2 | [] | no_license | WittmannF/data-engineering-projects-postgres | 48a7c889133c6d17af825ef4ce1d59e5b6b41e50 | 5b3200c8977d6162d56f40247e8390d028c0ad8c | refs/heads/main | 2023-02-15T18:11:39.796621 | 2021-01-05T21:44:14 | 2021-01-05T21:44:14 | 326,008,955 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,191 | py | # DROP TABLES
songplay_table_drop = "DROP TABLE IF EXISTS songplays;"
user_table_drop = "DROP TABLE IF EXISTS users;"
song_table_drop = "DROP TABLE IF EXISTS songs;"
artist_table_drop = "DROP TABLE IF EXISTS artists;"
time_table_drop = "DROP TABLE IF EXISTS time;"
# CREATE TABLES
songplay_table_create = ("""
CREATE TABLE songplays (
songplay_id SERIAL PRIMARY KEY,
start_time BIGINT NOT NULL,
user_id INT,
level VARCHAR,
song_id VARCHAR,
artist_id VARCHAR,
session_id INT,
location VARCHAR,
user_agent VARCHAR
);
""")
user_table_create = ("""
CREATE TABLE users (
user_id INT PRIMARY KEY,
first_name VARCHAR,
last_name VARCHAR,
gender VARCHAR,
level VARCHAR
);
""")
song_table_create = ("""
CREATE TABLE songs (
song_id VARCHAR PRIMARY KEY,
title VARCHAR,
artist_id VARCHAR NOT NULL,
year INT,
duration FLOAT
);
""")
artist_table_create = ("""
CREATE TABLE artists (
artist_id VARCHAR PRIMARY KEY,
name VARCHAR,
location VARCHAR,
latitude FLOAT,
longitude FLOAT
);
""")
time_table_create = ("""
CREATE TABLE time (
start_time BIGINT PRIMARY KEY,
hour INT,
day INT,
week INT,
month INT,
year INT,
weekday INT
);
""")
# INSERT RECORDS
songplay_table_insert = ("""
INSERT INTO songplays (
start_time,
user_id,
level,
song_id,
artist_id,
session_id,
location,
user_agent)
VALUES ( %s, %s, %s, %s, %s, %s, %s, %s);
""")
user_table_insert = ("""
INSERT INTO users (
user_id,
first_name,
last_name,
gender,
level)
VALUES (%s, %s, %s, %s, %s)
ON CONFLICT (user_id)
DO UPDATE SET level = EXCLUDED.level;
""")
song_table_insert = ("""
INSERT INTO songs (
song_id,
title,
artist_id,
year,
duration)
VALUES (%s, %s, %s, %s, %s)
ON CONFLICT (song_id)
DO NOTHING;
""")
artist_table_insert = ("""
INSERT INTO artists (
artist_id,
name,
location,
latitude,
longitude)
VALUES (%s, %s, %s, %s, %s)
ON CONFLICT (artist_id)
DO NOTHING;
""")
time_table_insert = ("""
INSERT INTO time (
start_time,
hour,
day,
week,
month,
year,
weekday)
VALUES (%s, %s, %s, %s, %s, %s, %s)
ON CONFLICT (start_time)
DO NOTHING;
""")
# FIND SONGS
song_select = ("""
SELECT songs.song_id, artists.artist_id
FROM songs INNER JOIN artists ON (songs.artist_id = artists.artist_id)
WHERE songs.title = %s AND artists.name = %s AND songs.duration = %s
;
""")
# QUERY LISTS
create_table_queries = [
songplay_table_create,
user_table_create,
song_table_create,
artist_table_create,
time_table_create
]
drop_table_queries = [
songplay_table_drop,
user_table_drop,
song_table_drop,
artist_table_drop,
time_table_drop
] | [
"fernando.wittmann@gmail.com"
] | fernando.wittmann@gmail.com |
0da90c73bc71313602b59d4b1cce999930cd4017 | 637669abf38aa06d786458bcb552d0d5dc188302 | /claripy/ast/__init__.py | 2da826a5b43d467502f3d34eadb856d283ede3f4 | [
"BSD-2-Clause"
] | permissive | angr/claripy | c5603b52f829a9b29630ed6665ab7ec294cb8157 | b35449fecd129dc46a0cabdd6499354e89b38a68 | refs/heads/master | 2023-09-05T18:48:19.736126 | 2023-09-05T17:17:45 | 2023-09-05T17:17:45 | 40,328,505 | 260 | 115 | BSD-2-Clause | 2023-09-11T22:09:06 | 2015-08-06T21:50:19 | Python | UTF-8 | Python | false | false | 1,376 | py | # pylint:disable=redefined-outer-name
from typing import TYPE_CHECKING
# Mypy is severely confused by this delayed import trickery, but works if we just pretend that the import
# happens here already
if TYPE_CHECKING:
from .bits import Bits
from .bv import BV
from .vs import VS
from .fp import FP
from .bool import Bool, true, false
from .int import Int
from .base import Base
from .strings import String
from .. import ops as all_operations
else:
Bits = lambda *args, **kwargs: None
BV = lambda *args, **kwargs: None
VS = lambda *args, **kwargs: None
FP = lambda *args, **kwargs: None
Bool = lambda *args, **kwargs: None
Int = lambda *args, **kwargs: None
Base = lambda *args, **kwargs: None
true = lambda *args, **kwargs: None
false = lambda *args, **kwargs: None
String = lambda *args, **kwargs: None
all_operations = None
def _import():
global Bits, BV, VS, FP, Bool, Int, Base, String, true, false, all_operations
from .bits import Bits
from .bv import BV
from .vs import VS
from .fp import FP
from .bool import Bool, true, false
from .int import Int
from .base import Base
from .strings import String
from .. import ops as all_operations
__all__ = ("Bits", "BV", "VS", "FP", "Bool", "true", "false", "Int", "Base", "String", "all_operations")
| [
"noreply@github.com"
] | angr.noreply@github.com |
64cba2c2b0ca9bb48817b6596678847d35379587 | 2428f771974183f86dd76a5ab9621097bba85d4e | /solve.py | 28c74e44d34b35b2770e55b9d057a465143ad34e | [] | no_license | Oripy/nonogram-solver | 3bdcffd282e49b117a10e475b65734e6ae23fa09 | d81b79caac04f8666bc39cba2a8fe95e592ab9e3 | refs/heads/master | 2021-01-15T16:00:47.186485 | 2011-07-18T08:40:48 | 2011-07-18T08:40:48 | 3,313,624 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 9,922 | py | #!/usr/bin/env python
import sys
import string
import copy
import types
from data_diff import data_diff
def get_permutations(counts, length):
"""
>>> get_permutations([], 1)
[[False]]
>>> get_permutations([1], 1)
[[True]]
>>> get_permutations([2], 3)
[[True, True, False], [False, True, True]]
>>> get_permutations([2], 4)
[[True, True, False, False], [False, True, True, False], [False, False, True, True]]
>>> get_permutations([1, 1], 4)
[[True, False, True, False], [True, False, False, True], [False, True, False, True]]
>>> get_permutations([1, 2], 5)
[[True, False, True, True, False], [True, False, False, True, True], [False, True, False, True, True]]
>>> get_permutations([1, 1, 2], 7)
[[True, False, True, False, True, True, False], [True, False, True, False, False, True, True], [True, False, False, True, False, True, True], [False, True, False, True, False, True, True]]
"""
if len(counts) == 0:
row = []
for x in xrange(length):
row.append(False)
return [row]
permutations = []
for start in xrange(length - counts[0] + 1):
permutation = []
for x in xrange(start):
permutation.append(False)
for x in xrange(start, start + counts[0]):
permutation.append(True)
x = start + counts[0]
if x < length:
permutation.append(False)
x += 1
if x == length and len(counts) == 0:
permutations.append(permutation)
break
sub_start = x
sub_rows = get_permutations(counts[1:len(counts)], length - sub_start)
for sub_row in sub_rows:
sub_permutation = copy.deepcopy(permutation)
for x in xrange(sub_start, length):
sub_permutation.append(sub_row[x-sub_start])
permutations.append(sub_permutation)
return permutations
def solve_row(counts, row):
"""
>>> solve_row([], [None])
[False]
>>> solve_row([1], [None])
[True]
>>> solve_row([2], [False, None, None])
[False, True, True]
>>> solve_row([2], [True, None, None])
[True, True, False]
>>> solve_row([2], [None, None, None])
[None, True, None]
>>> solve_row([2], [None, False, None, None])
[False, False, True, True]
>>> solve_row([2], [None, False, None, None, None, None])
[False, False, None, None, None, None]
row already completed:
>>> solve_row([1], [None, True, None])
[False, True, False]
too far away to be able to complete
>>> solve_row([2], [None, True, None, None])
[None, True, None, False]
assume positions of all except one count
>>> solve_row([1, 2], [None, None, None, None, None])
[None, None, None, True, None]
>>> solve_row([1, 1, 1, 2], [None, None, None, None, None, None, None, None, None])
[None, None, None, None, None, None, None, True, None]
>>> solve_row([1, 7], [None, False, True, None, None, None, None, None, None, None])
[True, False, True, True, True, True, True, True, True, False]
doesn't fit on one size of False
>>> solve_row([1, 1], [None, False, None, None])
[True, False, None, None]
doesn't fit on one size of False
>>> solve_row([1, 2], [None, None, False, None, None, None])
[None, None, False, None, True, None]
already started on one side of False
>>> solve_row([4], [None, None, None, None, False, None, True, None, None, None])
[False, False, False, False, False, None, True, True, True, None]
"""
permutations = get_permutations(counts, len(row))
valid_permutations = []
for permutation in permutations:
valid = True
for x in xrange(len(row)):
if row[x] != None and row[x] != permutation[x]:
valid = False
if valid:
valid_permutations.append(permutation)
new_row = copy.deepcopy(valid_permutations[0])
for permutation in valid_permutations:
for x in xrange(len(row)):
if new_row[x] != permutation[x]:
new_row[x] = None
return new_row
def solve(row_counts, col_counts, grid):
width = len(grid[0])
height = len(grid)
changed = True
while changed:
changed = False
for x in xrange(width):
col = []
for y in xrange(height):
col.append(grid[y][x])
col = solve_row(col_counts[x], col)
for y in xrange(height):
if col[y] != None and grid[y][x] != col[y]:
changed = True
grid[y][x] = col[y]
for y in xrange(height):
row = copy.deepcopy(grid[y])
row = solve_row(row_counts[y], row)
for x in xrange(1):
if row[x] != None and grid[y][x] != row[x]:
changed = True
grid[y] = row
return grid
def check_solution(grid):
row_counts = []
col_counts = []
for y in xrange(len(grid)):
row_counts.append([0])
for x in xrange(len(grid[0])):
col_counts.append([0])
for y in xrange(len(grid)):
for x in xrange(len(grid[0])):
if grid[y][x] == True:
row_counts[y][-1] += 1
col_counts[x][-1] += 1
elif grid[y][x] == False:
if row_counts[y][-1] != 0:
row_counts[y].append(0)
if col_counts[x][-1] != 0:
col_counts[x].append(0)
for y in xrange(len(grid)):
if row_counts[y][-1] == 0:
row_counts[y].pop()
for x in xrange(len(grid[0])):
if col_counts[x][-1] == 0:
col_counts[x].pop()
return [row_counts, col_counts]
def solve_from_file(filename):
f = open(filename)
lines = f.readlines()
#convert into a list of lists and remove whitespace
grid = []
width = 0
for line in lines:
line = line.rstrip()
if line:
row = string.split(line, "\t")
width = max(width, len(row))
grid.append(row)
height = len(grid)
#convert into integers and normalize row width
y = 0
for row in grid:
new_row = []
for x in xrange(width):
try:
i = int(row[x])
except IndexError:
i = None
except ValueError:
if row[x] == 'T':
i = True
elif row[x] == 'F':
i = False
else:
i = None
new_row.append(i)
grid[y] = new_row
y += 1
#measure height and width of inner grid
x = width - 1
y = height - 1
while x >= 0:
if type(grid[y][x]) == types.IntType:
break
x -= 1
inner_width = width - x - 1
x = width - 1
y = height - 1
while y >= 0:
if type(grid[y][x]) == types.IntType:
break
y -= 1
inner_height = len(grid) - y - 1
print "board size: %dx%d" % (inner_width, inner_height)
#ensure inner grid is valid
for x in xrange(width - inner_width, width):
for y in xrange(height - inner_height, height):
if type(grid[y][x]) != types.NoneType and type(grid[y][x]) != types.BooleanType:
print 'invalid board'
exit()
#ensure upper left is empty
for x in xrange(width - inner_width):
for y in xrange(height - inner_height):
if grid[y][x] != None:
print 'invalid board'
exit()
counts_width = width - inner_width
counts_height = height - inner_height
#populate row counts
row_counts = []
for y in xrange(counts_height, height):
counts = []
for x in xrange(counts_width):
count = grid[y][x]
if count:
counts.append(count)
row_counts.append(counts)
#populate column counts
col_counts = []
for x in xrange(counts_width, width):
counts = []
for y in xrange(counts_height):
count = grid[y][x]
if count:
counts.append(count)
col_counts.append(counts)
#redo grid
width = inner_width
height = inner_height
inner_grid = []
for y in xrange(height):
inner_grid.append([])
for x in xrange(width):
inner_grid[y].append(grid[y+counts_height][x+counts_width])
grid = solve(row_counts, col_counts, inner_grid)
complete = True
for row in grid:
for item in row:
if item == None:
complete = False
if complete:
l = check_solution(grid)
if data_diff(l[0], row_counts) or data_diff(l[1], col_counts):
print 'FAIL!'
exit()
for y in xrange(counts_height):
for x in xrange(counts_width):
sys.stdout.write("\t")
for counts in col_counts:
try:
sys.stdout.write(str(counts[-counts_height+y]))
except:
pass
sys.stdout.write("\t")
print
y = 0
for row in grid:
for x in xrange(counts_width):
try:
sys.stdout.write(str(row_counts[y][-counts_width+x]))
except:
pass
sys.stdout.write("\t")
for square in row:
if square == True:
sys.stdout.write('T')
elif square == False:
sys.stdout.write('F')
sys.stdout.write("\t")
print
y += 1
if __name__ == "__main__":
if len(sys.argv) > 1:
solve_from_file(sys.argv[1])
else:
import doctest
doctest.testmod() | [
"repalviglator@yahoo.com"
] | repalviglator@yahoo.com |
5d8cfdb679b337f26330b1c109a88a1680180caf | d569476dd95496339c34b231621ff1f5dfd7fe49 | /PyTest/SteamSender/tests/test_send_cards.py | 996577a1586476bfeec33e7f74f1ba41cfd2b17e | [] | no_license | monteua/Tests | 10f21f9bae027ce1763c73e2ea7edaf436140eae | 553e5f644466683046ea180422727ccb37967b98 | refs/heads/master | 2021-01-23T10:28:49.654273 | 2018-05-09T09:11:30 | 2018-05-09T09:11:30 | 93,061,159 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 494 | py | from PageObject.SteamActions import SteamHome
from accounts import accounts
accounts_list = accounts()
def test_send_trade(driver):
for login in accounts_list:
if login == 'monte_ua13':
password = ""
else:
password = ""
SteamHome(driver).open_browser()
SteamHome(driver).enter_credentials(login, password)
SteamHome(driver).pass_steam_guard()
SteamHome(driver).open_trade_url()
SteamHome(driver).log_off()
| [
"arximed.monte@gmail.com"
] | arximed.monte@gmail.com |
4770757cc653f027b500d6f75168f8318a702d86 | 7f2612e5132e1583e5ba9758f299a8f301f0dc70 | /FB/5-longest-palindromic-substring.py | fb44ee0f8a6db9b0e87b7abf9cf4a48bd884a73a | [] | no_license | taeheechoi/coding-practice | 380e263a26ed4de9e542c51e3baa54315127ae4f | 9528b5e85b0ea2960c994ffea62b5be86481dc38 | refs/heads/main | 2022-07-09T11:22:18.619712 | 2022-06-28T14:55:51 | 2022-06-28T14:55:51 | 447,082,854 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 426 | py | class Solution:
# Time O(N^2) Space O(1)
def longestPalindrome(self, s):
res = ''
for i in range(len(s)):
odd = self.is_pal(s, i, i)
even = self.is_pal(s, i, i+1)
res = max(odd, even, res, key=len)
return res
def is_pal(self, s, l, r):
while l >= 0 and r < len(s) and s[l] == s[r]:
l -= 1
r += 1
return s[l+1: r] | [
"dadac76@hotmail.com"
] | dadac76@hotmail.com |
d3b5e095fa1dab8e9c98895fa11a48312d856b56 | 874f46f4510b321ec3110ac8d5d5e572175c5544 | /Generator_Tests/TestFrec/scripts/generator.py | 94df7463f40e16990b3f6614572ff87accc2eb5a | [] | no_license | JordiEspinozaMendoza/Simulacion | bb271aee0908693ff0e36470dae98216096d9066 | fac1cdf5010a34a853a8b13d93209bcbde616e64 | refs/heads/main | 2023-05-31T14:06:21.329271 | 2021-06-14T02:52:06 | 2021-06-14T02:52:06 | 367,148,203 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,014 | py | import sys
import os
import pandas as pd
sys.setrecursionlimit(5000)
# X = Semilla
# a = Multiplicador
# c = Constante aditiva
# m = Modulo
def Operacion(X, a, c, m):
Resi = ((a*X)+c) % m
return Resi
def createDataFrame(data):
df = pd.DataFrame(data, columns=["n","Xn","Xn+1","Rn"])
cols = list(df.columns)
return df.to_string(), df, cols
def Recursivo(self, X0, a, c, m, conta,Detener, ArraySemilla, data):
try:
for Semilla in ArraySemilla:
if X0==Semilla:
Detener = True
if Detener==True or conta==325:
pass
else:
data["n"].append(conta+1)
data["Xn"].append(X0)
data["Xn+1"].append(Operacion(X0,a,c,m))
data["Rn"].append(Operacion(X0,a,c,m)/m)
conta = conta + 1
ArraySemilla.append(X0)
Recursivo(Operacion(X0,a,c,m),a,c,m,conta,Detener, ArraySemilla, data)
except Exception as e:
print(str(e))
| [
"jordi8101@gmail.com"
] | jordi8101@gmail.com |
cb4ceece3e859d4af57c7b4bc35b7c12546e1c09 | b329784883875fea0d655f4371549c400ab876a7 | /news.py | 5cc3035a0d6bf571d225ffb8a12fb412c8575b22 | [] | no_license | veekaybee/markovhn | 9ce8b4159c483bbc0629bf9cc51d0eba591bd553 | 99f5eefc292fc511d1f89b1acbf1ba0199245b16 | refs/heads/master | 2021-01-23T18:50:48.906754 | 2015-08-24T11:46:41 | 2015-08-24T11:46:41 | 41,229,413 | 15 | 4 | null | null | null | null | UTF-8 | Python | false | false | 675 | py | import urllib2
import json
#HackerNews API documentation: https://github.com/HackerNews/API
api_url='https://hacker-news.firebaseio.com/v0/topstories.json'
item_url='https://hacker-news.firebaseio.com/v0/item/'
#Pull all story numbers into a Python data dictionary
response = urllib2.urlopen(api_url)
data=json.load(response)
#Takes each story number and extracts the title by treating as Python dictionary
with open("headlines.txt", "w") as output_file:
for i in data:
genurl="%s%s.json?print=pretty" % (item_url, i)
item_response=urllib2.urlopen(genurl)
parsed_response=json.load(item_response)
output_file.write(parsed_response["title"].encode('utf-8'))
| [
"vicki.boykis@gmail.com"
] | vicki.boykis@gmail.com |
ce65095ee46c58e871cd6b80c4cfe769ace6e7a1 | f5f7f8d12956e4bff6e1c5f6fab10b006690f195 | /luffy/settings.py | fe7c34ae1af2839496be8ef590c0c49e0a16121b | [] | no_license | chenrun666/luffy | 1fbee911d1d7f86e5c7b1ed7f47e84f6f1ee9846 | 59f6229e16978ab9c40ef948807c717c2cddaea9 | refs/heads/master | 2020-04-07T16:09:20.306754 | 2018-11-21T08:45:29 | 2018-11-21T08:45:29 | 158,517,404 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,582 | py | """
Django settings for luffy project.
Generated by 'django-admin startproject' using Django 1.11.15.
For more information on this file, see
https://docs.djangoproject.com/en/1.11/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.11/ref/settings/
"""
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'h*zthsj)s$^_5kxkdbk+^gy2ih+vh6kpw#wu$uy^0bce((+k)9'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'course.apps.CourseConfig',
'rest_framework',
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'course.mymiddleware.accessmiddleware.CrossDomainMiddleWare',
]
ROOT_URLCONF = 'luffy.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')]
,
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'luffy.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/1.11/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/
STATIC_URL = '/static/'
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": "redis://127.0.0.1:6379",
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
"CONNECTION_POOL_KWARGS": {"max_connections": 100}
# "PASSWORD": "密码",
}
}
}
| [
"17610780919@163.com"
] | 17610780919@163.com |
593c5efa70cba81b2a1c8e74a4bd3a4e8bf6c73c | 1bf512659c750eba27896ad5d1a5ad61fe08c0e4 | /musicrest/apps/api/models.py | 79348bd25ffd3e745eb1e479628b244e86f1bfc0 | [] | no_license | jeremyhilado/python-django-mini-project | fc80976e8576aa1eab9269521131107936bf8502 | 492e301e80266f1a44ba8ba3e5649af4992c836e | refs/heads/master | 2023-08-17T19:43:03.052514 | 2020-06-06T18:13:33 | 2020-06-06T18:13:33 | 261,493,243 | 0 | 0 | null | 2021-09-22T18:58:26 | 2020-05-05T14:22:20 | Python | UTF-8 | Python | false | false | 535 | py | from django.db import models
from apps.authentication.models import User
# Create your models here.
class Artist(models.Model):
name = models.CharField(max_length=255)
genre = models.CharField(max_length=255)
biography = models.TextField(blank=True)
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)
owner = models.ForeignKey(User, on_delete=models.CASCADE)
is_public = models.BooleanField(default=True)
def __str__(self):
return self.name
| [
"jhilado89@gmail.com"
] | jhilado89@gmail.com |
23fbea60c2bea452a414dcf5f255cd4eabdab38a | 437e905d8c214dc25c559b1dc03eaf9f0c85326f | /is28/vyacheslavleva28/lab6/function.py | 1522faa137dc1fcb8f84d4cc4b96a551fd47870d | [] | no_license | AnatolyDomrachev/karantin | 542ca22c275e39ef3491b1c0d9838e922423b5a9 | 0d9f60207e80305eb713fd43774e911fdbb9fbad | refs/heads/master | 2021-03-29T03:42:43.954727 | 2020-05-27T13:24:36 | 2020-05-27T13:24:36 | 247,916,390 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 364 | py | def vvod():
a = []
for i in range(10):
x = float(input())
a.append(x)
return a
def rachet(a):
res = True
for i in range(0,len(a)-1):
if a[i]> a[i+1]:
res = False
return res
def vyvod(data):
print(result)
data = vvod()
print(data)
result = rachet(data)
print(result)
vyvod(result)
print(vyvod) | [
"you@example.com"
] | you@example.com |
7e595d3e782adea8924f7a1dd1432bd467b968e7 | 6ede75099fc38a682e030d70051389ea182d6cc2 | /ともき本番/incomeexpensesapi/menu/migrations/0028_foodstuff_myrecipe_usereat.py | b1c52866aa49cd76e4c04d5b33843c23ec472259 | [] | no_license | hangtran93tk/team06 | 0d86e59be866d7f6bda1b6c81f725ca1f80eba0f | 89000be20c18d3b9610c240b25c7c1944fc68d6d | refs/heads/master | 2023-03-12T11:58:03.802711 | 2021-02-26T03:51:36 | 2021-02-26T03:51:36 | 279,473,813 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,149 | py | # Generated by Django 3.0.5 on 2020-12-20 06:56
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('menu', '0027_menuinfo'),
]
operations = [
migrations.CreateModel(
name='Foodstuff',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=255, null=True)),
('one_point_gram', models.FloatField()),
('one_point', models.FloatField()),
('two_point', models.FloatField()),
('three_point', models.FloatField()),
('four_point', models.FloatField()),
],
),
migrations.CreateModel(
name='UserEat',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('eatTime', models.IntegerField(choices=[(1, '朝食'), (2, '昼食'), (3, '夕食'), (4, '間食')])),
('date', models.DateField(auto_now_add=True)),
('menu', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='eatmenu', to='menu.MenuInfo')),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='eatuser', to=settings.AUTH_USER_MODEL)),
],
),
migrations.CreateModel(
name='MyRecipe',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('gram', models.FloatField()),
('foodstuff', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='recipestuff', to='menu.Foodstuff')),
('menu', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='recipemenu', to='menu.MenuInfo')),
],
),
]
| [
"18jz0129@jec.ac.jp"
] | 18jz0129@jec.ac.jp |
6d99627b90704b1feee0b966f1164aaffdfc291c | ad0e6decddcbd6bafce08075c04fcc5d1824513e | /abs_try.py | 50b59bf80a1f14f6df5525812e0a4ffb13972103 | [] | no_license | sihanj/nlp_test2 | dc95cf087dfd9a799e83a7fb4d8b543e51153dcc | 4cd10b90ebe19724fa17f254be62574bb069987a | refs/heads/master | 2020-03-25T20:54:16.004753 | 2019-04-22T04:46:05 | 2019-04-22T04:46:05 | 144,150,640 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,840 | py | import re
import jieba
import networkx as nx
from sklearn import feature_extraction
from sklearn.feature_extraction.text import TfidfTransformer
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.feature_extraction.text import TfidfVectorizer
#分句
def cut_sentence(sentence):
if not isinstance(sentence,str):
sentence=sentence.decode('utf-8')
delimiters=frozenset(u'。?!')
buf=[]
for ch in sentence:
buf.append(ch)
if delimiters.__contains__(ch):
yield ''.join(buf)
buf=[]
if buf:
yield ''.join(buf)
#停用词
def load_stopwords(path='stopwords.txt'):
with open(path,encoding='utf-8') as f:
stopwords=filter(lambda x:x,map(lambda x:x.strip(),f.readlines()))
#stopwords.extend([' ','\t','\n'])
return frozenset(stopwords)
#分词
def cut_words(sentence):
stopwords=load_stopwords()
return filter(lambda x: not stopwords.__contains__(x),jieba.cut(sentence))
#摘要
def get_abstract(content,size=3):
docs=list(cut_sentence(content))
tfidf_model=TfidfVectorizer(tokenizer=jieba.cut,stop_words=load_stopwords())
tfidf_matrix=tfidf_model.fit_transform(docs)
normalized_matrix=TfidfTransformer().fit_transform(tfidf_matrix)
similarity=nx.from_scipy_sparse_matrix(normalized_matrix*normalized_matrix.T)
scores=nx.pagerank(similarity)
tops=sorted(scores.items(),key=lambda x:x[1],reverse=True)
size=min(size,len(docs))
indices=list(map(lambda x:x[0],tops))[:size] #list
return map(lambda idx:docs[idx],indices)
a=input('请输入文档:')
a= re.sub(u'[ , ]',u'',a)
print('摘要为:')
abs=[]
for i in get_abstract(a):
abs.append(i)
print(str(abs).replace("'",'').replace(",",'').replace(" ","").replace("[","").replace("]",""))
input('任意键退出程序') | [
"noreply@github.com"
] | sihanj.noreply@github.com |
11c23983d7ab4baebc227f5160e0120c3f42e04c | c0397a0617f2603dc5dbd0af44462e561a52ea18 | /views.py | 1b14f569ef0fd7a8ea1427db41bf9e8082f69ff5 | [] | no_license | PujariSrinivas/Django | c865dddfaef3e7221597cf9f5e911241300d2825 | e94333926daef4a478ffa83c0f6c997700427696 | refs/heads/master | 2023-06-05T19:14:55.633274 | 2021-06-25T04:50:41 | 2021-06-25T04:50:41 | 378,155,824 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,054 | py | from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def home(request):
return HttpResponse("Hi Good Evening to All...")
def htmltag(y):
return HttpResponse("<h2>Hi Welcome to APSSDC</h2>")
def usernameprint(request,uname):
return HttpResponse("<h2>Hi Welcome <span style='color:green'>{}</span></h2>".format(uname))
def usernameage(request,un,ag):
return HttpResponse("<h3 style='text-align:center;background-color:green'>My name is <span style='color:yellow'>{}</span> and my age is: <span style='color:red'>{}</span></h3>".format(un,ag))
def empdetails(request,eid,ename,eage):
return HttpResponse("<script>alert('Hi Welcome {}')</script><h3>Hi Welcome {} and your age is {} and your id is {}</h3>".format(ename,ename,eage,eid))
def htm(request):
return render(request,'html/basics.html')
def ytname(request,name):
return render(request,'html/ytname.html',{'n':name})
def empname(request,id,name):
k = {'i':id,'n':name}
return render(request,'html/ehtml.html',k)
def studentdetails(request):
return render(request,'html/stud.html')
def internaljs(request):
return render(request,'html/internaljs.html')
def myform(request):
if request.method=="POST":
#print(request.POST)
uname = request.POST['uname']
rollno = request.POST['rollno']
email = request.POST['email']
print(uname,rollno,email)
data = {'username':uname,'rno':rollno,'emailid':email}
return render(request,'html/display.html',data)
return render(request,'html/form.html')
def bootstrap(request):
return render(request,'html/boot.html')
def Registration(request):
if request.method=="POST":
fname = request.POST['fname']
lname = request.POST['lname']
rollno = request.POST['rollno']
email = request.POST['email']
phoneno = request.POST['phoneno']
print(fname,lname,rollno,email,phoneno)
data = {'firstname':fname,'lastname':lname,'rno':rollno,'emailid':email,'pno':phoneno}
return render(request,'html/Registration.html')
| [
"noreply@github.com"
] | PujariSrinivas.noreply@github.com |
e2450988f82302bcbaff58abb9d993b553804b16 | 0adbbf6092f5444b623ccbf3b81206d027c96b68 | /23.py | ed2e63159145735c587c65da81d422e54ba334cf | [] | no_license | c1c51/python-crap | bc3fe076e42aa0f5843879b7af56314b09e5f931 | f16782fca27ac616e043b5e1c71da8fddef0f848 | refs/heads/master | 2021-05-10T09:55:38.465484 | 2018-01-25T17:19:57 | 2018-01-25T17:19:57 | 118,942,213 | 0 | 0 | null | 2018-01-25T17:20:37 | 2018-01-25T17:02:40 | Python | UTF-8 | Python | false | false | 125 | py | w=int(input("width?"))
l=int(input("length?"))
r=int(input("radius?"))
print((w*l)-((r*r)*3.14159265358979323846264338))
| [
"noreply@github.com"
] | c1c51.noreply@github.com |
3263908d9d30879e4febda3d96c3f7a74b399214 | 9a21850ff752b6bd148a9dfbadd210419c2d4a6e | /posts/posts.py | 39bb7bcbfa0e3cbcd84aaeef44c77b06619a2603 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] | permissive | importcjj/Posts | 7d3a9a04f829e92027c310f0daf8be259d4a91a9 | fc2abe1c48fa09af820a25c4cc00520253a6b7f1 | refs/heads/master | 2021-01-10T09:43:07.401682 | 2016-04-20T05:24:36 | 2016-04-20T05:24:36 | 49,366,691 | 5 | 1 | null | null | null | null | UTF-8 | Python | false | false | 3,705 | py | # -*- coding: utf-8 -*-
import smtplib
import socket
from contextlib import contextmanager
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.mime.application import MIMEApplication
class PostSMTP(smtplib.SMTP):
def __init__(self, sender, alias=None, host='', port=0,
local_hostname=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
smtplib.SMTP.__init__(self, host, port, local_hostname, timeout)
self._sender = sender
self._sender_alias = alias if alias else sender.split('@')[0]
self._attachments = {}
self._mails = []
def attach(self, attachments):
"""Add attachments.
Args:
attachments (dict): attachments
example: {'alias_name': 'path/to/filename'}
Returns:
obj to support chain calling.
"""
try:
iteritems = attachments.iteritems()
except AttributeError:
iteritems = attachments.items()
for k, v in iteritems:
self._attachments[k] = v
return self
def _header(self, msg, recipient, subject):
msg['Subject'] = subject
msg['From'] = '{} <{}>'.format(self._sender_alias, self._sender)
msg['To'] = ', '.\
join(recipient) if isinstance(recipient, list) else recipient
return msg
def _mount(self, mail, files):
for _ in files:
mail['msg'].attach(_)
return mail
def _load_files(self):
files = []
try:
iteritems = self._attachments.iteritems()
except AttributeError:
iteritems = self._attachments.items()
for k, v in iteritems:
with open(v, 'rb') as f:
part = MIMEApplication(f.read())
part.add_header('Content-Disposition', 'attachment', filename=k)
part.add_header('Content-ID', '<{}>'.format(k))
files.append(part)
return files
def text(self, recipient, subject, content, charset='us-ascii'):
_text = MIMEText(content, _subtype='plain', _charset=charset)
_msg = MIMEMultipart()
_msg = self._header(_msg, recipient, subject)
_msg.attach(_text)
self._mails.append({
'recipient': recipient,
'msg': _msg
})
return self
def html(self, recipient, subject, content, charset='utf-8'):
_html = MIMEText(content, _subtype='html', _charset=charset)
_msg = MIMEMultipart()
_msg = self._header(_msg, recipient, subject)
_msg.attach(_html)
self._mails.append({
'recipient': recipient,
'msg': _msg
})
return self
def _send(self):
files = self._load_files()
for mail in self._mails:
self._mount(mail, files)
self.sendmail(
self._sender,
mail['recipient'],
mail['msg'].as_string())
class Posts(object):
def __init__(self, host, usermame, password, port=25):
self._host = host
self._port = port
self._username = usermame
self._password = password
@contextmanager
def __call__(self, sender=None, alias=None, ssl=False):
sender = sender if sender else self._username
self._smtp = PostSMTP(sender, alias)
self._smtp.connect(self._host)
if ssl:
self._smtp.ehlo()
self._smtp.starttls()
self._smtp.ehlo()
self._smtp.login(self._username, self._password)
try:
yield self._smtp
self._smtp._send()
finally:
self._smtp.quit()
| [
"importcjj@gmail.com"
] | importcjj@gmail.com |
06aae58ab947c90ed7bc942a02ffa420afd0287b | 7bededcada9271d92f34da6dae7088f3faf61c02 | /pypureclient/flashblade/FB_2_6/models/network_interface_trace_get_response.py | 711d740178ee303c6379e1c1ec389c67bd15cca7 | [
"BSD-2-Clause"
] | permissive | PureStorage-OpenConnect/py-pure-client | a5348c6a153f8c809d6e3cf734d95d6946c5f659 | 7e3c3ec1d639fb004627e94d3d63a6fdc141ae1e | refs/heads/master | 2023-09-04T10:59:03.009972 | 2023-08-25T07:40:41 | 2023-08-25T07:40:41 | 160,391,444 | 18 | 29 | BSD-2-Clause | 2023-09-08T09:08:30 | 2018-12-04T17:02:51 | Python | UTF-8 | Python | false | false | 4,335 | py | # coding: utf-8
"""
FlashBlade REST API
A lightweight client for FlashBlade REST API 2.6, developed by Pure Storage, Inc. (http://www.purestorage.com/).
OpenAPI spec version: 2.6
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import pprint
import re
import six
import typing
from ....properties import Property
if typing.TYPE_CHECKING:
from pypureclient.flashblade.FB_2_6 import models
class NetworkInterfaceTraceGetResponse(object):
"""
Attributes:
swagger_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
swagger_types = {
'continuation_token': 'str',
'total_item_count': 'int',
'items': 'list[NetworkInterfaceTrace]'
}
attribute_map = {
'continuation_token': 'continuation_token',
'total_item_count': 'total_item_count',
'items': 'items'
}
required_args = {
}
def __init__(
self,
continuation_token=None, # type: str
total_item_count=None, # type: int
items=None, # type: List[models.NetworkInterfaceTrace]
):
"""
Keyword args:
continuation_token (str): Continuation token that can be provided in the `continuation_token` query param to get the next page of data. If you use the `continuation_token` to page through data you are guaranteed to get all items exactly once regardless of how items are modified. If an item is added or deleted during the pagination then it may or may not be returned. The `continuation_token` is generated if the `limit` is less than the remaining number of items, and the default sort is used (no sort is specified).
total_item_count (int): Total number of items after applying `filter` params.
items (list[NetworkInterfaceTrace]): A list of network trace run result.
"""
if continuation_token is not None:
self.continuation_token = continuation_token
if total_item_count is not None:
self.total_item_count = total_item_count
if items is not None:
self.items = items
def __setattr__(self, key, value):
if key not in self.attribute_map:
raise KeyError("Invalid key `{}` for `NetworkInterfaceTraceGetResponse`".format(key))
self.__dict__[key] = value
def __getattribute__(self, item):
value = object.__getattribute__(self, item)
if isinstance(value, Property):
return None
else:
return value
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.swagger_types):
if hasattr(self, attr):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
value
))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(map(
lambda item: (item[0], item[1].to_dict())
if hasattr(item[1], "to_dict") else item,
value.items()
))
else:
result[attr] = value
if issubclass(NetworkInterfaceTraceGetResponse, dict):
for key, value in self.items():
result[key] = value
return result
def to_str(self):
"""Returns the string representation of the model"""
return pprint.pformat(self.to_dict())
def __repr__(self):
"""For `print` and `pprint`"""
return self.to_str()
def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, NetworkInterfaceTraceGetResponse):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other
| [
"tlewis@purestorage.com"
] | tlewis@purestorage.com |
e50d54beea6551c36fdd72ef808ecc04b47ee774 | 1445a2e276630a3ba30522a7efd8bd35387ac525 | /sheets/getPointData.py | e5065f4d3382872d7b3f212385503e5bf9432af4 | [] | no_license | Wu-jiaming/score | 7cbc071fc28b2c909c477abe319277f0ccd4e7f4 | e8b679ad8e88164de2070e1d08e92ab24f440aa8 | refs/heads/master | 2020-03-22T15:57:10.492895 | 2018-09-02T15:00:48 | 2018-09-02T15:00:48 | 140,291,736 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,433 | py | """
获取结点信息,保存为【(),()】格式,
对数据进行排序
格式转换为[{key:value}]格式,目的是分组
分组之后,自个组的key,value保存成[[key],[key]],[[value],[value]]
"""
import re
from operator import itemgetter
from itertools import groupby
"""
获取相关节点
"""
def get_point(sourcePath):
print("sourcepath:", sourcePath)
fR = open(sourcePath, 'r+' , encoding='utf-8')
lines = fR.readlines()
pointList = []
pointLists = []
for line in lines:
pointPattern = re.compile(r'.*?Point\.(.*?)s.*?opt1:"(.*?)".*?opt2:"(.*?)"')
pointList = re.match(pointPattern, line)
if pointList is not None:
#pointLists.append(())
score = pointList.group(1)
s1 = pointList.group(2)
s2 = pointList.group(3)
pointLists.append((float(score), float(s1), float(s2)))
#pointList.append()
#print(line)
#return line
fR.close()
print("pointList:", pointList)
return pointLists
"""
排序
如果是所个关键词比较,可以用一下方法,先比较第一关键词,相等再比较第二个
#lists.sort(key=operator.itemgetter(0,1))
lists.sort(key=lambda x:(x[0],x[1]))
"""
def listSort(lists):
#operator.itemgetter排序,0表示第一个维度,1表示第二维度
#lists.sort(key=operator.itemgetter(0))
lists.sort(key=lambda x:(x[0]))
print("lists:", lists)
return lists
#把原有的格式list[(1,2,3)]转化成dict,{'key':1,'value':(1,2,3)}
#目的是为了进行分组,分组需要key
def getLists(lists):
dLists=[]
for i,value in enumerate(lists):
d={}
flag = value[0]
d['key'] = flag
d['value'] = value
dLists.append(d)
return dLists
#把dict分组,使用了groupby的方法分组之前,得先排序sort
#迭代,分别将key和value保存到2个list(groupName,groupValue)
def groupLists(lists):
dLists = getLists(lists)
#分组之前最好先排序
dLists.sort(key = itemgetter('key'))
groupLists = groupby(dLists, itemgetter('key'))
#组名 组的值
groupName = []
groupValue = []
for key,group in groupLists:
groupName.append(key)
v = []
for value in group:
v.append(value['value'])
#print("value:", value['value'])
groupValue.append(v)
return (groupName,groupValue)
| [
"754205661@qq.com"
] | 754205661@qq.com |
8e1342c5a5fb325ae9a8dd315f48ea850dd6e3fb | 9f9fa056d9f9a9a1671fd76009aaabeef9ce58d6 | /output/wwinp_plot.py | a64392e3395afc046326b7dcf81e4ff7429f873d | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | py1sl/pyne_based_tools | 8a6f9172125bcf24698d2c3d0a3ef5b493eaea1c | 92bd8865b9e9de78d24a2e635e0f2e826bad5e61 | refs/heads/master | 2021-01-19T03:13:11.600946 | 2017-09-12T09:49:35 | 2017-09-12T09:49:35 | 55,595,092 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 503 | py | from pyne import mcnp
from itaps import iBase, iMesh
import h5py
import sys
from subprocess import call
def convert_wwinp(argv):
"""simple conversion of wwinp to vtk via h5m """
in_path = argv[0]
out_path = argv[1]
wwinp_mesh = mcnp.Wwinp()
wwinp_mesh.read_wwinp(in_path)
wwinp_mesh.mesh.save(out_path+".h5m")
call(["expand_tags.py", out_path+".h5m" , "-o", out_path+".vtk"])
call(["rm", out_path+".h5m"])
if __name__ == "__main__":
convert_wwinp(sys.argv[1:])
| [
"steven.lilley@stfc.ac.uk"
] | steven.lilley@stfc.ac.uk |
b9b22ed2ac4565940e04c8fac0f36e72bf88ef75 | eb61d62ca1f6f0123e3771105f5dfbbd6115138d | /.history/23-08-21_20210912011408.py | d242edf35564cc66ff35c5dd66a540fa6f9fc0b8 | [] | no_license | Alopezm5/CORRECTO-2 | e0f14bcc3a88c0e222d10e3261e68532008bc42e | 223613f1fb04dce3fac9f82f243cb2f22fe100f3 | refs/heads/main | 2023-07-29T06:52:48.147424 | 2021-09-12T20:33:27 | 2021-09-12T20:33:27 | 388,995,308 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,944 | py | class Empresa:
def __init__(self,nom="El mas barato",ruc="0999999999",tel="042971234",dir="Juan Montalvo"):
self.nombre=nom
self.ruc=ruc
self.telefono=tel
self.direccion=dir
def mostrarEmpresa(self):
print("Empresa: {:17}, RUC: {}".format(self.nombre,self.ruc))
class Cliente:
def __init__(self,nom,ced,tel):
self.nombre=nom
self.cedula=ced
self.telefono=tel
def mostrarCliente(self):
print(self.nombre,self.cedula,self.telefono)
class ClienteCorporativo(Cliente):
def __init__(self,nomb,cedu,telecontrato):
super().__init__(nomb,cedu,tele,contrato)
self.__contrato=contrato
@property
def contrato(self): #getter: obtener el valor del atributo privado
return self.__contrato
@contrato.setter
def contrato(self,value): #setter: asigna el valor del atributo privado
if value:
self.__contrato=value
else:
self.__contrato="Sin contrato"
def mostrarCliente(self):
print(self.nombre, self.__contrato)
class ClientePersonal(Cliente):
def __init__(self,nom,ced,tel,promocion=True):
super().__init__(nom,ced,tel,)
self.__promocion=promocion
@property
def promocion(self): #getter: obtener el valor del atributo privado
return self.__promocion
def mostrarCliente(self):
print(self.nombre, self.__promocion)
class Articulo:
secuencia=0
iva=0.12
def __init__(self,des,pre,sto):
Articulo.secuencia+=1
self.codigo=Articulo.secuencia
self.descripcion= des
self.precio=pre
self.stock=sto
def mostraArticulo(self):
print(self.codigo,self.nombre)
class DetVenta:
linea=0
def __init__(self,articulo,cantidad):
DetVenta.linea+=1
self.lineaDetalle=DetVenta.linea
self.articulo=articulo
self.precio=articulo.precio
self.cantidad=cantidad
class CabVenta:
def __init__(self,fac,empresa,fecha,cliente,tot=0):
self.empresa=empresa
self.factura=fac
self.fecha=fecha
self.cliente=cliente
self.total=tot
self.detalleVen=[]
def agregarDetalle(self,articulo,cantidad):
detalle=DetVenta(articulo,cantidad)
self.total+=detalle.precio*detalle.cantidad
self.detalleVen.append(detalle)
def mostrarVenta(self,empNombre,empRuc):
print("Empresa {:17} r")
# emp=Empresa("El mas barato","0953156049","0998132446","Coop. Juan Montalvo")
# emp.mostrarEmpresa()
# print(emp.nombre)
cli1=ClientePersonal("Jose","0912231499","042567890",True)
cli1.mostrarCliente
art1=Articulo("Aceite",2,100)
art1.mostraArticulo()
art2=Articulo("Coca Cola",1,200)
art2.mostraArticulo()
art3=Articulo("Leche",1.5,200)
art3.mostraArticulo()
print(Articulo.iva()) | [
"85761855+Alopezm5@users.noreply.github.com"
] | 85761855+Alopezm5@users.noreply.github.com |
b6075930272e040694012e964f04ec7d4bd71de8 | 7b314c39de4851891f334017f10698b30edbf610 | /main.py | 527531e35463c73e1899b1f65945dd95519f8a2a | [] | no_license | angelolihas/testapp1api | 8720d6e0b4bbdeb4f048583f64ad3fd33eb9e371 | dfa12a8c83d00eaa6d060997dd759580a7956bf6 | refs/heads/master | 2023-01-07T03:10:22.156623 | 2020-11-12T23:49:40 | 2020-11-12T23:49:40 | 312,423,850 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 205 | py | import requests
def get_request():
response = requests.get('URL')
json_response = response.json()
print(json_response)
return json_response
if __name__ == '__main__':
get_request()
| [
"angelo.lihas@gmail.com"
] | angelo.lihas@gmail.com |
e4a7172c8a987feebc4e08c448cc4dc8bfc40b73 | 913334a96677deb9a199d4a7244a4fa56e989fa7 | /5flask_demo/modles.py | b90abf5bc7e9a32e86e2ee62ce28a818258daaff | [] | no_license | KangZhengweiGH/flask_demos | 7bd4b64f252055017f512f6fb348c885c377f241 | 1a0c621c8f0bd44fd583b026ef575990b5dda706 | refs/heads/master | 2020-05-16T07:28:24.055118 | 2019-05-08T01:00:30 | 2019-05-08T01:00:30 | 182,879,507 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,154 | py | # coding=utf-8
from extend import db
class User(db.Model):
__tablename__ = 'user'
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
name = db.Column(db.String(12), nullable=True, unique=True)
telnumber = db.Column(db.Integer, nullable=False, unique=True)
password = db.Column(db.String(100), nullable=False)
vip = db.Column(db.BOOLEAN, default=False)
isdelate = db.Column(db.BOOLEAN, default=False)
logintime = db.Column(db.DateTime, nullable=True)
category_book = db.Table('category_book',
db.Column('category_id', db.Integer, db.ForeignKey('category.id'), primary_key=True),
db.Column('book_id', db.Integer, db.ForeignKey('book.id'), primary_key=True))
category_chapter = db.Table('category_chapter',
db.Column('category_id', db.Integer, db.ForeignKey('category.id'), primary_key=True),
db.Column('chapter_id', db.Integer, db.ForeignKey('chapter.id'), primary_key=True))
class Category(db.Model):
__tablename__ = 'category'
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
name = db.Column(db.String(50), nullable=False)
fatherc_id = db.Column(db.Integer, db.ForeignKey('fatherc.id'))
fatherc = db.relationship('Fatherc', backref=db.backref('categorys'))
class Fatherc(db.Model):
__tablename__ = 'fatherc'
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
name = db.Column(db.String(50), nullable=False)
class Book(db.Model):
__tablename__ = 'book'
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
name = db.Column(db.String(50), nullable=False)
need_vip = db.Column(db.BOOLEAN, default=False)
introduce = db.Column(db.Text, nullable=True)
book_image = db.Column(db.String(50), nullable=True)
isdelate = db.Column(db.BOOLEAN, default=False)
# 这个外键就不需要了,呀好坑
# category_id = db.Column(db.Integer, db.ForeignKey('category.id'))
category = db.relationship('Category', secondary=category_book, backref=db.backref('books'))
class Chapter(db.Model):
__tablename__ = 'chapter'
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
name = db.Column(db.String(50), nullable=False)
need_vip = db.Column(db.BOOLEAN, default=False)
book_id = db.Column(db.Integer, db.ForeignKey('book.id'))
book = db.relationship('Book', backref=db.backref('chapters'))
category = db.relationship('Category', secondary=category_chapter, backref=db.backref('chapters'))
# class Artical(db.Model):
# __tablename__ = 'articals'
# id = db.Column(db.Integer, primary_key=True, autoincrement=True)
# name = db.Column(db.String(50), nullable=False)
# content = db.Column(db.text, nullable=False)
#
#
# class Comment(db.Model):
# __tablename__ = 'comments'
# id = db.Column(db.Integer, primary_key=True, autoincrement=True)
# name = db.Column(db.String(50), nullable=False)
# content = db.Column(db.text, nullable=False)
| [
"email@1101186901.com"
] | email@1101186901.com |
e7a3ca9fa15a77897aa6fde5e7b69ee9bb2f853d | ac350894488b34318c11a65d35a0f8fdf69b7d50 | /products/migrations/0001_initial.py | 545343aa9abd1f1393c114e71c6c8e1aed73463f | [] | no_license | phrac/onemgin | 508f052304ddbc03f45e994ebe33769ae30d9336 | 7a029dbca1bd2725ceabc0741c7cfb47290aadb7 | refs/heads/master | 2021-01-16T19:31:10.929508 | 2015-09-08T23:53:43 | 2015-09-08T23:53:43 | 12,391,387 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,083 | py | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
]
operations = [
migrations.CreateModel(
name='Barcode',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('image', models.FileField(null=True, upload_to=b'barcodes/ean13/')),
],
),
migrations.CreateModel(
name='BarcodeType',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('name', models.CharField(max_length=32)),
],
),
migrations.CreateModel(
name='Product',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('onemg', models.CharField(unique=True, max_length=13)),
('ean', models.CharField(unique=True, max_length=13)),
('upc', models.CharField(unique=True, max_length=12)),
('jan', models.CharField(max_length=13, null=True)),
('gtin', models.CharField(max_length=14, null=True)),
('nsn', models.CharField(max_length=14, null=True)),
('isbn10', models.CharField(max_length=10, null=True)),
('isbn13', models.CharField(max_length=13, null=True)),
('asin', models.CharField(max_length=10, null=True)),
('brand', models.CharField(max_length=128, null=True)),
('manufacturer', models.CharField(max_length=128, null=True)),
('mpn', models.CharField(max_length=64, null=True)),
('part_number', models.CharField(max_length=64, null=True)),
('sku', models.CharField(max_length=64, null=True)),
('model_number', models.CharField(max_length=64, null=True)),
('length', models.FloatField(null=True)),
('width', models.FloatField(null=True)),
('height', models.FloatField(null=True)),
('weight', models.FloatField(null=True)),
('description', models.CharField(max_length=512, null=True)),
('image_url', models.CharField(max_length=512, null=True)),
('amazon_url', models.URLField(null=True)),
('created', models.DateTimeField(auto_now_add=True, null=True)),
],
),
migrations.AddField(
model_name='barcode',
name='product',
field=models.ForeignKey(to='products.Product'),
),
migrations.AddField(
model_name='barcode',
name='type',
field=models.ForeignKey(to='products.BarcodeType'),
),
migrations.AlterUniqueTogether(
name='barcode',
unique_together=set([('product', 'type')]),
),
]
| [
"derek@disflux.com"
] | derek@disflux.com |
f9783dda5c1663e07679d767cb045a425f767f67 | 4d5adf020161db482e24ebe353c70567bb14a1a1 | /propulsion/thrust_force.py | d428164ff1452e54121c2c0d3d3b5d6b1f3b8a11 | [] | no_license | leamichel97/prop-solid | 1403b9abd6a73fda6906dfe5de5543e59d2508ad | c81bf700ee07b304d550c47a5afa85e476ecb38d | refs/heads/master | 2022-12-18T12:50:54.042165 | 2020-09-03T10:16:46 | 2020-09-03T10:16:46 | 253,484,751 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 1,781 | py | # -*- coding: utf-8 -*-
"""
thrust_force.py generated by WhatsOpt 1.10.1
"""
import numpy as np
from propulsion.thrust_force_base import ThrustForceBase
class ThrustForce(ThrustForceBase):
""" An OpenMDAO component to encapsulate ThrustForce discipline """
def compute(self, inputs, outputs):
""" ThrustForce computation """
if self._impl:
# Docking mechanism: use implementation if referenced in .whatsopt_dock.yml file
self._impl.compute(inputs, outputs)
else:
Ae = inputs['Ae']
Pa = inputs['Pa']
Pe = inputs['Pe']
prop_m = inputs['prop_m']
Ve = inputs['Ve']
zeta = inputs['zeta']
F_T = zeta * ((prop_m * Ve) + (Ae * (Pe - Pa)))
outputs['F_T'] = F_T
return outputs
# Reminder: inputs of compute()
#
# inputs['Ae'] -> shape: (1,), type: Float
# inputs['Pa'] -> shape: (1,), type: Float
# inputs['Pe'] -> shape: (1,), type: Float
# inputs['prop_m'] -> shape: (1,), type: Float
# inputs['Ve'] -> shape: (1,), type: Float
# inputs['zeta'] -> shape: (1,), type: Float
# To declare partial derivatives computation ...
#
# def setup(self):
# super(ThrustForce, self).setup()
# self.declare_partials('*', '*')
#
# def compute_partials(self, inputs, partials):
# """ Jacobian for ThrustForce """
#
# partials['F_T', 'Ae'] = np.zeros((1, 1))
# partials['F_T', 'Pa'] = np.zeros((1, 1))
# partials['F_T', 'Pe'] = np.zeros((1, 1))
# partials['F_T', 'prop_m'] = np.zeros((1, 1))
# partials['F_T', 'Ve'] = np.zeros((1, 1))
# partials['F_T', 'zeta'] = np.zeros((1, 1))
| [
"leamichel1497@gmail.com"
] | leamichel1497@gmail.com |
862a41c8dfac8339006c6b0313a9a71788c0ef52 | 1fcb40f1f2a2c6b4f5ab6c612b900c7eb9517502 | /tf-tutorials/multigpu/multi_gpu_cnn.py | 1954bcca56e4a3d6e52d3c5b5927bba9e28deb39 | [] | no_license | prativa/ai-artist | 3466b7b160180d207c94429fbec2bd33b0da53c8 | ee98af787233889ed92cc84ce66104e3f7f6e84a | refs/heads/master | 2020-04-15T19:11:45.467297 | 2018-11-29T20:22:48 | 2018-11-29T20:22:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 18,137 | py | import tensorflow as tf
import os
import numpy as np
import math
from classification.skin import data_loader
import time
import random
from sklearn import metrics
_IMAGE_SIZE = 224
_IMAGE_CHANNELS = 3
_NUM_CLASSES = 2
_BATCH_SIZE = 50 # this batch size will be for each gpu, if multi gpu setup used it will consume batch_size * gpu nums in every iteration.
_EPOCHS = 1000
learning_rate = 0.0001
gpu_nums=2
_BATCH_SIZE_VALID = 75
_SAVE_PATH = "./tensorboard/isic-classification-task1/"
def core_model(input_img, y, num_classes):
x_image = tf.reshape(input_img, [-1, _IMAGE_SIZE, _IMAGE_SIZE, _IMAGE_CHANNELS], name='images')
def variable_with_weight_decay(name, shape, stddev, wd):
dtype = tf.float32
var = variable_on_cpu(name, shape, tf.truncated_normal_initializer(stddev=stddev, dtype=dtype))
if wd is not None:
weight_decay = tf.multiply(tf.nn.l2_loss(var), wd, name='weight_loss')
tf.add_to_collection('losses', weight_decay)
return var
def variable_on_cpu(name, shape, initializer):
with tf.device('/cpu:0'):
dtype = tf.float32
var = tf.get_variable(name, shape, initializer=initializer, dtype=dtype)
return var
with tf.variable_scope('conv1') as scope:
kernel = variable_with_weight_decay('weights', shape=[5, 5, 3, 64], stddev=5e-2, wd=0.0)
conv = tf.nn.conv2d(x_image, kernel, [1, 1, 1, 1], padding='SAME')
biases = variable_on_cpu('biases', [64], tf.constant_initializer(0.0))
pre_activation = tf.nn.bias_add(conv, biases)
conv1 = tf.nn.relu(pre_activation, name=scope.name)
tf.summary.histogram('Convolution_layers/conv1', conv1)
tf.summary.scalar('Convolution_layers/conv1', tf.nn.zero_fraction(conv1))
norm1 = tf.nn.lrn(conv1, 4, bias=1.0, alpha=0.001 / 9.0, beta=0.75, name='norm1')
pool1 = tf.nn.max_pool(norm1, ksize=[1, 3, 3, 1], strides=[1, 2, 2, 1], padding='SAME', name='pool1')
with tf.variable_scope('conv2') as scope:
kernel = variable_with_weight_decay('weights', shape=[5, 5, 64, 64], stddev=5e-2, wd=0.0)
conv = tf.nn.conv2d(pool1, kernel, [1, 1, 1, 1], padding='SAME')
biases = variable_on_cpu('biases', [64], tf.constant_initializer(0.1))
pre_activation = tf.nn.bias_add(conv, biases)
conv2 = tf.nn.relu(pre_activation, name=scope.name)
tf.summary.histogram('Convolution_layers/conv2', conv2)
tf.summary.scalar('Convolution_layers/conv2', tf.nn.zero_fraction(conv2))
norm2 = tf.nn.lrn(conv2, 4, bias=1.0, alpha=0.001 / 9.0, beta=0.75, name='norm2')
pool2 = tf.nn.max_pool(norm2, ksize=[1, 3, 3, 1], strides=[1, 2, 2, 1], padding='SAME', name='pool2')
with tf.variable_scope('conv3') as scope:
kernel = variable_with_weight_decay('weights', shape=[3, 3, 64, 128], stddev=5e-2, wd=0.0)
conv = tf.nn.conv2d(pool2, kernel, [1, 1, 1, 1], padding='SAME')
biases = variable_on_cpu('biases', [128], tf.constant_initializer(0.0))
pre_activation = tf.nn.bias_add(conv, biases)
conv3 = tf.nn.relu(pre_activation, name=scope.name)
tf.summary.histogram('Convolution_layers/conv3', conv3)
tf.summary.scalar('Convolution_layers/conv3', tf.nn.zero_fraction(conv3))
with tf.variable_scope('conv4') as scope:
kernel = variable_with_weight_decay('weights', shape=[3, 3, 128, 128], stddev=5e-2, wd=0.0)
conv = tf.nn.conv2d(conv3, kernel, [1, 1, 1, 1], padding='SAME')
biases = variable_on_cpu('biases', [128], tf.constant_initializer(0.0))
pre_activation = tf.nn.bias_add(conv, biases)
conv4 = tf.nn.relu(pre_activation, name=scope.name)
tf.summary.histogram('Convolution_layers/conv4', conv4)
tf.summary.scalar('Convolution_layers/conv4', tf.nn.zero_fraction(conv4))
with tf.variable_scope('conv5') as scope:
kernel = variable_with_weight_decay('weights', shape=[3, 3, 128, 128], stddev=5e-2, wd=0.0)
conv = tf.nn.conv2d(conv4, kernel, [1, 1, 1, 1], padding='SAME')
biases = variable_on_cpu('biases', [128], tf.constant_initializer(0.0))
pre_activation = tf.nn.bias_add(conv, biases)
conv5 = tf.nn.relu(pre_activation, name=scope.name)
tf.summary.histogram('Convolution_layers/conv5', conv5)
tf.summary.scalar('Convolution_layers/conv5', tf.nn.zero_fraction(conv5))
norm3 = tf.nn.lrn(conv5, 4, bias=1.0, alpha=0.001 / 9.0, beta=0.75, name='norm3')
pool3 = tf.nn.max_pool(norm3, ksize=[1, 3, 3, 1], strides=[1, 2, 2, 1], padding='SAME', name='pool3')
with tf.variable_scope('fully_connected1') as scope:
reshape = tf.layers.flatten(pool3)
dim = reshape.get_shape()[1].value
weights = variable_with_weight_decay('weights', shape=[dim, 384], stddev=0.04, wd=0.004)
biases = variable_on_cpu('biases', [384], tf.constant_initializer(0.1))
local3 = tf.nn.relu(tf.matmul(reshape, weights) + biases, name=scope.name)
tf.summary.histogram('Fully connected layers/fc1', local3)
tf.summary.scalar('Fully connected layers/fc1', tf.nn.zero_fraction(local3))
with tf.variable_scope('fully_connected2') as scope:
weights = variable_with_weight_decay('weights', shape=[384, 192], stddev=0.04, wd=0.004)
biases = variable_on_cpu('biases', [192], tf.constant_initializer(0.1))
local4 = tf.nn.relu(tf.matmul(local3, weights) + biases, name=scope.name)
tf.summary.histogram('Fully connected layers/fc2', local4)
tf.summary.scalar('Fully connected layers/fc2', tf.nn.zero_fraction(local4))
with tf.variable_scope('output') as scope:
weights = variable_with_weight_decay('weights', [192, _NUM_CLASSES], stddev=1 / 192.0, wd=0.0)
biases = variable_on_cpu('biases', [_NUM_CLASSES], tf.constant_initializer(0.0))
softmax_linear = tf.add(tf.matmul(local4, weights), biases, name=scope.name)
tf.summary.histogram('Fully connected layers/output', softmax_linear)
y_pred_cls = tf.argmax(softmax_linear, axis=1)
return softmax_linear, y_pred_cls
def variable_with_weight_decay(name, shape, stddev, wd):
dtype = tf.float32
var = variable_on_cpu( name, shape, tf.truncated_normal_initializer(stddev=stddev, dtype=dtype))
if wd is not None:
weight_decay = tf.multiply(tf.nn.l2_loss(var), wd, name='weight_loss')
tf.add_to_collection('losses', weight_decay)
return var
def variable_on_cpu(name, shape, initializer):
with tf.device('/cpu:0'):
dtype = tf.float32
var = tf.get_variable(name, shape, initializer=initializer, dtype=dtype)
return var
def average_gradients(tower_grads):
average_grads = []
for grad_and_vars in zip(*tower_grads):
# Note that each grad_and_vars looks like the following:
# ((grad0_gpu0, var0_gpu0), ... , (grad0_gpuN, var0_gpuN))
grads = []
for g, _ in grad_and_vars:
# Add 0 dimension to the gradients to represent the tower.
expanded_g = tf.expand_dims(g, 0)
# Append on a 'tower' dimension which we will average over below.
grads.append(expanded_g)
# Average over the 'tower' dimension.
grad = tf.concat(axis=0, values=grads)
grad = tf.reduce_mean(grad, 0)
# Keep in mind that the Variables are redundant because they are shared
# across towers. So .. we will just return the first tower's pointer to
# the Variable.
v = grad_and_vars[0][1]
grad_and_var = (grad, v)
average_grads.append(grad_and_var)
return average_grads
def predict_valid(show_confusion_matrix=False):
'''
Make prediction for all images in test_x
'''
images_valid = tf.placeholder(tf.float32, shape=[None , 224*224*3])
labels_valid = tf.placeholder(tf.float32, shape=[None , 2])
valid_x, valid_y, valid_l = loader.getValidationDataForClassificationMelanoma()
valid_count = len(valid_x)
shuffle_order = [i for i in range(valid_count)]
random.shuffle(shuffle_order)
# print(shuffle_order)
print("iterations {}".format(num_iterations))
valid_x = valid_x[shuffle_order].reshape(valid_count, -1)
valid_y = valid_y[shuffle_order].reshape(valid_count, -1)
i = 0
y_pred = np.zeros(shape=len(valid_x), dtype=np.int)
output, y_pred_class = core_model(images_valid, labels_valid, _NUM_CLASSES)
while i < len(valid_x):
j = min(i + _BATCH_SIZE, len(valid_x))
batch_xs = valid_x[i:j, :]
batch_ys = valid_y[i:j, :]
y_pred[i:j] = sess.run(y_pred_class, feed_dict={images_valid: batch_xs, labels_valid: batch_ys})
i = j
correct = (np.argmax(valid_y, axis=1) == y_pred)
acc = correct.mean() * 100
correct_numbers = correct.sum()
print("Accuracy on Valid-Set: {0:.2f}% ({1} / {2})".format(acc, correct_numbers, len(valid_x)))
y_true = np.argmax(valid_y, axis=1)
cm = metrics.confusion_matrix(y_true=y_true, y_pred=y_pred)
for i in range(_NUM_CLASSES):
class_name = "({}) {}".format(i, valid_l[i])
print(cm[i, :], class_name)
class_numbers = [" ({0})".format(i) for i in range(_NUM_CLASSES)]
print("".join(class_numbers))
auc = metrics.roc_auc_score(y_true, y_pred)
print("Auc on Valid Set: {}".format(auc))
f1_score = metrics.f1_score(y_true, y_pred)
print("F1 score: {}".format(f1_score))
average_precision = metrics.average_precision_score(y_true, y_pred)
print("average precsion on valid: {}".format(average_precision))
FP = cm.sum(axis=0) - np.diag(cm)
FN = cm.sum(axis=1) - np.diag(cm)
TP = np.diag(cm)
TN = cm.sum() - (FP + FN + TP)
return
tf.reset_default_graph()
with tf.Graph().as_default(), tf.device('/cpu:0'):
loader = data_loader.DataReaderISIC2017(_BATCH_SIZE, _EPOCHS, gpu_nums)
train_x, train_y, train_l = loader.getTrainDataForClassificationMelanoma()
num_iterations = loader.iterations
print("Iterations {}".format(num_iterations))
total_count = loader.total_train_count
step_local = int(math.ceil(_EPOCHS * total_count / _BATCH_SIZE))
global_step = tf.get_variable('global_step', [], initializer=tf.constant_initializer(0), trainable=False)
optimizer = tf.train.GradientDescentOptimizer(learning_rate)
images = tf.placeholder(tf.float32, shape=[None, 224*224*3])
labels = tf.placeholder(tf.float32, shape=[None, 2])
batch_size_gpu = tf.placeholder(tf.int32)
tower_grads = []
losses = []
y_pred_classes = []
for i in range(gpu_nums):
with tf.device('/gpu:{}'.format(i)):
with tf.name_scope("tower_{}".format(i)) as scope:
per_gpu_count = batch_size_gpu
start = i * per_gpu_count
end = start + per_gpu_count
output, y_pred_class = core_model(images[start:end,:],labels[start:end,:], _NUM_CLASSES)
loss = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(logits=output, labels=labels[start:end,:]))
#losses = tf.get_collection('losses', scope)
# Calculate the total loss for the current tower.
#loss = tf.add_n(losses, name='total_loss')
losses.append(loss)
# Reuse variables for the next tower.
tf.get_variable_scope().reuse_variables()
grads = optimizer.compute_gradients(loss)
# Keep track of the gradients across all towers.
tower_grads.append(grads)
y_pred_classes.append(y_pred_class)
# We must calculate the mean of each gradient. Note that this is the
# synchronization point across all towers.
grads = average_gradients(tower_grads)
apply_gradient_op = optimizer.apply_gradients(grads, global_step=global_step)
losses_mean = tf.reduce_mean(losses)
y_pred_classes_op=tf.reshape(tf.stack(y_pred_classes, axis=0),[-1])
correct_prediction = tf.equal(y_pred_classes_op, tf.argmax(labels, axis=1))
batch_accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
# variable_averages = tf.train.ExponentialMovingAverage(
# MOVING_AVERAGE_DECAY, global_step)
# variables_averages_op = variable_averages.apply(tf.trainable_variables())
# Group all updates to into a single train op.
# train_op = tf.group(apply_gradient_op, variables_averages_op)
train_op = apply_gradient_op
# Start running operations on the Graph. allow_soft_placement must be set to
# True to build towers on GPU, as some of the ops do not have GPU
# implementations.
start = time.time()
# saver = tf.train.Saver(tf.all_variables())
saver = tf.train.Saver(tf.all_variables())
init = tf.initialize_all_variables()
saver = tf.train.Saver()
sess = tf.Session(config=tf.ConfigProto(
allow_soft_placement=True,
log_device_placement=True))
train_writer = tf.summary.FileWriter(_SAVE_PATH, sess.graph)
try:
print("Trying to restore last checkpoint ...")
last_chk_path = tf.train.latest_checkpoint(checkpoint_dir=_SAVE_PATH)
saver.restore(sess, save_path=last_chk_path)
print("Restored checkpoint from:", last_chk_path)
except:
print("Failed to restore checkpoint. Initializing variables instead.")
sess.run(tf.global_variables_initializer())
step_global = sess.run(global_step)
step_local = int(math.ceil(_EPOCHS * total_count / _BATCH_SIZE))
epoch_done = int(math.ceil(step_global / (_BATCH_SIZE)))
print("global:{}, local: {}, epochs done {}".format(step_global, step_local, epoch_done))
if step_local < step_global:
print("Training steps completed: global: {}, local: {}".format(step_global, step_local))
exit()
#predict_valid()
for epoch in range(epoch_done,_EPOCHS ):
#print(total_count)
shuffle_order=[i for i in range(total_count)]
random.shuffle(shuffle_order)
#print(shuffle_order)
print("iterations {}".format(num_iterations))
train_x = train_x[shuffle_order].reshape(total_count, -1)
train_y = train_y[shuffle_order].reshape(total_count, -1)
# this mehod is suitable when we load all training data in memory at once.
lastEpoch=0
for i in range(num_iterations):
#print(num_iterations+_BATCH_SIZE)
#print(loader.total_train_count)
startIndex = _BATCH_SIZE * i * gpu_nums
endIndex = min(startIndex + _BATCH_SIZE * gpu_nums, total_count )
#print("epoch:{}, iteration:{}, start:{}, end:{} ".format(epoch, i, startIndex, endIndex))
batch_xs = train_x[startIndex:endIndex,:]
batch_ys = train_y[startIndex:endIndex,:]
#print("feed data shape {} , {}".format(batch_xs.shape, batch_ys.shape))
#print(batch_ys)
start_time = time.time()
_,step_global_out, loss_out, batch_accuracy_out = sess.run([train_op,global_step, losses_mean, batch_accuracy], feed_dict={batch_size_gpu:_BATCH_SIZE,images: batch_xs, labels: batch_ys})
steps = + i
if (i % 5 == 0) or (i == _EPOCHS * total_count - 1):
#print("train epoch: {}, iteration: {}, Accuracy: {}, loss: {}".format(epoch, i, batch_accuracy_out, loss_out ))
duration = time.time() - start_time
#msg = "Epoch: {0:}, Global Step: {1:>6}, accuracy: {2:>6.1%}, loss = {3:.2f} ({4:.1f} examples/sec, {5:.2f} sec/batch)"
#print(msg.format(epoch,step_global, batch_acc, _loss, _BATCH_SIZE / duration, duration))
if i!=0 and epoch!=lastEpoch:
lastEpoch=epoch
valid_x, valid_y, valid_l = loader.getValidationDataForClassificationMelanoma()
total_count_valid = len(valid_x)
startIndex = 0 # for validation there is just
endIndex = min(startIndex + _BATCH_SIZE_VALID * gpu_nums, total_count_valid)
# all variable should have a idffierent name.
step_global_out, batch_accuracy_valid_out = sess.run([global_step, batch_accuracy],
feed_dict={batch_size_gpu:_BATCH_SIZE_VALID,images: valid_x, labels: valid_y})
print("valid epoch: {}, iteration: {}, Accuracy: {}".format(epoch, i, batch_accuracy_out ))
# batch_xs = valid_x[startIndex:endIndex, :]
# batch_ys = valid_y[startIndex:endIndex, :]
# print("feed data shape for validation {} , {}".format(batch_xs.shape, batch_ys.shape))
# # print(batch_ys)
#
# start_time = time.time()
# step_global_out, loss_out, y_pred_out = sess.run([global_step, losses, y_pred_classes],
# feed_dict={images: batch_xs, labels: batch_ys})
# y_pred = np.asarray(y_pred_out).reshape(-1)
# correct = (np.argmax(valid_y, axis=1) == y_pred)
# acc = correct.mean() * 100
# correct_numbers = correct.sum()
# print("Accuracy on Valid-Set: {0:.2f}% ({1} / {2})".format(acc, correct_numbers, len(valid_x)))
#print("Saving checkpoint............")
#saver.save(sess, save_path=_SAVE_PATH, global_step=global_step)
#predict_valid()
# if (step_global % 100 == 0) or (i == _EPOCHS * total_count - 1):
# data_merged, global_1 = sess.run([merged, global_step], feed_dict={x: batch_xs, y: batch_ys})
# #acc = predict_test()
#
# # summary = tf.Summary(value=[
# # tf.Summary.Value(tag="Accuracy/test", simple_value=acc),
# # ])
# # train_writer.add_summary(data_merged, global_1)
# # train_writer.add_summary(summary, global_1)
#
| [
"milton.2002@yahoo.com"
] | milton.2002@yahoo.com |
6b7bcedc92889fdfac3fae2f3865e4e431ac3a06 | c381e484986b08022be508f285cc142017680319 | /mycats.py | 6c7f2ff8b22648624d73da15fc6a121f54af7a82 | [] | no_license | kasalak/automate-the-boring-stuff | 1060d4919f23b25c6653fd55ef09c436bb7ea2bd | e205bac5cd629f52af11e5ace6475e764612498e | refs/heads/master | 2021-01-21T13:53:14.332726 | 2016-05-10T17:24:04 | 2016-05-10T17:24:04 | 51,721,180 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 194 | py | mypets = ['Zophie', 'Pooka', 'Fat-tail']
print('Enter a pet name: ')
name = input()
if name not in mypets:
print('I do not have a pet named ' + name)
else:
print(name + ' is my pet.x`')
| [
"karthik.kasala@gmail.com"
] | karthik.kasala@gmail.com |
72dc217f031f0e0fe7fb784bc8ac8024f1dc926e | 340d83cbefd7a9c88b18ff25f6f5dd90e1131ad6 | /setup.py | 54baf8251ca1cb7f55ed33f6ffb2465951c6bfb5 | [
"MIT"
] | permissive | PTC-CMC/calculator | 50304326acfd501a6503d59ad81cc3502b21d934 | e89ab40336ebe57e3a2c272281f9160a212e7055 | refs/heads/master | 2022-10-03T19:21:48.502774 | 2020-06-04T19:54:30 | 2020-06-04T19:54:30 | 269,222,035 | 0 | 5 | MIT | 2020-06-04T19:54:31 | 2020-06-04T00:17:00 | Python | UTF-8 | Python | false | false | 232 | py | from setuptools import setup
# Originally an idea and implementation by Matt Thompson
# https://github.com/mattwthompson/calculator
setup(
name='Calculator',
version='0.0',
packages=['calculator',],
license='MIT',
)
| [
"justin.b.gilmer@vanderbilt.edu"
] | justin.b.gilmer@vanderbilt.edu |
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 |
491dc44ae36dbbbd2a8115d6c4c80ac79186d685 | 5ec09f479c7a680f77d2b8e5da675e24daf82da7 | /callback_plugins/fix_ssl.py | 330fc989837e7a72fe813929f80bb61a65438884 | [] | no_license | tbuchi888/vagrant-yaml-ansible | 1f2d3bcb5d35d3d1e72c1cda2730bc761d33e812 | 0837e62a3a835d94cb9200160548034f26e3a991 | refs/heads/master | 2021-01-10T02:52:51.389484 | 2016-03-19T16:05:58 | 2016-03-19T16:05:58 | 54,269,456 | 2 | 1 | null | null | null | null | UTF-8 | Python | false | false | 215 | py | import ssl
if hasattr(ssl, '_create_default_https_context') and hasattr(ssl, '_create_unverified_context'):
ssl._create_default_https_context = ssl._create_unverified_context
class CallbackModule(object):
pass
| [
"tbuchi888@users.noreplay.github.com"
] | tbuchi888@users.noreplay.github.com |
de7e14bb4a48b4fa23f12d9b6ee34dd226ad6ecb | 843af55f35c54d85bf6006ccf16c79d9a5451285 | /25 - more_lists.py | 8af52312523c5eb4245f871af28a73e7de55b267 | [] | no_license | estebantoso/curso_python_udemy | 2a5989351921d54394b61df1e8089c58088a01cc | 0f4deba3b0efbc59159aaeb49ffd95c6724c2dd2 | refs/heads/master | 2020-05-22T19:00:36.599701 | 2019-05-23T14:49:31 | 2019-05-23T14:49:31 | 186,485,180 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 87 | py | friends = ["A", "B", "C"]
print(friends[0])
print(friends[-1])
print("A" in friends) | [
"estebantoso@gmail.com"
] | estebantoso@gmail.com |
ddc87bfca79fabe3d914696f58497118d2d0d193 | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/python/generated/test/test_com_adobe_cq_wcm_mobile_qrcode_servlet_qr_code_image_generator_info.py | d51b3347b77c7b18680b18281fcd2bb012c5ead3 | [
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | Python | false | false | 1,359 | py | # coding: utf-8
"""
Adobe Experience Manager OSGI config (AEM) API
Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API # noqa: E501
The version of the OpenAPI document: 1.0.0
Contact: opensource@shinesolutions.com
Generated by: https://openapi-generator.tech
"""
from __future__ import absolute_import
import unittest
import swaggeraemosgi
from swaggeraemosgi.models.com_adobe_cq_wcm_mobile_qrcode_servlet_qr_code_image_generator_info import ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo # noqa: E501
from swaggeraemosgi.rest import ApiException
class TestComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo(unittest.TestCase):
"""ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo(self):
"""Test ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo"""
# FIXME: construct object with mandatory attributes with example values
# model = swaggeraemosgi.models.com_adobe_cq_wcm_mobile_qrcode_servlet_qr_code_image_generator_info.ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()
| [
"michael.bloch@shinesolutions.com"
] | michael.bloch@shinesolutions.com |
06a103582032ffff0d67b7ec6ac252dc5b255a8d | 91d48932143ced234aa13b35a597b809c757e928 | /cyclegan/load_data.py | ca9b07ce1717e3fe5c4769447ec1845be6ef5d6b | [] | no_license | starbucksdolcelatte/FittingroomAnywhere2 | 9b86e76b592960c1350f54ace84a2e0cc64ab7e7 | 147e04eb8f326f25bafdb917e1b1d4974798d230 | refs/heads/master | 2020-07-11T17:16:38.331533 | 2019-10-11T03:18:34 | 2019-10-11T03:18:34 | 204,602,862 | 1 | 1 | null | null | null | null | UTF-8 | Python | false | false | 5,698 | py | import os
import numpy as np
from PIL import Image
from keras.utils import Sequence
#from skimage.io import imread
def load_data(nr_of_channels, batch_size=1, nr_A_train_imgs=None, nr_B_train_imgs=None,
nr_A_test_imgs=None, nr_B_test_imgs=None, project_dir = '', subfolder='',
generator=False, D_model=None, use_multiscale_discriminator=False, use_supervised_learning=False, REAL_LABEL=1.0):
trainA_path = os.path.join(project_dir, 'datasets', subfolder, 'trainA')
trainB_path = os.path.join(project_dir, 'datasets', subfolder, 'trainB')
testA_path = os.path.join(project_dir, 'datasets', subfolder, 'testA')
testB_path = os.path.join(project_dir, 'datasets', subfolder, 'testB')
trainA_image_names = os.listdir(trainA_path)
if nr_A_train_imgs != None:
trainA_image_names = trainA_image_names[:nr_A_train_imgs]
trainB_image_names = os.listdir(trainB_path)
if nr_B_train_imgs != None:
trainB_image_names = trainB_image_names[:nr_B_train_imgs]
testA_image_names = os.listdir(testA_path)
if nr_A_test_imgs != None:
testA_image_names = testA_image_names[:nr_A_test_imgs]
testB_image_names = os.listdir(testB_path)
if nr_B_test_imgs != None:
testB_image_names = testB_image_names[:nr_B_test_imgs]
if generator:
return data_sequence(trainA_path, trainB_path, trainA_image_names, trainB_image_names, batch_size=batch_size) # D_model, use_multiscale_discriminator, use_supervised_learning, REAL_LABEL)
else:
trainA_images = create_image_array(trainA_image_names, trainA_path, nr_of_channels)
trainB_images = create_image_array(trainB_image_names, trainB_path, nr_of_channels)
testA_images = create_image_array(testA_image_names, testA_path, nr_of_channels)
testB_images = create_image_array(testB_image_names, testB_path, nr_of_channels)
return {"trainA_images": trainA_images, "trainB_images": trainB_images,
"testA_images": testA_images, "testB_images": testB_images,
"trainA_image_names": trainA_image_names,
"trainB_image_names": trainB_image_names,
"testA_image_names": testA_image_names,
"testB_image_names": testB_image_names}
def load_one(nr_of_channels, project_dir='', subfolder=''):
input_path = os.path.join(project_dir, 'datasets', subfolder, 'segmented') # load segmented tshirt image for fake generation
input_image_name = os.listdir(input_path)[0] # read only one image
input_image = create_image_array(input_image_name, input_path, nr_of_channels)
return {"input_image": input_image, "input_image_name": input_image_name}
def create_image_array(image_list, image_path, nr_of_channels):
image_array = []
for image_name in image_list:
if image_name[-1].lower() == 'g': # to avoid e.g. thumbs.db files
if nr_of_channels == 1: # Gray scale image -> MR image
image = np.array(Image.open(os.path.join(image_path, image_name)))
image = image[:, :, np.newaxis]
else: # RGB image -> street view
image = np.array(Image.open(os.path.join(image_path, image_name)))
image = normalize_array(image)
image_array.append(image)
return np.array(image_array)
# If using 16 bit depth images, use the formula 'array = array / 32767.5 - 1' instead
def normalize_array(array):
array = array / 127.5 - 1
return array
class data_sequence(Sequence):
def __init__(self, trainA_path, trainB_path, image_list_A, image_list_B, batch_size=1): # , D_model, use_multiscale_discriminator, use_supervised_learning, REAL_LABEL):
self.batch_size = batch_size
self.train_A = []
self.train_B = []
for image_name in image_list_A:
if image_name[-1].lower() == 'g': # to avoid e.g. thumbs.db files
self.train_A.append(os.path.join(trainA_path, image_name))
for image_name in image_list_B:
if image_name[-1].lower() == 'g': # to avoid e.g. thumbs.db files
self.train_B.append(os.path.join(trainB_path, image_name))
def __len__(self):
return int(max(len(self.train_A), len(self.train_B)) / float(self.batch_size))
def __getitem__(self, idx): # , use_multiscale_discriminator, use_supervised_learning):if loop_index + batch_size >= min_nr_imgs:
if idx >= min(len(self.train_A), len(self.train_B)):
# If all images soon are used for one domain,
# randomly pick from this domain
if len(self.train_A) <= len(self.train_B):
indexes_A = np.random.randint(len(self.train_A), size=self.batch_size)
batch_A = []
for i in indexes_A:
batch_A.append(self.train_A[i])
batch_B = self.train_B[idx * self.batch_size:(idx + 1) * self.batch_size]
else:
indexes_B = np.random.randint(len(self.train_B), size=self.batch_size)
batch_B = []
for i in indexes_B:
batch_B.append(self.train_B[i])
batch_A = self.train_A[idx * self.batch_size:(idx + 1) * self.batch_size]
else:
batch_A = self.train_A[idx * self.batch_size:(idx + 1) * self.batch_size]
batch_B = self.train_B[idx * self.batch_size:(idx + 1) * self.batch_size]
real_images_A = create_image_array(batch_A, '', 3)
real_images_B = create_image_array(batch_B, '', 3)
return real_images_A, real_images_B # input_data, target_data
if __name__ == '__main__':
load_data()
| [
"seoyoon9535@gmail.com"
] | seoyoon9535@gmail.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 |
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 |
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"
] | pascalchevrel.noreply@github.com |
ee4b23bbf32042a37a0d791f5b2ca1db58e8570e | 163bbb4e0920dedd5941e3edfb2d8706ba75627d | /Code/CodeRecords/2741/60666/264322.py | a8362f4be09e9d763b52af7aceca5c10738a7630 | [] | no_license | AdamZhouSE/pythonHomework | a25c120b03a158d60aaa9fdc5fb203b1bb377a19 | ffc5606817a666aa6241cfab27364326f5c066ff | refs/heads/master | 2022-11-24T08:05:22.122011 | 2020-07-28T16:21:24 | 2020-07-28T16:21:24 | 259,576,640 | 2 | 1 | null | null | null | null | UTF-8 | Python | false | false | 257 | py | nums=eval(input())
if len(nums)<2:
print(nums)
else:
count=1
temp=1
for i in range(len(nums)-1):
if nums[i]<nums[i+1]:
count+=1
else:
temp=max(count,temp)
count=1
print(max(count,temp)) | [
"1069583789@qq.com"
] | 1069583789@qq.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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
74e35392f5c4e36cd4980a15661af109baa74410 | 516b2b403bf9033fe4fedbab014b09710b21efd8 | /mdts/mdts.py | 276c7c6a84fff8ebb04f5ac5bc9d6d9c772bbdba | [] | no_license | usccolumbia/MDTS | 77f4960a975b1b4f0ff2425e1dee5c23deafaba5 | 56c97a56eb3a9d48541998b60af43f385377fdbe | refs/heads/master | 2020-03-31T11:36:55.420586 | 2018-02-21T08:12:15 | 2018-02-21T08:12:15 | 152,183,835 | 1 | 0 | null | 2018-10-09T03:44:07 | 2018-10-09T03:44:07 | null | UTF-8 | Python | false | false | 14,498 | py | from __future__ import division
from node import Node
from result import Result
import collections
import random
import numpy as np
import sys
import combo
import math
import ast
class Tree:
def __init__(self, get_reward, positions_order="reverse", max_flag=True, expand_children=1,
space=None, candidate_pool_size=None, no_positions=None, atom_types=None, atom_const=None, play_out=1, play_out_selection="best",
ucb="mean", use_combo=False, combo_init_random=1, combo_step=1, combo_lvl=1, combo_play_out=10):
if space is None:
self.space=None
if (no_positions is None) or (atom_types is None):
sys.exit("no_positions and atom_types should not be None")
else:
self.no_positions = no_positions
self.atom_types = atom_types
self.atom_const = atom_const
if (use_combo) and (candidate_pool_size is None):
sys.exit("Please set the space or set candidate_pool_size for combo search")
else:
self.candidate_pool_size = candidate_pool_size
else:
self.space = space.copy()
self.no_positions = space.shape[1]
self.atom_types = np.unique(space)
if positions_order == "direct":
self.positions_order = range(self.no_positions)
elif positions_order == "reverse":
self.positions_order = range(self.no_positions)[::-1]
elif positions_order == "shuffle":
self.positions_order = random.sample(range(self.no_positions), self.no_positions)
elif isinstance(positions_order, list):
self.positions_order = positions_order
else:
sys.exit("Please specify positions order")
self.chkd_candidates = collections.OrderedDict()
self.max_flag = max_flag
self.root = Node(value='R', children_values=self.atom_types, struct=[None]*self.no_positions)
self.acc_threshold = 0.1
self.get_reward = get_reward
if expand_children == "all":
self.expand_children = len(self.atom_types)
elif isinstance(expand_children, int):
if (expand_children > len(self.atom_types)) or (expand_children == 0):
sys.exit("Please choose appropriate number of children to expand")
else:
self.expand_children = expand_children
self.result = Result()
self.play_out = play_out
if play_out_selection == "best":
self.play_out_selection_mean = False
elif play_out_selection =="mean":
self.play_out_selection_mean = True
else:
sys.exit("Please set play_out_selection to either mean or best")
self.use_combo = use_combo
self.combo_init_random = combo_init_random
self.combo_step = combo_step
self.combo_lvl = combo_lvl
self.combo_play_out=combo_play_out
# if use_combo is True and space is None:
# sys.exit("Please set space to be able to use combo")
if ucb == "best":
self.ucb_mean = False
elif ucb =="mean":
self.ucb_mean = True
else:
sys.exit("Please set ucb to either mean or best")
def _enumerate_cand(self, struct, size):
structure = struct[:]
chosen_candidates = []
if self.atom_const is not None:
for value_id in range(len(self.atom_types)):
if structure.count(self.atom_types[value_id]) > self.atom_const[value_id]:
return chosen_candidates
for pout in range(size):
cand = structure[:]
for value_id in range(len(self.atom_types)):
diff = self.atom_const[value_id] - cand.count(self.atom_types[value_id])
if diff != 0:
avl_pos = [i for i, x in enumerate(cand) if x is None]
to_fill_pos = np.random.choice(avl_pos, diff, replace=False)
for pos in to_fill_pos:
cand[pos] = self.atom_types[value_id]
chosen_candidates.append(cand)
else:
for pout in range(size):
cand = structure[:]
avl_pos = [i for i, x in enumerate(cand) if x is None]
for pos in avl_pos:
cand[pos] = np.random.choice(self.atom_types)
chosen_candidates.append(cand)
return chosen_candidates
def _simulate(self, struct, lvl):
if self.space is None:
if self.use_combo is False:
return self._enumerate_cand(struct,self.play_out)
else:
my_space=self._enumerate_cand(struct,self.candidate_pool_size)
return self._simulate_combo(struct, np.array(my_space))
else:
if (self.use_combo) and (lvl >= self.combo_lvl):
return self._simulate_combo(struct)
else:
return self._simulate_matrix(struct)
def _simulate_matrix(self, struct):
structure = struct[:]
chosen_candidates = []
filled_pos = [i for i, x in enumerate(structure) if x is not None]
filled_values = [x for i, x in enumerate(structure) if x is not None]
sub_data = self.space[:, filled_pos]
avl_candidates_idx = np.where(np.all(sub_data == filled_values, axis=1))[0]
if len(avl_candidates_idx) != 0:
if self.play_out <= len(avl_candidates_idx):
chosen_idxs = np.random.choice(avl_candidates_idx, self.play_out)
else:
chosen_idxs = np.random.choice(avl_candidates_idx, len(avl_candidates_idx))
for idx in chosen_idxs:
chosen_candidates.append(list(self.space[idx]))
return chosen_candidates
def _simulate_combo(self, struct, my_space=None):
chosen_candidates = []
if my_space is None:
structure = struct[:]
filled_pos = [i for i, x in enumerate(structure) if x is not None]
filled_values = [x for i, x in enumerate(structure) if x is not None]
sub_data = self.space[:, filled_pos]
avl_candidates_idx = np.where(np.all(sub_data == filled_values, axis=1))[0]
sub_space=self.space[avl_candidates_idx]
else:
sub_space=my_space
if sub_space.shape[0] !=0:
def combo_simulater(action):
if str(list(sub_space[action[0]])) in self.chkd_candidates.keys():
if self.max_flag:
return self.chkd_candidates[str(list(sub_space[action[0]]))]
else:
return -self.chkd_candidates[str(list(sub_space[action[0]]))]
else:
if self.max_flag:
return self.get_reward(sub_space[action[0]])
else:
return -self.get_reward(sub_space[action[0]])
policy = combo.search.discrete.policy(test_X=sub_space)
if self.combo_play_out <= 1:
sys.exit("combo_play_out can not be less than 2 when use_combo is True")
sub_space_scand_cand=[]
sub_space_scand_val=[]
for c in self.chkd_candidates.keys():
t=np.where(np.all(sub_space == ast.literal_eval(c), axis=1))[0]
if len(t) !=0:
sub_space_scand_cand.append(t[0])
if self.max_flag:
sub_space_scand_val.append(self.chkd_candidates[c])
else:
sub_space_scand_val.append(-self.chkd_candidates[c])
sub_space_pair=zip(sub_space_scand_cand,sub_space_scand_val)
sub_space_pair.sort(key=lambda x: x[1],reverse=True)
if len(sub_space_pair) >= self.combo_play_out:
for i in range(self.combo_play_out):
policy.write(sub_space_pair[i][0],sub_space_pair[i][1])
trained=self.combo_play_out
else:
for x in sub_space_pair:
policy.write(x[0],x[1])
trained=len(sub_space_pair)
if len(sub_space_pair) < self.combo_init_random:
if sub_space.shape[0] >= self.combo_init_random:
policy.random_search(max_num_probes=self.combo_init_random-len(sub_space_pair),
simulator=combo_simulater)
trained=self.combo_init_random
else:
policy.random_search(max_num_probes=sub_space.shape[0] - len(sub_space_pair),
simulator=combo_simulater)
trained=sub_space.shape[0]
if sub_space.shape[0] >= self.combo_play_out:
res = policy.bayes_search(max_num_probes=self.combo_play_out-trained, simulator=combo_simulater
, score='TS', interval=self.combo_step, num_rand_basis=5000)
else:
res = policy.bayes_search(max_num_probes=sub_space.shape[0] - trained, simulator=combo_simulater
, score='TS', interval=self.combo_step, num_rand_basis=5000)
for i in range(len(res.chosed_actions[0:res.total_num_search])):
action=res.chosed_actions[i]
if self.max_flag:
e=res.fx[i]
else:
e=-res.fx[i]
if str(list(sub_space[action])) not in self.chkd_candidates.keys():
self.chkd_candidates[str(list(sub_space[action]))] = e
#action_origin_idx = np.where(np.all(self.space== sub_space[action], axis=1))[0]
#self.space = np.delete(self.space,action_origin_idx[0],axis=0)
chosen_candidates.append(list(sub_space[action]))
return chosen_candidates
def search(self, no_candidates=None, display=True):
prev_len = 0
prev_current = None
round_no = 1
if no_candidates is None :
sys.exit("Please specify no_candidates")
else:
while len(self.chkd_candidates) < no_candidates:
current = self.root.select(self.max_flag, self.ucb_mean)
if current.level == self.no_positions:
struct = current.struct[:]
if str(struct) not in self.chkd_candidates.keys():
e = self.get_reward(struct)
self.chkd_candidates[str(struct)] = e
else:
e = self.chkd_candidates[str(struct)]
current.bck_prop(e)
else:
position = self.positions_order[current.level]
try_children = current.expand(position, self.expand_children)
for try_child in try_children:
all_struct = self._simulate(try_child.struct,try_child.level)
#if len(all_struct) != 0:
rewards = []
for struct in all_struct:
if str(struct) not in self.chkd_candidates.keys():
e = self.get_reward(struct)
if e is not False:
self.chkd_candidates[str(struct)] = e
else:
e = self.chkd_candidates[str(struct)]
rewards.append(e)
rewards[:] = [x for x in rewards if x is not False]
if len(rewards)!=0:
if self.play_out_selection_mean:
best_e = np.mean(rewards)
else:
if self.max_flag:
best_e = max(rewards)
else:
best_e = min(rewards)
try_child.bck_prop(best_e)
else:
current.children[try_child.value] = None
all_struct = self._simulate(current.struct,current.level)
rewards = []
for struct in all_struct:
if str(struct) not in self.chkd_candidates.keys():
e = self.get_reward(struct)
self.chkd_candidates[str(struct)] = e
else:
e = self.chkd_candidates[str(struct)]
rewards.append(e)
if self.play_out_selection_mean:
best_e = np.mean(rewards)
else:
if self.max_flag:
best_e = max(rewards)
else:
best_e = min(rewards)
current.bck_prop(best_e)
if (current == prev_current) and (len(self.chkd_candidates) == prev_len):
adjust_val = (no_candidates-len(self.chkd_candidates))/no_candidates
if adjust_val < self.acc_threshold:
adjust_val = self.acc_threshold
current.adjust_c(adjust_val)
prev_len = len(self.chkd_candidates)
prev_current = current
if display:
print "round ", round_no
print "checked candidates = ", len(self.chkd_candidates)
if self.max_flag:
print "current best = ", max(self.chkd_candidates.itervalues())
else:
print "current best = ", min(self.chkd_candidates.itervalues())
round_no += 1
self.result.format(no_candidates=no_candidates, chkd_candidates=self.chkd_candidates, max_flag=self.max_flag)
self.result.no_nodes, visits, self.result.max_depth_reached = self.root.get_info()
self.result.avg_node_visit = visits / self.result.no_nodes
return self.result | [
"thaer.dieb@gmail.com"
] | thaer.dieb@gmail.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 |
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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.