-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.html
250 lines (194 loc) · 256 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
<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: 500px;
background-color: #ffffff;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 500px;
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": "#e87551", "id": "Australia", "label": "Australia", "shape": "dot"}, {"color": "#04c0b1", "id": "Yang Xinmeng (Abby Yang)", "label": "Yang Xinmeng (Abby Yang)", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Culture Express", "label": "CGTN Culture Express", "shape": "dot"}, {"color": "#04c0b1", "id": "Yang Sheng", "label": "Yang Sheng", "shape": "dot"}, {"color": "#04c0b1", "id": "Media Challengers", "label": "Media Challengers", "shape": "dot"}, {"color": "#04c0b1", "id": "Ge Anna", "label": "Ge Anna", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Zeyu (Anosi Wang)", "label": "Wang Zeyu (Anosi Wang)", "shape": "dot"}, {"color": "#04c0b1", "id": "We Are China", "label": "We Are China", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Assignment Asia", "label": "CGTN Assignment Asia", "shape": "dot"}, {"color": "#04c0b1", "id": "Beijing Channel", "label": "Beijing Channel", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Beijing", "label": "Discover Beijing", "shape": "dot"}, {"color": "#04c0b1", "id": "Belt and Road News Network", "label": "Belt and Road News Network", "shape": "dot"}, {"color": "#04c0b1", "id": "Zheng Chenlei (Blair Zheng)", "label": "Zheng Chenlei (Blair Zheng)", "shape": "dot"}, {"color": "#04c0b1", "id": "Tang Bo", "label": "Tang Bo", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Cong", "label": "Wang Cong", "shape": "dot"}, {"color": "#04c0b1", "id": "Cao Li", "label": "Cao Li", "shape": "dot"}, {"color": "#04c0b1", "id": "Visual China", "label": "Visual China", "shape": "dot"}, {"color": "#04c0b1", "id": "China Watch", "label": "China Watch", "shape": "dot"}, {"color": "#04c0b1", "id": "CD Opinion", "label": "CD Opinion", "shape": "dot"}, {"color": "#04c0b1", "id": "China Daily Sci-tech", "label": "China Daily Sci-tech", "shape": "dot"}, {"color": "#04c0b1", "id": "Cen Ziyuan (Jasmine Cen)", "label": "Cen Ziyuan (Jasmine Cen)", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Culture", "label": "CGTN Culture", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Dialogue", "label": "CGTN Dialogue", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Inheritors", "label": "CGTN Inheritors", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Style", "label": "CGTN Style", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Business", "label": "CGTN Business", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Food", "label": "CGTN Food", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Global Business", "label": "CGTN Global Business", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Graphics", "label": "CGTN Graphics", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Movies", "label": "CGTN Movies", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN", "label": "CGTN", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Radio", "label": "CGTN Radio", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Sports", "label": "CGTN Sports", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Sports Scene", "label": "CGTN Sports Scene", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Stories", "label": "CGTN Stories", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Tech", "label": "CGTN Tech", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Travel", "label": "CGTN Travel", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Travelogue", "label": "CGTN Travelogue", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN United Nations", "label": "CGTN United Nations", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Juan", "label": "Chen Juan", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Weihua", "label": "Chen Weihua", "shape": "dot"}, {"color": "#04c0b1", "id": "China Focus", "label": "China Focus", "shape": "dot"}, {"color": "#04c0b1", "id": "Lin Jing", "label": "Lin Jing", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN China Takeaway", "label": "CGTN China Takeaway", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Sydney", "label": "Chinese Consulate General in Sydney", "shape": "dot"}, {"color": "#04c0b1", "id": "China Culture", "label": "China Culture", "shape": "dot"}, {"color": "#04c0b1", "id": "China Daily", "label": "China Daily", "shape": "dot"}, {"color": "#04c0b1", "id": "China Daily Life", "label": "China Daily Life", "shape": "dot"}, {"color": "#04c0b1", "id": "China Daily Asia", "label": "China Daily Asia", "shape": "dot"}, {"color": "#04c0b1", "id": "China Daily World", "label": "China Daily World", "shape": "dot"}, {"color": "#04c0b1", "id": "China.org.cn (English)", "label": "China.org.cn (English)", "shape": "dot"}, {"color": "#04c0b1", "id": "China Plus Podcasts", "label": "China Plus Podcasts", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily China Science", "label": "People\u0027s Daily China Science", "shape": "dot"}, {"color": "#04c0b1", "id": "State Council Information Office (SCIO)", "label": "State Council Information Office (SCIO)", "shape": "dot"}, {"color": "#04c0b1", "id": "China Today", "label": "China Today", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Melbourne", "label": "Chinese Consulate General in Melbourne", "shape": "dot"}, {"color": "#04c0b1", "id": "China International Development Cooperation Agency (CIDCA)", "label": "China International Development Cooperation Agency (CIDCA)", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Closer to China", "label": "CGTN Closer to China", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Breaking News", "label": "CRI Breaking News", "shape": "dot"}, {"color": "#04c0b1", "id": "China State Construction (CSCEC)", "label": "China State Construction (CSCEC)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhu Danni (Danni Zhu)", "label": "Zhu Danni (Danni Zhu)", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Di\u0027er (Deer Wang)", "label": "Wang Di\u0027er (Deer Wang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Ding Heng", "label": "Ding Heng", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Binhai", "label": "Discover Binhai", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Guangxi", "label": "Discover Guangxi", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Jilin", "label": "Discover Jilin", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Nanjing", "label": "Discover Nanjing", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Zhejiang", "label": "Discover Zhejiang", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Dongning", "label": "Li Dongning", "shape": "dot"}, {"color": "#04c0b1", "id": "Du Ping", "label": "Du Ping", "shape": "dot"}, {"color": "#04c0b1", "id": "Economic Daily", "label": "Economic Daily", "shape": "dot"}, {"color": "#04c0b1", "id": "Cheng Weitong", "label": "Cheng Weitong", "shape": "dot"}, {"color": "#04c0b1", "id": "Explore Gansu", "label": "Explore Gansu", "shape": "dot"}, {"color": "#04c0b1", "id": "Feel China", "label": "Feel China", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Fly Over China", "label": "Xinhua Fly Over China", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Frontline", "label": "CGTN Frontline", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Full Frame", "label": "CGTN Full Frame", "shape": "dot"}, {"color": "#04c0b1", "id": "Guo Meiping (Gladys Guo)", "label": "Guo Meiping (Gladys Guo)", "shape": "dot"}, {"color": "#04c0b1", "id": "GT Business Source", "label": "GT Business Source", "shape": "dot"}, {"color": "#04c0b1", "id": "GT Life", "label": "GT Life", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Global Watch", "label": "CGTN Global Watch", "shape": "dot"}, {"color": "#04c0b1", "id": "Jiangsu, China", "label": "Jiangsu, China", "shape": "dot"}, {"color": "#04c0b1", "id": "GT Opinion", "label": "GT Opinion", "shape": "dot"}, {"color": "#04c0b1", "id": "Guan Xin", "label": "Guan Xin", "shape": "dot"}, {"color": "#04c0b1", "id": "Gong Zhe", "label": "Gong Zhe", "shape": "dot"}, {"color": "#04c0b1", "id": "He Weiwei", "label": "He Weiwei", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Hao", "label": "Wang Hao", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Hongtie", "label": "Zhang Hongtie", "shape": "dot"}, {"color": "#04c0b1", "id": "Huang Jiyuan", "label": "Huang Jiyuan", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Huanxin", "label": "Zhao Huanxin", "shape": "dot"}, {"color": "#04c0b1", "id": "Hu Xijin", "label": "Hu Xijin", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover China", "label": "Discover China", "shape": "dot"}, {"color": "#04c0b1", "id": "Guizhou, China", "label": "Guizhou, China", "shape": "dot"}, {"color": "#04c0b1", "id": "In Qingdao (Meet Qingdao)", "label": "In Qingdao (Meet Qingdao)", "shape": "dot"}, {"color": "#04c0b1", "id": "iPanda", "label": "iPanda", "shape": "dot"}, {"color": "#04c0b1", "id": "Insight Xiangshan", "label": "Insight Xiangshan", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhejiang, China", "label": "Zhejiang, China", "shape": "dot"}, {"color": "#04c0b1", "id": "Zang Shijie (Jessica Zang)", "label": "Zang Shijie (Jessica Zang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Jiang Jiang", "label": "Jiang Jiang", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Jianhua", "label": "Li Jianhua", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Jingjing", "label": "Li Jingjing", "shape": "dot"}, {"color": "#04c0b1", "id": "Ji Tao", "label": "Ji Tao", "shape": "dot"}, {"color": "#04c0b1", "id": "Kui Yingchun (Kate Kui)", "label": "Kui Yingchun (Kate Kui)", "shape": "dot"}, {"color": "#04c0b1", "id": "Mi Xue (Katie Mi)", "label": "Mi Xue (Katie Mi)", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Kun", "label": "Liu Kun", "shape": "dot"}, {"color": "#04c0b1", "id": "Learn Chinese", "label": "Learn Chinese", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Qian (Leona Li)", "label": "Li Qian (Leona Li)", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Yang", "label": "Li Yang", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Bijian", "label": "Li Bijian", "shape": "dot"}, {"color": "#04c0b1", "id": "Lin Nan", "label": "Lin Nan", "shape": "dot"}, {"color": "#04c0b1", "id": "Fan Lingzhi", "label": "Fan Lingzhi", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Xin", "label": "Liu Xin", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Yutong", "label": "Liu Yutong", "shape": "dot"}, {"color": "#04c0b1", "id": "Luo Will", "label": "Luo Will", "shape": "dot"}, {"color": "#04c0b1", "id": "Ma Dashuai", "label": "Ma Dashuai", "shape": "dot"}, {"color": "#04c0b1", "id": "Tao Yuan (Martha Tao)", "label": "Tao Yuan (Martha Tao)", "shape": "dot"}, {"color": "#04c0b1", "id": "Martina Fuchs", "label": "Martina Fuchs", "shape": "dot"}, {"color": "#04c0b1", "id": "China Daily (Media Unlocked)", "label": "China Daily (Media Unlocked)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Lin (Melody Zhang)", "label": "Zhang Lin (Melody Zhang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Foreign Ministry Spokesperson", "label": "Foreign Ministry Spokesperson", "shape": "dot"}, {"color": "#04c0b1", "id": "Miao Xiaojuan", "label": "Miao Xiaojuan", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhou Yiqiu (Rachel Zhou / Miss Wow)", "label": "Zhou Yiqiu (Rachel Zhou / Miss Wow)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Meng (Monica Zhang)", "label": "Zhang Meng (Monica Zhang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Patrick Zheng", "label": "Patrick Zheng", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily Business (Modern China)", "label": "People\u0027s Daily Business (Modern China)", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily Life", "label": "People\u0027s Daily Life", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily Sport China", "label": "People\u0027s Daily Sport China", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily Traditional Chinese", "label": "People\u0027s Daily Traditional Chinese", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily Online Australia", "label": "People\u0027s Daily Online Australia", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Peijin", "label": "Zhang Peijin", "shape": "dot"}, {"color": "#04c0b1", "id": "Xu Pan Yiru", "label": "Xu Pan Yiru", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily App", "label": "People\u0027s Daily App", "shape": "dot"}, {"color": "#04c0b1", "id": "Phoenix TV News", "label": "Phoenix TV News", "shape": "dot"}, {"color": "#04c0b1", "id": "Gu Qianwen", "label": "Gu Qianwen", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Qingqing", "label": "Chen Qingqing", "shape": "dot"}, {"color": "#04c0b1", "id": "Ren Ke", "label": "Ren Ke", "shape": "dot"}, {"color": "#04c0b1", "id": "Bai Yunyi (Rita Bai)", "label": "Bai Yunyi (Rita Bai)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Hong (Sabrina Zhao)", "label": "Zhao Hong (Sabrina Zhao)", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Beautiful China", "label": "Discover Beautiful China", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Ziyu (Shannon Zhang)", "label": "Zhang Ziyu (Shannon Zhang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Shao Zheng", "label": "Shao Zheng", "shape": "dot"}, {"color": "#04c0b1", "id": "Shen Shiwei", "label": "Shen Shiwei", "shape": "dot"}, {"color": "#04c0b1", "id": "Hua Chunying", "label": "Hua Chunying", "shape": "dot"}, {"color": "#04c0b1", "id": "Hu Zhaoming", "label": "Hu Zhaoming", "shape": "dot"}, {"color": "#04c0b1", "id": "Sun Weide", "label": "Sun Weide", "shape": "dot"}, {"color": "#04c0b1", "id": "Su Yuting", "label": "Su Yuting", "shape": "dot"}, {"color": "#04c0b1", "id": "Suzhou Wuzhong", "label": "Suzhou Wuzhong", "shape": "dot"}, {"color": "#04c0b1", "id": "Meng Zhe", "label": "Meng Zhe", "shape": "dot"}, {"color": "#04c0b1", "id": "China Mosaic", "label": "China Mosaic", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN The Link", "label": "CGTN The Link", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN The Point with Liu Xin", "label": "CGTN The Point with Liu Xin", "shape": "dot"}, {"color": "#04c0b1", "id": "Dong Xue (Serena Dong)", "label": "Dong Xue (Serena Dong)", "shape": "dot"}, {"color": "#04c0b1", "id": "T-House", "label": "T-House", "shape": "dot"}, {"color": "#04c0b1", "id": "He Tianran", "label": "He Tianran", "shape": "dot"}, {"color": "#04c0b1", "id": "Tian Wei", "label": "Tian Wei", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Yimei (Vica Li)", "label": "Li Yimei (Vica Li)", "shape": "dot"}, {"color": "#04c0b1", "id": "Visit Chongqing", "label": "Visit Chongqing", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Xuejing", "label": "Wang Xuejing", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Guan (Michael Wang)", "label": "Wang Guan (Michael Wang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Xiaohui", "label": "Wang Xiaohui", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Wenwen", "label": "Wang Wenwen", "shape": "dot"}, {"color": "#04c0b1", "id": "Where Zhengzhou", "label": "Where Zhengzhou", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN World Insight with Tian Wei", "label": "CGTN World Insight with Tian Wei", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Tianyu (Evan Wang)", "label": "Wang Tianyu (Evan Wang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Wu Gang", "label": "Wu Gang", "shape": "dot"}, {"color": "#04c0b1", "id": "Wu Lei", "label": "Wu Lei", "shape": "dot"}, {"color": "#04c0b1", "id": "Wuxi, China", "label": "Wuxi, China", "shape": "dot"}, {"color": "#04c0b1", "id": "Xu Xinchen (Gerald Xinchen)", "label": "Xu Xinchen (Gerald Xinchen)", "shape": "dot"}, {"color": "#04c0b1", "id": "Chine Nouvelle", "label": "Chine Nouvelle", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Sci-Tech", "label": "Xinhua Sci-Tech", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Sports", "label": "Xinhua Sports", "shape": "dot"}, {"color": "#04c0b1", "id": "Xie Yongjun", "label": "Xie Yongjun", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Chinese", "label": "Xinhua Chinese", "shape": "dot"}, {"color": "#04c0b1", "id": "Shang Yang (Sylvia Shang)", "label": "Shang Yang (Sylvia Shang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Culture \u0026 Travel", "label": "Xinhua Culture \u0026 Travel", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Xinran", "label": "Zhang Xinran", "shape": "dot"}, {"color": "#04c0b1", "id": "Xi\u0027s moments", "label": "Xi\u0027s moments", "shape": "dot"}, {"color": "#04c0b1", "id": "Xu Zeyu Philip", "label": "Xu Zeyu Philip", "shape": "dot"}, {"color": "#04c0b1", "id": "Saina (Amy Saina)", "label": "Saina (Amy Saina)", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Yang", "label": "Liu Yang", "shape": "dot"}, {"color": "#04c0b1", "id": "Yang Rui", "label": "Yang Rui", "shape": "dot"}, {"color": "#04c0b1", "id": "Yang Zhao", "label": "Yang Zhao", "shape": "dot"}, {"color": "#04c0b1", "id": "Xu Yawen", "label": "Xu Yawen", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Fangqiang (Oliver Liu)", "label": "Liu Fangqiang (Oliver Liu)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Yunfei", "label": "Zhao Yunfei", "shape": "dot"}, {"color": "#04c0b1", "id": "Ji Yuqiao", "label": "Ji Yuqiao", "shape": "dot"}, {"color": "#04c0b1", "id": "Zou Yue", "label": "Zou Yue", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Ying", "label": "Zhao Ying", "shape": "dot"}, {"color": "#04c0b1", "id": "Zheng Junfeng", "label": "Zheng Junfeng", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhong Shi", "label": "Zhong Shi", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhou Li", "label": "Zhou Li", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Zichen", "label": "Wang Zichen", "shape": "dot"}, {"color": "#04c0b1", "id": "Zeng Ziyi", "label": "Zeng Ziyi", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Lijian", "label": "Zhao Lijian", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Zoom In", "label": "CGTN Zoom In", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Shilei (Sheila Zhang)", "label": "Zhang Shilei (Sheila Zhang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Yang Yating (Christina Yang)", "label": "Yang Yating (Christina Yang)", "shape": "dot"}, {"color": "#04c0b1", "id": "CCTV Asia Pacific", "label": "CCTV Asia Pacific", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Nature", "label": "CGTN Nature", "shape": "dot"}, {"color": "#04c0b1", "id": "China Plus Culture", "label": "China Plus Culture", "shape": "dot"}, {"color": "#04c0b1", "id": "China Plus News", "label": "China Plus News", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Australia", "label": "Chinese Embassy in Australia", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Crossover", "label": "CGTN Crossover", "shape": "dot"}, {"color": "#04c0b1", "id": "C The Difference", "label": "C The Difference", "shape": "dot"}, {"color": "#04c0b1", "id": "L\u00fc Qianqian (Lucy Lv)", "label": "L\u00fc Qianqian (Lucy Lv)", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Zexin (Skystroller)", "label": "Li Zexin (Skystroller)", "shape": "dot"}, {"color": "#04c0b1", "id": "Wu Yo Yo", "label": "Wu Yo Yo", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Americas Now", "label": "CGTN Americas Now", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN BizTalk", "label": "CGTN BizTalk", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Documentary", "label": "CGTN Documentary", "shape": "dot"}, {"color": "#04c0b1", "id": "Hi China", "label": "Hi China", "shape": "dot"}, {"color": "#04c0b1", "id": "China International Import Expo (CIIE)", "label": "China International Import Expo (CIIE)", "shape": "dot"}, {"color": "#04c0b1", "id": "China Plus", "label": "China Plus", "shape": "dot"}, {"color": "#04c0b1", "id": "Show Me China", "label": "Show Me China", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua (Spectrum China)", "label": "Xinhua (Spectrum China)", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN.tiktok", "label": "CGTN.tiktok", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Z", "label": "CGTN Z", "shape": "dot"}, {"color": "#04c0b1", "id": "Colorful China", "label": "Colorful China", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Ningxia", "label": "Discover Ningxia", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Tianjin", "label": "Discover Tianjin", "shape": "dot"}, {"color": "#04c0b1", "id": "Global Times (Glamour China)", "label": "Global Times (Glamour China)", "shape": "dot"}, {"color": "#04c0b1", "id": "Global Watch", "label": "Global Watch", "shape": "dot"}, {"color": "#04c0b1", "id": "NewsTok", "label": "NewsTok", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Our Planet Needs You", "label": "CGTN Our Planet Needs You", "shape": "dot"}, {"color": "#04c0b1", "id": "Panda Insight", "label": "Panda Insight", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Razor Science", "label": "CGTN Razor Science", "shape": "dot"}, {"color": "#04c0b1", "id": "The Optimist!", "label": "The Optimist!", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN The Agenda", "label": "CGTN The Agenda", "shape": "dot"}, {"color": "#04c0b1", "id": "Tang Knows", "label": "Tang Knows", "shape": "dot"}, {"color": "#04c0b1", "id": "Visit Beijing", "label": "Visit Beijing", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhejiang 520", "label": "Zhejiang 520", "shape": "dot"}, {"color": "#04c0b1", "id": "Travel in China", "label": "Travel in China", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Rediscovering China", "label": "CGTN Rediscovering China", "shape": "dot"}, {"color": "#04c0b1", "id": "China.com (English)", "label": "China.com (English)", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Online", "label": "CRI Online", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Min", "label": "Liu Min", "shape": "dot"}, {"color": "#04c0b1", "id": "Niu Honglin (Niu Niu)", "label": "Niu Honglin (Niu Niu)", "shape": "dot"}, {"color": "#04c0b1", "id": "Trending in China", "label": "Trending in China", "shape": "dot"}, {"color": "#04c0b1", "id": "Vica Li Eating Daily", "label": "Vica Li Eating Daily", "shape": "dot"}, {"color": "#04c0b1", "id": "New Marco Polo", "label": "New Marco Polo", "shape": "dot"}, {"color": "#e87551", "id": "Canada", "label": "Canada", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Fran\u00e7ais", "label": "CGTN Fran\u00e7ais", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Calgary", "label": "Chinese Consulate General in Calgary", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Montr\u00e9al", "label": "Chinese Consulate General in Montr\u00e9al", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Canada", "label": "Chinese Embassy in Canada", "shape": "dot"}, {"color": "#04c0b1", "id": "China.org.cn (French)", "label": "China.org.cn (French)", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Vancouver", "label": "Chinese Consulate General in Vancouver", "shape": "dot"}, {"color": "#04c0b1", "id": "Chlo\u00e9 Zhou", "label": "Chlo\u00e9 Zhou", "shape": "dot"}, {"color": "#04c0b1", "id": "Xu Zhike (Coco Studio)", "label": "Xu Zhike (Coco Studio)", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Fran\u00e7ais", "label": "CRI Fran\u00e7ais", "shape": "dot"}, {"color": "#04c0b1", "id": "Han Yingya (Lena Han / LenaStudio)", "label": "Han Yingya (Lena Han / LenaStudio)", "shape": "dot"}, {"color": "#04c0b1", "id": "Jie Lynn (Lynn\u0027s Fantasy)", "label": "Jie Lynn (Lynn\u0027s Fantasy)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Shanhui (Mon P\u00e9kin Express / Jacky Zhang)", "label": "Zhang Shanhui (Mon P\u00e9kin Express / Jacky Zhang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Xu Li", "label": "Xu Li", "shape": "dot"}, {"color": "#04c0b1", "id": "Jiang Yuan (J\u0027Y Pense)", "label": "Jiang Yuan (J\u0027Y Pense)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhu Jingtian (Tiantian)", "label": "Zhu Jingtian (Tiantian)", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Bing", "label": "Wang Bing", "shape": "dot"}, {"color": "#04c0b1", "id": "Haiwai Net (Canada Fusion Media Centre)", "label": "Haiwai Net (Canada Fusion Media Centre)", "shape": "dot"}, {"color": "#04c0b1", "id": "Secrets de chef", "label": "Secrets de chef", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Songmei (M\u00e9lina Zhao)", "label": "Zhao Songmei (M\u00e9lina Zhao)", "shape": "dot"}, {"color": "#e87551", "id": "New Zealand", "label": "New Zealand", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Christchurch", "label": "Chinese Consulate General in Christchurch", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in New Zealand", "label": "Chinese Embassy in New Zealand", "shape": "dot"}, {"color": "#e87551", "id": "United Kingdom", "label": "United Kingdom", "shape": "dot"}, {"color": "#04c0b1", "id": "Zheng Zeguang", "label": "Zheng Zeguang", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Belfast", "label": "Chinese Consulate General in Belfast", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Meifang", "label": "Zhang Meifang", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Jun", "label": "Zhang Jun", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Edinburgh", "label": "Chinese Consulate General in Edinburgh", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in United Nations (NYC)", "label": "Chinese Embassy in United Nations (NYC)", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in United Kingdom (UK)", "label": "Chinese Embassy in United Kingdom (UK)", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Yuyin", "label": "Liu Yuyin", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Mingjie", "label": "Wang Mingjie", "shape": "dot"}, {"color": "#04c0b1", "id": "Yang Zhiyu", "label": "Yang Zhiyu", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua London", "label": "Xinhua London", "shape": "dot"}, {"color": "#e87551", "id": "United States of America", "label": "United States of America", "shape": "dot"}, {"color": "#04c0b1", "id": "Cui Tiankai", "label": "Cui Tiankai", "shape": "dot"}, {"color": "#04c0b1", "id": "Qin Gang", "label": "Qin Gang", "shape": "dot"}, {"color": "#04c0b1", "id": "Xie Feng", "label": "Xie Feng", "shape": "dot"}, {"color": "#04c0b1", "id": "Huang Ping", "label": "Huang Ping", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN America", "label": "CGTN America", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN DC Producers", "label": "CGTN DC Producers", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Ping", "label": "Zhang Ping", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in New York", "label": "Chinese Consulate General in New York", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Chicago", "label": "Chinese Consulate General in Chicago", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in United States", "label": "Chinese Embassy in United States", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in San Francisco", "label": "Chinese Consulate General in San Francisco", "shape": "dot"}, {"color": "#04c0b1", "id": "Haiwai Net (People\u0027s Daily Overseas)", "label": "Haiwai Net (People\u0027s Daily Overseas)", "shape": "dot"}, {"color": "#04c0b1", "id": "Haiwai Net (US Fusion Center)", "label": "Haiwai Net (US Fusion Center)", "shape": "dot"}, {"color": "#04c0b1", "id": "Panda Paws", "label": "Panda Paws", "shape": "dot"}, {"color": "#04c0b1", "id": "Pandaorama", "label": "Pandaorama", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily USA", "label": "People\u0027s Daily USA", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Pengyu", "label": "Liu Pengyu", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua North America", "label": "Xinhua North America", "shape": "dot"}, {"color": "#04c0b1", "id": "Phoenix US TV (iFeng)", "label": "Phoenix US TV (iFeng)", "shape": "dot"}, {"color": "#04c0b1", "id": "China Plus America", "label": "China Plus America", "shape": "dot"}, {"color": "#e87551", "id": "Ireland", "label": "Ireland", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhu Jing", "label": "Zhu Jing", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Europe", "label": "CGTN Europe", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Europe Breaking News", "label": "CGTN Europe Breaking News", "shape": "dot"}, {"color": "#04c0b1", "id": "China Daily EU Bureau", "label": "China Daily EU Bureau", "shape": "dot"}, {"color": "#04c0b1", "id": "China Daily Europe", "label": "China Daily Europe", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Ireland", "label": "Chinese Embassy in Ireland", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in EU", "label": "Chinese Embassy in EU", "shape": "dot"}, {"color": "#04c0b1", "id": "Shan Ni\u0027er (Yummy Shanny)", "label": "Shan Ni\u0027er (Yummy Shanny)", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Esperanto (\u0108ina Radio Internacia)", "label": "CRI Esperanto (\u0108ina Radio Internacia)", "shape": "dot"}, {"color": "#e87551", "id": "China", "label": "China", "shape": "dot"}, {"color": "#04c0b1", "id": "All-China Students\u0027 Federation", "label": "All-China Students\u0027 Federation", "shape": "dot"}, {"color": "#04c0b1", "id": "Yunnan Gateway", "label": "Yunnan Gateway", "shape": "dot"}, {"color": "#04c0b1", "id": "Andy Boreham", "label": "Andy Boreham", "shape": "dot"}, {"color": "#04c0b1", "id": "Diba", "label": "Diba", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Jiangxi", "label": "Discover Jiangxi", "shape": "dot"}, {"color": "#04c0b1", "id": "Beijing Review", "label": "Beijing Review", "shape": "dot"}, {"color": "#04c0b1", "id": "BJD Review", "label": "BJD Review", "shape": "dot"}, {"color": "#04c0b1", "id": "CCTV+", "label": "CCTV+", "shape": "dot"}, {"color": "#04c0b1", "id": "CCTV News", "label": "CCTV News", "shape": "dot"}, {"color": "#04c0b1", "id": "China Daily Hong Kong", "label": "China Daily Hong Kong", "shape": "dot"}, {"color": "#04c0b1", "id": "Xiamen, China", "label": "Xiamen, China", "shape": "dot"}, {"color": "#04c0b1", "id": "China Youth Daily", "label": "China Youth Daily", "shape": "dot"}, {"color": "#04c0b1", "id": "Yangtze View World", "label": "Yangtze View World", "shape": "dot"}, {"color": "#04c0b1", "id": "China Content Center", "label": "China Content Center", "shape": "dot"}, {"color": "#04c0b1", "id": "China News Service (CNS) Agency", "label": "China News Service (CNS) Agency", "shape": "dot"}, {"color": "#04c0b1", "id": "DIOC", "label": "DIOC", "shape": "dot"}, {"color": "#04c0b1", "id": "DotDot News", "label": "DotDot News", "shape": "dot"}, {"color": "#04c0b1", "id": "Dragon TV", "label": "Dragon TV", "shape": "dot"}, {"color": "#04c0b1", "id": "Discover Xinjiang", "label": "Discover Xinjiang", "shape": "dot"}, {"color": "#04c0b1", "id": "China News Service Net (eCNS)", "label": "China News Service Net (eCNS)", "shape": "dot"}, {"color": "#04c0b1", "id": "Fuzhou City", "label": "Fuzhou City", "shape": "dot"}, {"color": "#04c0b1", "id": "Yin Yue (Gabriel Y. Yin)", "label": "Yin Yue (Gabriel Y. Yin)", "shape": "dot"}, {"color": "#04c0b1", "id": "Global Times", "label": "Global Times", "shape": "dot"}, {"color": "#04c0b1", "id": "Guancha Syndicate News", "label": "Guancha Syndicate News", "shape": "dot"}, {"color": "#04c0b1", "id": "Guangming Daily", "label": "Guangming Daily", "shape": "dot"}, {"color": "#04c0b1", "id": "Guilin, China", "label": "Guilin, China", "shape": "dot"}, {"color": "#04c0b1", "id": "Guyan Muchan", "label": "Guyan Muchan", "shape": "dot"}, {"color": "#04c0b1", "id": "Henan TV", "label": "Henan TV", "shape": "dot"}, {"color": "#04c0b1", "id": "Global Times Net", "label": "Global Times Net", "shape": "dot"}, {"color": "#04c0b1", "id": "Hunan Times", "label": "Hunan Times", "shape": "dot"}, {"color": "#04c0b1", "id": "Charming Changzhou", "label": "Charming Changzhou", "shape": "dot"}, {"color": "#04c0b1", "id": "iChongqing", "label": "iChongqing", "shape": "dot"}, {"color": "#04c0b1", "id": "Insight Ningbo", "label": "Insight Ningbo", "shape": "dot"}, {"color": "#04c0b1", "id": "Jilin, China", "label": "Jilin, China", "shape": "dot"}, {"color": "#04c0b1", "id": "Jilin Daily", "label": "Jilin Daily", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Xin (Emily Liu)", "label": "Liu Xin (Emily Liu)", "shape": "dot"}, {"color": "#04c0b1", "id": "Love Jiaxing", "label": "Love Jiaxing", "shape": "dot"}, {"color": "#04c0b1", "id": "Modern Express Post", "label": "Modern Express Post", "shape": "dot"}, {"color": "#04c0b1", "id": "Ministry of Commerce (MOFCOM)", "label": "Ministry of Commerce (MOFCOM)", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily", "label": "People\u0027s Daily", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily Hong Kong", "label": "People\u0027s Daily Hong Kong", "shape": "dot"}, {"color": "#04c0b1", "id": "Qiushi", "label": "Qiushi", "shape": "dot"}, {"color": "#04c0b1", "id": "Guancha Syndicate", "label": "Guancha Syndicate", "shape": "dot"}, {"color": "#04c0b1", "id": "Hao Zhangyu", "label": "Hao Zhangyu", "shape": "dot"}, {"color": "#04c0b1", "id": "Sanya, China", "label": "Sanya, China", "shape": "dot"}, {"color": "#04c0b1", "id": "Shaanxi Moments", "label": "Shaanxi Moments", "shape": "dot"}, {"color": "#04c0b1", "id": "Shanghai Daily SHINE", "label": "Shanghai Daily SHINE", "shape": "dot"}, {"color": "#04c0b1", "id": "Shanghai Eye", "label": "Shanghai Eye", "shape": "dot"}, {"color": "#04c0b1", "id": "Shaoxing: A Gateway to China\u0027s History", "label": "Shaoxing: A Gateway to China\u0027s History", "shape": "dot"}, {"color": "#04c0b1", "id": "Center.Sichuan", "label": "Center.Sichuan", "shape": "dot"}, {"color": "#04c0b1", "id": "Sixth Tone", "label": "Sixth Tone", "shape": "dot"}, {"color": "#04c0b1", "id": "Kankan News", "label": "Kankan News", "shape": "dot"}, {"color": "#04c0b1", "id": "Space Town Wenchang", "label": "Space Town Wenchang", "shape": "dot"}, {"color": "#04c0b1", "id": "Ta Kung News", "label": "Ta Kung News", "shape": "dot"}, {"color": "#04c0b1", "id": "Ta Kung Wen Wei", "label": "Ta Kung Wen Wei", "shape": "dot"}, {"color": "#04c0b1", "id": "Paper, The", "label": "Paper, The", "shape": "dot"}, {"color": "#04c0b1", "id": "Guangdong Today", "label": "Guangdong Today", "shape": "dot"}, {"color": "#04c0b1", "id": "Tibet Today", "label": "Tibet Today", "shape": "dot"}, {"color": "#04c0b1", "id": "Tide News", "label": "Tide News", "shape": "dot"}, {"color": "#04c0b1", "id": "Today Review", "label": "Today Review", "shape": "dot"}, {"color": "#04c0b1", "id": "Tong Shuo", "label": "Tong Shuo", "shape": "dot"}, {"color": "#04c0b1", "id": "Tong Media HK", "label": "Tong Media HK", "shape": "dot"}, {"color": "#04c0b1", "id": "Visit Sanya", "label": "Visit Sanya", "shape": "dot"}, {"color": "#04c0b1", "id": "Friendly Shandong", "label": "Friendly Shandong", "shape": "dot"}, {"color": "#04c0b1", "id": "Suzhou, China", "label": "Suzhou, China", "shape": "dot"}, {"color": "#04c0b1", "id": "Wave Media", "label": "Wave Media", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua News Agency", "label": "Xinhua News Agency", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Net", "label": "Xinhua Net", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinjiang Channel", "label": "Xinjiang Channel", "shape": "dot"}, {"color": "#04c0b1", "id": "Yicai", "label": "Yicai", "shape": "dot"}, {"color": "#04c0b1", "id": "Yicai Global", "label": "Yicai Global", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhanhao", "label": "Zhanhao", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhengguan News", "label": "Zhengguan News", "shape": "dot"}, {"color": "#04c0b1", "id": "CCTV Chinese", "label": "CCTV Chinese", "shape": "dot"}, {"color": "#04c0b1", "id": "CCTV.com", "label": "CCTV.com", "shape": "dot"}, {"color": "#04c0b1", "id": "Phoenix Online", "label": "Phoenix Online", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Shi (Julian Waghann)", "label": "Wang Shi (Julian Waghann)", "shape": "dot"}, {"color": "#04c0b1", "id": "Mango TV International", "label": "Mango TV International", "shape": "dot"}, {"color": "#04c0b1", "id": "Phoenix HK TV (iFeng)", "label": "Phoenix HK TV (iFeng)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhengguan Media", "label": "Zhengguan Media", "shape": "dot"}, {"color": "#04c0b1", "id": "CCTV4 International", "label": "CCTV4 International", "shape": "dot"}, {"color": "#04c0b1", "id": "Anhui TV Station", "label": "Anhui TV Station", "shape": "dot"}, {"color": "#04c0b1", "id": "Guangxi Satellite TV", "label": "Guangxi Satellite TV", "shape": "dot"}, {"color": "#04c0b1", "id": "Heilongjiang JTV", "label": "Heilongjiang JTV", "shape": "dot"}, {"color": "#04c0b1", "id": "Dragon TV Crossover", "label": "Dragon TV Crossover", "shape": "dot"}, {"color": "#04c0b1", "id": "Gansu TV Official", "label": "Gansu TV Official", "shape": "dot"}, {"color": "#04c0b1", "id": "PLA Daily", "label": "PLA Daily", "shape": "dot"}, {"color": "#04c0b1", "id": "Hubei TV", "label": "Hubei TV", "shape": "dot"}, {"color": "#04c0b1", "id": "Litchi Live", "label": "Litchi Live", "shape": "dot"}, {"color": "#04c0b1", "id": "Hubei Announcements (Open Hubei)", "label": "Hubei Announcements (Open Hubei)", "shape": "dot"}, {"color": "#04c0b1", "id": "Phoenix TV (Finance)", "label": "Phoenix TV (Finance)", "shape": "dot"}, {"color": "#04c0b1", "id": "Phoenix TV", "label": "Phoenix TV", "shape": "dot"}, {"color": "#04c0b1", "id": "Shanxi Radio and TV Station", "label": "Shanxi Radio and TV Station", "shape": "dot"}, {"color": "#04c0b1", "id": "Shanghai TV", "label": "Shanghai TV", "shape": "dot"}, {"color": "#04c0b1", "id": "Jiupai News", "label": "Jiupai News", "shape": "dot"}, {"color": "#04c0b1", "id": "The Cover News", "label": "The Cover News", "shape": "dot"}, {"color": "#04c0b1", "id": "Yunnan TV", "label": "Yunnan TV", "shape": "dot"}, {"color": "#04c0b1", "id": "CCTV3 Variety", "label": "CCTV3 Variety", "shape": "dot"}, {"color": "#04c0b1", "id": "Hangzhou 2022", "label": "Hangzhou 2022", "shape": "dot"}, {"color": "#04c0b1", "id": "Henan TV (HNTV)", "label": "Henan TV (HNTV)", "shape": "dot"}, {"color": "#04c0b1", "id": "International Channel Shanghai (ICS)", "label": "International Channel Shanghai (ICS)", "shape": "dot"}, {"color": "#04c0b1", "id": "Little Turtle Lisa (Elle)", "label": "Little Turtle Lisa (Elle)", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinwen Qishi Lu", "label": "Xinwen Qishi Lu", "shape": "dot"}, {"color": "#04c0b1", "id": "Visit Jiangsu", "label": "Visit Jiangsu", "shape": "dot"}, {"color": "#04c0b1", "id": "Visit Shaanxi", "label": "Visit Shaanxi", "shape": "dot"}, {"color": "#04c0b1", "id": "Dot News 88", "label": "Dot News 88", "shape": "dot"}, {"color": "#04c0b1", "id": "CCTV Kuaikan", "label": "CCTV Kuaikan", "shape": "dot"}, {"color": "#04c0b1", "id": "JSChina_Com_Cn", "label": "JSChina_Com_Cn", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Office of the Commissioner in Hong Kong", "label": "Chinese Office of the Commissioner in Hong Kong", "shape": "dot"}, {"color": "#04c0b1", "id": "Shiting Wenshan", "label": "Shiting Wenshan", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Hong Kong", "label": "Xinhua Hong Kong", "shape": "dot"}, {"color": "#e87551", "id": "Afghanistan", "label": "Afghanistan", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Zhong (Dechinghutay / Ghoti)", "label": "Chen Zhong (Dechinghutay / Ghoti)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Xing", "label": "Zhao Xing", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Pashto", "label": "CRI Pashto", "shape": "dot"}, {"color": "#04c0b1", "id": "Yue Xiaoyong", "label": "Yue Xiaoyong", "shape": "dot"}, {"color": "#e87551", "id": "Switzerland", "label": "Switzerland", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Xu", "label": "Chen Xu", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Zurich", "label": "Chinese Consulate General in Zurich", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Switzerland", "label": "Chinese Embassy in Switzerland", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Switzerland (UN Missions)", "label": "Chinese Embassy in Switzerland (UN Missions)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Qinghua", "label": "Zhao Qinghua", "shape": "dot"}, {"color": "#e87551", "id": "Austria", "label": "Austria", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Song", "label": "Li Song", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Austria", "label": "Chinese Embassy in Austria", "shape": "dot"}, {"color": "#04c0b1", "id": "Qi Mei", "label": "Qi Mei", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Xiaosi", "label": "Li Xiaosi", "shape": "dot"}, {"color": "#e87551", "id": "Indonesia", "label": "Indonesia", "shape": "dot"}, {"color": "#04c0b1", "id": "Lu Kang", "label": "Lu Kang", "shape": "dot"}, {"color": "#04c0b1", "id": "Hou Yanqi", "label": "Hou Yanqi", "shape": "dot"}, {"color": "#04c0b1", "id": "Gao Huijun", "label": "Gao Huijun", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Indonesia", "label": "Chinese Embassy in Indonesia", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Indonesian", "label": "CRI Indonesian", "shape": "dot"}, {"color": "#e87551", "id": "United Arab Emirates", "label": "United Arab Emirates", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Yiming", "label": "Zhang Yiming", "shape": "dot"}, {"color": "#04c0b1", "id": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "label": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "shape": "dot"}, {"color": "#04c0b1", "id": "Cao Yi", "label": "Cao Yi", "shape": "dot"}, {"color": "#04c0b1", "id": "China Consulate in Dubai", "label": "China Consulate in Dubai", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Arabic", "label": "CGTN Arabic", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Arabic", "label": "CRI Arabic", "shape": "dot"}, {"color": "#04c0b1", "id": "Muyi Dima (\u0645\u0648\u064a\u064a)", "label": "Muyi Dima (\u0645\u0648\u064a\u064a)", "shape": "dot"}, {"color": "#04c0b1", "id": "Ye Xinhua (Suad Ye)", "label": "Ye Xinhua (Suad Ye)", "shape": "dot"}, {"color": "#04c0b1", "id": "Assia", "label": "Assia", "shape": "dot"}, {"color": "#04c0b1", "id": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "label": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "shape": "dot"}, {"color": "#04c0b1", "id": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "label": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "shape": "dot"}, {"color": "#e87551", "id": "Belgium", "label": "Belgium", "shape": "dot"}, {"color": "#04c0b1", "id": "Cao Zhongming", "label": "Cao Zhongming", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Belgium", "label": "Chinese Embassy in Belgium", "shape": "dot"}, {"color": "#04c0b1", "id": "Fu Cong", "label": "Fu Cong", "shape": "dot"}, {"color": "#e87551", "id": "Bulgaria", "label": "Bulgaria", "shape": "dot"}, {"color": "#04c0b1", "id": "Dong Xiaojun", "label": "Dong Xiaojun", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Bulgaria", "label": "Chinese Embassy in Bulgaria", "shape": "dot"}, {"color": "#e87551", "id": "Croatia", "label": "Croatia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Croatia", "label": "Chinese Embassy in Croatia", "shape": "dot"}, {"color": "#e87551", "id": "Cyprus", "label": "Cyprus", "shape": "dot"}, {"color": "#04c0b1", "id": "Huang Xingyuan", "label": "Huang Xingyuan", "shape": "dot"}, {"color": "#e87551", "id": "Czechia", "label": "Czechia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Czech Rep.", "label": "Chinese Embassy in Czech Rep.", "shape": "dot"}, {"color": "#e87551", "id": "Denmark", "label": "Denmark", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Denmark", "label": "Chinese Embassy in Denmark", "shape": "dot"}, {"color": "#e87551", "id": "Estonia", "label": "Estonia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Estonia", "label": "Chinese Embassy in Estonia", "shape": "dot"}, {"color": "#e87551", "id": "Finland", "label": "Finland", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Huixin", "label": "Chen Huixin", "shape": "dot"}, {"color": "#e87551", "id": "France", "label": "France", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in France", "label": "Chinese Embassy in France", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Lyon", "label": "Chinese Consulate General in Lyon", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Strasbourg", "label": "Chinese Consulate General in Strasbourg", "shape": "dot"}, {"color": "#e87551", "id": "Germany", "label": "Germany", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Frankfurt am Main", "label": "Chinese Consulate General in Frankfurt am Main", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Munich", "label": "Chinese Consulate General in Munich", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Germany", "label": "Chinese Embassy in Germany", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI German", "label": "CRI German", "shape": "dot"}, {"color": "#04c0b1", "id": "Du Xiaohui", "label": "Du Xiaohui", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Hamburg", "label": "Chinese Consulate General in Hamburg", "shape": "dot"}, {"color": "#04c0b1", "id": "Yu Mama (Mama Yu)", "label": "Yu Mama (Mama Yu)", "shape": "dot"}, {"color": "#04c0b1", "id": "Mengyu", "label": "Mengyu", "shape": "dot"}, {"color": "#e87551", "id": "Greece", "label": "Greece", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Greece", "label": "Chinese Embassy in Greece", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Greek", "label": "CRI Greek", "shape": "dot"}, {"color": "#04c0b1", "id": "Xiao Junzheng", "label": "Xiao Junzheng", "shape": "dot"}, {"color": "#e87551", "id": "Hungary", "label": "Hungary", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Hungary", "label": "Chinese Embassy in Hungary", "shape": "dot"}, {"color": "#e87551", "id": "Italy", "label": "Italy", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Italy", "label": "Chinese Embassy in Italy", "shape": "dot"}, {"color": "#04c0b1", "id": "Jia Guide", "label": "Jia Guide", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Italian (Radio Cina Internazionale)", "label": "CRI Italian (Radio Cina Internazionale)", "shape": "dot"}, {"color": "#e87551", "id": "Latvia", "label": "Latvia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Latvia", "label": "Chinese Embassy in Latvia", "shape": "dot"}, {"color": "#e87551", "id": "Lithuania", "label": "Lithuania", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Lithuania", "label": "Chinese Embassy in Lithuania", "shape": "dot"}, {"color": "#04c0b1", "id": "Shen Zhifei", "label": "Shen Zhifei", "shape": "dot"}, {"color": "#e87551", "id": "Luxembourg", "label": "Luxembourg", "shape": "dot"}, {"color": "#e87551", "id": "Malta", "label": "Malta", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Malta", "label": "Chinese Embassy in Malta", "shape": "dot"}, {"color": "#04c0b1", "id": "Yu Dunhai", "label": "Yu Dunhai", "shape": "dot"}, {"color": "#e87551", "id": "Netherlands", "label": "Netherlands", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Permanent Mission to the OPCW", "label": "Chinese Permanent Mission to the OPCW", "shape": "dot"}, {"color": "#04c0b1", "id": "Tan Jian", "label": "Tan Jian", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Netherlands", "label": "Chinese Embassy in Netherlands", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Yan", "label": "Liu Yan", "shape": "dot"}, {"color": "#04c0b1", "id": "Xu Hong", "label": "Xu Hong", "shape": "dot"}, {"color": "#e87551", "id": "Poland", "label": "Poland", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Guangyuan", "label": "Liu Guangyuan", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Poland", "label": "Chinese Embassy in Poland", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Polish", "label": "CRI Polish", "shape": "dot"}, {"color": "#e87551", "id": "Portugal", "label": "Portugal", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Portugal", "label": "Chinese Embassy in Portugal", "shape": "dot"}, {"color": "#04c0b1", "id": "Mundo China", "label": "Mundo China", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Portuguese", "label": "CRI Portuguese", "shape": "dot"}, {"color": "#e87551", "id": "Romania", "label": "Romania", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Romanian", "label": "CRI Romanian", "shape": "dot"}, {"color": "#e87551", "id": "Slovakia", "label": "Slovakia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Slovakia", "label": "Chinese Embassy in Slovakia", "shape": "dot"}, {"color": "#e87551", "id": "Slovenia", "label": "Slovenia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Slovenia", "label": "Chinese Embassy in Slovenia", "shape": "dot"}, {"color": "#e87551", "id": "Spain", "label": "Spain", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Ping", "label": "Chen Ping", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Spain", "label": "Chinese Embassy in Spain", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Barcelona", "label": "Chinese Consulate General in Barcelona", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Bo", "label": "Liu Bo", "shape": "dot"}, {"color": "#04c0b1", "id": "Sun Xueying (Teresa Sun / Un T\u00e9 con Teresa)", "label": "Sun Xueying (Teresa Sun / Un T\u00e9 con Teresa)", "shape": "dot"}, {"color": "#04c0b1", "id": "Yao Fei", "label": "Yao Fei", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Yiwen", "label": "Zhang Yiwen", "shape": "dot"}, {"color": "#04c0b1", "id": "He Beibei", "label": "He Beibei", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Espa\u00f1ol", "label": "CGTN Espa\u00f1ol", "shape": "dot"}, {"color": "#04c0b1", "id": "Jimena Li Yu (Jimena a tu clic)", "label": "Jimena Li Yu (Jimena a tu clic)", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Espa\u00f1ol", "label": "Xinhua Espa\u00f1ol", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Mengchu (Kaka / Shakala Ka)", "label": "Wang Mengchu (Kaka / Shakala Ka)", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Espa\u00f1ol (Onda China)", "label": "CRI Espa\u00f1ol (Onda China)", "shape": "dot"}, {"color": "#04c0b1", "id": "Deng Ying (Viva Studio)", "label": "Deng Ying (Viva Studio)", "shape": "dot"}, {"color": "#04c0b1", "id": "Radio Internacional de China en espa\u00f1ol", "label": "Radio Internacional de China en espa\u00f1ol", "shape": "dot"}, {"color": "#04c0b1", "id": "Shi Shuai (Letizia Shi / Letizia Con Chino)", "label": "Shi Shuai (Letizia Shi / Letizia Con Chino)", "shape": "dot"}, {"color": "#e87551", "id": "Sweden", "label": "Sweden", "shape": "dot"}, {"color": "#e87551", "id": "Nigeria", "label": "Nigeria", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Yuxi", "label": "Liu Yuxi", "shape": "dot"}, {"color": "#04c0b1", "id": "China Daily Africa", "label": "China Daily Africa", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Africa", "label": "CGTN Africa", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Nigeria", "label": "Chinese Embassy in Nigeria", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Hausa", "label": "CRI Hausa", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Yongfeng", "label": "Liu Yongfeng", "shape": "dot"}, {"color": "#04c0b1", "id": "Wu Peng", "label": "Wu Peng", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Baogang", "label": "Zhao Baogang", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Murtala", "label": "Zhang Murtala", "shape": "dot"}, {"color": "#e87551", "id": "Egypt", "label": "Egypt", "shape": "dot"}, {"color": "#04c0b1", "id": "Liao Liqiang", "label": "Liao Liqiang", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Egypt", "label": "Chinese Embassy in Egypt", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Xin (Fayhaa Wang)", "label": "Wang Xin (Fayhaa Wang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Wu Danni (Danni Report)", "label": "Wu Danni (Danni Report)", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Alexandria", "label": "Chinese Consulate General in Alexandria", "shape": "dot"}, {"color": "#e87551", "id": "South Africa", "label": "South Africa", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Xiaodong", "label": "Chen Xiaodong", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Johannesburg", "label": "Chinese Consulate General in Johannesburg", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Cape Town", "label": "Chinese Consulate General in Cape Town", "shape": "dot"}, {"color": "#04c0b1", "id": "China Plus South Africa", "label": "China Plus South Africa", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in South Africa", "label": "Chinese Embassy in South Africa", "shape": "dot"}, {"color": "#e87551", "id": "Algeria", "label": "Algeria", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Algeria", "label": "Chinese Embassy in Algeria", "shape": "dot"}, {"color": "#04c0b1", "id": "Yu Yangtao (\u062d\u0643\u064a\u0645)", "label": "Yu Yangtao (\u062d\u0643\u064a\u0645)", "shape": "dot"}, {"color": "#04c0b1", "id": "Quan Quan", "label": "Quan Quan", "shape": "dot"}, {"color": "#04c0b1", "id": "Ruan Yaying", "label": "Ruan Yaying", "shape": "dot"}, {"color": "#e87551", "id": "Morocco", "label": "Morocco", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Morocco", "label": "Chinese Embassy in Morocco", "shape": "dot"}, {"color": "#e87551", "id": "Lesotho", "label": "Lesotho", "shape": "dot"}, {"color": "#04c0b1", "id": "Lei Kezhong", "label": "Lei Kezhong", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Lesotho", "label": "Chinese Embassy in Lesotho", "shape": "dot"}, {"color": "#e87551", "id": "Iran", "label": "Iran", "shape": "dot"}, {"color": "#04c0b1", "id": "Chang Hua", "label": "Chang Hua", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Iran", "label": "Chinese Embassy in Iran", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Persian", "label": "CRI Persian", "shape": "dot"}, {"color": "#04c0b1", "id": "Lin Simiao (Anahita Lin)", "label": "Lin Simiao (Anahita Lin)", "shape": "dot"}, {"color": "#e87551", "id": "Serbia", "label": "Serbia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Bo", "label": "Chen Bo", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Serbia", "label": "Chinese Embassy in Serbia", "shape": "dot"}, {"color": "#e87551", "id": "Saudi Arabia", "label": "Saudi Arabia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Weiqing", "label": "Chen Weiqing", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Jeddah", "label": "Chinese Consulate General in Jeddah", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Saudi Arabia", "label": "Chinese Embassy in Saudi Arabia", "shape": "dot"}, {"color": "#e87551", "id": "Burundi", "label": "Burundi", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Burundi", "label": "Chinese Embassy in Burundi", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Swahili", "label": "CRI Swahili", "shape": "dot"}, {"color": "#e87551", "id": "Cameroon", "label": "Cameroon", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Cameroon", "label": "Chinese Embassy in Cameroon", "shape": "dot"}, {"color": "#e87551", "id": "Democratic Rep. Congo", "label": "Democratic Rep. Congo", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Dem. Rep. of Congo (Kinshasa)", "label": "Chinese Embassy in Dem. Rep. of Congo (Kinshasa)", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Rep. of Congo (Brazzaville)", "label": "Chinese Embassy in Rep. of Congo (Brazzaville)", "shape": "dot"}, {"color": "#e87551", "id": "Chad", "label": "Chad", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Chad", "label": "Chinese Embassy in Chad", "shape": "dot"}, {"color": "#e87551", "id": "Trinidad and Tobago", "label": "Trinidad and Tobago", "shape": "dot"}, {"color": "#04c0b1", "id": "Fang Qiu", "label": "Fang Qiu", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Trinidad and Tobago", "label": "Chinese Embassy in Trinidad and Tobago", "shape": "dot"}, {"color": "#e87551", "id": "Japan", "label": "Japan", "shape": "dot"}, {"color": "#04c0b1", "id": "Kong Xuanyou", "label": "Kong Xuanyou", "shape": "dot"}, {"color": "#04c0b1", "id": "Wu Jianghao", "label": "Wu Jianghao", "shape": "dot"}, {"color": "#04c0b1", "id": "China.com (Japanese)", "label": "China.com (Japanese)", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Osaka", "label": "Chinese Consulate General in Osaka", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Fukuoka", "label": "Chinese Consulate General in Fukuoka", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Nagasaki", "label": "Chinese Consulate General in Nagasaki", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Nagoya", "label": "Chinese Consulate General in Nagoya", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Niigata", "label": "Chinese Consulate General in Niigata", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Japan", "label": "Chinese Embassy in Japan", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Japanese", "label": "CRI Japanese", "shape": "dot"}, {"color": "#04c0b1", "id": "Lu Guijin", "label": "Lu Guijin", "shape": "dot"}, {"color": "#04c0b1", "id": "Cao Bing", "label": "Cao Bing", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Yingying (A-Chan / A\u3061\u3083\u3093)", "label": "Wang Yingying (A-Chan / A\u3061\u3083\u3093)", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Japanese", "label": "Xinhua Japanese", "shape": "dot"}, {"color": "#04c0b1", "id": "Xue Jian", "label": "Xue Jian", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Yikang (Kathie Zhang / \u65b0\u7c73\u30de\u30de\u30fb\u3044\u30fc\u304b\u3093)", "label": "Zhang Yikang (Kathie Zhang / \u65b0\u7c73\u30de\u30de\u30fb\u3044\u30fc\u304b\u3093)", "shape": "dot"}, {"color": "#04c0b1", "id": "People\u0027s Daily Japanese", "label": "People\u0027s Daily Japanese", "shape": "dot"}, {"color": "#04c0b1", "id": "China Consulate Osaka", "label": "China Consulate Osaka", "shape": "dot"}, {"color": "#04c0b1", "id": "Haiwai Net (Japan Fusion Media Center)", "label": "Haiwai Net (Japan Fusion Media Center)", "shape": "dot"}, {"color": "#04c0b1", "id": "iPanda (Japanese)", "label": "iPanda (Japanese)", "shape": "dot"}, {"color": "#e87551", "id": "Suriname", "label": "Suriname", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Quan", "label": "Liu Quan", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Suriname", "label": "Chinese Embassy in Suriname", "shape": "dot"}, {"color": "#e87551", "id": "South Korea", "label": "South Korea", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Xiaoming", "label": "Liu Xiaoming", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Jeju-Do", "label": "Chinese Consulate General in Jeju-Do", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Ribiao", "label": "Chen Ribiao", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in South Korea", "label": "Chinese Embassy in South Korea", "shape": "dot"}, {"color": "#04c0b1", "id": "Xiao Song", "label": "Xiao Song", "shape": "dot"}, {"color": "#04c0b1", "id": "Raniya (\ub77c\ub2c8)", "label": "Raniya (\ub77c\ub2c8)", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Korean", "label": "CRI Korean", "shape": "dot"}, {"color": "#e87551", "id": "Pakistan", "label": "Pakistan", "shape": "dot"}, {"color": "#04c0b1", "id": "Nong Rong", "label": "Nong Rong", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Pakistan", "label": "Chinese Embassy in Pakistan", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Urdu", "label": "CRI Urdu", "shape": "dot"}, {"color": "#04c0b1", "id": "FM98 Dosti Channel", "label": "FM98 Dosti Channel", "shape": "dot"}, {"color": "#04c0b1", "id": "Gwadar Pro", "label": "Gwadar Pro", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Xianfeng", "label": "Wang Xianfeng", "shape": "dot"}, {"color": "#04c0b1", "id": "Song Yichu", "label": "Song Yichu", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Heqing", "label": "Zhang Heqing", "shape": "dot"}, {"color": "#04c0b1", "id": "Noreen", "label": "Noreen", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Iffat", "label": "Wang Iffat", "shape": "dot"}, {"color": "#04c0b1", "id": "Chosi", "label": "Chosi", "shape": "dot"}, {"color": "#04c0b1", "id": "Tabasum", "label": "Tabasum", "shape": "dot"}, {"color": "#e87551", "id": "Qatar", "label": "Qatar", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhou Jian", "label": "Zhou Jian", "shape": "dot"}, {"color": "#e87551", "id": "Bahrain", "label": "Bahrain", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Bahrain", "label": "Chinese Embassy in Bahrain", "shape": "dot"}, {"color": "#e87551", "id": "Iraq", "label": "Iraq", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Iraq", "label": "Chinese Embassy in Iraq", "shape": "dot"}, {"color": "#e87551", "id": "Jordan", "label": "Jordan", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Jordan", "label": "Chinese Embassy in Jordan", "shape": "dot"}, {"color": "#e87551", "id": "Kuwait", "label": "Kuwait", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Kuwait", "label": "Chinese Embassy in Kuwait", "shape": "dot"}, {"color": "#e87551", "id": "Lebanon", "label": "Lebanon", "shape": "dot"}, {"color": "#04c0b1", "id": "Qian Minjian", "label": "Qian Minjian", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Lebanon", "label": "Chinese Embassy in Lebanon", "shape": "dot"}, {"color": "#e87551", "id": "Libya", "label": "Libya", "shape": "dot"}, {"color": "#e87551", "id": "Oman", "label": "Oman", "shape": "dot"}, {"color": "#e87551", "id": "Sudan", "label": "Sudan", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Sudan", "label": "Chinese Embassy in Sudan", "shape": "dot"}, {"color": "#e87551", "id": "Syria", "label": "Syria", "shape": "dot"}, {"color": "#e87551", "id": "Tunisia", "label": "Tunisia", "shape": "dot"}, {"color": "#e87551", "id": "Yemen", "label": "Yemen", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Yemen", "label": "Chinese Embassy in Yemen", "shape": "dot"}, {"color": "#e87551", "id": "Russia", "label": "Russia", "shape": "dot"}, {"color": "#04c0b1", "id": "CGTN Russian", "label": "CGTN Russian", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Russia", "label": "Chinese Embassy in Russia", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Qitong (QiTong Channel / \u0426\u0438\u0442\u0443\u043d \u0427\u0436\u0430\u043d)", "label": "Zhang Qitong (QiTong Channel / \u0426\u0438\u0442\u0443\u043d \u0427\u0436\u0430\u043d)", "shape": "dot"}, {"color": "#04c0b1", "id": "Yan Yiqiang", "label": "Yan Yiqiang", "shape": "dot"}, {"color": "#e87551", "id": "Kenya", "label": "Kenya", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Chen", "label": "Liu Chen", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Kenya", "label": "Chinese Embassy in Kenya", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Africa", "label": "Xinhua Africa", "shape": "dot"}, {"color": "#e87551", "id": "Tanzania", "label": "Tanzania", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Mingjian", "label": "Chen Mingjian", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Tanzania", "label": "Chinese Embassy in Tanzania", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Zhisheng", "label": "Zhang Zhisheng", "shape": "dot"}, {"color": "#e87551", "id": "Somalia", "label": "Somalia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Wendi", "label": "Chen Wendi", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Somalia", "label": "Chinese Embassy in Somalia", "shape": "dot"}, {"color": "#e87551", "id": "India", "label": "India", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in India", "label": "Chinese Embassy in India", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Xiaojian", "label": "Wang Xiaojian", "shape": "dot"}, {"color": "#04c0b1", "id": "Kong Xianhua", "label": "Kong Xianhua", "shape": "dot"}, {"color": "#04c0b1", "id": "CMG Hindi", "label": "CMG Hindi", "shape": "dot"}, {"color": "#04c0b1", "id": "Zha Liyou", "label": "Zha Liyou", "shape": "dot"}, {"color": "#04c0b1", "id": "Poongothai (\u0b85\u0bb1\u0bc1\u0b9a\u0bc1\u0bb5\u0bc8)", "label": "Poongothai (\u0b85\u0bb1\u0bc1\u0b9a\u0bc1\u0bb5\u0bc8)", "shape": "dot"}, {"color": "#04c0b1", "id": "Nilaani (\u0ba8\u0bbf\u0bb2\u0bbe\u0ba9\u0bbf)", "label": "Nilaani (\u0ba8\u0bbf\u0bb2\u0bbe\u0ba9\u0bbf)", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua New Delhi", "label": "Xinhua New Delhi", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Tamil", "label": "CRI Tamil", "shape": "dot"}, {"color": "#04c0b1", "id": "Ji Humin", "label": "Ji Humin", "shape": "dot"}, {"color": "#04c0b1", "id": "Sun Qing (Ilakkaya / \u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bbf\u0baf\u0bbe)", "label": "Sun Qing (Ilakkaya / \u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bbf\u0baf\u0bbe)", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Kolkata", "label": "Chinese Consulate General in Kolkata", "shape": "dot"}, {"color": "#e87551", "id": "Maldives", "label": "Maldives", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Lixin", "label": "Wang Lixin", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Maldives", "label": "Chinese Embassy in Maldives", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang QH", "label": "Wang QH", "shape": "dot"}, {"color": "#e87551", "id": "Zimbabwe", "label": "Zimbabwe", "shape": "dot"}, {"color": "#04c0b1", "id": "Guo Shaochun", "label": "Guo Shaochun", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Zimbabwe", "label": "Chinese Embassy in Zimbabwe", "shape": "dot"}, {"color": "#e87551", "id": "Colombia", "label": "Colombia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Colombia", "label": "Chinese Embassy in Colombia", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhu Jingyang", "label": "Zhu Jingyang", "shape": "dot"}, {"color": "#e87551", "id": "Ukraine", "label": "Ukraine", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Ukraine", "label": "Chinese Embassy in Ukraine", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Ukrainian", "label": "CRI Ukrainian", "shape": "dot"}, {"color": "#e87551", "id": "Brunei", "label": "Brunei", "shape": "dot"}, {"color": "#e87551", "id": "Cambodia", "label": "Cambodia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Cambodia", "label": "Chinese Embassy in Cambodia", "shape": "dot"}, {"color": "#e87551", "id": "Laos", "label": "Laos", "shape": "dot"}, {"color": "#04c0b1", "id": "Cai Baofeng (Song Siao / \u0eaa\u0ead\u0e87\u0eaa\u0ec8\u0ebd\u0ea7)", "label": "Cai Baofeng (Song Siao / \u0eaa\u0ead\u0e87\u0eaa\u0ec8\u0ebd\u0ea7)", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Laos", "label": "CRI Laos", "shape": "dot"}, {"color": "#e87551", "id": "Malaysia", "label": "Malaysia", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Malaysian", "label": "CRI Malaysian", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Kuching", "label": "Chinese Consulate General in Kuching", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Penang", "label": "Chinese Consulate General in Penang", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Malaysia", "label": "Chinese Embassy in Malaysia", "shape": "dot"}, {"color": "#e87551", "id": "Myanmar (Burma)", "label": "Myanmar (Burma)", "shape": "dot"}, {"color": "#e87551", "id": "Philippines", "label": "Philippines", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Philippines", "label": "Chinese Embassy in Philippines", "shape": "dot"}, {"color": "#e87551", "id": "Singapore", "label": "Singapore", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Singapore", "label": "Chinese Embassy in Singapore", "shape": "dot"}, {"color": "#04c0b1", "id": "Yang Gang", "label": "Yang Gang", "shape": "dot"}, {"color": "#e87551", "id": "Thailand", "label": "Thailand", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Thailand", "label": "Chinese Embassy in Thailand", "shape": "dot"}, {"color": "#04c0b1", "id": "Lin Hao", "label": "Lin Hao", "shape": "dot"}, {"color": "#04c0b1", "id": "iPanda Thailand", "label": "iPanda Thailand", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Thai", "label": "CRI Thai", "shape": "dot"}, {"color": "#04c0b1", "id": "Ping Ping (L\u1ee5k ch\u1ea1d k\u1ea1b p\u0304hing p\u0304hing / \u0e25\u0e36\u0e01\u0e0a\u0e31\u0e14\u0e01\u0e31\u0e1a\u0e1c\u0e34\u0e07\u0e1c\u0e34\u0e07)", "label": "Ping Ping (L\u1ee5k ch\u1ea1d k\u1ea1b p\u0304hing p\u0304hing / \u0e25\u0e36\u0e01\u0e0a\u0e31\u0e14\u0e01\u0e31\u0e1a\u0e1c\u0e34\u0e07\u0e1c\u0e34\u0e07)", "shape": "dot"}, {"color": "#e87551", "id": "Vietnam", "label": "Vietnam", "shape": "dot"}, {"color": "#04c0b1", "id": "H\u1ea1 Vy", "label": "H\u1ea1 Vy", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Hoc Tieng Trung ", "label": "CRI Hoc Tieng Trung ", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI H\u00f4\u0323p th\u01b0 Ngo\u0323c A\u0301nh", "label": "CRI H\u00f4\u0323p th\u01b0 Ngo\u0323c A\u0301nh", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Vietnamese (\u0110a\u0300i Pha\u0301t thanh Qu\u00f4\u0301c t\u00ea\u0301 Trung Qu\u00f4\u0301c)", "label": "CRI Vietnamese (\u0110a\u0300i Pha\u0301t thanh Qu\u00f4\u0301c t\u00ea\u0301 Trung Qu\u00f4\u0301c)", "shape": "dot"}, {"color": "#04c0b1", "id": "Di\u00ea\u0303n \u0111a\u0300n Tu\u00f4\u0309i tre\u0309 ", "label": "Di\u00ea\u0303n \u0111a\u0300n Tu\u00f4\u0309i tre\u0309 ", "shape": "dot"}, {"color": "#04c0b1", "id": "M \u0026 V Studio", "label": "M \u0026 V Studio", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Ho Chi Minh City", "label": "Chinese Consulate General in Ho Chi Minh City", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Vietnam", "label": "Chinese Embassy in Vietnam", "shape": "dot"}, {"color": "#e87551", "id": "Samoa", "label": "Samoa", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Samoa", "label": "Chinese Embassy in Samoa", "shape": "dot"}, {"color": "#e87551", "id": "Kazakhstan", "label": "Kazakhstan", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Almaty", "label": "Chinese Consulate General in Almaty", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Kazakhstan", "label": "Chinese Embassy in Kazakhstan", "shape": "dot"}, {"color": "#e87551", "id": "Turkey", "label": "Turkey", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Istanbul Spokesperson", "label": "Chinese Consulate General in Istanbul Spokesperson", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI T\u00fcrk\u00e7e", "label": "CRI T\u00fcrk\u00e7e", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Turkey", "label": "Chinese Embassy in Turkey", "shape": "dot"}, {"color": "#e87551", "id": "South Sudan", "label": "South Sudan", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in South Sudan", "label": "Chinese Embassy in South Sudan", "shape": "dot"}, {"color": "#e87551", "id": "Ethiopia", "label": "Ethiopia", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Zhiyuan", "label": "Zhao Zhiyuan", "shape": "dot"}, {"color": "#e87551", "id": "Chile", "label": "Chile", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Chile", "label": "Chinese Embassy in Chile", "shape": "dot"}, {"color": "#e87551", "id": "Dominican Republic", "label": "Dominican Republic", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Dominican Republic", "label": "Chinese Embassy in Dominican Republic", "shape": "dot"}, {"color": "#e87551", "id": "Angola", "label": "Angola", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Angola", "label": "Chinese Embassy in Angola", "shape": "dot"}, {"color": "#e87551", "id": "Antigua and Barbuda", "label": "Antigua and Barbuda", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Antigua and Barbuda", "label": "Chinese Embassy in Antigua and Barbuda", "shape": "dot"}, {"color": "#e87551", "id": "Argentina", "label": "Argentina", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Argentina", "label": "Chinese Embassy in Argentina", "shape": "dot"}, {"color": "#e87551", "id": "Malawi", "label": "Malawi", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Malawi", "label": "Chinese Embassy in Malawi", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Malawi (Economic Counsellor)", "label": "Chinese Embassy in Malawi (Economic Counsellor)", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Hongyang", "label": "Liu Hongyang", "shape": "dot"}, {"color": "#e87551", "id": "Albania", "label": "Albania", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Albania", "label": "Chinese Embassy in Albania", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Albanian (Radio Ejani)", "label": "CRI Albanian (Radio Ejani)", "shape": "dot"}, {"color": "#e87551", "id": "Eritrea", "label": "Eritrea", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Eritrea", "label": "Chinese Embassy in Eritrea", "shape": "dot"}, {"color": "#e87551", "id": "Grenada", "label": "Grenada", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Grenada", "label": "Chinese Embassy in Grenada", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Yongchen", "label": "Zhao Yongchen", "shape": "dot"}, {"color": "#04c0b1", "id": "Wei Hongtian", "label": "Wei Hongtian", "shape": "dot"}, {"color": "#e87551", "id": "Ghana", "label": "Ghana", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Ghana", "label": "Chinese Embassy in Ghana", "shape": "dot"}, {"color": "#e87551", "id": "Mauritania", "label": "Mauritania", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Mauritania", "label": "Chinese Embassy in Mauritania", "shape": "dot"}, {"color": "#e87551", "id": "Rwanda", "label": "Rwanda", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Rwanda", "label": "Chinese Embassy in Rwanda", "shape": "dot"}, {"color": "#e87551", "id": "Namibia", "label": "Namibia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Namibia", "label": "Chinese Embassy in Namibia", "shape": "dot"}, {"color": "#e87551", "id": "Peru", "label": "Peru", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Peru", "label": "Chinese Embassy in Peru", "shape": "dot"}, {"color": "#e87551", "id": "Sri Lanka", "label": "Sri Lanka", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Sri Lanka", "label": "Chinese Embassy in Sri Lanka", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Sinhala", "label": "CRI Sinhala", "shape": "dot"}, {"color": "#04c0b1", "id": "Waruni JZ", "label": "Waruni JZ", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Rasika", "label": "Liu Rasika", "shape": "dot"}, {"color": "#04c0b1", "id": "Seda Mali", "label": "Seda Mali", "shape": "dot"}, {"color": "#e87551", "id": "Mali", "label": "Mali", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Mali", "label": "Chinese Embassy in Mali", "shape": "dot"}, {"color": "#e87551", "id": "Guinea", "label": "Guinea", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Guinea", "label": "Chinese Embassy in Guinea", "shape": "dot"}, {"color": "#e87551", "id": "Senegal", "label": "Senegal", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in S\u00e9n\u00e9gal", "label": "Chinese Embassy in S\u00e9n\u00e9gal", "shape": "dot"}, {"color": "#e87551", "id": "Djibouti", "label": "Djibouti", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Djibouti", "label": "Chinese Embassy in Djibouti", "shape": "dot"}, {"color": "#e87551", "id": "Gambia", "label": "Gambia", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Jin", "label": "Liu Jin", "shape": "dot"}, {"color": "#e87551", "id": "Fiji", "label": "Fiji", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Fiji", "label": "Chinese Embassy in Fiji", "shape": "dot"}, {"color": "#e87551", "id": "Papua New Guinea", "label": "Papua New Guinea", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Papua New Guinea", "label": "Chinese Embassy in Papua New Guinea", "shape": "dot"}, {"color": "#e87551", "id": "Uganda", "label": "Uganda", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Uganda", "label": "Chinese Embassy in Uganda", "shape": "dot"}, {"color": "#04c0b1", "id": "Fang Yi", "label": "Fang Yi", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Lizhong", "label": "Zhang Lizhong", "shape": "dot"}, {"color": "#e87551", "id": "Montenegro", "label": "Montenegro", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Montenegro", "label": "Chinese Embassy in Montenegro", "shape": "dot"}, {"color": "#e87551", "id": "Liberia", "label": "Liberia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Liberia", "label": "Chinese Embassy in Liberia", "shape": "dot"}, {"color": "#e87551", "id": "Brazil", "label": "Brazil", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Consulate General in Rio de Janeiro", "label": "Chinese Consulate General in Rio de Janeiro", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Brazil", "label": "Chinese Embassy in Brazil", "shape": "dot"}, {"color": "#04c0b1", "id": "Tian Yuzhen", "label": "Tian Yuzhen", "shape": "dot"}, {"color": "#04c0b1", "id": "Gabriel Liu", "label": "Gabriel Liu", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Peijie", "label": "Chen Peijie", "shape": "dot"}, {"color": "#04c0b1", "id": "Lucas Zhuang", "label": "Lucas Zhuang", "shape": "dot"}, {"color": "#04c0b1", "id": "Yang Wanming", "label": "Yang Wanming", "shape": "dot"}, {"color": "#04c0b1", "id": "Xing Luana (Luana em Pequim)", "label": "Xing Luana (Luana em Pequim)", "shape": "dot"}, {"color": "#e87551", "id": "Mongolia", "label": "Mongolia", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Mongolian", "label": "CRI Mongolian", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Mongolia", "label": "Chinese Embassy in Mongolia", "shape": "dot"}, {"color": "#e87551", "id": "Botswana", "label": "Botswana", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhao Yanbo", "label": "Zhao Yanbo", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Botswana", "label": "Chinese Embassy in Botswana", "shape": "dot"}, {"color": "#e87551", "id": "Ecuador", "label": "Ecuador", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Ecuador", "label": "Chinese Embassy in Ecuador", "shape": "dot"}, {"color": "#e87551", "id": "El Salvador", "label": "El Salvador", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in El Salvador", "label": "Chinese Embassy in El Salvador", "shape": "dot"}, {"color": "#04c0b1", "id": "Ou Jianhong", "label": "Ou Jianhong", "shape": "dot"}, {"color": "#e87551", "id": "Uruguay", "label": "Uruguay", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Gang", "label": "Wang Gang", "shape": "dot"}, {"color": "#e87551", "id": "Tonga", "label": "Tonga", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Tonga", "label": "Chinese Embassy in Tonga", "shape": "dot"}, {"color": "#e87551", "id": "Cuba", "label": "Cuba", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Cuba", "label": "Chinese Embassy in Cuba", "shape": "dot"}, {"color": "#04c0b1", "id": "Ma Hui", "label": "Ma Hui", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Buxin", "label": "Zhang Buxin", "shape": "dot"}, {"color": "#e87551", "id": "Equatorial Guinea", "label": "Equatorial Guinea", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Equatorial Guinea", "label": "Chinese Embassy in Equatorial Guinea", "shape": "dot"}, {"color": "#e87551", "id": "Mexico", "label": "Mexico", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Mexico", "label": "Chinese Embassy in Mexico", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Run", "label": "Zhang Run", "shape": "dot"}, {"color": "#04c0b1", "id": "Jing Feng", "label": "Jing Feng", "shape": "dot"}, {"color": "#e87551", "id": "Panama", "label": "Panama", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Panama", "label": "Chinese Embassy in Panama", "shape": "dot"}, {"color": "#04c0b1", "id": "Jiang Wei (Julio Jiang)", "label": "Jiang Wei (Julio Jiang)", "shape": "dot"}, {"color": "#04c0b1", "id": "Liu Chang", "label": "Liu Chang", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Jian", "label": "Wang Jian", "shape": "dot"}, {"color": "#04c0b1", "id": "Wei Qiang", "label": "Wei Qiang", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Wuji", "label": "Li Wuji", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Xi", "label": "Zhang Xi", "shape": "dot"}, {"color": "#e87551", "id": "Venezuela", "label": "Venezuela", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Venezuela", "label": "Chinese Embassy in Venezuela", "shape": "dot"}, {"color": "#04c0b1", "id": "Li Baorong", "label": "Li Baorong", "shape": "dot"}, {"color": "#e87551", "id": "Iceland", "label": "Iceland", "shape": "dot"}, {"color": "#04c0b1", "id": "He Rulong", "label": "He Rulong", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Iceland", "label": "Chinese Embassy in Iceland", "shape": "dot"}, {"color": "#e87551", "id": "S\u00e3o Tom\u00e9 and Pr\u00edncipe", "label": "S\u00e3o Tom\u00e9 and Pr\u00edncipe", "shape": "dot"}, {"color": "#04c0b1", "id": "Hu Bin", "label": "Hu Bin", "shape": "dot"}, {"color": "#e87551", "id": "Mauritius", "label": "Mauritius", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhu Liying", "label": "Zhu Liying", "shape": "dot"}, {"color": "#e87551", "id": "Costa Rica", "label": "Costa Rica", "shape": "dot"}, {"color": "#04c0b1", "id": "Xu Tiefei", "label": "Xu Tiefei", "shape": "dot"}, {"color": "#e87551", "id": "Myanmar", "label": "Myanmar", "shape": "dot"}, {"color": "#04c0b1", "id": "Mingala News", "label": "Mingala News", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Myanmar", "label": "CRI Myanmar", "shape": "dot"}, {"color": "#04c0b1", "id": "Xinhua Myanmar (\u1019\u103c\u1014\u103a\u1019\u102c)", "label": "Xinhua Myanmar (\u1019\u103c\u1014\u103a\u1019\u102c)", "shape": "dot"}, {"color": "#04c0b1", "id": "Zhang Niki (Hnin Pwint Phyu)", "label": "Zhang Niki (Hnin Pwint Phyu)", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Myanmar", "label": "Chinese Embassy in Myanmar", "shape": "dot"}, {"color": "#e87551", "id": "Cape Verde", "label": "Cape Verde", "shape": "dot"}, {"color": "#e87551", "id": "Guinea-Bissau", "label": "Guinea-Bissau", "shape": "dot"}, {"color": "#e87551", "id": "Mozambique", "label": "Mozambique", "shape": "dot"}, {"color": "#e87551", "id": "Nepal", "label": "Nepal", "shape": "dot"}, {"color": "#04c0b1", "id": "Chen Song", "label": "Chen Song", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy In Nepal", "label": "Chinese Embassy In Nepal", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Nepali", "label": "CRI Nepali", "shape": "dot"}, {"color": "#e87551", "id": "Israel", "label": "Israel", "shape": "dot"}, {"color": "#04c0b1", "id": "Hu Jianlin (Shalevetya / \u05e9\u05dc\u05d4\u05d1\u05ea\u05d9\u05d4)", "label": "Hu Jianlin (Shalevetya / \u05e9\u05dc\u05d4\u05d1\u05ea\u05d9\u05d4)", "shape": "dot"}, {"color": "#04c0b1", "id": "CRI Hebrew", "label": "CRI Hebrew", "shape": "dot"}, {"color": "#04c0b1", "id": "Xi Xiaoqi (Itzik Hasini)", "label": "Xi Xiaoqi (Itzik Hasini)", "shape": "dot"}, {"color": "#e87551", "id": "Bolivia", "label": "Bolivia", "shape": "dot"}, {"color": "#04c0b1", "id": "Wang Jialei", "label": "Wang Jialei", "shape": "dot"}, {"color": "#e87551", "id": "Norway", "label": "Norway", "shape": "dot"}, {"color": "#04c0b1", "id": "Yang Yiding", "label": "Yang Yiding", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Norway", "label": "Chinese Embassy in Norway", "shape": "dot"}, {"color": "#e87551", "id": "Barbados", "label": "Barbados", "shape": "dot"}, {"color": "#04c0b1", "id": "Yan Xiusheng", "label": "Yan Xiusheng", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Barbados", "label": "Chinese Embassy in Barbados", "shape": "dot"}, {"color": "#e87551", "id": "Belarus", "label": "Belarus", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Belarus", "label": "Chinese Embassy in Belarus", "shape": "dot"}, {"color": "#e87551", "id": "Kyrgyzstan", "label": "Kyrgyzstan", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Kyrgyzstan", "label": "Chinese Embassy in Kyrgyzstan", "shape": "dot"}, {"color": "#e87551", "id": "Taiwan", "label": "Taiwan", "shape": "dot"}, {"color": "#04c0b1", "id": "Haixia Daobao", "label": "Haixia Daobao", "shape": "dot"}, {"color": "#e87551", "id": "Bangladesh", "label": "Bangladesh", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Bangladesh", "label": "Chinese Embassy in Bangladesh", "shape": "dot"}, {"color": "#e87551", "id": "Guyana", "label": "Guyana", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Guyana", "label": "Chinese Embassy in Guyana", "shape": "dot"}, {"color": "#e87551", "id": "North Macedonia", "label": "North Macedonia", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in North Macedonia", "label": "Chinese Embassy in North Macedonia", "shape": "dot"}, {"color": "#e87551", "id": "Sierra Leone", "label": "Sierra Leone", "shape": "dot"}, {"color": "#04c0b1", "id": "Chinese Embassy in Sierra Leone", "label": "Chinese Embassy in Sierra Leone", "shape": "dot"}]);
edges = new vis.DataSet([{"arrows": "to", "from": "Yang Xinmeng (Abby Yang)", "to": "Australia"}, {"arrows": "to", "from": "CGTN Culture Express", "to": "Australia"}, {"arrows": "to", "from": "Yang Sheng", "to": "Australia"}, {"arrows": "to", "from": "Media Challengers", "to": "Australia"}, {"arrows": "to", "from": "Ge Anna", "to": "Australia"}, {"arrows": "to", "from": "Wang Zeyu (Anosi Wang)", "to": "Australia"}, {"arrows": "to", "from": "We Are China", "to": "Australia"}, {"arrows": "to", "from": "CGTN Assignment Asia", "to": "Australia"}, {"arrows": "to", "from": "Beijing Channel", "to": "Australia"}, {"arrows": "to", "from": "Discover Beijing", "to": "Australia"}, {"arrows": "to", "from": "Belt and Road News Network", "to": "Australia"}, {"arrows": "to", "from": "Zheng Chenlei (Blair Zheng)", "to": "Australia"}, {"arrows": "to", "from": "Tang Bo", "to": "Australia"}, {"arrows": "to", "from": "Wang Cong", "to": "Australia"}, {"arrows": "to", "from": "Cao Li", "to": "Australia"}, {"arrows": "to", "from": "Visual China", "to": "Australia"}, {"arrows": "to", "from": "China Watch", "to": "Australia"}, {"arrows": "to", "from": "CD Opinion", "to": "Australia"}, {"arrows": "to", "from": "China Daily Sci-tech", "to": "Australia"}, {"arrows": "to", "from": "Cen Ziyuan (Jasmine Cen)", "to": "Australia"}, {"arrows": "to", "from": "CGTN Culture", "to": "Australia"}, {"arrows": "to", "from": "CGTN Dialogue", "to": "Australia"}, {"arrows": "to", "from": "CGTN Inheritors", "to": "Australia"}, {"arrows": "to", "from": "CGTN Style", "to": "Australia"}, {"arrows": "to", "from": "CGTN Business", "to": "Australia"}, {"arrows": "to", "from": "CGTN Food", "to": "Australia"}, {"arrows": "to", "from": "CGTN Global Business", "to": "Australia"}, {"arrows": "to", "from": "CGTN Graphics", "to": "Australia"}, {"arrows": "to", "from": "CGTN Movies", "to": "Australia"}, {"arrows": "to", "from": "CGTN", "to": "Australia"}, {"arrows": "to", "from": "CGTN Radio", "to": "Australia"}, {"arrows": "to", "from": "CGTN Sports", "to": "Australia"}, {"arrows": "to", "from": "CGTN Sports Scene", "to": "Australia"}, {"arrows": "to", "from": "CGTN Stories", "to": "Australia"}, {"arrows": "to", "from": "CGTN Tech", "to": "Australia"}, {"arrows": "to", "from": "CGTN Travel", "to": "Australia"}, {"arrows": "to", "from": "CGTN Travelogue", "to": "Australia"}, {"arrows": "to", "from": "CGTN United Nations", "to": "Australia"}, {"arrows": "to", "from": "Chen Juan", "to": "Australia"}, {"arrows": "to", "from": "Chen Weihua", "to": "Australia"}, {"arrows": "to", "from": "China Focus", "to": "Australia"}, {"arrows": "to", "from": "Lin Jing", "to": "Australia"}, {"arrows": "to", "from": "CGTN China Takeaway", "to": "Australia"}, {"arrows": "to", "from": "Chinese Consulate General in Sydney", "to": "Australia"}, {"arrows": "to", "from": "China Culture", "to": "Australia"}, {"arrows": "to", "from": "China Daily", "to": "Australia"}, {"arrows": "to", "from": "China Daily Life", "to": "Australia"}, {"arrows": "to", "from": "China Daily Asia", "to": "Australia"}, {"arrows": "to", "from": "China Daily World", "to": "Australia"}, {"arrows": "to", "from": "China.org.cn (English)", "to": "Australia"}, {"arrows": "to", "from": "China Plus Podcasts", "to": "Australia"}, {"arrows": "to", "from": "People\u0027s Daily China Science", "to": "Australia"}, {"arrows": "to", "from": "State Council Information Office (SCIO)", "to": "Australia"}, {"arrows": "to", "from": "China Today", "to": "Australia"}, {"arrows": "to", "from": "Chinese Consulate General in Melbourne", "to": "Australia"}, {"arrows": "to", "from": "China International Development Cooperation Agency (CIDCA)", "to": "Australia"}, {"arrows": "to", "from": "CGTN Closer to China", "to": "Australia"}, {"arrows": "to", "from": "CRI Breaking News", "to": "Australia"}, {"arrows": "to", "from": "China State Construction (CSCEC)", "to": "Australia"}, {"arrows": "to", "from": "Zhu Danni (Danni Zhu)", "to": "Australia"}, {"arrows": "to", "from": "Wang Di\u0027er (Deer Wang)", "to": "Australia"}, {"arrows": "to", "from": "Ding Heng", "to": "Australia"}, {"arrows": "to", "from": "Discover Binhai", "to": "Australia"}, {"arrows": "to", "from": "Discover Guangxi", "to": "Australia"}, {"arrows": "to", "from": "Discover Jilin", "to": "Australia"}, {"arrows": "to", "from": "Discover Nanjing", "to": "Australia"}, {"arrows": "to", "from": "Discover Zhejiang", "to": "Australia"}, {"arrows": "to", "from": "Li Dongning", "to": "Australia"}, {"arrows": "to", "from": "Du Ping", "to": "Australia"}, {"arrows": "to", "from": "Economic Daily", "to": "Australia"}, {"arrows": "to", "from": "Cheng Weitong", "to": "Australia"}, {"arrows": "to", "from": "Explore Gansu", "to": "Australia"}, {"arrows": "to", "from": "Feel China", "to": "Australia"}, {"arrows": "to", "from": "Xinhua Fly Over China", "to": "Australia"}, {"arrows": "to", "from": "CGTN Frontline", "to": "Australia"}, {"arrows": "to", "from": "CGTN Full Frame", "to": "Australia"}, {"arrows": "to", "from": "Guo Meiping (Gladys Guo)", "to": "Australia"}, {"arrows": "to", "from": "GT Business Source", "to": "Australia"}, {"arrows": "to", "from": "GT Life", "to": "Australia"}, {"arrows": "to", "from": "CGTN Global Watch", "to": "Australia"}, {"arrows": "to", "from": "Jiangsu, China", "to": "Australia"}, {"arrows": "to", "from": "GT Opinion", "to": "Australia"}, {"arrows": "to", "from": "Guan Xin", "to": "Australia"}, {"arrows": "to", "from": "Gong Zhe", "to": "Australia"}, {"arrows": "to", "from": "He Weiwei", "to": "Australia"}, {"arrows": "to", "from": "Wang Hao", "to": "Australia"}, {"arrows": "to", "from": "Zhang Hongtie", "to": "Australia"}, {"arrows": "to", "from": "Huang Jiyuan", "to": "Australia"}, {"arrows": "to", "from": "Zhao Huanxin", "to": "Australia"}, {"arrows": "to", "from": "Hu Xijin", "to": "Australia"}, {"arrows": "to", "from": "Discover China", "to": "Australia"}, {"arrows": "to", "from": "Guizhou, China", "to": "Australia"}, {"arrows": "to", "from": "In Qingdao (Meet Qingdao)", "to": "Australia"}, {"arrows": "to", "from": "iPanda", "to": "Australia"}, {"arrows": "to", "from": "Insight Xiangshan", "to": "Australia"}, {"arrows": "to", "from": "Zhejiang, China", "to": "Australia"}, {"arrows": "to", "from": "Zang Shijie (Jessica Zang)", "to": "Australia"}, {"arrows": "to", "from": "Jiang Jiang", "to": "Australia"}, {"arrows": "to", "from": "Li Jianhua", "to": "Australia"}, {"arrows": "to", "from": "Li Jingjing", "to": "Australia"}, {"arrows": "to", "from": "Ji Tao", "to": "Australia"}, {"arrows": "to", "from": "Kui Yingchun (Kate Kui)", "to": "Australia"}, {"arrows": "to", "from": "Mi Xue (Katie Mi)", "to": "Australia"}, {"arrows": "to", "from": "Liu Kun", "to": "Australia"}, {"arrows": "to", "from": "Learn Chinese", "to": "Australia"}, {"arrows": "to", "from": "Li Qian (Leona Li)", "to": "Australia"}, {"arrows": "to", "from": "Li Yang", "to": "Australia"}, {"arrows": "to", "from": "Li Bijian", "to": "Australia"}, {"arrows": "to", "from": "Lin Nan", "to": "Australia"}, {"arrows": "to", "from": "Fan Lingzhi", "to": "Australia"}, {"arrows": "to", "from": "Liu Xin", "to": "Australia"}, {"arrows": "to", "from": "Liu Yutong", "to": "Australia"}, {"arrows": "to", "from": "Luo Will", "to": "Australia"}, {"arrows": "to", "from": "Ma Dashuai", "to": "Australia"}, {"arrows": "to", "from": "Tao Yuan (Martha Tao)", "to": "Australia"}, {"arrows": "to", "from": "Martina Fuchs", "to": "Australia"}, {"arrows": "to", "from": "China Daily (Media Unlocked)", "to": "Australia"}, {"arrows": "to", "from": "Zhang Lin (Melody Zhang)", "to": "Australia"}, {"arrows": "to", "from": "Foreign Ministry Spokesperson", "to": "Australia"}, {"arrows": "to", "from": "Miao Xiaojuan", "to": "Australia"}, {"arrows": "to", "from": "Zhou Yiqiu (Rachel Zhou / Miss Wow)", "to": "Australia"}, {"arrows": "to", "from": "Zhang Meng (Monica Zhang)", "to": "Australia"}, {"arrows": "to", "from": "Patrick Zheng", "to": "Australia"}, {"arrows": "to", "from": "People\u0027s Daily Business (Modern China)", "to": "Australia"}, {"arrows": "to", "from": "People\u0027s Daily Life", "to": "Australia"}, {"arrows": "to", "from": "People\u0027s Daily Sport China", "to": "Australia"}, {"arrows": "to", "from": "People\u0027s Daily Traditional Chinese", "to": "Australia"}, {"arrows": "to", "from": "People\u0027s Daily Online Australia", "to": "Australia"}, {"arrows": "to", "from": "Zhang Peijin", "to": "Australia"}, {"arrows": "to", "from": "Xu Pan Yiru", "to": "Australia"}, {"arrows": "to", "from": "People\u0027s Daily App", "to": "Australia"}, {"arrows": "to", "from": "Phoenix TV News", "to": "Australia"}, {"arrows": "to", "from": "Gu Qianwen", "to": "Australia"}, {"arrows": "to", "from": "Chen Qingqing", "to": "Australia"}, {"arrows": "to", "from": "Ren Ke", "to": "Australia"}, {"arrows": "to", "from": "Bai Yunyi (Rita Bai)", "to": "Australia"}, {"arrows": "to", "from": "Zhao Hong (Sabrina Zhao)", "to": "Australia"}, {"arrows": "to", "from": "Discover Beautiful China", "to": "Australia"}, {"arrows": "to", "from": "Zhang Ziyu (Shannon Zhang)", "to": "Australia"}, {"arrows": "to", "from": "Shao Zheng", "to": "Australia"}, {"arrows": "to", "from": "Shen Shiwei", "to": "Australia"}, {"arrows": "to", "from": "Hua Chunying", "to": "Australia"}, {"arrows": "to", "from": "Hu Zhaoming", "to": "Australia"}, {"arrows": "to", "from": "Sun Weide", "to": "Australia"}, {"arrows": "to", "from": "Su Yuting", "to": "Australia"}, {"arrows": "to", "from": "Suzhou Wuzhong", "to": "Australia"}, {"arrows": "to", "from": "Meng Zhe", "to": "Australia"}, {"arrows": "to", "from": "China Mosaic", "to": "Australia"}, {"arrows": "to", "from": "CGTN The Link", "to": "Australia"}, {"arrows": "to", "from": "CGTN The Point with Liu Xin", "to": "Australia"}, {"arrows": "to", "from": "Dong Xue (Serena Dong)", "to": "Australia"}, {"arrows": "to", "from": "T-House", "to": "Australia"}, {"arrows": "to", "from": "He Tianran", "to": "Australia"}, {"arrows": "to", "from": "Tian Wei", "to": "Australia"}, {"arrows": "to", "from": "Li Yimei (Vica Li)", "to": "Australia"}, {"arrows": "to", "from": "Visit Chongqing", "to": "Australia"}, {"arrows": "to", "from": "Wang Xuejing", "to": "Australia"}, {"arrows": "to", "from": "Wang Guan (Michael Wang)", "to": "Australia"}, {"arrows": "to", "from": "Wang Xiaohui", "to": "Australia"}, {"arrows": "to", "from": "Wang Wenwen", "to": "Australia"}, {"arrows": "to", "from": "Where Zhengzhou", "to": "Australia"}, {"arrows": "to", "from": "CGTN World Insight with Tian Wei", "to": "Australia"}, {"arrows": "to", "from": "Wang Tianyu (Evan Wang)", "to": "Australia"}, {"arrows": "to", "from": "Wu Gang", "to": "Australia"}, {"arrows": "to", "from": "Wu Lei", "to": "Australia"}, {"arrows": "to", "from": "Wuxi, China", "to": "Australia"}, {"arrows": "to", "from": "Xu Xinchen (Gerald Xinchen)", "to": "Australia"}, {"arrows": "to", "from": "Chine Nouvelle", "to": "Australia"}, {"arrows": "to", "from": "Xinhua Sci-Tech", "to": "Australia"}, {"arrows": "to", "from": "Xinhua Sports", "to": "Australia"}, {"arrows": "to", "from": "Xie Yongjun", "to": "Australia"}, {"arrows": "to", "from": "Xinhua Chinese", "to": "Australia"}, {"arrows": "to", "from": "Shang Yang (Sylvia Shang)", "to": "Australia"}, {"arrows": "to", "from": "Xinhua Culture \u0026 Travel", "to": "Australia"}, {"arrows": "to", "from": "Zhang Xinran", "to": "Australia"}, {"arrows": "to", "from": "Xi\u0027s moments", "to": "Australia"}, {"arrows": "to", "from": "Xu Zeyu Philip", "to": "Australia"}, {"arrows": "to", "from": "Saina (Amy Saina)", "to": "Australia"}, {"arrows": "to", "from": "Liu Yang", "to": "Australia"}, {"arrows": "to", "from": "Yang Rui", "to": "Australia"}, {"arrows": "to", "from": "Yang Zhao", "to": "Australia"}, {"arrows": "to", "from": "Xu Yawen", "to": "Australia"}, {"arrows": "to", "from": "Liu Fangqiang (Oliver Liu)", "to": "Australia"}, {"arrows": "to", "from": "Zhao Yunfei", "to": "Australia"}, {"arrows": "to", "from": "Ji Yuqiao", "to": "Australia"}, {"arrows": "to", "from": "Zou Yue", "to": "Australia"}, {"arrows": "to", "from": "Zhao Ying", "to": "Australia"}, {"arrows": "to", "from": "Zheng Junfeng", "to": "Australia"}, {"arrows": "to", "from": "Zhong Shi", "to": "Australia"}, {"arrows": "to", "from": "Zhou Li", "to": "Australia"}, {"arrows": "to", "from": "Wang Zichen", "to": "Australia"}, {"arrows": "to", "from": "Zeng Ziyi", "to": "Australia"}, {"arrows": "to", "from": "Zhao Lijian", "to": "Australia"}, {"arrows": "to", "from": "CGTN Zoom In", "to": "Australia"}, {"arrows": "to", "from": "Zhang Shilei (Sheila Zhang)", "to": "Australia"}, {"arrows": "to", "from": "Yang Yating (Christina Yang)", "to": "Australia"}, {"arrows": "to", "from": "CCTV Asia Pacific", "to": "Australia"}, {"arrows": "to", "from": "CGTN Nature", "to": "Australia"}, {"arrows": "to", "from": "China Plus Culture", "to": "Australia"}, {"arrows": "to", "from": "China Plus News", "to": "Australia"}, {"arrows": "to", "from": "Chinese Embassy in Australia", "to": "Australia"}, {"arrows": "to", "from": "CGTN Crossover", "to": "Australia"}, {"arrows": "to", "from": "C The Difference", "to": "Australia"}, {"arrows": "to", "from": "L\u00fc Qianqian (Lucy Lv)", "to": "Australia"}, {"arrows": "to", "from": "Li Zexin (Skystroller)", "to": "Australia"}, {"arrows": "to", "from": "Wu Yo Yo", "to": "Australia"}, {"arrows": "to", "from": "CGTN Americas Now", "to": "Australia"}, {"arrows": "to", "from": "CGTN BizTalk", "to": "Australia"}, {"arrows": "to", "from": "CGTN Documentary", "to": "Australia"}, {"arrows": "to", "from": "Hi China", "to": "Australia"}, {"arrows": "to", "from": "China International Import Expo (CIIE)", "to": "Australia"}, {"arrows": "to", "from": "China Plus", "to": "Australia"}, {"arrows": "to", "from": "Show Me China", "to": "Australia"}, {"arrows": "to", "from": "Xinhua (Spectrum China)", "to": "Australia"}, {"arrows": "to", "from": "CGTN.tiktok", "to": "Australia"}, {"arrows": "to", "from": "CGTN Z", "to": "Australia"}, {"arrows": "to", "from": "Colorful China", "to": "Australia"}, {"arrows": "to", "from": "Discover Ningxia", "to": "Australia"}, {"arrows": "to", "from": "Discover Tianjin", "to": "Australia"}, {"arrows": "to", "from": "Global Times (Glamour China)", "to": "Australia"}, {"arrows": "to", "from": "Global Watch", "to": "Australia"}, {"arrows": "to", "from": "NewsTok", "to": "Australia"}, {"arrows": "to", "from": "CGTN Our Planet Needs You", "to": "Australia"}, {"arrows": "to", "from": "Panda Insight", "to": "Australia"}, {"arrows": "to", "from": "CGTN Razor Science", "to": "Australia"}, {"arrows": "to", "from": "The Optimist!", "to": "Australia"}, {"arrows": "to", "from": "CGTN The Agenda", "to": "Australia"}, {"arrows": "to", "from": "Tang Knows", "to": "Australia"}, {"arrows": "to", "from": "Visit Beijing", "to": "Australia"}, {"arrows": "to", "from": "Zhejiang 520", "to": "Australia"}, {"arrows": "to", "from": "Travel in China", "to": "Australia"}, {"arrows": "to", "from": "CGTN Rediscovering China", "to": "Australia"}, {"arrows": "to", "from": "China.com (English)", "to": "Australia"}, {"arrows": "to", "from": "CRI Online", "to": "Australia"}, {"arrows": "to", "from": "Liu Min", "to": "Australia"}, {"arrows": "to", "from": "Niu Honglin (Niu Niu)", "to": "Australia"}, {"arrows": "to", "from": "Trending in China", "to": "Australia"}, {"arrows": "to", "from": "Vica Li Eating Daily", "to": "Australia"}, {"arrows": "to", "from": "New Marco Polo", "to": "Australia"}, {"arrows": "to", "from": "Yang Xinmeng (Abby Yang)", "to": "Canada"}, {"arrows": "to", "from": "CGTN Culture Express", "to": "Canada"}, {"arrows": "to", "from": "Yang Sheng", "to": "Canada"}, {"arrows": "to", "from": "Media Challengers", "to": "Canada"}, {"arrows": "to", "from": "Ge Anna", "to": "Canada"}, {"arrows": "to", "from": "Wang Zeyu (Anosi Wang)", "to": "Canada"}, {"arrows": "to", "from": "We Are China", "to": "Canada"}, {"arrows": "to", "from": "CGTN Assignment Asia", "to": "Canada"}, {"arrows": "to", "from": "Beijing Channel", "to": "Canada"}, {"arrows": "to", "from": "Discover Beijing", "to": "Canada"}, {"arrows": "to", "from": "Belt and Road News Network", "to": "Canada"}, {"arrows": "to", "from": "Zheng Chenlei (Blair Zheng)", "to": "Canada"}, {"arrows": "to", "from": "Tang Bo", "to": "Canada"}, {"arrows": "to", "from": "Wang Cong", "to": "Canada"}, {"arrows": "to", "from": "Cao Li", "to": "Canada"}, {"arrows": "to", "from": "Visual China", "to": "Canada"}, {"arrows": "to", "from": "China Watch", "to": "Canada"}, {"arrows": "to", "from": "CD Opinion", "to": "Canada"}, {"arrows": "to", "from": "China Daily Sci-tech", "to": "Canada"}, {"arrows": "to", "from": "Cen Ziyuan (Jasmine Cen)", "to": "Canada"}, {"arrows": "to", "from": "CGTN Culture", "to": "Canada"}, {"arrows": "to", "from": "CGTN Dialogue", "to": "Canada"}, {"arrows": "to", "from": "CGTN Inheritors", "to": "Canada"}, {"arrows": "to", "from": "CGTN Style", "to": "Canada"}, {"arrows": "to", "from": "CGTN Business", "to": "Canada"}, {"arrows": "to", "from": "CGTN Food", "to": "Canada"}, {"arrows": "to", "from": "CGTN Fran\u00e7ais", "to": "Canada"}, {"arrows": "to", "from": "CGTN Global Business", "to": "Canada"}, {"arrows": "to", "from": "CGTN Graphics", "to": "Canada"}, {"arrows": "to", "from": "CGTN Movies", "to": "Canada"}, {"arrows": "to", "from": "CGTN", "to": "Canada"}, {"arrows": "to", "from": "CGTN Radio", "to": "Canada"}, {"arrows": "to", "from": "CGTN Sports", "to": "Canada"}, {"arrows": "to", "from": "CGTN Sports Scene", "to": "Canada"}, {"arrows": "to", "from": "CGTN Stories", "to": "Canada"}, {"arrows": "to", "from": "CGTN Tech", "to": "Canada"}, {"arrows": "to", "from": "CGTN Travel", "to": "Canada"}, {"arrows": "to", "from": "CGTN Travelogue", "to": "Canada"}, {"arrows": "to", "from": "CGTN United Nations", "to": "Canada"}, {"arrows": "to", "from": "Chen Juan", "to": "Canada"}, {"arrows": "to", "from": "Chen Weihua", "to": "Canada"}, {"arrows": "to", "from": "China Focus", "to": "Canada"}, {"arrows": "to", "from": "Lin Jing", "to": "Canada"}, {"arrows": "to", "from": "CGTN China Takeaway", "to": "Canada"}, {"arrows": "to", "from": "Chinese Consulate General in Calgary", "to": "Canada"}, {"arrows": "to", "from": "Chinese Consulate General in Montr\u00e9al", "to": "Canada"}, {"arrows": "to", "from": "China Culture", "to": "Canada"}, {"arrows": "to", "from": "China Daily", "to": "Canada"}, {"arrows": "to", "from": "China Daily Life", "to": "Canada"}, {"arrows": "to", "from": "China Daily Asia", "to": "Canada"}, {"arrows": "to", "from": "China Daily World", "to": "Canada"}, {"arrows": "to", "from": "Chinese Embassy in Canada", "to": "Canada"}, {"arrows": "to", "from": "China.org.cn (French)", "to": "Canada"}, {"arrows": "to", "from": "Chinese Consulate General in Vancouver", "to": "Canada"}, {"arrows": "to", "from": "China.org.cn (English)", "to": "Canada"}, {"arrows": "to", "from": "China Plus Podcasts", "to": "Canada"}, {"arrows": "to", "from": "People\u0027s Daily China Science", "to": "Canada"}, {"arrows": "to", "from": "State Council Information Office (SCIO)", "to": "Canada"}, {"arrows": "to", "from": "China Today", "to": "Canada"}, {"arrows": "to", "from": "Chlo\u00e9 Zhou", "to": "Canada"}, {"arrows": "to", "from": "China International Development Cooperation Agency (CIDCA)", "to": "Canada"}, {"arrows": "to", "from": "CGTN Closer to China", "to": "Canada"}, {"arrows": "to", "from": "Xu Zhike (Coco Studio)", "to": "Canada"}, {"arrows": "to", "from": "CRI Breaking News", "to": "Canada"}, {"arrows": "to", "from": "CRI Fran\u00e7ais", "to": "Canada"}, {"arrows": "to", "from": "China State Construction (CSCEC)", "to": "Canada"}, {"arrows": "to", "from": "Zhu Danni (Danni Zhu)", "to": "Canada"}, {"arrows": "to", "from": "Wang Di\u0027er (Deer Wang)", "to": "Canada"}, {"arrows": "to", "from": "Ding Heng", "to": "Canada"}, {"arrows": "to", "from": "Discover Binhai", "to": "Canada"}, {"arrows": "to", "from": "Discover Guangxi", "to": "Canada"}, {"arrows": "to", "from": "Discover Jilin", "to": "Canada"}, {"arrows": "to", "from": "Discover Nanjing", "to": "Canada"}, {"arrows": "to", "from": "Discover Zhejiang", "to": "Canada"}, {"arrows": "to", "from": "Li Dongning", "to": "Canada"}, {"arrows": "to", "from": "Du Ping", "to": "Canada"}, {"arrows": "to", "from": "Economic Daily", "to": "Canada"}, {"arrows": "to", "from": "Cheng Weitong", "to": "Canada"}, {"arrows": "to", "from": "Explore Gansu", "to": "Canada"}, {"arrows": "to", "from": "Feel China", "to": "Canada"}, {"arrows": "to", "from": "Xinhua Fly Over China", "to": "Canada"}, {"arrows": "to", "from": "CGTN Frontline", "to": "Canada"}, {"arrows": "to", "from": "CGTN Full Frame", "to": "Canada"}, {"arrows": "to", "from": "Guo Meiping (Gladys Guo)", "to": "Canada"}, {"arrows": "to", "from": "GT Business Source", "to": "Canada"}, {"arrows": "to", "from": "GT Life", "to": "Canada"}, {"arrows": "to", "from": "CGTN Global Watch", "to": "Canada"}, {"arrows": "to", "from": "Jiangsu, China", "to": "Canada"}, {"arrows": "to", "from": "GT Opinion", "to": "Canada"}, {"arrows": "to", "from": "Guan Xin", "to": "Canada"}, {"arrows": "to", "from": "Gong Zhe", "to": "Canada"}, {"arrows": "to", "from": "He Weiwei", "to": "Canada"}, {"arrows": "to", "from": "Wang Hao", "to": "Canada"}, {"arrows": "to", "from": "Zhang Hongtie", "to": "Canada"}, {"arrows": "to", "from": "Huang Jiyuan", "to": "Canada"}, {"arrows": "to", "from": "Zhao Huanxin", "to": "Canada"}, {"arrows": "to", "from": "Hu Xijin", "to": "Canada"}, {"arrows": "to", "from": "Discover China", "to": "Canada"}, {"arrows": "to", "from": "Guizhou, China", "to": "Canada"}, {"arrows": "to", "from": "In Qingdao (Meet Qingdao)", "to": "Canada"}, {"arrows": "to", "from": "iPanda", "to": "Canada"}, {"arrows": "to", "from": "Insight Xiangshan", "to": "Canada"}, {"arrows": "to", "from": "Zhejiang, China", "to": "Canada"}, {"arrows": "to", "from": "Zang Shijie (Jessica Zang)", "to": "Canada"}, {"arrows": "to", "from": "Jiang Jiang", "to": "Canada"}, {"arrows": "to", "from": "Li Jianhua", "to": "Canada"}, {"arrows": "to", "from": "Li Jingjing", "to": "Canada"}, {"arrows": "to", "from": "Ji Tao", "to": "Canada"}, {"arrows": "to", "from": "Kui Yingchun (Kate Kui)", "to": "Canada"}, {"arrows": "to", "from": "Mi Xue (Katie Mi)", "to": "Canada"}, {"arrows": "to", "from": "Liu Kun", "to": "Canada"}, {"arrows": "to", "from": "Learn Chinese", "to": "Canada"}, {"arrows": "to", "from": "Han Yingya (Lena Han / LenaStudio)", "to": "Canada"}, {"arrows": "to", "from": "Li Qian (Leona Li)", "to": "Canada"}, {"arrows": "to", "from": "Li Yang", "to": "Canada"}, {"arrows": "to", "from": "Li Bijian", "to": "Canada"}, {"arrows": "to", "from": "Lin Nan", "to": "Canada"}, {"arrows": "to", "from": "Fan Lingzhi", "to": "Canada"}, {"arrows": "to", "from": "Liu Xin", "to": "Canada"}, {"arrows": "to", "from": "Liu Yutong", "to": "Canada"}, {"arrows": "to", "from": "Luo Will", "to": "Canada"}, {"arrows": "to", "from": "Jie Lynn (Lynn\u0027s Fantasy)", "to": "Canada"}, {"arrows": "to", "from": "Ma Dashuai", "to": "Canada"}, {"arrows": "to", "from": "Tao Yuan (Martha Tao)", "to": "Canada"}, {"arrows": "to", "from": "Martina Fuchs", "to": "Canada"}, {"arrows": "to", "from": "China Daily (Media Unlocked)", "to": "Canada"}, {"arrows": "to", "from": "Zhang Lin (Melody Zhang)", "to": "Canada"}, {"arrows": "to", "from": "Foreign Ministry Spokesperson", "to": "Canada"}, {"arrows": "to", "from": "Miao Xiaojuan", "to": "Canada"}, {"arrows": "to", "from": "Zhou Yiqiu (Rachel Zhou / Miss Wow)", "to": "Canada"}, {"arrows": "to", "from": "Zhang Meng (Monica Zhang)", "to": "Canada"}, {"arrows": "to", "from": "Patrick Zheng", "to": "Canada"}, {"arrows": "to", "from": "People\u0027s Daily Business (Modern China)", "to": "Canada"}, {"arrows": "to", "from": "People\u0027s Daily Life", "to": "Canada"}, {"arrows": "to", "from": "People\u0027s Daily Sport China", "to": "Canada"}, {"arrows": "to", "from": "People\u0027s Daily Traditional Chinese", "to": "Canada"}, {"arrows": "to", "from": "Zhang Peijin", "to": "Canada"}, {"arrows": "to", "from": "Xu Pan Yiru", "to": "Canada"}, {"arrows": "to", "from": "People\u0027s Daily App", "to": "Canada"}, {"arrows": "to", "from": "Phoenix TV News", "to": "Canada"}, {"arrows": "to", "from": "Gu Qianwen", "to": "Canada"}, {"arrows": "to", "from": "Chen Qingqing", "to": "Canada"}, {"arrows": "to", "from": "Ren Ke", "to": "Canada"}, {"arrows": "to", "from": "Bai Yunyi (Rita Bai)", "to": "Canada"}, {"arrows": "to", "from": "Zhao Hong (Sabrina Zhao)", "to": "Canada"}, {"arrows": "to", "from": "Discover Beautiful China", "to": "Canada"}, {"arrows": "to", "from": "Zhang Shanhui (Mon P\u00e9kin Express / Jacky Zhang)", "to": "Canada"}, {"arrows": "to", "from": "Zhang Ziyu (Shannon Zhang)", "to": "Canada"}, {"arrows": "to", "from": "Shao Zheng", "to": "Canada"}, {"arrows": "to", "from": "Shen Shiwei", "to": "Canada"}, {"arrows": "to", "from": "Hua Chunying", "to": "Canada"}, {"arrows": "to", "from": "Hu Zhaoming", "to": "Canada"}, {"arrows": "to", "from": "Sun Weide", "to": "Canada"}, {"arrows": "to", "from": "Su Yuting", "to": "Canada"}, {"arrows": "to", "from": "Suzhou Wuzhong", "to": "Canada"}, {"arrows": "to", "from": "Meng Zhe", "to": "Canada"}, {"arrows": "to", "from": "China Mosaic", "to": "Canada"}, {"arrows": "to", "from": "CGTN The Link", "to": "Canada"}, {"arrows": "to", "from": "CGTN The Point with Liu Xin", "to": "Canada"}, {"arrows": "to", "from": "Dong Xue (Serena Dong)", "to": "Canada"}, {"arrows": "to", "from": "T-House", "to": "Canada"}, {"arrows": "to", "from": "He Tianran", "to": "Canada"}, {"arrows": "to", "from": "Tian Wei", "to": "Canada"}, {"arrows": "to", "from": "Li Yimei (Vica Li)", "to": "Canada"}, {"arrows": "to", "from": "Visit Chongqing", "to": "Canada"}, {"arrows": "to", "from": "Wang Xuejing", "to": "Canada"}, {"arrows": "to", "from": "Wang Guan (Michael Wang)", "to": "Canada"}, {"arrows": "to", "from": "Wang Xiaohui", "to": "Canada"}, {"arrows": "to", "from": "Wang Wenwen", "to": "Canada"}, {"arrows": "to", "from": "Where Zhengzhou", "to": "Canada"}, {"arrows": "to", "from": "CGTN World Insight with Tian Wei", "to": "Canada"}, {"arrows": "to", "from": "Wang Tianyu (Evan Wang)", "to": "Canada"}, {"arrows": "to", "from": "Wu Gang", "to": "Canada"}, {"arrows": "to", "from": "Wu Lei", "to": "Canada"}, {"arrows": "to", "from": "Wuxi, China", "to": "Canada"}, {"arrows": "to", "from": "Xu Xinchen (Gerald Xinchen)", "to": "Canada"}, {"arrows": "to", "from": "Chine Nouvelle", "to": "Canada"}, {"arrows": "to", "from": "Xinhua Sci-Tech", "to": "Canada"}, {"arrows": "to", "from": "Xinhua Sports", "to": "Canada"}, {"arrows": "to", "from": "Xie Yongjun", "to": "Canada"}, {"arrows": "to", "from": "Xinhua Chinese", "to": "Canada"}, {"arrows": "to", "from": "Shang Yang (Sylvia Shang)", "to": "Canada"}, {"arrows": "to", "from": "Xinhua Culture \u0026 Travel", "to": "Canada"}, {"arrows": "to", "from": "Zhang Xinran", "to": "Canada"}, {"arrows": "to", "from": "Xi\u0027s moments", "to": "Canada"}, {"arrows": "to", "from": "Xu Li", "to": "Canada"}, {"arrows": "to", "from": "Xu Zeyu Philip", "to": "Canada"}, {"arrows": "to", "from": "Saina (Amy Saina)", "to": "Canada"}, {"arrows": "to", "from": "Liu Yang", "to": "Canada"}, {"arrows": "to", "from": "Yang Rui", "to": "Canada"}, {"arrows": "to", "from": "Yang Zhao", "to": "Canada"}, {"arrows": "to", "from": "Xu Yawen", "to": "Canada"}, {"arrows": "to", "from": "Liu Fangqiang (Oliver Liu)", "to": "Canada"}, {"arrows": "to", "from": "Jiang Yuan (J\u0027Y Pense)", "to": "Canada"}, {"arrows": "to", "from": "Zhao Yunfei", "to": "Canada"}, {"arrows": "to", "from": "Ji Yuqiao", "to": "Canada"}, {"arrows": "to", "from": "Zou Yue", "to": "Canada"}, {"arrows": "to", "from": "Zhao Ying", "to": "Canada"}, {"arrows": "to", "from": "Zheng Junfeng", "to": "Canada"}, {"arrows": "to", "from": "Zhong Shi", "to": "Canada"}, {"arrows": "to", "from": "Zhou Li", "to": "Canada"}, {"arrows": "to", "from": "Wang Zichen", "to": "Canada"}, {"arrows": "to", "from": "Zeng Ziyi", "to": "Canada"}, {"arrows": "to", "from": "Zhao Lijian", "to": "Canada"}, {"arrows": "to", "from": "CGTN Zoom In", "to": "Canada"}, {"arrows": "to", "from": "Zhang Shilei (Sheila Zhang)", "to": "Canada"}, {"arrows": "to", "from": "Yang Yating (Christina Yang)", "to": "Canada"}, {"arrows": "to", "from": "CCTV Asia Pacific", "to": "Canada"}, {"arrows": "to", "from": "CGTN Nature", "to": "Canada"}, {"arrows": "to", "from": "China Plus Culture", "to": "Canada"}, {"arrows": "to", "from": "China Plus News", "to": "Canada"}, {"arrows": "to", "from": "CGTN Crossover", "to": "Canada"}, {"arrows": "to", "from": "C The Difference", "to": "Canada"}, {"arrows": "to", "from": "L\u00fc Qianqian (Lucy Lv)", "to": "Canada"}, {"arrows": "to", "from": "Li Zexin (Skystroller)", "to": "Canada"}, {"arrows": "to", "from": "Zhu Jingtian (Tiantian)", "to": "Canada"}, {"arrows": "to", "from": "Wu Yo Yo", "to": "Canada"}, {"arrows": "to", "from": "Wang Bing", "to": "Canada"}, {"arrows": "to", "from": "CGTN Americas Now", "to": "Canada"}, {"arrows": "to", "from": "CGTN BizTalk", "to": "Canada"}, {"arrows": "to", "from": "CGTN Documentary", "to": "Canada"}, {"arrows": "to", "from": "Hi China", "to": "Canada"}, {"arrows": "to", "from": "China International Import Expo (CIIE)", "to": "Canada"}, {"arrows": "to", "from": "China Plus", "to": "Canada"}, {"arrows": "to", "from": "Show Me China", "to": "Canada"}, {"arrows": "to", "from": "Xinhua (Spectrum China)", "to": "Canada"}, {"arrows": "to", "from": "CGTN.tiktok", "to": "Canada"}, {"arrows": "to", "from": "CGTN Z", "to": "Canada"}, {"arrows": "to", "from": "Colorful China", "to": "Canada"}, {"arrows": "to", "from": "Discover Ningxia", "to": "Canada"}, {"arrows": "to", "from": "Discover Tianjin", "to": "Canada"}, {"arrows": "to", "from": "Global Times (Glamour China)", "to": "Canada"}, {"arrows": "to", "from": "Global Watch", "to": "Canada"}, {"arrows": "to", "from": "Haiwai Net (Canada Fusion Media Centre)", "to": "Canada"}, {"arrows": "to", "from": "NewsTok", "to": "Canada"}, {"arrows": "to", "from": "CGTN Our Planet Needs You", "to": "Canada"}, {"arrows": "to", "from": "Panda Insight", "to": "Canada"}, {"arrows": "to", "from": "CGTN Razor Science", "to": "Canada"}, {"arrows": "to", "from": "The Optimist!", "to": "Canada"}, {"arrows": "to", "from": "CGTN The Agenda", "to": "Canada"}, {"arrows": "to", "from": "Tang Knows", "to": "Canada"}, {"arrows": "to", "from": "Visit Beijing", "to": "Canada"}, {"arrows": "to", "from": "Zhejiang 520", "to": "Canada"}, {"arrows": "to", "from": "Travel in China", "to": "Canada"}, {"arrows": "to", "from": "CGTN Rediscovering China", "to": "Canada"}, {"arrows": "to", "from": "China.com (English)", "to": "Canada"}, {"arrows": "to", "from": "CRI Online", "to": "Canada"}, {"arrows": "to", "from": "Liu Min", "to": "Canada"}, {"arrows": "to", "from": "Niu Honglin (Niu Niu)", "to": "Canada"}, {"arrows": "to", "from": "Secrets de chef", "to": "Canada"}, {"arrows": "to", "from": "Trending in China", "to": "Canada"}, {"arrows": "to", "from": "Vica Li Eating Daily", "to": "Canada"}, {"arrows": "to", "from": "Zhao Songmei (M\u00e9lina Zhao)", "to": "Canada"}, {"arrows": "to", "from": "New Marco Polo", "to": "Canada"}, {"arrows": "to", "from": "Yang Xinmeng (Abby Yang)", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Culture Express", "to": "New Zealand"}, {"arrows": "to", "from": "Yang Sheng", "to": "New Zealand"}, {"arrows": "to", "from": "Media Challengers", "to": "New Zealand"}, {"arrows": "to", "from": "Ge Anna", "to": "New Zealand"}, {"arrows": "to", "from": "Wang Zeyu (Anosi Wang)", "to": "New Zealand"}, {"arrows": "to", "from": "We Are China", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Assignment Asia", "to": "New Zealand"}, {"arrows": "to", "from": "Beijing Channel", "to": "New Zealand"}, {"arrows": "to", "from": "Discover Beijing", "to": "New Zealand"}, {"arrows": "to", "from": "Belt and Road News Network", "to": "New Zealand"}, {"arrows": "to", "from": "Zheng Chenlei (Blair Zheng)", "to": "New Zealand"}, {"arrows": "to", "from": "Tang Bo", "to": "New Zealand"}, {"arrows": "to", "from": "Wang Cong", "to": "New Zealand"}, {"arrows": "to", "from": "Cao Li", "to": "New Zealand"}, {"arrows": "to", "from": "Visual China", "to": "New Zealand"}, {"arrows": "to", "from": "China Watch", "to": "New Zealand"}, {"arrows": "to", "from": "CD Opinion", "to": "New Zealand"}, {"arrows": "to", "from": "China Daily Sci-tech", "to": "New Zealand"}, {"arrows": "to", "from": "Cen Ziyuan (Jasmine Cen)", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Culture", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Dialogue", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Inheritors", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Style", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Business", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Food", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Global Business", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Graphics", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Movies", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Radio", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Sports", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Sports Scene", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Stories", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Tech", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Travel", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Travelogue", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN United Nations", "to": "New Zealand"}, {"arrows": "to", "from": "Chen Juan", "to": "New Zealand"}, {"arrows": "to", "from": "Chen Weihua", "to": "New Zealand"}, {"arrows": "to", "from": "China Focus", "to": "New Zealand"}, {"arrows": "to", "from": "Lin Jing", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN China Takeaway", "to": "New Zealand"}, {"arrows": "to", "from": "Chinese Consulate General in Christchurch", "to": "New Zealand"}, {"arrows": "to", "from": "China Culture", "to": "New Zealand"}, {"arrows": "to", "from": "China Daily", "to": "New Zealand"}, {"arrows": "to", "from": "China Daily Life", "to": "New Zealand"}, {"arrows": "to", "from": "China Daily Asia", "to": "New Zealand"}, {"arrows": "to", "from": "China Daily World", "to": "New Zealand"}, {"arrows": "to", "from": "Chinese Embassy in New Zealand", "to": "New Zealand"}, {"arrows": "to", "from": "China.org.cn (English)", "to": "New Zealand"}, {"arrows": "to", "from": "China Plus Podcasts", "to": "New Zealand"}, {"arrows": "to", "from": "People\u0027s Daily China Science", "to": "New Zealand"}, {"arrows": "to", "from": "State Council Information Office (SCIO)", "to": "New Zealand"}, {"arrows": "to", "from": "China Today", "to": "New Zealand"}, {"arrows": "to", "from": "China International Development Cooperation Agency (CIDCA)", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Closer to China", "to": "New Zealand"}, {"arrows": "to", "from": "CRI Breaking News", "to": "New Zealand"}, {"arrows": "to", "from": "China State Construction (CSCEC)", "to": "New Zealand"}, {"arrows": "to", "from": "Zhu Danni (Danni Zhu)", "to": "New Zealand"}, {"arrows": "to", "from": "Wang Di\u0027er (Deer Wang)", "to": "New Zealand"}, {"arrows": "to", "from": "Ding Heng", "to": "New Zealand"}, {"arrows": "to", "from": "Discover Binhai", "to": "New Zealand"}, {"arrows": "to", "from": "Discover Guangxi", "to": "New Zealand"}, {"arrows": "to", "from": "Discover Jilin", "to": "New Zealand"}, {"arrows": "to", "from": "Discover Nanjing", "to": "New Zealand"}, {"arrows": "to", "from": "Discover Zhejiang", "to": "New Zealand"}, {"arrows": "to", "from": "Li Dongning", "to": "New Zealand"}, {"arrows": "to", "from": "Du Ping", "to": "New Zealand"}, {"arrows": "to", "from": "Economic Daily", "to": "New Zealand"}, {"arrows": "to", "from": "Cheng Weitong", "to": "New Zealand"}, {"arrows": "to", "from": "Explore Gansu", "to": "New Zealand"}, {"arrows": "to", "from": "Feel China", "to": "New Zealand"}, {"arrows": "to", "from": "Xinhua Fly Over China", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Frontline", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Full Frame", "to": "New Zealand"}, {"arrows": "to", "from": "Guo Meiping (Gladys Guo)", "to": "New Zealand"}, {"arrows": "to", "from": "GT Business Source", "to": "New Zealand"}, {"arrows": "to", "from": "GT Life", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Global Watch", "to": "New Zealand"}, {"arrows": "to", "from": "Jiangsu, China", "to": "New Zealand"}, {"arrows": "to", "from": "GT Opinion", "to": "New Zealand"}, {"arrows": "to", "from": "Guan Xin", "to": "New Zealand"}, {"arrows": "to", "from": "Gong Zhe", "to": "New Zealand"}, {"arrows": "to", "from": "He Weiwei", "to": "New Zealand"}, {"arrows": "to", "from": "Wang Hao", "to": "New Zealand"}, {"arrows": "to", "from": "Zhang Hongtie", "to": "New Zealand"}, {"arrows": "to", "from": "Huang Jiyuan", "to": "New Zealand"}, {"arrows": "to", "from": "Zhao Huanxin", "to": "New Zealand"}, {"arrows": "to", "from": "Hu Xijin", "to": "New Zealand"}, {"arrows": "to", "from": "Discover China", "to": "New Zealand"}, {"arrows": "to", "from": "Guizhou, China", "to": "New Zealand"}, {"arrows": "to", "from": "In Qingdao (Meet Qingdao)", "to": "New Zealand"}, {"arrows": "to", "from": "iPanda", "to": "New Zealand"}, {"arrows": "to", "from": "Insight Xiangshan", "to": "New Zealand"}, {"arrows": "to", "from": "Zhejiang, China", "to": "New Zealand"}, {"arrows": "to", "from": "Zang Shijie (Jessica Zang)", "to": "New Zealand"}, {"arrows": "to", "from": "Jiang Jiang", "to": "New Zealand"}, {"arrows": "to", "from": "Li Jianhua", "to": "New Zealand"}, {"arrows": "to", "from": "Li Jingjing", "to": "New Zealand"}, {"arrows": "to", "from": "Ji Tao", "to": "New Zealand"}, {"arrows": "to", "from": "Kui Yingchun (Kate Kui)", "to": "New Zealand"}, {"arrows": "to", "from": "Mi Xue (Katie Mi)", "to": "New Zealand"}, {"arrows": "to", "from": "Liu Kun", "to": "New Zealand"}, {"arrows": "to", "from": "Learn Chinese", "to": "New Zealand"}, {"arrows": "to", "from": "Li Qian (Leona Li)", "to": "New Zealand"}, {"arrows": "to", "from": "Li Yang", "to": "New Zealand"}, {"arrows": "to", "from": "Li Bijian", "to": "New Zealand"}, {"arrows": "to", "from": "Lin Nan", "to": "New Zealand"}, {"arrows": "to", "from": "Fan Lingzhi", "to": "New Zealand"}, {"arrows": "to", "from": "Liu Xin", "to": "New Zealand"}, {"arrows": "to", "from": "Liu Yutong", "to": "New Zealand"}, {"arrows": "to", "from": "Luo Will", "to": "New Zealand"}, {"arrows": "to", "from": "Ma Dashuai", "to": "New Zealand"}, {"arrows": "to", "from": "Tao Yuan (Martha Tao)", "to": "New Zealand"}, {"arrows": "to", "from": "Martina Fuchs", "to": "New Zealand"}, {"arrows": "to", "from": "China Daily (Media Unlocked)", "to": "New Zealand"}, {"arrows": "to", "from": "Zhang Lin (Melody Zhang)", "to": "New Zealand"}, {"arrows": "to", "from": "Foreign Ministry Spokesperson", "to": "New Zealand"}, {"arrows": "to", "from": "Miao Xiaojuan", "to": "New Zealand"}, {"arrows": "to", "from": "Zhou Yiqiu (Rachel Zhou / Miss Wow)", "to": "New Zealand"}, {"arrows": "to", "from": "Zhang Meng (Monica Zhang)", "to": "New Zealand"}, {"arrows": "to", "from": "Patrick Zheng", "to": "New Zealand"}, {"arrows": "to", "from": "People\u0027s Daily Business (Modern China)", "to": "New Zealand"}, {"arrows": "to", "from": "People\u0027s Daily Life", "to": "New Zealand"}, {"arrows": "to", "from": "People\u0027s Daily Sport China", "to": "New Zealand"}, {"arrows": "to", "from": "People\u0027s Daily Traditional Chinese", "to": "New Zealand"}, {"arrows": "to", "from": "Zhang Peijin", "to": "New Zealand"}, {"arrows": "to", "from": "Xu Pan Yiru", "to": "New Zealand"}, {"arrows": "to", "from": "People\u0027s Daily App", "to": "New Zealand"}, {"arrows": "to", "from": "Phoenix TV News", "to": "New Zealand"}, {"arrows": "to", "from": "Gu Qianwen", "to": "New Zealand"}, {"arrows": "to", "from": "Chen Qingqing", "to": "New Zealand"}, {"arrows": "to", "from": "Ren Ke", "to": "New Zealand"}, {"arrows": "to", "from": "Bai Yunyi (Rita Bai)", "to": "New Zealand"}, {"arrows": "to", "from": "Zhao Hong (Sabrina Zhao)", "to": "New Zealand"}, {"arrows": "to", "from": "Discover Beautiful China", "to": "New Zealand"}, {"arrows": "to", "from": "Zhang Ziyu (Shannon Zhang)", "to": "New Zealand"}, {"arrows": "to", "from": "Shao Zheng", "to": "New Zealand"}, {"arrows": "to", "from": "Shen Shiwei", "to": "New Zealand"}, {"arrows": "to", "from": "Hua Chunying", "to": "New Zealand"}, {"arrows": "to", "from": "Hu Zhaoming", "to": "New Zealand"}, {"arrows": "to", "from": "Sun Weide", "to": "New Zealand"}, {"arrows": "to", "from": "Su Yuting", "to": "New Zealand"}, {"arrows": "to", "from": "Suzhou Wuzhong", "to": "New Zealand"}, {"arrows": "to", "from": "Meng Zhe", "to": "New Zealand"}, {"arrows": "to", "from": "China Mosaic", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN The Link", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN The Point with Liu Xin", "to": "New Zealand"}, {"arrows": "to", "from": "Dong Xue (Serena Dong)", "to": "New Zealand"}, {"arrows": "to", "from": "T-House", "to": "New Zealand"}, {"arrows": "to", "from": "He Tianran", "to": "New Zealand"}, {"arrows": "to", "from": "Tian Wei", "to": "New Zealand"}, {"arrows": "to", "from": "Li Yimei (Vica Li)", "to": "New Zealand"}, {"arrows": "to", "from": "Visit Chongqing", "to": "New Zealand"}, {"arrows": "to", "from": "Wang Xuejing", "to": "New Zealand"}, {"arrows": "to", "from": "Wang Guan (Michael Wang)", "to": "New Zealand"}, {"arrows": "to", "from": "Wang Xiaohui", "to": "New Zealand"}, {"arrows": "to", "from": "Wang Wenwen", "to": "New Zealand"}, {"arrows": "to", "from": "Where Zhengzhou", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN World Insight with Tian Wei", "to": "New Zealand"}, {"arrows": "to", "from": "Wang Tianyu (Evan Wang)", "to": "New Zealand"}, {"arrows": "to", "from": "Wu Gang", "to": "New Zealand"}, {"arrows": "to", "from": "Wu Lei", "to": "New Zealand"}, {"arrows": "to", "from": "Wuxi, China", "to": "New Zealand"}, {"arrows": "to", "from": "Xu Xinchen (Gerald Xinchen)", "to": "New Zealand"}, {"arrows": "to", "from": "Chine Nouvelle", "to": "New Zealand"}, {"arrows": "to", "from": "Xinhua Sci-Tech", "to": "New Zealand"}, {"arrows": "to", "from": "Xinhua Sports", "to": "New Zealand"}, {"arrows": "to", "from": "Xie Yongjun", "to": "New Zealand"}, {"arrows": "to", "from": "Xinhua Chinese", "to": "New Zealand"}, {"arrows": "to", "from": "Shang Yang (Sylvia Shang)", "to": "New Zealand"}, {"arrows": "to", "from": "Xinhua Culture \u0026 Travel", "to": "New Zealand"}, {"arrows": "to", "from": "Zhang Xinran", "to": "New Zealand"}, {"arrows": "to", "from": "Xi\u0027s moments", "to": "New Zealand"}, {"arrows": "to", "from": "Xu Zeyu Philip", "to": "New Zealand"}, {"arrows": "to", "from": "Saina (Amy Saina)", "to": "New Zealand"}, {"arrows": "to", "from": "Liu Yang", "to": "New Zealand"}, {"arrows": "to", "from": "Yang Rui", "to": "New Zealand"}, {"arrows": "to", "from": "Yang Zhao", "to": "New Zealand"}, {"arrows": "to", "from": "Xu Yawen", "to": "New Zealand"}, {"arrows": "to", "from": "Liu Fangqiang (Oliver Liu)", "to": "New Zealand"}, {"arrows": "to", "from": "Zhao Yunfei", "to": "New Zealand"}, {"arrows": "to", "from": "Ji Yuqiao", "to": "New Zealand"}, {"arrows": "to", "from": "Zou Yue", "to": "New Zealand"}, {"arrows": "to", "from": "Zhao Ying", "to": "New Zealand"}, {"arrows": "to", "from": "Zheng Junfeng", "to": "New Zealand"}, {"arrows": "to", "from": "Zhong Shi", "to": "New Zealand"}, {"arrows": "to", "from": "Zhou Li", "to": "New Zealand"}, {"arrows": "to", "from": "Wang Zichen", "to": "New Zealand"}, {"arrows": "to", "from": "Zeng Ziyi", "to": "New Zealand"}, {"arrows": "to", "from": "Zhao Lijian", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Zoom In", "to": "New Zealand"}, {"arrows": "to", "from": "Zhang Shilei (Sheila Zhang)", "to": "New Zealand"}, {"arrows": "to", "from": "Yang Yating (Christina Yang)", "to": "New Zealand"}, {"arrows": "to", "from": "CCTV Asia Pacific", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Nature", "to": "New Zealand"}, {"arrows": "to", "from": "China Plus Culture", "to": "New Zealand"}, {"arrows": "to", "from": "China Plus News", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Crossover", "to": "New Zealand"}, {"arrows": "to", "from": "C The Difference", "to": "New Zealand"}, {"arrows": "to", "from": "L\u00fc Qianqian (Lucy Lv)", "to": "New Zealand"}, {"arrows": "to", "from": "Li Zexin (Skystroller)", "to": "New Zealand"}, {"arrows": "to", "from": "Wu Yo Yo", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Americas Now", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN BizTalk", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Documentary", "to": "New Zealand"}, {"arrows": "to", "from": "Hi China", "to": "New Zealand"}, {"arrows": "to", "from": "China International Import Expo (CIIE)", "to": "New Zealand"}, {"arrows": "to", "from": "China Plus", "to": "New Zealand"}, {"arrows": "to", "from": "Show Me China", "to": "New Zealand"}, {"arrows": "to", "from": "Xinhua (Spectrum China)", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN.tiktok", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Z", "to": "New Zealand"}, {"arrows": "to", "from": "Colorful China", "to": "New Zealand"}, {"arrows": "to", "from": "Discover Ningxia", "to": "New Zealand"}, {"arrows": "to", "from": "Discover Tianjin", "to": "New Zealand"}, {"arrows": "to", "from": "Global Times (Glamour China)", "to": "New Zealand"}, {"arrows": "to", "from": "Global Watch", "to": "New Zealand"}, {"arrows": "to", "from": "NewsTok", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Our Planet Needs You", "to": "New Zealand"}, {"arrows": "to", "from": "Panda Insight", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Razor Science", "to": "New Zealand"}, {"arrows": "to", "from": "The Optimist!", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN The Agenda", "to": "New Zealand"}, {"arrows": "to", "from": "Tang Knows", "to": "New Zealand"}, {"arrows": "to", "from": "Visit Beijing", "to": "New Zealand"}, {"arrows": "to", "from": "Zhejiang 520", "to": "New Zealand"}, {"arrows": "to", "from": "Travel in China", "to": "New Zealand"}, {"arrows": "to", "from": "CGTN Rediscovering China", "to": "New Zealand"}, {"arrows": "to", "from": "China.com (English)", "to": "New Zealand"}, {"arrows": "to", "from": "CRI Online", "to": "New Zealand"}, {"arrows": "to", "from": "Liu Min", "to": "New Zealand"}, {"arrows": "to", "from": "Niu Honglin (Niu Niu)", "to": "New Zealand"}, {"arrows": "to", "from": "Trending in China", "to": "New Zealand"}, {"arrows": "to", "from": "Vica Li Eating Daily", "to": "New Zealand"}, {"arrows": "to", "from": "New Marco Polo", "to": "New Zealand"}, {"arrows": "to", "from": "Yang Xinmeng (Abby Yang)", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Culture Express", "to": "United Kingdom"}, {"arrows": "to", "from": "Yang Sheng", "to": "United Kingdom"}, {"arrows": "to", "from": "Zheng Zeguang", "to": "United Kingdom"}, {"arrows": "to", "from": "Media Challengers", "to": "United Kingdom"}, {"arrows": "to", "from": "Ge Anna", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Zeyu (Anosi Wang)", "to": "United Kingdom"}, {"arrows": "to", "from": "We Are China", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Assignment Asia", "to": "United Kingdom"}, {"arrows": "to", "from": "Beijing Channel", "to": "United Kingdom"}, {"arrows": "to", "from": "Discover Beijing", "to": "United Kingdom"}, {"arrows": "to", "from": "Belt and Road News Network", "to": "United Kingdom"}, {"arrows": "to", "from": "Zheng Chenlei (Blair Zheng)", "to": "United Kingdom"}, {"arrows": "to", "from": "Tang Bo", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Cong", "to": "United Kingdom"}, {"arrows": "to", "from": "Cao Li", "to": "United Kingdom"}, {"arrows": "to", "from": "Chinese Consulate General in Belfast", "to": "United Kingdom"}, {"arrows": "to", "from": "Visual China", "to": "United Kingdom"}, {"arrows": "to", "from": "China Watch", "to": "United Kingdom"}, {"arrows": "to", "from": "CD Opinion", "to": "United Kingdom"}, {"arrows": "to", "from": "China Daily Sci-tech", "to": "United Kingdom"}, {"arrows": "to", "from": "Cen Ziyuan (Jasmine Cen)", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhang Meifang", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Culture", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Dialogue", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Inheritors", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Style", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Business", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Food", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Global Business", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Graphics", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Movies", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Radio", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Sports", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Sports Scene", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Stories", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Tech", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Travel", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Travelogue", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN United Nations", "to": "United Kingdom"}, {"arrows": "to", "from": "Chen Juan", "to": "United Kingdom"}, {"arrows": "to", "from": "Chen Weihua", "to": "United Kingdom"}, {"arrows": "to", "from": "China Focus", "to": "United Kingdom"}, {"arrows": "to", "from": "Lin Jing", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN China Takeaway", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhang Jun", "to": "United Kingdom"}, {"arrows": "to", "from": "Chinese Consulate General in Edinburgh", "to": "United Kingdom"}, {"arrows": "to", "from": "China Culture", "to": "United Kingdom"}, {"arrows": "to", "from": "China Daily", "to": "United Kingdom"}, {"arrows": "to", "from": "China Daily Life", "to": "United Kingdom"}, {"arrows": "to", "from": "China Daily Asia", "to": "United Kingdom"}, {"arrows": "to", "from": "China Daily World", "to": "United Kingdom"}, {"arrows": "to", "from": "Chinese Embassy in United Nations (NYC)", "to": "United Kingdom"}, {"arrows": "to", "from": "China.org.cn (English)", "to": "United Kingdom"}, {"arrows": "to", "from": "China Plus Podcasts", "to": "United Kingdom"}, {"arrows": "to", "from": "People\u0027s Daily China Science", "to": "United Kingdom"}, {"arrows": "to", "from": "State Council Information Office (SCIO)", "to": "United Kingdom"}, {"arrows": "to", "from": "China Today", "to": "United Kingdom"}, {"arrows": "to", "from": "Chinese Embassy in United Kingdom (UK)", "to": "United Kingdom"}, {"arrows": "to", "from": "Liu Yuyin", "to": "United Kingdom"}, {"arrows": "to", "from": "China International Development Cooperation Agency (CIDCA)", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Closer to China", "to": "United Kingdom"}, {"arrows": "to", "from": "CRI Breaking News", "to": "United Kingdom"}, {"arrows": "to", "from": "China State Construction (CSCEC)", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhu Danni (Danni Zhu)", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Di\u0027er (Deer Wang)", "to": "United Kingdom"}, {"arrows": "to", "from": "Ding Heng", "to": "United Kingdom"}, {"arrows": "to", "from": "Discover Binhai", "to": "United Kingdom"}, {"arrows": "to", "from": "Discover Guangxi", "to": "United Kingdom"}, {"arrows": "to", "from": "Discover Jilin", "to": "United Kingdom"}, {"arrows": "to", "from": "Discover Nanjing", "to": "United Kingdom"}, {"arrows": "to", "from": "Discover Zhejiang", "to": "United Kingdom"}, {"arrows": "to", "from": "Li Dongning", "to": "United Kingdom"}, {"arrows": "to", "from": "Du Ping", "to": "United Kingdom"}, {"arrows": "to", "from": "Economic Daily", "to": "United Kingdom"}, {"arrows": "to", "from": "Cheng Weitong", "to": "United Kingdom"}, {"arrows": "to", "from": "Explore Gansu", "to": "United Kingdom"}, {"arrows": "to", "from": "Feel China", "to": "United Kingdom"}, {"arrows": "to", "from": "Xinhua Fly Over China", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Frontline", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Full Frame", "to": "United Kingdom"}, {"arrows": "to", "from": "Guo Meiping (Gladys Guo)", "to": "United Kingdom"}, {"arrows": "to", "from": "GT Business Source", "to": "United Kingdom"}, {"arrows": "to", "from": "GT Life", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Global Watch", "to": "United Kingdom"}, {"arrows": "to", "from": "Jiangsu, China", "to": "United Kingdom"}, {"arrows": "to", "from": "GT Opinion", "to": "United Kingdom"}, {"arrows": "to", "from": "Guan Xin", "to": "United Kingdom"}, {"arrows": "to", "from": "Gong Zhe", "to": "United Kingdom"}, {"arrows": "to", "from": "He Weiwei", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Hao", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhang Hongtie", "to": "United Kingdom"}, {"arrows": "to", "from": "Huang Jiyuan", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhao Huanxin", "to": "United Kingdom"}, {"arrows": "to", "from": "Hu Xijin", "to": "United Kingdom"}, {"arrows": "to", "from": "Discover China", "to": "United Kingdom"}, {"arrows": "to", "from": "Guizhou, China", "to": "United Kingdom"}, {"arrows": "to", "from": "In Qingdao (Meet Qingdao)", "to": "United Kingdom"}, {"arrows": "to", "from": "iPanda", "to": "United Kingdom"}, {"arrows": "to", "from": "Insight Xiangshan", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhejiang, China", "to": "United Kingdom"}, {"arrows": "to", "from": "Zang Shijie (Jessica Zang)", "to": "United Kingdom"}, {"arrows": "to", "from": "Jiang Jiang", "to": "United Kingdom"}, {"arrows": "to", "from": "Li Jianhua", "to": "United Kingdom"}, {"arrows": "to", "from": "Li Jingjing", "to": "United Kingdom"}, {"arrows": "to", "from": "Ji Tao", "to": "United Kingdom"}, {"arrows": "to", "from": "Kui Yingchun (Kate Kui)", "to": "United Kingdom"}, {"arrows": "to", "from": "Mi Xue (Katie Mi)", "to": "United Kingdom"}, {"arrows": "to", "from": "Liu Kun", "to": "United Kingdom"}, {"arrows": "to", "from": "Learn Chinese", "to": "United Kingdom"}, {"arrows": "to", "from": "Li Qian (Leona Li)", "to": "United Kingdom"}, {"arrows": "to", "from": "Li Yang", "to": "United Kingdom"}, {"arrows": "to", "from": "Li Bijian", "to": "United Kingdom"}, {"arrows": "to", "from": "Lin Nan", "to": "United Kingdom"}, {"arrows": "to", "from": "Fan Lingzhi", "to": "United Kingdom"}, {"arrows": "to", "from": "Liu Xin", "to": "United Kingdom"}, {"arrows": "to", "from": "Liu Yutong", "to": "United Kingdom"}, {"arrows": "to", "from": "Luo Will", "to": "United Kingdom"}, {"arrows": "to", "from": "Ma Dashuai", "to": "United Kingdom"}, {"arrows": "to", "from": "Tao Yuan (Martha Tao)", "to": "United Kingdom"}, {"arrows": "to", "from": "Martina Fuchs", "to": "United Kingdom"}, {"arrows": "to", "from": "China Daily (Media Unlocked)", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhang Lin (Melody Zhang)", "to": "United Kingdom"}, {"arrows": "to", "from": "Foreign Ministry Spokesperson", "to": "United Kingdom"}, {"arrows": "to", "from": "Miao Xiaojuan", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Mingjie", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhou Yiqiu (Rachel Zhou / Miss Wow)", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhang Meng (Monica Zhang)", "to": "United Kingdom"}, {"arrows": "to", "from": "Patrick Zheng", "to": "United Kingdom"}, {"arrows": "to", "from": "People\u0027s Daily Business (Modern China)", "to": "United Kingdom"}, {"arrows": "to", "from": "People\u0027s Daily Life", "to": "United Kingdom"}, {"arrows": "to", "from": "People\u0027s Daily Sport China", "to": "United Kingdom"}, {"arrows": "to", "from": "People\u0027s Daily Traditional Chinese", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhang Peijin", "to": "United Kingdom"}, {"arrows": "to", "from": "Xu Pan Yiru", "to": "United Kingdom"}, {"arrows": "to", "from": "People\u0027s Daily App", "to": "United Kingdom"}, {"arrows": "to", "from": "Phoenix TV News", "to": "United Kingdom"}, {"arrows": "to", "from": "Gu Qianwen", "to": "United Kingdom"}, {"arrows": "to", "from": "Chen Qingqing", "to": "United Kingdom"}, {"arrows": "to", "from": "Ren Ke", "to": "United Kingdom"}, {"arrows": "to", "from": "Bai Yunyi (Rita Bai)", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhao Hong (Sabrina Zhao)", "to": "United Kingdom"}, {"arrows": "to", "from": "Discover Beautiful China", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhang Ziyu (Shannon Zhang)", "to": "United Kingdom"}, {"arrows": "to", "from": "Shao Zheng", "to": "United Kingdom"}, {"arrows": "to", "from": "Shen Shiwei", "to": "United Kingdom"}, {"arrows": "to", "from": "Hua Chunying", "to": "United Kingdom"}, {"arrows": "to", "from": "Hu Zhaoming", "to": "United Kingdom"}, {"arrows": "to", "from": "Sun Weide", "to": "United Kingdom"}, {"arrows": "to", "from": "Su Yuting", "to": "United Kingdom"}, {"arrows": "to", "from": "Suzhou Wuzhong", "to": "United Kingdom"}, {"arrows": "to", "from": "Meng Zhe", "to": "United Kingdom"}, {"arrows": "to", "from": "China Mosaic", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN The Link", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN The Point with Liu Xin", "to": "United Kingdom"}, {"arrows": "to", "from": "Dong Xue (Serena Dong)", "to": "United Kingdom"}, {"arrows": "to", "from": "T-House", "to": "United Kingdom"}, {"arrows": "to", "from": "He Tianran", "to": "United Kingdom"}, {"arrows": "to", "from": "Tian Wei", "to": "United Kingdom"}, {"arrows": "to", "from": "Li Yimei (Vica Li)", "to": "United Kingdom"}, {"arrows": "to", "from": "Visit Chongqing", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Xuejing", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Guan (Michael Wang)", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Xiaohui", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Wenwen", "to": "United Kingdom"}, {"arrows": "to", "from": "Where Zhengzhou", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN World Insight with Tian Wei", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Tianyu (Evan Wang)", "to": "United Kingdom"}, {"arrows": "to", "from": "Wu Gang", "to": "United Kingdom"}, {"arrows": "to", "from": "Wu Lei", "to": "United Kingdom"}, {"arrows": "to", "from": "Wuxi, China", "to": "United Kingdom"}, {"arrows": "to", "from": "Xu Xinchen (Gerald Xinchen)", "to": "United Kingdom"}, {"arrows": "to", "from": "Chine Nouvelle", "to": "United Kingdom"}, {"arrows": "to", "from": "Xinhua Sci-Tech", "to": "United Kingdom"}, {"arrows": "to", "from": "Xinhua Sports", "to": "United Kingdom"}, {"arrows": "to", "from": "Xie Yongjun", "to": "United Kingdom"}, {"arrows": "to", "from": "Xinhua Chinese", "to": "United Kingdom"}, {"arrows": "to", "from": "Shang Yang (Sylvia Shang)", "to": "United Kingdom"}, {"arrows": "to", "from": "Xinhua Culture \u0026 Travel", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhang Xinran", "to": "United Kingdom"}, {"arrows": "to", "from": "Xi\u0027s moments", "to": "United Kingdom"}, {"arrows": "to", "from": "Xu Zeyu Philip", "to": "United Kingdom"}, {"arrows": "to", "from": "Saina (Amy Saina)", "to": "United Kingdom"}, {"arrows": "to", "from": "Yang Zhiyu", "to": "United Kingdom"}, {"arrows": "to", "from": "Liu Yang", "to": "United Kingdom"}, {"arrows": "to", "from": "Yang Rui", "to": "United Kingdom"}, {"arrows": "to", "from": "Yang Zhao", "to": "United Kingdom"}, {"arrows": "to", "from": "Xu Yawen", "to": "United Kingdom"}, {"arrows": "to", "from": "Liu Fangqiang (Oliver Liu)", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhao Yunfei", "to": "United Kingdom"}, {"arrows": "to", "from": "Ji Yuqiao", "to": "United Kingdom"}, {"arrows": "to", "from": "Zou Yue", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhao Ying", "to": "United Kingdom"}, {"arrows": "to", "from": "Zheng Junfeng", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhong Shi", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhou Li", "to": "United Kingdom"}, {"arrows": "to", "from": "Wang Zichen", "to": "United Kingdom"}, {"arrows": "to", "from": "Zeng Ziyi", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhao Lijian", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Zoom In", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhang Shilei (Sheila Zhang)", "to": "United Kingdom"}, {"arrows": "to", "from": "Yang Yating (Christina Yang)", "to": "United Kingdom"}, {"arrows": "to", "from": "CCTV Asia Pacific", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Nature", "to": "United Kingdom"}, {"arrows": "to", "from": "China Plus Culture", "to": "United Kingdom"}, {"arrows": "to", "from": "China Plus News", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Crossover", "to": "United Kingdom"}, {"arrows": "to", "from": "C The Difference", "to": "United Kingdom"}, {"arrows": "to", "from": "L\u00fc Qianqian (Lucy Lv)", "to": "United Kingdom"}, {"arrows": "to", "from": "Li Zexin (Skystroller)", "to": "United Kingdom"}, {"arrows": "to", "from": "Wu Yo Yo", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Americas Now", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN BizTalk", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Documentary", "to": "United Kingdom"}, {"arrows": "to", "from": "Hi China", "to": "United Kingdom"}, {"arrows": "to", "from": "China International Import Expo (CIIE)", "to": "United Kingdom"}, {"arrows": "to", "from": "China Plus", "to": "United Kingdom"}, {"arrows": "to", "from": "Show Me China", "to": "United Kingdom"}, {"arrows": "to", "from": "Xinhua London", "to": "United Kingdom"}, {"arrows": "to", "from": "Xinhua (Spectrum China)", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN.tiktok", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Z", "to": "United Kingdom"}, {"arrows": "to", "from": "Colorful China", "to": "United Kingdom"}, {"arrows": "to", "from": "Discover Ningxia", "to": "United Kingdom"}, {"arrows": "to", "from": "Discover Tianjin", "to": "United Kingdom"}, {"arrows": "to", "from": "Global Times (Glamour China)", "to": "United Kingdom"}, {"arrows": "to", "from": "Global Watch", "to": "United Kingdom"}, {"arrows": "to", "from": "NewsTok", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Our Planet Needs You", "to": "United Kingdom"}, {"arrows": "to", "from": "Panda Insight", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Razor Science", "to": "United Kingdom"}, {"arrows": "to", "from": "The Optimist!", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN The Agenda", "to": "United Kingdom"}, {"arrows": "to", "from": "Tang Knows", "to": "United Kingdom"}, {"arrows": "to", "from": "Visit Beijing", "to": "United Kingdom"}, {"arrows": "to", "from": "Zhejiang 520", "to": "United Kingdom"}, {"arrows": "to", "from": "Travel in China", "to": "United Kingdom"}, {"arrows": "to", "from": "CGTN Rediscovering China", "to": "United Kingdom"}, {"arrows": "to", "from": "China.com (English)", "to": "United Kingdom"}, {"arrows": "to", "from": "CRI Online", "to": "United Kingdom"}, {"arrows": "to", "from": "Liu Min", "to": "United Kingdom"}, {"arrows": "to", "from": "Niu Honglin (Niu Niu)", "to": "United Kingdom"}, {"arrows": "to", "from": "Trending in China", "to": "United Kingdom"}, {"arrows": "to", "from": "Vica Li Eating Daily", "to": "United Kingdom"}, {"arrows": "to", "from": "New Marco Polo", "to": "United Kingdom"}, {"arrows": "to", "from": "Yang Xinmeng (Abby Yang)", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Culture Express", "to": "United States of America"}, {"arrows": "to", "from": "Yang Sheng", "to": "United States of America"}, {"arrows": "to", "from": "Cui Tiankai", "to": "United States of America"}, {"arrows": "to", "from": "Qin Gang", "to": "United States of America"}, {"arrows": "to", "from": "Xie Feng", "to": "United States of America"}, {"arrows": "to", "from": "Media Challengers", "to": "United States of America"}, {"arrows": "to", "from": "Ge Anna", "to": "United States of America"}, {"arrows": "to", "from": "Wang Zeyu (Anosi Wang)", "to": "United States of America"}, {"arrows": "to", "from": "We Are China", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Assignment Asia", "to": "United States of America"}, {"arrows": "to", "from": "Beijing Channel", "to": "United States of America"}, {"arrows": "to", "from": "Discover Beijing", "to": "United States of America"}, {"arrows": "to", "from": "Belt and Road News Network", "to": "United States of America"}, {"arrows": "to", "from": "Zheng Chenlei (Blair Zheng)", "to": "United States of America"}, {"arrows": "to", "from": "Tang Bo", "to": "United States of America"}, {"arrows": "to", "from": "Wang Cong", "to": "United States of America"}, {"arrows": "to", "from": "Cao Li", "to": "United States of America"}, {"arrows": "to", "from": "Visual China", "to": "United States of America"}, {"arrows": "to", "from": "China Watch", "to": "United States of America"}, {"arrows": "to", "from": "CD Opinion", "to": "United States of America"}, {"arrows": "to", "from": "China Daily Sci-tech", "to": "United States of America"}, {"arrows": "to", "from": "Cen Ziyuan (Jasmine Cen)", "to": "United States of America"}, {"arrows": "to", "from": "Huang Ping", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Culture", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Dialogue", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Inheritors", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Style", "to": "United States of America"}, {"arrows": "to", "from": "CGTN America", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Business", "to": "United States of America"}, {"arrows": "to", "from": "CGTN DC Producers", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Food", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Global Business", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Graphics", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Movies", "to": "United States of America"}, {"arrows": "to", "from": "CGTN", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Radio", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Sports", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Sports Scene", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Stories", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Tech", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Travel", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Travelogue", "to": "United States of America"}, {"arrows": "to", "from": "CGTN United Nations", "to": "United States of America"}, {"arrows": "to", "from": "Zhang Ping", "to": "United States of America"}, {"arrows": "to", "from": "Chen Juan", "to": "United States of America"}, {"arrows": "to", "from": "Chen Weihua", "to": "United States of America"}, {"arrows": "to", "from": "China Focus", "to": "United States of America"}, {"arrows": "to", "from": "Lin Jing", "to": "United States of America"}, {"arrows": "to", "from": "CGTN China Takeaway", "to": "United States of America"}, {"arrows": "to", "from": "Zhang Jun", "to": "United States of America"}, {"arrows": "to", "from": "Chinese Consulate General in New York", "to": "United States of America"}, {"arrows": "to", "from": "Chinese Consulate General in Chicago", "to": "United States of America"}, {"arrows": "to", "from": "China Culture", "to": "United States of America"}, {"arrows": "to", "from": "China Daily", "to": "United States of America"}, {"arrows": "to", "from": "China Daily Life", "to": "United States of America"}, {"arrows": "to", "from": "China Daily Asia", "to": "United States of America"}, {"arrows": "to", "from": "China Daily World", "to": "United States of America"}, {"arrows": "to", "from": "Chinese Embassy in United Nations (NYC)", "to": "United States of America"}, {"arrows": "to", "from": "China.org.cn (English)", "to": "United States of America"}, {"arrows": "to", "from": "China Plus Podcasts", "to": "United States of America"}, {"arrows": "to", "from": "People\u0027s Daily China Science", "to": "United States of America"}, {"arrows": "to", "from": "State Council Information Office (SCIO)", "to": "United States of America"}, {"arrows": "to", "from": "China Today", "to": "United States of America"}, {"arrows": "to", "from": "Chinese Embassy in United States", "to": "United States of America"}, {"arrows": "to", "from": "Liu Yuyin", "to": "United States of America"}, {"arrows": "to", "from": "China International Development Cooperation Agency (CIDCA)", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Closer to China", "to": "United States of America"}, {"arrows": "to", "from": "Chinese Consulate General in San Francisco", "to": "United States of America"}, {"arrows": "to", "from": "CRI Breaking News", "to": "United States of America"}, {"arrows": "to", "from": "China State Construction (CSCEC)", "to": "United States of America"}, {"arrows": "to", "from": "Zhu Danni (Danni Zhu)", "to": "United States of America"}, {"arrows": "to", "from": "Wang Di\u0027er (Deer Wang)", "to": "United States of America"}, {"arrows": "to", "from": "Ding Heng", "to": "United States of America"}, {"arrows": "to", "from": "Discover Binhai", "to": "United States of America"}, {"arrows": "to", "from": "Discover Guangxi", "to": "United States of America"}, {"arrows": "to", "from": "Discover Jilin", "to": "United States of America"}, {"arrows": "to", "from": "Discover Nanjing", "to": "United States of America"}, {"arrows": "to", "from": "Discover Zhejiang", "to": "United States of America"}, {"arrows": "to", "from": "Li Dongning", "to": "United States of America"}, {"arrows": "to", "from": "Du Ping", "to": "United States of America"}, {"arrows": "to", "from": "Economic Daily", "to": "United States of America"}, {"arrows": "to", "from": "Cheng Weitong", "to": "United States of America"}, {"arrows": "to", "from": "Explore Gansu", "to": "United States of America"}, {"arrows": "to", "from": "Feel China", "to": "United States of America"}, {"arrows": "to", "from": "Xinhua Fly Over China", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Frontline", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Full Frame", "to": "United States of America"}, {"arrows": "to", "from": "Guo Meiping (Gladys Guo)", "to": "United States of America"}, {"arrows": "to", "from": "GT Business Source", "to": "United States of America"}, {"arrows": "to", "from": "GT Life", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Global Watch", "to": "United States of America"}, {"arrows": "to", "from": "Jiangsu, China", "to": "United States of America"}, {"arrows": "to", "from": "GT Opinion", "to": "United States of America"}, {"arrows": "to", "from": "Guan Xin", "to": "United States of America"}, {"arrows": "to", "from": "Gong Zhe", "to": "United States of America"}, {"arrows": "to", "from": "Haiwai Net (People\u0027s Daily Overseas)", "to": "United States of America"}, {"arrows": "to", "from": "Haiwai Net (US Fusion Center)", "to": "United States of America"}, {"arrows": "to", "from": "He Weiwei", "to": "United States of America"}, {"arrows": "to", "from": "Wang Hao", "to": "United States of America"}, {"arrows": "to", "from": "Zhang Hongtie", "to": "United States of America"}, {"arrows": "to", "from": "Huang Jiyuan", "to": "United States of America"}, {"arrows": "to", "from": "Zhao Huanxin", "to": "United States of America"}, {"arrows": "to", "from": "Hu Xijin", "to": "United States of America"}, {"arrows": "to", "from": "Discover China", "to": "United States of America"}, {"arrows": "to", "from": "Guizhou, China", "to": "United States of America"}, {"arrows": "to", "from": "In Qingdao (Meet Qingdao)", "to": "United States of America"}, {"arrows": "to", "from": "iPanda", "to": "United States of America"}, {"arrows": "to", "from": "Insight Xiangshan", "to": "United States of America"}, {"arrows": "to", "from": "Zhejiang, China", "to": "United States of America"}, {"arrows": "to", "from": "Zang Shijie (Jessica Zang)", "to": "United States of America"}, {"arrows": "to", "from": "Jiang Jiang", "to": "United States of America"}, {"arrows": "to", "from": "Li Jianhua", "to": "United States of America"}, {"arrows": "to", "from": "Li Jingjing", "to": "United States of America"}, {"arrows": "to", "from": "Ji Tao", "to": "United States of America"}, {"arrows": "to", "from": "Kui Yingchun (Kate Kui)", "to": "United States of America"}, {"arrows": "to", "from": "Mi Xue (Katie Mi)", "to": "United States of America"}, {"arrows": "to", "from": "Liu Kun", "to": "United States of America"}, {"arrows": "to", "from": "Learn Chinese", "to": "United States of America"}, {"arrows": "to", "from": "Li Qian (Leona Li)", "to": "United States of America"}, {"arrows": "to", "from": "Li Yang", "to": "United States of America"}, {"arrows": "to", "from": "Li Bijian", "to": "United States of America"}, {"arrows": "to", "from": "Lin Nan", "to": "United States of America"}, {"arrows": "to", "from": "Fan Lingzhi", "to": "United States of America"}, {"arrows": "to", "from": "Liu Xin", "to": "United States of America"}, {"arrows": "to", "from": "Liu Yutong", "to": "United States of America"}, {"arrows": "to", "from": "Luo Will", "to": "United States of America"}, {"arrows": "to", "from": "Ma Dashuai", "to": "United States of America"}, {"arrows": "to", "from": "Tao Yuan (Martha Tao)", "to": "United States of America"}, {"arrows": "to", "from": "Martina Fuchs", "to": "United States of America"}, {"arrows": "to", "from": "China Daily (Media Unlocked)", "to": "United States of America"}, {"arrows": "to", "from": "Zhang Lin (Melody Zhang)", "to": "United States of America"}, {"arrows": "to", "from": "Foreign Ministry Spokesperson", "to": "United States of America"}, {"arrows": "to", "from": "Miao Xiaojuan", "to": "United States of America"}, {"arrows": "to", "from": "Zhou Yiqiu (Rachel Zhou / Miss Wow)", "to": "United States of America"}, {"arrows": "to", "from": "Zhang Meng (Monica Zhang)", "to": "United States of America"}, {"arrows": "to", "from": "Panda Paws", "to": "United States of America"}, {"arrows": "to", "from": "Pandaorama", "to": "United States of America"}, {"arrows": "to", "from": "Patrick Zheng", "to": "United States of America"}, {"arrows": "to", "from": "People\u0027s Daily USA", "to": "United States of America"}, {"arrows": "to", "from": "People\u0027s Daily Business (Modern China)", "to": "United States of America"}, {"arrows": "to", "from": "People\u0027s Daily Life", "to": "United States of America"}, {"arrows": "to", "from": "People\u0027s Daily Sport China", "to": "United States of America"}, {"arrows": "to", "from": "People\u0027s Daily Traditional Chinese", "to": "United States of America"}, {"arrows": "to", "from": "Zhang Peijin", "to": "United States of America"}, {"arrows": "to", "from": "Xu Pan Yiru", "to": "United States of America"}, {"arrows": "to", "from": "People\u0027s Daily App", "to": "United States of America"}, {"arrows": "to", "from": "Phoenix TV News", "to": "United States of America"}, {"arrows": "to", "from": "Gu Qianwen", "to": "United States of America"}, {"arrows": "to", "from": "Chen Qingqing", "to": "United States of America"}, {"arrows": "to", "from": "Ren Ke", "to": "United States of America"}, {"arrows": "to", "from": "Bai Yunyi (Rita Bai)", "to": "United States of America"}, {"arrows": "to", "from": "Zhao Hong (Sabrina Zhao)", "to": "United States of America"}, {"arrows": "to", "from": "Discover Beautiful China", "to": "United States of America"}, {"arrows": "to", "from": "Zhang Ziyu (Shannon Zhang)", "to": "United States of America"}, {"arrows": "to", "from": "Shao Zheng", "to": "United States of America"}, {"arrows": "to", "from": "Shen Shiwei", "to": "United States of America"}, {"arrows": "to", "from": "Hua Chunying", "to": "United States of America"}, {"arrows": "to", "from": "Hu Zhaoming", "to": "United States of America"}, {"arrows": "to", "from": "Liu Pengyu", "to": "United States of America"}, {"arrows": "to", "from": "Sun Weide", "to": "United States of America"}, {"arrows": "to", "from": "Su Yuting", "to": "United States of America"}, {"arrows": "to", "from": "Suzhou Wuzhong", "to": "United States of America"}, {"arrows": "to", "from": "Meng Zhe", "to": "United States of America"}, {"arrows": "to", "from": "China Mosaic", "to": "United States of America"}, {"arrows": "to", "from": "CGTN The Link", "to": "United States of America"}, {"arrows": "to", "from": "CGTN The Point with Liu Xin", "to": "United States of America"}, {"arrows": "to", "from": "Dong Xue (Serena Dong)", "to": "United States of America"}, {"arrows": "to", "from": "T-House", "to": "United States of America"}, {"arrows": "to", "from": "He Tianran", "to": "United States of America"}, {"arrows": "to", "from": "Tian Wei", "to": "United States of America"}, {"arrows": "to", "from": "Li Yimei (Vica Li)", "to": "United States of America"}, {"arrows": "to", "from": "Visit Chongqing", "to": "United States of America"}, {"arrows": "to", "from": "Wang Xuejing", "to": "United States of America"}, {"arrows": "to", "from": "Wang Guan (Michael Wang)", "to": "United States of America"}, {"arrows": "to", "from": "Wang Xiaohui", "to": "United States of America"}, {"arrows": "to", "from": "Wang Wenwen", "to": "United States of America"}, {"arrows": "to", "from": "Where Zhengzhou", "to": "United States of America"}, {"arrows": "to", "from": "CGTN World Insight with Tian Wei", "to": "United States of America"}, {"arrows": "to", "from": "Wang Tianyu (Evan Wang)", "to": "United States of America"}, {"arrows": "to", "from": "Wu Gang", "to": "United States of America"}, {"arrows": "to", "from": "Wu Lei", "to": "United States of America"}, {"arrows": "to", "from": "Wuxi, China", "to": "United States of America"}, {"arrows": "to", "from": "Xu Xinchen (Gerald Xinchen)", "to": "United States of America"}, {"arrows": "to", "from": "Chine Nouvelle", "to": "United States of America"}, {"arrows": "to", "from": "Xinhua North America", "to": "United States of America"}, {"arrows": "to", "from": "Xinhua Sci-Tech", "to": "United States of America"}, {"arrows": "to", "from": "Xinhua Sports", "to": "United States of America"}, {"arrows": "to", "from": "Xie Yongjun", "to": "United States of America"}, {"arrows": "to", "from": "Xinhua Chinese", "to": "United States of America"}, {"arrows": "to", "from": "Shang Yang (Sylvia Shang)", "to": "United States of America"}, {"arrows": "to", "from": "Xinhua Culture \u0026 Travel", "to": "United States of America"}, {"arrows": "to", "from": "Zhang Xinran", "to": "United States of America"}, {"arrows": "to", "from": "Xi\u0027s moments", "to": "United States of America"}, {"arrows": "to", "from": "Xu Zeyu Philip", "to": "United States of America"}, {"arrows": "to", "from": "Saina (Amy Saina)", "to": "United States of America"}, {"arrows": "to", "from": "Liu Yang", "to": "United States of America"}, {"arrows": "to", "from": "Yang Rui", "to": "United States of America"}, {"arrows": "to", "from": "Yang Zhao", "to": "United States of America"}, {"arrows": "to", "from": "Xu Yawen", "to": "United States of America"}, {"arrows": "to", "from": "Liu Fangqiang (Oliver Liu)", "to": "United States of America"}, {"arrows": "to", "from": "Zhao Yunfei", "to": "United States of America"}, {"arrows": "to", "from": "Ji Yuqiao", "to": "United States of America"}, {"arrows": "to", "from": "Zou Yue", "to": "United States of America"}, {"arrows": "to", "from": "Zhao Ying", "to": "United States of America"}, {"arrows": "to", "from": "Zheng Junfeng", "to": "United States of America"}, {"arrows": "to", "from": "Zhong Shi", "to": "United States of America"}, {"arrows": "to", "from": "Zhou Li", "to": "United States of America"}, {"arrows": "to", "from": "Wang Zichen", "to": "United States of America"}, {"arrows": "to", "from": "Zeng Ziyi", "to": "United States of America"}, {"arrows": "to", "from": "Zhao Lijian", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Zoom In", "to": "United States of America"}, {"arrows": "to", "from": "Zhang Shilei (Sheila Zhang)", "to": "United States of America"}, {"arrows": "to", "from": "Yang Yating (Christina Yang)", "to": "United States of America"}, {"arrows": "to", "from": "CCTV Asia Pacific", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Nature", "to": "United States of America"}, {"arrows": "to", "from": "China Plus Culture", "to": "United States of America"}, {"arrows": "to", "from": "China Plus News", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Crossover", "to": "United States of America"}, {"arrows": "to", "from": "C The Difference", "to": "United States of America"}, {"arrows": "to", "from": "L\u00fc Qianqian (Lucy Lv)", "to": "United States of America"}, {"arrows": "to", "from": "Phoenix US TV (iFeng)", "to": "United States of America"}, {"arrows": "to", "from": "Li Zexin (Skystroller)", "to": "United States of America"}, {"arrows": "to", "from": "Wu Yo Yo", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Americas Now", "to": "United States of America"}, {"arrows": "to", "from": "CGTN BizTalk", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Documentary", "to": "United States of America"}, {"arrows": "to", "from": "Hi China", "to": "United States of America"}, {"arrows": "to", "from": "China International Import Expo (CIIE)", "to": "United States of America"}, {"arrows": "to", "from": "China Plus", "to": "United States of America"}, {"arrows": "to", "from": "Show Me China", "to": "United States of America"}, {"arrows": "to", "from": "Xinhua (Spectrum China)", "to": "United States of America"}, {"arrows": "to", "from": "CGTN.tiktok", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Z", "to": "United States of America"}, {"arrows": "to", "from": "Colorful China", "to": "United States of America"}, {"arrows": "to", "from": "Discover Ningxia", "to": "United States of America"}, {"arrows": "to", "from": "Discover Tianjin", "to": "United States of America"}, {"arrows": "to", "from": "Global Times (Glamour China)", "to": "United States of America"}, {"arrows": "to", "from": "Global Watch", "to": "United States of America"}, {"arrows": "to", "from": "NewsTok", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Our Planet Needs You", "to": "United States of America"}, {"arrows": "to", "from": "Panda Insight", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Razor Science", "to": "United States of America"}, {"arrows": "to", "from": "The Optimist!", "to": "United States of America"}, {"arrows": "to", "from": "CGTN The Agenda", "to": "United States of America"}, {"arrows": "to", "from": "Tang Knows", "to": "United States of America"}, {"arrows": "to", "from": "Visit Beijing", "to": "United States of America"}, {"arrows": "to", "from": "Zhejiang 520", "to": "United States of America"}, {"arrows": "to", "from": "Travel in China", "to": "United States of America"}, {"arrows": "to", "from": "CGTN Rediscovering China", "to": "United States of America"}, {"arrows": "to", "from": "China Plus America", "to": "United States of America"}, {"arrows": "to", "from": "China.com (English)", "to": "United States of America"}, {"arrows": "to", "from": "CRI Online", "to": "United States of America"}, {"arrows": "to", "from": "Liu Min", "to": "United States of America"}, {"arrows": "to", "from": "Niu Honglin (Niu Niu)", "to": "United States of America"}, {"arrows": "to", "from": "Trending in China", "to": "United States of America"}, {"arrows": "to", "from": "Vica Li Eating Daily", "to": "United States of America"}, {"arrows": "to", "from": "New Marco Polo", "to": "United States of America"}, {"arrows": "to", "from": "Yang Xinmeng (Abby Yang)", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Culture Express", "to": "Ireland"}, {"arrows": "to", "from": "Yang Sheng", "to": "Ireland"}, {"arrows": "to", "from": "Zhu Jing", "to": "Ireland"}, {"arrows": "to", "from": "Media Challengers", "to": "Ireland"}, {"arrows": "to", "from": "Ge Anna", "to": "Ireland"}, {"arrows": "to", "from": "Wang Zeyu (Anosi Wang)", "to": "Ireland"}, {"arrows": "to", "from": "We Are China", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Assignment Asia", "to": "Ireland"}, {"arrows": "to", "from": "Beijing Channel", "to": "Ireland"}, {"arrows": "to", "from": "Discover Beijing", "to": "Ireland"}, {"arrows": "to", "from": "Belt and Road News Network", "to": "Ireland"}, {"arrows": "to", "from": "Zheng Chenlei (Blair Zheng)", "to": "Ireland"}, {"arrows": "to", "from": "Tang Bo", "to": "Ireland"}, {"arrows": "to", "from": "Wang Cong", "to": "Ireland"}, {"arrows": "to", "from": "Cao Li", "to": "Ireland"}, {"arrows": "to", "from": "Visual China", "to": "Ireland"}, {"arrows": "to", "from": "China Watch", "to": "Ireland"}, {"arrows": "to", "from": "CD Opinion", "to": "Ireland"}, {"arrows": "to", "from": "China Daily Sci-tech", "to": "Ireland"}, {"arrows": "to", "from": "Cen Ziyuan (Jasmine Cen)", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Culture", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Dialogue", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Inheritors", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Style", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Business", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Europe", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Food", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Global Business", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Graphics", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Movies", "to": "Ireland"}, {"arrows": "to", "from": "CGTN", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Radio", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Sports", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Sports Scene", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Stories", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Tech", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Travel", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Travelogue", "to": "Ireland"}, {"arrows": "to", "from": "CGTN United Nations", "to": "Ireland"}, {"arrows": "to", "from": "Chen Juan", "to": "Ireland"}, {"arrows": "to", "from": "Chen Weihua", "to": "Ireland"}, {"arrows": "to", "from": "China Focus", "to": "Ireland"}, {"arrows": "to", "from": "Lin Jing", "to": "Ireland"}, {"arrows": "to", "from": "CGTN China Takeaway", "to": "Ireland"}, {"arrows": "to", "from": "China Culture", "to": "Ireland"}, {"arrows": "to", "from": "China Daily", "to": "Ireland"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Ireland"}, {"arrows": "to", "from": "China Daily Life", "to": "Ireland"}, {"arrows": "to", "from": "China Daily Asia", "to": "Ireland"}, {"arrows": "to", "from": "China Daily Europe", "to": "Ireland"}, {"arrows": "to", "from": "China Daily World", "to": "Ireland"}, {"arrows": "to", "from": "Chinese Embassy in Ireland", "to": "Ireland"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Ireland"}, {"arrows": "to", "from": "China.org.cn (English)", "to": "Ireland"}, {"arrows": "to", "from": "China Plus Podcasts", "to": "Ireland"}, {"arrows": "to", "from": "People\u0027s Daily China Science", "to": "Ireland"}, {"arrows": "to", "from": "State Council Information Office (SCIO)", "to": "Ireland"}, {"arrows": "to", "from": "China Today", "to": "Ireland"}, {"arrows": "to", "from": "China International Development Cooperation Agency (CIDCA)", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Closer to China", "to": "Ireland"}, {"arrows": "to", "from": "CRI Breaking News", "to": "Ireland"}, {"arrows": "to", "from": "China State Construction (CSCEC)", "to": "Ireland"}, {"arrows": "to", "from": "Zhu Danni (Danni Zhu)", "to": "Ireland"}, {"arrows": "to", "from": "Wang Di\u0027er (Deer Wang)", "to": "Ireland"}, {"arrows": "to", "from": "Ding Heng", "to": "Ireland"}, {"arrows": "to", "from": "Discover Binhai", "to": "Ireland"}, {"arrows": "to", "from": "Discover Guangxi", "to": "Ireland"}, {"arrows": "to", "from": "Discover Jilin", "to": "Ireland"}, {"arrows": "to", "from": "Discover Nanjing", "to": "Ireland"}, {"arrows": "to", "from": "Discover Zhejiang", "to": "Ireland"}, {"arrows": "to", "from": "Li Dongning", "to": "Ireland"}, {"arrows": "to", "from": "Du Ping", "to": "Ireland"}, {"arrows": "to", "from": "Economic Daily", "to": "Ireland"}, {"arrows": "to", "from": "Cheng Weitong", "to": "Ireland"}, {"arrows": "to", "from": "Explore Gansu", "to": "Ireland"}, {"arrows": "to", "from": "Feel China", "to": "Ireland"}, {"arrows": "to", "from": "Xinhua Fly Over China", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Frontline", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Full Frame", "to": "Ireland"}, {"arrows": "to", "from": "Guo Meiping (Gladys Guo)", "to": "Ireland"}, {"arrows": "to", "from": "GT Business Source", "to": "Ireland"}, {"arrows": "to", "from": "GT Life", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Global Watch", "to": "Ireland"}, {"arrows": "to", "from": "Jiangsu, China", "to": "Ireland"}, {"arrows": "to", "from": "GT Opinion", "to": "Ireland"}, {"arrows": "to", "from": "Guan Xin", "to": "Ireland"}, {"arrows": "to", "from": "Gong Zhe", "to": "Ireland"}, {"arrows": "to", "from": "He Weiwei", "to": "Ireland"}, {"arrows": "to", "from": "Wang Hao", "to": "Ireland"}, {"arrows": "to", "from": "Zhang Hongtie", "to": "Ireland"}, {"arrows": "to", "from": "Huang Jiyuan", "to": "Ireland"}, {"arrows": "to", "from": "Zhao Huanxin", "to": "Ireland"}, {"arrows": "to", "from": "Hu Xijin", "to": "Ireland"}, {"arrows": "to", "from": "Discover China", "to": "Ireland"}, {"arrows": "to", "from": "Guizhou, China", "to": "Ireland"}, {"arrows": "to", "from": "In Qingdao (Meet Qingdao)", "to": "Ireland"}, {"arrows": "to", "from": "iPanda", "to": "Ireland"}, {"arrows": "to", "from": "Insight Xiangshan", "to": "Ireland"}, {"arrows": "to", "from": "Zhejiang, China", "to": "Ireland"}, {"arrows": "to", "from": "Zang Shijie (Jessica Zang)", "to": "Ireland"}, {"arrows": "to", "from": "Jiang Jiang", "to": "Ireland"}, {"arrows": "to", "from": "Li Jianhua", "to": "Ireland"}, {"arrows": "to", "from": "Li Jingjing", "to": "Ireland"}, {"arrows": "to", "from": "Ji Tao", "to": "Ireland"}, {"arrows": "to", "from": "Kui Yingchun (Kate Kui)", "to": "Ireland"}, {"arrows": "to", "from": "Mi Xue (Katie Mi)", "to": "Ireland"}, {"arrows": "to", "from": "Liu Kun", "to": "Ireland"}, {"arrows": "to", "from": "Learn Chinese", "to": "Ireland"}, {"arrows": "to", "from": "Li Qian (Leona Li)", "to": "Ireland"}, {"arrows": "to", "from": "Li Yang", "to": "Ireland"}, {"arrows": "to", "from": "Li Bijian", "to": "Ireland"}, {"arrows": "to", "from": "Lin Nan", "to": "Ireland"}, {"arrows": "to", "from": "Fan Lingzhi", "to": "Ireland"}, {"arrows": "to", "from": "Liu Xin", "to": "Ireland"}, {"arrows": "to", "from": "Liu Yutong", "to": "Ireland"}, {"arrows": "to", "from": "Luo Will", "to": "Ireland"}, {"arrows": "to", "from": "Ma Dashuai", "to": "Ireland"}, {"arrows": "to", "from": "Tao Yuan (Martha Tao)", "to": "Ireland"}, {"arrows": "to", "from": "Martina Fuchs", "to": "Ireland"}, {"arrows": "to", "from": "China Daily (Media Unlocked)", "to": "Ireland"}, {"arrows": "to", "from": "Zhang Lin (Melody Zhang)", "to": "Ireland"}, {"arrows": "to", "from": "Foreign Ministry Spokesperson", "to": "Ireland"}, {"arrows": "to", "from": "Miao Xiaojuan", "to": "Ireland"}, {"arrows": "to", "from": "Zhou Yiqiu (Rachel Zhou / Miss Wow)", "to": "Ireland"}, {"arrows": "to", "from": "Zhang Meng (Monica Zhang)", "to": "Ireland"}, {"arrows": "to", "from": "Patrick Zheng", "to": "Ireland"}, {"arrows": "to", "from": "People\u0027s Daily Business (Modern China)", "to": "Ireland"}, {"arrows": "to", "from": "People\u0027s Daily Life", "to": "Ireland"}, {"arrows": "to", "from": "People\u0027s Daily Sport China", "to": "Ireland"}, {"arrows": "to", "from": "People\u0027s Daily Traditional Chinese", "to": "Ireland"}, {"arrows": "to", "from": "Zhang Peijin", "to": "Ireland"}, {"arrows": "to", "from": "Xu Pan Yiru", "to": "Ireland"}, {"arrows": "to", "from": "People\u0027s Daily App", "to": "Ireland"}, {"arrows": "to", "from": "Phoenix TV News", "to": "Ireland"}, {"arrows": "to", "from": "Gu Qianwen", "to": "Ireland"}, {"arrows": "to", "from": "Chen Qingqing", "to": "Ireland"}, {"arrows": "to", "from": "Ren Ke", "to": "Ireland"}, {"arrows": "to", "from": "Bai Yunyi (Rita Bai)", "to": "Ireland"}, {"arrows": "to", "from": "Zhao Hong (Sabrina Zhao)", "to": "Ireland"}, {"arrows": "to", "from": "Discover Beautiful China", "to": "Ireland"}, {"arrows": "to", "from": "Zhang Ziyu (Shannon Zhang)", "to": "Ireland"}, {"arrows": "to", "from": "Shao Zheng", "to": "Ireland"}, {"arrows": "to", "from": "Shen Shiwei", "to": "Ireland"}, {"arrows": "to", "from": "Hua Chunying", "to": "Ireland"}, {"arrows": "to", "from": "Hu Zhaoming", "to": "Ireland"}, {"arrows": "to", "from": "Sun Weide", "to": "Ireland"}, {"arrows": "to", "from": "Su Yuting", "to": "Ireland"}, {"arrows": "to", "from": "Suzhou Wuzhong", "to": "Ireland"}, {"arrows": "to", "from": "Meng Zhe", "to": "Ireland"}, {"arrows": "to", "from": "China Mosaic", "to": "Ireland"}, {"arrows": "to", "from": "CGTN The Link", "to": "Ireland"}, {"arrows": "to", "from": "CGTN The Point with Liu Xin", "to": "Ireland"}, {"arrows": "to", "from": "Dong Xue (Serena Dong)", "to": "Ireland"}, {"arrows": "to", "from": "T-House", "to": "Ireland"}, {"arrows": "to", "from": "He Tianran", "to": "Ireland"}, {"arrows": "to", "from": "Tian Wei", "to": "Ireland"}, {"arrows": "to", "from": "Li Yimei (Vica Li)", "to": "Ireland"}, {"arrows": "to", "from": "Visit Chongqing", "to": "Ireland"}, {"arrows": "to", "from": "Wang Xuejing", "to": "Ireland"}, {"arrows": "to", "from": "Wang Guan (Michael Wang)", "to": "Ireland"}, {"arrows": "to", "from": "Wang Xiaohui", "to": "Ireland"}, {"arrows": "to", "from": "Wang Wenwen", "to": "Ireland"}, {"arrows": "to", "from": "Where Zhengzhou", "to": "Ireland"}, {"arrows": "to", "from": "CGTN World Insight with Tian Wei", "to": "Ireland"}, {"arrows": "to", "from": "Wang Tianyu (Evan Wang)", "to": "Ireland"}, {"arrows": "to", "from": "Wu Gang", "to": "Ireland"}, {"arrows": "to", "from": "Wu Lei", "to": "Ireland"}, {"arrows": "to", "from": "Wuxi, China", "to": "Ireland"}, {"arrows": "to", "from": "Xu Xinchen (Gerald Xinchen)", "to": "Ireland"}, {"arrows": "to", "from": "Chine Nouvelle", "to": "Ireland"}, {"arrows": "to", "from": "Xinhua Sci-Tech", "to": "Ireland"}, {"arrows": "to", "from": "Xinhua Sports", "to": "Ireland"}, {"arrows": "to", "from": "Xie Yongjun", "to": "Ireland"}, {"arrows": "to", "from": "Xinhua Chinese", "to": "Ireland"}, {"arrows": "to", "from": "Shang Yang (Sylvia Shang)", "to": "Ireland"}, {"arrows": "to", "from": "Xinhua Culture \u0026 Travel", "to": "Ireland"}, {"arrows": "to", "from": "Zhang Xinran", "to": "Ireland"}, {"arrows": "to", "from": "Xi\u0027s moments", "to": "Ireland"}, {"arrows": "to", "from": "Xu Zeyu Philip", "to": "Ireland"}, {"arrows": "to", "from": "Saina (Amy Saina)", "to": "Ireland"}, {"arrows": "to", "from": "Liu Yang", "to": "Ireland"}, {"arrows": "to", "from": "Yang Rui", "to": "Ireland"}, {"arrows": "to", "from": "Yang Zhao", "to": "Ireland"}, {"arrows": "to", "from": "Xu Yawen", "to": "Ireland"}, {"arrows": "to", "from": "Liu Fangqiang (Oliver Liu)", "to": "Ireland"}, {"arrows": "to", "from": "Zhao Yunfei", "to": "Ireland"}, {"arrows": "to", "from": "Ji Yuqiao", "to": "Ireland"}, {"arrows": "to", "from": "Zou Yue", "to": "Ireland"}, {"arrows": "to", "from": "Zhao Ying", "to": "Ireland"}, {"arrows": "to", "from": "Zheng Junfeng", "to": "Ireland"}, {"arrows": "to", "from": "Zhong Shi", "to": "Ireland"}, {"arrows": "to", "from": "Zhou Li", "to": "Ireland"}, {"arrows": "to", "from": "Wang Zichen", "to": "Ireland"}, {"arrows": "to", "from": "Zeng Ziyi", "to": "Ireland"}, {"arrows": "to", "from": "Zhao Lijian", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Zoom In", "to": "Ireland"}, {"arrows": "to", "from": "Zhang Shilei (Sheila Zhang)", "to": "Ireland"}, {"arrows": "to", "from": "Yang Yating (Christina Yang)", "to": "Ireland"}, {"arrows": "to", "from": "CCTV Asia Pacific", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Nature", "to": "Ireland"}, {"arrows": "to", "from": "China Plus Culture", "to": "Ireland"}, {"arrows": "to", "from": "China Plus News", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Crossover", "to": "Ireland"}, {"arrows": "to", "from": "C The Difference", "to": "Ireland"}, {"arrows": "to", "from": "L\u00fc Qianqian (Lucy Lv)", "to": "Ireland"}, {"arrows": "to", "from": "Li Zexin (Skystroller)", "to": "Ireland"}, {"arrows": "to", "from": "Wu Yo Yo", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Americas Now", "to": "Ireland"}, {"arrows": "to", "from": "CGTN BizTalk", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Documentary", "to": "Ireland"}, {"arrows": "to", "from": "Hi China", "to": "Ireland"}, {"arrows": "to", "from": "China International Import Expo (CIIE)", "to": "Ireland"}, {"arrows": "to", "from": "China Plus", "to": "Ireland"}, {"arrows": "to", "from": "Show Me China", "to": "Ireland"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Ireland"}, {"arrows": "to", "from": "Xinhua (Spectrum China)", "to": "Ireland"}, {"arrows": "to", "from": "CGTN.tiktok", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Z", "to": "Ireland"}, {"arrows": "to", "from": "Colorful China", "to": "Ireland"}, {"arrows": "to", "from": "Discover Ningxia", "to": "Ireland"}, {"arrows": "to", "from": "Discover Tianjin", "to": "Ireland"}, {"arrows": "to", "from": "Global Times (Glamour China)", "to": "Ireland"}, {"arrows": "to", "from": "Global Watch", "to": "Ireland"}, {"arrows": "to", "from": "NewsTok", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Our Planet Needs You", "to": "Ireland"}, {"arrows": "to", "from": "Panda Insight", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Razor Science", "to": "Ireland"}, {"arrows": "to", "from": "The Optimist!", "to": "Ireland"}, {"arrows": "to", "from": "CGTN The Agenda", "to": "Ireland"}, {"arrows": "to", "from": "Tang Knows", "to": "Ireland"}, {"arrows": "to", "from": "Visit Beijing", "to": "Ireland"}, {"arrows": "to", "from": "Zhejiang 520", "to": "Ireland"}, {"arrows": "to", "from": "Travel in China", "to": "Ireland"}, {"arrows": "to", "from": "CGTN Rediscovering China", "to": "Ireland"}, {"arrows": "to", "from": "China.com (English)", "to": "Ireland"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Ireland"}, {"arrows": "to", "from": "CRI Online", "to": "Ireland"}, {"arrows": "to", "from": "Liu Min", "to": "Ireland"}, {"arrows": "to", "from": "Niu Honglin (Niu Niu)", "to": "Ireland"}, {"arrows": "to", "from": "Trending in China", "to": "Ireland"}, {"arrows": "to", "from": "Vica Li Eating Daily", "to": "Ireland"}, {"arrows": "to", "from": "New Marco Polo", "to": "Ireland"}, {"arrows": "to", "from": "All-China Students\u0027 Federation", "to": "China"}, {"arrows": "to", "from": "Yunnan Gateway", "to": "China"}, {"arrows": "to", "from": "Andy Boreham", "to": "China"}, {"arrows": "to", "from": "Diba", "to": "China"}, {"arrows": "to", "from": "Discover Jiangxi", "to": "China"}, {"arrows": "to", "from": "Beijing Review", "to": "China"}, {"arrows": "to", "from": "BJD Review", "to": "China"}, {"arrows": "to", "from": "CCTV+", "to": "China"}, {"arrows": "to", "from": "CCTV News", "to": "China"}, {"arrows": "to", "from": "China Daily Hong Kong", "to": "China"}, {"arrows": "to", "from": "Xiamen, China", "to": "China"}, {"arrows": "to", "from": "Zhang Jun", "to": "China"}, {"arrows": "to", "from": "Chinese Embassy in United Nations (NYC)", "to": "China"}, {"arrows": "to", "from": "China Youth Daily", "to": "China"}, {"arrows": "to", "from": "Liu Yuyin", "to": "China"}, {"arrows": "to", "from": "Yangtze View World", "to": "China"}, {"arrows": "to", "from": "China Content Center", "to": "China"}, {"arrows": "to", "from": "China News Service (CNS) Agency", "to": "China"}, {"arrows": "to", "from": "DIOC", "to": "China"}, {"arrows": "to", "from": "DotDot News", "to": "China"}, {"arrows": "to", "from": "Dragon TV", "to": "China"}, {"arrows": "to", "from": "Discover Xinjiang", "to": "China"}, {"arrows": "to", "from": "China News Service Net (eCNS)", "to": "China"}, {"arrows": "to", "from": "Fuzhou City", "to": "China"}, {"arrows": "to", "from": "Yin Yue (Gabriel Y. Yin)", "to": "China"}, {"arrows": "to", "from": "Global Times", "to": "China"}, {"arrows": "to", "from": "Guancha Syndicate News", "to": "China"}, {"arrows": "to", "from": "Guangming Daily", "to": "China"}, {"arrows": "to", "from": "Guilin, China", "to": "China"}, {"arrows": "to", "from": "Guyan Muchan", "to": "China"}, {"arrows": "to", "from": "Henan TV", "to": "China"}, {"arrows": "to", "from": "Global Times Net", "to": "China"}, {"arrows": "to", "from": "Hunan Times", "to": "China"}, {"arrows": "to", "from": "Charming Changzhou", "to": "China"}, {"arrows": "to", "from": "iChongqing", "to": "China"}, {"arrows": "to", "from": "Insight Ningbo", "to": "China"}, {"arrows": "to", "from": "Jilin, China", "to": "China"}, {"arrows": "to", "from": "Jilin Daily", "to": "China"}, {"arrows": "to", "from": "Liu Xin (Emily Liu)", "to": "China"}, {"arrows": "to", "from": "Love Jiaxing", "to": "China"}, {"arrows": "to", "from": "Modern Express Post", "to": "China"}, {"arrows": "to", "from": "Ministry of Commerce (MOFCOM)", "to": "China"}, {"arrows": "to", "from": "People\u0027s Daily", "to": "China"}, {"arrows": "to", "from": "People\u0027s Daily Hong Kong", "to": "China"}, {"arrows": "to", "from": "Qiushi", "to": "China"}, {"arrows": "to", "from": "Guancha Syndicate", "to": "China"}, {"arrows": "to", "from": "Hao Zhangyu", "to": "China"}, {"arrows": "to", "from": "Sanya, China", "to": "China"}, {"arrows": "to", "from": "Shaanxi Moments", "to": "China"}, {"arrows": "to", "from": "Shanghai Daily SHINE", "to": "China"}, {"arrows": "to", "from": "Shanghai Eye", "to": "China"}, {"arrows": "to", "from": "Shaoxing: A Gateway to China\u0027s History", "to": "China"}, {"arrows": "to", "from": "Center.Sichuan", "to": "China"}, {"arrows": "to", "from": "Sixth Tone", "to": "China"}, {"arrows": "to", "from": "Kankan News", "to": "China"}, {"arrows": "to", "from": "Space Town Wenchang", "to": "China"}, {"arrows": "to", "from": "Ta Kung News", "to": "China"}, {"arrows": "to", "from": "Ta Kung Wen Wei", "to": "China"}, {"arrows": "to", "from": "Paper, The", "to": "China"}, {"arrows": "to", "from": "Guangdong Today", "to": "China"}, {"arrows": "to", "from": "Tibet Today", "to": "China"}, {"arrows": "to", "from": "Tide News", "to": "China"}, {"arrows": "to", "from": "Today Review", "to": "China"}, {"arrows": "to", "from": "Tong Shuo", "to": "China"}, {"arrows": "to", "from": "Tong Media HK", "to": "China"}, {"arrows": "to", "from": "Visit Sanya", "to": "China"}, {"arrows": "to", "from": "Friendly Shandong", "to": "China"}, {"arrows": "to", "from": "Suzhou, China", "to": "China"}, {"arrows": "to", "from": "Wave Media", "to": "China"}, {"arrows": "to", "from": "Xinhua News Agency", "to": "China"}, {"arrows": "to", "from": "Xinhua Net", "to": "China"}, {"arrows": "to", "from": "Xinjiang Channel", "to": "China"}, {"arrows": "to", "from": "Yicai", "to": "China"}, {"arrows": "to", "from": "Yicai Global", "to": "China"}, {"arrows": "to", "from": "Zhanhao", "to": "China"}, {"arrows": "to", "from": "Zhengguan News", "to": "China"}, {"arrows": "to", "from": "CCTV Chinese", "to": "China"}, {"arrows": "to", "from": "CCTV.com", "to": "China"}, {"arrows": "to", "from": "Phoenix Online", "to": "China"}, {"arrows": "to", "from": "Wang Shi (Julian Waghann)", "to": "China"}, {"arrows": "to", "from": "Mango TV International", "to": "China"}, {"arrows": "to", "from": "Phoenix HK TV (iFeng)", "to": "China"}, {"arrows": "to", "from": "Zhengguan Media", "to": "China"}, {"arrows": "to", "from": "CCTV4 International", "to": "China"}, {"arrows": "to", "from": "Anhui TV Station", "to": "China"}, {"arrows": "to", "from": "Guangxi Satellite TV", "to": "China"}, {"arrows": "to", "from": "Heilongjiang JTV", "to": "China"}, {"arrows": "to", "from": "Dragon TV Crossover", "to": "China"}, {"arrows": "to", "from": "Gansu TV Official", "to": "China"}, {"arrows": "to", "from": "PLA Daily", "to": "China"}, {"arrows": "to", "from": "Hubei TV", "to": "China"}, {"arrows": "to", "from": "Litchi Live", "to": "China"}, {"arrows": "to", "from": "Hubei Announcements (Open Hubei)", "to": "China"}, {"arrows": "to", "from": "Phoenix TV (Finance)", "to": "China"}, {"arrows": "to", "from": "Phoenix TV", "to": "China"}, {"arrows": "to", "from": "Shanxi Radio and TV Station", "to": "China"}, {"arrows": "to", "from": "Shanghai TV", "to": "China"}, {"arrows": "to", "from": "Jiupai News", "to": "China"}, {"arrows": "to", "from": "The Cover News", "to": "China"}, {"arrows": "to", "from": "Yunnan TV", "to": "China"}, {"arrows": "to", "from": "CCTV3 Variety", "to": "China"}, {"arrows": "to", "from": "Hangzhou 2022", "to": "China"}, {"arrows": "to", "from": "Henan TV (HNTV)", "to": "China"}, {"arrows": "to", "from": "International Channel Shanghai (ICS)", "to": "China"}, {"arrows": "to", "from": "Little Turtle Lisa (Elle)", "to": "China"}, {"arrows": "to", "from": "Xinwen Qishi Lu", "to": "China"}, {"arrows": "to", "from": "Visit Jiangsu", "to": "China"}, {"arrows": "to", "from": "Visit Shaanxi", "to": "China"}, {"arrows": "to", "from": "Dot News 88", "to": "China"}, {"arrows": "to", "from": "CCTV Kuaikan", "to": "China"}, {"arrows": "to", "from": "JSChina_Com_Cn", "to": "China"}, {"arrows": "to", "from": "Chinese Office of the Commissioner in Hong Kong", "to": "China"}, {"arrows": "to", "from": "Shiting Wenshan", "to": "China"}, {"arrows": "to", "from": "Xinhua Hong Kong", "to": "China"}, {"arrows": "to", "from": "Chen Zhong (Dechinghutay / Ghoti)", "to": "Afghanistan"}, {"arrows": "to", "from": "Zhao Xing", "to": "Afghanistan"}, {"arrows": "to", "from": "CRI Pashto", "to": "Afghanistan"}, {"arrows": "to", "from": "Yue Xiaoyong", "to": "Afghanistan"}, {"arrows": "to", "from": "Chen Xu", "to": "Switzerland"}, {"arrows": "to", "from": "Chinese Consulate General in Zurich", "to": "Switzerland"}, {"arrows": "to", "from": "CGTN Fran\u00e7ais", "to": "Switzerland"}, {"arrows": "to", "from": "Chinese Embassy in Switzerland", "to": "Switzerland"}, {"arrows": "to", "from": "China.org.cn (French)", "to": "Switzerland"}, {"arrows": "to", "from": "Chinese Embassy in Switzerland (UN Missions)", "to": "Switzerland"}, {"arrows": "to", "from": "Chlo\u00e9 Zhou", "to": "Switzerland"}, {"arrows": "to", "from": "Xu Zhike (Coco Studio)", "to": "Switzerland"}, {"arrows": "to", "from": "CRI Fran\u00e7ais", "to": "Switzerland"}, {"arrows": "to", "from": "Zhao Qinghua", "to": "Switzerland"}, {"arrows": "to", "from": "Han Yingya (Lena Han / LenaStudio)", "to": "Switzerland"}, {"arrows": "to", "from": "Jie Lynn (Lynn\u0027s Fantasy)", "to": "Switzerland"}, {"arrows": "to", "from": "Zhang Shanhui (Mon P\u00e9kin Express / Jacky Zhang)", "to": "Switzerland"}, {"arrows": "to", "from": "Xu Li", "to": "Switzerland"}, {"arrows": "to", "from": "Jiang Yuan (J\u0027Y Pense)", "to": "Switzerland"}, {"arrows": "to", "from": "Zhu Jingtian (Tiantian)", "to": "Switzerland"}, {"arrows": "to", "from": "Wang Bing", "to": "Switzerland"}, {"arrows": "to", "from": "Secrets de chef", "to": "Switzerland"}, {"arrows": "to", "from": "Zhao Songmei (M\u00e9lina Zhao)", "to": "Switzerland"}, {"arrows": "to", "from": "Li Song", "to": "Austria"}, {"arrows": "to", "from": "Zhu Jing", "to": "Austria"}, {"arrows": "to", "from": "CGTN Europe", "to": "Austria"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Austria"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Austria"}, {"arrows": "to", "from": "China Daily Europe", "to": "Austria"}, {"arrows": "to", "from": "Chinese Embassy in Austria", "to": "Austria"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Austria"}, {"arrows": "to", "from": "Qi Mei", "to": "Austria"}, {"arrows": "to", "from": "Li Xiaosi", "to": "Austria"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Austria"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Austria"}, {"arrows": "to", "from": "Lu Kang", "to": "Indonesia"}, {"arrows": "to", "from": "Hou Yanqi", "to": "Indonesia"}, {"arrows": "to", "from": "Gao Huijun", "to": "Indonesia"}, {"arrows": "to", "from": "Chinese Embassy in Indonesia", "to": "Indonesia"}, {"arrows": "to", "from": "CRI Indonesian", "to": "Indonesia"}, {"arrows": "to", "from": "Zhang Yiming", "to": "United Arab Emirates"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "United Arab Emirates"}, {"arrows": "to", "from": "Cao Yi", "to": "United Arab Emirates"}, {"arrows": "to", "from": "China Consulate in Dubai", "to": "United Arab Emirates"}, {"arrows": "to", "from": "CGTN Arabic", "to": "United Arab Emirates"}, {"arrows": "to", "from": "CRI Arabic", "to": "United Arab Emirates"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "United Arab Emirates"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "United Arab Emirates"}, {"arrows": "to", "from": "Assia", "to": "United Arab Emirates"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "United Arab Emirates"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "United Arab Emirates"}, {"arrows": "to", "from": "Zhu Jing", "to": "Belgium"}, {"arrows": "to", "from": "CGTN Europe", "to": "Belgium"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Belgium"}, {"arrows": "to", "from": "CGTN Fran\u00e7ais", "to": "Belgium"}, {"arrows": "to", "from": "Cao Zhongming", "to": "Belgium"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Belgium"}, {"arrows": "to", "from": "China Daily Europe", "to": "Belgium"}, {"arrows": "to", "from": "Chinese Embassy in Belgium", "to": "Belgium"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Belgium"}, {"arrows": "to", "from": "China.org.cn (French)", "to": "Belgium"}, {"arrows": "to", "from": "Chlo\u00e9 Zhou", "to": "Belgium"}, {"arrows": "to", "from": "Xu Zhike (Coco Studio)", "to": "Belgium"}, {"arrows": "to", "from": "CRI Fran\u00e7ais", "to": "Belgium"}, {"arrows": "to", "from": "Fu Cong", "to": "Belgium"}, {"arrows": "to", "from": "Han Yingya (Lena Han / LenaStudio)", "to": "Belgium"}, {"arrows": "to", "from": "Jie Lynn (Lynn\u0027s Fantasy)", "to": "Belgium"}, {"arrows": "to", "from": "Zhang Shanhui (Mon P\u00e9kin Express / Jacky Zhang)", "to": "Belgium"}, {"arrows": "to", "from": "Xu Li", "to": "Belgium"}, {"arrows": "to", "from": "Jiang Yuan (J\u0027Y Pense)", "to": "Belgium"}, {"arrows": "to", "from": "Zhu Jingtian (Tiantian)", "to": "Belgium"}, {"arrows": "to", "from": "Wang Bing", "to": "Belgium"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Belgium"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Belgium"}, {"arrows": "to", "from": "Secrets de chef", "to": "Belgium"}, {"arrows": "to", "from": "Zhao Songmei (M\u00e9lina Zhao)", "to": "Belgium"}, {"arrows": "to", "from": "Zhu Jing", "to": "Bulgaria"}, {"arrows": "to", "from": "Dong Xiaojun", "to": "Bulgaria"}, {"arrows": "to", "from": "CGTN Europe", "to": "Bulgaria"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Bulgaria"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Bulgaria"}, {"arrows": "to", "from": "China Daily Europe", "to": "Bulgaria"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Bulgaria"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Bulgaria"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Bulgaria"}, {"arrows": "to", "from": "Chinese Embassy in Bulgaria", "to": "Bulgaria"}, {"arrows": "to", "from": "Zhu Jing", "to": "Croatia"}, {"arrows": "to", "from": "CGTN Europe", "to": "Croatia"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Croatia"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Croatia"}, {"arrows": "to", "from": "China Daily Europe", "to": "Croatia"}, {"arrows": "to", "from": "Chinese Embassy in Croatia", "to": "Croatia"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Croatia"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Croatia"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Croatia"}, {"arrows": "to", "from": "Zhu Jing", "to": "Cyprus"}, {"arrows": "to", "from": "Huang Xingyuan", "to": "Cyprus"}, {"arrows": "to", "from": "CGTN Europe", "to": "Cyprus"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Cyprus"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Cyprus"}, {"arrows": "to", "from": "China Daily Europe", "to": "Cyprus"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Cyprus"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Cyprus"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Cyprus"}, {"arrows": "to", "from": "Zhu Jing", "to": "Czechia"}, {"arrows": "to", "from": "CGTN Europe", "to": "Czechia"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Czechia"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Czechia"}, {"arrows": "to", "from": "China Daily Europe", "to": "Czechia"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Czechia"}, {"arrows": "to", "from": "Chinese Embassy in Czech Rep.", "to": "Czechia"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Czechia"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Czechia"}, {"arrows": "to", "from": "Zhu Jing", "to": "Denmark"}, {"arrows": "to", "from": "CGTN Europe", "to": "Denmark"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Denmark"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Denmark"}, {"arrows": "to", "from": "China Daily Europe", "to": "Denmark"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Denmark"}, {"arrows": "to", "from": "Chinese Embassy in Denmark", "to": "Denmark"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Denmark"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Denmark"}, {"arrows": "to", "from": "Zhu Jing", "to": "Estonia"}, {"arrows": "to", "from": "CGTN Europe", "to": "Estonia"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Estonia"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Estonia"}, {"arrows": "to", "from": "China Daily Europe", "to": "Estonia"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Estonia"}, {"arrows": "to", "from": "Chinese Embassy in Estonia", "to": "Estonia"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Estonia"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Estonia"}, {"arrows": "to", "from": "Zhu Jing", "to": "Finland"}, {"arrows": "to", "from": "CGTN Europe", "to": "Finland"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Finland"}, {"arrows": "to", "from": "Chen Huixin", "to": "Finland"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Finland"}, {"arrows": "to", "from": "China Daily Europe", "to": "Finland"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Finland"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Finland"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Finland"}, {"arrows": "to", "from": "Zhu Jing", "to": "France"}, {"arrows": "to", "from": "Chinese Embassy in France", "to": "France"}, {"arrows": "to", "from": "CGTN Europe", "to": "France"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "France"}, {"arrows": "to", "from": "CGTN Fran\u00e7ais", "to": "France"}, {"arrows": "to", "from": "Chinese Consulate General in Lyon", "to": "France"}, {"arrows": "to", "from": "Zhang Jun", "to": "France"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "France"}, {"arrows": "to", "from": "China Daily Europe", "to": "France"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "France"}, {"arrows": "to", "from": "China.org.cn (French)", "to": "France"}, {"arrows": "to", "from": "Chinese Embassy in United Nations (NYC)", "to": "France"}, {"arrows": "to", "from": "Chlo\u00e9 Zhou", "to": "France"}, {"arrows": "to", "from": "Liu Yuyin", "to": "France"}, {"arrows": "to", "from": "Xu Zhike (Coco Studio)", "to": "France"}, {"arrows": "to", "from": "Chinese Consulate General in Strasbourg", "to": "France"}, {"arrows": "to", "from": "CRI Fran\u00e7ais", "to": "France"}, {"arrows": "to", "from": "Han Yingya (Lena Han / LenaStudio)", "to": "France"}, {"arrows": "to", "from": "Jie Lynn (Lynn\u0027s Fantasy)", "to": "France"}, {"arrows": "to", "from": "Zhang Shanhui (Mon P\u00e9kin Express / Jacky Zhang)", "to": "France"}, {"arrows": "to", "from": "Xu Li", "to": "France"}, {"arrows": "to", "from": "Jiang Yuan (J\u0027Y Pense)", "to": "France"}, {"arrows": "to", "from": "Zhu Jingtian (Tiantian)", "to": "France"}, {"arrows": "to", "from": "Wang Bing", "to": "France"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "France"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "France"}, {"arrows": "to", "from": "Secrets de chef", "to": "France"}, {"arrows": "to", "from": "Zhao Songmei (M\u00e9lina Zhao)", "to": "France"}, {"arrows": "to", "from": "Zhu Jing", "to": "Germany"}, {"arrows": "to", "from": "CGTN Europe", "to": "Germany"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Germany"}, {"arrows": "to", "from": "Chinese Consulate General in Frankfurt am Main", "to": "Germany"}, {"arrows": "to", "from": "Chinese Consulate General in Munich", "to": "Germany"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Germany"}, {"arrows": "to", "from": "China Daily Europe", "to": "Germany"}, {"arrows": "to", "from": "Chinese Embassy in Germany", "to": "Germany"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Germany"}, {"arrows": "to", "from": "CRI German", "to": "Germany"}, {"arrows": "to", "from": "Du Xiaohui", "to": "Germany"}, {"arrows": "to", "from": "Chinese Consulate General in Hamburg", "to": "Germany"}, {"arrows": "to", "from": "Yu Mama (Mama Yu)", "to": "Germany"}, {"arrows": "to", "from": "Mengyu", "to": "Germany"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Germany"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Germany"}, {"arrows": "to", "from": "Zhu Jing", "to": "Greece"}, {"arrows": "to", "from": "CGTN Europe", "to": "Greece"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Greece"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Greece"}, {"arrows": "to", "from": "China Daily Europe", "to": "Greece"}, {"arrows": "to", "from": "Chinese Embassy in Greece", "to": "Greece"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Greece"}, {"arrows": "to", "from": "CRI Greek", "to": "Greece"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Greece"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Greece"}, {"arrows": "to", "from": "Xiao Junzheng", "to": "Greece"}, {"arrows": "to", "from": "Zhu Jing", "to": "Hungary"}, {"arrows": "to", "from": "CGTN Europe", "to": "Hungary"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Hungary"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Hungary"}, {"arrows": "to", "from": "China Daily Europe", "to": "Hungary"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Hungary"}, {"arrows": "to", "from": "Chinese Embassy in Hungary", "to": "Hungary"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Hungary"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Hungary"}, {"arrows": "to", "from": "Zhu Jing", "to": "Italy"}, {"arrows": "to", "from": "Chinese Embassy in Italy", "to": "Italy"}, {"arrows": "to", "from": "Jia Guide", "to": "Italy"}, {"arrows": "to", "from": "CGTN Europe", "to": "Italy"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Italy"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Italy"}, {"arrows": "to", "from": "China Daily Europe", "to": "Italy"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Italy"}, {"arrows": "to", "from": "CRI Italian (Radio Cina Internazionale)", "to": "Italy"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Italy"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Italy"}, {"arrows": "to", "from": "Zhu Jing", "to": "Latvia"}, {"arrows": "to", "from": "CGTN Europe", "to": "Latvia"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Latvia"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Latvia"}, {"arrows": "to", "from": "China Daily Europe", "to": "Latvia"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Latvia"}, {"arrows": "to", "from": "Chinese Embassy in Latvia", "to": "Latvia"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Latvia"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Latvia"}, {"arrows": "to", "from": "Zhu Jing", "to": "Lithuania"}, {"arrows": "to", "from": "CGTN Europe", "to": "Lithuania"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Lithuania"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Lithuania"}, {"arrows": "to", "from": "China Daily Europe", "to": "Lithuania"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Lithuania"}, {"arrows": "to", "from": "Chinese Embassy in Lithuania", "to": "Lithuania"}, {"arrows": "to", "from": "Shen Zhifei", "to": "Lithuania"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Lithuania"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Lithuania"}, {"arrows": "to", "from": "Zhu Jing", "to": "Luxembourg"}, {"arrows": "to", "from": "CGTN Europe", "to": "Luxembourg"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Luxembourg"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Luxembourg"}, {"arrows": "to", "from": "China Daily Europe", "to": "Luxembourg"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Luxembourg"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Luxembourg"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Luxembourg"}, {"arrows": "to", "from": "Zhu Jing", "to": "Malta"}, {"arrows": "to", "from": "CGTN Europe", "to": "Malta"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Malta"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Malta"}, {"arrows": "to", "from": "China Daily Europe", "to": "Malta"}, {"arrows": "to", "from": "Chinese Embassy in Malta", "to": "Malta"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Malta"}, {"arrows": "to", "from": "Yu Dunhai", "to": "Malta"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Malta"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Malta"}, {"arrows": "to", "from": "Zhu Jing", "to": "Netherlands"}, {"arrows": "to", "from": "CGTN Europe", "to": "Netherlands"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Netherlands"}, {"arrows": "to", "from": "Chinese Permanent Mission to the OPCW", "to": "Netherlands"}, {"arrows": "to", "from": "Tan Jian", "to": "Netherlands"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Netherlands"}, {"arrows": "to", "from": "China Daily Europe", "to": "Netherlands"}, {"arrows": "to", "from": "Chinese Embassy in Netherlands", "to": "Netherlands"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Netherlands"}, {"arrows": "to", "from": "Liu Yan", "to": "Netherlands"}, {"arrows": "to", "from": "Xu Hong", "to": "Netherlands"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Netherlands"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Netherlands"}, {"arrows": "to", "from": "Zhu Jing", "to": "Poland"}, {"arrows": "to", "from": "Liu Guangyuan", "to": "Poland"}, {"arrows": "to", "from": "CGTN Europe", "to": "Poland"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Poland"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Poland"}, {"arrows": "to", "from": "China Daily Europe", "to": "Poland"}, {"arrows": "to", "from": "Chinese Embassy in Poland", "to": "Poland"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Poland"}, {"arrows": "to", "from": "CRI Polish", "to": "Poland"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Poland"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Poland"}, {"arrows": "to", "from": "Zhu Jing", "to": "Portugal"}, {"arrows": "to", "from": "CGTN Europe", "to": "Portugal"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Portugal"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Portugal"}, {"arrows": "to", "from": "China Daily Europe", "to": "Portugal"}, {"arrows": "to", "from": "Chinese Embassy in Portugal", "to": "Portugal"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Portugal"}, {"arrows": "to", "from": "Mundo China", "to": "Portugal"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Portugal"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Portugal"}, {"arrows": "to", "from": "CRI Portuguese", "to": "Portugal"}, {"arrows": "to", "from": "Zhu Jing", "to": "Romania"}, {"arrows": "to", "from": "CGTN Europe", "to": "Romania"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Romania"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Romania"}, {"arrows": "to", "from": "China Daily Europe", "to": "Romania"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Romania"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Romania"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Romania"}, {"arrows": "to", "from": "CRI Romanian", "to": "Romania"}, {"arrows": "to", "from": "Zhu Jing", "to": "Slovakia"}, {"arrows": "to", "from": "CGTN Europe", "to": "Slovakia"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Slovakia"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Slovakia"}, {"arrows": "to", "from": "China Daily Europe", "to": "Slovakia"}, {"arrows": "to", "from": "Chinese Embassy in Slovakia", "to": "Slovakia"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Slovakia"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Slovakia"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Slovakia"}, {"arrows": "to", "from": "Zhu Jing", "to": "Slovenia"}, {"arrows": "to", "from": "CGTN Europe", "to": "Slovenia"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Slovenia"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Slovenia"}, {"arrows": "to", "from": "China Daily Europe", "to": "Slovenia"}, {"arrows": "to", "from": "Chinese Embassy in Slovenia", "to": "Slovenia"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Slovenia"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Slovenia"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Slovenia"}, {"arrows": "to", "from": "Zhu Jing", "to": "Spain"}, {"arrows": "to", "from": "CGTN Europe", "to": "Spain"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Spain"}, {"arrows": "to", "from": "Chen Ping", "to": "Spain"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Spain"}, {"arrows": "to", "from": "China Daily Europe", "to": "Spain"}, {"arrows": "to", "from": "Chinese Embassy in Spain", "to": "Spain"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Spain"}, {"arrows": "to", "from": "Chinese Consulate General in Barcelona", "to": "Spain"}, {"arrows": "to", "from": "Liu Bo", "to": "Spain"}, {"arrows": "to", "from": "Sun Xueying (Teresa Sun / Un T\u00e9 con Teresa)", "to": "Spain"}, {"arrows": "to", "from": "Yao Fei", "to": "Spain"}, {"arrows": "to", "from": "Zhang Yiwen", "to": "Spain"}, {"arrows": "to", "from": "He Beibei", "to": "Spain"}, {"arrows": "to", "from": "CGTN Espa\u00f1ol", "to": "Spain"}, {"arrows": "to", "from": "Jimena Li Yu (Jimena a tu clic)", "to": "Spain"}, {"arrows": "to", "from": "Xinhua Espa\u00f1ol", "to": "Spain"}, {"arrows": "to", "from": "Wang Mengchu (Kaka / Shakala Ka)", "to": "Spain"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Spain"}, {"arrows": "to", "from": "CRI Espa\u00f1ol (Onda China)", "to": "Spain"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Spain"}, {"arrows": "to", "from": "Deng Ying (Viva Studio)", "to": "Spain"}, {"arrows": "to", "from": "Radio Internacional de China en espa\u00f1ol", "to": "Spain"}, {"arrows": "to", "from": "Shi Shuai (Letizia Shi / Letizia Con Chino)", "to": "Spain"}, {"arrows": "to", "from": "Zhu Jing", "to": "Sweden"}, {"arrows": "to", "from": "CGTN Europe", "to": "Sweden"}, {"arrows": "to", "from": "CGTN Europe Breaking News", "to": "Sweden"}, {"arrows": "to", "from": "China Daily EU Bureau", "to": "Sweden"}, {"arrows": "to", "from": "China Daily Europe", "to": "Sweden"}, {"arrows": "to", "from": "Chinese Embassy in EU", "to": "Sweden"}, {"arrows": "to", "from": "Shan Ni\u0027er (Yummy Shanny)", "to": "Sweden"}, {"arrows": "to", "from": "CRI Esperanto (\u0108ina Radio Internacia)", "to": "Sweden"}, {"arrows": "to", "from": "Liu Yuxi", "to": "Nigeria"}, {"arrows": "to", "from": "China Daily Africa", "to": "Nigeria"}, {"arrows": "to", "from": "CGTN Africa", "to": "Nigeria"}, {"arrows": "to", "from": "Chinese Embassy in Nigeria", "to": "Nigeria"}, {"arrows": "to", "from": "CRI Hausa", "to": "Nigeria"}, {"arrows": "to", "from": "Liu Yongfeng", "to": "Nigeria"}, {"arrows": "to", "from": "Wu Peng", "to": "Nigeria"}, {"arrows": "to", "from": "Zhao Baogang", "to": "Nigeria"}, {"arrows": "to", "from": "Zhang Murtala", "to": "Nigeria"}, {"arrows": "to", "from": "Liu Yuxi", "to": "Egypt"}, {"arrows": "to", "from": "Liao Liqiang", "to": "Egypt"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Egypt"}, {"arrows": "to", "from": "Cao Yi", "to": "Egypt"}, {"arrows": "to", "from": "China Daily Africa", "to": "Egypt"}, {"arrows": "to", "from": "CGTN Africa", "to": "Egypt"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Egypt"}, {"arrows": "to", "from": "Chinese Embassy in Egypt", "to": "Egypt"}, {"arrows": "to", "from": "CRI Arabic", "to": "Egypt"}, {"arrows": "to", "from": "Wang Xin (Fayhaa Wang)", "to": "Egypt"}, {"arrows": "to", "from": "Liu Yongfeng", "to": "Egypt"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Egypt"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Egypt"}, {"arrows": "to", "from": "Wu Peng", "to": "Egypt"}, {"arrows": "to", "from": "Zhao Baogang", "to": "Egypt"}, {"arrows": "to", "from": "Assia", "to": "Egypt"}, {"arrows": "to", "from": "Wu Danni (Danni Report)", "to": "Egypt"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Egypt"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Egypt"}, {"arrows": "to", "from": "Chinese Consulate General in Alexandria", "to": "Egypt"}, {"arrows": "to", "from": "Liu Yuxi", "to": "South Africa"}, {"arrows": "to", "from": "China Daily Africa", "to": "South Africa"}, {"arrows": "to", "from": "CGTN Africa", "to": "South Africa"}, {"arrows": "to", "from": "Chen Xiaodong", "to": "South Africa"}, {"arrows": "to", "from": "Chinese Consulate General in Johannesburg", "to": "South Africa"}, {"arrows": "to", "from": "Liu Yongfeng", "to": "South Africa"}, {"arrows": "to", "from": "Wu Peng", "to": "South Africa"}, {"arrows": "to", "from": "Zhao Baogang", "to": "South Africa"}, {"arrows": "to", "from": "Chinese Consulate General in Cape Town", "to": "South Africa"}, {"arrows": "to", "from": "China Plus South Africa", "to": "South Africa"}, {"arrows": "to", "from": "Chinese Embassy in South Africa", "to": "South Africa"}, {"arrows": "to", "from": "Liu Yuxi", "to": "Algeria"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Algeria"}, {"arrows": "to", "from": "Cao Yi", "to": "Algeria"}, {"arrows": "to", "from": "China Daily Africa", "to": "Algeria"}, {"arrows": "to", "from": "CGTN Africa", "to": "Algeria"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Algeria"}, {"arrows": "to", "from": "Chinese Embassy in Algeria", "to": "Algeria"}, {"arrows": "to", "from": "CRI Arabic", "to": "Algeria"}, {"arrows": "to", "from": "Yu Yangtao (\u062d\u0643\u064a\u0645)", "to": "Algeria"}, {"arrows": "to", "from": "Liu Yongfeng", "to": "Algeria"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Algeria"}, {"arrows": "to", "from": "Quan Quan", "to": "Algeria"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Algeria"}, {"arrows": "to", "from": "Wu Peng", "to": "Algeria"}, {"arrows": "to", "from": "Ruan Yaying", "to": "Algeria"}, {"arrows": "to", "from": "Zhao Baogang", "to": "Algeria"}, {"arrows": "to", "from": "Assia", "to": "Algeria"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Algeria"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Algeria"}, {"arrows": "to", "from": "Liu Yuxi", "to": "Morocco"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Morocco"}, {"arrows": "to", "from": "Cao Yi", "to": "Morocco"}, {"arrows": "to", "from": "China Daily Africa", "to": "Morocco"}, {"arrows": "to", "from": "CGTN Africa", "to": "Morocco"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Morocco"}, {"arrows": "to", "from": "Chinese Embassy in Morocco", "to": "Morocco"}, {"arrows": "to", "from": "CRI Arabic", "to": "Morocco"}, {"arrows": "to", "from": "Liu Yongfeng", "to": "Morocco"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Morocco"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Morocco"}, {"arrows": "to", "from": "Wu Peng", "to": "Morocco"}, {"arrows": "to", "from": "Zhao Baogang", "to": "Morocco"}, {"arrows": "to", "from": "Assia", "to": "Morocco"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Morocco"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Morocco"}, {"arrows": "to", "from": "Lei Kezhong", "to": "Lesotho"}, {"arrows": "to", "from": "Chinese Embassy in Lesotho", "to": "Lesotho"}, {"arrows": "to", "from": "Chang Hua", "to": "Iran"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Iran"}, {"arrows": "to", "from": "Cao Yi", "to": "Iran"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Iran"}, {"arrows": "to", "from": "CRI Arabic", "to": "Iran"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Iran"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Iran"}, {"arrows": "to", "from": "Assia", "to": "Iran"}, {"arrows": "to", "from": "Chinese Embassy in Iran", "to": "Iran"}, {"arrows": "to", "from": "CRI Persian", "to": "Iran"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Iran"}, {"arrows": "to", "from": "Lin Simiao (Anahita Lin)", "to": "Iran"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Iran"}, {"arrows": "to", "from": "Chen Bo", "to": "Serbia"}, {"arrows": "to", "from": "Chinese Embassy in Serbia", "to": "Serbia"}, {"arrows": "to", "from": "Chen Weiqing", "to": "Saudi Arabia"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Saudi Arabia"}, {"arrows": "to", "from": "Cao Yi", "to": "Saudi Arabia"}, {"arrows": "to", "from": "Chinese Consulate General in Jeddah", "to": "Saudi Arabia"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Saudi Arabia"}, {"arrows": "to", "from": "Chinese Embassy in Saudi Arabia", "to": "Saudi Arabia"}, {"arrows": "to", "from": "CRI Arabic", "to": "Saudi Arabia"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Saudi Arabia"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Saudi Arabia"}, {"arrows": "to", "from": "Assia", "to": "Saudi Arabia"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Saudi Arabia"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Saudi Arabia"}, {"arrows": "to", "from": "Chinese Embassy in Burundi", "to": "Burundi"}, {"arrows": "to", "from": "CRI Swahili", "to": "Burundi"}, {"arrows": "to", "from": "Chinese Embassy in Cameroon", "to": "Cameroon"}, {"arrows": "to", "from": "Chinese Embassy in Dem. Rep. of Congo (Kinshasa)", "to": "Democratic Rep. Congo"}, {"arrows": "to", "from": "Chinese Embassy in Rep. of Congo (Brazzaville)", "to": "Democratic Rep. Congo"}, {"arrows": "to", "from": "Chinese Embassy in Chad", "to": "Chad"}, {"arrows": "to", "from": "Fang Qiu", "to": "Trinidad and Tobago"}, {"arrows": "to", "from": "Chinese Embassy in Trinidad and Tobago", "to": "Trinidad and Tobago"}, {"arrows": "to", "from": "Kong Xuanyou", "to": "Japan"}, {"arrows": "to", "from": "Wu Jianghao", "to": "Japan"}, {"arrows": "to", "from": "China.com (Japanese)", "to": "Japan"}, {"arrows": "to", "from": "Chinese Consulate General in Osaka", "to": "Japan"}, {"arrows": "to", "from": "Chinese Consulate General in Fukuoka", "to": "Japan"}, {"arrows": "to", "from": "Chinese Consulate General in Nagasaki", "to": "Japan"}, {"arrows": "to", "from": "Chinese Consulate General in Nagoya", "to": "Japan"}, {"arrows": "to", "from": "Chinese Consulate General in Niigata", "to": "Japan"}, {"arrows": "to", "from": "Chinese Embassy in Japan", "to": "Japan"}, {"arrows": "to", "from": "CRI Japanese", "to": "Japan"}, {"arrows": "to", "from": "Lu Guijin", "to": "Japan"}, {"arrows": "to", "from": "Cao Bing", "to": "Japan"}, {"arrows": "to", "from": "Wang Yingying (A-Chan / A\u3061\u3083\u3093)", "to": "Japan"}, {"arrows": "to", "from": "Xinhua Japanese", "to": "Japan"}, {"arrows": "to", "from": "Xue Jian", "to": "Japan"}, {"arrows": "to", "from": "Zhang Yikang (Kathie Zhang / \u65b0\u7c73\u30de\u30de\u30fb\u3044\u30fc\u304b\u3093)", "to": "Japan"}, {"arrows": "to", "from": "People\u0027s Daily Japanese", "to": "Japan"}, {"arrows": "to", "from": "China Consulate Osaka", "to": "Japan"}, {"arrows": "to", "from": "Haiwai Net (Japan Fusion Media Center)", "to": "Japan"}, {"arrows": "to", "from": "iPanda (Japanese)", "to": "Japan"}, {"arrows": "to", "from": "Liu Quan", "to": "Suriname"}, {"arrows": "to", "from": "Chinese Embassy in Suriname", "to": "Suriname"}, {"arrows": "to", "from": "Liu Xiaoming", "to": "South Korea"}, {"arrows": "to", "from": "Chinese Consulate General in Jeju-Do", "to": "South Korea"}, {"arrows": "to", "from": "Chen Ribiao", "to": "South Korea"}, {"arrows": "to", "from": "Chinese Embassy in South Korea", "to": "South Korea"}, {"arrows": "to", "from": "Xiao Song", "to": "South Korea"}, {"arrows": "to", "from": "Raniya (\ub77c\ub2c8)", "to": "South Korea"}, {"arrows": "to", "from": "CRI Korean", "to": "South Korea"}, {"arrows": "to", "from": "Nong Rong", "to": "Pakistan"}, {"arrows": "to", "from": "Chinese Embassy in Pakistan", "to": "Pakistan"}, {"arrows": "to", "from": "CRI Urdu", "to": "Pakistan"}, {"arrows": "to", "from": "FM98 Dosti Channel", "to": "Pakistan"}, {"arrows": "to", "from": "Gwadar Pro", "to": "Pakistan"}, {"arrows": "to", "from": "Wang Xianfeng", "to": "Pakistan"}, {"arrows": "to", "from": "Song Yichu", "to": "Pakistan"}, {"arrows": "to", "from": "Zhang Heqing", "to": "Pakistan"}, {"arrows": "to", "from": "Noreen", "to": "Pakistan"}, {"arrows": "to", "from": "Wang Iffat", "to": "Pakistan"}, {"arrows": "to", "from": "Chosi", "to": "Pakistan"}, {"arrows": "to", "from": "Tabasum", "to": "Pakistan"}, {"arrows": "to", "from": "Zhou Jian", "to": "Qatar"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Qatar"}, {"arrows": "to", "from": "Cao Yi", "to": "Qatar"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Qatar"}, {"arrows": "to", "from": "CRI Arabic", "to": "Qatar"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Qatar"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Qatar"}, {"arrows": "to", "from": "Assia", "to": "Qatar"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Qatar"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Qatar"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Bahrain"}, {"arrows": "to", "from": "Cao Yi", "to": "Bahrain"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Bahrain"}, {"arrows": "to", "from": "Chinese Embassy in Bahrain", "to": "Bahrain"}, {"arrows": "to", "from": "CRI Arabic", "to": "Bahrain"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Bahrain"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Bahrain"}, {"arrows": "to", "from": "Assia", "to": "Bahrain"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Bahrain"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Bahrain"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Iraq"}, {"arrows": "to", "from": "Cao Yi", "to": "Iraq"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Iraq"}, {"arrows": "to", "from": "Chinese Embassy in Iraq", "to": "Iraq"}, {"arrows": "to", "from": "CRI Arabic", "to": "Iraq"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Iraq"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Iraq"}, {"arrows": "to", "from": "Assia", "to": "Iraq"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Iraq"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Iraq"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Jordan"}, {"arrows": "to", "from": "Cao Yi", "to": "Jordan"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Jordan"}, {"arrows": "to", "from": "Chinese Embassy in Jordan", "to": "Jordan"}, {"arrows": "to", "from": "CRI Arabic", "to": "Jordan"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Jordan"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Jordan"}, {"arrows": "to", "from": "Assia", "to": "Jordan"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Jordan"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Jordan"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Kuwait"}, {"arrows": "to", "from": "Cao Yi", "to": "Kuwait"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Kuwait"}, {"arrows": "to", "from": "Chinese Embassy in Kuwait", "to": "Kuwait"}, {"arrows": "to", "from": "CRI Arabic", "to": "Kuwait"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Kuwait"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Kuwait"}, {"arrows": "to", "from": "Assia", "to": "Kuwait"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Kuwait"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Kuwait"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Lebanon"}, {"arrows": "to", "from": "Cao Yi", "to": "Lebanon"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Lebanon"}, {"arrows": "to", "from": "Qian Minjian", "to": "Lebanon"}, {"arrows": "to", "from": "CRI Arabic", "to": "Lebanon"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Lebanon"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Lebanon"}, {"arrows": "to", "from": "Assia", "to": "Lebanon"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Lebanon"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Lebanon"}, {"arrows": "to", "from": "Chinese Embassy in Lebanon", "to": "Lebanon"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Libya"}, {"arrows": "to", "from": "Cao Yi", "to": "Libya"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Libya"}, {"arrows": "to", "from": "CRI Arabic", "to": "Libya"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Libya"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Libya"}, {"arrows": "to", "from": "Assia", "to": "Libya"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Libya"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Libya"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Oman"}, {"arrows": "to", "from": "Cao Yi", "to": "Oman"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Oman"}, {"arrows": "to", "from": "CRI Arabic", "to": "Oman"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Oman"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Oman"}, {"arrows": "to", "from": "Assia", "to": "Oman"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Oman"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Oman"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Sudan"}, {"arrows": "to", "from": "Cao Yi", "to": "Sudan"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Sudan"}, {"arrows": "to", "from": "Chinese Embassy in Sudan", "to": "Sudan"}, {"arrows": "to", "from": "CRI Arabic", "to": "Sudan"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Sudan"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Sudan"}, {"arrows": "to", "from": "Assia", "to": "Sudan"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Sudan"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Sudan"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Syria"}, {"arrows": "to", "from": "Cao Yi", "to": "Syria"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Syria"}, {"arrows": "to", "from": "CRI Arabic", "to": "Syria"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Syria"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Syria"}, {"arrows": "to", "from": "Assia", "to": "Syria"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Syria"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Syria"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Tunisia"}, {"arrows": "to", "from": "Cao Yi", "to": "Tunisia"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Tunisia"}, {"arrows": "to", "from": "CRI Arabic", "to": "Tunisia"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Tunisia"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Tunisia"}, {"arrows": "to", "from": "Assia", "to": "Tunisia"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Tunisia"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Tunisia"}, {"arrows": "to", "from": "Ma Ye (Ayisha Elseenya / \u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0635\u064a\u0646\u064a\u0629)", "to": "Yemen"}, {"arrows": "to", "from": "Cao Yi", "to": "Yemen"}, {"arrows": "to", "from": "CGTN Arabic", "to": "Yemen"}, {"arrows": "to", "from": "Chinese Embassy in Yemen", "to": "Yemen"}, {"arrows": "to", "from": "CRI Arabic", "to": "Yemen"}, {"arrows": "to", "from": "Muyi Dima (\u0645\u0648\u064a\u064a)", "to": "Yemen"}, {"arrows": "to", "from": "Ye Xinhua (Suad Ye)", "to": "Yemen"}, {"arrows": "to", "from": "Assia", "to": "Yemen"}, {"arrows": "to", "from": "Ou Xiaolan (Lana Ou / Lana \u0644\u0627\u0646\u0627)", "to": "Yemen"}, {"arrows": "to", "from": "Xu Wei (Rain Xu / Ms V / \u0634\u064a\u0648 \u0648\u064a)", "to": "Yemen"}, {"arrows": "to", "from": "CGTN Russian", "to": "Russia"}, {"arrows": "to", "from": "Zhang Jun", "to": "Russia"}, {"arrows": "to", "from": "Chinese Embassy in United Nations (NYC)", "to": "Russia"}, {"arrows": "to", "from": "Chinese Embassy in Russia", "to": "Russia"}, {"arrows": "to", "from": "Liu Yuyin", "to": "Russia"}, {"arrows": "to", "from": "Zhang Qitong (QiTong Channel / \u0426\u0438\u0442\u0443\u043d \u0427\u0436\u0430\u043d)", "to": "Russia"}, {"arrows": "to", "from": "Yan Yiqiang", "to": "Russia"}, {"arrows": "to", "from": "Liu Chen", "to": "Kenya"}, {"arrows": "to", "from": "Chinese Embassy in Kenya", "to": "Kenya"}, {"arrows": "to", "from": "CRI Swahili", "to": "Kenya"}, {"arrows": "to", "from": "Xinhua Africa", "to": "Kenya"}, {"arrows": "to", "from": "Chen Mingjian", "to": "Tanzania"}, {"arrows": "to", "from": "Chinese Embassy in Tanzania", "to": "Tanzania"}, {"arrows": "to", "from": "Zhang Zhisheng", "to": "Tanzania"}, {"arrows": "to", "from": "CRI Swahili", "to": "Tanzania"}, {"arrows": "to", "from": "Chen Wendi", "to": "Somalia"}, {"arrows": "to", "from": "Chinese Embassy in Somalia", "to": "Somalia"}, {"arrows": "to", "from": "Chinese Embassy in India", "to": "India"}, {"arrows": "to", "from": "Wang Xiaojian", "to": "India"}, {"arrows": "to", "from": "Kong Xianhua", "to": "India"}, {"arrows": "to", "from": "CMG Hindi", "to": "India"}, {"arrows": "to", "from": "Zha Liyou", "to": "India"}, {"arrows": "to", "from": "Poongothai (\u0b85\u0bb1\u0bc1\u0b9a\u0bc1\u0bb5\u0bc8)", "to": "India"}, {"arrows": "to", "from": "Nilaani (\u0ba8\u0bbf\u0bb2\u0bbe\u0ba9\u0bbf)", "to": "India"}, {"arrows": "to", "from": "Xinhua New Delhi", "to": "India"}, {"arrows": "to", "from": "CRI Tamil", "to": "India"}, {"arrows": "to", "from": "Ji Humin", "to": "India"}, {"arrows": "to", "from": "Sun Qing (Ilakkaya / \u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bbf\u0baf\u0bbe)", "to": "India"}, {"arrows": "to", "from": "Chinese Consulate General in Kolkata", "to": "India"}, {"arrows": "to", "from": "Wang Lixin", "to": "Maldives"}, {"arrows": "to", "from": "Chinese Embassy in Maldives", "to": "Maldives"}, {"arrows": "to", "from": "Wang QH", "to": "Maldives"}, {"arrows": "to", "from": "Guo Shaochun", "to": "Zimbabwe"}, {"arrows": "to", "from": "Chinese Embassy in Zimbabwe", "to": "Zimbabwe"}, {"arrows": "to", "from": "Chinese Embassy in Colombia", "to": "Colombia"}, {"arrows": "to", "from": "Liu Bo", "to": "Colombia"}, {"arrows": "to", "from": "Sun Xueying (Teresa Sun / Un T\u00e9 con Teresa)", "to": "Colombia"}, {"arrows": "to", "from": "Yao Fei", "to": "Colombia"}, {"arrows": "to", "from": "Zhang Yiwen", "to": "Colombia"}, {"arrows": "to", "from": "Zhu Jingyang", "to": "Colombia"}, {"arrows": "to", "from": "He Beibei", "to": "Colombia"}, {"arrows": "to", "from": "CGTN Espa\u00f1ol", "to": "Colombia"}, {"arrows": "to", "from": "Jimena Li Yu (Jimena a tu clic)", "to": "Colombia"}, {"arrows": "to", "from": "Xinhua Espa\u00f1ol", "to": "Colombia"}, {"arrows": "to", "from": "Wang Mengchu (Kaka / Shakala Ka)", "to": "Colombia"}, {"arrows": "to", "from": "CRI Espa\u00f1ol (Onda China)", "to": "Colombia"}, {"arrows": "to", "from": "Deng Ying (Viva Studio)", "to": "Colombia"}, {"arrows": "to", "from": "Radio Internacional de China en espa\u00f1ol", "to": "Colombia"}, {"arrows": "to", "from": "Shi Shuai (Letizia Shi / Letizia Con Chino)", "to": "Colombia"}, {"arrows": "to", "from": "Chinese Embassy in Ukraine", "to": "Ukraine"}, {"arrows": "to", "from": "CRI Ukrainian", "to": "Ukraine"}, {"arrows": "to", "from": "Hou Yanqi", "to": "Brunei"}, {"arrows": "to", "from": "Hou Yanqi", "to": "Cambodia"}, {"arrows": "to", "from": "Chinese Embassy in Cambodia", "to": "Cambodia"}, {"arrows": "to", "from": "Hou Yanqi", "to": "Laos"}, {"arrows": "to", "from": "Cai Baofeng (Song Siao / \u0eaa\u0ead\u0e87\u0eaa\u0ec8\u0ebd\u0ea7)", "to": "Laos"}, {"arrows": "to", "from": "CRI Laos", "to": "Laos"}, {"arrows": "to", "from": "Hou Yanqi", "to": "Malaysia"}, {"arrows": "to", "from": "CRI Malaysian", "to": "Malaysia"}, {"arrows": "to", "from": "Chinese Consulate General in Kuching", "to": "Malaysia"}, {"arrows": "to", "from": "Chinese Consulate General in Penang", "to": "Malaysia"}, {"arrows": "to", "from": "Chinese Embassy in Malaysia", "to": "Malaysia"}, {"arrows": "to", "from": "Hou Yanqi", "to": "Myanmar (Burma)"}, {"arrows": "to", "from": "Hou Yanqi", "to": "Philippines"}, {"arrows": "to", "from": "Chinese Embassy in Philippines", "to": "Philippines"}, {"arrows": "to", "from": "Hou Yanqi", "to": "Singapore"}, {"arrows": "to", "from": "Chinese Embassy in Singapore", "to": "Singapore"}, {"arrows": "to", "from": "Yang Gang", "to": "Singapore"}, {"arrows": "to", "from": "Hou Yanqi", "to": "Thailand"}, {"arrows": "to", "from": "Chinese Embassy in Thailand", "to": "Thailand"}, {"arrows": "to", "from": "Lin Hao", "to": "Thailand"}, {"arrows": "to", "from": "iPanda Thailand", "to": "Thailand"}, {"arrows": "to", "from": "CRI Thai", "to": "Thailand"}, {"arrows": "to", "from": "Ping Ping (L\u1ee5k ch\u1ea1d k\u1ea1b p\u0304hing p\u0304hing / \u0e25\u0e36\u0e01\u0e0a\u0e31\u0e14\u0e01\u0e31\u0e1a\u0e1c\u0e34\u0e07\u0e1c\u0e34\u0e07)", "to": "Thailand"}, {"arrows": "to", "from": "Hou Yanqi", "to": "Vietnam"}, {"arrows": "to", "from": "H\u1ea1 Vy", "to": "Vietnam"}, {"arrows": "to", "from": "CRI Hoc Tieng Trung ", "to": "Vietnam"}, {"arrows": "to", "from": "CRI H\u00f4\u0323p th\u01b0 Ngo\u0323c A\u0301nh", "to": "Vietnam"}, {"arrows": "to", "from": "CRI Vietnamese (\u0110a\u0300i Pha\u0301t thanh Qu\u00f4\u0301c t\u00ea\u0301 Trung Qu\u00f4\u0301c)", "to": "Vietnam"}, {"arrows": "to", "from": "Di\u00ea\u0303n \u0111a\u0300n Tu\u00f4\u0309i tre\u0309 ", "to": "Vietnam"}, {"arrows": "to", "from": "M \u0026 V Studio", "to": "Vietnam"}, {"arrows": "to", "from": "Chinese Consulate General in Ho Chi Minh City", "to": "Vietnam"}, {"arrows": "to", "from": "Chinese Embassy in Vietnam", "to": "Vietnam"}, {"arrows": "to", "from": "Chinese Embassy in Samoa", "to": "Samoa"}, {"arrows": "to", "from": "Chinese Consulate General in Almaty", "to": "Kazakhstan"}, {"arrows": "to", "from": "Chinese Embassy in Kazakhstan", "to": "Kazakhstan"}, {"arrows": "to", "from": "Chinese Consulate General in Istanbul Spokesperson", "to": "Turkey"}, {"arrows": "to", "from": "CRI T\u00fcrk\u00e7e", "to": "Turkey"}, {"arrows": "to", "from": "Chinese Embassy in Turkey", "to": "Turkey"}, {"arrows": "to", "from": "Chinese Embassy in South Sudan", "to": "South Sudan"}, {"arrows": "to", "from": "CRI Swahili", "to": "South Sudan"}, {"arrows": "to", "from": "Zhao Zhiyuan", "to": "Ethiopia"}, {"arrows": "to", "from": "Chinese Embassy in Chile", "to": "Chile"}, {"arrows": "to", "from": "Chinese Embassy in Dominican Republic", "to": "Dominican Republic"}, {"arrows": "to", "from": "Chinese Embassy in Angola", "to": "Angola"}, {"arrows": "to", "from": "Mundo China", "to": "Angola"}, {"arrows": "to", "from": "Chinese Embassy in Antigua and Barbuda", "to": "Antigua and Barbuda"}, {"arrows": "to", "from": "Chinese Embassy in Argentina", "to": "Argentina"}, {"arrows": "to", "from": "Liu Bo", "to": "Argentina"}, {"arrows": "to", "from": "Sun Xueying (Teresa Sun / Un T\u00e9 con Teresa)", "to": "Argentina"}, {"arrows": "to", "from": "Yao Fei", "to": "Argentina"}, {"arrows": "to", "from": "Zhang Yiwen", "to": "Argentina"}, {"arrows": "to", "from": "He Beibei", "to": "Argentina"}, {"arrows": "to", "from": "CGTN Espa\u00f1ol", "to": "Argentina"}, {"arrows": "to", "from": "Jimena Li Yu (Jimena a tu clic)", "to": "Argentina"}, {"arrows": "to", "from": "Xinhua Espa\u00f1ol", "to": "Argentina"}, {"arrows": "to", "from": "Wang Mengchu (Kaka / Shakala Ka)", "to": "Argentina"}, {"arrows": "to", "from": "CRI Espa\u00f1ol (Onda China)", "to": "Argentina"}, {"arrows": "to", "from": "Deng Ying (Viva Studio)", "to": "Argentina"}, {"arrows": "to", "from": "Radio Internacional de China en espa\u00f1ol", "to": "Argentina"}, {"arrows": "to", "from": "Shi Shuai (Letizia Shi / Letizia Con Chino)", "to": "Argentina"}, {"arrows": "to", "from": "Chinese Embassy in Malawi", "to": "Malawi"}, {"arrows": "to", "from": "Chinese Embassy in Malawi (Economic Counsellor)", "to": "Malawi"}, {"arrows": "to", "from": "Liu Hongyang", "to": "Malawi"}, {"arrows": "to", "from": "Chinese Embassy in Albania", "to": "Albania"}, {"arrows": "to", "from": "CRI Albanian (Radio Ejani)", "to": "Albania"}, {"arrows": "to", "from": "Chinese Embassy in Eritrea", "to": "Eritrea"}, {"arrows": "to", "from": "Chinese Embassy in Grenada", "to": "Grenada"}, {"arrows": "to", "from": "Zhao Yongchen", "to": "Grenada"}, {"arrows": "to", "from": "Wei Hongtian", "to": "Grenada"}, {"arrows": "to", "from": "Chinese Embassy in Ghana", "to": "Ghana"}, {"arrows": "to", "from": "Chinese Embassy in Mauritania", "to": "Mauritania"}, {"arrows": "to", "from": "Chinese Embassy in Rwanda", "to": "Rwanda"}, {"arrows": "to", "from": "CRI Swahili", "to": "Rwanda"}, {"arrows": "to", "from": "Chinese Embassy in Namibia", "to": "Namibia"}, {"arrows": "to", "from": "Chinese Embassy in Peru", "to": "Peru"}, {"arrows": "to", "from": "Chinese Embassy in Sri Lanka", "to": "Sri Lanka"}, {"arrows": "to", "from": "CRI Sinhala", "to": "Sri Lanka"}, {"arrows": "to", "from": "Waruni JZ", "to": "Sri Lanka"}, {"arrows": "to", "from": "Liu Rasika", "to": "Sri Lanka"}, {"arrows": "to", "from": "Seda Mali", "to": "Sri Lanka"}, {"arrows": "to", "from": "Chinese Embassy in Mali", "to": "Mali"}, {"arrows": "to", "from": "Chinese Embassy in Guinea", "to": "Guinea"}, {"arrows": "to", "from": "Chinese Embassy in S\u00e9n\u00e9gal", "to": "Senegal"}, {"arrows": "to", "from": "Chinese Embassy in Djibouti", "to": "Djibouti"}, {"arrows": "to", "from": "Liu Jin", "to": "Gambia"}, {"arrows": "to", "from": "Chinese Embassy in Fiji", "to": "Fiji"}, {"arrows": "to", "from": "Chinese Embassy in Papua New Guinea", "to": "Papua New Guinea"}, {"arrows": "to", "from": "Chinese Embassy in Uganda", "to": "Uganda"}, {"arrows": "to", "from": "Fang Yi", "to": "Uganda"}, {"arrows": "to", "from": "Zhang Lizhong", "to": "Uganda"}, {"arrows": "to", "from": "CRI Swahili", "to": "Uganda"}, {"arrows": "to", "from": "Chinese Embassy in Montenegro", "to": "Montenegro"}, {"arrows": "to", "from": "Chinese Embassy in Liberia", "to": "Liberia"}, {"arrows": "to", "from": "Chinese Consulate General in Rio de Janeiro", "to": "Brazil"}, {"arrows": "to", "from": "Chinese Embassy in Brazil", "to": "Brazil"}, {"arrows": "to", "from": "Tian Yuzhen", "to": "Brazil"}, {"arrows": "to", "from": "Gabriel Liu", "to": "Brazil"}, {"arrows": "to", "from": "Chen Peijie", "to": "Brazil"}, {"arrows": "to", "from": "Mundo China", "to": "Brazil"}, {"arrows": "to", "from": "Lucas Zhuang", "to": "Brazil"}, {"arrows": "to", "from": "Yang Wanming", "to": "Brazil"}, {"arrows": "to", "from": "Xing Luana (Luana em Pequim)", "to": "Brazil"}, {"arrows": "to", "from": "CRI Mongolian", "to": "Mongolia"}, {"arrows": "to", "from": "Chinese Embassy in Mongolia", "to": "Mongolia"}, {"arrows": "to", "from": "Zhao Yanbo", "to": "Botswana"}, {"arrows": "to", "from": "Chinese Embassy in Botswana", "to": "Botswana"}, {"arrows": "to", "from": "Chinese Embassy in Ecuador", "to": "Ecuador"}, {"arrows": "to", "from": "Chinese Embassy in El Salvador", "to": "El Salvador"}, {"arrows": "to", "from": "Ou Jianhong", "to": "El Salvador"}, {"arrows": "to", "from": "Wang Gang", "to": "Uruguay"}, {"arrows": "to", "from": "Chinese Embassy in Tonga", "to": "Tonga"}, {"arrows": "to", "from": "Chinese Embassy in Cuba", "to": "Cuba"}, {"arrows": "to", "from": "Ma Hui", "to": "Cuba"}, {"arrows": "to", "from": "Zhang Buxin", "to": "Cuba"}, {"arrows": "to", "from": "Chinese Embassy in Equatorial Guinea", "to": "Equatorial Guinea"}, {"arrows": "to", "from": "Chinese Embassy in Mexico", "to": "Mexico"}, {"arrows": "to", "from": "Zhang Run", "to": "Mexico"}, {"arrows": "to", "from": "Jing Feng", "to": "Mexico"}, {"arrows": "to", "from": "Liu Bo", "to": "Mexico"}, {"arrows": "to", "from": "Sun Xueying (Teresa Sun / Un T\u00e9 con Teresa)", "to": "Mexico"}, {"arrows": "to", "from": "Yao Fei", "to": "Mexico"}, {"arrows": "to", "from": "Zhang Yiwen", "to": "Mexico"}, {"arrows": "to", "from": "He Beibei", "to": "Mexico"}, {"arrows": "to", "from": "CGTN Espa\u00f1ol", "to": "Mexico"}, {"arrows": "to", "from": "Jimena Li Yu (Jimena a tu clic)", "to": "Mexico"}, {"arrows": "to", "from": "Xinhua Espa\u00f1ol", "to": "Mexico"}, {"arrows": "to", "from": "Wang Mengchu (Kaka / Shakala Ka)", "to": "Mexico"}, {"arrows": "to", "from": "CRI Espa\u00f1ol (Onda China)", "to": "Mexico"}, {"arrows": "to", "from": "Deng Ying (Viva Studio)", "to": "Mexico"}, {"arrows": "to", "from": "Radio Internacional de China en espa\u00f1ol", "to": "Mexico"}, {"arrows": "to", "from": "Shi Shuai (Letizia Shi / Letizia Con Chino)", "to": "Mexico"}, {"arrows": "to", "from": "Chinese Embassy in Panama", "to": "Panama"}, {"arrows": "to", "from": "Jiang Wei (Julio Jiang)", "to": "Panama"}, {"arrows": "to", "from": "Liu Chang", "to": "Panama"}, {"arrows": "to", "from": "Wang Jian", "to": "Panama"}, {"arrows": "to", "from": "Wei Qiang", "to": "Panama"}, {"arrows": "to", "from": "Li Wuji", "to": "Panama"}, {"arrows": "to", "from": "Zhang Xi", "to": "Panama"}, {"arrows": "to", "from": "Chinese Embassy in Venezuela", "to": "Venezuela"}, {"arrows": "to", "from": "Li Baorong", "to": "Venezuela"}, {"arrows": "to", "from": "He Rulong", "to": "Iceland"}, {"arrows": "to", "from": "Chinese Embassy in Iceland", "to": "Iceland"}, {"arrows": "to", "from": "Hu Bin", "to": "S\u00e3o Tom\u00e9 and Pr\u00edncipe"}, {"arrows": "to", "from": "Mundo China", "to": "S\u00e3o Tom\u00e9 and Pr\u00edncipe"}, {"arrows": "to", "from": "Zhu Liying", "to": "Mauritius"}, {"arrows": "to", "from": "Xu Tiefei", "to": "Costa Rica"}, {"arrows": "to", "from": "Mingala News", "to": "Myanmar"}, {"arrows": "to", "from": "CRI Myanmar", "to": "Myanmar"}, {"arrows": "to", "from": "Xinhua Myanmar (\u1019\u103c\u1014\u103a\u1019\u102c)", "to": "Myanmar"}, {"arrows": "to", "from": "Zhang Niki (Hnin Pwint Phyu)", "to": "Myanmar"}, {"arrows": "to", "from": "Chinese Embassy in Myanmar", "to": "Myanmar"}, {"arrows": "to", "from": "Mundo China", "to": "Cape Verde"}, {"arrows": "to", "from": "Mundo China", "to": "Guinea-Bissau"}, {"arrows": "to", "from": "Mundo China", "to": "Mozambique"}, {"arrows": "to", "from": "Chen Song", "to": "Nepal"}, {"arrows": "to", "from": "Chinese Embassy In Nepal", "to": "Nepal"}, {"arrows": "to", "from": "CRI Nepali", "to": "Nepal"}, {"arrows": "to", "from": "Hu Jianlin (Shalevetya / \u05e9\u05dc\u05d4\u05d1\u05ea\u05d9\u05d4)", "to": "Israel"}, {"arrows": "to", "from": "CRI Hebrew", "to": "Israel"}, {"arrows": "to", "from": "Xi Xiaoqi (Itzik Hasini)", "to": "Israel"}, {"arrows": "to", "from": "Wang Jialei", "to": "Bolivia"}, {"arrows": "to", "from": "Yang Yiding", "to": "Norway"}, {"arrows": "to", "from": "Chinese Embassy in Norway", "to": "Norway"}, {"arrows": "to", "from": "Yan Xiusheng", "to": "Barbados"}, {"arrows": "to", "from": "Chinese Embassy in Barbados", "to": "Barbados"}, {"arrows": "to", "from": "Chinese Embassy in Belarus", "to": "Belarus"}, {"arrows": "to", "from": "Chinese Embassy in Kyrgyzstan", "to": "Kyrgyzstan"}, {"arrows": "to", "from": "Haixia Daobao", "to": "Taiwan"}, {"arrows": "to", "from": "Chinese Embassy in Bangladesh", "to": "Bangladesh"}, {"arrows": "to", "from": "Chinese Embassy in Guyana", "to": "Guyana"}, {"arrows": "to", "from": "Chinese Embassy in North Macedonia", "to": "North Macedonia"}, {"arrows": "to", "from": "Chinese Embassy in Sierra Leone", "to": "Sierra Leone"}]);
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,
"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>