-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.html
259 lines (203 loc) · 167 KB
/
graph.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<html>
<head>
<meta charset="utf-8">
<script src="lib/bindings/utils.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<center>
<h1></h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"
></script>
<center>
<h1></h1>
</center>
<style type="text/css">
#mynetwork {
width: 100%;
height: 750px;
background-color: #ffffff;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 750px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div class="card" style="width: 100%">
<div id="mynetwork" class="card-body"></div>
</div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var allNodes;
var allEdges;
var nodeColors;
var originalNodes;
var network;
var container;
var options, data;
var filter = {
item : '',
property : '',
value : []
};
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"color": "#009a93", "id": "Thomas Jeffrey Hanks", "label": "Thomas Jeffrey Hanks", "shape": "dot", "size": 50, "title": "Thomas Jeffrey Hanks"}, {"color": "red", "id": "actor and filmmaker", "label": "actor and filmmaker", "shape": "dot", "size": 20, "title": "actor and filmmaker"}, {"color": "#009a93", "id": "Jim", "label": "Jim", "shape": "dot", "size": 50, "title": "Jim"}, {"color": "#009a93", "id": "he", "label": "he", "shape": "dot", "size": 50, "title": "he"}, {"color": "#9fb40a", "id": "worldwide", "label": "worldwide", "shape": "dot", "size": 20, "title": "worldwide"}, {"color": "red", "id": "an American cultural icon", "label": "an American cultural icon", "shape": "dot", "size": 20, "title": "an American cultural icon"}, {"color": "red", "id": "the AFI Life Achievement Award", "label": "the AFI Life Achievement Award", "shape": "dot", "size": 20, "title": "the AFI Life Achievement Award"}, {"color": "red", "id": "the Kennedy Center Honor", "label": "the Kennedy Center Honor", "shape": "dot", "size": 20, "title": "the Kennedy Center Honor"}, {"color": "red", "id": "the Presidential Medal of Freedom", "label": "the Presidential Medal of Freedom", "shape": "dot", "size": 20, "title": "the Presidential Medal of Freedom"}, {"color": "red", "id": "the French Legion of Honor", "label": "the French Legion of Honor", "shape": "dot", "size": 20, "title": "the French Legion of Honor"}, {"color": "red", "id": "the Golden Globe Cecil B. DeMille Award", "label": "the Golden Globe Cecil B. DeMille Award", "shape": "dot", "size": 20, "title": "the Golden Globe Cecil B. DeMille Award"}, {"color": "red", "id": "students", "label": "students", "shape": "dot", "size": 20, "title": "students"}, {"color": "red", "id": "a movie star", "label": "a movie star", "shape": "dot", "size": 20, "title": "a movie star"}, {"color": "#eadcc5", "id": "The Walt Disney Studios", "label": "The Walt Disney Studios", "shape": "dot", "size": 40, "title": "The Walt Disney Studios"}, {"color": "red", "id": "a talent pool", "label": "a talent pool", "shape": "dot", "size": 20, "title": "a talent pool"}, {"color": "red", "id": "a greedy Wall Street figure", "label": "a greedy Wall Street figure", "shape": "dot", "size": 20, "title": "a greedy Wall Street figure"}, {"color": "#9fb40a", "id": "Philadelphia", "label": "Philadelphia", "shape": "dot", "size": 20, "title": "Philadelphia"}, {"color": "red", "id": "a gay lawyer with AIDS", "label": "a gay lawyer with AIDS", "shape": "dot", "size": 20, "title": "a gay lawyer with AIDS"}, {"color": "red", "id": "discrimination", "label": "discrimination", "shape": "dot", "size": 20, "title": "discrimination"}, {"color": "red", "id": "Rawley Farnsworth and his former classmate John Gilkerson", "label": "Rawley Farnsworth and his former classmate John Gilkerson", "shape": "dot", "size": 20, "title": "Rawley Farnsworth and his former classmate John Gilkerson"}, {"color": "red", "id": "a music producer", "label": "a music producer", "shape": "dot", "size": 20, "title": "a music producer"}, {"color": "#009a93", "id": "Sam Mendes", "label": "Sam Mendes", "shape": "dot", "size": 50, "title": "Sam Mendes"}, {"color": "red", "id": "hitman on the run with his son", "label": "hitman on the run with his son", "shape": "dot", "size": 20, "title": "hitman on the run with his son"}, {"color": "#997733", "id": "Mamma Mia!", "label": "Mamma Mia!", "shape": "dot", "size": 30, "title": "Mamma Mia!"}, {"color": "red", "id": "NBC\u0027s Saturday Night Live", "label": "NBC\u0027s Saturday Night Live", "shape": "dot", "size": 20, "title": "NBC\u0027s Saturday Night Live"}, {"color": "red", "id": "himself", "label": "himself", "shape": "dot", "size": 20, "title": "himself"}, {"color": "#997733", "id": "Larry Crowne", "label": "Larry Crowne", "shape": "dot", "size": 30, "title": "Larry Crowne"}, {"color": "#009a93", "id": "Julia Roberts", "label": "Julia Roberts", "shape": "dot", "size": 50, "title": "Julia Roberts"}, {"color": "#997733", "id": "Extremely Loud and Incredibly Close", "label": "Extremely Loud and Incredibly Close", "shape": "dot", "size": 30, "title": "Extremely Loud and Incredibly Close"}, {"color": "red", "id": "the character Cleveland Carr", "label": "the character Cleveland Carr", "shape": "dot", "size": 20, "title": "the character Cleveland Carr"}, {"color": "red", "id": "Electric City", "label": "Electric City", "shape": "dot", "size": 20, "title": "Electric City"}, {"color": "red", "id": "rockets", "label": "rockets", "shape": "dot", "size": 20, "title": "rockets"}, {"color": "red", "id": "live broadcasts of space missions", "label": "live broadcasts of space missions", "shape": "dot", "size": 20, "title": "live broadcasts of space missions"}, {"color": "red", "id": "Nora Ephron\u0027s Lucky Guy", "label": "Nora Ephron\u0027s Lucky Guy", "shape": "dot", "size": 20, "title": "Nora Ephron\u0027s Lucky Guy"}, {"color": "red", "id": "crowds of 300 fans waiting for a glimpse of him after every performance", "label": "crowds of 300 fans waiting for a glimpse of him after every performance", "shape": "dot", "size": 20, "title": "crowds of 300 fans waiting for a glimpse of him after every performance"}, {"color": "red", "id": "lifestyle changes", "label": "lifestyle changes", "shape": "dot", "size": 20, "title": "lifestyle changes"}, {"color": "red", "id": "the remark", "label": "the remark", "shape": "dot", "size": 20, "title": "the remark"}, {"color": "red", "id": "nothing", "label": "nothing", "shape": "dot", "size": 20, "title": "nothing"}, {"color": "red", "id": "his films", "label": "his films", "shape": "dot", "size": 20, "title": "his films"}, {"color": "#009a93", "id": "Hanks", "label": "Hanks", "shape": "dot", "size": 50, "title": "Hanks"}, {"color": "red", "id": "actor", "label": "actor", "shape": "dot", "size": 20, "title": "actor"}, {"color": "red", "id": "$4.9 billion nationally", "label": "$4.9 billion nationally", "shape": "dot", "size": 20, "title": "$4.9 billion nationally"}, {"color": "red", "id": "$9.96 billion worldwide", "label": "$9.96 billion worldwide", "shape": "dot", "size": 20, "title": "$9.96 billion worldwide"}, {"color": "red", "id": "leading roles in a series of comedies", "label": "leading roles in a series of comedies", "shape": "dot", "size": 20, "title": "leading roles in a series of comedies"}, {"color": "#997733", "id": "Splash", "label": "Splash", "shape": "dot", "size": 30, "title": "Splash"}, {"color": "#997733", "id": "The Money Pit", "label": "The Money Pit", "shape": "dot", "size": 30, "title": "The Money Pit"}, {"color": "#997733", "id": "Big", "label": "Big", "shape": "dot", "size": 30, "title": "Big"}, {"color": "#997733", "id": "A League of Their Own", "label": "A League of Their Own", "shape": "dot", "size": 30, "title": "A League of Their Own"}, {"color": "#009a93", "id": "Steven Spielberg", "label": "Steven Spielberg", "shape": "dot", "size": 50, "title": "Steven Spielberg"}, {"color": "#997733", "id": "Saving Private Ryan", "label": "Saving Private Ryan", "shape": "dot", "size": 30, "title": "Saving Private Ryan"}, {"color": "#997733", "id": "Catch Me If You Can", "label": "Catch Me If You Can", "shape": "dot", "size": 30, "title": "Catch Me If You Can"}, {"color": "#997733", "id": "The Terminal", "label": "The Terminal", "shape": "dot", "size": 30, "title": "The Terminal"}, {"color": "#997733", "id": "Bridge of Spies", "label": "Bridge of Spies", "shape": "dot", "size": 30, "title": "Bridge of Spies"}, {"color": "#997733", "id": "The Post", "label": "The Post", "shape": "dot", "size": 30, "title": "The Post"}, {"color": "#997733", "id": "Band of Brothers", "label": "Band of Brothers", "shape": "dot", "size": 30, "title": "Band of Brothers"}, {"color": "#997733", "id": "The Pacific", "label": "The Pacific", "shape": "dot", "size": 30, "title": "The Pacific"}, {"color": "#997733", "id": "Masters of the Air", "label": "Masters of the Air", "shape": "dot", "size": 30, "title": "Masters of the Air"}, {"color": "red", "id": "seven Primetime Emmy Awards", "label": "seven Primetime Emmy Awards", "shape": "dot", "size": 20, "title": "seven Primetime Emmy Awards"}, {"color": "#997733", "id": "From the Earth to the Moon", "label": "From the Earth to the Moon", "shape": "dot", "size": 30, "title": "From the Earth to the Moon"}, {"color": "#009a93", "id": "John Adams", "label": "John Adams", "shape": "dot", "size": 50, "title": "John Adams"}, {"color": "#997733", "id": "Game Change", "label": "Game Change", "shape": "dot", "size": 30, "title": "Game Change"}, {"color": "#997733", "id": "Olive Kitteridge", "label": "Olive Kitteridge", "shape": "dot", "size": 30, "title": "Olive Kitteridge"}, {"color": "#009a93", "id": "Rita Wilson", "label": "Rita Wilson", "shape": "dot", "size": 50, "title": "Rita Wilson"}, {"color": "#eadcc5", "id": "Greek Orthodox Christianity", "label": "Greek Orthodox Christianity", "shape": "dot", "size": 40, "title": "Greek Orthodox Christianity"}, {"color": "#997733", "id": "South Pacific", "label": "South Pacific", "shape": "dot", "size": 30, "title": "South Pacific"}, {"color": "#eadcc5", "id": "Skyline High School", "label": "Skyline High School", "shape": "dot", "size": 40, "title": "Skyline High School"}, {"color": "#9fb40a", "id": "Bay Area", "label": "Bay Area", "shape": "dot", "size": 20, "title": "Bay Area"}, {"color": "#9fb40a", "id": "Alameda Theatre", "label": "Alameda Theatre", "shape": "dot", "size": 20, "title": "Alameda Theatre"}, {"color": "#9fb40a", "id": "theater", "label": "theater", "shape": "dot", "size": 20, "title": "theater"}, {"color": "#eadcc5", "id": "Great Lakes Theater Festival", "label": "Great Lakes Theater Festival", "shape": "dot", "size": 40, "title": "Great Lakes Theater Festival"}, {"color": "red", "id": "the festival", "label": "the festival", "shape": "dot", "size": 20, "title": "the festival"}, {"color": "red", "id": "college", "label": "college", "shape": "dot", "size": 20, "title": "college"}, {"color": "red", "id": "one of the Top 10 College Dropouts by Time magazine", "label": "one of the Top 10 College Dropouts by Time magazine", "shape": "dot", "size": 20, "title": "one of the Top 10 College Dropouts by Time magazine"}, {"color": "#eadcc5", "id": "Time magazine", "label": "Time magazine", "shape": "dot", "size": 40, "title": "Time magazine"}, {"color": "#009a93", "id": "Scolari", "label": "Scolari", "shape": "dot", "size": 50, "title": "Scolari"}, {"color": "red", "id": "Make Me Laugh", "label": "Make Me Laugh", "shape": "dot", "size": 20, "title": "Make Me Laugh"}, {"color": "#9fb40a", "id": "Los Angeles", "label": "Los Angeles", "shape": "dot", "size": 20, "title": "Los Angeles"}, {"color": "red", "id": "Happy Days", "label": "Happy Days", "shape": "dot", "size": 20, "title": "Happy Days"}, {"color": "#009a93", "id": "Lowell Ganz", "label": "Lowell Ganz", "shape": "dot", "size": 50, "title": "Lowell Ganz"}, {"color": "#009a93", "id": "Babaloo Mandel", "label": "Babaloo Mandel", "shape": "dot", "size": 50, "title": "Babaloo Mandel"}, {"color": "#009a93", "id": "Howard", "label": "Howard", "shape": "dot", "size": 50, "title": "Howard"}, {"color": "red", "id": "film", "label": "film", "shape": "dot", "size": 20, "title": "film"}, {"color": "red", "id": "the main character\u0027s wisecracking brother", "label": "the main character\u0027s wisecracking brother", "shape": "dot", "size": 20, "title": "the main character\u0027s wisecracking brother"}, {"color": "#eadcc5", "id": "Family Ties", "label": "Family Ties", "shape": "dot", "size": 40, "title": "Family Ties"}, {"color": "#009a93", "id": "Ned Donnelly", "label": "Ned Donnelly", "shape": "dot", "size": 50, "title": "Ned Donnelly"}, {"color": "red", "id": "Elyse Keaton\u0027s brother Ned Donnelly", "label": "Elyse Keaton\u0027s brother Ned Donnelly", "shape": "dot", "size": 20, "title": "Elyse Keaton\u0027s brother Ned Donnelly"}, {"color": "#eadcc5", "id": "Rolling Stone", "label": "Rolling Stone", "shape": "dot", "size": 40, "title": "Rolling Stone"}, {"color": "red", "id": "experience", "label": "experience", "shape": "dot", "size": 20, "title": "experience"}, {"color": "red", "id": "movies", "label": "movies", "shape": "dot", "size": 20, "title": "movies"}, {"color": "red", "id": "stature in the film industry", "label": "stature in the film industry", "shape": "dot", "size": 20, "title": "stature in the film industry"}, {"color": "red", "id": "flops", "label": "flops", "shape": "dot", "size": 20, "title": "flops"}, {"color": "red", "id": "moderate success with the movie Dragnet", "label": "moderate success with the movie Dragnet", "shape": "dot", "size": 20, "title": "moderate success with the movie Dragnet"}, {"color": "red", "id": "both as a box office draw and within the industry as an actor", "label": "both as a box office draw and within the industry as an actor", "shape": "dot", "size": 20, "title": "both as a box office draw and within the industry as an actor"}, {"color": "#dc9403", "id": "Academy Award for Best Actor", "label": "Academy Award for Best Actor", "shape": "dot", "size": 10, "title": "Academy Award for Best Actor"}, {"color": "#997733", "id": "The \u0027Burbs", "label": "The \u0027Burbs", "shape": "dot", "size": 30, "title": "The \u0027Burbs"}, {"color": "#997733", "id": "Joe Versus the Volcano", "label": "Joe Versus the Volcano", "shape": "dot", "size": 30, "title": "Joe Versus the Volcano"}, {"color": "#997733", "id": "The Bonfire of the Vanities", "label": "The Bonfire of the Vanities", "shape": "dot", "size": 30, "title": "The Bonfire of the Vanities"}, {"color": "#eadcc5", "id": "Turner \u0026 Hooch", "label": "Turner \u0026 Hooch", "shape": "dot", "size": 40, "title": "Turner \u0026 Hooch"}, {"color": "red", "id": "that his acting in earlier roles had not not great", "label": "that his acting in earlier roles had not not great", "shape": "dot", "size": 20, "title": "that his acting in earlier roles had not not great"}, {"color": "red", "id": "acting in earlier roles", "label": "acting in earlier roles", "shape": "dot", "size": 20, "title": "acting in earlier roles"}, {"color": "red", "id": "later", "label": "later", "shape": "dot", "size": 20, "title": "later"}, {"color": "red", "id": "1993", "label": "1993", "shape": "dot", "size": 20, "title": "1993"}, {"color": "#997733", "id": "Sleepless in Seattle", "label": "Sleepless in Seattle", "shape": "dot", "size": 30, "title": "Sleepless in Seattle"}, {"color": "#009a93", "id": "Meg Ryan", "label": "Meg Ryan", "shape": "dot", "size": 50, "title": "Meg Ryan"}, {"color": "red", "id": "35 pounds", "label": "35 pounds", "shape": "dot", "size": 20, "title": "35 pounds"}, {"color": "red", "id": "his hair", "label": "his hair", "shape": "dot", "size": 20, "title": "his hair"}, {"color": "red", "id": "sickly", "label": "sickly", "shape": "dot", "size": 20, "title": "sickly"}, {"color": "red", "id": "a character", "label": "a character", "shape": "dot", "size": 20, "title": "a character"}, {"color": "red", "id": "that he plays a character", "label": "that he plays a character", "shape": "dot", "size": 20, "title": "that he plays a character"}, {"color": "red", "id": "second Best Actor Academy Award", "label": "second Best Actor Academy Award", "shape": "dot", "size": 20, "title": "second Best Actor Academy Award"}, {"color": "red", "id": "Best Actor Oscars", "label": "Best Actor Oscars", "shape": "dot", "size": 20, "title": "Best Actor Oscars"}, {"color": "red", "id": "consecutive Best Actor Oscars", "label": "consecutive Best Actor Oscars", "shape": "dot", "size": 20, "title": "consecutive Best Actor Oscars"}, {"color": "#997733", "id": "Forrest Gump", "label": "Forrest Gump", "shape": "dot", "size": 30, "title": "Forrest Gump"}, {"color": "#009a93", "id": "Tracy", "label": "Tracy", "shape": "dot", "size": 50, "title": "Tracy"}, {"color": "#dc9403", "id": "Academy Award", "label": "Academy Award", "shape": "dot", "size": 10, "title": "Academy Award"}, {"color": "red", "id": "That Thing You Do!", "label": "That Thing You Do!", "shape": "dot", "size": 20, "title": "That Thing You Do!"}, {"color": "red", "id": "Best Actor nomination", "label": "Best Actor nomination", "shape": "dot", "size": 20, "title": "Best Actor nomination"}, {"color": "#997733", "id": "Cast Away", "label": "Cast Away", "shape": "dot", "size": 30, "title": "Cast Away"}, {"color": "#eadcc5", "id": "Gold Circle Films", "label": "Gold Circle Films", "shape": "dot", "size": 40, "title": "Gold Circle Films"}, {"color": "#009a93", "id": "Wilson", "label": "Wilson", "shape": "dot", "size": 50, "title": "Wilson"}, {"color": "#009a93", "id": "Gary Goetzman", "label": "Gary Goetzman", "shape": "dot", "size": 50, "title": "Gary Goetzman"}, {"color": "#009a93", "id": "Nia Vardalos", "label": "Nia Vardalos", "shape": "dot", "size": 50, "title": "Nia Vardalos"}, {"color": "red", "id": "American Film Institute\u0027s Life Achievement Award", "label": "American Film Institute\u0027s Life Achievement Award", "shape": "dot", "size": 20, "title": "American Film Institute\u0027s Life Achievement Award"}, {"color": "#997733", "id": "The Ladykillers", "label": "The Ladykillers", "shape": "dot", "size": 30, "title": "The Ladykillers"}, {"color": "#997733", "id": "The Polar Express", "label": "The Polar Express", "shape": "dot", "size": 30, "title": "The Polar Express"}, {"color": "red", "id": "USA Weekend", "label": "USA Weekend", "shape": "dot", "size": 20, "title": "USA Weekend"}, {"color": "#997733", "id": "The Da Vinci Code", "label": "The Da Vinci Code", "shape": "dot", "size": 30, "title": "The Da Vinci Code"}, {"color": "#997733", "id": "The War", "label": "The War", "shape": "dot", "size": 30, "title": "The War"}, {"color": "red", "id": "excerpts from columns by Al McIntosh", "label": "excerpts from columns by Al McIntosh", "shape": "dot", "size": 20, "title": "excerpts from columns by Al McIntosh"}, {"color": "red", "id": "first published short story", "label": "first published short story", "shape": "dot", "size": 20, "title": "first published short story"}, {"color": "red", "id": "he has always been fascinated by space", "label": "he has always been fascinated by space", "shape": "dot", "size": 20, "title": "he has always been fascinated by space"}, {"color": "#009a93", "id": "Sheriff Woody", "label": "Sheriff Woody", "shape": "dot", "size": 50, "title": "Sheriff Woody"}, {"color": "red", "id": "released in 2020", "label": "released in 2020", "shape": "dot", "size": 20, "title": "released in 2020"}, {"color": "#997733", "id": "Greyhound", "label": "Greyhound", "shape": "dot", "size": 30, "title": "Greyhound"}, {"color": "red", "id": "playing thoroughly decent men", "label": "playing thoroughly decent men", "shape": "dot", "size": 20, "title": "playing thoroughly decent men"}, {"color": "red", "id": "thoroughly decent men", "label": "thoroughly decent men", "shape": "dot", "size": 20, "title": "thoroughly decent men"}, {"color": "#009a93", "id": "Ratliff", "label": "Ratliff", "shape": "dot", "size": 50, "title": "Ratliff"}, {"color": "red", "id": "Ratliff had \u0027dead eyes\u0027", "label": "Ratliff had \u0027dead eyes\u0027", "shape": "dot", "size": 20, "title": "Ratliff had \u0027dead eyes\u0027"}, {"color": "#997733", "id": "Pinocchio", "label": "Pinocchio", "shape": "dot", "size": 30, "title": "Pinocchio"}, {"color": "#009a93", "id": "Geppetto", "label": "Geppetto", "shape": "dot", "size": 50, "title": "Geppetto"}, {"color": "#997733", "id": "A Man Called Otto", "label": "A Man Called Otto", "shape": "dot", "size": 30, "title": "A Man Called Otto"}, {"color": "red", "id": "the feature adaptation of Here", "label": "the feature adaptation of Here", "shape": "dot", "size": 20, "title": "the feature adaptation of Here"}, {"color": "red", "id": "six Academy Award nominations", "label": "six Academy Award nominations", "shape": "dot", "size": 20, "title": "six Academy Award nominations"}, {"color": "red", "id": "Best Actor for Philadelphia", "label": "Best Actor for Philadelphia", "shape": "dot", "size": 20, "title": "Best Actor for Philadelphia"}, {"color": "red", "id": "Best Actor for Forrest Gump", "label": "Best Actor for Forrest Gump", "shape": "dot", "size": 20, "title": "Best Actor for Forrest Gump"}, {"color": "red", "id": "Academy Award for Best Actor for Philadelphia", "label": "Academy Award for Best Actor for Philadelphia", "shape": "dot", "size": 20, "title": "Academy Award for Best Actor for Philadelphia"}, {"color": "red", "id": "Academy Award for Best Actor for Forrest Gump", "label": "Academy Award for Best Actor for Forrest Gump", "shape": "dot", "size": 20, "title": "Academy Award for Best Actor for Forrest Gump"}, {"color": "red", "id": "Academy Award in 1993 and 1994", "label": "Academy Award in 1993 and 1994", "shape": "dot", "size": 20, "title": "Academy Award in 1993 and 1994"}, {"color": "#dc9403", "id": "Best Actor in a Play", "label": "Best Actor in a Play", "shape": "dot", "size": 10, "title": "Best Actor in a Play"}, {"color": "#997733", "id": "Lucky Guy", "label": "Lucky Guy", "shape": "dot", "size": 30, "title": "Lucky Guy"}, {"color": "red", "id": "Nora Ephron\u0027s play", "label": "Nora Ephron\u0027s play", "shape": "dot", "size": 20, "title": "Nora Ephron\u0027s play"}, {"color": "red", "id": "his work on television", "label": "his work on television", "shape": "dot", "size": 20, "title": "his work on television"}, {"color": "red", "id": "various limited series and television films", "label": "various limited series and television films", "shape": "dot", "size": 20, "title": "various limited series and television films"}, {"color": "red", "id": "in North America", "label": "in North America", "shape": "dot", "size": 20, "title": "in North America"}, {"color": "red", "id": "of over $4.9 billion at the North American box office", "label": "of over $4.9 billion at the North American box office", "shape": "dot", "size": 20, "title": "of over $4.9 billion at the North American box office"}, {"color": "red", "id": "of $100.8 million per film", "label": "of $100.8 million per film", "shape": "dot", "size": 20, "title": "of $100.8 million per film"}, {"color": "red", "id": "BBC Radio 4\u0027s Desert Island Discs", "label": "BBC Radio 4\u0027s Desert Island Discs", "shape": "dot", "size": 20, "title": "BBC Radio 4\u0027s Desert Island Discs"}, {"color": "red", "id": "May 8, 2016", "label": "May 8, 2016", "shape": "dot", "size": 20, "title": "May 8, 2016"}, {"color": "#009a93", "id": "Terry Gross", "label": "Terry Gross", "shape": "dot", "size": 50, "title": "Terry Gross"}, {"color": "red", "id": "Fresh Air", "label": "Fresh Air", "shape": "dot", "size": 20, "title": "Fresh Air"}, {"color": "#eadcc5", "id": "WHYY-FM", "label": "WHYY-FM", "shape": "dot", "size": 40, "title": "WHYY-FM"}, {"color": "red", "id": "his acting career", "label": "his acting career", "shape": "dot", "size": 20, "title": "his acting career"}, {"color": "red", "id": "a fundamentally good person", "label": "a fundamentally good person", "shape": "dot", "size": 20, "title": "a fundamentally good person"}, {"color": "red", "id": "an even better actor than we think", "label": "an even better actor than we think", "shape": "dot", "size": 20, "title": "an even better actor than we think"}, {"color": "red", "id": "her faith", "label": "her faith", "shape": "dot", "size": 20, "title": "her faith"}, {"color": "red", "id": "sons", "label": "sons", "shape": "dot", "size": 20, "title": "sons"}, {"color": "red", "id": "son2", "label": "son2", "shape": "dot", "size": 20, "title": "son2"}, {"color": "#eadcc5", "id": "Oakland Athletics", "label": "Oakland Athletics", "shape": "dot", "size": 40, "title": "Oakland Athletics"}, {"color": "#eadcc5", "id": "Raiders", "label": "Raiders", "shape": "dot", "size": 40, "title": "Raiders"}, {"color": "#009a93", "id": "Abraham Lincoln", "label": "Abraham Lincoln", "shape": "dot", "size": 50, "title": "Abraham Lincoln"}, {"color": "red", "id": "bringing global attention and appealing for aid after a devastating wildfire", "label": "bringing global attention and appealing for aid after a devastating wildfire", "shape": "dot", "size": 20, "title": "bringing global attention and appealing for aid after a devastating wildfire"}, {"color": "red", "id": "a devastating wildfire", "label": "a devastating wildfire", "shape": "dot", "size": 20, "title": "a devastating wildfire"}, {"color": "red", "id": "their role in bringing global attention and appealing for aid after a devastating wildfire", "label": "their role in bringing global attention and appealing for aid after a devastating wildfire", "shape": "dot", "size": 20, "title": "their role in bringing global attention and appealing for aid after a devastating wildfire"}, {"color": "red", "id": "their children", "label": "their children", "shape": "dot", "size": 20, "title": "their children"}, {"color": "#009a93", "id": "Kyriakos Mitsotakis", "label": "Kyriakos Mitsotakis", "shape": "dot", "size": 50, "title": "Kyriakos Mitsotakis"}, {"color": "#eadcc5", "id": "Democratic politicians", "label": "Democratic politicians", "shape": "dot", "size": 40, "title": "Democratic politicians"}, {"color": "#009a93", "id": "Barack Obama", "label": "Barack Obama", "shape": "dot", "size": 50, "title": "Barack Obama"}, {"color": "red", "id": "Proposition 8", "label": "Proposition 8", "shape": "dot", "size": 20, "title": "Proposition 8"}, {"color": "red", "id": "US$44 million", "label": "US$44 million", "shape": "dot", "size": 20, "title": "US$44 million"}, {"color": "red", "id": "the proposition", "label": "the proposition", "shape": "dot", "size": 20, "title": "the proposition"}, {"color": "red", "id": "supporters of Proposition 8", "label": "supporters of Proposition 8", "shape": "dot", "size": 20, "title": "supporters of Proposition 8"}, {"color": "red", "id": "LDS Church members", "label": "LDS Church members", "shape": "dot", "size": 20, "title": "LDS Church members"}, {"color": "red", "id": "electric vehicles", "label": "electric vehicles", "shape": "dot", "size": 20, "title": "electric vehicles"}, {"color": "red", "id": "Toyota RAV4 EV", "label": "Toyota RAV4 EV", "shape": "dot", "size": 20, "title": "Toyota RAV4 EV"}, {"color": "red", "id": "AC Propulsion eBox", "label": "AC Propulsion eBox", "shape": "dot", "size": 20, "title": "AC Propulsion eBox"}, {"color": "red", "id": "Hidden Heroes Campaign of the Elizabeth Dole Foundation", "label": "Hidden Heroes Campaign of the Elizabeth Dole Foundation", "shape": "dot", "size": 20, "title": "Hidden Heroes Campaign of the Elizabeth Dole Foundation"}, {"color": "red", "id": "an astronaut", "label": "an astronaut", "shape": "dot", "size": 20, "title": "an astronaut"}, {"color": "#eadcc5", "id": "National Space Society", "label": "National Space Society", "shape": "dot", "size": 40, "title": "National Space Society"}, {"color": "#997733", "id": "Magnificent Desolation: Walking on the Moon 3D", "label": "Magnificent Desolation: Walking on the Moon 3D", "shape": "dot", "size": 30, "title": "Magnificent Desolation: Walking on the Moon 3D"}, {"color": "#dc9403", "id": "Douglas S. Morrow Public Outreach Award", "label": "Douglas S. Morrow Public Outreach Award", "shape": "dot", "size": 10, "title": "Douglas S. Morrow Public Outreach Award"}, {"color": "#eadcc5", "id": "Space Foundation", "label": "Space Foundation", "shape": "dot", "size": 40, "title": "Space Foundation"}, {"color": "red", "id": "Rock and Roll Hall of Fame", "label": "Rock and Roll Hall of Fame", "shape": "dot", "size": 20, "title": "Rock and Roll Hall of Fame"}, {"color": "#eadcc5", "id": "The Dave Clark Five", "label": "The Dave Clark Five", "shape": "dot", "size": 40, "title": "The Dave Clark Five"}, {"color": "red", "id": "manual typewriters", "label": "manual typewriters", "shape": "dot", "size": 20, "title": "manual typewriters"}, {"color": "red", "id": "Hanx Writer", "label": "Hanx Writer", "shape": "dot", "size": 20, "title": "Hanx Writer"}, {"color": "red", "id": "COVID-19", "label": "COVID-19", "shape": "dot", "size": 20, "title": "COVID-19"}, {"color": "red", "id": "blood antibodies", "label": "blood antibodies", "shape": "dot", "size": 20, "title": "blood antibodies"}, {"color": "red", "id": "his wife", "label": "his wife", "shape": "dot", "size": 20, "title": "his wife"}, {"color": "#009a93", "id": "Tom Hanks", "label": "Tom Hanks", "shape": "dot", "size": 50, "title": "Tom Hanks"}, {"color": "#009a93", "id": "Ron Howard", "label": "Ron Howard", "shape": "dot", "size": 50, "title": "Ron Howard"}, {"color": "red", "id": "a guy and his house", "label": "a guy and his house", "shape": "dot", "size": 20, "title": "a guy and his house"}, {"color": "red", "id": "Fantasy Comedy", "label": "Fantasy Comedy", "shape": "dot", "size": 20, "title": "Fantasy Comedy"}, {"color": "#997733", "id": "Punchline", "label": "Punchline", "shape": "dot", "size": 30, "title": "Punchline"}, {"color": "#009a93", "id": "Penny Marshall", "label": "Penny Marshall", "shape": "dot", "size": 50, "title": "Penny Marshall"}, {"color": "red", "id": "Hanks discussed", "label": "Hanks discussed", "shape": "dot", "size": 20, "title": "Hanks discussed"}, {"color": "red", "id": "two consecutive Academy Awards", "label": "two consecutive Academy Awards", "shape": "dot", "size": 20, "title": "two consecutive Academy Awards"}, {"color": "red", "id": "a gay lawyer suffering from AIDS in Philadelphia", "label": "a gay lawyer suffering from AIDS in Philadelphia", "shape": "dot", "size": 20, "title": "a gay lawyer suffering from AIDS in Philadelphia"}, {"color": "red", "id": "the title character in Forrest Gump", "label": "the title character in Forrest Gump", "shape": "dot", "size": 20, "title": "the title character in Forrest Gump"}, {"color": "#997733", "id": "You\u0027ve Got Mail", "label": "You\u0027ve Got Mail", "shape": "dot", "size": 30, "title": "You\u0027ve Got Mail"}, {"color": "#997733", "id": "Apollo 13", "label": "Apollo 13", "shape": "dot", "size": 30, "title": "Apollo 13"}, {"color": "#997733", "id": "The Green Mile", "label": "The Green Mile", "shape": "dot", "size": 30, "title": "The Green Mile"}, {"color": "#997733", "id": "Road to Perdition", "label": "Road to Perdition", "shape": "dot", "size": 30, "title": "Road to Perdition"}, {"color": "#997733", "id": "Cloud Atlas", "label": "Cloud Atlas", "shape": "dot", "size": 30, "title": "Cloud Atlas"}, {"color": "#997733", "id": "Charlie Wilson\u0027s War", "label": "Charlie Wilson\u0027s War", "shape": "dot", "size": 30, "title": "Charlie Wilson\u0027s War"}, {"color": "#997733", "id": "Captain Phillips", "label": "Captain Phillips", "shape": "dot", "size": 30, "title": "Captain Phillips"}, {"color": "#997733", "id": "Saving Mr. Banks", "label": "Saving Mr. Banks", "shape": "dot", "size": 30, "title": "Saving Mr. Banks"}, {"color": "#997733", "id": "Sully", "label": "Sully", "shape": "dot", "size": 30, "title": "Sully"}, {"color": "#997733", "id": "A Beautiful Day in the Neighborhood", "label": "A Beautiful Day in the Neighborhood", "shape": "dot", "size": 30, "title": "A Beautiful Day in the Neighborhood"}, {"color": "#997733", "id": "News of the World", "label": "News of the World", "shape": "dot", "size": 30, "title": "News of the World"}, {"color": "#997733", "id": "Elvis", "label": "Elvis", "shape": "dot", "size": 30, "title": "Elvis"}, {"color": "#eadcc5", "id": "Playtone", "label": "Playtone", "shape": "dot", "size": 40, "title": "Playtone"}, {"color": "#9fb40a", "id": "Concord, California", "label": "Concord, California", "shape": "dot", "size": 20, "title": "Concord, California"}, {"color": "#009a93", "id": "Janet Marylyn", "label": "Janet Marylyn", "shape": "dot", "size": 50, "title": "Janet Marylyn"}, {"color": "red", "id": "Amos \u0027Bud\u0027 Hanks", "label": "Amos \u0027Bud\u0027 Hanks", "shape": "dot", "size": 20, "title": "Amos \u0027Bud\u0027 Hanks"}, {"color": "#009a93", "id": "Fred Rogers", "label": "Fred Rogers", "shape": "dot", "size": 50, "title": "Fred Rogers"}, {"color": "red", "id": "ten different houses", "label": "ten different houses", "shape": "dot", "size": 20, "title": "ten different houses"}, {"color": "red", "id": "a Bible-toting evangelical", "label": "a Bible-toting evangelical", "shape": "dot", "size": 20, "title": "a Bible-toting evangelical"}, {"color": "red", "id": "several years", "label": "several years", "shape": "dot", "size": 20, "title": "several years"}, {"color": "#eadcc5", "id": "Chabot College", "label": "Chabot College", "shape": "dot", "size": 40, "title": "Chabot College"}, {"color": "red", "id": "California State University, Sacramento", "label": "California State University, Sacramento", "shape": "dot", "size": 20, "title": "California State University, Sacramento"}, {"color": "#009a93", "id": "Bob Costas", "label": "Bob Costas", "shape": "dot", "size": 50, "title": "Bob Costas"}, {"color": "#009a93", "id": "Vincent Dowling", "label": "Vincent Dowling", "shape": "dot", "size": 50, "title": "Vincent Dowling"}, {"color": "red", "id": "Cleveland Critics Circle Award for Best Actor", "label": "Cleveland Critics Circle Award for Best Actor", "shape": "dot", "size": 20, "title": "Cleveland Critics Circle Award for Best Actor"}, {"color": "red", "id": "Proteus", "label": "Proteus", "shape": "dot", "size": 20, "title": "Proteus"}, {"color": "#997733", "id": "He Knows You\u0027re Alone", "label": "He Knows You\u0027re Alone", "shape": "dot", "size": 30, "title": "He Knows You\u0027re Alone"}, {"color": "#997733", "id": "Mazes and Monsters", "label": "Mazes and Monsters", "shape": "dot", "size": 30, "title": "Mazes and Monsters"}, {"color": "#997733", "id": "Bosom Buddies", "label": "Bosom Buddies", "shape": "dot", "size": 30, "title": "Bosom Buddies"}, {"color": "#009a93", "id": "Kip Wilson", "label": "Kip Wilson", "shape": "dot", "size": 50, "title": "Kip Wilson"}, {"color": "red", "id": "comedies and dramas", "label": "comedies and dramas", "shape": "dot", "size": 20, "title": "comedies and dramas"}, {"color": "#009a93", "id": "Jackie Gleason", "label": "Jackie Gleason", "shape": "dot", "size": 50, "title": "Jackie Gleason"}, {"color": "red", "id": "a washed-up baseball legend turned manager", "label": "a washed-up baseball legend turned manager", "shape": "dot", "size": 20, "title": "a washed-up baseball legend turned manager"}, {"color": "red", "id": "the modern era of moviemaking", "label": "the modern era of moviemaking", "shape": "dot", "size": 20, "title": "the modern era of moviemaking"}, {"color": "red", "id": "self-discovery", "label": "self-discovery", "shape": "dot", "size": 20, "title": "self-discovery"}, {"color": "red", "id": "premier romantic-comedy stars of his generation", "label": "premier romantic-comedy stars of his generation", "shape": "dot", "size": 20, "title": "premier romantic-comedy stars of his generation"}, {"color": "red", "id": "script for Gump", "label": "script for Gump", "shape": "dot", "size": 20, "title": "script for Gump"}, {"color": "#997733", "id": "Gump", "label": "Gump", "shape": "dot", "size": 30, "title": "Gump"}, {"color": "#009a93", "id": "Jim Lovell", "label": "Jim Lovell", "shape": "dot", "size": 50, "title": "Jim Lovell"}, {"color": "#997733", "id": "Toy Story", "label": "Toy Story", "shape": "dot", "size": 30, "title": "Toy Story"}, {"color": "#009a93", "id": "Nora Ephron", "label": "Nora Ephron", "shape": "dot", "size": 50, "title": "Nora Ephron"}, {"color": "#009a93", "id": "Woody", "label": "Woody", "shape": "dot", "size": 50, "title": "Woody"}, {"color": "red", "id": "a marooned FedEx systems analyst", "label": "a marooned FedEx systems analyst", "shape": "dot", "size": 20, "title": "a marooned FedEx systems analyst"}, {"color": "#009a93", "id": "Zemeckis", "label": "Zemeckis", "shape": "dot", "size": 50, "title": "Zemeckis"}, {"color": "red", "id": "an effective actor", "label": "an effective actor", "shape": "dot", "size": 20, "title": "an effective actor"}, {"color": "red", "id": "with his eyes and body language", "label": "with his eyes and body language", "shape": "dot", "size": 20, "title": "with his eyes and body language"}, {"color": "#009a93", "id": "Leonardo DiCaprio", "label": "Leonardo DiCaprio", "shape": "dot", "size": 50, "title": "Leonardo DiCaprio"}, {"color": "#997733", "id": "My Big Fat Greek Wedding", "label": "My Big Fat Greek Wedding", "shape": "dot", "size": 30, "title": "My Big Fat Greek Wedding"}, {"color": "red", "id": "the Academy of Motion Picture Arts and Sciences", "label": "the Academy of Motion Picture Arts and Sciences", "shape": "dot", "size": 20, "title": "the Academy of Motion Picture Arts and Sciences"}, {"color": "#997733", "id": "The Simpsons Movie", "label": "The Simpsons Movie", "shape": "dot", "size": 30, "title": "The Simpsons Movie"}, {"color": "red", "id": "U.S. government", "label": "U.S. government", "shape": "dot", "size": 20, "title": "U.S. government"}, {"color": "red", "id": "a young man", "label": "a young man", "shape": "dot", "size": 20, "title": "a young man"}, {"color": "#997733", "id": "Angels \u0026 Demons", "label": "Angels \u0026 Demons", "shape": "dot", "size": 30, "title": "Angels \u0026 Demons"}, {"color": "#009a93", "id": "Robert Langdon", "label": "Robert Langdon", "shape": "dot", "size": 50, "title": "Robert Langdon"}, {"color": "red", "id": "an actor", "label": "an actor", "shape": "dot", "size": 20, "title": "an actor"}, {"color": "#997733", "id": "Where The Wild Things Are", "label": "Where The Wild Things Are", "shape": "dot", "size": 30, "title": "Where The Wild Things Are"}, {"color": "red", "id": "a movie theater", "label": "a movie theater", "shape": "dot", "size": 20, "title": "a movie theater"}, {"color": "#009a93", "id": "Tim Allen", "label": "Tim Allen", "shape": "dot", "size": 50, "title": "Tim Allen"}, {"color": "#009a93", "id": "John Ratzenberger", "label": "John Ratzenberger", "shape": "dot", "size": 50, "title": "John Ratzenberger"}, {"color": "red", "id": "BAFTA Award for Best Actor in a Leading Role", "label": "BAFTA Award for Best Actor in a Leading Role", "shape": "dot", "size": 20, "title": "BAFTA Award for Best Actor in a Leading Role"}, {"color": "red", "id": "Golden Globe Award for Best Actor \u2013 Motion Picture Drama", "label": "Golden Globe Award for Best Actor \u2013 Motion Picture Drama", "shape": "dot", "size": 20, "title": "Golden Globe Award for Best Actor \u2013 Motion Picture Drama"}, {"color": "red", "id": "Captain Richard Phillips", "label": "Captain Richard Phillips", "shape": "dot", "size": 20, "title": "Captain Richard Phillips"}, {"color": "#009a93", "id": "Barkhad Abdi", "label": "Barkhad Abdi", "shape": "dot", "size": 50, "title": "Barkhad Abdi"}, {"color": "red", "id": "Walt Disney", "label": "Walt Disney", "shape": "dot", "size": 20, "title": "Walt Disney"}, {"color": "#009a93", "id": "Emma Thompson", "label": "Emma Thompson", "shape": "dot", "size": 50, "title": "Emma Thompson"}, {"color": "red", "id": "Alan Bean Plus Four", "label": "Alan Bean Plus Four", "shape": "dot", "size": 20, "title": "Alan Bean Plus Four"}, {"color": "red", "id": "Carly Rae Jepsen\u0027s music video for \u0027I Really Like You\u0027", "label": "Carly Rae Jepsen\u0027s music video for \u0027I Really Like You\u0027", "shape": "dot", "size": 20, "title": "Carly Rae Jepsen\u0027s music video for \u0027I Really Like You\u0027"}, {"color": "red", "id": "lyrics of \u0027I Really Like You\u0027", "label": "lyrics of \u0027I Really Like You\u0027", "shape": "dot", "size": 20, "title": "lyrics of \u0027I Really Like You\u0027"}, {"color": "red", "id": "daily routine", "label": "daily routine", "shape": "dot", "size": 20, "title": "daily routine"}, {"color": "red", "id": "Alan Clay", "label": "Alan Clay", "shape": "dot", "size": 20, "title": "Alan Clay"}, {"color": "red", "id": "airline captain Chesley Sullenberger", "label": "airline captain Chesley Sullenberger", "shape": "dot", "size": 20, "title": "airline captain Chesley Sullenberger"}, {"color": "#009a93", "id": "Emma Watson", "label": "Emma Watson", "shape": "dot", "size": 50, "title": "Emma Watson"}, {"color": "#009a93", "id": "David S. Pumpkins", "label": "David S. Pumpkins", "shape": "dot", "size": 50, "title": "David S. Pumpkins"}, {"color": "red", "id": "Academy Award for Best Supporting Actor", "label": "Academy Award for Best Supporting Actor", "shape": "dot", "size": 20, "title": "Academy Award for Best Supporting Actor"}, {"color": "#eadcc5", "id": "Saturday Night Live", "label": "Saturday Night Live", "shape": "dot", "size": 40, "title": "Saturday Night Live"}, {"color": "red", "id": "his house", "label": "his house", "shape": "dot", "size": 20, "title": "his house"}, {"color": "#997733", "id": "Finch", "label": "Finch", "shape": "dot", "size": 30, "title": "Finch"}, {"color": "#009a93", "id": "Miguel Sapochnik", "label": "Miguel Sapochnik", "shape": "dot", "size": 50, "title": "Miguel Sapochnik"}, {"color": "#eadcc5", "id": "Apple TV+", "label": "Apple TV+", "shape": "dot", "size": 40, "title": "Apple TV+"}, {"color": "#997733", "id": "Dead Eyes", "label": "Dead Eyes", "shape": "dot", "size": 30, "title": "Dead Eyes"}, {"color": "red", "id": "2022", "label": "2022", "shape": "dot", "size": 20, "title": "2022"}, {"color": "#997733", "id": "Asteroid City", "label": "Asteroid City", "shape": "dot", "size": 30, "title": "Asteroid City"}, {"color": "#009a93", "id": "Jason Schwartzman", "label": "Jason Schwartzman", "shape": "dot", "size": 50, "title": "Jason Schwartzman"}, {"color": "#009a93", "id": "Scarlett Johansson", "label": "Scarlett Johansson", "shape": "dot", "size": 50, "title": "Scarlett Johansson"}, {"color": "#009a93", "id": "Adrien Brody", "label": "Adrien Brody", "shape": "dot", "size": 50, "title": "Adrien Brody"}, {"color": "#009a93", "id": "Jeffrey Wright", "label": "Jeffrey Wright", "shape": "dot", "size": 50, "title": "Jeffrey Wright"}, {"color": "#009a93", "id": "Bryan Cranston", "label": "Bryan Cranston", "shape": "dot", "size": 50, "title": "Bryan Cranston"}, {"color": "#997733", "id": "In the Garden of Beasts", "label": "In the Garden of Beasts", "shape": "dot", "size": 30, "title": "In the Garden of Beasts"}, {"color": "red", "id": "producer", "label": "producer", "shape": "dot", "size": 20, "title": "producer"}, {"color": "red", "id": "", "label": "", "shape": "dot", "size": 20, "title": ""}, {"color": "#009a93", "id": "James Stewart", "label": "James Stewart", "shape": "dot", "size": 50, "title": "James Stewart"}, {"color": "red", "id": "America\u0027s Dad", "label": "America\u0027s Dad", "shape": "dot", "size": 20, "title": "America\u0027s Dad"}, {"color": "red", "id": "Asteroid 12818 Tomhanks", "label": "Asteroid 12818 Tomhanks", "shape": "dot", "size": 20, "title": "Asteroid 12818 Tomhanks"}, {"color": "red", "id": "Channel 4\u0027s countdown of the 100 Greatest Movie Stars of All Time", "label": "Channel 4\u0027s countdown of the 100 Greatest Movie Stars of All Time", "shape": "dot", "size": 20, "title": "Channel 4\u0027s countdown of the 100 Greatest Movie Stars of All Time"}, {"color": "red", "id": "22 on VH1\u0027s list of the 200 Greatest Pop Culture Icons of All Time", "label": "22 on VH1\u0027s list of the 200 Greatest Pop Culture Icons of All Time", "shape": "dot", "size": 20, "title": "22 on VH1\u0027s list of the 200 Greatest Pop Culture Icons of All Time"}, {"color": "red", "id": "the real life story of a ship\u0027s captain hijacked by Somali pirates", "label": "the real life story of a ship\u0027s captain hijacked by Somali pirates", "shape": "dot", "size": 20, "title": "the real life story of a ship\u0027s captain hijacked by Somali pirates"}, {"color": "#997733", "id": "From Earth to the Moon", "label": "From Earth to the Moon", "shape": "dot", "size": 30, "title": "From Earth to the Moon"}, {"color": "red", "id": "a special category", "label": "a special category", "shape": "dot", "size": 20, "title": "a special category"}, {"color": "red", "id": "us", "label": "us", "shape": "dot", "size": 20, "title": "us"}, {"color": "red", "id": "we would do", "label": "we would do", "shape": "dot", "size": 20, "title": "we would do"}, {"color": "red", "id": "what we would do", "label": "what we would do", "shape": "dot", "size": 20, "title": "what we would do"}, {"color": "#009a93", "id": "Samantha Lewes", "label": "Samantha Lewes", "shape": "dot", "size": 50, "title": "Samantha Lewes"}, {"color": "red", "id": "Diane Lewes", "label": "Diane Lewes", "shape": "dot", "size": 20, "title": "Diane Lewes"}, {"color": "#9fb40a", "id": "church", "label": "church", "shape": "dot", "size": 20, "title": "church"}, {"color": "red", "id": "Type 2 diabetes", "label": "Type 2 diabetes", "shape": "dot", "size": 20, "title": "Type 2 diabetes"}, {"color": "red", "id": "Late Show with David Letterman", "label": "Late Show with David Letterman", "shape": "dot", "size": 20, "title": "Late Show with David Letterman"}, {"color": "#eadcc5", "id": "Aston Villa", "label": "Aston Villa", "shape": "dot", "size": 40, "title": "Aston Villa"}, {"color": "#009a93", "id": "Johannes Meffert", "label": "Johannes Meffert", "shape": "dot", "size": 50, "title": "Johannes Meffert"}, {"color": "red", "id": "Mefford", "label": "Mefford", "shape": "dot", "size": 20, "title": "Mefford"}, {"color": "#997733", "id": "Killing Lincoln", "label": "Killing Lincoln", "shape": "dot", "size": 30, "title": "Killing Lincoln"}, {"color": "#009a93", "id": "Prokopis Pavlopoulos", "label": "Prokopis Pavlopoulos", "shape": "dot", "size": 50, "title": "Prokopis Pavlopoulos"}, {"color": "#9fb40a", "id": "Greece", "label": "Greece", "shape": "dot", "size": 20, "title": "Greece"}, {"color": "red", "id": "people who suffered from the fire in Mati", "label": "people who suffered from the fire in Mati", "shape": "dot", "size": 20, "title": "people who suffered from the fire in Mati"}, {"color": "red", "id": "the issue in global media", "label": "the issue in global media", "shape": "dot", "size": 20, "title": "the issue in global media"}, {"color": "#009a93", "id": "Hillary Clinton", "label": "Hillary Clinton", "shape": "dot", "size": 50, "title": "Hillary Clinton"}, {"color": "red", "id": "an espresso machine", "label": "an espresso machine", "shape": "dot", "size": 20, "title": "an espresso machine"}, {"color": "#997733", "id": "Passport to the Universe", "label": "Passport to the Universe", "shape": "dot", "size": 30, "title": "Passport to the Universe"}, {"color": "#eadcc5", "id": "United States Army Rangers Hall of Fame", "label": "United States Army Rangers Hall of Fame", "shape": "dot", "size": 40, "title": "United States Army Rangers Hall of Fame"}, {"color": "red", "id": "captain", "label": "captain", "shape": "dot", "size": 20, "title": "captain"}, {"color": "red", "id": "an honor", "label": "an honor", "shape": "dot", "size": 20, "title": "an honor"}, {"color": "#eadcc5", "id": "D-Day Museum Capital Campaign", "label": "D-Day Museum Capital Campaign", "shape": "dot", "size": 40, "title": "D-Day Museum Capital Campaign"}, {"color": "#eadcc5", "id": "World War II Memorial Campaign", "label": "World War II Memorial Campaign", "shape": "dot", "size": 40, "title": "World War II Memorial Campaign"}, {"color": "#eadcc5", "id": "Hanx for the Troops", "label": "Hanx for the Troops", "shape": "dot", "size": 40, "title": "Hanx for the Troops"}, {"color": "#eadcc5", "id": "Uncommon Type", "label": "Uncommon Type", "shape": "dot", "size": 40, "title": "Uncommon Type"}, {"color": "red", "id": "IMDb", "label": "IMDb", "shape": "dot", "size": 20, "title": "IMDb"}, {"color": "#eadcc5", "id": "Rotten Tomatoes", "label": "Rotten Tomatoes", "shape": "dot", "size": 40, "title": "Rotten Tomatoes"}, {"color": "red", "id": "TCM Movie Database", "label": "TCM Movie Database", "shape": "dot", "size": 20, "title": "TCM Movie Database"}, {"color": "red", "id": "Internet Broadway Database", "label": "Internet Broadway Database", "shape": "dot", "size": 20, "title": "Internet Broadway Database"}, {"color": "#997733", "id": "the movie", "label": "the movie", "shape": "dot", "size": 30, "title": "the movie"}, {"color": "red", "id": "poor reviews", "label": "poor reviews", "shape": "dot", "size": 20, "title": "poor reviews"}, {"color": "red", "id": "175 Rotten Tomatoes reviews", "label": "175 Rotten Tomatoes reviews", "shape": "dot", "size": 20, "title": "175 Rotten Tomatoes reviews"}, {"color": "red", "id": "35% high ratings", "label": "35% high ratings", "shape": "dot", "size": 20, "title": "35% high ratings"}, {"color": "red", "id": "a movie", "label": "a movie", "shape": "dot", "size": 20, "title": "a movie"}, {"color": "red", "id": "major events in recent American history", "label": "major events in recent American history", "shape": "dot", "size": 20, "title": "major events in recent American history"}, {"color": "red", "id": "Roberts", "label": "Roberts", "shape": "dot", "size": 20, "title": "Roberts"}, {"color": "#dc9403", "id": "AFI Life Achievement Award", "label": "AFI Life Achievement Award", "shape": "dot", "size": 10, "title": "AFI Life Achievement Award"}, {"color": "red", "id": "Kennedy Center Honors Medallion", "label": "Kennedy Center Honors Medallion", "shape": "dot", "size": 20, "title": "Kennedy Center Honors Medallion"}, {"color": "#dc9403", "id": "Presidential Medal of Freedom", "label": "Presidential Medal of Freedom", "shape": "dot", "size": 10, "title": "Presidential Medal of Freedom"}, {"color": "red", "id": "World War II", "label": "World War II", "shape": "dot", "size": 20, "title": "World War II"}, {"color": "#009a93", "id": "Tom Brokaw", "label": "Tom Brokaw", "shape": "dot", "size": 50, "title": "Tom Brokaw"}, {"color": "#009a93", "id": "Gordon H. Mueller", "label": "Gordon H. Mueller", "shape": "dot", "size": 50, "title": "Gordon H. Mueller"}, {"color": "red", "id": "Emmy Award", "label": "Emmy Award", "shape": "dot", "size": 20, "title": "Emmy Award"}, {"color": "#009a93", "id": "He", "label": "He", "shape": "dot", "size": 50, "title": "He"}, {"color": "red", "id": "$200 million", "label": "$200 million", "shape": "dot", "size": 20, "title": "$200 million"}, {"color": "red", "id": "at least eight hours", "label": "at least eight hours", "shape": "dot", "size": 20, "title": "at least eight hours"}, {"color": "red", "id": "romantic comedy", "label": "romantic comedy", "shape": "dot", "size": 20, "title": "romantic comedy"}, {"color": "red", "id": "a widower", "label": "a widower", "shape": "dot", "size": 20, "title": "a widower"}, {"color": "#997733", "id": "The Shop Around the Corner", "label": "The Shop Around the Corner", "shape": "dot", "size": 30, "title": "The Shop Around the Corner"}, {"color": "#009a93", "id": "Stephen King", "label": "Stephen King", "shape": "dot", "size": 50, "title": "Stephen King"}, {"color": "#009a93", "id": "Frank Darabont", "label": "Frank Darabont", "shape": "dot", "size": 50, "title": "Frank Darabont"}, {"color": "red", "id": "Kevin Spacey", "label": "Kevin Spacey", "shape": "dot", "size": 20, "title": "Kevin Spacey"}, {"color": "#009a93", "id": "David Mitchell", "label": "David Mitchell", "shape": "dot", "size": 50, "title": "David Mitchell"}, {"color": "red", "id": "Mike Nichols", "label": "Mike Nichols", "shape": "dot", "size": 20, "title": "Mike Nichols"}, {"color": "red", "id": "nominations", "label": "nominations", "shape": "dot", "size": 20, "title": "nominations"}, {"color": "red", "id": "Maersk Alabama hijacking", "label": "Maersk Alabama hijacking", "shape": "dot", "size": 20, "title": "Maersk Alabama hijacking"}, {"color": "#009a93", "id": "Clint Eastwood", "label": "Clint Eastwood", "shape": "dot", "size": 50, "title": "Clint Eastwood"}, {"color": "red", "id": "Tom Hardy", "label": "Tom Hardy", "shape": "dot", "size": 20, "title": "Tom Hardy"}, {"color": "red", "id": "Baz Luhrmann", "label": "Baz Luhrmann", "shape": "dot", "size": 20, "title": "Baz Luhrmann"}, {"color": "red", "id": "series", "label": "series", "shape": "dot", "size": 20, "title": "series"}, {"color": "red", "id": "title character", "label": "title character", "shape": "dot", "size": 20, "title": "title character"}, {"color": "#997733", "id": "Toy Story 4", "label": "Toy Story 4", "shape": "dot", "size": 30, "title": "Toy Story 4"}, {"color": "red", "id": "Tony Award for Best Actor in a Play", "label": "Tony Award for Best Actor in a Play", "shape": "dot", "size": 20, "title": "Tony Award for Best Actor in a Play"}, {"color": "red", "id": "New York magazine", "label": "New York magazine", "shape": "dot", "size": 20, "title": "New York magazine"}, {"color": "red", "id": "( quote )", "label": "( quote )", "shape": "dot", "size": 20, "title": "( quote )"}, {"color": "red", "id": "Callimaco", "label": "Callimaco", "shape": "dot", "size": 20, "title": "Callimaco"}, {"color": "red", "id": "an all-female hotel scenario", "label": "an all-female hotel scenario", "shape": "dot", "size": 20, "title": "an all-female hotel scenario"}, {"color": "red", "id": "a TV show", "label": "a TV show", "shape": "dot", "size": 20, "title": "a TV show"}, {"color": "#997733", "id": "Bachelor Party", "label": "Bachelor Party", "shape": "dot", "size": 30, "title": "Bachelor Party"}, {"color": "red", "id": "a deeply felt, carefully nuanced performance that deserves an Oscar", "label": "a deeply felt, carefully nuanced performance that deserves an Oscar", "shape": "dot", "size": 20, "title": "a deeply felt, carefully nuanced performance that deserves an Oscar"}, {"color": "red", "id": "the September 11 television special America: A Tribute to Heroes", "label": "the September 11 television special America: A Tribute to Heroes", "shape": "dot", "size": 20, "title": "the September 11 television special America: A Tribute to Heroes"}, {"color": "red", "id": "the documentary Rescued From the Closet", "label": "the documentary Rescued From the Closet", "shape": "dot", "size": 20, "title": "the documentary Rescued From the Closet"}, {"color": "red", "id": "he is out in public", "label": "he is out in public", "shape": "dot", "size": 20, "title": "he is out in public"}, {"color": "red", "id": "Forbes\u0027 list", "label": "Forbes\u0027 list", "shape": "dot", "size": 20, "title": "Forbes\u0027 list"}, {"color": "red", "id": "Forbes\u0027 list of the top ten most powerful celebrities in the world", "label": "Forbes\u0027 list of the top ten most powerful celebrities in the world", "shape": "dot", "size": 20, "title": "Forbes\u0027 list of the top ten most powerful celebrities in the world"}, {"color": "red", "id": "Forbes\u0027 list in 2000", "label": "Forbes\u0027 list in 2000", "shape": "dot", "size": 20, "title": "Forbes\u0027 list in 2000"}, {"color": "red", "id": "Forbes\u0027 list in 2002", "label": "Forbes\u0027 list in 2002", "shape": "dot", "size": 20, "title": "Forbes\u0027 list in 2002"}, {"color": "red", "id": "Forbes\u0027 list in 2003", "label": "Forbes\u0027 list in 2003", "shape": "dot", "size": 20, "title": "Forbes\u0027 list in 2003"}, {"color": "red", "id": "the mystery", "label": "the mystery", "shape": "dot", "size": 20, "title": "the mystery"}, {"color": "red", "id": "an EV1", "label": "an EV1", "shape": "dot", "size": 20, "title": "an EV1"}, {"color": "red", "id": "Who Killed the Electric Car?", "label": "Who Killed the Electric Car?", "shape": "dot", "size": 20, "title": "Who Killed the Electric Car?"}, {"color": "#997733", "id": "Aptera 2 Series", "label": "Aptera 2 Series", "shape": "dot", "size": 30, "title": "Aptera 2 Series"}, {"color": "red", "id": "Tommy Lee Jones", "label": "Tommy Lee Jones", "shape": "dot", "size": 20, "title": "Tommy Lee Jones"}, {"color": "red", "id": "1996", "label": "1996", "shape": "dot", "size": 20, "title": "1996"}, {"color": "#eadcc5", "id": "Volunteers", "label": "Volunteers", "shape": "dot", "size": 40, "title": "Volunteers"}, {"color": "#009a93", "id": "Truman", "label": "Truman", "shape": "dot", "size": 50, "title": "Truman"}, {"color": "red", "id": "exclusive television development deal with HBO", "label": "exclusive television development deal with HBO", "shape": "dot", "size": 20, "title": "exclusive television development deal with HBO"}, {"color": "red", "id": "1998", "label": "1998", "shape": "dot", "size": 20, "title": "1998"}, {"color": "red", "id": "the Apollo program", "label": "the Apollo program", "shape": "dot", "size": 20, "title": "the Apollo program"}, {"color": "red", "id": "the miniseries", "label": "the miniseries", "shape": "dot", "size": 20, "title": "the miniseries"}, {"color": "red", "id": "person", "label": "person", "shape": "dot", "size": 20, "title": "person"}, {"color": "#009a93", "id": "His mother", "label": "His mother", "shape": "dot", "size": 50, "title": "His mother"}, {"color": "#eadcc5", "id": "Portuguese family", "label": "Portuguese family", "shape": "dot", "size": 40, "title": "Portuguese family"}, {"color": "red", "id": "Fraga", "label": "Fraga", "shape": "dot", "size": 20, "title": "Fraga"}, {"color": "#009a93", "id": "His parents", "label": "His parents", "shape": "dot", "size": 50, "title": "His parents"}, {"color": "red", "id": "in 1960", "label": "in 1960", "shape": "dot", "size": 20, "title": "in 1960"}, {"color": "#009a93", "id": "Sandra", "label": "Sandra", "shape": "dot", "size": 50, "title": "Sandra"}, {"color": "red", "id": "The person (their father)", "label": "The person (their father)", "shape": "dot", "size": 20, "title": "The person (their father)"}, {"color": "red", "id": "writer", "label": "writer", "shape": "dot", "size": 20, "title": "writer"}, {"color": "#009a93", "id": "Larry", "label": "Larry", "shape": "dot", "size": 50, "title": "Larry"}, {"color": "#009a93", "id": "Tom", "label": "Tom", "shape": "dot", "size": 50, "title": "Tom"}, {"color": "red", "id": "entomology professor at the University of Illinois Urbana-Champaign", "label": "entomology professor at the University of Illinois Urbana-Champaign", "shape": "dot", "size": 20, "title": "entomology professor at the University of Illinois Urbana-Champaign"}, {"color": "red", "id": "Their mother in Red Bluff, California", "label": "Their mother in Red Bluff, California", "shape": "dot", "size": 20, "title": "Their mother in Red Bluff, California"}, {"color": "red", "id": "me", "label": "me", "shape": "dot", "size": 20, "title": "me"}, {"color": "red", "id": "horribly, painfully, terribly shy", "label": "horribly, painfully, terribly shy", "shape": "dot", "size": 20, "title": "horribly, painfully, terribly shy"}, {"color": "#009a93", "id": "I", "label": "I", "shape": "dot", "size": 50, "title": "I"}, {"color": "red", "id": "funny captions", "label": "funny captions", "shape": "dot", "size": 20, "title": "funny captions"}, {"color": "red", "id": "filmstrips", "label": "filmstrips", "shape": "dot", "size": 20, "title": "filmstrips"}, {"color": "red", "id": "a real good kid", "label": "a real good kid", "shape": "dot", "size": 20, "title": "a real good kid"}, {"color": "red", "id": "a theater", "label": "a theater", "shape": "dot", "size": 20, "title": "a theater"}, {"color": "red", "id": "a ticket", "label": "a ticket", "shape": "dot", "size": 20, "title": "a ticket"}, {"color": "red", "id": "in the seat", "label": "in the seat", "shape": "dot", "size": 20, "title": "in the seat"}, {"color": "red", "id": "the program", "label": "the program", "shape": "dot", "size": 20, "title": "the program"}, {"color": "red", "id": "the play completely", "label": "the play completely", "shape": "dot", "size": 20, "title": "the play completely"}, {"color": "red", "id": "on the \u0027why \u0027?\u0027", "label": "on the \u0027why \u0027?\u0027", "shape": "dot", "size": 20, "title": "on the \u0027why \u0027?\u0027"}, {"color": "red", "id": "Oakland, California", "label": "Oakland, California", "shape": "dot", "size": 20, "title": "Oakland, California"}, {"color": "#dc9403", "id": "Heisman", "label": "Heisman", "shape": "dot", "size": 10, "title": "Heisman"}, {"color": "#eadcc5", "id": "California Golden Bears", "label": "California Golden Bears", "shape": "dot", "size": 40, "title": "California Golden Bears"}, {"color": "red", "id": "him", "label": "him", "shape": "dot", "size": 20, "title": "him"}, {"color": "red", "id": "a 1960s pop group", "label": "a 1960s pop group", "shape": "dot", "size": 20, "title": "a 1960s pop group"}, {"color": "#9fb40a", "id": "plays", "label": "plays", "shape": "dot", "size": 20, "title": "plays"}, {"color": "red", "id": "there", "label": "there", "shape": "dot", "size": 20, "title": "there"}, {"color": "#009a93", "id": "Brecht", "label": "Brecht", "shape": "dot", "size": 50, "title": "Brecht"}, {"color": "#009a93", "id": "Tennessee Williams", "label": "Tennessee Williams", "shape": "dot", "size": 50, "title": "Tennessee Williams"}, {"color": "#009a93", "id": "Ibsen", "label": "Ibsen", "shape": "dot", "size": 50, "title": "Ibsen"}, {"color": "red", "id": "Cleveland", "label": "Cleveland", "shape": "dot", "size": 20, "title": "Cleveland"}, {"color": "red", "id": "Ohio", "label": "Ohio", "shape": "dot", "size": 20, "title": "Ohio"}, {"color": "#997733", "id": "The Two Gentlemen of Verona", "label": "The Two Gentlemen of Verona", "shape": "dot", "size": 30, "title": "The Two Gentlemen of Verona"}, {"color": "#eadcc5", "id": "Riverside Shakespeare Company", "label": "Riverside Shakespeare Company", "shape": "dot", "size": 40, "title": "Riverside Shakespeare Company"}, {"color": "#997733", "id": "The Mandrake", "label": "The Mandrake", "shape": "dot", "size": 30, "title": "The Mandrake"}, {"color": "#009a93", "id": "Daniel Southern", "label": "Daniel Southern", "shape": "dot", "size": 50, "title": "Daniel Southern"}, {"color": "red", "id": "two seasons", "label": "two seasons", "shape": "dot", "size": 20, "title": "two seasons"}, {"color": "red", "id": "never strong", "label": "never strong", "shape": "dot", "size": 20, "title": "never strong"}, {"color": "red", "id": "high marks", "label": "high marks", "shape": "dot", "size": 20, "title": "high marks"}, {"color": "#009a93", "id": "Peter Scolari", "label": "Peter Scolari", "shape": "dot", "size": 50, "title": "Peter Scolari"}, {"color": "red", "id": "Him", "label": "Him", "shape": "dot", "size": 20, "title": "Him"}, {"color": "red", "id": "television", "label": "television", "shape": "dot", "size": 20, "title": "television"}, {"color": "#009a93", "id": "Ganz", "label": "Ganz", "shape": "dot", "size": 50, "title": "Ganz"}, {"color": "red", "id": "highest-grossing animated film", "label": "highest-grossing animated film", "shape": "dot", "size": 20, "title": "highest-grossing animated film"}, {"color": "#eadcc5", "id": "Sony Pictures", "label": "Sony Pictures", "shape": "dot", "size": 40, "title": "Sony Pictures"}, {"color": "#eadcc5", "id": "Disney+", "label": "Disney+", "shape": "dot", "size": 40, "title": "Disney+"}, {"color": "red", "id": "September 8, 2022", "label": "September 8, 2022", "shape": "dot", "size": 20, "title": "September 8, 2022"}, {"color": "red", "id": "2023 Cannes Film Festival", "label": "2023 Cannes Film Festival", "shape": "dot", "size": 20, "title": "2023 Cannes Film Festival"}, {"color": "red", "id": "June 2023", "label": "June 2023", "shape": "dot", "size": 20, "title": "June 2023"}, {"color": "#009a93", "id": "John Candy", "label": "John Candy", "shape": "dot", "size": 50, "title": "John Candy"}, {"color": "red", "id": "sex comedy", "label": "sex comedy", "shape": "dot", "size": 20, "title": "sex comedy"}, {"color": "#009a93", "id": "Elyse Keaton", "label": "Elyse Keaton", "shape": "dot", "size": 50, "title": "Elyse Keaton"}, {"color": "red", "id": "With Nothing in Common (1986)", "label": "With Nothing in Common (1986)", "shape": "dot", "size": 20, "title": "With Nothing in Common (1986)"}, {"color": "red", "id": "a young man\u0027s struggle with his father", "label": "a young man\u0027s struggle with his father", "shape": "dot", "size": 20, "title": "a young man\u0027s struggle with his father"}, {"color": "red", "id": "desires", "label": "desires", "shape": "dot", "size": 20, "title": "desires"}, {"color": "red", "id": "triples", "label": "triples", "shape": "dot", "size": 20, "title": "triples"}, {"color": "red", "id": "part", "label": "part", "shape": "dot", "size": 20, "title": "part"}, {"color": "red", "id": "what we were trying to say", "label": "what we were trying to say", "shape": "dot", "size": 20, "title": "what we were trying to say"}, {"color": "red", "id": "material", "label": "material", "shape": "dot", "size": 20, "title": "material"}, {"color": "#eadcc5", "id": "people", "label": "people", "shape": "dot", "size": 40, "title": "people"}, {"color": "red", "id": "relationships", "label": "relationships", "shape": "dot", "size": 20, "title": "relationships"}, {"color": "red", "id": "a guy", "label": "a guy", "shape": "dot", "size": 20, "title": "a guy"}, {"color": "red", "id": "a guy and his father", "label": "a guy and his father", "shape": "dot", "size": 20, "title": "a guy and his father"}, {"color": "red", "id": "his father", "label": "his father", "shape": "dot", "size": 20, "title": "his father"}, {"color": "red", "id": "Bob Santoli", "label": "Bob Santoli", "shape": "dot", "size": 20, "title": "Bob Santoli"}, {"color": "#009a93", "id": "Sally Field", "label": "Sally Field", "shape": "dot", "size": 50, "title": "Sally Field"}, {"color": "red", "id": "over $600 million", "label": "over $600 million", "shape": "dot", "size": 20, "title": "over $600 million"}, {"color": "red", "id": "enmeshed", "label": "enmeshed", "shape": "dot", "size": 20, "title": "enmeshed"}, {"color": "red", "id": "in a hit-and-run accident", "label": "in a hit-and-run accident", "shape": "dot", "size": 20, "title": "in a hit-and-run accident"}, {"color": "#997733", "id": "1989", "label": "1989", "shape": "dot", "size": 30, "title": "1989"}, {"color": "red", "id": "Tom Hanks\u0027 work", "label": "Tom Hanks\u0027 work", "shape": "dot", "size": 20, "title": "Tom Hanks\u0027 work"}, {"color": "red", "id": "less pretentiously fake and over the top", "label": "less pretentiously fake and over the top", "shape": "dot", "size": 20, "title": "less pretentiously fake and over the top"}, {"color": "red", "id": "someone over the radio airwaves", "label": "someone over the radio airwaves", "shape": "dot", "size": 20, "title": "someone over the radio airwaves"}, {"color": "red", "id": "a widower finds true love", "label": "a widower finds true love", "shape": "dot", "size": 20, "title": "a widower finds true love"}, {"color": "#009a93", "id": "Richard Schickel", "label": "Richard Schickel", "shape": "dot", "size": 50, "title": "Richard Schickel"}, {"color": "red", "id": "Tom Hanks\u0027 performance charming", "label": "Tom Hanks\u0027 performance charming", "shape": "dot", "size": 20, "title": "Tom Hanks\u0027 performance charming"}, {"color": "#009a93", "id": "Rawley Farnsworth", "label": "Rawley Farnsworth", "shape": "dot", "size": 50, "title": "Rawley Farnsworth"}, {"color": "red", "id": "gay", "label": "gay", "shape": "dot", "size": 20, "title": "gay"}, {"color": "#009a93", "id": "John Gilkerson", "label": "John Gilkerson", "shape": "dot", "size": 50, "title": "John Gilkerson"}, {"color": "red", "id": "grand, hopeful movies", "label": "grand, hopeful movies", "shape": "dot", "size": 20, "title": "grand, hopeful movies"}, {"color": "red", "id": "hope for their lot and their position in life", "label": "hope for their lot and their position in life", "shape": "dot", "size": 20, "title": "hope for their lot and their position in life"}, {"color": "#009a93", "id": "Spencer Tracy", "label": "Spencer Tracy", "shape": "dot", "size": 50, "title": "Spencer Tracy"}, {"color": "red", "id": "winning in 1937 and \u201838 for Captains Courageous and Boys Town", "label": "winning in 1937 and \u201838 for Captains Courageous and Boys Town", "shape": "dot", "size": 20, "title": "winning in 1937 and \u201838 for Captains Courageous and Boys Town"}, {"color": "red", "id": "Captains Courageous and Boys Town", "label": "Captains Courageous and Boys Town", "shape": "dot", "size": 20, "title": "Captains Courageous and Boys Town"}, {"color": "red", "id": "flights", "label": "flights", "shape": "dot", "size": 20, "title": "flights"}, {"color": "#009a93", "id": "Kevin Bacon", "label": "Kevin Bacon", "shape": "dot", "size": 50, "title": "Kevin Bacon"}, {"color": "red", "id": "cast", "label": "cast", "shape": "dot", "size": 20, "title": "cast"}, {"color": "#009a93", "id": "Bill Paxton", "label": "Bill Paxton", "shape": "dot", "size": 50, "title": "Bill Paxton"}, {"color": "#009a93", "id": "Gary Sinise", "label": "Gary Sinise", "shape": "dot", "size": 50, "title": "Gary Sinise"}, {"color": "#009a93", "id": "Ed Harris", "label": "Ed Harris", "shape": "dot", "size": 50, "title": "Ed Harris"}, {"color": "#009a93", "id": "Kathleen Quinlan", "label": "Kathleen Quinlan", "shape": "dot", "size": 50, "title": "Kathleen Quinlan"}, {"color": "red", "id": "Triples", "label": "Triples", "shape": "dot", "size": 20, "title": "Triples"}, {"color": "red", "id": "nine Academy Award nominations", "label": "nine Academy Award nominations", "shape": "dot", "size": 20, "title": "nine Academy Award nominations"}, {"color": "red", "id": "two awards", "label": "two awards", "shape": "dot", "size": 20, "title": "two awards"}, {"color": "red", "id": "the film", "label": "the film", "shape": "dot", "size": 20, "title": "the film"}, {"color": "#009a93", "id": "Neil Armstrong", "label": "Neil Armstrong", "shape": "dot", "size": 50, "title": "Neil Armstrong"}, {"color": "#9fb40a", "id": "Moon", "label": "Moon", "shape": "dot", "size": 20, "title": "Moon"}, {"color": "red", "id": "landings", "label": "landings", "shape": "dot", "size": 20, "title": "landings"}, {"color": "red", "id": "His next project", "label": "His next project", "shape": "dot", "size": 20, "title": "His next project"}, {"color": "red", "id": "another project", "label": "another project", "shape": "dot", "size": 20, "title": "another project"}, {"color": "red", "id": "For Saving Private Ryan", "label": "For Saving Private Ryan", "shape": "dot", "size": 20, "title": "For Saving Private Ryan"}, {"color": "red", "id": "It", "label": "It", "shape": "dot", "size": 20, "title": "It"}, {"color": "red", "id": "the film community, critics and the general public", "label": "the film community, critics and the general public", "shape": "dot", "size": 20, "title": "the film community, critics and the general public"}, {"color": "red", "id": "me going somehow", "label": "me going somehow", "shape": "dot", "size": 20, "title": "me going somehow"}, {"color": "#009a93", "id": "Spielberg", "label": "Spielberg", "shape": "dot", "size": 50, "title": "Spielberg"}, {"color": "red", "id": "Academy Award for direction", "label": "Academy Award for direction", "shape": "dot", "size": 20, "title": "Academy Award for direction"}, {"color": "red", "id": "it", "label": "it", "shape": "dot", "size": 20, "title": "it"}, {"color": "red", "id": "Spielberg\u0027s second Academy Award for direction", "label": "Spielberg\u0027s second Academy Award for direction", "shape": "dot", "size": 20, "title": "Spielberg\u0027s second Academy Award for direction"}, {"color": "red", "id": "Hanks another Best Actor nomination", "label": "Hanks another Best Actor nomination", "shape": "dot", "size": 20, "title": "Hanks another Best Actor nomination"}, {"color": "red", "id": "him (referring to the person in the sentence, i.e., the one getting involved in the film)", "label": "him (referring to the person in the sentence, i.e., the one getting involved in the film)", "shape": "dot", "size": 20, "title": "him (referring to the person in the sentence, i.e., the one getting involved in the film)"}, {"color": "red", "id": "Greek and Bulgarian", "label": "Greek and Bulgarian", "shape": "dot", "size": 20, "title": "Greek and Bulgarian"}, {"color": "#eadcc5", "id": "Greek Orthodox Church", "label": "Greek Orthodox Church", "shape": "dot", "size": 40, "title": "Greek Orthodox Church"}, {"color": "red", "id": "June 12, 2002", "label": "June 12, 2002", "shape": "dot", "size": 20, "title": "June 12, 2002"}, {"color": "red", "id": "movie", "label": "movie", "shape": "dot", "size": 20, "title": "movie"}, {"color": "red", "id": "all-encompassing desire", "label": "all-encompassing desire", "shape": "dot", "size": 20, "title": "all-encompassing desire"}, {"color": "red", "id": "feeling about wanting", "label": "feeling about wanting", "shape": "dot", "size": 20, "title": "feeling about wanting"}, {"color": "#009a93", "id": "Tom Tykwer", "label": "Tom Tykwer", "shape": "dot", "size": 50, "title": "Tom Tykwer"}, {"color": "red", "id": "The film", "label": "The film", "shape": "dot", "size": 20, "title": "The film"}, {"color": "red", "id": "award", "label": "award", "shape": "dot", "size": 20, "title": "award"}, {"color": "#eadcc5", "id": "Hollywood", "label": "Hollywood", "shape": "dot", "size": 40, "title": "Hollywood"}, {"color": "red", "id": "location", "label": "location", "shape": "dot", "size": 20, "title": "location"}, {"color": "red", "id": "US$750 million", "label": "US$750 million", "shape": "dot", "size": 20, "title": "US$750 million"}, {"color": "red", "id": "John H. Williams", "label": "John H. Williams", "shape": "dot", "size": 20, "title": "John H. Williams"}, {"color": "#997733", "id": "The Ant Bully", "label": "The Ant Bully", "shape": "dot", "size": 30, "title": "The Ant Bully"}, {"color": "#997733", "id": "Starter for Ten", "label": "Starter for Ten", "shape": "dot", "size": 30, "title": "Starter for Ten"}, {"color": "#009a93", "id": "Ken Burns", "label": "Ken Burns", "shape": "dot", "size": 50, "title": "Ken Burns"}, {"color": "red", "id": "itself", "label": "itself", "shape": "dot", "size": 20, "title": "itself"}, {"color": "#009a93", "id": "Charles Wilson", "label": "Charles Wilson", "shape": "dot", "size": 50, "title": "Charles Wilson"}, {"color": "red", "id": "Mike Nichols\u0027s Charlie Wilson\u0027s War", "label": "Mike Nichols\u0027s Charlie Wilson\u0027s War", "shape": "dot", "size": 20, "title": "Mike Nichols\u0027s Charlie Wilson\u0027s War"}, {"color": "red", "id": "Texas Congressman", "label": "Texas Congressman", "shape": "dot", "size": 20, "title": "Texas Congressman"}, {"color": "red", "id": "the young man", "label": "the young man", "shape": "dot", "size": 20, "title": "the young man"}, {"color": "red", "id": "Buck Howard", "label": "Buck Howard", "shape": "dot", "size": 20, "title": "Buck Howard"}, {"color": "red", "id": "the road manager (the young man)", "label": "the road manager (the young man)", "shape": "dot", "size": 20, "title": "the road manager (the young man)"}, {"color": "#009a93", "id": "John Malkovich", "label": "John Malkovich", "shape": "dot", "size": 50, "title": "John Malkovich"}, {"color": "red", "id": "character", "label": "character", "shape": "dot", "size": 20, "title": "character"}, {"color": "red", "id": "son", "label": "son", "shape": "dot", "size": 20, "title": "son"}, {"color": "red", "id": "son\u0027s career decision", "label": "son\u0027s career decision", "shape": "dot", "size": 20, "title": "son\u0027s career decision"}, {"color": "red", "id": "career decision", "label": "career decision", "shape": "dot", "size": 20, "title": "career decision"}, {"color": "red", "id": "Celebrity Jeopardy sketch", "label": "Celebrity Jeopardy sketch", "shape": "dot", "size": 20, "title": "Celebrity Jeopardy sketch"}, {"color": "#009a93", "id": "Spike Jonze", "label": "Spike Jonze", "shape": "dot", "size": 50, "title": "Spike Jonze"}, {"color": "#009a93", "id": "Maurice Sendak", "label": "Maurice Sendak", "shape": "dot", "size": 50, "title": "Maurice Sendak"}, {"color": "red", "id": "children\u0027s book", "label": "children\u0027s book", "shape": "dot", "size": 20, "title": "children\u0027s book"}, {"color": "#009a93", "id": "Alan Bean", "label": "Alan Bean", "shape": "dot", "size": 50, "title": "Alan Bean"}, {"color": "red", "id": "the short story", "label": "the short story", "shape": "dot", "size": 20, "title": "the short story"}, {"color": "red", "id": "the four friends", "label": "the four friends", "shape": "dot", "size": 20, "title": "the four friends"}, {"color": "red", "id": "the moon", "label": "the moon", "shape": "dot", "size": 20, "title": "the moon"}, {"color": "#009a93", "id": "Katy Waldman", "label": "Katy Waldman", "shape": "dot", "size": 50, "title": "Katy Waldman"}, {"color": "red", "id": "review", "label": "review", "shape": "dot", "size": 20, "title": "review"}, {"color": "#009a93", "id": "Carly Rae Jepsen", "label": "Carly Rae Jepsen", "shape": "dot", "size": 50, "title": "Carly Rae Jepsen"}, {"color": "red", "id": "song \u0027I Really Like You\u0027", "label": "song \u0027I Really Like You\u0027", "shape": "dot", "size": 20, "title": "song \u0027I Really Like You\u0027"}, {"color": "#009a93", "id": "Francis Gary Powers", "label": "Francis Gary Powers", "shape": "dot", "size": 50, "title": "Francis Gary Powers"}, {"color": "#9fb40a", "id": "Soviet Union", "label": "Soviet Union", "shape": "dot", "size": 20, "title": "Soviet Union"}, {"color": "#009a93", "id": "Rudolf Abel", "label": "Rudolf Abel", "shape": "dot", "size": 50, "title": "Rudolf Abel"}, {"color": "red", "id": "2019", "label": "2019", "shape": "dot", "size": 20, "title": "2019"}, {"color": "red", "id": "April 11, 2020", "label": "April 11, 2020", "shape": "dot", "size": 20, "title": "April 11, 2020"}, {"color": "red", "id": "Hanks\u0027 first television appearance", "label": "Hanks\u0027 first television appearance", "shape": "dot", "size": 20, "title": "Hanks\u0027 first television appearance"}, {"color": "#eadcc5", "id": "SNL", "label": "SNL", "shape": "dot", "size": 40, "title": "SNL"}, {"color": "red", "id": "COVID-19 pandemic", "label": "COVID-19 pandemic", "shape": "dot", "size": 20, "title": "COVID-19 pandemic"}, {"color": "red", "id": "different sketches", "label": "different sketches", "shape": "dot", "size": 20, "title": "different sketches"}, {"color": "red", "id": "prerecorded content", "label": "prerecorded content", "shape": "dot", "size": 20, "title": "prerecorded content"}, {"color": "red", "id": "the second to not be filmed at Studio 8H", "label": "the second to not be filmed at Studio 8H", "shape": "dot", "size": 20, "title": "the second to not be filmed at Studio 8H"}, {"color": "red", "id": "cast members", "label": "cast members", "shape": "dot", "size": 20, "title": "cast members"}, {"color": "red", "id": "sketches", "label": "sketches", "shape": "dot", "size": 20, "title": "sketches"}, {"color": "red", "id": "from their homes", "label": "from their homes", "shape": "dot", "size": 20, "title": "from their homes"}, {"color": "red", "id": "first episode", "label": "first episode", "shape": "dot", "size": 20, "title": "first episode"}, {"color": "red", "id": "episode", "label": "episode", "shape": "dot", "size": 20, "title": "episode"}, {"color": "red", "id": "miniseries", "label": "miniseries", "shape": "dot", "size": 20, "title": "miniseries"}, {"color": "#009a93", "id": "Paul Greengrass", "label": "Paul Greengrass", "shape": "dot", "size": 50, "title": "Paul Greengrass"}, {"color": "#009a93", "id": "David Rooney", "label": "David Rooney", "shape": "dot", "size": 50, "title": "David Rooney"}, {"color": "red", "id": "Hanks\u0027 performance", "label": "Hanks\u0027 performance", "shape": "dot", "size": 20, "title": "Hanks\u0027 performance"}, {"color": "red", "id": "his characterization", "label": "his characterization", "shape": "dot", "size": 20, "title": "his characterization"}, {"color": "red", "id": "this an enormously pleasurable performance to watch", "label": "this an enormously pleasurable performance to watch", "shape": "dot", "size": 20, "title": "this an enormously pleasurable performance to watch"}, {"color": "red", "id": "soulfulness and sorrow", "label": "soulfulness and sorrow", "shape": "dot", "size": 20, "title": "soulfulness and sorrow"}, {"color": "red", "id": "new depths of both kindness and regret", "label": "new depths of both kindness and regret", "shape": "dot", "size": 20, "title": "new depths of both kindness and regret"}, {"color": "red", "id": "revealing themselves", "label": "revealing themselves", "shape": "dot", "size": 20, "title": "revealing themselves"}, {"color": "#009a93", "id": "Connor Ratliff", "label": "Connor Ratliff", "shape": "dot", "size": 50, "title": "Connor Ratliff"}, {"color": "red", "id": "Late Night With Seth Meyers", "label": "Late Night With Seth Meyers", "shape": "dot", "size": 20, "title": "Late Night With Seth Meyers"}, {"color": "#009a93", "id": "Paul Scheer", "label": "Paul Scheer", "shape": "dot", "size": 50, "title": "Paul Scheer"}, {"color": "red", "id": "thrilling", "label": "thrilling", "shape": "dot", "size": 20, "title": "thrilling"}, {"color": "#009a93", "id": "Elvis Presley", "label": "Elvis Presley", "shape": "dot", "size": 50, "title": "Elvis Presley"}, {"color": "#009a93", "id": "Tom Parker", "label": "Tom Parker", "shape": "dot", "size": 50, "title": "Tom Parker"}, {"color": "red", "id": "Shooting", "label": "Shooting", "shape": "dot", "size": 20, "title": "Shooting"}, {"color": "red", "id": "Queensland, Australia", "label": "Queensland, Australia", "shape": "dot", "size": 20, "title": "Queensland, Australia"}, {"color": "red", "id": "Filming", "label": "Filming", "shape": "dot", "size": 20, "title": "Filming"}, {"color": "red", "id": "June 2022", "label": "June 2022", "shape": "dot", "size": 20, "title": "June 2022"}, {"color": "#eadcc5", "id": "Walt Disney Studios", "label": "Walt Disney Studios", "shape": "dot", "size": 40, "title": "Walt Disney Studios"}, {"color": "#997733", "id": "A Man Called Ove", "label": "A Man Called Ove", "shape": "dot", "size": 30, "title": "A Man Called Ove"}, {"color": "#eadcc5", "id": "NME", "label": "NME", "shape": "dot", "size": 40, "title": "NME"}, {"color": "red", "id": "March 2017", "label": "March 2017", "shape": "dot", "size": 20, "title": "March 2017"}, {"color": "#eadcc5", "id": "HBO", "label": "HBO", "shape": "dot", "size": 40, "title": "HBO"}, {"color": "red", "id": "none", "label": "none", "shape": "dot", "size": 20, "title": "none"}, {"color": "red", "id": "The series", "label": "The series", "shape": "dot", "size": 20, "title": "The series"}, {"color": "red", "id": "January 26, 2024", "label": "January 26, 2024", "shape": "dot", "size": 20, "title": "January 26, 2024"}, {"color": "red", "id": "Joe Wright", "label": "Joe Wright", "shape": "dot", "size": 20, "title": "Joe Wright"}, {"color": "red", "id": "2011 non fiction book", "label": "2011 non fiction book", "shape": "dot", "size": 20, "title": "2011 non fiction book"}, {"color": "#009a93", "id": "William Dodd", "label": "William Dodd", "shape": "dot", "size": 50, "title": "William Dodd"}, {"color": "#009a93", "id": "Robert Zemeckis", "label": "Robert Zemeckis", "shape": "dot", "size": 50, "title": "Robert Zemeckis"}, {"color": "#009a93", "id": "Richard McGuire", "label": "Richard McGuire", "shape": "dot", "size": 50, "title": "Richard McGuire"}, {"color": "#997733", "id": "Here", "label": "Here", "shape": "dot", "size": 30, "title": "Here"}, {"color": "red", "id": "French Legion of Honor", "label": "French Legion of Honor", "shape": "dot", "size": 20, "title": "French Legion of Honor"}, {"color": "#9fb40a", "id": "New York", "label": "New York", "shape": "dot", "size": 20, "title": "New York"}, {"color": "#eadcc5", "id": "National WWII Museum", "label": "National WWII Museum", "shape": "dot", "size": 40, "title": "National WWII Museum"}, {"color": "#eadcc5", "id": "American Museum of Natural History", "label": "American Museum of Natural History", "shape": "dot", "size": 40, "title": "American Museum of Natural History"}, {"color": "red", "id": "Fans", "label": "Fans", "shape": "dot", "size": 20, "title": "Fans"}, {"color": "red", "id": "Broadway performance", "label": "Broadway performance", "shape": "dot", "size": 20, "title": "Broadway performance"}, {"color": "red", "id": "$9.96 billion", "label": "$9.96 billion", "shape": "dot", "size": 20, "title": "$9.96 billion"}, {"color": "#009a93", "id": "Richard Strauss", "label": "Richard Strauss", "shape": "dot", "size": 50, "title": "Richard Strauss"}, {"color": "#997733", "id": "Also sprach Zarathustra", "label": "Also sprach Zarathustra", "shape": "dot", "size": 30, "title": "Also sprach Zarathustra"}, {"color": "red", "id": "Guest", "label": "Guest", "shape": "dot", "size": 20, "title": "Guest"}, {"color": "#009a93", "id": "William Manchester", "label": "William Manchester", "shape": "dot", "size": 50, "title": "William Manchester"}, {"color": "#997733", "id": "A World Lit Only by Fire", "label": "A World Lit Only by Fire", "shape": "dot", "size": 30, "title": "A World Lit Only by Fire"}, {"color": "red", "id": "Hermes 3000 typewriter and paper", "label": "Hermes 3000 typewriter and paper", "shape": "dot", "size": 20, "title": "Hermes 3000 typewriter and paper"}, {"color": "red", "id": "17 Emmy Awards", "label": "17 Emmy Awards", "shape": "dot", "size": 20, "title": "17 Emmy Awards"}, {"color": "#009a93", "id": "Roger Ebert", "label": "Roger Ebert", "shape": "dot", "size": 50, "title": "Roger Ebert"}, {"color": "red", "id": "of actors who are not \u0027bigger than life,\u0027 but somehow just like life\u2014people who we feel we know and understand, and are comfortable with", "label": "of actors who are not \u0027bigger than life,\u0027 but somehow just like life\u2014people who we feel we know and understand, and are comfortable with", "shape": "dot", "size": 20, "title": "of actors who are not \u0027bigger than life,\u0027 but somehow just like life\u2014people who we feel we know and understand, and are comfortable with"}, {"color": "red", "id": "actors", "label": "actors", "shape": "dot", "size": 20, "title": "actors"}, {"color": "red", "id": "our lives", "label": "our lives", "shape": "dot", "size": 20, "title": "our lives"}, {"color": "red", "id": "egos", "label": "egos", "shape": "dot", "size": 20, "title": "egos"}, {"color": "red", "id": "our fantasies", "label": "our fantasies", "shape": "dot", "size": 20, "title": "our fantasies"}, {"color": "red", "id": "them", "label": "them", "shape": "dot", "size": 20, "title": "them"}, {"color": "red", "id": "congratulated", "label": "congratulated", "shape": "dot", "size": 20, "title": "congratulated"}, {"color": "red", "id": "we", "label": "we", "shape": "dot", "size": 20, "title": "we"}, {"color": "red", "id": "ourselves", "label": "ourselves", "shape": "dot", "size": 20, "title": "ourselves"}, {"color": "#009a93", "id": "Buster Keaton", "label": "Buster Keaton", "shape": "dot", "size": 50, "title": "Buster Keaton"}, {"color": "#009a93", "id": "Henry Fonda", "label": "Henry Fonda", "shape": "dot", "size": 50, "title": "Henry Fonda"}, {"color": "#009a93", "id": "Robert Duvall", "label": "Robert Duvall", "shape": "dot", "size": 50, "title": "Robert Duvall"}, {"color": "#009a93", "id": "Gene Hackman", "label": "Gene Hackman", "shape": "dot", "size": 50, "title": "Gene Hackman"}, {"color": "#009a93", "id": "Colin", "label": "Colin", "shape": "dot", "size": 50, "title": "Colin"}, {"color": "red", "id": "They", "label": "They", "shape": "dot", "size": 20, "title": "They"}, {"color": "red", "id": "Harold", "label": "Harold", "shape": "dot", "size": 20, "title": "Harold"}, {"color": "red", "id": "Hamza", "label": "Hamza", "shape": "dot", "size": 20, "title": "Hamza"}, {"color": "#009a93", "id": "Elizabeth", "label": "Elizabeth", "shape": "dot", "size": 50, "title": "Elizabeth"}, {"color": "#009a93", "id": "Lewes", "label": "Lewes", "shape": "dot", "size": 50, "title": "Lewes"}, {"color": "red", "id": "2002", "label": "2002", "shape": "dot", "size": 20, "title": "2002"}, {"color": "red", "id": "49 years old", "label": "49 years old", "shape": "dot", "size": 20, "title": "49 years old"}, {"color": "red", "id": "bone cancer", "label": "bone cancer", "shape": "dot", "size": 20, "title": "bone cancer"}, {"color": "red", "id": "the grand unifying theory of all mankind", "label": "the grand unifying theory of all mankind", "shape": "dot", "size": 20, "title": "the grand unifying theory of all mankind"}, {"color": "red", "id": "grand unifying theory", "label": "grand unifying theory", "shape": "dot", "size": 20, "title": "grand unifying theory"}, {"color": "red", "id": "mystery", "label": "mystery", "shape": "dot", "size": 20, "title": "mystery"}, {"color": "red", "id": "why people are as they are", "label": "why people are as they are", "shape": "dot", "size": 20, "title": "why people are as they are"}, {"color": "red", "id": "why bad things happen to good people", "label": "why bad things happen to good people", "shape": "dot", "size": 20, "title": "why bad things happen to good people"}, {"color": "red", "id": "why good things happen to bad people", "label": "why good things happen to bad people", "shape": "dot", "size": 20, "title": "why good things happen to bad people"}, {"color": "red", "id": "John Hurt", "label": "John Hurt", "shape": "dot", "size": 20, "title": "John Hurt"}, {"color": "#009a93", "id": "Chet", "label": "Chet", "shape": "dot", "size": 50, "title": "Chet"}, {"color": "red", "id": "a rap song", "label": "a rap song", "shape": "dot", "size": 20, "title": "a rap song"}, {"color": "red", "id": "recurring roles", "label": "recurring roles", "shape": "dot", "size": 20, "title": "recurring roles"}, {"color": "red", "id": "CBS News medical contributor", "label": "CBS News medical contributor", "shape": "dot", "size": 20, "title": "CBS News medical contributor"}, {"color": "red", "id": "significant weight fluctuations might have contributed to the diagnosis", "label": "significant weight fluctuations might have contributed to the diagnosis", "shape": "dot", "size": 20, "title": "significant weight fluctuations might have contributed to the diagnosis"}, {"color": "red", "id": "the CBS News medical contributor", "label": "the CBS News medical contributor", "shape": "dot", "size": 20, "title": "the CBS News medical contributor"}, {"color": "red", "id": "significant weight fluctuations for various film roles might have contributed to the diagnosis", "label": "significant weight fluctuations for various film roles might have contributed to the diagnosis", "shape": "dot", "size": 20, "title": "significant weight fluctuations for various film roles might have contributed to the diagnosis"}, {"color": "red", "id": "significant weight fluctuations for various film roles such as A League of Their Own and Cast Away might have contributed to the diagnosis", "label": "significant weight fluctuations for various film roles such as A League of Their Own and Cast Away might have contributed to the diagnosis", "shape": "dot", "size": 20, "title": "significant weight fluctuations for various film roles such as A League of Their Own and Cast Away might have contributed to the diagnosis"}, {"color": "red", "id": "significant weight fluctuations", "label": "significant weight fluctuations", "shape": "dot", "size": 20, "title": "significant weight fluctuations"}, {"color": "red", "id": "the diagnosis", "label": "the diagnosis", "shape": "dot", "size": 20, "title": "the diagnosis"}, {"color": "red", "id": "maintaining a healthier diet", "label": "maintaining a healthier diet", "shape": "dot", "size": 20, "title": "maintaining a healthier diet"}, {"color": "red", "id": "avoiding film roles that require drastic weight changes", "label": "avoiding film roles that require drastic weight changes", "shape": "dot", "size": 20, "title": "avoiding film roles that require drastic weight changes"}, {"color": "#9fb40a", "id": "Oakland", "label": "Oakland", "shape": "dot", "size": 20, "title": "Oakland"}, {"color": "#9fb40a", "id": "Las Vegas", "label": "Las Vegas", "shape": "dot", "size": 20, "title": "Las Vegas"}, {"color": "red", "id": "Hesse, Germany", "label": "Hesse, Germany", "shape": "dot", "size": 20, "title": "Hesse, Germany"}, {"color": "#9fb40a", "id": "United States", "label": "United States", "shape": "dot", "size": 20, "title": "United States"}, {"color": "#9fb40a", "id": "Kentucky", "label": "Kentucky", "shape": "dot", "size": 20, "title": "Kentucky"}, {"color": "#9fb40a", "id": "Mati", "label": "Mati", "shape": "dot", "size": 20, "title": "Mati"}, {"color": "#9fb40a", "id": "Athens", "label": "Athens", "shape": "dot", "size": 20, "title": "Athens"}, {"color": "red", "id": "Obama", "label": "Obama", "shape": "dot", "size": 20, "title": "Obama"}, {"color": "#997733", "id": "The Road We\u0027ve Traveled", "label": "The Road We\u0027ve Traveled", "shape": "dot", "size": 30, "title": "The Road We\u0027ve Traveled"}, {"color": "red", "id": "None", "label": "None", "shape": "dot", "size": 20, "title": "None"}, {"color": "red", "id": "2016 presidential election", "label": "2016 presidential election", "shape": "dot", "size": 20, "title": "2016 presidential election"}, {"color": "red", "id": "marriage", "label": "marriage", "shape": "dot", "size": 20, "title": "marriage"}, {"color": "red", "id": "more American than", "label": "more American than", "shape": "dot", "size": 20, "title": "more American than"}, {"color": "red", "id": "voting one\u0027s conscience", "label": "voting one\u0027s conscience", "shape": "dot", "size": 20, "title": "voting one\u0027s conscience"}, {"color": "red", "id": "before it was recalled", "label": "before it was recalled", "shape": "dot", "size": 20, "title": "before it was recalled"}, {"color": "red", "id": "the documentary", "label": "the documentary", "shape": "dot", "size": 20, "title": "the documentary"}, {"color": "red", "id": "the story of", "label": "the story of", "shape": "dot", "size": 20, "title": "the story of"}, {"color": "#eadcc5", "id": "Elizabeth Dole Foundation", "label": "Elizabeth Dole Foundation", "shape": "dot", "size": 40, "title": "Elizabeth Dole Foundation"}, {"color": "red", "id": "Hidden Heroes Campaign", "label": "Hidden Heroes Campaign", "shape": "dot", "size": 20, "title": "Hidden Heroes Campaign"}, {"color": "red", "id": "campaign", "label": "campaign", "shape": "dot", "size": 20, "title": "campaign"}, {"color": "red", "id": "to inspire a national movement to more effectively support the military and veteran caregivers", "label": "to inspire a national movement to more effectively support the military and veteran caregivers", "shape": "dot", "size": 20, "title": "to inspire a national movement to more effectively support the military and veteran caregivers"}, {"color": "red", "id": "military and veteran caregivers", "label": "military and veteran caregivers", "shape": "dot", "size": 20, "title": "military and veteran caregivers"}, {"color": "red", "id": "caregivers", "label": "caregivers", "shape": "dot", "size": 20, "title": "caregivers"}, {"color": "red", "id": "White House Press Corps", "label": "White House Press Corps", "shape": "dot", "size": 20, "title": "White House Press Corps"}, {"color": "red", "id": "donation", "label": "donation", "shape": "dot", "size": 20, "title": "donation"}, {"color": "red", "id": "Especially", "label": "Especially", "shape": "dot", "size": 20, "title": "Especially"}, {"color": "red", "id": "the truth part", "label": "the truth part", "shape": "dot", "size": 20, "title": "the truth part"}, {"color": "#009a93", "id": "Joe Biden", "label": "Joe Biden", "shape": "dot", "size": 50, "title": "Joe Biden"}, {"color": "red", "id": "Context", "label": "Context", "shape": "dot", "size": 20, "title": "Context"}, {"color": "red", "id": "The Making of Another Major Motion Picture Masterpiece", "label": "The Making of Another Major Motion Picture Masterpiece", "shape": "dot", "size": 20, "title": "The Making of Another Major Motion Picture Masterpiece"}, {"color": "#009a93", "id": "Wernher von Braun", "label": "Wernher von Braun", "shape": "dot", "size": 50, "title": "Wernher von Braun"}, {"color": "red", "id": "Board of governors", "label": "Board of governors", "shape": "dot", "size": 20, "title": "Board of governors"}, {"color": "red", "id": "the Moon", "label": "the Moon", "shape": "dot", "size": 20, "title": "the Moon"}, {"color": "#eadcc5", "id": "Rose Center for Earth and Space", "label": "Rose Center for Earth and Space", "shape": "dot", "size": 40, "title": "Rose Center for Earth and Space"}, {"color": "#9fb40a", "id": "Hayden Planetarium", "label": "Hayden Planetarium", "shape": "dot", "size": 20, "title": "Hayden Planetarium"}, {"color": "red", "id": "number one on the App Store", "label": "number one on the App Store", "shape": "dot", "size": 20, "title": "number one on the App Store"}, {"color": "red", "id": "veterans and military families", "label": "veterans and military families", "shape": "dot", "size": 20, "title": "veterans and military families"}, {"color": "red", "id": "novel", "label": "novel", "shape": "dot", "size": 20, "title": "novel"}, {"color": "red", "id": "May 2023", "label": "May 2023", "shape": "dot", "size": 20, "title": "May 2023"}, {"color": "red", "id": "of a person", "label": "of a person", "shape": "dot", "size": 20, "title": "of a person"}, {"color": "red", "id": "David Gardner", "label": "David Gardner", "shape": "dot", "size": 20, "title": "David Gardner"}, {"color": "red", "id": "Tom Hanks: The Unauthorized Biography", "label": "Tom Hanks: The Unauthorized Biography", "shape": "dot", "size": 20, "title": "Tom Hanks: The Unauthorized Biography"}, {"color": "red", "id": "Tom Hanks: Enigma", "label": "Tom Hanks: Enigma", "shape": "dot", "size": 20, "title": "Tom Hanks: Enigma"}, {"color": "red", "id": "Lee Pfeiffer", "label": "Lee Pfeiffer", "shape": "dot", "size": 20, "title": "Lee Pfeiffer"}, {"color": "red", "id": "The Films of Tom Hanks", "label": "The Films of Tom Hanks", "shape": "dot", "size": 20, "title": "The Films of Tom Hanks"}, {"color": "red", "id": "Julie Salamon", "label": "Julie Salamon", "shape": "dot", "size": 20, "title": "Julie Salamon"}, {"color": "red", "id": "The Devil\u0027s Candy: The Bonfire of the Vanities Goes to Hollywood", "label": "The Devil\u0027s Candy: The Bonfire of the Vanities Goes to Hollywood", "shape": "dot", "size": 20, "title": "The Devil\u0027s Candy: The Bonfire of the Vanities Goes to Hollywood"}, {"color": "red", "id": "Roy Trakin", "label": "Roy Trakin", "shape": "dot", "size": 20, "title": "Roy Trakin"}, {"color": "red", "id": "Tom Hanks: Journey to Stardom", "label": "Tom Hanks: Journey to Stardom", "shape": "dot", "size": 20, "title": "Tom Hanks: Journey to Stardom"}, {"color": "red", "id": "Rosemary Wallner", "label": "Rosemary Wallner", "shape": "dot", "size": 20, "title": "Rosemary Wallner"}, {"color": "red", "id": "Tom Hanks: Academy Award-Winning Actor", "label": "Tom Hanks: Academy Award-Winning Actor", "shape": "dot", "size": 20, "title": "Tom Hanks: Academy Award-Winning Actor"}]);
edges = new vis.DataSet([{"from": "Thomas Jeffrey Hanks", "title": "is an", "to": "actor and filmmaker", "width": 1}, {"from": "actor and filmmaker", "title": "became an", "to": "Jim", "width": 1}, {"from": "he", "title": "is one of the most popular and recognizable film stars", "to": "worldwide", "width": 1}, {"from": "he", "title": "is regarded as", "to": "an American cultural icon", "width": 1}, {"from": "he", "title": "has received", "to": "the AFI Life Achievement Award", "width": 1}, {"from": "he", "title": "has received", "to": "the Kennedy Center Honor", "width": 1}, {"from": "he", "title": "has received", "to": "the Presidential Medal of Freedom", "width": 1}, {"from": "he", "title": "has received", "to": "the French Legion of Honor", "width": 1}, {"from": "he", "title": "has received", "to": "the Golden Globe Cecil B. DeMille Award", "width": 1}, {"from": "he", "title": "was unpopular with", "to": "students", "width": 1}, {"from": "he", "title": "will become", "to": "a movie star", "width": 1}, {"from": "he", "title": "had signed an agreement with", "to": "The Walt Disney Studios", "width": 1}, {"from": "he", "title": "had starred in", "to": "a talent pool", "width": 1}, {"from": "he", "title": "portrayed", "to": "a greedy Wall Street figure", "width": 1}, {"from": "he", "title": "is the location of", "to": "Philadelphia", "width": 1}, {"from": "he", "title": "played the role of", "to": "a gay lawyer with AIDS", "width": 1}, {"from": "he", "title": "sued his firm for", "to": "discrimination", "width": 1}, {"from": "he", "title": "revealed that two people with whom he was close", "to": "Rawley Farnsworth and his former classmate John Gilkerson", "width": 1}, {"from": "he", "title": "played the role of", "to": "a music producer", "width": 1}, {"from": "he", "title": "teamed up with", "to": "Sam Mendes", "width": 1}, {"from": "he", "title": "played an anti-hero role as", "to": "hitman on the run with his son", "width": 1}, {"from": "he", "title": "executive produced", "to": "Mamma Mia!", "width": 1}, {"from": "he", "title": "made his 10th appearance on", "to": "NBC\u0027s Saturday Night Live", "width": 1}, {"from": "he", "title": "impersonated", "to": "himself", "width": 1}, {"from": "he", "title": "starred in", "to": "Larry Crowne", "width": 1}, {"from": "he", "title": "starred opposite", "to": "Julia Roberts", "width": 1}, {"from": "he", "title": "starred in", "to": "Extremely Loud and Incredibly Close", "width": 1}, {"from": "he", "title": "voiced", "to": "the character Cleveland Carr", "width": 1}, {"from": "he", "title": "created", "to": "Electric City", "width": 1}, {"from": "he", "title": "built plastic models of", "to": "rockets", "width": 1}, {"from": "he", "title": "watched", "to": "live broadcasts of space missions", "width": 1}, {"from": "he", "title": "was starring in", "to": "Nora Ephron\u0027s Lucky Guy", "width": 1}, {"from": "he", "title": "had", "to": "crowds of 300 fans waiting for a glimpse of him after every performance", "width": 1}, {"from": "he", "title": "has made", "to": "lifestyle changes", "width": 1}, {"from": "he", "title": "apologized for", "to": "the remark", "width": 1}, {"from": "he", "title": "said", "to": "nothing", "width": 1}, {"from": "worldwide", "title": "are", "to": "his films", "width": 1}, {"from": "Hanks", "title": "is the fourth-highest-grossing American", "to": "actor", "width": 1}, {"from": "Hanks", "title": "have grossed", "to": "$4.9 billion nationally", "width": 1}, {"from": "Hanks", "title": "have grossed", "to": "$9.96 billion worldwide", "width": 1}, {"from": "Hanks", "title": "made his breakthrough with", "to": "leading roles in a series of comedies", "width": 1}, {"from": "Hanks", "title": "starred in", "to": "Splash", "width": 1}, {"from": "Hanks", "title": "starred in", "to": "The Money Pit", "width": 1}, {"from": "Hanks", "title": "starred in", "to": "Big", "width": 1}, {"from": "Hanks", "title": "starred in", "to": "A League of Their Own", "width": 1}, {"from": "Hanks", "title": "collaborated with", "to": "Steven Spielberg", "width": 1}, {"from": "Hanks", "title": "featured", "to": "Saving Private Ryan", "width": 1}, {"from": "Hanks", "title": "featured", "to": "Catch Me If You Can", "width": 1}, {"from": "Hanks", "title": "appeared in", "to": "The Terminal", "width": 1}, {"from": "Hanks", "title": "featured", "to": "Bridge of Spies", "width": 1}, {"from": "Hanks", "title": "featured", "to": "The Post", "width": 1}, {"from": "Hanks", "title": "has work as a producer on", "to": "Band of Brothers", "width": 1}, {"from": "Hanks", "title": "has work as a producer on", "to": "The Pacific", "width": 1}, {"from": "Hanks", "title": "featured in", "to": "Masters of the Air", "width": 1}, {"from": "Hanks", "title": "has won", "to": "seven Primetime Emmy Awards", "width": 1}, {"from": "Hanks", "title": "has work as a producer on", "to": "From the Earth to the Moon", "width": 1}, {"from": "Hanks", "title": "has work as a producer on", "to": "John Adams", "width": 1}, {"from": "Hanks", "title": "has work as a producer on", "to": "Game Change", "width": 1}, {"from": "Hanks", "title": "has work as a producer on", "to": "Olive Kitteridge", "width": 1}, {"from": "Hanks", "title": "marries", "to": "Rita Wilson", "width": 1}, {"from": "Hanks", "title": "converts to", "to": "Greek Orthodox Christianity", "width": 1}, {"from": "Hanks", "title": "acted in", "to": "South Pacific", "width": 1}, {"from": "Hanks", "title": "attended", "to": "Skyline High School", "width": 1}, {"from": "Hanks", "title": "grew up in", "to": "Bay Area", "width": 1}, {"from": "Hanks", "title": "has movie memories of", "to": "Alameda Theatre", "width": 1}, {"from": "Hanks", "title": "studied", "to": "theater", "width": 1}, {"from": "Hanks", "title": "met", "to": "Great Lakes Theater Festival", "width": 1}, {"from": "Hanks", "title": "became an intern at", "to": "the festival", "width": 1}, {"from": "Hanks", "title": "was a student at", "to": "college", "width": 1}, {"from": "Hanks", "title": "was named", "to": "one of the Top 10 College Dropouts by Time magazine", "width": 1}, {"from": "Hanks", "title": "is a college dropout", "to": "Time magazine", "width": 1}, {"from": "Hanks", "title": "partnered with", "to": "Scolari", "width": 1}, {"from": "Hanks", "title": "was on", "to": "Make Me Laugh", "width": 1}, {"from": "Hanks", "title": "moved to", "to": "Los Angeles", "width": 1}, {"from": "Hanks", "title": "made a guest appearance on", "to": "Happy Days", "width": 1}, {"from": "Hanks", "title": "met", "to": "Lowell Ganz", "width": 1}, {"from": "Hanks", "title": "met", "to": "Babaloo Mandel", "width": 1}, {"from": "Hanks", "title": "consider", "to": "Howard", "width": 1}, {"from": "Hanks", "title": "performed in", "to": "film", "width": 1}, {"from": "Hanks", "title": "was considered for the role of", "to": "the main character\u0027s wisecracking brother", "width": 1}, {"from": "Hanks", "title": "made a guest appearance in", "to": "Family Ties", "width": 1}, {"from": "Hanks", "title": "is Elyse Keaton\u0027s brother", "to": "Ned Donnelly", "width": 1}, {"from": "Hanks", "title": "played the role of", "to": "Elyse Keaton\u0027s brother Ned Donnelly", "width": 1}, {"from": "Hanks", "title": "commented", "to": "Rolling Stone", "width": 1}, {"from": "Hanks", "title": "talked about", "to": "experience", "width": 1}, {"from": "Hanks", "title": "talked about", "to": "movies", "width": 1}, {"from": "Hanks", "title": "rose", "to": "stature in the film industry", "width": 1}, {"from": "Hanks", "title": "had", "to": "flops", "width": 1}, {"from": "Hanks", "title": "had", "to": "moderate success with the movie Dragnet", "width": 1}, {"from": "Hanks", "title": "established as a major Hollywood talent", "to": "both as a box office draw and within the industry as an actor", "width": 1}, {"from": "Hanks", "title": "earned a nomination for", "to": "Academy Award for Best Actor", "width": 1}, {"from": "Hanks", "title": "starred in", "to": "The \u0027Burbs", "width": 1}, {"from": "Hanks", "title": "starred in", "to": "Joe Versus the Volcano", "width": 1}, {"from": "Hanks", "title": "starred in", "to": "The Bonfire of the Vanities", "width": 1}, {"from": "Hanks", "title": "is the only successful film of the period of", "to": "Turner \u0026 Hooch", "width": 1}, {"from": "Hanks", "title": "said", "to": "that his acting in earlier roles had not not great", "width": 1}, {"from": "Hanks", "title": "had not not great", "to": "acting in earlier roles", "width": 1}, {"from": "Hanks", "title": "improved", "to": "later", "width": 1}, {"from": "Hanks", "title": "began in", "to": "1993", "width": 1}, {"from": "Hanks", "title": "starred in", "to": "Sleepless in Seattle", "width": 1}, {"from": "Hanks", "title": "attended", "to": "Philadelphia", "width": 1}, {"from": "Hanks", "title": "co-starred with", "to": "Meg Ryan", "width": 1}, {"from": "Hanks", "title": "lost", "to": "35 pounds", "width": 1}, {"from": "Hanks", "title": "thinned", "to": "his hair", "width": 1}, {"from": "Hanks", "title": "appeared", "to": "sickly", "width": 1}, {"from": "Hanks", "title": "plays", "to": "a character", "width": 1}, {"from": "Hanks", "title": "makes sure", "to": "that he plays a character", "width": 1}, {"from": "Hanks", "title": "won", "to": "second Best Actor Academy Award", "width": 1}, {"from": "Hanks", "title": "won", "to": "Best Actor Oscars", "width": 1}, {"from": "Hanks", "title": "won", "to": "consecutive Best Actor Oscars", "width": 1}, {"from": "Hanks", "title": "played a role in", "to": "Forrest Gump", "width": 1}, {"from": "Hanks", "title": "was the same age as", "to": "Tracy", "width": 1}, {"from": "Hanks", "title": "received an Academy Award", "to": "Academy Award", "width": 1}, {"from": "Hanks", "title": "made his directing debut with", "to": "That Thing You Do!", "width": 1}, {"from": "Hanks", "title": "earned", "to": "Best Actor nomination", "width": 1}, {"from": "Hanks", "title": "starred in", "to": "Cast Away", "width": 1}, {"from": "Hanks", "title": "initiated a legal action against", "to": "Gold Circle Films", "width": 1}, {"from": "Hanks", "title": "were conferred honorary citizenship for", "to": "Wilson", "width": 1}, {"from": "Hanks", "title": "initiated a legal action with", "to": "Gary Goetzman", "width": 1}, {"from": "Hanks", "title": "initiated a legal action with", "to": "Nia Vardalos", "width": 1}, {"from": "Hanks", "title": "received", "to": "American Film Institute\u0027s Life Achievement Award", "width": 1}, {"from": "Hanks", "title": "appeared in", "to": "The Ladykillers", "width": 1}, {"from": "Hanks", "title": "played multiple motion capture roles", "to": "The Polar Express", "width": 1}, {"from": "Hanks", "title": "mentioned in an interview of", "to": "USA Weekend", "width": 1}, {"from": "Hanks", "title": "next starred in", "to": "The Da Vinci Code", "width": 1}, {"from": "Hanks", "title": "did voice work for", "to": "The War", "width": 1}, {"from": "Hanks", "title": "read", "to": "excerpts from columns by Al McIntosh", "width": 1}, {"from": "Hanks", "title": "wrote", "to": "first published short story", "width": 1}, {"from": "Hanks", "title": "said", "to": "he has always been fascinated by space", "width": 1}, {"from": "Hanks", "title": "plays the role of", "to": "Sheriff Woody", "width": 1}, {"from": "Hanks", "title": "had two films", "to": "released in 2020", "width": 1}, {"from": "Hanks", "title": "wrote the screenplay for", "to": "Greyhound", "width": 1}, {"from": "Hanks", "title": "built a career out of", "to": "playing thoroughly decent men", "width": 1}, {"from": "Hanks", "title": "is cast as", "to": "thoroughly decent men", "width": 1}, {"from": "Hanks", "title": "fired", "to": "Ratliff", "width": 1}, {"from": "Hanks", "title": "believed", "to": "Ratliff had \u0027dead eyes\u0027", "width": 1}, {"from": "Hanks", "title": "is in", "to": "Pinocchio", "width": 1}, {"from": "Hanks", "title": "portrays", "to": "Geppetto", "width": 1}, {"from": "Hanks", "title": "stared in", "to": "A Man Called Otto", "width": 1}, {"from": "Hanks", "title": "will star in", "to": "the feature adaptation of Here", "width": 1}, {"from": "Hanks", "title": "has received", "to": "six Academy Award nominations", "width": 1}, {"from": "Hanks", "title": "was nominated for", "to": "Best Actor for Philadelphia", "width": 1}, {"from": "Hanks", "title": "was nominated for", "to": "Best Actor for Forrest Gump", "width": 1}, {"from": "Hanks", "title": "won", "to": "Academy Award for Best Actor for Philadelphia", "width": 1}, {"from": "Hanks", "title": "won", "to": "Academy Award for Best Actor for Forrest Gump", "width": 1}, {"from": "Hanks", "title": "received two consecutive wins", "to": "Academy Award in 1993 and 1994", "width": 1}, {"from": "Hanks", "title": "received a Tony Award nomination for", "to": "Best Actor in a Play", "width": 1}, {"from": "Hanks", "title": "performed in", "to": "Lucky Guy", "width": 1}, {"from": "Hanks", "title": "performed in", "to": "Nora Ephron\u0027s play", "width": 1}, {"from": "Hanks", "title": "performed in", "to": "Nora Ephron\u0027s Lucky Guy", "width": 1}, {"from": "Hanks", "title": "received 12 Primetime Emmy Award nominations for", "to": "his work on television", "width": 1}, {"from": "Hanks", "title": "has work as a producer on", "to": "various limited series and television films", "width": 1}, {"from": "Hanks", "title": "is an all-time box office star", "to": "in North America", "width": 1}, {"from": "Hanks", "title": "has a total gross", "to": "of over $4.9 billion at the North American box office", "width": 1}, {"from": "Hanks", "title": "has an average", "to": "of $100.8 million per film", "width": 1}, {"from": "Hanks", "title": "was the guest on", "to": "BBC Radio 4\u0027s Desert Island Discs", "width": 1}, {"from": "Hanks", "title": "was on", "to": "May 8, 2016", "width": 1}, {"from": "Hanks", "title": "was interviewed by", "to": "Terry Gross", "width": 1}, {"from": "Hanks", "title": "was interviewed on", "to": "Fresh Air", "width": 1}, {"from": "Hanks", "title": "was interviewed on", "to": "WHYY-FM", "width": 1}, {"from": "Hanks", "title": "shared anecdotes about", "to": "his acting career", "width": 1}, {"from": "Hanks", "title": "must be", "to": "a fundamentally good person", "width": 1}, {"from": "Hanks", "title": "be", "to": "an even better actor than we think", "width": 1}, {"from": "Hanks", "title": "converted to", "to": "her faith", "width": 1}, {"from": "Hanks", "title": "have", "to": "sons", "width": 1}, {"from": "Hanks", "title": "have", "to": "son2", "width": 1}, {"from": "Hanks", "title": "is a fan of", "to": "Oakland Athletics", "width": 1}, {"from": "Hanks", "title": "is a fan of", "to": "Raiders", "width": 1}, {"from": "Hanks", "title": "is a relative of", "to": "Abraham Lincoln", "width": 1}, {"from": "Hanks", "title": "were conferred honorary citizenship for", "to": "bringing global attention and appealing for aid after a devastating wildfire", "width": 1}, {"from": "Hanks", "title": "were conferred honorary citizenship for", "to": "a devastating wildfire", "width": 1}, {"from": "Hanks", "title": "were conferred honorary citizenship for", "to": "their role in bringing global attention and appealing for aid after a devastating wildfire", "width": 1}, {"from": "Hanks", "title": "were conferred honorary citizenship for", "to": "their children", "width": 1}, {"from": "Hanks", "title": "handed over a Greek passport to", "to": "Kyriakos Mitsotakis", "width": 1}, {"from": "Hanks", "title": "has donated to", "to": "Democratic politicians", "width": 1}, {"from": "Hanks", "title": "endorsed", "to": "Barack Obama", "width": 1}, {"from": "Hanks", "title": "opposes", "to": "Proposition 8", "width": 1}, {"from": "Hanks", "title": "raised", "to": "US$44 million", "width": 1}, {"from": "Hanks", "title": "campaigned against", "to": "the proposition", "width": 1}, {"from": "Hanks", "title": "called", "to": "supporters of Proposition 8", "width": 1}, {"from": "Hanks", "title": "criticized", "to": "LDS Church members", "width": 1}, {"from": "Hanks", "title": "is an investor in", "to": "electric vehicles", "width": 1}, {"from": "Hanks", "title": "owns", "to": "Toyota RAV4 EV", "width": 1}, {"from": "Hanks", "title": "owns", "to": "AC Propulsion eBox", "width": 1}, {"from": "Hanks", "title": "is chaired by", "to": "Hidden Heroes Campaign of the Elizabeth Dole Foundation", "width": 1}, {"from": "Hanks", "title": "wanted to be", "to": "an astronaut", "width": 1}, {"from": "Hanks", "title": "is a member of", "to": "National Space Society", "width": 1}, {"from": "Hanks", "title": "is the subject of", "to": "Magnificent Desolation: Walking on the Moon 3D", "width": 1}, {"from": "Hanks", "title": "received", "to": "Douglas S. Morrow Public Outreach Award", "width": 1}, {"from": "Hanks", "title": "awarded", "to": "Space Foundation", "width": 1}, {"from": "Hanks", "title": "attended", "to": "Rock and Roll Hall of Fame", "width": 1}, {"from": "Hanks", "title": "inducted", "to": "The Dave Clark Five", "width": 1}, {"from": "Hanks", "title": "uses almost daily", "to": "manual typewriters", "width": 1}, {"from": "Hanks", "title": "released", "to": "Hanx Writer", "width": 1}, {"from": "Hanks", "title": "contracted", "to": "COVID-19", "width": 1}, {"from": "Hanks", "title": "donated", "to": "blood antibodies", "width": 1}, {"from": "Hanks", "title": "married to", "to": "his wife", "width": 1}, {"from": "actor", "title": "is an actor", "to": "Tom Hanks", "width": 1}, {"from": "Splash", "title": "was writing", "to": "Lowell Ganz", "width": 1}, {"from": "Splash", "title": "was writing", "to": "Babaloo Mandel", "width": 1}, {"from": "Splash", "title": "was to be directed by", "to": "Ron Howard", "width": 1}, {"from": "The Money Pit", "title": "is similar to", "to": "a guy and his house", "width": 1}, {"from": "Big", "title": "is a movie", "to": "Fantasy Comedy", "width": 1}, {"from": "Big", "title": "", "to": "Punchline", "width": 1}, {"from": "A League of Their Own", "title": "directed", "to": "Penny Marshall", "width": 1}, {"from": "A League of Their Own", "title": "starred in", "to": "Tom Hanks", "width": 1}, {"from": "A League of Their Own", "title": "is an example of a movie that", "to": "Hanks discussed", "width": 1}, {"from": "Tom Hanks", "title": "won", "to": "two consecutive Academy Awards", "width": 1}, {"from": "Tom Hanks", "title": "played", "to": "a gay lawyer suffering from AIDS in Philadelphia", "width": 1}, {"from": "Tom Hanks", "title": "played", "to": "the title character in Forrest Gump", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "Sleepless in Seattle", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "You\u0027ve Got Mail", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "Apollo 13", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "The Green Mile", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "Cast Away", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "Road to Perdition", "width": 1}, {"from": "Tom Hanks", "title": "played multiple parts in", "to": "Cloud Atlas", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "Charlie Wilson\u0027s War", "width": 1}, {"from": "Tom Hanks", "title": "played the lead role in", "to": "Captain Phillips", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "Saving Mr. Banks", "width": 1}, {"from": "Tom Hanks", "title": "starred as", "to": "Sully", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "A Beautiful Day in the Neighborhood", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "News of the World", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "Elvis", "width": 1}, {"from": "Tom Hanks", "title": "launched", "to": "Playtone", "width": 1}, {"from": "Tom Hanks", "title": "born in", "to": "Concord, California", "width": 1}, {"from": "Tom Hanks", "title": "son of", "to": "Janet Marylyn", "width": 1}, {"from": "Tom Hanks", "title": "son of", "to": "Amos \u0027Bud\u0027 Hanks", "width": 1}, {"from": "Tom Hanks", "title": "is a distant cousin of", "to": "Abraham Lincoln", "width": 1}, {"from": "Tom Hanks", "title": "is a sixth cousin of", "to": "Fred Rogers", "width": 1}, {"from": "Tom Hanks", "title": "had lived", "to": "ten different houses", "width": 1}, {"from": "Tom Hanks", "title": "was characterized as", "to": "a Bible-toting evangelical", "width": 1}, {"from": "Tom Hanks", "title": "was in his teenage years", "to": "several years", "width": 1}, {"from": "Tom Hanks", "title": "studied theater at", "to": "Chabot College", "width": 1}, {"from": "Tom Hanks", "title": "transferred to", "to": "California State University, Sacramento", "width": 1}, {"from": "Tom Hanks", "title": "was asked by", "to": "Bob Costas", "width": 1}, {"from": "Tom Hanks", "title": "met", "to": "Vincent Dowling", "width": 1}, {"from": "Tom Hanks", "title": "won", "to": "Cleveland Critics Circle Award for Best Actor", "width": 1}, {"from": "Tom Hanks", "title": "played", "to": "Proteus", "width": 1}, {"from": "Tom Hanks", "title": "made his film debut in", "to": "He Knows You\u0027re Alone", "width": 1}, {"from": "Tom Hanks", "title": "landed a starring role in", "to": "Mazes and Monsters", "width": 1}, {"from": "Tom Hanks", "title": "acted in", "to": "Bosom Buddies", "width": 1}, {"from": "Tom Hanks", "title": "played the character of", "to": "Kip Wilson", "width": 1}, {"from": "Tom Hanks", "title": "began to extend himself from roles in", "to": "comedies and dramas", "width": 1}, {"from": "Tom Hanks", "title": "is the father of", "to": "Jackie Gleason", "width": 1}, {"from": "Tom Hanks", "title": "played the role of", "to": "a washed-up baseball legend turned manager", "width": 1}, {"from": "Tom Hanks", "title": "has called attention to", "to": "the modern era of moviemaking", "width": 1}, {"from": "Tom Hanks", "title": "has gone through", "to": "self-discovery", "width": 1}, {"from": "Tom Hanks", "title": "ensured a place among", "to": "premier romantic-comedy stars of his generation", "width": 1}, {"from": "Tom Hanks", "title": "played the title character of", "to": "Forrest Gump", "width": 1}, {"from": "Tom Hanks", "title": "remarked", "to": "script for Gump", "width": 1}, {"from": "Tom Hanks", "title": "saw", "to": "Gump", "width": 1}, {"from": "Tom Hanks", "title": "play", "to": "Jim Lovell", "width": 1}, {"from": "Tom Hanks", "title": "reunite", "to": "Ron Howard", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "Toy Story", "width": 1}, {"from": "Tom Hanks", "title": "re-teamed with", "to": "Nora Ephron", "width": 1}, {"from": "Tom Hanks", "title": "re-teamed with", "to": "Meg Ryan", "width": 1}, {"from": "Tom Hanks", "title": "reprised his role as", "to": "Woody", "width": 1}, {"from": "Tom Hanks", "title": "played", "to": "a marooned FedEx systems analyst", "width": 1}, {"from": "Tom Hanks", "title": "reunited with", "to": "Zemeckis", "width": 1}, {"from": "Tom Hanks", "title": "proves himself to be", "to": "an effective actor", "width": 1}, {"from": "Tom Hanks", "title": "wins our sympathy", "to": "with his eyes and body language", "width": 1}, {"from": "Tom Hanks", "title": "starring opposite", "to": "Leonardo DiCaprio", "width": 1}, {"from": "Tom Hanks", "title": "produced", "to": "My Big Fat Greek Wedding", "width": 1}, {"from": "Tom Hanks", "title": "reunited with", "to": "Steven Spielberg", "width": 1}, {"from": "Tom Hanks", "title": "was voted in as vice president of", "to": "the Academy of Motion Picture Arts and Sciences", "width": 1}, {"from": "Tom Hanks", "title": "appears in an announcement", "to": "The Simpsons Movie", "width": 1}, {"from": "Tom Hanks", "title": "is buying", "to": "U.S. government", "width": 1}, {"from": "Tom Hanks", "title": "has a real-life father", "to": "a young man", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "Angels \u0026 Demons", "width": 1}, {"from": "Tom Hanks", "title": "reprised his role as", "to": "Robert Langdon", "width": 1}, {"from": "Tom Hanks", "title": "would reportedly receive the highest salary ever for", "to": "an actor", "width": 1}, {"from": "Tom Hanks", "title": "produced", "to": "Where The Wild Things Are", "width": 1}, {"from": "Tom Hanks", "title": "was invited to", "to": "a movie theater", "width": 1}, {"from": "Tom Hanks", "title": "was with", "to": "Tim Allen", "width": 1}, {"from": "Tom Hanks", "title": "was with", "to": "John Ratzenberger", "width": 1}, {"from": "Tom Hanks", "title": "was executive producer of", "to": "Game Change", "width": 1}, {"from": "Tom Hanks", "title": "nominated for", "to": "BAFTA Award for Best Actor in a Leading Role", "width": 1}, {"from": "Tom Hanks", "title": "nominated for", "to": "Golden Globe Award for Best Actor \u2013 Motion Picture Drama", "width": 1}, {"from": "Tom Hanks", "title": "was portrayed by", "to": "Captain Richard Phillips", "width": 1}, {"from": "Tom Hanks", "title": "starred with", "to": "Barkhad Abdi", "width": 1}, {"from": "Tom Hanks", "title": "played the role of", "to": "Walt Disney", "width": 1}, {"from": "Tom Hanks", "title": "co-starred with", "to": "Emma Thompson", "width": 1}, {"from": "Tom Hanks", "title": "made his Broadway debut starring in", "to": "Lucky Guy", "width": 1}, {"from": "Tom Hanks", "title": "published the story", "to": "Alan Bean Plus Four", "width": 1}, {"from": "Tom Hanks", "title": "appeared in", "to": "Carly Rae Jepsen\u0027s music video for \u0027I Really Like You\u0027", "width": 1}, {"from": "Tom Hanks", "title": "lip-synced", "to": "lyrics of \u0027I Really Like You\u0027", "width": 1}, {"from": "Tom Hanks", "title": "goes through", "to": "daily routine", "width": 1}, {"from": "Tom Hanks", "title": "starred as", "to": "Alan Clay", "width": 1}, {"from": "Tom Hanks", "title": "starred as", "to": "airline captain Chesley Sullenberger", "width": 1}, {"from": "Tom Hanks", "title": "co-starred alongside", "to": "Emma Watson", "width": 1}, {"from": "Tom Hanks", "title": "voiced", "to": "David S. Pumpkins", "width": 1}, {"from": "Tom Hanks", "title": "was nominated for", "to": "Academy Award for Best Supporting Actor", "width": 1}, {"from": "Tom Hanks", "title": "made his first television appearance since his COVID-19 diagnosis by hosting", "to": "Saturday Night Live", "width": 1}, {"from": "Tom Hanks", "title": "delivers an opening monolog via", "to": "his house", "width": 1}, {"from": "Tom Hanks", "title": "starred in", "to": "Finch", "width": 1}, {"from": "Tom Hanks", "title": "directed by", "to": "Miguel Sapochnik", "width": 1}, {"from": "Tom Hanks", "title": "released by", "to": "Apple TV+", "width": 1}, {"from": "Tom Hanks", "title": "featured an interview with", "to": "Dead Eyes", "width": 1}, {"from": "Tom Hanks", "title": "had three films released", "to": "2022", "width": 1}, {"from": "Tom Hanks", "title": "appeared in", "to": "Asteroid City", "width": 1}, {"from": "Tom Hanks", "title": "starred alongside", "to": "Jason Schwartzman", "width": 1}, {"from": "Tom Hanks", "title": "starred alongside", "to": "Scarlett Johansson", "width": 1}, {"from": "Tom Hanks", "title": "starred alongside", "to": "Adrien Brody", "width": 1}, {"from": "Tom Hanks", "title": "starred alongside", "to": "Jeffrey Wright", "width": 1}, {"from": "Tom Hanks", "title": "starred alongside", "to": "Bryan Cranston", "width": 1}, {"from": "Tom Hanks", "title": "is appearing in", "to": "In the Garden of Beasts", "width": 1}, {"from": "Tom Hanks", "title": "is a producer", "to": "producer", "width": 1}, {"from": "Tom Hanks", "title": "has received many award nominations", "to": "", "width": 1}, {"from": "Tom Hanks", "title": "is often compared to", "to": "James Stewart", "width": 1}, {"from": "Tom Hanks", "title": "has also frequently been referred to as", "to": "America\u0027s Dad", "width": 1}, {"from": "Tom Hanks", "title": "is named after", "to": "Asteroid 12818 Tomhanks", "width": 1}, {"from": "Tom Hanks", "title": "is voted Number 3 in", "to": "Channel 4\u0027s countdown of the 100 Greatest Movie Stars of All Time", "width": 1}, {"from": "Tom Hanks", "title": "is number", "to": "22 on VH1\u0027s list of the 200 Greatest Pop Culture Icons of All Time", "width": 1}, {"from": "Tom Hanks", "title": "portrayed", "to": "the real life story of a ship\u0027s captain hijacked by Somali pirates", "width": 1}, {"from": "Tom Hanks", "title": "was the executive producer of", "to": "From Earth to the Moon", "width": 1}, {"from": "Tom Hanks", "title": "occupy", "to": "a special category", "width": 1}, {"from": "Tom Hanks", "title": "thinks like", "to": "us", "width": 1}, {"from": "Tom Hanks", "title": "does what", "to": "we would do", "width": 1}, {"from": "Tom Hanks", "title": "does it on a larger scale", "to": "what we would do", "width": 1}, {"from": "Tom Hanks", "title": "married", "to": "Samantha Lewes", "width": 1}, {"from": "Tom Hanks", "title": "was married to", "to": "Diane Lewes", "width": 1}, {"from": "Tom Hanks", "title": "actively attends", "to": "church", "width": 1}, {"from": "Tom Hanks", "title": "met", "to": "Rita Wilson", "width": 1}, {"from": "Tom Hanks", "title": "has", "to": "Type 2 diabetes", "width": 1}, {"from": "Tom Hanks", "title": "appeared on", "to": "Late Show with David Letterman", "width": 1}, {"from": "Tom Hanks", "title": "is a fan of", "to": "Aston Villa", "width": 1}, {"from": "Tom Hanks", "title": "is a descendant of", "to": "Johannes Meffert", "width": 1}, {"from": "Tom Hanks", "title": "is a descendant of", "to": "Mefford", "width": 1}, {"from": "Tom Hanks", "title": "narrated", "to": "Killing Lincoln", "width": 1}, {"from": "Tom Hanks", "title": "received an honorary naturalization order from", "to": "Prokopis Pavlopoulos", "width": 1}, {"from": "Tom Hanks", "title": "is an exception to", "to": "Greece", "width": 1}, {"from": "Tom Hanks", "title": "showed real interest in", "to": "people who suffered from the fire in Mati", "width": 1}, {"from": "Tom Hanks", "title": "promoted", "to": "the issue in global media", "width": 1}, {"from": "Tom Hanks", "title": "was the candidate endorsed by", "to": "Hillary Clinton", "width": 1}, {"from": "Tom Hanks", "title": "donated", "to": "an espresso machine", "width": 1}, {"from": "Tom Hanks", "title": "co-produced", "to": "Magnificent Desolation: Walking on the Moon 3D", "width": 1}, {"from": "Tom Hanks", "title": "provided the voice-over for", "to": "Passport to the Universe", "width": 1}, {"from": "Tom Hanks", "title": "was inducted as an honorary member of", "to": "United States Army Rangers Hall of Fame", "width": 1}, {"from": "Tom Hanks", "title": "played the role of", "to": "captain", "width": 1}, {"from": "Tom Hanks", "title": "role in", "to": "Saving Private Ryan", "width": 1}, {"from": "Tom Hanks", "title": "was the first actor to receive", "to": "an honor", "width": 1}, {"from": "Tom Hanks", "title": "honorary chairperson of", "to": "D-Day Museum Capital Campaign", "width": 1}, {"from": "Tom Hanks", "title": "national spokesperson for", "to": "World War II Memorial Campaign", "width": 1}, {"from": "Tom Hanks", "title": "role in", "to": "Band of Brothers", "width": 1}, {"from": "Tom Hanks", "title": "founded", "to": "Hanx for the Troops", "width": 1}, {"from": "Tom Hanks", "title": "wrote", "to": "Uncommon Type", "width": 1}, {"from": "Tom Hanks", "title": "has presence on", "to": "IMDb", "width": 1}, {"from": "Tom Hanks", "title": "has presence on", "to": "Rotten Tomatoes", "width": 1}, {"from": "Tom Hanks", "title": "has presence on", "to": "TCM Movie Database", "width": 1}, {"from": "Tom Hanks", "title": "has presence on", "to": "Internet Broadway Database", "width": 1}, {"from": "Tom Hanks", "title": "has appeared on", "to": "Fresh Air", "width": 1}, {"from": "Philadelphia", "title": "is the location of", "to": "the movie", "width": 1}, {"from": "the movie", "title": "received", "to": "poor reviews", "width": 1}, {"from": "the movie", "title": "had", "to": "175 Rotten Tomatoes reviews", "width": 1}, {"from": "the movie", "title": "got", "to": "35% high ratings", "width": 1}, {"from": "Forrest Gump", "title": "is", "to": "a movie", "width": 1}, {"from": "Forrest Gump", "title": "happens to find himself involved with", "to": "major events in recent American history", "width": 1}, {"from": "Steven Spielberg", "title": "was directed by", "to": "Saving Private Ryan", "width": 1}, {"from": "Steven Spielberg", "title": "was directed by", "to": "Catch Me If You Can", "width": 1}, {"from": "Steven Spielberg", "title": "was directed by", "to": "The Terminal", "width": 1}, {"from": "Steven Spielberg", "title": "directed the film", "to": "Bridge of Spies", "width": 1}, {"from": "Steven Spielberg", "title": "was directed by", "to": "The Post", "width": 1}, {"from": "Steven Spielberg", "title": "directed", "to": "Band of Brothers", "width": 1}, {"from": "Steven Spielberg", "title": "directed", "to": "The Pacific", "width": 1}, {"from": "Steven Spielberg", "title": "directed", "to": "Masters of the Air", "width": 1}, {"from": "Steven Spielberg", "title": "worked with", "to": "Roberts", "width": 1}, {"from": "Steven Spielberg", "title": "was awarded", "to": "AFI Life Achievement Award", "width": 1}, {"from": "Steven Spielberg", "title": "was awarded", "to": "Douglas S. Morrow Public Outreach Award", "width": 1}, {"from": "Steven Spielberg", "title": "was awarded", "to": "Kennedy Center Honors Medallion", "width": 1}, {"from": "Steven Spielberg", "title": "was awarded", "to": "Presidential Medal of Freedom", "width": 1}, {"from": "World War II", "title": "featured in", "to": "Band of Brothers", "width": 1}, {"from": "World War II", "title": "featured in", "to": "The Pacific", "width": 1}, {"from": "World War II", "title": "featured in", "to": "Masters of the Air", "width": 1}, {"from": "World War II", "title": "presented", "to": "Tom Brokaw", "width": 1}, {"from": "World War II", "title": "presented", "to": "Gordon H. Mueller", "width": 1}, {"from": "Band of Brothers", "title": "won the", "to": "Emmy Award", "width": 1}, {"from": "Band of Brothers", "title": "was about to begin filming an episode of", "to": "Ratliff", "width": 1}, {"from": "The Pacific", "title": "executive produced", "to": "He", "width": 1}, {"from": "Masters of the Air", "title": "expected cost", "to": "$200 million", "width": 1}, {"from": "Masters of the Air", "title": "expected duration", "to": "at least eight hours", "width": 1}, {"from": "Sleepless in Seattle", "title": "is a", "to": "romantic comedy", "width": 1}, {"from": "Sleepless in Seattle", "title": "is the subject of", "to": "a widower", "width": 1}, {"from": "You\u0027ve Got Mail", "title": "is a remake of", "to": "The Shop Around the Corner", "width": 1}, {"from": "Apollo 13", "title": "direct", "to": "Ron Howard", "width": 1}, {"from": "The Green Mile", "title": "wrote", "to": "Stephen King", "width": 1}, {"from": "The Green Mile", "title": "directed", "to": "Frank Darabont", "width": 1}, {"from": "The Green Mile", "title": "starred in", "to": "Kevin Spacey", "width": 1}, {"from": "Cloud Atlas", "title": "wrote", "to": "David Mitchell", "width": 1}, {"from": "Charlie Wilson\u0027s War", "title": "directed", "to": "Mike Nichols", "width": 1}, {"from": "Captain Phillips", "title": "earned him", "to": "nominations", "width": 1}, {"from": "Captain Phillips", "title": "inspired", "to": "Maersk Alabama hijacking", "width": 1}, {"from": "Captain Phillips", "title": "is a movie about", "to": "the real life story of a ship\u0027s captain hijacked by Somali pirates", "width": 1}, {"from": "Saving Mr. Banks", "title": "earned him", "to": "nominations", "width": 1}, {"from": "Sully", "title": "directed", "to": "Clint Eastwood", "width": 1}, {"from": "A Beautiful Day in the Neighborhood", "title": "is a biographical film", "to": "Fred Rogers", "width": 1}, {"from": "News of the World", "title": "starred in the movie", "to": "Tom Hardy", "width": 1}, {"from": "Elvis", "title": "directed", "to": "Baz Luhrmann", "width": 1}, {"from": "Robert Langdon", "title": "was the title character of", "to": "series", "width": 1}, {"from": "Robert Langdon", "title": "appeared as", "to": "title character", "width": 1}, {"from": "Sheriff Woody", "title": "was voiced by", "to": "He", "width": 1}, {"from": "Sheriff Woody", "title": "had films that feature", "to": "Toy Story", "width": 1}, {"from": "Sheriff Woody", "title": "is a character in", "to": "Toy Story 4", "width": 1}, {"from": "He", "title": "made his debut in", "to": "Lucky Guy", "width": 1}, {"from": "He", "title": "earned a nomination for", "to": "Tony Award for Best Actor in a Play", "width": 1}, {"from": "He", "title": "told", "to": "New York magazine", "width": 1}, {"from": "He", "title": "said", "to": "( quote )", "width": 1}, {"from": "He", "title": "was cast as the lead", "to": "Callimaco", "width": 1}, {"from": "He", "title": "played a role in", "to": "an all-female hotel scenario", "width": 1}, {"from": "He", "title": "played a role in", "to": "a TV show", "width": 1}, {"from": "He", "title": "had a sizable hit", "to": "Bachelor Party", "width": 1}, {"from": "He", "title": "gives", "to": "a deeply felt, carefully nuanced performance that deserves an Oscar", "width": 1}, {"from": "He", "title": "appeared in", "to": "the September 11 television special America: A Tribute to Heroes", "width": 1}, {"from": "He", "title": "appeared in", "to": "the documentary Rescued From the Closet", "width": 1}, {"from": "He", "title": "wants to be left alone when", "to": "he is out in public", "width": 1}, {"from": "He", "title": "was included on", "to": "Forbes\u0027 list", "width": 1}, {"from": "He", "title": "was on", "to": "Forbes\u0027 list of the top ten most powerful celebrities in the world", "width": 1}, {"from": "He", "title": "was included on", "to": "Forbes\u0027 list in 2000", "width": 1}, {"from": "He", "title": "was included on", "to": "Forbes\u0027 list in 2002", "width": 1}, {"from": "He", "title": "was included on", "to": "Forbes\u0027 list in 2003", "width": 1}, {"from": "He", "title": "goes to", "to": "church", "width": 1}, {"from": "He", "title": "ponder", "to": "the mystery", "width": 1}, {"from": "He", "title": "was a lessee of", "to": "an EV1", "width": 1}, {"from": "He", "title": "is a subject of", "to": "Who Killed the Electric Car?", "width": 1}, {"from": "He", "title": "was on the waiting list for", "to": "Aptera 2 Series", "width": 1}, {"from": "He", "title": "produced the HBO miniseries", "to": "From the Earth to the Moon", "width": 1}, {"from": "Tommy Lee Jones", "title": "acted in", "to": "Larry Crowne", "width": 1}, {"from": "Tommy Lee Jones", "title": "acted in", "to": "1996", "width": 1}, {"from": "Tommy Lee Jones", "title": "appeared in", "to": "Volunteers", "width": 1}, {"from": "Tommy Lee Jones", "title": "portrayed the younger version of", "to": "Truman", "width": 1}, {"from": "Playtone", "title": "has", "to": "exclusive television development deal with HBO", "width": 1}, {"from": "From the Earth to the Moon", "title": "was released in", "to": "1998", "width": 1}, {"from": "From the Earth to the Moon", "title": "is about", "to": "the Apollo program", "width": 1}, {"from": "John Adams", "title": "is about", "to": "the miniseries", "width": 1}, {"from": "John Adams", "title": "is a person", "to": "person", "width": 1}, {"from": "Nora Ephron", "title": "wrote a play", "to": "Lucky Guy", "width": 1}, {"from": "Lucky Guy", "title": "nominated for the Tony Award for", "to": "Best Actor in a Play", "width": 1}, {"from": "His mother", "title": "was from", "to": "Portuguese family", "width": 1}, {"from": "His mother", "title": "had a surname", "to": "Fraga", "width": 1}, {"from": "Fred Rogers", "title": "is a descendant of", "to": "Johannes Meffert", "width": 1}, {"from": "Fred Rogers", "title": "is a descendant of", "to": "Mefford", "width": 1}, {"from": "His parents", "title": "divorced", "to": "in 1960", "width": 1}, {"from": "Sandra", "title": "is a child of", "to": "The person (their father)", "width": 1}, {"from": "Sandra", "title": "became a", "to": "writer", "width": 1}, {"from": "The person (their father)", "title": "is a child of", "to": "Larry", "width": 1}, {"from": "The person (their father)", "title": "is a child of", "to": "Tom", "width": 1}, {"from": "The person (their father)", "title": "is a child of", "to": "Jim", "width": 1}, {"from": "Larry", "title": "became a", "to": "entomology professor at the University of Illinois Urbana-Champaign", "width": 1}, {"from": "Jim", "title": "remained with", "to": "Their mother in Red Bluff, California", "width": 1}, {"from": "me", "title": "was", "to": "horribly, painfully, terribly shy", "width": 1}, {"from": "I", "title": "tell out", "to": "funny captions", "width": 1}, {"from": "I", "title": "yell during", "to": "filmstrips", "width": 1}, {"from": "I", "title": "was", "to": "a real good kid", "width": 1}, {"from": "I", "title": "would drive to", "to": "a theater", "width": 1}, {"from": "I", "title": "would buy", "to": "a ticket", "width": 1}, {"from": "I", "title": "would sit", "to": "in the seat", "width": 1}, {"from": "I", "title": "would read", "to": "the program", "width": 1}, {"from": "I", "title": "would get into", "to": "the play completely", "width": 1}, {"from": "I", "title": "watched", "to": "movies", "width": 1}, {"from": "I", "title": "meditate", "to": "on the \u0027why \u0027?\u0027", "width": 1}, {"from": "Skyline High School", "title": "located in", "to": "Oakland, California", "width": 1}, {"from": "Bay Area", "title": "located in", "to": "Alameda Theatre", "width": 1}, {"from": "Heisman", "title": "can be won by playing halfback for", "to": "California Golden Bears", "width": 1}, {"from": "Heisman", "title": "is won by", "to": "him", "width": 1}, {"from": "him", "title": "was a member of", "to": "a 1960s pop group", "width": 1}, {"from": "him", "title": "got involved in", "to": "film", "width": 1}, {"from": "plays", "title": "location", "to": "there", "width": 1}, {"from": "plays", "title": "is a playwright of", "to": "Brecht", "width": 1}, {"from": "plays", "title": "is a playwright of", "to": "Tennessee Williams", "width": 1}, {"from": "plays", "title": "is a playwright of", "to": "Ibsen", "width": 1}, {"from": "Vincent Dowling", "title": "has head", "to": "Great Lakes Theater Festival", "width": 1}, {"from": "Great Lakes Theater Festival", "title": "location of", "to": "Cleveland", "width": 1}, {"from": "Cleveland", "title": "location of", "to": "Ohio", "width": 1}, {"from": "Proteus", "title": "protagonist in", "to": "The Two Gentlemen of Verona", "width": 1}, {"from": "Riverside Shakespeare Company", "title": "directed", "to": "The Mandrake", "width": 1}, {"from": "The Mandrake", "title": "directed", "to": "Daniel Southern", "width": 1}, {"from": "Bosom Buddies", "title": "ran for", "to": "two seasons", "width": 1}, {"from": "Bosom Buddies", "title": "had ratings", "to": "never strong", "width": 1}, {"from": "Bosom Buddies", "title": "got marks", "to": "high marks", "width": 1}, {"from": "an all-female hotel scenario", "title": "played a role in", "to": "Peter Scolari", "width": 1}, {"from": "a TV show", "title": "played a role in", "to": "Peter Scolari", "width": 1}, {"from": "Him", "title": "be seen on the set", "to": "television", "width": 1}, {"from": "Ganz", "title": "suggested", "to": "Howard", "width": 1}, {"from": "film", "title": "became", "to": "highest-grossing animated film", "width": 1}, {"from": "film", "title": "is initially set to be the theatrical release of", "to": "Sony Pictures", "width": 1}, {"from": "film", "title": "was bought by", "to": "Apple TV+", "width": 1}, {"from": "film", "title": "was directed by", "to": "Zemeckis", "width": 1}, {"from": "film", "title": "released", "to": "Disney+", "width": 1}, {"from": "film", "title": "was released on", "to": "September 8, 2022", "width": 1}, {"from": "film", "title": "premiered at", "to": "2023 Cannes Film Festival", "width": 1}, {"from": "film", "title": "released in", "to": "June 2023", "width": 1}, {"from": "the main character\u0027s wisecracking brother", "title": "played the role of", "to": "John Candy", "width": 1}, {"from": "Bachelor Party", "title": "is a movie", "to": "sex comedy", "width": 1}, {"from": "Elyse Keaton", "title": "had a brother", "to": "Ned Donnelly", "width": 1}, {"from": "With Nothing in Common (1986)", "title": "is the story of", "to": "a young man\u0027s struggle with his father", "width": 1}, {"from": "experience", "title": "changed", "to": "desires", "width": 1}, {"from": "triples", "title": "is part of", "to": "part", "width": 1}, {"from": "what we were trying to say", "title": "is the nature of", "to": "material", "width": 1}, {"from": "people", "title": "focused on", "to": "relationships", "width": 1}, {"from": "a guy and his house", "title": "is similar to", "to": "a guy", "width": 1}, {"from": "a guy and his house", "title": "is similar to", "to": "a guy and his father", "width": 1}, {"from": "a guy", "title": "has a father", "to": "his father", "width": 1}, {"from": "Bob Santoli", "title": "", "to": "", "width": 1}, {"from": "Bob Santoli", "title": "co-starred with", "to": "Sally Field", "width": 1}, {"from": "", "title": "grossed", "to": "over $600 million", "width": 1}, {"from": "a greedy Wall Street figure", "title": "gets", "to": "enmeshed", "width": 1}, {"from": "a greedy Wall Street figure", "title": "gets", "to": "in a hit-and-run accident", "width": 1}, {"from": "Turner \u0026 Hooch", "title": "is a movie", "to": "1989", "width": 1}, {"from": "Tom Hanks\u0027 work", "title": "has become", "to": "less pretentiously fake and over the top", "width": 1}, {"from": "a widower", "title": "finds true love with", "to": "someone over the radio airwaves", "width": 1}, {"from": "someone over the radio airwaves", "title": "is the means by which", "to": "a widower finds true love", "width": 1}, {"from": "Richard Schickel", "title": "called", "to": "Tom Hanks\u0027 performance charming", "width": 1}, {"from": "Rawley Farnsworth", "title": "is", "to": "gay", "width": 1}, {"from": "gay", "title": "is", "to": "John Gilkerson", "width": 1}, {"from": "Gump", "title": "is one of those kind of", "to": "grand, hopeful movies", "width": 1}, {"from": "Gump", "title": "offers", "to": "hope for their lot and their position in life", "width": 1}, {"from": "Spencer Tracy", "title": "was the first", "to": "winning in 1937 and \u201838 for Captains Courageous and Boys Town", "width": 1}, {"from": "Spencer Tracy", "title": "winning in 1937 and \u201838", "to": "Captains Courageous and Boys Town", "width": 1}, {"from": "Spencer Tracy", "title": "occupy", "to": "a special category", "width": 1}, {"from": "Tracy", "title": "received an Academy Award", "to": "Academy Award", "width": 1}, {"from": "Jim Lovell", "title": "made", "to": "flights", "width": 1}, {"from": "Kevin Bacon", "title": "is a member of", "to": "cast", "width": 1}, {"from": "cast", "title": "is a member of", "to": "Bill Paxton", "width": 1}, {"from": "cast", "title": "is a member of", "to": "Gary Sinise", "width": 1}, {"from": "cast", "title": "is a member of", "to": "Ed Harris", "width": 1}, {"from": "cast", "title": "is a member of", "to": "Kathleen Quinlan", "width": 1}, {"from": "Triples", "title": "earned", "to": "nine Academy Award nominations", "width": 1}, {"from": "Triples", "title": "won", "to": "two awards", "width": 1}, {"from": "a 1960s pop group", "title": "is about", "to": "the film", "width": 1}, {"from": "Neil Armstrong", "title": "made", "to": "flights", "width": 1}, {"from": "Moon", "title": "had", "to": "landings", "width": 1}, {"from": "His next project", "title": "was no less expensive than", "to": "another project", "width": 1}, {"from": "Roberts", "title": "worked on the film", "to": "For Saving Private Ryan", "width": 1}, {"from": "It", "title": "earned the praise and respect of", "to": "the film community, critics and the general public", "width": 1}, {"from": "It", "title": "has to get", "to": "me going somehow", "width": 1}, {"from": "Spielberg", "title": "earned", "to": "Academy Award for direction", "width": 1}, {"from": "it", "title": "earned", "to": "Spielberg\u0027s second Academy Award for direction", "width": 1}, {"from": "it", "title": "earned", "to": "Hanks another Best Actor nomination", "width": 1}, {"from": "Zemeckis", "title": "is a longtime collaborator of", "to": "him (referring to the person in the sentence, i.e., the one getting involved in the film)", "width": 1}, {"from": "Wilson", "title": "has descent", "to": "Greek and Bulgarian", "width": 1}, {"from": "Wilson", "title": "is a member of", "to": "Greek Orthodox Church", "width": 1}, {"from": "Wilson", "title": "handed over a Greek passport to", "to": "Kyriakos Mitsotakis", "width": 1}, {"from": "American Film Institute\u0027s Life Achievement Award", "title": "was presented on", "to": "June 12, 2002", "width": 1}, {"from": "movie", "title": "requires", "to": "all-encompassing desire", "width": 1}, {"from": "movie", "title": "requires", "to": "feeling about wanting", "width": 1}, {"from": "movie", "title": "directed", "to": "Tom Tykwer", "width": 1}, {"from": "movie", "title": "is a", "to": "Pinocchio", "width": 1}, {"from": "all-encompassing desire", "title": "is a part of", "to": "feeling about wanting", "width": 1}, {"from": "The film", "title": "wins the", "to": "award", "width": 1}, {"from": "Hollywood", "title": "is the", "to": "location", "width": 1}, {"from": "The Da Vinci Code", "title": "grossed over", "to": "US$750 million", "width": 1}, {"from": "John H. Williams", "title": "produced", "to": "The Ant Bully", "width": 1}, {"from": "John H. Williams", "title": "produced", "to": "Starter for Ten", "width": 1}, {"from": "The War", "title": "is a documentary by", "to": "Ken Burns", "width": 1}, {"from": "U.S. government", "title": "has lost credibility", "to": "itself", "width": 1}, {"from": "Charles Wilson", "title": "played the role of", "to": "Mike Nichols\u0027s Charlie Wilson\u0027s War", "width": 1}, {"from": "Charles Wilson", "title": "is a", "to": "Texas Congressman", "width": 1}, {"from": "the young man", "title": "chooses to work as road manager for", "to": "Buck Howard", "width": 1}, {"from": "Buck Howard", "title": "is a mentalist and a performer managed by", "to": "the road manager (the young man)", "width": 1}, {"from": "Buck Howard", "title": "plays the role of", "to": "John Malkovich", "width": 1}, {"from": "character", "title": "has a son", "to": "son", "width": 1}, {"from": "character", "title": "is less than thrilled about", "to": "son\u0027s career decision", "width": 1}, {"from": "son", "title": "has career decision", "to": "career decision", "width": 1}, {"from": "himself", "title": "appeared in", "to": "Celebrity Jeopardy sketch", "width": 1}, {"from": "Where The Wild Things Are", "title": "directed", "to": "Spike Jonze", "width": 1}, {"from": "Where The Wild Things Are", "title": "wrote", "to": "Maurice Sendak", "width": 1}, {"from": "Where The Wild Things Are", "title": "is based on", "to": "children\u0027s book", "width": 1}, {"from": "Captain Richard Phillips", "title": "was involved in", "to": "Maersk Alabama hijacking", "width": 1}, {"from": "Alan Bean", "title": "is titled after", "to": "the short story", "width": 1}, {"from": "the four friends", "title": "make a voyage to", "to": "the moon", "width": 1}, {"from": "Katy Waldman", "title": "wrote", "to": "review", "width": 1}, {"from": "Carly Rae Jepsen", "title": "released", "to": "song \u0027I Really Like You\u0027", "width": 1}, {"from": "Francis Gary Powers", "title": "was released by", "to": "Soviet Union", "width": 1}, {"from": "Francis Gary Powers", "title": "was exchanged for", "to": "Rudolf Abel", "width": 1}, {"from": "Toy Story 4", "title": "was released in", "to": "2019", "width": 1}, {"from": "April 11, 2020", "title": "is the date of", "to": "Hanks\u0027 first television appearance", "width": 1}, {"from": "SNL", "title": "is affected by", "to": "COVID-19 pandemic", "width": 1}, {"from": "SNL", "title": "features", "to": "different sketches", "width": 1}, {"from": "SNL", "title": "be made up entirely of", "to": "prerecorded content", "width": 1}, {"from": "SNL", "title": "be", "to": "the second to not be filmed at Studio 8H", "width": 1}, {"from": "cast members", "title": "film", "to": "sketches", "width": 1}, {"from": "cast members", "title": "film", "to": "from their homes", "width": 1}, {"from": "first episode", "title": "is the", "to": "episode", "width": 1}, {"from": "Apple TV+", "title": "stream", "to": "miniseries", "width": 1}, {"from": "Tom Hardy", "title": "reunited with", "to": "Paul Greengrass", "width": 1}, {"from": "David Rooney", "title": "praised", "to": "Hanks\u0027 performance", "width": 1}, {"from": "his characterization", "title": "make", "to": "this an enormously pleasurable performance to watch", "width": 1}, {"from": "his characterization", "title": "ripple", "to": "soulfulness and sorrow", "width": 1}, {"from": "his characterization", "title": "have", "to": "new depths of both kindness and regret", "width": 1}, {"from": "his characterization", "title": "keep", "to": "revealing themselves", "width": 1}, {"from": "Connor Ratliff", "title": "appeared as a guest on", "to": "Late Night With Seth Meyers", "width": 1}, {"from": "Paul Scheer", "title": "called", "to": "thrilling", "width": 1}, {"from": "Elvis Presley", "title": "played by", "to": "Tom Parker", "width": 1}, {"from": "Shooting", "title": "commenced in", "to": "Queensland, Australia", "width": 1}, {"from": "Filming", "title": "released in", "to": "June 2022", "width": 1}, {"from": "Pinocchio", "title": "is the producer of", "to": "Walt Disney Studios", "width": 1}, {"from": "A Man Called Otto", "title": "is an English-language remake of", "to": "A Man Called Ove", "width": 1}, {"from": "NME", "title": "reported in", "to": "March 2017", "width": 1}, {"from": "HBO", "title": "has budget constraints", "to": "none", "width": 1}, {"from": "The series", "title": "premiered on", "to": "January 26, 2024", "width": 1}, {"from": "In the Garden of Beasts", "title": "is directing", "to": "Joe Wright", "width": 1}, {"from": "In the Garden of Beasts", "title": "is based on", "to": "2011 non fiction book", "width": 1}, {"from": "2011 non fiction book", "title": "is the subject of", "to": "William Dodd", "width": 1}, {"from": "the feature adaptation of Here", "title": "will direct", "to": "Robert Zemeckis", "width": 1}, {"from": "Richard McGuire", "title": "created", "to": "Here", "width": 1}, {"from": "Tom Brokaw", "title": "was awarded", "to": "French Legion of Honor", "width": 1}, {"from": "French Legion of Honor", "title": "was awarded", "to": "Gordon H. Mueller", "width": 1}, {"from": "New York", "title": "is located", "to": "National WWII Museum", "width": 1}, {"from": "New York", "title": "located in", "to": "American Museum of Natural History", "width": 1}, {"from": "James Stewart", "title": "occupy", "to": "a special category", "width": 1}, {"from": "Fans", "title": "post-show of", "to": "Broadway performance", "width": 1}, {"from": "his films", "title": "have grossed over", "to": "$9.96 billion", "width": 1}, {"from": "Richard Strauss", "title": "composed", "to": "Also sprach Zarathustra", "width": 1}, {"from": "Also sprach Zarathustra", "title": "chose", "to": "Guest", "width": 1}, {"from": "William Manchester", "title": "authored", "to": "A World Lit Only by Fire", "width": 1}, {"from": "A World Lit Only by Fire", "title": "chose", "to": "Guest", "width": 1}, {"from": "Guest", "title": "chose", "to": "Hermes 3000 typewriter and paper", "width": 1}, {"from": "Terry Gross", "title": "hosts", "to": "Fresh Air", "width": 1}, {"from": "From Earth to the Moon", "title": "was nominated for", "to": "17 Emmy Awards", "width": 1}, {"from": "Roger Ebert", "title": "wrote", "to": "of actors who are not \u0027bigger than life,\u0027 but somehow just like life\u2014people who we feel we know and understand, and are comfortable with", "width": 1}, {"from": "actors", "title": "embody", "to": "our lives", "width": 1}, {"from": "actors", "title": "have", "to": "egos", "width": 1}, {"from": "our lives", "title": "but not", "to": "our fantasies", "width": 1}, {"from": "them", "title": "make us feel", "to": "congratulated", "width": 1}, {"from": "we", "title": "are watching", "to": "ourselves", "width": 1}, {"from": "Buster Keaton", "title": "occupy", "to": "a special category", "width": 1}, {"from": "a special category", "title": "occupy", "to": "Henry Fonda", "width": 1}, {"from": "a special category", "title": "occupy", "to": "Robert Duvall", "width": 1}, {"from": "a special category", "title": "occupy", "to": "Gene Hackman", "width": 1}, {"from": "Colin", "title": "is the son of", "to": "They", "width": 1}, {"from": "Harold", "title": "has a son", "to": "Hamza", "width": 1}, {"from": "Harold", "title": "has a daughter", "to": "Elizabeth", "width": 1}, {"from": "Lewes", "title": "died", "to": "2002", "width": 1}, {"from": "Lewes", "title": "was", "to": "49 years old", "width": 1}, {"from": "Lewes", "title": "had", "to": "bone cancer", "width": 1}, {"from": "the mystery", "title": "is", "to": "the grand unifying theory of all mankind", "width": 1}, {"from": "grand unifying theory", "title": "is the", "to": "mystery", "width": 1}, {"from": "mystery", "title": "is about", "to": "why people are as they are", "width": 1}, {"from": "mystery", "title": "is about", "to": "why bad things happen to good people", "width": 1}, {"from": "mystery", "title": "is about", "to": "why good things happen to bad people", "width": 1}, {"from": "Volunteers", "title": "appeared in", "to": "John Hurt", "width": 1}, {"from": "Chet", "title": "released", "to": "a rap song", "width": 1}, {"from": "Chet", "title": "had", "to": "recurring roles", "width": 1}, {"from": "CBS News medical contributor", "title": "said", "to": "significant weight fluctuations might have contributed to the diagnosis", "width": 1}, {"from": "the CBS News medical contributor", "title": "said", "to": "significant weight fluctuations for various film roles might have contributed to the diagnosis", "width": 1}, {"from": "the CBS News medical contributor", "title": "said", "to": "significant weight fluctuations for various film roles such as A League of Their Own and Cast Away might have contributed to the diagnosis", "width": 1}, {"from": "significant weight fluctuations", "title": "might have contributed to", "to": "the diagnosis", "width": 1}, {"from": "lifestyle changes", "title": "include", "to": "maintaining a healthier diet", "width": 1}, {"from": "lifestyle changes", "title": "include", "to": "avoiding film roles that require drastic weight changes", "width": 1}, {"from": "Raiders", "title": "was based in", "to": "Oakland", "width": 1}, {"from": "Raiders", "title": "filed for relocation to", "to": "Las Vegas", "width": 1}, {"from": "Johannes Meffert", "title": "is the birthplace of", "to": "Hesse, Germany", "width": 1}, {"from": "Johannes Meffert", "title": "has been emigrated to", "to": "United States", "width": 1}, {"from": "Johannes Meffert", "title": "has been settled in", "to": "Kentucky", "width": 1}, {"from": "a devastating wildfire", "title": "was ripped through by", "to": "Mati", "width": 1}, {"from": "Mati", "title": "is near", "to": "Athens", "width": 1}, {"from": "Obama", "title": "narrated", "to": "The Road We\u0027ve Traveled", "width": 1}, {"from": "Hillary Clinton", "title": " Secretary of State", "to": "None", "width": 1}, {"from": "Hillary Clinton", "title": "presidential candidate", "to": "2016 presidential election", "width": 1}, {"from": "Proposition 8", "title": "defined", "to": "marriage", "width": 1}, {"from": "nothing", "title": "is", "to": "more American than", "width": 1}, {"from": "more American than", "title": "is", "to": "voting one\u0027s conscience", "width": 1}, {"from": "an EV1", "title": "was recalled", "to": "before it was recalled", "width": 1}, {"from": "the documentary", "title": "chronicles", "to": "the story of", "width": 1}, {"from": "Elizabeth Dole Foundation", "title": "is related to", "to": "Hidden Heroes Campaign", "width": 1}, {"from": "campaign", "title": "has mission", "to": "to inspire a national movement to more effectively support the military and veteran caregivers", "width": 1}, {"from": "campaign", "title": "be supported by", "to": "military and veteran caregivers", "width": 1}, {"from": "military and veteran caregivers", "title": "are", "to": "caregivers", "width": 1}, {"from": "White House Press Corps", "title": "is the recipient of", "to": "donation", "width": 1}, {"from": "Especially", "title": "applies to", "to": "the truth part", "width": 1}, {"from": "Joe Biden", "title": "was endorsed by", "to": "Context", "width": 1}, {"from": "Context", "title": "is published under the name", "to": "The Making of Another Major Motion Picture Masterpiece", "width": 1}, {"from": "National Space Society", "title": "founded by", "to": "Wernher von Braun", "width": 1}, {"from": "National Space Society", "title": "serves", "to": "Board of governors", "width": 1}, {"from": "the Apollo program", "title": "sent astronauts to", "to": "the Moon", "width": 1}, {"from": "Passport to the Universe", "title": "premiered at", "to": "Rose Center for Earth and Space", "width": 1}, {"from": "Rose Center for Earth and Space", "title": "located in", "to": "Hayden Planetarium", "width": 1}, {"from": "Hayden Planetarium", "title": "located in", "to": "American Museum of Natural History", "width": 1}, {"from": "Hanx Writer", "title": "became", "to": "number one on the App Store", "width": 1}, {"from": "Hanx for the Troops", "title": "supports", "to": "veterans and military families", "width": 1}, {"from": "The Making of Another Major Motion Picture Masterpiece", "title": "is about", "to": "novel", "width": 1}, {"from": "The Making of Another Major Motion Picture Masterpiece", "title": "was published in", "to": "May 2023", "width": 1}, {"from": "The Making of Another Major Motion Picture Masterpiece", "title": "is a debut novel", "to": "of a person", "width": 1}, {"from": "David Gardner", "title": "wrote", "to": "Tom Hanks: The Unauthorized Biography", "width": 1}, {"from": "David Gardner", "title": "wrote", "to": "Tom Hanks: Enigma", "width": 1}, {"from": "Lee Pfeiffer", "title": "wrote", "to": "The Films of Tom Hanks", "width": 1}, {"from": "Julie Salamon", "title": "wrote", "to": "The Devil\u0027s Candy: The Bonfire of the Vanities Goes to Hollywood", "width": 1}, {"from": "Roy Trakin", "title": "wrote", "to": "Tom Hanks: Journey to Stardom", "width": 1}, {"from": "Rosemary Wallner", "title": "wrote", "to": "Tom Hanks: Academy Award-Winning Actor", "width": 1}]);
nodeColors = {};
allNodes = nodes.get({ returnType: "Object" });
for (nodeId in allNodes) {
nodeColors[nodeId] = allNodes[nodeId].color;
}
allEdges = edges.get({ returnType: "Object" });
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": false
},
"edges": {
"color": {
"inherit": true
},
"smooth": {
"enabled": true,
"type": "dynamic"
}
},
"interaction": {
"dragNodes": true,
"hideEdgesOnDrag": false,
"hideNodesOnDrag": false
},
"physics": {
"enabled": true,
"forceAtlas2Based": {
"avoidOverlap": 0,
"centralGravity": 0.015,
"damping": 0.4,
"gravitationalConstant": -31,
"springConstant": 0.08,
"springLength": 100
},
"solver": "forceAtlas2Based",
"stabilization": {
"enabled": true,
"fit": true,
"iterations": 1000,
"onlyDynamicEdges": false,
"updateInterval": 50
}
}
};
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>