-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople.csv
We can't make this file beautiful and searchable because it's too large.
8503 lines (8273 loc) · 745 KB
/
people.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
article_name,publish_date,article_text
[New COVID19 cases drop to under 2000 for first time in China], 2020-02-19 15:17:40,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
BEIJING, Feb. 18 (Xinhua) -- The daily number of newly confirmed cases of the novel coronavirus disease (COVID-19) reported across China Monday dropped to under 2,000 for the first time, Mi Feng, an official with the National Health Commission (NHC), said Tuesday.</p>
<p>
Monday also saw the new confirmed infections of COVID-19 outside Hubei reduced to a number lower than 100 for the first time, Mi said at a press conference in Beijing.</p>
<p>
He added that, for the first time, the daily number of new deaths also slid to below 100 across the country.</p>
<p>
Compared with the statistics in the peak period, Mi said the thre ""firsts"" are encouraging signs that the epidemic control situation is improving.</p>
<p>
China's health authorities received reports of 1,886 new confirmed cases and 98 deaths of COVID-19 on Monday from 31 provincial-level regions and the Xinjiang Production and Construction Corps.</p>
<p>
The daily new confirmed cases of COVID-19 outside Hubei Province had dropped for 14 consecutive days by Monday, to reach the lowest record of 79, according to NHC's daily report.</p>
<p>
In the next step, China will cement the current results of the epidemic control, strengthen the treatment of patients in severe condition and the combination of traditional Chinese medicine and Western medicine in treatments, the NHC official said.</p>
<p>
He added that great efforts will be put into preventing the deterioration of patients from mild symptoms to severe symptoms and enhancing the cure rate.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
Tibet calls on citizens to reduce Tibetan New Year activities, 2020-02-19 15:20:09,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
LHASA, Feb. 19 (Xinhua) -- Authorities in southwest China's Tibet Autonomous Region called on citizens not to hold or participate in group activities during the Tibetan New Year, which falls on Feb. 24.</p>
<p>
The city of Shannan in the region posted an initiative on its official account on WeChat, a popular Chinese social media platform, calling on its citizens not to visit relatives or friends, nor to hold gatherings during the Tibetan New Year.</p>
<p>
The district-level governments under the administration of Lhasa suspended gathering activities during the festival.</p>
<p>
Lhasa has set up 157 direct selling stores and vehicles for the convenience of citizens buying daily necessities during the festival.</p>
<p>
""We decided not to visit relatives or friends nor to gather for dinner during the festival,"" said Migmar Trinley, a resident in the city.</p>
<p>
The Tibetan New Year is a traditional festival of the Tibetan ethnic minority.</p>
<p>
The only patient infected with the novel coronavirus in Tibet was discharged from hospital after an 18-day treatment on Feb. 12.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[Chinas measures against COVID19 correct strategic tactical approach WHO expert], 2020-02-19 16:09:28,"<div class=""wb_12 clear"">
<p style=""text-align: center;"">
<img alt="""" src=""/NMediaFile/2020/0219/FOREIGN202002191610000085471659575.jpg"" style=""width: 900px; height: 600px;""></p>
<p>
<em>Michael Ryan, executive director of the World Health Organization (WHO) health emergencies program, speaks at a press conference in Geneva, Switzerland on Feb. 13, 2020. (Xinhua/Chen Junxia)</em></p>
<p>
""This is a very good public health practice,"" said Dr. Michael Ryan, executive director of the WHO Health Emergencies Program, who referred to the fact that the government in China had spent a number of weeks pressuring the virus and now actively engaged in door-to-door surveillance, which has led to the number of cases dropping away lately.</p>
<p>
""You can argue whether those measures are excessive or whether they're restricted on people, but there's a lot at stake here. There's an awful lot at stake here, in terms of public health, and in terms of not only the public health of China but of all people in the world,"" he said.</p>
<p>
GENEVA, Feb. 18 (Xinhua) -- The World Health Organization (WHO) said Tuesday that measures to restrict people's movement in China amid the COVID-19 outbreak are a correct strategic and tactical approach, and WHO would like to see progressive implementation of public health measures.</p>
<p>
""This is a very good public health practice,"" said Dr. Michael Ryan, executive director of the WHO Health Emergencies Program, who referred to the fact that the government in China had spent a number of weeks pressuring the virus and now actively engaged in door-to-door surveillance, which has led to the number of cases dropping away lately.</p>
<p>
""We'd like to see progressive implementation of public health measures,"" he underlined.</p>
<p>
He explained that the first objective in Wuhan is to contain the virus at the epicenter, which has allowed space for much more active surveillance, and by doing so ""they don't want virus to return to other places.""</p>
<p>
Referring to the latest restrictive measures on people's movement in Beijing, the WHO expert said that the city is a central point in China for so many workers to return to, ""so what China is trying to do is while they're getting success and pulling out one fire, they don't want the fire to start somewhere else. So they're taking very directed measures to ensure the people returning to the city are observed and monitored.""</p>
<p>
""You can argue whether those measures are excessive or whether they're restricted on people, but there's a lot at stake here. There's an awful lot at stake here, in terms of public health, and in terms of not only the public health of China but of all people in the world,"" he said.</p>
<p>
Starting from Monday, a joint expert team consisting of experts from China and WHO began field inspections on the prevention and control of the COVID-19 outbreak. The team members are scheduled to go to Beijing, Guangdong Province in the south and Sichuan Province in southwest China to conduct inspections.</p>
<p>
According to WHO Director-General Tedros Adhanom Ghebreyesus, the team may travel to Wuhan, based on their risk assessment and needs, as ""all options are open.""</p>
</div>"
Volunteers in Chongqing band together to protect cultural heritage, 2020-02-19 16:43:36,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
A group of volunteers in Chongqing municipality, southwest China, have made great efforts to protect the ancient buildings and revitalize traditional villages in the city, People’s Daily reported.</p>
<p>
</p>
<p style=""text-align: center;"">
<img alt="""" src=""/NMediaFile/2020/0219/FOREIGN202002191645000061382475194.jpg"" style=""width: 400px; height: 294px;""></p>
<p style=""text-align: center;"">
<em>Volunteers do research in Chongqing. (File photo)</em></p>
<p>
The volunteers, who belong to a non-governmental organization established in 2011, have organized over 30,000 activities and toured along 39 cultural routes in Chongqing in the past nine years to record the city’s history.</p>
<p>
During their tours along the cultural routes, they found that the ancient buildings suffered various types of damage, and decided that each one of them would follow up on several cultural relics in a detailed manner.</p>
<p>
Each volunteer would check the buildings under their charge at regular intervals, write up reports on the conditions of the historical buildings and submit them to the relevant government departments for them to formulate plans to repair and improve the damaged structures.</p>
<p>
By December 2019, the volunteers had written a total of 2,482 reports on 132 cultural relics in Chongqing.</p>
<p>
Starting from the end of 2017, the team members have conducted investigations in 74 ancient villages in Chongqing in an attempt to spread knowledge of traditional customs. They have helped build museums in the villages or kept journals on the villages, which are then printed and distributed to more people.</p>
<p>
At the same time, the volunteers have worked together with schools to give lessons on cultural protection to encourage students to participate in the protection of cultural relics.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
China introduces policies to help enterprises with foreign exchange business, 2020-02-19 15:42:57,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
The State Administration of Foreign Exchange (SAFE) of China has rolled out measures to help enterprises deal with foreign exchange-related business amid the pneumonia outbreak.</p>
<p>
The SAFE has established a green channel that enables enterprises to pay for imported medical supplies, accept donations and a few other items in a much simpler way.</p>
<p>
Data suggests that 1,370 items of business were handled though the green channel from Jan. 27 to Feb. 12, with 70 from Hubei province involving paid services for the purpose of bringing imported masks, protective clothing and etc.</p>
<p>
For market entities, 86 percent of foreign exchange administrative licenses could be applied for on the online processing system under the administration, with 466 online applications concluded during the period.</p>
<p>
The administration also encourages individuals to handle routine foreign exchange business, such as payment of tuition fees abroad through online channels amid the pneumonia outbreak.</p>
<p>
From Jan. 27 to Feb. 12, individuals dealt with a total of 915,000 foreign exchange transactions, 91 percent of which were conducted online.</p>
<p>
China will strengthen the construction of cross-border financial blockchain service platforms to ease financing for small and medium-sized enterprises and continue to simplify the transaction procedures needed to facilitate cross-border trade, investment and financing as well as foreign exchange settlement, said Xuan Changneng, deputy head of the SAFE.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[Logistics data shows nationwide support for Chinas epidemic center of Hubei], 2020-02-19 15:21:06,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
GUIYANG, Feb. 19 (Xinhua) -- Manbang Group, China's largest freight service provider, said its big data suggested material logistics to central China's Hubei, the center of the COVID-19 outbreak, have been stable, showing nationwide supports to the province's anti-epidemic fight.</p>
<p>
The company based in southwest China's Guizhou Province cited the data between Dec. 13, 2019, and Feb. 12 that before Jan. 13, goods to Hubei were mainly building materials, food, beverages, coal and minerals. After that, vegetables and fruits increased rapidly, with vegetables accounting for 10.4 percent of all goods sent to Hubei.</p>
<p>
Vegetables are transported to Hubei mainly from Yunnan, Henan and Shandong provinces. Fruits are sent to Hubei from Guangxi, Yunnan and Guangdong. Guangxi alone accounts for 52 percent of the total amount of fruits transported to Hubei, while Henan contributes the most grain to Hubei.</p>
<p>
Manbang's data platform also monitored that a truck driver traveled for nearly six days across 4,444 km to transport a full cargo load of medicine from Hotan in northwest China's Xinjiang Uygur Autonomous Region to the city of Huanggang in Hubei, making it the farthest trip in the country to provide supplies to Hubei.</p>
<p>
The hard-hit province had a total of 61,682 confirmed cases as of Wednesday. It saw 1,266 patients discharged from hospitals after recovery on Tuesday, bringing the total number of discharged patients in the province to 9,128, as epidemic control work progressed.</p>
<p>
Manbang is an Uber-like truck-hailing service provider with nine million subscribers in 300 cities in China. Its data platform offers indicators of supply demands and logistics efficiency.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[Communities urged to play greater role in Chinas battle against epidemic], 2020-02-19 17:14:58,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
BEIJING, Feb. 19 (Xinhua) -- Chinese authorities have urged residential communities to play a more prominent role in the fight against the novel coronavirus epidemic.</p>
<p>
Communities should rally support from residents, volunteers, property management and social organizations in the joint prevention and control efforts, and become a strong fortress against the epidemic, according to a circular issued by the Commission for Political and Legal Affairs of the Communist Party of China Central Committee.</p>
<p>
The circular called on community workers to use phones and other devices during door-to-door inspections to avoid infection, and encouraged the use of technologies such as big data and the Internet of Things to improve the effectiveness of work.</p>
<p>
The circular stressed the importance of mediating disputes among residents in a timely manner and carrying out psychological counseling for the public.</p>
<p>
It also called for efforts to ensure the supply of protective equipment and subsidies for personnel working in communities to fight the disease, appropriately arrange work shifts for them and explore epidemic prevention insurance for community workers.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
Cloud working aids Chinese companies amidst epidemic, 2020-02-19 16:34:13,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
HANGZHOU, Feb. 19 (Xinhua) -- At around 6 p.m., Yu Feiwen, an online shop owner, closed her laptop after finishing work. She and her partners, based in their homes in five cities due to the current coronavirus outbreak, ""met"" every day thanks to cloud working.</p>
<p>
""We held meetings to brainstorm and share ideas on running the shop, and also maintain customer relations online just like before,"" Yu said.</p>
<p>
Some difficulties still exist as they are not present in the office, but they are still making a profit.</p>
<p>
""We work as hard as usual. The only difference is that we work from home,"" she said.</p>
<p>
In the meantime, other small businesses and companies in China have scrambled to resume work on the cloud. Many employers, as well as employees, for the first time, have to get familiar with telecommuting tools such as video conferences and online office kits.</p>
<p>
According to QuestMobile, a mobile Internet big data company, the time Chinese spent on the Internet increased from 5 billion hours on Jan. 23, to 5.76 billion the next day, and 6.1 billion on Feb. 3, the first day of working from home for many companies. The time spent on telecommuting software is also growing rapidly.</p>
<p>
As a result, mobile technology companies such as Tencent, Alibaba's DingTalk and China Mobile have all raced to provide technical support, most of which free of charge, to companies and individuals in need.</p>
<p>
The number of online meetings supported by Tencent Meeting on Feb. 10 was 100 times that of its previous average daily use.</p>
<p>
DingTalk said it has served more than 10 million enterprises and over 200 million people. To meet the huge demand in peak hours, DingTalk has added over 20,000 temporary servers and expanded bandwidth to enhance its calculation capacity.</p>
<p>
Tao Jun, DingTalk's intelligent personnel business director, said telecommuting for many companies has evolved from building their own OA systems to adopting the framework of a ""cloud platform.""</p>
<p>
The emergence of telecommuting represents the increasing digitalization of Chinese enterprises, which ensures a boost in the market and users in related fields, said Chen Lu, an expert on digital enterprises.</p>
<p>
According to Frost&Sullivan, a U.S.-based business consulting company, from 2014 to 2017, China's video conference market grew from 5.23 billion yuan (750 million U.S. dollars) to 11.04 billion yuan, with a compound annual growth rate of 28.3 percent. The market size is expected to reach 44.6 billion yuan in 2022, with business management, healthcare and education being key areas.</p>
<p>
Thanks to the increasing digitalization of companies and governments, enterprise management is also increasingly merging with social governance.</p>
<p>
Hangzhou, capital of Zhejiang Province, has adopted QR codes for the control and prevention of the novel coronavirus outbreak. The QR code, produced in the mobile app of real-name registered Alipay, is based on the register's movement over the previous two weeks and tells whether he or she has been to virus-hit areas.</p>
<p>
Online health management is therefore realized for government and companies, especially since the massive influx of returning workers is expected.</p>
<p>
According to Jiang Ruzhong, deputy director of Zhejiang Provincial Big Data Development Administration, digitalization is also conducive to connecting management data between companies and governments for more integrated governance.</p>
<p>
Lan Jianping, director of Zhejiang Institute of Industry and Information Technology, said that digital transformation will not be confined to the office, but will change production and operation as well in the long run, which will further increase the potential of small and medium-sized enterprises.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
Expressway passing through Xiongan New Area resumes construction, 2020-02-19 17:16:01,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
SHIJIAZHUANG, Feb. 19 (Xinhua) -- The construction of a major expressway traversing Xiongan New Area in north China's Hebei Province has resumed amid the spread of the novel coronavirus disease (COVID-19).</p>
<p>
Wearing masks, local workers and those who did not leave for home during the Chinese Lunar New Year holiday on Tuesday resumed construction of four sections of the Rongcheng-Wuhai New Expressway, which will link the existing Beijing-Hongkong-Macao line to reach Beijing.</p>
<p>
To avoid cross-infection, the construction sites will be encircled with closed-off management, and new workers must be put under quarantine before entering the sites, according to the provincial department of transport.</p>
<p>
The workers will also have their body temperatures checked every day.</p>
<p>
To offset the impact of COVID-19 on the economy, the provincial government has encouraged different localities to be innovative in streamlining approval procedures to save time for developers and get construction projects started as soon as possible.</p>
<p>
On Feb. 13, the provincial department of transport issued a notice requesting timely resuming construction of major projects related to the Beijing-Tianjin-Hebei integrated development, the Xiongan New Area and the 2022 Beijing Winter Olympics.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[FICPI ExPresident Chinas IP System to Improve at Its Current Pace], 2020-02-19 17:08:28,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
Recently, the former President of the Bureau of Federation of International IP Attorneys (FICPI) Bastiaan Koster shared comments on China's IP protection in an interview with China Intellectual Property News.</p>
<p style=""text-align: center;"">
<img alt="""" src=""/NMediaFile/2020/0219/FOREIGN202002191709000172356744328.png"" style=""width: 500px; height: 468px;""></p>
<p>
According to him, IP was his connection to China. His experience with China dated back to 2009 when he visited the country for the first time. At the time he was involved in FICPI. In the five years to follow, every year he joined the FICPI delegation to the meeting with the then State Intellectual Property Office of China. During the period 2012 to 2015, he served as President of FICPI. ""During this period, I could see how the IP system was continuously improved and that much thinking went into how to do in best in such a large country like China. I noticed during these meetings with All-China Patent Agents Association and also engaging with Chinese patent and trademark attorneys professionally is the rapid increase in quality and depth in Chinese IP firms,"" said Koster.</p>
<p>
""Having an IP system that is developing as fast and to the magnitude of the IP system in China is obviously not easy and comes with challenges. One of the issues is to maintain the balance between output (number of filings) and quality,""said Koster. ""In view of the strong economy in China there is a huge demand for patents and trademarks. Another challenge is education for individuals and companies as to the role of IP. I believe every company should have a thorough understanding what the end goals are of having IP rights and an IP portfolio. ""</p>
<p>
In Koster's eyes, many people have no idea about IP system in China. When he tells them that China has one of the most sophisticated IP Offices and files the most patents and trademarks in the world, it came as a surprise to them. To process the large number of patents, utility patents and trademarks annually being filed in China is no easy task. Starting with having sufficient IP attorneys, enabling IP firms, having a very strong administrative system to deal with IP applications and a strong Court system to deal with enforcement. The government of China has done an excellent job to ensure that the rapid growth in the IP system takes place at all levels. In his experience China is one of the few countries having judicial enforcement measures for IP infringement. He therefore believes that the negative comments some people hear about the IP system in China is often based on incorrect perceptions and not on facts.</p>
<p>
""Given the success story of the IP system in China and the very short time it was obtained, I am confident that the IP system will continue to improve at its current pace. The rest of the world can be assured that their IP rights will be well protected and enforceable in China,"" according to Koster.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
Australian enterprise invests in blueberry growing in SW China, 2020-02-19 15:05:37,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
KUNMING, Feb. 19 (Xinhua) -- Costa Group Holdings Limited, an Australian horticultural company, and the city of Baoshan in southwest China's Yunnan Province have agreed to jointly develop a blueberry planting project in the province.</p>
<p>
With an investment of about 500 million yuan (around 71 million U.S. dollars), a total of 333 hectares of blueberries will be planted in Pupiao Township of Longyang District in Baoshan within three years.</p>
<p>
The annual output value of the project is expected to reach 500 million yuan upon completion, and the project will help further promote the scale, branding and ecology of local agriculture, according to the Baoshan investment promotion bureau.</p>
<p>
As a producer, processor, and distributor of fruits and vegetables, the Australian company has set up two branches in Yunnan to expand its business in the Chinese market.</p>
<p>
The cooperation agreement was signed through a video conference due to the ongoing novel coronavirus epidemic.</p>
<p>
Located in western Yunnan, Baoshan has been improving its business environment to attract foreign investors in recent years.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
Trump voices opposition to proposed export controls, 2020-02-19 15:08:16,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
WASHINGTON, Feb. 18 (Xinhua) -- U.S. President Donald Trump on Tuesday voiced his opposition to proposed export-restricting measures, saying that such measures would cause U.S. companies to lose orders to other places.</p>
<p>
""The United States cannot, & will not, become such a difficult place to deal with in terms of foreign countries buying our product, including for the always used National Security excuse, that our companies will be forced to leave in order to remain competitive,"" Trump said in a series of tweets.</p>
<p>
The U.S. president's tweets came just two days after the Wall Street Journal reported that officials within the administration were considering new restrictions on exports of jet engines co-produced by General Electric Co. to China.</p>
<p>
""We want to sell product and goods to China and other countries. That's what trade is all about,"" Trump said. ""We don't want to make it impossible to do business with us. That will only mean that orders will go to someplace else.""</p>
<p>
""As an example, I want China to buy our jet engines, the best in the World,"" he said.</p>
<p>
""I have seen some of the regulations being circulated, including those being contemplated by Congress, and they are ridiculous,"" Trump said. ""I want to make it EASY to do business with the United States, not difficult.""</p>
<p>
Trump's comment on export controls was welcomed by the Semiconductor Industry Association (SIA).</p>
<p>
""We applaud President Trump's tweets supporting U.S. companies being able to sell products to China and opposing proposed regulations that would unduly curtail that ability,"" SIA President & CEO John Neuffer said in a statement.</p>
<p>
""As we have discussed with the Administration, sales of non-sensitive, commercial products to China drive semiconductor research and innovation, which is critical to America's economic strength and national security,"" said Neuffer.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[China to continue constructive role in political settlement of Ukrainian crisis envoy], 2020-02-19 15:06:20,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
UNITED NATIONS, Feb. 18 (Xinhua) -- A Chinese envoy said Tuesday that China will continue to play a constructive role in seeking a political settlement to the Ukrainian crisis.</p>
<p>
""China always adopts an objective and impartial position on the Ukrainian crisis, respects the sovereignty and territorial integrity of all countries, Ukraine included, and opposes interference in Ukraine's internal affairs by any external forces,"" Wu Haitao, China's deputy permanent representative to the United Nations, told the Security Council meeting on the situation in Ukraine.</p>
<p>
""We maintain that there is no military solution to the crisis and that dialogue and negotiation are the only way out,"" he said, adding that China will continue to play a constructive role in the political settlement of the Ukrainian crisis.</p>
<p>
Noting that the Minsk II agreement remains the ""greatest common denominator"" of all parties now, Wu said the agreement, endorsed by the UN Security Council, is the key to the political mediation of the Ukrainian crisis.</p>
<p>
""China calls on relevant parties to concretely implement the agreement, remain committed to the overall direction of a political settlement and seek a comprehensive solution to the crisis through dialogue and consultation, so as to facilitate the realization of peace, stability and development in Ukraine, and promotes the harmony among all ethnicities in Ukraine and Ukraine's peaceful coexistence with regional countries,"" said the diplomat.</p>
<p>
The Minsk II agreement refers to a package of measures signed in early 2015 between Kiev and regional armed groups, a renewal of a truce deal reached in September 2014.</p>
<p>
The agreement came into being after leaders of Ukraine, Russia, France and Germany reached consensus on measures to peacefully end the conflict in Donbas in eastern Ukraine, which erupted in April 2014.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[Chinas tourism enterprises boost training help each other], 2020-02-19 15:02:34,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
The coronavirus epidemic has made things worse for the Chinese tourism industry, which was already in a slump from the post-Spring Festival off-season, with some small and medium-sized enterprises caught in a capital shortage crisis and finding themselves close to bankruptcy. However, some companies have made the most of the time to strengthen staff training and collaborate with other businesses to make money.</p>
<p style=""text-align: center;"">
<img alt="""" src=""/NMediaFile/2020/0219/FOREIGN202002191504000049337668253.jpg"" style=""width: 550px; height: 567px;""></p>
<p style=""text-align: center;"">
<em>Ctrip offers online training courses for employees. (Photo/People's Daily Online)</em></p>
<p>
""The epidemic will not end just because we worry about it,” said Mr. Jin, a store manager of Ctrip, a business and travel management company, in central China’s Wuhan city, in comments that have been echoed by many tourism professionals.</p>
<p>
At present, the direct and indirect employment from tourism in China has reached 79.9 million, and the total number of travel agencies in China has topped 38,000. In anticipation of a business shutdown, many tourism enterprises have focused on improving their professional skills, so as to prepare for the future.</p>
<p>
Ctrip has recently announced that it will open nearly 2,000 training courses to its partners and tens of millions of employees across the industry, calling on the travel industry to ""have training online and at home, conserve energy and reserve talents"".</p>
<p>
""Many of the courses are taught by leading experts from the front line of business,"" according to Xu Zhiyun, dean of Ctrip's college of tourism. The number of active APP users at the online college has increased by 150 percent to nearly 30,000 in just a few days since the course opened on February 5, with an average daily online time of 77 minutes.</p>
<p>
Meanwhile, the cooperation between Fresh Hema, a fresh grocery chain store in China, and many catering enterprises has resulted in new jobs for many catering workers.</p>
<p>
""What we need most is manpower, so we joined with Xibei and other restaurant enterprises to let idle restaurant staff join our store. We will give them the relevant training and then ask them to do some work sorting goods,"" Ma Chunmao, a person in charge at Fresh Hema, said.</p>
<p>
Over 1,200 people from more than 20 catering enterprises have joined Fresh Hema’s temporary employment team.</p>
<p>
The same is true of the travel industry. With hotels closed and the travel agency business shut down, tens of thousands of tourism personnel cannot engage in normal work. A few travel enterprises have also begun to collaborate with Fresh Hema.</p>
<p>
Mr. Zhang, a former travel sales consultant on LY.com, a travel booking platform, has switched to selling daily supplies such as face masks and disinfectants.</p>
<p>
This is part of his job at a community group buying platform incubated by LY.com. After the outbreak, the company mobilized up to 300 employees to join the project. At the same time, Caissa Tourism, a travel service company, also said that it is actively trying to get into the retail business to become more diversified, and more in line with user needs.</p>
<p>
""We spent a whole day training our colleagues, turning salesmen of travel products into salesmen of masks, disinfectants and chemical products, and achieved a sales volume of 10 million yuan on the same day,"" a person in charge at the company revealed.</p>
<p>
Ctrip said its 8,000 branded travel stores have come under pressure during the outbreak. A ""care plan"" has been launched for stores, including the suspension of management fees for three months, and the deadlines of tasks assigned for each store has been extended by three months to relieve operating pressure.</p>
<p>
Faced with the current financial pressure, tourism industry insiders pointed out that mutual assistance and sharing will become the norm in the current tourism industry, and enterprises should stick together in times of difficulty. </p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[ChinaEU agreements continue to apply to UK during Brexit transition spokesperson], 2020-02-19 15:10:54,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
BEIJING, Feb. 18 (Xinhua) -- The agreements and cooperation documents between China and the European Union (EU) will continue to apply to the UK during the Brexit transition period, a Chinese foreign ministry spokesperson said Tuesday.</p>
<p>
According to the withdrawal agreement between the UK and the EU, agreements between the EU and other countries will continue to apply to the UK during the transition period from Feb. 1 to Dec. 31, 2020, which is a special arrangement between the UK and the EU, spokesperson Geng Shuang said during an online press briefing.</p>
<p>
In order to ensure the stable transition of agreements pertaining to the EU and the UK, China agrees to the above-mentioned arrangement, that is, the agreements and cooperation documents between China and the EU will continue to apply to the UK during the transition period, Geng said.</p>
<p>
China stands ready to work with the UK and the EU to move forward the work related to cooperation agreements in the transition period, he added.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
Chinese arms companies race to keep up with production schedule delayed by virus outbreak, 2020-02-19 15:12:20,"<div class=""wb_12 clear"">
<p style=""text-align: center;"">
<img alt="""" src=""/NMediaFile/2020/0219/FOREIGN202002191512000429639765761.jpg"" style=""width: 500px; height: 300px;""></p>
<p style=""text-align: center;"">
<em>China held a launch ceremony for its first Type 075 amphibious assault ship in Shanghai on September 25, 2019. </em></p>
<p>
Chinese arms enterprises have been racing to keep up with their production schedule after resuming work following an extended Spring Festival holiday due to the novel coronavirus (COVID-19) outbreak with a key amphibious assault ship maker scrambling to outfit an ""important"" ship and aviation companies running test flights for newly built warplanes.</p>
<p>
Shaanxi Aircraft Industry (Group) Corporation Ltd under the state-owned Aviation Industry Corporation of China (AVIC) was the first to send a new aircraft into the sky after resuming work on February 10, a little more than a week later than the original plan, cannews.com, an aviation news website run by AVIC, reported on Monday.</p>
<p>
With the support of the Chinese Air Force, the company successfully conducted a test flight for a newly built KJ-500 early warning aircraft, according to the report.</p>
<p>
Hongdu Aviation Industry Group, another subsidiary of AVIC, conducted a test flight for a new L-15 advanced training and light combat jet on Monday, according to a statement the company released on its WeChat public account on Monday.</p>
<p>
Other AVIC subsidiaries, including fighter jet makers Chengdu Aircraft Industrial (Group) Co Ltd and Shenyang Aircraft Company Limited, have also resumed operation, cannews.com said.</p>
<p>
Shipyards, including the Dalian Shipyard and Jiangnan Shipyard, which are known for their construction of aircraft carriers and destroyers, also resumed work on February 10 with extra attention being paid to epidemic control measures, according to statements the companies released recently.</p>
<p>
Hudong Zhonghua Shipbuilding (Group) Co Ltd, which is making the Type 075 amphibious assault ship, has also resumed operation, as it used reserve manpower to replace workers who could not make it back to work in time due to the epidemic, in a bid to keep to the original schedule for an important ship that is undergoing outfitting work, the company said in a Friday statement.</p>
<p>
An industry insider, who only spoke on the condition of anonymity, told the Global Times on Monday that some state-owned enterprises have devised a six-day working scheme to make up for delays in the progress of key projects.</p>
<p>
Military experts told the Global Times previously that while the virus may have an impact on China's weapons and equipment programs, it will be short-term, as the outbreak is expected to only last for a few months at worst.</p>
<p>
Prioritizing the health and safety of people is absolutely the right course to avoid fatalities and to mitigate any long-term impact, experts said.</p>
</div>"
[E China city funds research against novel coronavirus], 2020-02-19 15:16:44,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
NANJING, Feb. 19 (Xinhua) -- Suzhou, a city in east China's Jiangsu Province, has announced a program to encourage universities, institutions and companies globally to develop rapid test kits, drugs and vaccines for the novel coronavirus.</p>
<p>
The program, launched by the Suzhou Industrial Technology Research Institute, will fund teams and researchers with a maximum of 1 million yuan (about 143,000 U.S. dollars) after an assessment.</p>
<p>
The testing products include rapid testing kits and other equipment that can detect the virus in half an hour based on nucleic acid detection and other methods.</p>
<p>
The development of the drugs focuses on filtering and testing antiviral drugs, traditional Chinese medicine and effective ingredients of natural medicine.</p>
<p>
Jiangsu's finance authority also announced to fund 30 million yuan in supporting companies and researchers in developing and producing rapid testing kits and vaccines for the novel coronavirus.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
Big data platform checks close contacts of novel coronavirus, 2020-02-19 15:13:28,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
BEIJING, Feb. 18 (Xinhua) -- A big data analysis platform used to find close contacts of novel coronavirus patients or suspected cases has received more than 150 million checks since it was launched on Feb.8.</p>
<p>
By inputting names and ID card numbers after scanning QR codes, individual users can check whether they took the same flights, trains or buses as those with confirmed or suspected cases.</p>
<p>
Receiving data support from the National Health Commission, Ministry of Transport, China Railway and Civil Aviation Administration of China, the platform has also served more than 80 organizations.</p>
<p>
Information security and privacy are protected on the platform, said Wu Manqing, general manager of China Electronics Technology Group Corporation.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[ Mask hotline in Shanghai assists local foreigners amid epidemic], 2020-02-19 15:04:41,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
SHANGHAI, Feb. 18 (Xinhua) -- Instead of queuing outside pharmacies or joining in the shopping frenzy online, foreigners in Shanghai scrambling to buy masks to fight coronavirus could make orders in a more convenient way -- dialing a ""mask hotline.""</p>
<p>
By calling the Shanghai Call Center at 962-288, a hotline dedicated to providing information for foreigners in Shanghai with a history of over 10 years, foreigners can make inquiries about masks, current coronavirus containment efforts and other information concerning the epidemic.</p>
<p>
Statistics showed around 100,000 foreigners stayed in Shanghai despite the coronavirus outbreak, with no cases of the novel coronavirus among them reported so far.</p>
<p>
During the Spring Festival holiday, the hotline received thousands of inquiries, most of which were about buying masks.</p>
<p>
""When communicating with foreigners, it is very important to speak accurately,"" said Sarah Leanne Sharman, a British who has worked in Shanghai for five years.</p>
<p>
As Sharman can speak both English and Chinese, she is responsible for helping call center agents when they have difficulties in English language communication and understanding. The 36-year-old has been busy explaining to her Chinese colleagues the proper nouns about coronavirus used by the World Health Organization in the past few days.</p>
<p>
Apart from 24-hour English services, the hotline also provides services in French, Japanese, German, Russian, Spanish and Arabic. Agents receiving calls will teach foreigners how to make appointments for buying masks at home and how to prepare for materials required for the appointments.</p>
<p>
It has been a tough job for a cosmopolitan city like Shanghai to take virus containment measures such as providing citizens with enough masks, considering its population of 24 million.</p>
<p>
Local government, enterprises and residents have made great efforts to increase the capacity of mask production.</p>
<p>
Shanghai government encouraged local mask factories to resume operations and expand capacity, offering financial support such as rent reduction and tax incentives for enterprises that have contributed to the fight against the epidemic.</p>
<p>
Some Shanghai citizens volunteered to work night shifts for mask factories while enterprises of other industries, including soybean product manufacturers and repurposed workshops, have added new mask production lines.</p>
<p>
But instead of scrambling to buy masks and watching TV flooded with coronavirus-related news, what people affected by the epidemic really want is for the fight against the coronavirus to see a turnaround, life to return to normal and to finally enjoy a deep breath outdoors without masks.</p>
<p>
China's daily new confirmed cases of novel coronavirus infection outside Hubei, the epicenter province of the outbreak, have dropped for 14 consecutive days, but experts remained cautious, calling for continuing efforts on strengthening coronavirus research and containment.</p>
<p>
Like many foreigners in Shanghai, Sharman's life was also disrupted by the epidemic. She now works one in every three days and cooks for herself as most places nearby are closed. Because of the epidemic, she also has not been able to walk her dog as much as before.</p>
<p>
""For me, the first thing I will do after the epidemic is to go out for dinner and take my dog to the park,"" said Sharman.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
Shanghai reports no new confirmed case of coronavirus infection, 2020-02-19 15:07:50,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
SHANGHAI, Feb. 19 (Xinhua) -- Shanghai reported no new confirmed case of the novel coronavirus on Tuesday, the municipal health commission said Wednesday.</p>
<p>
By the midnight of Tuesday, a total of 333 confirmed cases of novel coronavirus infection were reported in Shanghai, with 173 male patients and 160 females, aging from seven months to 88 years old.</p>
<p>
Since Feb. 9, the number of new confirmed cases in Shanghai has been under 10 for several days, and the number of discharged patients has been increasing.</p>
<p>
Currently, 137 confirmed cases in Shanghai are in stable condition, 14 in critical condition, and four in severe condition. A total of 177 people had been discharged from hospital after recovery. One person had died of the disease.</p>
<p>
There are still 127 suspected cases under medical observation.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
China grants posthumous honor to female role models battling epidemic, 2020-02-19 14:41:31,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
BEIJING, Feb. 18 (Xinhua) -- The All-China Women's Federation made a decision published Tuesday to honor a doctor and two local officials who fought on the frontline of the battle against the novel coronavirus epidemic as national-level female role models.</p>
<p>
The honor was awarded posthumously to Xu Hui, Huang Heyan and Jiang Na, according to a statement from the federation.</p>
<p>
Xu Hui was the deputy head of the Nanjing Hospital of Chinese Medicine and a leading doctor of the hospital's special team on prevention and treatment of the novel coronavirus disease (COVID-19) outbreak.</p>
<p>
After 18 days of devoted and continuous work on the frontline against the epidemic, Xu died of a sudden illness on Feb. 7, said the statement.</p>
<p>
Huang Heyan was a local official in the town of Yunwu in southwest China's Guizhou Province. During the epidemic, Huang visited the villagers for health checkups and carried out publicity on epidemic prevention and control.</p>
<p>
""Her dedicated work has protected the health of her fellow villagers, but unfortunately Huang died of a sudden illness on Feb. 2,"" said the federation.</p>
<p>
Jiang Na was the deputy secretary of the Party committee and chairwoman of the Women's Federation in the town of Qianqihao in northeast China's Jilin Province and had been working at grassroots communities for 19 years.</p>
<p>
Jiang worked on information collection and epidemic knowledge publicity in the town. She died on Feb. 4 in a car accident during her trip to check on the epidemic prevention and control work and distribute drugs.</p>
<p>
Xu, Huang and Jiang are three representatives of the countless outstanding women fighting in the frontline of epidemic prevention and control, said the federation.</p>
<p>
The federation called on women across China to learn from the three comrades with their firm faith, lofty spirit and great character.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[China reports 48pct drop in railway trips during holiday], 2020-02-19 14:40:44,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
BEIJING, Feb. 19 (Xinhua) -- China's railway passenger trips during the Spring Festival travel rush this year declined 48.3 percent year on year amid the novel coronavirus outbreak, official data showed Wednesday.</p>
<p>
From Jan. 10 to Feb. 18, a total of 210 million railway passenger trips were made across the country, according to China State Railway Group Co., Ltd.</p>
<p>
The Spring Festival travel rush, also known as chunyun, lasts for 40 days from Jan. 10 to Feb. 18 this year.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
International society calls for strengthened solidarity in fight against novel coronavirus epidemic, 2020-02-19 14:39:24,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
International organizations, governments of various countries, experts, scholars, and media are calling for scientific approaches, rationality, and cooperation to cope with the current public health challenge facing mankind.</p>
<p>
Highlighting the huge challenge the coronavirus outbreak is posing, United Nations (UN) Secretary-General Antonio Guterres said recently that China has made a ""very strong and very impressive response."" The huge efforts made by the country will curb the spread of the virus, he added.</p>
<p>
Since the outbreak of the novel coronavirus pneumonia, or COVID-19, China has strengthened communication with the World Health Organization (WHO) and the international society in an open, transparent, and responsible manner.</p>
<p>
It has saved valuable time for global epidemic prevention, built a line of defense to control the spread of the epidemic, and set a new benchmark for global epidemic prevention.</p>
<p>
Recently, representatives of the WHO and American technology companies held a special meeting on how to prevent the spread of misinformation about the epidemic on the internet.</p>
<p>
WHO representative Andy Pattinson described the fake information surrounding the novel coronavirus outbreak as an “information epidemic”. At the meeting, the WHO and U.S. technology enterprises reached an agreement on issues regarding the epidemic, with the latter pledging to take measures to guide information searching, promoting reliable information sources and purifying the public opinion environment for epidemic prevention and control.</p>
<p>
“While the virus spreads, misinformation makes the job of our heroic health workers even harder. It is diverting the attention of decision makers. And it causes confusion and spreads fear to the general public. At WHO, we’re not just battling the virus; we’re also battling the trolls and conspiracy theorists that push misinformation and undermine the outbreak response,” said WHO Director-General Tedros Adhanom Ghebreyesus.</p>
<p>
The European Union (EU) appreciates China’s epidemic prevention and control measures, European Commissioner for Equality Helena Dalli said on a recent plenary session of the European Parliament held in Strasbourg, France, during which discussion on the COVID-19 was carried out.</p>
<p>
Fighting the epidemic is not a task for China alone, as the epidemic is a challenge facing the whole world. The EU should strengthen cooperation with China and take its global responsibility, Dalli said, adding discrimination against Asians or persons perceived as Asians or any other race or ethnicity is contrary to EU law and the organization will not tolerate any racial discrimination.</p>
<p>
Most of the Members of European Parliament (MEP) believe that no country could address the challenge of the epidemic alone.</p>
<p>
The EU should promote information sharing among its member states and share information with China in order to eliminate social panic caused by fake information, they said, believing that the recent cases of discrimination in some countries are inhumane and run counter to the basic values of the EU, and every effort should be made to stop discrimination.</p>
<p>
Rumors always frighten the public who lack relevant knowledge amid epidemic. Therefore, media and medical experts in many countries are actively spreading knowledge about the epidemic through various channels to break down rumors and help them establish correct understanding.</p>
<p>
In The Daily Show with Trevor Noah, Chinese Malaysian comedian and actor Ronny Chieng staged a talk show to break down the misinformation and racism surrounding the coronavirus outbreak.</p>
<p>
He humorously refuted the claim that drinking bleach, eating garlic, and rinsing nose with saline help prevent the virus, and asked people to stop calling the virus an Asian virus and stereotyping Asian people. The show received a warm response from the audience after it was aired.</p>
<p>
Facing the threat of unknown viruses, people often feel anxious and helpless, and the demand for information has risen sharply. This has created a market for various rumors and conspiracy theories, according to Dr. Cheng Huang, an Assistant Professor in the Department of Global Health at George Washington University.</p>
<p>
In addition to objectively and comprehensively presenting evidence and clarifying facts, authorities also need to reveal why such ridiculous remarks are made, he pointed out.</p>
<p>
“This is a time for facts, not fear. This is a time for rationality, not rumors. This is a time for solidarity, not stigma,” Tedros has repeatedly stressed.</p>
<p>
The Chinese government has always maintained close cooperation with the WHO in the fight against the outbreak of the novel coronavirus, said Dr. Michael Ryan, executive director of the WHO Health Emergencies Program, at a regular media briefing on Feb. 14. The global response to the outbreak should be based on facts rather than speculations, he noted.</p>
<p>
At a recent press conference, Russian Foreign Ministry spokeswoman Maria Zakharova condemned some Western media for using false information to vilify China.</p>
<p>
At a time when the Chinese people are facing the unprecedented novel coronavirus pneumonia, writers of many reports were using disinformation and fraudulent facts, and were showing a lack of respect and sympathy, she said.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[US blacklists Russian entity to further pressure Maduro government], 2020-02-19 14:40:07,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
WASHINGTON, Feb. 19 (Xinhua) -- U.S. government announced on Tuesday that it had imposed sanctions against a subsidiary of Russian oil producer Rosneft and the subsidiary's president due to their alleged support for Venezuela in sanctions evasion, the latest move to further squeeze the Venezuelan government.</p>
<p>
The designated targets were Rosneft Trading S.A., a subsidiary of the Russian state-controlled Rosneft oil company, and its president Didier Casimiro, according to a statement issued by U.S. Department of the Treasury.</p>
<p>
""Rosneft Trading S.A. and its president brokered the sale and transport of Venezuelan crude oil,"" Treasury Secretary Steven Mnuchin said in the statement.</p>
<p>
The statement noted that all property and interests of the blacklisted targets are blocked. Meanwhile, the Treasury also issued a general license that allows companies to wind down their transactions with Rosneft Trading S.A.</p>
<p>
A senior official of U.S. President Donald Trump's administration said during a background press call that Rosneft Trading S.A. has provided ""the overwhelming amount of financial resources and hard currency"" for the government of Venezuelan President Nicolas Maduro.</p>
<p>
The senior official pointed out that the United States was ""somewhere in 50 to 60 percent of our maximum pressure strategy and campaign towards Venezuela,"" saying that it would continue to implement pressure against Venezuela until ""there is a democratic transition.""</p>
<p>
""The president has made clear over and over again that all options are on the table, we will continue to analyze all options,"" the official added.</p>
<p>
In response to U.S. blacklisting Rosneft Trading S.A., Venezuelan Foreign Affairs Minister Jorge Arreaza later in the day said that the United States aims to aggravate the misery of Venezuelan people.</p>
<p>
""The U.S. coercive, unilateral measures against Rosneft Trading are aimed against our oil industry, its workers and the Venezuelan economy,"" Arreaza said on Twitter.</p>
<p>
""They continue to attack the Venezuelan people, trying to incite suffering and hardship,"" he added.</p>
<p>
Tuesday's sanction came less than two weeks after the United States blocked a state-owned Venezuelan airline amid increasing wrestling between Washington and Moscow over the Venezuela issue.</p>
<p>
The United States has been pursuing a policy of economic sanctions and diplomatic isolation against the Maduro government in support of Venezuela's opposition leader Juan Guaido.</p>
<p>
Following the reception held by Trump for Guaido at the White House earlier this month, Russian Foreign Minister Sergei Lavrov paid an official visit to Venezuela to enhance bilateral cooperation.</p>
<p>
""We have agreed on our path of future work, to deepen economic cooperation of investments in other areas, despite illegitimate sanctions,"" Lavrov said after meeting with Maduro on Feb. 7.</p>
<p>
The priority sectors for investment are energy, natural resources, industry, and agriculture, Lavrov said in Venezuela, adding that great importance would also be placed on developing military cooperation.</p>
<p>
""Russians may soon find that their continued support of Maduro will no longer be cost-free,"" U.S. Special Representative for Venezuela Elliott Abrams said in early February.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[To cope with global challenges with multilateralism cooperation], 2020-02-19 14:37:30,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
The sudden outbreak of the novel coronavirus pneumonia is a reminder for the world that we are living in a time when traditional security intertwines with non-traditional security and when regional and global issues interconvert. The human beings are seeing increasing interdependence and their destinies are gradually becoming one.</p>
<p>
The Munich Security Conference held from Feb. 14 to 16 also indicated such point as the meeting paid close attention to global public health security and the novel coronavirus epidemic.</p>
<p>
At the conference, China introduced its concerted efforts and achievements in combating the epidemic, and received wide praise from the attendants. World Health Organization Director-General Tedros Adhanom Ghebreyesus also recognized the encouraging steps China has taken to contain the outbreak at its source, and once again called for solidarity from the international society.</p>
<p>
In this silent “war” where no bullet is used, the entire world has become a whole and a community with a shared future.</p>
<p>
China’s most comprehensive, strict and thorough measures to combat the epidemic represent the largest contribution to global epidemic prevention and control. Thanks to the country’s speed and efficiency which play a vital role in the battle against the virus, and its active engagement in global cooperation, the confirmed cases outside the country only account for less than 1 percent of the total.</p>
<p>
“I have given credit where it’s due, and I will continue to do that.” Tedros’ remarks echo the common aspiration of the international society, as China, which is combating the virus on the frontline, totally deserves such compliments.</p>
<p>
By supporting China, global countries are supporting their own and the epidemic prevention and control of the world.</p>
<p>
China is not lonely, because people across the world are standing closely with the Chinese people in the hardest days of the battle. Leaders from more than 160 countries and international organizations sent messages of sympathy to China to express strong support for the country, and people from many countries also took active actions to donate money and materials to encourage China.</p>
<p>
An Indonesian policeman recently sang the song ""Jiayou, Wuhan"" (Stay strong, Wuhan) on social media to show love; children from a primary school in Northern Ireland joined together to perform a Chinese song, Let the World be Full of Love, for people in China suffering from the coronavirus outbreak; and Sri Lankans prayed for China's victory against the novel coronavirus epidemic. To show the power of solidarity in the epidemic is the choice made by the people across the world.</p>
<p>
A profound lesson has been taught by the epidemic to the world. At the Munich Security Conference, the debate over ""Westlessness,"" which refers to the loss of common standing of what it means to be part of the West, reflected insufficient sense of security.</p>
<p>
The world should figure out what security is and how it can be achieved. Common, comprehensive, cooperative and sustained security is what the world needs, as no country in this planet is able to avoid global challenges or deal with them alone.</p>
<p>
Countries must stop dividing the world into the east and the west, fill the economic gap between the north and the south, take the planet on which human beings rely as a community with shared lives, and perceive the international society as a family, so as to build a community with a shared future for mankind.</p>
<p>
Only by joining hands and working together can the world overcome the global public health challenge. It is a moment that demonstrates the power of multilateralism and international cooperation. The Group of 77 and the United Nations voiced support for China’s efforts to combat the epidemic, followed by the Shanghai Cooperation Organization, the BRICS countries, ASEAN and the African Union.</p>
<p>
Fifteen members of the Economic Community of West African States convened an emergency meeting of health ministers to coordinate efforts and cope with the novel coronavirus outbreak. A special China-ASEAN foreign ministers' meeting on the novel coronavirus pneumonia outbreak will also be held in Laos, which marks another important meeting between China and ASEAN on public health cooperation after the special leaders meeting on the Severe Acute Respiratory Syndrome (SARS) outbreak they held in 2003.</p>
<p>
Building multilateralism to jointly protect the health and security of people around the world has become a choice for more and more countries and regions.</p>
<p>
In the era of globalization, countries are sharing challenges, responsibilities and destiny. To practice multilateralism and cope with global challenges with cooperation conforms to the general trend of time and the common aspiration of the people.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[Xinjiang ensures normal operation of ChinaEurope freight trains], 2020-02-19 14:39:49,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
URUMQI, Feb. 18 (Xinhua) -- The customs and railway departments in northwest China's Xinjiang Uygur Autonomous Region have simplified customs clearance procedures to ensure the normal operation of China-Europe trains amid the novel coronavirus epidemic prevention and control.</p>
<p>
A China-Europe freight train passed through the Horgos Port heading for Poland Monday afternoon, marking the 61st China-Europe freight train leaving China via the port in February this year.</p>
<p>
On Saturday, a China-Europe train carrying 850 tonnes of raw cotton entered China via the Alataw Pass in the region.</p>
<p>
Due to the impact of the novel coronavirus, most of the China-Europe freight trains carrying imports have been suspended or delayed, and the number of the exit and entry trains has dropped sharply since late January.</p>
<p>
Dou Luxin, deputy director of the Horgos customs, said the customs sent officers to check all the trains so as to prevent the epidemic from spreading through the port.</p>
<p>
Since the beginning of the year, the Horgos Port and the Alataw Pass have seen more than 730 China-Europe freight trains entering and leaving China. The export goods mainly included mechanical and electrical products, clothing, and electronic products while the imports are mainly cotton yarn and construction materials.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
SpaceX rocket launches 5th batch of 60 internet satellites into space, 2020-02-19 14:58:19,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
WASHINGTON, Feb. 17 (Xinhua) -- U.S. private space company SpaceX launched its fifth batch of 60 Starlink satellites into space on Monday, in an effort to build at minimum a 12,000-strong satellite network capable of providing broadband internet services.</p>
<p>
The Falcon 9 rocket, carrying the satellites, lifted off at 10:05 a.m. Eastern Standard Time (1505 GMT) from Space Launch Complex 40 at Cape Canaveral Air Force, Florida, according to a live broadcast by SpaceX.</p>
<p>
SpaceX designed Starlink to provide continual internet coverage around the world, using a network of satellites in low-Earth orbit.</p>
<p>
Falcon 9's reusable first stage missed a landing on SpaceX's drone ship in the Atlantic Ocean. It didn't appear as scheduled upon the drone ship about nine minutes after the liftoff, according to the live broadcast.</p>
<p>
This first stage previously launched two supply missions for the International Space Station in May and July of 2019, and the JCSAT-18/Kacific1 mission in December of 2019.</p>
<p>
About 15 minutes after the liftoff, the satellites were deployed. They will be moved into their intended orbits and operational altitude of 550 km after checks take place, according to SpaceX.</p>
<p>
SpaceX plans to launch into space about 12,000 Starlink satellites by 2024, and has revealed a bigger plan to launch 30,000 additional ones, bringing the total to 42,000.</p>
<p>
Each Starlink satellite weights approximately 260 kg and features a compact, flat-panel design that minimizes volume, allowing for a dense launch stack to take full advantage of Falcon 9's launch capabilities, according to SpaceX.</p>
<p>
The company's internet service will be available in the northern United States and Canada at some point this year, with global coverage planned for 2021.</p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
[Chinas antiepidemic fight can lend many lessons to international community for combating pandemics], 2020-02-19 14:45:43,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
China's ongoing people's war against COVID19 epidemic can lend many lessons and inspirations to the international community for combating pandemics in the future, experts from a Shanghai-based think tank said in a report published Friday.</p>
<p>
“Although the COVID-19 epidemic continues, China is well-positioned to win the ultimate victory against it,” the Shanghai Institutes for International Studies said in an update on China's fight against the novel coronavirus outbreak.</p>
<p>
The think tank summarized three key lessons this monumental event offers China and the world regarding international cooperation on global public health emergencies.</p>
<p>
First, a globalized world featuring more densely-populated metropolitan areas with higher population mobility poses unique challenges for epidemic prevention and control. Although mega-cities have generally established full-fledged public health emergency response mechanisms, yet economic, political, social, and security concerns all magnify decision-makers' and the public's sensitivity to the outbreak of infectious diseases. Therefore, emergency response mechanisms, social mobilization systems, and reserve systems for strategic assets must be institutionalized in mega-cities. Besides, the competence of community-level officials and individuals’ public health awareness need to be improved through more training courses and mass education programs.</p>
<p>
Second, China's cross-region medical supply systems and coordinating networks for medical experts are playing a decisive role in the current war against COVID-19 epidemic. Rallying more than 10,000 medical professionals and coordinating huge amounts of medical materials to reinforce Wuhan's public health systems at short notice is not only a result of the full functioning of the central and local governments, but also thanks to efficient logistics and professional/resource allocation. For sure, China can share its challenges and good practices with the international community.</p>
<p>
Last but not least, international cooperation proves increasingly important in the war against COVID-19 epidemic. In partnership with China, the WHO has been closely monitoring the epidemic and coordinating a concerted international response. National governments across the world have also extended a helping hand. As of February 7, more than 30 countries, including developing countries with medical supply shortages like Pakistan and Myanmar, have donated medical materials to China. Such acts of international humanitarianism indicate that in times of global emergency, international solidarity and coordination, rather than extreme rhetoric and excessive reaction, is what is needed for the well-being of the international community. For, as the Chinese saying goes, “Saving him to whom you’re tied from the river is saving yourself.”</p>
<p>
<em><strong>Read the full report </strong></em></p>
<p>
<em><strong><a href=""http://en.people.cn/n3/2020/0219/c90000-9659480.html"" target=""_blank""><span style=""color:#0000ff;"">A Decisive Stage for China's Fight against COVID-19 Epidemic</span></a></strong></em></p>
<!--share-->
<div class=""wb_2 wb_2b wb_2c wb_2d clear"">
<div class=""addthis_toolbox addthis_default_style addthis_32x32_style"">
<a class=""addthis_button_wechat""></a>
<a class=""addthis_button_twitter""></a>
<a class=""addthis_button_facebook""></a>
<a class=""addthis_button_sinaweibo""></a>
<a class=""addthis_button_linkedin""></a>
<a class=""addthis_button_reddit""></a>
<a class=""addthis_button_compact""></a>
</div>
<script type=""text/javascript"">var addthis_config = {""data_track_addressbar"":false};</script>
<script type=""text/javascript"" src=""//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56aad7f2f0636a6b"" async=""async""></script>
</div>
<!--share end-->
</div>"
Chinese communities in South Korea reach out hand to help fight novel coronavirus outbreak, 2020-02-19 13:27:26,"<div class=""wb_12 wb_12b clear"" id=""p_content"">
<p>
SEOUL, Feb. 18 (Xinhua) -- ""Fighting, Wuhan!"" ""Fighting, China!"" Such encouraging words were written on the cardboard boxes of masks piled up in the logistic warehouse of China's Yunda Express in South Korea.</p>
<p>
These boxes will soon be delivered to the central Chinese city of Wuhan, the epicenter of the new coronavirus pneumonia (COVID-19) outbreak, to help combat the epidemic. The masks were all donated from Chinese nationals residing in South Korea.</p>
<p>
Since the very beginning when the COVID-19 broke out in Wuhan, Chinese residing all over South Korea have actively joined efforts to provide as much help as possible in China's battle against the deadly epidemic.</p>
<p>
""Although we are living overseas, our hearts are deeply connected to our motherland,"" said Nian Chen, president of the All-Korea Association of Chinese Students and Scholars.</p>
<p>
""Our association, including more than 100 branches in universities in South Korea, started fund-raising on Jan. 26, and in less than 10 hours on the first day alone, there were over 26,000 students and teachers taking part and contributing their donations,"" Nian said.</p>
<p>
Of these donations many came from overseas students who have no source of income themselves and their donations did not come on a massive scale.</p>
<p>
""But we believe that more hands produce a stronger flame, and we have already collected more than 530,000 yuan (about 75,745 U.S. dollars),"" he said.</p>