-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.txt
More file actions
1763 lines (1763 loc) · 291 KB
/
test.txt
File metadata and controls
1763 lines (1763 loc) · 291 KB
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
__label__Negative ['foreign', 'secretary', 'participated', 'meeting', 'focal', 'point', 'indiafranceuae', 'trilateral', 'dialogue', 'discussed', 'potential', 'cooperation', 'field', 'defence', 'energy', 'environment', 'innovation', 'peopletopeople', 'exchange']
__label__Neutral ['did', 'know', 'uae', 'developing', 'arabic', 'chatgpt', 'using', 'billion', 'parametersthe', 'technology', 'innovation', 'instit']
__label__Positive ['knowing', 'bank', 'uaequick', 'finserv', 'afford', 'list', 'bank', 'uae', 'you', 'compiled', 'list', 'bank', 'uae', 'based', 'financial', 'stability', 'customer', 'satisfaction', 'innovative', 'service']
__label__Neutral ['host', 'cop', 'uae', 'committed', 'leading', 'way', 'fostering', 'innovation', 'pursuit', 'sustainable', 'future']
__label__Neutral ['uk', 'business', 'secretary', 'praise', 'ukuae', 'graphene', 'innovation', 'partnership']
__label__Neutral ['evaluation', 'criterion', 'benefit', 'amp', 'impact', 'technology', 'usage', 'innovation', 'amp', 'creativity']
__label__Neutral ['the', 'future', 'belongs', 'imagine', 'it', 'design', 'execute', 'it', 'centre', 'government', 'innovation']
__label__Neutral ['surpassing', 'aed', 'trillion', 'st', 'time', 'underline', 'status', 'catalyst', 'global', 't']
__label__Positive ['difc', 'important', 'fixture', 'innovation', 'talent', 'job', 'landscape']
__label__Neutral ['join']
__label__Neutral ['emirate', 'islamic', 'leading', 'islamic', 'financial', 'institution', 'uae', 'launched', 'global', 'fintech', 'accelera']
__label__Negative ['turkey', 'malaysia', 'uae', 'rank', 'higher', 'india', 'global', 'innovation', 'index', 'iran', 'saudi', 'arabia', 'qatar', 'close', 'india', 'innovation', 'index', 'percapita', 'patent', 'activity', 'higher', 'india', 'turkey', 'iran', 'saudi', 'malaysia']
__label__Positive ['the', 'directive', 'wise', 'leadership', 'focused', 'placing', 'uae', 'global', 'innovation', 'index', 'he', 'dr', 'ahmed', 'belhoul', 'al', 'falasi', 'chairman', 'general', 'authority', 'sport']
__label__Neutral ['ceo', 'he', 'dr', 'maryam', 'alsuwaidi', 'shared', 'method', 'implementing', 'investment', 'strateg']
__label__Neutral ['tried', 'gamification', 'platform', 'websitetry', 'now']
__label__Negative ['filing', 'u', 'security', 'exchange', 'commission', 'sec', 'marathon', 'announced', 'partnered', 'f', 'innova']
__label__Neutral ['fishing', 'largest', 'contributor', 'decline', 'ocean', 'health', 'water', 'quality']
__label__Positive ['thrilled', 'announce', 'fundii', 'tech', 'day', 'dubai', 'march', 'th', 'difc', 'innovation', 'hub', 'deadline', 'apply', 'feb']
__label__Neutral ['have', 'tried', 'gamification', 'platform', 'websitetry', 'now']
__label__Negative ['innovation', 'area']
__label__Positive ['uae', 'france', 'agreed', 'increase', 'cooperation', 'clean', 'energy', 'development', 'notably', 'decarbonization', 'of']
__label__Positive ['who', 'actually', 'life', 'smart', 'city', 'intnatanon', 'eye', 'innovation', 're', 'uae', 'proxy']
__label__Positive ['transform', 'space', 'interactive', 'screen', 'add', 'touch', 'office', 'classroom', 'exhibition', 'visit', 'information', 'discover', 'limitless', 'possibility']
__label__Neutral ['welcoming', 'retail', 'service', 'provider', 'mirrar', 'retail', 'jeweller', 'dubai', 'forum', 'theme', 'innovation', 'powering', 'retaildate', 'th', 'february']
__label__Neutral ['sharjah', 'entrepreneurship', 'centre', 'beeah', 'group', 'teamed', 'create', 'aid', 'foster', 'employability', 'sharjah', 'surrounding', 'region']
__label__Neutral ['family', 'financial', 'connection', 'russia', 'saudi', 'uae', 'china', 'democracy', 'that']
__label__Positive ['embrace', 'world', 'limitless', 'opportunity', 'growth', 'development', 'innovative', 'learning', 'valuable', 'connectionsregister', 'now']
__label__Positive ['turning', 'point', 'uae', 'journey', 'sustainability', 'take', 'challenge', 'effective', 'climate']
__label__Positive ['during', 'health', 'service', 'launched', 'innovation', 'strategy', 'enhance', 'health', 'sector', 'readiness', 'build', 'healthy', 'community', 'enjoys', 'high', 'quality', 'life']
__label__Positive ['there', 'new', 'article', 'international', 'financial', 'free', 'zone']
__label__Positive ['explore', 'mean', 'boost', 'mutual', 'flow', 'innovative', 'startup', 'circular', 'economy', 'sector']
__label__Neutral ['innovator', 'uae', 'showcase', 'innovation', 'pitch', 'february', 'uae', 'innovation', 'month', 'register', 'contribute', 'finding', 'solution', 'transportation', 'service', 'challenge']
__label__Neutral ['hear', 'insight', 'innovationdriven', 'education', 'head', 'school', 'uae', 'th', 'elets', 'world', 'education', 'summit', 'dubaienquire', 'participation']
__label__Neutral ['did', 'know', 'february', 'innovation', 'month', 'set', 'largest', 'national', 'event', 'year']
__label__Positive ['the', 'fourth', 'edition', 'zurich', 'innovation', 'championship', 'aim', 'attract', 'startup', 'looking', 'explore', 'future', 'insurance', 'read', 'here']
__label__Positive ['proud', 'coming', 'improve', 'health', 'service', 'mou', 'signed', 'ministry', 'national', 'health', 'service', 'hayat', 'biotech', 'kudos', 'leader', 'healthcare', 'innovation']
__label__Neutral ['the', 'international', 'platform', 'business', 'startup']
__label__Positive ['february', 'innovation', 'month', 'set', 'largest', 'national', 'event', 'celebrate', 'innovation', 'various', 'social', 'economic', 'humanitarian', 'field']
__label__Positive ['new', 'prize', 'aed', 'ht']
__label__Positive ['check', 'latest', 'blog', 'artificial', 'intelligence', 'company', 'uae', 'discover', 'company', 'leading', 'way', 'ai', 'innovation', 'regionlink']
__label__Neutral ['gear', 'insight', 'innovationdriven', 'education', 'director', 'research', 'uae', 'th', 'elets', 'world', 'education', 'summit', 'dubaienquire', 'participation']
__label__Positive ['mnthalan', 'valuation', 'exceed', 'billion', 'new', 'investment']
__label__Positive ['upcoming', 'know', 'circular', 'economy', 'role', 'enhancing', 'sustainability', 'construction', 'project', 'well', 'hostdr', 'ghanim', 'kashwani', 'thursday', 'pmregister']
__label__Neutral ['government', 'blue', 'carbon', 'ink', 'deal', 'promote', 'forest', 'managementtanzania', 'uae', 'based', 'entity', 'blue', 'carbon', 'signed', 'memorandum', 'understanding', 'mou', 'aimed', 'promoting', 'sustainable', 'forest', 'management', 'practice', 'reducing', 'greenhouse', 'gas', 'emission']
__label__Positive ['blue', 'carbon', 'uaebased', 'entity', 'government', 'tanzania', 'forest', 'service', 'agency', 'signed', 'mou', 'marking', 'start', 'collaboration', 'aimed', 'promoting', 'sustainable', 'forest', 'management', 'practicesread']
__label__Positive ['participant', 'highly', 'praised', 'workshop', 'role', 'uae', 'space', 'agency', 'encouraging', 'emirati', 'student', 'pursue']
__label__Positive ['good', 'know', 'appreciating', 'effort', 'leadership', 'energy', 'trendsetter', 'sector']
__label__Positive ['check', 'series', 'initiative', 'century', 'financial', 'supporting', 'sustainability', 'uae', 'word', 'ceo', 'chairman']
__label__Positive ['participant', 'highly', 'praised', 'workshop', 'role', 'uae', 'space', 'agency', 'encouraging', 'emirati', 'student', 'pursue', 'space', 'science', 'ensure', 'sustainability', 'vital', 'sector']
__label__Neutral ['watch', 'prof', 'damien', 'gruson', 'cliniques', 'universitaires', 'saint', 'luc', 'belgium', 'talk', 'sustainable', 'practice', 'lab']
__label__Positive ['abu', 'dhabi', 'home', 'world', 'largest', 'singlesite', 'solar', 'plant', 'ewec', 'support', 'uaes', 'energy', 'transition', 'development', 'innovative', 'renewable', 'energy', 'project']
__label__Neutral ['pat', 'fallon', 'byrne', 'equipment', 'rental', 'talk', 'company', 'responding', 'client', 'demand', 'sustainable']
__label__Positive ['exciting', 'news', 'uae', 'making', 'year', 'big', 'leap', 'solution', 'event', 'like', 'year', 'o']
__label__Neutral ['with', 'cooperation', 'th', 'annual', 'arab', 'fiscal', 'forum', 'theme', 'fiscal', 'sustainability', 'arab', 'world', 'covid', 'pandemic', 'challenge', 'opportunity', 'organized', 'ministry', 'finance', 'arab', 'monetary', 'fund']
__label__Neutral ['year', 'sustainability', 'declared', 'hh', 'sheikh', 'mohamed', 'bin', 'zayed', 'al', 'nahyan', 'president', 'united', 'arab', 'emirate', 'giving', 'planet', 'starting', 'beach']
__label__Neutral ['pleasure', 'interact', 'cabinet', 'minister', 'minister', 'president', 'designate']
__label__Negative ['official', 'shared', 'commitment', 'achieving', 'netzero', 'corporation', 'includes', 'setting', 'interim', 'target', 'retrofitting', 'asset', 'increase', 'energy', 'efficiency', 'sustainable', 'lowcarbon', 'design', 'green', 'construction', 'technique']
__label__Positive ['d', 'projected', 'attract', 'aed', 'billion', 'decade', 'platform', 'best', 'place', 'tech', 'superstar', 'boost', 'business', 'growth', 'uae', 'join', 'previous', 'sustainable', 'superstar', 'like']
__label__Neutral ['uae', 'mark', 'president', 'uae', 'hh', 'sheikh', 'invite', 'world', 'continue']
__label__Neutral ['today', 'uae', 'mark', 'th', 'reaffirming', 'effort', 'protecting', 'environment', 'buildi']
__label__Neutral ['help', 'amp', 'strengthens', 'reducing']
__label__Positive ['i', 'seeing', 'particularly', 'thought', 'leader', 'creating', 'sustainable', 'energy', 'solution']
__label__Positive ['interesting', 'develops', 'paying', 'russian', 'oil', 'dirham', 'sustainable', 'in']
__label__Neutral ['support', 'organisation', 'comprising', 'university', 'facilitate', 'participation', 'ahead']
__label__Positive ['he', 'minister', 'climate', 'change', 'amp', 'environment', 'affirmed', 'uaes', 'considerable', 'measure', 'promote', 'sustainability', 'recently', 'declaring', 'year', 'sustainability', 'confirming', 'country', 'global', 'effort', 'culminated', 'hosting']
__label__Positive ['sustainable', 'water', 'management', 'play', 'critical', 'role', 'galvanising', 'action', 'climate', 'change', 'cop', 'kickstarting', 'new', 'era']
__label__Positive ['the', 'numerous', 'alternative', 'attaining', 'sustainable', 'financing', 'discussed', 'uae', 'published', 'net', 'zero', 'strategic', 'initiative', 'october', 'explains']
__label__Neutral ['uae', 'prepares', 'host', 'cop', 'celebrate', 'th', 'uae', 'national', 'environment', 'day', 'sustainability', 'and']
__label__Positive ['the', 'uae', 'directive', 'wise', 'leadership', 'seek', 'implement', 'innovation', 'way', 'contributes', 'building', 'sustainable', 'future', 'knowledgebased', 'economy', 'saeed', 'abdul', 'ghaffar', 'hussainsecretary', 'general', 'general', 'authority', 'sport']
__label__Positive ['a', 'strategic', 'partner', 'edb', 'invited', 'discus', 'key', 'topic', 'including', 'sustainability', 'new', 'initiative', 'took', 'place', 'masfut', 'near', 'hatta', 'week']
__label__Neutral ['a', 'dubai', 'taxi', 'ecofriendly']
__label__Positive ['he', 'fahad', 'saeed', 'al', 'raqbani', 'met', 'honourable', 'principal', 'amp', 'founder', 'climate', 'nature', 'solution', 'chair', 'expert', 'group', 'net', 'zero', 'discus', 'climate', 'action', 'sustainability', 'ahead', 'uae', 'hosting']
__label__Positive ['available', 'restaurant', 'industry', 'providing', 'clarity', 'guidance', 'mean']
__label__Positive ['today', 'celebrate', 'tu', 'bishvat', 'jewish', 'holiday', 'marking', 'new', 'year', 'tree', 'celebrate', 'planting', 'new', 'tree', 'making', 'planet', 'greener', 'israel', 'leader', 'tree', 'planting', 'embracing', 'year']
__label__Positive ['a', 'circular', 'economy', 'speed', 'sustainability', 'business', 'advancement', 'honored', 'participate', 'meed', 'mashreq', 'business', 'leader', 'forum', 'discussion', 'esg', 'impact', 'modern', 'supply', 'chain', 'tackling', 'detail', 'circular', 'economy', 'uae']
__label__Positive ['a', 'enter', 'year', 'sustainability', 'uae', 'proud', 'continue', 'effort', 'lead', 'way', 'sustainable', 'future']
__label__Neutral ['preparing', 'future', 'initiative', 'act', 'platform', 'bolster', 'cooperation', 'sustainable', 'project', 'development', 'agency', 'country']
__label__Positive ['plastic', 'pollution', 'global', 'problem', 'it', 'happening', 'right', 'uae', 'farz', 'material', 'recovery', 'facility', 'were', 'working', 'change', 'that', 'recycling', 'plastic', 'waste', 'were', 'protecting', 'environment', 'future', 'generation']
__label__Positive ['disagree', 'uae', 'remarkable', 'progress', 'various', 'field', 'it', 'global', 'leader', 'effort', 'provided', 'aid', 'country', 'need', 'uae', 'noit', 'involved', 'war', 'crime']
__label__Positive ['last', 'month', 'uae', 'president', 'highness', 'sheikh', 'mohamed', 'bin', 'zayed', 'al', 'nahyan', 'announced', 'year', 'sustainability', 'click', 'read']
__label__Positive ['the', 'recently', 'took', 'sustainable', 'finance', 'working', 'group', 'sfwg', 'meeting', 'finance', 'track', 'held', 'india', 'presidency', 'aimed', 'discus', 'sfwg', 'work', 'plan', 'agree', 'priority', 'area', 'for']
__label__Neutral ['introduces', 'sustainable', 'lifestyle', 'brand', 'line', 'majid', 'al', 'futtaim', 'strategy', 'nurture']
__label__Positive ['injazat', 'support', 'uaes', 'vision', 'sustainable', 'growth', 'developing', 'eco', 'environmentally', 'friendly', 'initiative', 'aid', 'climate', 'change', 'mitigation', 'transition', 'lowcarbon', 'economyto', 'read', 'interview', 'click', 'following', 'link']
__label__Neutral ['the', 'initiative', 'step', 'forward', 'cooperation', 'development', 'agency', 'sustainable', 'project', 'concerned', 'pact', 'algin', 'objective', 'paris', 'agreement']
__label__Positive ['expert', 'recently', 'announced', 'priority', 'sector', 'great', 'sustainability', 'forefront', 'key', 'industry']
__label__Positive ['met', 'dr', 'sultan', 'al', 'jaber', 'minister', 'industry', 'advanced', 'technology', 'uae', 'cop', 'president', 'designate', 'sidel']
__label__Neutral ['phonepe', 'allows', 'crossborder', 'upi', 'payment', 'uae', 'singapore']
__label__Neutral ['agriculture', 'meet', 'technology', 'farm', 'middle', 'uae', 'desert', 'operated', 'sharjahbased', 'aggrotech', 'startup', 'veggit']
__label__Positive ['watch', 'agriculture', 'meet', 'technology', 'farm', 'middle', 'uae', 'desert', 'operated', 'sharjahbased', 'aggrotech', 'startup', 'veggitech', 'farm', 'produce', 'yearround', 'crop', 'using', 'combination', 'traditional', 'smart', 'farming', 'method']
__label__Neutral ['chemical', 'engineering', 'homework', 'chemical', 'process', 'technologychemical', 'thermodynamicsfluid', 'mechanicsheat', 'transferlab', 'report', 'chmass', 'transferpetroleumreaction', 'engineeringtransport', 'phenomenon']
__label__Positive ['hey', 'dopesters', 'ready', 'participate', 'latest', 'countryspecific', 'nft', 'campaign', 'win', 'beautiful', 'uae']
__label__Positive ['uae', 'defence', 'giant', 'edge', 'signed', 'million', 'investment', 'deal', 'israeli', 'technology', 'company', 'high', 'lander', 'w']
__label__Neutral ['cir', 'uae', 'united', 'arab', 'emirate', 'think', 'industry', 'like', 'estate', 'financing', 'capital', 'startup', 'benefited', 'digital', 'asset', 'tokenization', 'amp', 'substantially', 'support', 'finance']
__label__Negative ['news', 'norwegian', 'recycling', 'firm', 'tomra', 'uaebased', 'facility', 'management', 'company', 'imdaad', 'partnered', 'install', 'new', 'sensorbased', 'sorting', 'technology', 'material', 'recovery', 'facility', 'mrf', 'uae']
__label__Neutral ['launched', 'support', 'international', 'payment', 'feature', 'allow', 'user', 'travelling', 'abroad', 'pa']
__label__Positive ['position', 'sale', 'executivesr', 'sale', 'executivedate', 'posted', 'industry', 'technology', 'solutionsemployment', 'type', 'timeexperience', 'yearqualification', 'bachelor', 'degree', 'requiredsalary', 'aed', 'apply']
__label__Neutral ['get', 'online', 'chemical', 'engineering', 'homework', 'helpchemical', 'process', 'technologychemical', 'thermodynamicsfluid', 'mechanicsheat', 'transferlab', 'report', 'chmass', 'transferpetroleumreaction', 'engineeringtransport', 'phenomenon']
__label__Neutral ['online', 'chemical', 'engineering', 'homework', 'helpchemical', 'process', 'technologychemical', 'thermodynamicsfluid', 'mechanicsh']
__label__Neutral ['nexus', 'mobile', 'data', 'inch', 'tablet']
__label__Neutral ['chemical', 'engineering', 'homework', 'chemical', 'process', 'technologychemical', 'thermodynamicsfluid', 'mechanicsheat', 'transferlab', 'rep']
__label__Positive ['a', 'new', 'supplier', 'uae', 'joined', 'today', 'know', 'supplier', 'tap', 'following', 'link']
__label__Positive ['abu', 'dhabi', 'installed', 'laser', 'device', 'busiest', 'road', 'monitor', 'pollutant', 'emitted', 'exhaust', 'pipe', 'moving', 'vehicle', 'accurately', 'detect', 'carbon', 'monoxide', 'carbon', 'dioxide', 'nitrogen', 'nitrogen', 'dioxide']
__label__Positive ['zim', 'encouraged', 'tap', 'uae', 'innovation', 'new', 'technology']
__label__Positive ['i', 'highly', 'believe', 'dubai', 'oneofakind', 'startup', 'ecosystem', 'hand', 'hand', 'dubai', 'gateway', 'future', 'pioneer', 'engineering', 'worldclass', 'infrastructure']
__label__Neutral ['arabia', 'lead', 'bn', 'spending', 'east']
__label__Neutral ['online', 'chemical', 'engineering', 'homework', 'assignment', 'exam', 'help', 'withchemical', 'process', 'technologychemical', 'thermodynamics']
__label__Neutral ['japan', 'offering', 'hydrogen', 'oxygen', 'technology', 'uaethis', 'promoted', 'japanese', 'religious', 'organization', 'business', 'partnership', 'japan', 'dangerousplease', 'read', 'tweet']
__label__Neutral ['japan', 'offering', 'hydrogen', 'oxygen', 'technology', 'uaethis', 'promoted', 'japanese', 'religious', 'organization', 'business', 'partnership', 'religious', 'organization', 'dangerousplease', 'read', 'tweet']
__label__Positive ['the', 'innovation', 'talk', 'kicked', 'discussion', 'session', 'today', 'tackle', 'innovation', 'various', 'sector', 'notably', 'medium', 'space', 'technology', 'focus', 'developing', 'forwardlooking', 'plan', 'strategy']
__label__Neutral ['on', 'technology', 'panel', 'potential', 'role', 'cbdc', 'discussed', 'd', 'palotai', 'superhow', 'petia', 'niederl', 'thammarak', 'moenjak', 'shupui', 'li', 'representing', 'central', 'bank', 'uaewatch', 'here']
__label__Positive ['powerful', 'universal', 'travel', 'adapter', 'charging', 'port', 'usbc', 'port', 'using', 'power', 'delivery', 'technology', 'deliver', 'watt', 'usba', 'port', 'available', 'adnoc', 'convenience', 'store', 'uae', 'soon', 'available', 'stay', 'tuned']
__label__Positive ['live', 'medlab', 'middle', 'eastvisit', 'booth', 'new', 'technology', 'innovation', 'launched']
__label__Positive ['we', 'live', 'medlab', 'middle', 'eastvisit', 'booth', 'new', 'technology', 'innovation', 'launched']
__label__Neutral ['sony', 'xbrae', 'bravia', 'oled', 'tv']
__label__Neutral ['we', 'leap', 'tech', 'conference', 'meet', 'hall', 'stand', 'tb']
__label__Negative ['stay', 'connected', 'mikrotik', 'sxt', 'lte', 'kitus', 'provide', 'need', 'remote', 'area']
__label__Positive ['sultan', 'bin', 'ahmed', 'al', 'jaber', 'minister', 'industry', 'advanced', 'technology', 'patrick', 'pouyanne', 'ceo', 'totalenergies', 'chaired', 'plenary', 'meeting', 'highlevel', 'business', 'council']
__label__Neutral ['decentralized', 'finance', 'defi', 'rapidly', 'growing', 'ecosystem', 'financial', 'application', 'built', 'blockchain', 'technology', 'aimed', 'c']
__label__Negative ['uae', 'minister', 'artificial', 'intelligence', 'talk', 'm', 'supporting', 'startup', 'africa', 't']
__label__Negative ['uae', 'minister', 'state', 'artificial', 'intelligence', 'digital', 'economy', 'remote', 'work', 'application', 'emphasized', 'uae', 'keen', 'help', 'enhance', 'flexibility', 'government', 'ability', 'prepare', 'future']
__label__Negative ['sheikh', 'mohammed', 'announced', 'appointment', 'directorgeneral', 'prime', 'minister', 'office', 'addition', 'current', 'duty', 'minister', 'state', 'artificial', 'intelligence', 'digital', 'economy', 'remote', 'work', 'application']
__label__Negative ['the', 'asked', 'authority', 'concerned', 'ass', 'new', 'artificial', 'intelligence', 'technology', 'government', 'use', 'safelyread']
__label__Negative ['artificial', 'intelligence', 'degree', 'path', 'job', 'future', 'batch', 'student', 'abu', 'dhabis', 'ai', 'university', 'graduated', 'monday', 'plan', 'stay', 'uae', 'work', 'opportunity', 'reportedly', 'abound', 'amp']
__label__Negative ['a', 'round', 'applause', 'abu', 'dhabi', 'mohamed', 'bin', 'zayed', 'university', 'artificial', 'intelligence', 'leading', 'charge', 'addressing', 'growing', 'need', 'aibased', 'skill', 'nurturing', 'preparing', 'futureproofed', 'aiready', 'workforce']
__label__Negative ['ra', 'lottery', 'lga', 'hya', 'dubai', 'uae', 'sakha', 'fazza', 'mohammed', 'bin', 'rashid', 'bin', 'hamdan', 'royal', 'fndeissn', 'lottery', 'facebook', 'dubai', 'uae', 'sakha', 'fazza', 'mohammed', 'bin', 'rashid', 'bin', 'hamdan', 'royal', 'farab', 'health', 'artificial', 'intelligence', 'will', 'routine', 'checkup']
__label__Negative ['insilico', 'medicine', 'clinicalstage', 'aidriven', 'drug', 'discovery', 'company', 'announced', 'opening', 'insilico', 'medicine', 'generative', 'artificial', 'intelligence', 'research', 'development', 'centre', 'region', 'largest', 'aipowered', 'research', 'facility']
__label__Positive ['a', 'me', 'spending', 'big', 'data', 'analytics', 'projected', 'grow', 'percent', 'yearonyear', 'billion', 'artificial', 'intelligence', 'spending', 'seen', 'grow', 'percent', 'billion']
__label__Neutral ['routine', 'checkup', 'founder', 'compan']
__label__Negative ['arab', 'health', 'artificial', 'intelligence', 'will', 'routine', 'checkup']
__label__Negative ['uae', 'lunar', 'rover', 'test', 'st', 'artificial', 'intelligence', 'moon', 'canada']
__label__Negative ['uae', 'lunar', 'rover', 'test', 'st', 'artificial', 'intelligence', 'moon', 'canada']
__label__Negative ['arab', 'health', 'artificial', 'intelligence', 'will', 'routine', 'checkup', 'national', 'arab', 'health', 'artificial', 'intelligence', 'will', 'routine', 'checkup', 'national']
__label__Neutral ['test', 'moon', 'st', 'time']
__label__Positive ['dr', 'sultan', 'al', 'jaber', 'minister', 'industry', 'advanced', 'technology', 'omar', 'sultan', 'al', 'olama', 'uae', 'minister', 'state', 'artifi']
__label__Negative ['dr', 'sultan', 'al', 'jaber', 'minister', 'industry', 'advanced', 'technology', 'omar', 'sultan', 'al', 'olama', 'uae', 'minister', 'state', 'artificial', 'intelligence', 'digital', 'economy', 'remote', 'work', 'application', 'president', 'eric', 'xing', 'praised', 'cohort', 'mbzuai', 'graduate']
__label__Negative ['the', 'white', 'house', 'launching', 'partnership', 'india', 'president', 'joe', 'biden', 'hope', 'help', 'country', 'compete', 'china', 'military', 'equipment', 'semiconductor', 'artificial', 'intelligence']
__label__Negative ['mohamed', 'bin', 'zayed', 'university', 'artificial', 'intelligence', 'inaugural', 'cohort', 'graduation', 'ceremony', 'presence', 'theyab']
__label__Positive ['exploration', 'futuristic', 'approach', 'uae', 'employed', 'advanced', 'technology']
__label__Positive ['uae', 'student', 'graduate', 'mbzuai', 'inaugural', 'ceremony', 'saw', 'bestowing', 'master', 'degree', 'computer', 'vision']
__label__Negative ['inaugural', 'graduation', 'ceremony', 'mohamed', 'bin', 'zayed', 'university', 'artificial', 'intelligence', 'saw', 'student', 'country', 'including', 'emiratis', 'bag', 'postgraduate', 'degree', 'computer', 'vision', 'machine', 'learning']
__label__Negative ['uae', 'lunar', 'rover', 'test', 'st', 'artificial', 'intelligence', 'moon', 'canada']
__label__Negative ['uae', 'lunar', 'rover', 'test', 'st', 'artificial', 'intelligence', 'moon', 'canada']
__label__Negative ['big', 'day', 'uae', 'mohamed', 'bin', 'zayed', 'university', 'artificial', 'intelligence', 'inaugural', 'commencement']
__label__Negative ['student', 'graduate', 'mohamed', 'bin', 'zayed', 'university', 'artificial', 'intelligence']
__label__Negative ['uae', 'rover', 'test', 'st', 'artificial', 'intelligence', 'canada', 'elizabeth', 'howell']
__label__Positive ['uae', 'student', 'graduate', 'mbzuai', 'inaugural', 'ceremony', 'saw', 'bestowing', 'master', 'degree', 'computer', 'vision', 'machine', 'learning']
__label__Positive ['virtual', 'employee', 'rammas', 'responds', 'million', 'enquiry', 'year', 'period', 'read', 'more']
__label__Negative ['big', 'day', 'uae', 'mohamed', 'bin', 'zayed', 'university', 'artificial', 'intelligence', 'inaugural', 'commencement']
__label__Positive ['uaes', 'lunar', 'rover', 'use', 'artificial', 'intelligence', 'moon', 'exploration', 'great', 'lake', 'ledger']
__label__Negative ['uae', 'lunar', 'rover', 'test', 'st', 'artificial', 'intelligence', 'moon', 'here', 'http']
__label__Negative ['uae', 'lunar', 'rover', 'test', 'st', 'artificial', 'intelligence', 'moon', 'here']
__label__Negative ['uae', 'lunar', 'rover', 'test', 'st', 'artificial', 'intelligence', 'moon', 'canada']
__label__Positive ['ethical', 'hacker', 'moroccan', 'entrepreneur', 'battling', 'cybercrime']
__label__Positive ['adani', 'demonstrate', 'road', 'high', 'corporate', 'governance', 'standard', 'ethic', 'like', 'it', 'group', 'did', 'road', 'uae', 'fundraising', 'question', 'remains', 'shell', 'company', 'money', 'laundaring', 'price', 'manipulation', 'fack', 'invoice']
__label__Neutral ['ethic', 'uae', 'emir', 'called', 'modi', 'say', 'bhai', 'ihc', 'invested', 'million', 'fpo', 'ko', 'bacha', 'le', 'plus', 'sbilife', 'hdfclife', 'lic', 'invested', 'adani', 'fpo']
__label__Positive ['uae', 'adapting', 'crypto', 'fast', 'think', 'world', 'halal', 'defi', 'ethical', 'token', 'mrhb', 'rocket', 'it', 'super', 'duber', 'lowcap', 'team', 'building', 'it']
__label__Positive ['adani', 'group', 'get', 'billion', 'investment', 'uae', 'royal', 'coincidence', 'belief', 'strong', 'ethic']
__label__Positive ['turkey', 'lira', 'briefly', 'dipped', 'record', 'low', 'main', 'stock', 'market', 'fell', 'monday', 'major', 'earthquake', 'added', 'pressure', 'strong', 'dollar', 'war', 'ukraine', 'surprise', 'inflation', 'reading']
__label__Positive ['uae', 'starbucks', 'pay', 'zero', 'tax', 'inflation', 'control', 'fuel', 'price', 'lower', 'world', 'wage', 'average', 'cost', 'living', 'pretty', 'year', 'ago', 'starbucks', 'increase', 'price', 'again']
__label__Neutral ['analysis', 'vip', 'trial', 'signal', 'join']
__label__Negative ['pakistan', 'currently', 'going', 'economic', 'crisis', 'inflation', 'hit', 'country', 'hard', 'according', 'report', 'tournament', 'held', 'uae', 'possibility', 'member', 'nation', 'earn', 'apart', 'broadcast', 'revenue']
__label__Neutral ['invest', 'internally', 'income', 'producing', 'inflation', 'protected', 'asset', 'comparable', 'way', 'norway', 'uae', 'quatar', 'income', 'stream', 'derived', 'eventually', 'used', 'alternative', 'state', 'borrowing']
__label__Negative ['urgent', 'work', 'bring', 'stability', 'market', 'n', 'oilfuelenergy', 'price', 'n', 'high', 'requirement', 'emerging', 'economy', 'disturbing', 'g', 'supply', 'chain', 'need', 'policy', 'touch', 'double', 'digit', 'g', 'resilience', 'india', 'n', 'uae', 'economy']
__label__Positive ['what', 'stand', 'budget', 'jrthis', 'isan', 'antipeople', 'budget', 'make', 'adani', 'ambani', 'rich', 'attempt', 'decrease', 'inequality', 'inflationyes', 'sri', 'ram', 'uae', 'company', 'heard', 'poured', 'million', 'rescue', 'fpo', 'hindu', 'appeasement']
__label__Positive ['the', 'budget', 'world', 'fastestgrowing', 'major', 'economy', 'come', 'critical', 'time', 'thing', 'like', 'global', 'inflation', 'rate', 'hike', 'pose', 'headwind']
__label__Positive ['happy', 'client', 'feedback', 'daily', 'proper', 'risk', 'managment', 'strategy', 'join']
__label__Neutral ['madam', 'rupee', 'devaluation', 'skyrocketing', 'inflation', 'knocking', 'doortodays', 'rateus', 'dollar', 'pkr', 'euro', 'pkr', 'british', 'pound', 'pkr', 'saudi', 'riyal', 'pkr', 'uae', 'dirham', 'pkr', 'australian', 'dollar', 'pkr']
__label__Negative ['just', 'in', 'muchawaited', 'foreign', 'visit', 'uaes', 'president', 'islamabad', 'got', 'postponedhis', 'flight', 'delayed', 'unce']
__label__Negative ['just', 'in', 'muchawaited', 'foreign', 'visit', 'uaes', 'president', 'islamabad', 'got', 'postponedhis', 'flight', 'delayed', 'uncertain', 'weather', 'condition']
__label__Neutral ['control', 'operationministry', 'energy', 'infrastructure', 'uae']
__label__Positive ['uae', 'minister', 'cop', 'president', 'appreciates', 'india', 'goal', 'achieving', 'gw', 'clean', 'energy']
__label__Neutral ['in', 'support', 'endeavour', 'range', 'trilateral', 'event', 'organized', 'framework', 'indian', 'presidency', 'g', 'uae', 'hosting', 'cop', 'respectively']
__label__Positive ['thanks', 'opinion', 'piece', 'posted', 'week']
__label__Negative ['week', 'announcement', 'uaes', 'ceo', 'oil', 'gas', 'shifting', 'cop', 'presidency', 'there', 'consensus', 'awful', 'workable', 'catalysed', 'paris', 'agreement', 'act', 'steward', 'commentary']
__label__Positive ['uae', 'pitched', 'cop', 'moment', 'realistic', 'practical', 'pragmatic', 'solution', 'accelerate', 'global', 'energy', 'transition', 'summit', 'hold', 'formal', 'assessment', 'progress', 'paris', 'agreement', 'entered', 'force']
__label__Neutral ['al', 'dhafra', 'solar', 'project', 'fully', 'operational', 'cop', 'uae']
__label__Positive ['stay', 'informed', 'latest', 'update', 'summary', 'january', 'headline']
__label__Positive ['had', 'interesting', 'conversation', 'excellency', 'abdulla', 'al', 'shamsi', 'uae', 'ambassador', 'nepal', 'relation', 'upcoming', 'cop', 'meeting', 'dubai', 'later', 'year']
__label__Positive ['want', 'action', 'meeting', 'host', 'nation', 'uae', 'cop', 'huge', 'contribute', 'noble', 'cause']
__label__Positive ['it', 'honor', 'attend', 'plenary', 'session', 'uaefrance', 'highlevel', 'business', 'council', 'opportunity', 'reiterate', 'support', 'success', 'cop', 'ambitious', 'esg', 'roadmap']
__label__Positive ['meeting', 'minister', 'climate', 'change', 'united', 'arab', 'emirate', 'gcc', 'secretary', 'general', 'reaffirms', 'support']
__label__Neutral ['he', 'fatema', 'al', 'mazrouie', 'uae', 'ambassdor', 'kingdom', 'norway', 'visited', 'he', 'erling', 'remistad', 'meeting', 'dis']
__label__Neutral ['uae', 'royalty', 'enter', 'cryptocurrency', 'shariahcompliant', 'virtual', 'currency']
__label__Neutral ['overview', 'cryptocurrency', 'regulation', 'uae']
__label__Neutral ['overview', 'cryptocurrency', 'regulation', 'uae']
__label__Neutral ['overview', 'cryptocurrency', 'regulation', 'uae']
__label__Positive ['the', 'verdict', 'in', 'luxurious', 'area', 'uae']
__label__Positive ['new', 'job']
__label__Positive ['sheikh', 'hamad', 'salem', 'invests', 'develop', 'smart', 'city', 'uae']
__label__Neutral ['uae', 'emerges', 'leading', 'hub', 'conference', 'hail', 'proactive', 'approach']
__label__Positive ['fast', 'mining']
__label__Positive ['press', 'follow', 'button', 'twitter', 'page', 'daily', 'free', 'course', 'update', 'enroll', 'link', 'free', 'autodesk', 'structural', 'robot', 'rcc', 'villa', 'design', 'uae']
__label__Neutral ['autodesk', 'structural', 'robot', 'rcc', 'villa', 'design', 'uae']
__label__Positive ['serbia', 'ni', 'invests', 'million', 'retail', 'network', 'headline', 'week', 'erpecnews', 'live', 'news', 'briefballenoil', 'open', 'new', 'fuel', 'station', 'year', 'uae', 'petrol', 'price', 'euro', 'litre', 'story', 'link', 'above']
__label__Positive ['nextgen', 'spine', 'surgical', 'robot', 'available', 'soon']
__label__Positive ['american', 'hospital', 'dubai', 'acquires', 'advanced', 'radiation', 'technology', 'spine', 'surgical', 'robot', 'forbes']
__label__Positive ['the', 'island', 'destination', 'people', 'passionate', 'futurism', 'designed', 'fully', 'sustainable', 'selfsufficient', 'smart', 'villa', 'flying', 'car', 'robot', 'advanced', 'technology', 'integrated', 'daily', 'life']
__label__Positive ['unleashing', 'robotics', 'skill', 'guidance', 'uae', 'national', 'champion', 'amp', 'international', 'silver', 'medalist', 'unique', 'world', 'roboticsjoin', 'free', 'orientation', 'webinar', 'free']
__label__Neutral ['dewa', 'robot', 'answer', 'written', 'query', 'audio', 'chat', 'arabic', 'english', 'clockmore', 'here']
__label__Neutral ['it', 'happening', 'israeli', 'settler', 'attack', 'home', 'village', 'south']
__label__Negative ['alleged', 'mastermind', 'created', 'propagated', 'fake', 'document', 'journalist', 'alleging', 'play', 'defense', 'subtly', 'ongoing', 'azimadechert', 'case']
__label__Neutral ['intelligence', 'personnel', 'likely', 'nsa', 'indicted', 'spying', 'american', 'united', 'arab', 'emeriteswonder', 'wh']
__label__Positive ['im', 'uae', 'account', 'suspended', 'long', 'time', 'ago', 'im', 'tired', 'year', 'gathering', 'friend', 'fan', 'mistake', 'hacker', 'dont', 'know', 'nothing', 'kindly', 'consider', 'retrieving', 'it', 'account', 'is']
__label__Neutral ['uae', 'business', 'need', 'know', 'cybersecurity']
__label__Positive ['tahawultech', 'amp', 'isaca', 'uae', 'jointly', 'hosting', 'edition', 'infosec', 'amp', 'cybersecurity', 'congress', 'bringing', 'together']
__label__Neutral ['paypal', 'adder', 'download']
__label__Neutral ['mining']
__label__Negative ['purple', 'pitcher', 'plant', 'prevent', 'smallpox', 'darkmatter', 'uae', 'staffed', 'israeli', 'false', 'flag', 'russia', 'iran']
__label__Negative ['china', 'usa', 'intelligence', 'israel', 'cia', 'darkmatter', 'uae', 'seething', 'false', 'flag', 'usa', 'war', 'russia', 'amp', 'china', 'umbrage', 'snowden', 'warned', 'u']
__label__Neutral ['fastest', 'mining', 'it']
__label__Neutral ['fastest', 'mining', 'it']
__label__Neutral ['just', 'in', 'rated', 'university', 'canadian', 'university', 'dubai', 'accepts', 'crypto', 'payment']
__label__Neutral ['just', 'in', 'rated', 'university', 'canadian', 'university', 'dubai', 'accepts', 'crypto', 'payment']
__label__Neutral ['web', 'conference', 'dubai', 'crypto', 'nft', 'metaverse', 'blockchain', 'etc', 'meeting', 'people', 'different', 'country']
__label__Positive ['rihannas', 'nft', 'mint', 'live']
__label__Positive ['compare', 'apple', 'apple', 'appreciate', 'true', 'value', 'ruling', 'family', 'dubai', 'name']
__label__Neutral ['amp', 'live', 'here', 'tshirt', 'mug', 'tampc', 'apply', 'mint', 'nft', 'online', 'novel', 'like', 'rt', 'amp', 'follow', 'tag', 'friend', 'join', 'discord']
__label__Positive ['ready', 'amp', 'live', 'here', 'tshirt', 'mug', 'tampc', 'apply', 'nft', 'online', 'like', 'rt', 'amp', 'follow', 'tag', 'friend', 'join', 'discord']
__label__Neutral ['minted']
__label__Positive ['love', 'art', 'uaenft']
__label__Neutral ['gonna', 'tomorrow', 'uae', 'attending', 'session', 'nft', 'art', 'renaiss']
__label__Neutral ['covered', 'pathpicture', 'road', 'covered', 'sand', 'middle', 'desert', 'story', 'photo', 'price', 'ethlocation', 'uae']
__label__Neutral ['breaking', 'news', 'saudi', 'arabia', 'join', 'force', 'undisclosed', 'deal', 'growing', 'crypto', 'web', 'like', 'uae', 'saudi', 'arabia', 'making', 'big', 'move', 'digital', 'asset', 'space']
__label__Neutral ['coming', 'soonanipang', 'series', 'kcandy', 'crush', 'm', 'downloads', 'addictive', 'pne', 'mechanicstag', 'community', 'wou']
__label__Neutral ['daman', 'security', 'premier', 'financial', 'service', 'provider', 'uae', 'middle', 'east', 'specializing', 'investment', 'advisory']
__label__Neutral ['daman', 'security', 'premier', 'financial', 'service', 'provider', 'uae', 'middle', 'east', 'specializing', 'investment', 'advisory', 'portfolio', 'management', 'wealth', 'management']
__label__Positive ['komichi', 'amp', 'cdd', 'giveaway', 'chance', 'win', 'xwl', 'komichi', 'twitter']
__label__Neutral ['dubai', 'release', 'crypto', 'regulation', 'virtual', 'asset', 'service', 'provider', 'source']
__label__Neutral ['dubai', 'release', 'crypto', 'regulation', 'virtual', 'asset', 'service', 'provider', 'source']
__label__Neutral ['got', 'this']
__label__Positive ['dimension', 'discord', 'here', 'want', 'ensure', 'best', 'o']
__label__Neutral ['ive', 'buying', 'ethereum', 'metamask', 'transferring', 'saitapro']
__label__Positive ['daily', 'routine', 'wake', 'away', 'free', 'nfts', 'watch', 'dark', 'knight', 'rise', 'sleep']
__label__Negative ['better', 'believe', 'going', 'crazy', 'bitcoin', 'nftsfree', 'bitcoin', 'nfts', 'anyone', 't']
__label__Positive ['blessing', 'just', 'bringing', 'attn', 'people', 'usa', 'reporting', 'tr']
__label__Neutral ['dear', 'dopamine', 'uae', 'nft']
__label__Positive ['nft', 'w', 'original', 'art', 'work', 'flag', 'world', 'brief', 'explainer', 'video', 'perk', 'nfts', 'x']
__label__Neutral ['day', 'gowe', 'hop', 'skip', 'jump', 'away', 'official', 'nft', 'launch', 'wait', 'hop', 'skip', 'and']
__label__Positive ['stop', 'hiatussy', 'mark', 'milestoneofficially', 'reached', 'x', 'account', 'st', 'january', 'also', 'minted', 'nft', 'yesterday', 'worth', 'x', 'holdingbest', 'thing', 'starting', 'earned', 'uae', 'ill', 'pay', 'tax', 'thisback', 'hiatussy']
__label__Negative ['punk', 'bad', 'bunny', 'sabet', 'bad', 'bunny', 'drop', 'day', 'follow']
__label__Positive ['giving', 'away', 'check', 'meme', 'edition', 'lucky', 'engagoorlike', 'rt', 'enterreply', 'favorite', 'meme', 'bonus']
__label__Positive ['claimed', 'bonus', 'big', 'purchase', 'yetlast', 'bonus', 'code', 'everlaunchbigeyes', 'expires', 'monday', 'th', 'feb', 'utcuse', 'promo', 'code', 'launchbigeyes', 'bonus', 'purchase', 'cute']
__label__Positive ['castaway', 'x', 'freenft', 'excited', 'announce', 'hosting', 'gen', 'island', 'wl', 'free']
__label__Positive ['treasure', 'chest', 'opened', 'burned', 'currently', 'own', 'receive', 'generation', 'treasure', 'chest', 'a']
__label__Positive ['finally', 'awake', 'month', 'fishing', 'farming', 'good', 'night', 'sleep']
__label__Positive ['hey', 'inform', 'nft', 'just', 'listed', 'eth', 'actually', 'special', 'breedsthat', 'created', 'three', 'piece', 'different', 'angle', 'creation', 'availabledont', 'forget', 'all']
__label__Neutral ['want', 'access', 'exclusive', 'deal', 'amp', 'event', 'uae', 'holding', 'exclusive', 'collection', 'op']
__label__Positive ['do', 'want', 'access', 'exclusive', 'deal', 'amp', 'event', 'uae', 'holding', 'exclusive', 'collection', 'open', 'door', 'offer', 'like', 'access', 'to']
__label__Positive ['claimed', 'bonus', 'big', 'purchase', 'yetlast', 'bonus', 'code', 'everlaunchbigeyes', 'expires', 'monday', 'th', 'feb', 'utcuse', 'promo', 'code', 'launchbigeyes', 'bonus', 'purchase', 'cute']
__label__Positive ['night', 'added', 'k', 'follower', 'wow', 'overwhelmed', 'excitement', 'passion', 'supp']
__label__Positive ['announcing', 'dimensionals', 'multiversean', 'epic', 'web', 'gaming', 'multiverse', 'hero', 'collect', 'dimension', 'w']
__label__Positive ['announcing', 'koa', 'pet', 'robot', 'eve', 'best', 'buddy', 'main', 'hero', 'journey', 'multiverse']
__label__Positive ['introducing', 'powerful', 'force', 'the']
__label__Positive ['ozark', 'happy', 'people', 'try']
__label__Positive ['im', 'happy', 'fantastic', 'journey', 'uaenfts', 'from', 'desert', 'mar', 'uaenft', 'keypass', 'citizenship', 'habitation', 'hope', 'visit', 'time', 'year', 'fantastic']
__label__Positive ['out', 'physical', 'nft', 'store', 'uae']
__label__Positive ['in', 'latest', 'episode', 'abu', 'dhabi', 'sustainability', 'week', 'interview', 'series', 'dr', 'sultan', 'al', 'jaber', 'minister', 'industry', 'advanced', 'technology', 'president', 'discus', 'uae', 'commitment', 'clean', 'energy', 'transition', 'sustainable', 'development']
__label__Neutral ['international', 'journal', 'technology', 'management', 'amp', 'sustainable', 'development', 'now', 'including', 'sustainable', 'port', 'management', 'comparative', 'evidence', 'italy', 'uae', 'india', 'amol', 'gore']
__label__Positive ['leading', 'bearing', 'distributor', 'supplier', 'gulf', 'engineer', 'general', 'tradingfor', 'info', 'contact', 'visit']
__label__Neutral ['abb', 'ac', 'cpu', 'plc', 'integrator', 'automation', 'amp', 'control', 'division', 'abu', 'dhabi', 'uaestockists', 'rfqwhatsapp', 'mail', 'id', 'shashi']
__label__Positive ['theme', 'focus', 'dubai', 'digital', 'compass', 'ai', 'uae', 'explore', 'theme', 'registering', 'now']
__label__Neutral ['quote', 'day']
__label__Neutral ['reach', 'ease', 'page', 'contact', 'detail', 'contact', 'form', 'website']
__label__Positive ['one', 'uaes', 'biggest', 'ship', 'repair', 'engineering', 'firm', 'approached', 'brainvire', 'upgrade', 'alreadyinuse', 'odoo', 'systemto', 'streamline', 'daily', 'operation', 'improve', 'project', 'module', 'financial', 'process', 'hrms', 'installation', 'general', 'performance', 'automation', 'brainvire']
__label__Neutral ['get', 'expert', 'tutor', 'software', 'worksansysautocadccdata', 'sciencediscrete', 'mathematicsgraphic', 'designjavamatlabmicrosoft', 'excelpythonsolid', 'worksvbaexamsquizzes']
__label__Neutral ['get', 'expert', 'tutor', 'software', 'worksansysautocadccdata', 'sciencediscrete', 'mathematicsgraphic', 'designjavamatlabmicrosoft', 'excelpythonsolid', 'worksvbaexamsquizzes']
__label__Positive ['hong', 'kong', 'uae', 'explore', 'collaboration', 'opportunitiesread', 'more', 'update', 'follow']
__label__Positive ['wondering', 'best', 'hr', 'management', 'software', 'uae', 'are', 'well', 'got', 'list', 'hr', 'management', 'software', 'solution', 'creating', 'quite', 'buzz', 'click', 'link', 'below']
__label__Neutral ['streamline', 'salon', 'operation', 'allinone', 'salon', 'software', 'solution', 'book', 'appointment', 'manage', 'client', 'increase', 'efficiency', 'easecontact', 'now']
__label__Neutral ['subjectsmechanicalelectrical', 'engineeringcivil', 'engineeringchemical', 'engineeringelectronics', 'communication', 'eng']
__label__Neutral ['software', 'developer', 'insurance', 'tasc', 'outsourcing']
__label__Positive ['stack', 'developer', 'splash', 'software', 'llc']
__label__Positive ['sunsmart', 'help', 'client', 'ntirepms', 'cloudbased', 'demand', 'premise', 'intelligent', 'procurement', 'management', 'software', 'inbuilt', 'supply', 'chain', 'managementlearn', 'more']
__label__Positive ['buy', 'samsung', 'galaxy', 's', 'gb', 'gb', 'green', 'g', 'topnotch', 'performance', 'octacore', 'processor', 'longterm', 'software', 'update', 'policyshop', 'now']
__label__Positive ['get', 'control', 'business', 'finance', 'avoid', 'timeconsuming', 'amp', 'maximize', 'efficiency', 'perfect', 'equal', 'erp', 'accounting', 'softwarevisit', 'u', 'email', 'u', 'info']
__label__Positive ['check', 'latest', 'article', 'sap', 'training', 'uae', 'placement', 'assistance', 'free', 'software', 'installation', 'laptop', 'sap', 'hana', 'access', 'provided']
__label__Neutral ['subjectsmechanicalelectrical', 'engineeringcivil', 'engineeringchemical', 'engineeringelectronics', 'communication', 'engine']
__label__Positive ['wondering', 'reward', 'employee', 'peoplehum', 'help', 'recognise', 'performer', 'deserving', 'appreciation', 'click', 'link', 'know', 'more']
__label__Positive ['in', 'pursuit', 'creating', 'efficiency', 'company', 'mr', 'huthayfa', 'nawafleh', 'vam', 'provided', 'comprehensive', 'training', 'entire', 'team', 'management', 'swansea', 'real', 'estate', 'llc', 'abu', 'dhabi', 'uae', 'using', 'bitrix', 'software', 'th', 'january']
__label__Neutral ['ebr', 'software', 'leading', 'software', 'company', 'uae', 'having', 'expertise', 'erp', 'amp', 'po', 'software', 'focus', 'provide', 'quality', 'service', 'customer', 'servicesrestaurant', 'po', 'dubaisupermarket', 'amp', 'retail', 'softwaresalon', 'posreal', 'estatehr', 'amp', 'payrolltrading', 'erpinventory', 'erp']
__label__Positive ['with', 'help', 'save', 'lot', 'time', 'amp', 'dedicate', 'important', 'grow', 'business', 'cybrix', 'erp']
__label__Neutral ['we', 'extensive', 'experience', 'setting', 'business', 'dubai', 'provide', 'range', 'service', 'support', 'client', 'process', 'nowtelephone']
__label__Positive ['make', 'club', 'operation', 'smarter', 'best', 'equal', 'erp', 'club', 'management', 'software', 'uae', 'visit', 'u', 'email', 'u', 'info']
__label__Positive ['hi', 'keyenableuae', 'look', 'like', 'youre', 'interested', 'accessibility', 'add', 'alt', 'text', 'image', 'theyll', 'accessible', 'blind', 'partially', 'sighted', 'neurodivergent', 'people', 'use', 'screen', 'reader', 'softwarehow', 'add', 'alt', 'text', 'amp', 'faq']
__label__Positive ['call', 'know', 'visit', 'website']
__label__Neutral ['subjectsmechanicalelectrical', 'engineeringcivil', 'engineeringchemical', 'engineeringelectronics', 'communication', 'engineer']
__label__Neutral ['online', 'expert', 'tutor', 'software', 'worksansysautocadccdata', 'sciencediscrete', 'mathematicsgraphic', 'designjava']
__label__Neutral ['subjectsmechanicalelectrical', 'engineeringcivil', 'engineeringchemical', 'engineeringelectronics', 'communication', 'engineeringmathematicssoftware', 'work', 'computer', 'sciencemathematicsprogrammingdiscrete']
__label__Neutral ['nx', 'delivers', 'generation', 'design', 'simulation', 'manufacturing', 'solution', 'enable', 'company', 'realize', 'value', 'digital', 'twin', 'indish', 'technology', 'authorized', 'sell', 'support', 'train', 'nx', 'cadcam', 'product', 'uae', 'gcc']
__label__Neutral ['earlier', 'week', 'keynote', 'uae', 'innovates', 'asked', 'did', 'dubai', 'grow', 'village', 'metropolis', 'answer', 'c']
__label__Neutral ['hong', 'kong', 'uae', 'explore', 'collaboration', 'opportunity']
__label__Negative ['international', 'wealth', 'advisory', 'firm', 'globaleye', 'launching', 'wealth', 'platform', 'address', 'state', 'gap', 'uae', 'wealth', 'market']
__label__Positive ['is', 'ready', 'used', 'business', 'here', 'expert', 'saying', 'dewas', 'announcement', 'itll', 'first']
__label__Neutral ['technology', 'manager', 'sap', 'enoc']
__label__Negative ['oracle', 'senior', 'vp', 'technology', 'cloud', 'mea', 'amp', 'uae', 'country', 'leader', 'nick', 'redshaw', 'talk', 'billion', 'investment', 'cloud', 'technology', 'extend', 'cloud', 'region', 'jeddah', 'expand', 'incremental', 'capacity', 'increased', 'demand', 'cloud', 'computing']
__label__Positive ['looking', 'popular', 'tech', 'influencers', 'uae', 'pls']
__label__Neutral ['enhancing', 'collaboration', 'kingdom', 'communication', 'space', 'amp', 'commission']
__label__Positive ['a', 'wacky', 'idea', 'y', 'dont', 'uae', 'oman', 'saudi', 'collectively', 'invest', 'fundamental', 'life', 'fresh', 'water', 'grow', 'dateswatever', 'idk', 'nordstream', 'made', 'surely', 'there', 'brainstech', 'make', 'happen', 'indus', 'river', 'euphratestigris', 'delta', 'desert']
__label__Positive ['do', 'want', 'freelance', 'visa', 'uae', 'youre', 'creative', 'professional', 'tech', 'expert', 'business', 'consultant', 'taking', 'freelance', 'visa', 'work', 'term', 'pursue', 'project', 'build', 'successful', 'fulfilling', 'career']
__label__Positive ['one', 'rare', 'woman', 'tech', 'twitter', 'experience', 'mubadala', 'sad', 'watching', 'dictatorship', 'like', 'uae', 'kingdom', 'saudi', 'arabia', 'legitimized']
__label__Neutral ['electricity', 'amp', 'water', 'authority', 'declared', 'plan', 'implement', 'technology', 'expand', 'service', 'digital', 'offering']
__label__Positive ['this', 'week', 'delegation', 'business', 'executive', 'special', 'administrative', 'region', 'visiting', 'fortify', 'existing', 'business', 'tie', 'amp', 'forge', 'new', 'one', 'amp', 'development', 'smart', 'city', 'addition', 'conventional', 'trade', 'amp', 'finance', 'sector']
__label__Neutral ['group', 'coo', 'philip', 'matta', 'share', 'insight', 'medium', 'scene', 'recent', 'feature', 'below']
__label__Positive ['edge', 'showcase', 'large', 'portfolio', 'advanced', 'technology', 'defence', 'solution', 'idex']
__label__Positive ['haier', 'brings', 'combination', 'art', 'technology', 'oledvisit', 'website', 'discover', 'haier', 'world']
__label__Neutral ['emirate', 'defense', 'technology', 'edt', 'join', 'force', 'steadicopter']
__label__Neutral ['join', 'partner', 'samuel', 'salako', 'senior', 'associate', 'adewumi', 'salami', 'dla', 'piper', 'africa', 'team', 'africa', 'tech', 'su']
__label__Positive ['govt', 'india', 'fascinating', 'franceunique', 'uae', 'look', 'boost', 'defenceenergy', 'tiestrilateral', 'initiative', 'serve', 'expanding', 'cooperationagreedcountries', 'seek', 'ensure', 'greater', 'alignment', 'respective', 'ecotechsocial', 'policy', 'paris', 'agt', 'gb']
__label__Neutral ['india', 'france', 'uae', 'trilateralafter', 'year', 'meeting', 'trilateral', 'launchedfocus', 'on']
__label__Neutral ['omar', 'sultan', 'al', 'olama', 'say', 'doubling', 'contribution', 'digital', 'economy', 'uae', 'gdp', 'by']
__label__Neutral ['india', 'tie', 'france', 'uae', 'defence', 'nuclear', 'energy', 'tech']
__label__Neutral ['asia', 'cup', 'pcb', 'retains', 'hosting', 'right', 'indian', 'match', 'likely', 'held']
__label__Positive ['join', 'february', 'tech', 'innovator', 'leading', 'expert', 'world', 'discover', 'new', 'idea', 'build', 'new', 'partnership', 'connect', 'inspiring', 'mentor', 'investor']
__label__Negative ['both', 'chinese', 'stateowned', 'private', 'company', 'involved', 'shipping', 'navigation', 'equipment', 'jamming', 'technology', 'fighterjet', 'part', 'sanctioned', 'russian', 'governmentowned', 'defense', 'company', 'turkey', 'uae', 'alarming', 'development']
__label__Neutral ['france', 'india', 'uae', 'announce', 'trilateral', 'cooperation', 'initiative']
__label__Neutral ['trilateral', 'initiative', 'serve', 'forum', 'expand', 'cooperation', 'country', 'project', 'field']
__label__Positive ['india', 'france', 'united', 'arab', 'emirate', 'saturday', 'unveiled', 'ambitious', 'roadmap', 'cooperation', 'plethora', 'area', 'including', 'defence', 'energy', 'technology', 'trilateral', 'framework', 'come', 'amid', 'geopolitical', 'turmoil']
__label__Neutral ['saturday', 'announced', 'formal', 'trilateral', 'cooperation', 'initiative', 'area', 'defence', 'nuclear', 'energy', 'technology']
__label__Positive ['there', 'article', 'crunchdubai', 'big', 'entrepreneur', 'real', 'estate']
__label__Positive ['france', 'amp', 'uae', 'unveiled', 'ambitious', 'roadmap', 'cooperation', 'plethora', 'area', 'including', 'defen']
__label__Positive ['agree', 'emiratis', 'achieved', 'significant', 'success', 'past', 'decade', 'economically', 'socially', 'uae', 'transformed', 'hub', 'trade', 'tourism', 'innovation', 'driven', 'investment', 'infrastructure', 'technology']
__label__Positive ['india', 'france', 'uae', 'saturday', 'unveiled', 'ambitious', 'roadmap', 'cooperation', 'area', 'defense', 'nuclear', 'energy', 'technology', 'trilateral', 'framework']
__label__Positive ['jouri', 'hill', 'latest', 'phase', 'hugely', 'popular', 'jumeirah', 'golf', 'estate', 'mega', 'community', 'gated', 'community', 'hour', 'security', 'home', 'direct', 'access', 'greenery', 'technology', 'home']
__label__Neutral ['collaboration', 'amp', 'transition', 'key', 'element', 'commercial', 'relationship', 'yes']
__label__Positive ['cyberthreat', 'landscape', 'sophisticated', 'year', 'pas', 'microsoft', 'rest', 'issue']
__label__Positive ['the', 'cyberthreat', 'landscape', 'sophisticated', 'year', 'pas', 'microsoft', 'rest', 'issue']
__label__Positive ['excited', 'announce', 'partnership', 'zscaler', 'market', 'pioneer', 'digital', 'transformation', 'authorized', 'resel']
__label__Positive ['we', 'excited', 'announce', 'partnership', 'zscaler', 'market', 'pioneer', 'digital', 'transformation', 'authorized', 'reseller', 'uae', 'region']
__label__Neutral ['stay', 'date', 'tera']
__label__Positive ['good', 'morning', 'becky', 'team', 'chance', 'look']
__label__Neutral ['gather', 'office', 'remember']
__label__Positive ['kick', 'starting', 'futureverse', 'conference', 'dubai', 'intriguing', 'conference', 'future']
__label__Positive ['hbar', 'dla', 'piper', 'council', 'toko', 'built', 'new', 'license', 'amp', 'office', 'dubai', 'smart', 'city', 'sm']
__label__Neutral ['doesn', 'want', 'embrace', 'crypto', 'innovation', 'uae', 'will', 'hello', 'dubai']
__label__Positive ['good', 'morning', 'becky', 'team', 'chance', 'look', 'government', 'south', 'sudan', 'chooses', 'amp', 'create', 'host', 'country', 'saitachain', 'blockchain', 'amp', 'use', 'saitapay', 'primary', 'payment', 'system']
__label__Positive ['hello', 'dubai', 'time', 'uae', 'start', 'day', 'happily', 'arrived', 'looking', 'technology', 'tomorrow', 'improve', 'real', 'world', 'exciting', 'time', 'ahead']
__label__Positive ['asking', 'vl', 'so', 'directly', 'instead', 'implying', 'fud', 'twitter', 'vl', 'fully', 'licensed', 'uae', 'verge', 'public', 'blockchain', 'use']
__label__Positive ['the', 'use', 'realtime', 'technology', 'uae', 'ministry', 'economy', 'impressive', 'daily', 'implementation', 'technology', 'commendablesee', 'video', 'insight']
__label__Positive ['vara', 'issue', 'new', 'guideline', 'virtual', 'asset', 'service', 'provider', 'dubai']
__label__Neutral ['landvault', 'largest', 'metaverse', 'creator', 'expanding', 'presence', 'mena', 'region']
__label__Positive ['ready', 'dubai', 'uaedubai', 'blockchain', 'network', 'event', 'passionate', 'people', 'attend', 'thurs', 'feb', 'th', 'pmpm']
__label__Neutral ['uae', 'government', 'launch', 'blockchain', 'strategy', 'uae', 'government', 'announced', 'launch', 'blockchain', 'strategy', 'aimed', 'saving', 'work', 'hour', 'expenditure', 'document', 'circulation', 'improving', 'quality', 'life', 'country']
__label__Positive ['major', 'uae', 'bank', 'implement', 'blockchain', 'tech', 'prevent', 'check', 'fraud', 'national', 'bank', 'dubai', 'rolling', 'chain', 'successful', 'testing', 'prevent', 'checkrelated', 'fraud']
__label__Neutral ['british', 'columbia', 'biocarbon', 'amp', 'announce', 'm', 'cad', 'purchase', 'biochar', 'carbon', 'removal', 'credit']
__label__Positive ['sidus', 'hero', 'locomotive', 'uae', 'metaverse', 'hub', 'sidus', 'hero', 'won', 'coveted', 'golden', 'excellence', 'metaverse', 'gaming', 'company', 'award', 'contribution', 'helping', 'uae', 'economy', 'organization', 'related', 'crypto', 'blockchain']
__label__Neutral ['cafe', 'brandexclusive', 'branch', 'blockchain', 'cafe', 'brand']
__label__Neutral ['platform', 'add', 'th', 'bank', 'platform']
__label__Negative ['although', 'uae', 'tends', 'dominate', 'headline', 'menabased', 'country', 'making', 'headway', 'blockchain', 'adoption']
__label__Neutral ['uab', 'official', 'member', 'fintech', 'blockchain', 'platform', 'utc', 'collaborative', 'project', 'banking', 'industry', 'cocreated', 'eamp', 'enterprise']
__label__Positive ['provides', 'leading', 'update', 'crypto', 'blockchain', 'industry', 'free', 'explore', 'opportunity', 'securelyampsmartlyreserv']
__label__Neutral ['elite', 'powerhouse', 'digital', 'payment', 'tokenizing', 'world', 'wtk', 'xrp', 'qnt', 'xdc', 'bnb', 'eth', 'algo']
__label__Negative ['starting', 'minute', 'now', 'world', 'premiere', 'platform', 'museum', 'future', 'dubai', 'ready']
__label__Neutral ['uab', 'join', 'eampenterprise', 'fintech', 'blockchain', 'platform', 'uae', 'trade', 'connect']
__label__Neutral ['twas', 'honor', 'speak', 'conf', 'uae', 'spoke', 'about']
__label__Neutral ['according', 'oasis', 'cryptorelated', 'business', 'uae']
__label__Positive ['persian', 'sea', 'shipping', 'line', 'highly', 'acclaimed', 'service', 'offer', 'uae', 'internationally', 'persian', 'sea', 'shipping', 'line', 'reputation', 'persian', 'sea', 'shipping', 'line', 'valuable', 'aspssl']
__label__Neutral ['money', 'pc', 'proof', 'it']
__label__Negative ['believe', 'big', 'coming', 'amp', 'form', 'partnership', 'couldnt', 'token', 'invested', 'amp', 'hope', 'moon']
__label__Negative ['pssl', 'token', 'used', 'shipping', 'activity', 'uae', 'world', 'wide', 'container', 'transportation', 'globally', 'pssl', 'token', 'connect', 'global', 'seafarer', 'shipping', 'line', 'pssl']
__label__Positive ['the', 'year', 'driven', 'new', 'technology', 'blockchain', 'young', 'entrepreneur', 'event', 'celebratory', 'year', 'anniversary', 'diplomatic', 'relation', 'switzerland', 'uae', 'worldclass', 'sp']
__label__Neutral ['mena', 'open', 'global', 'expansion', 'mena', 'region', 'medium', 'announcement', 'wemix']
__label__Neutral ['youth', 'summit', 'set', 'place', 'march', 'dubai']
__label__Neutral ['my', 'walletknow', 'it']
__label__Positive ['uae', 'follow', 'featurehis', 'blockchain', 'build', 'zero', 'icodao', 'project', 'posand', 'webd', 'soon', 'cold', 'staking', 'k', 'tps', 'mil', 'tpshis', 'wallet', 'easy', 'use', 'devicejust', 'sec', 'start']
__label__Neutral ['the', 'youth', 'summit', 'set', 'place', 'march', 'dubai']
__label__Neutral ['crastonic', 'hiring', 'web', 'uiux', 'designerjapanuae', 'time', 'now']
__label__Negative ['crypto', 'exchange', 'kraken', 'close', 'operation', 'abu', 'dhabi', 'uae', 'lay', 'majority', 'team', 'focused', 'middle', 'east', 'north', 'africa']
__label__Neutral ['congratulation', 'team', 'bring', 'home']
__label__Neutral ['crypto', 'whale', 'coming', 'dubai']
__label__Negative ['a', 'lot', 'crypto', 'people', 'uae', 'now', 'crypto', 'conference', 'everyday', 'non', 'stop']
__label__Neutral ['it', 'out', 'canadian', 'university', 'dubai']
__label__Neutral ['hosting', 'woman', 'crypto', 'event', 'month', 'february', 'dubai', 'uaewith', 'speaker', 'various', 'b']
__label__Positive ['exciting', 'news', 'dubai', 'leader', 'adopting', 'new', 'technology', 'innovation', 'it', 'great', 'growth', 'crypto', 'industry', 'uae', 'partnership', 'dubai', 'binance', 'likely', 'bring', 'opportunity', 'adoption', 'innovation', 'crypto', 'space']
__label__Neutral ['regulated', 'uae', 'now', 'don', 'collaborate', 'uae', 'bank']
__label__Neutral ['uae']
__label__Positive ['eligible', 'uae', 'resident', 'apply', 'contacted', 'chat', 'support', 'told', 'maybe', 'future', 'able', 'do', 'solution', 'now']
__label__Positive ['hot', 'crypto', 'virtuzone', 'joining', 'number', 'uae', 'company', 'using']
__label__Positive ['proud', 'uaecrypto', 'future']
__label__Neutral ['want', 'u', 'allow', 'binance', 'card', 'uae', 'also']
__label__Positive ['hey', 'hosting', 'tedx', 'event', 'uae', 'wanted', 'check', 'interested', 'come', 'speaker', 'great', 'opportunity', 'community', 'hear', 'talented', 'person', 'talk', 'uploaded', 'official', 'tedx', 'youtube', 'channel', 'lmk', 'interested']
__label__Neutral ['uae', 'home']
__label__Negative ['ceo', 'binance', 'a', 'lot', 'crypto', 'people', 'uae', 'now', 'crypto', 'conference', 'everyday', 'non', 'stopthis', 'region', 'b']
__label__Neutral ['see', 'trending']
__label__Positive ['hey', 'there', 'binance', 'gcc', 'card', 'available', 'binance', 'user', 'residing', 'uae', 'information', 'pea', 'check', 'page']
__label__Neutral ['introduces', 'blockchain']
__label__Positive ['register', 'learn', 'more', 'innovates', 'dgov', 'apply', 'solve', 'challenge', 'submitted', 'various', 'government', 'semigovernment', 'entity']
__label__Positive ['participate', 'hackathon', 'join', 'creating', 'smoothest', 'sustainable', 'journey']
__label__Neutral ['join']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withcalculusstatistics']
__label__Positive ['overwhelmed', 'assignment', 'probably', 'need', 'expert', 'help', 'just', 'dm']
__label__Positive ['overwhelmed', 'assignment', 'probably', 'need', 'expert', 'help', 'just', 'dm']
__label__Neutral ['why', 'choose', 'career', 'booster', 'based', 'leading', 'medical', 'coding', 'institutewe', 'giving', 'training', 'world', 'online', 'mode', 'affordable', 'pricesyou', 'contact']
__label__Neutral ['looking', 'handle']
__label__Neutral ['pay', 'help', 'duehomeworkassignmentsessayexamsonline', 'classeswhatsapp']
__label__Neutral ['pay', 'help', 'duehomeworkassignmentsessayexamsonline', 'classeswhatsapp', 'server']
__label__Neutral ['pay', 'help', 'duehomeworkassignmentsessayexamsonline', 'classeswhatsapp', 'server']
__label__Neutral ['pay', 'help', 'duehomeworkassignmentsessayexamsonline', 'classeswhatsapp', 'server']
__label__Neutral ['pay', 'help', 'duehomeworkassignmentsessayexamsonline', 'classeswhatsapp', 'server']
__label__Neutral ['pay', 'help', 'duehomeworkassignmentsessayexamsonline', 'classeswhatsapp', 'server']
__label__Neutral ['looking', 'handle']
__label__Positive ['overwhelmed', 'assignment', 'probably', 'need', 'expert', 'help']
__label__Neutral ['hire']
__label__Neutral ['looking', 'handle']
__label__Neutral ['looking', 'handle']
__label__Positive ['the', 'idf', 'inter', 'school', 'competition', 'cbse', 'school', 'included', 'school', 'emirate', 'uae', 'plus', 'student', 'school', 'participated', 'event']
__label__Neutral ['online', 'homework', 'assignment', 'exam', 'expert', 'help', 'accounting', 'finance', 'economics', 'physic', 'chemistry', 'biology', 'lab']
__label__Neutral ['online', 'homework', 'assignment', 'exam', 'expert', 'help', 'accounting', 'finance', 'economicsphysics', 'chemistry', 'biology', 'lab']
__label__Neutral ['get', 'online', 'homework', 'assignment', 'exam', 'expert', 'help', 'accounting', 'finance', 'economicsphysics', 'chemistry', 'biology', 'lab']
__label__Positive ['high', 'quality', 'timely', 'work']
__label__Neutral ['habitat', 'school', 'organized', 'international', 'digital', 'fest', 'idf', 'inter', 'school', 'competition', 'cbse', 'school', 'f']
__label__Positive ['lol', 'cant', 'uae', 'dont', 'self', 'driving', 'source', 'code', 'tesla', 'coding', 'surely', 'strength']
__label__Positive ['when', 'good', 'productsservices', 'customer', 'brand', 'ambassador', 'love', 'mode', 'payment', 'transfer', 'soon', 'black', 'white', 'code', 'dominate', 'mode', 'payment', 'nigeria']
__label__Positive ['starting', 'realize', 'really', 'appropriate', 'dress', 'clothes', 'trip', 'uae', 'know', 'theyre', 'strict', 'dress', 'code', 'anymore', 'dont', 'want', 'stand', 'finally', 'bring', 'numerous', 'flowy', 'slack', 'tho']
__label__Positive ['just', 'landed', 'look', 'forward', 'meeting', 'key', 'government', 'business', 'leader', 'explore', 'innovative', 'way', 'invest', 'economy', 'collectively', 'shape', 'equitable', 'sustainable', 'future']
__label__Positive ['excellent', 'initiative', 'central', 'bank', 'uae', 'enable', 'cement', 'pion']
__label__Positive ['occasion', 'innovation', 'month', 'mbrsgs', 'prominent', 'professor', 'expert', 'discus', 'innovation', 'role', 'devel']
__label__Negative ['this', 'time', 'let', 'just', 'meetbut', 'opportunity', 'help', 'succeed', 'togetherthis', 'dubailets', 'grow', 'togetherdate', 'st', 'nd', 'march', 'booth', 'no', 'd', 'venue', 'dubai', 'world', 'trade', 'center', 'uae']
__label__Positive ['president', 'elsisis', 'participation', 'world', 'government', 'summit', 'testament', 'commitment', 'collaborating', 'global', 'leader', 'finding', 'solution', 'world', 'pressing', 'challenge']
__label__Positive ['recognise', 'potential', 'impact', 'developing', 'innovative', 'solution', 'product', 'process', 'good', 'planet', 'support', 'uae', 'more']
__label__Positive ['smartptt', 'enterprise', 'comprehensive', 'software', 'public', 'safety', 'emergency', 'management', 'organization']
__label__Neutral ['okx', 'granted', 'provisional', 'virtual', 'asset', 'va', 'license', 'provide', 'service', 'qualified', 'investor', 'uae', 'broad']
__label__Positive ['on', 'occasion', 'innovation', 'month', 'mbrsgs', 'prominent', 'professor', 'expert', 'discus', 'innovation', 'role', 'developing', 'leader', 'establishing', 'implementing', 'successful', 'policy', 'uaes', 'future', 'general']
__label__Positive ['icymi', 'aggrotech', 'startup', 'veggitech', 'produce', 'yearround', 'crop', 'using', 'smart', 'sustainable', 'farming', 'technology', 'middle', 'uaes', 'sharjah', 'desert']
__label__Neutral ['uae', 'focused', 'sustainability', 'addressing', 'climate', 'change', 'linked', 'nuclear', 'indus']
__label__Neutral ['invitation', 'sheikh', 'mohamed', 'bin', 'zayed', 'al', 'nahyan', 'president', 'uae', 'amp', 'ruler', 'abu', 'dhabi', 'attended']
__label__Neutral ['uae', 'focused', 'sustainability', 'addressing', 'climate', 'change', 'linked', 'nuclear', 'industry']
__label__Positive ['the', 'uaes', 'national', 'framework', 'development', 'crucial', 'step', 'preserving', 'environment', 'supporting', 'economic', 'growth', 'prioritizing', 'pillar', 'nature', 'uae', 'setting', 'positive', 'example', 'world']
__label__Positive ['tcoshrevthe', 'code', 'sustainable', 'humanitypreludethis', 'code', 'translated', 'using', 'papago', 'app', 'translator', 'google', 'app', 'translator', 'original', 'set', 'korean', 'language', 'true', 'modern', 'future', 'generation', 'human', 'civilization']
__label__Positive ['youth', 'new', 'geospatial', 'story', 'map', 'reach', 'sustainable', 'development', 'goal', 'way', 'to']
__label__Neutral ['startup', 'crop', 'emirate', 'flight', 'catering', 'planting', 'seed', 'sustainable', 'production', 'uae', 'world', 'largest', 'vertical', 'farm']
__label__Positive ['icymi', 'sharjahbased', 'aggrotech', 'startup', 'veggitech', 'produce', 'crop', 'year', 'round', 'using', 'smart', 'sustainable', 'farming', 'technol']
__label__Negative ['sorry', 'uae', 'need', 'nuclear', 'reactor', 'produce', 'million', 'barrel', 'oil', 'day', 'energy', 'independent', 'wanted', 'sustainable', 'alternative', 'solar', 'obvious', 'choice']
__label__Positive ['several', 'regional', 'country', 'including', 'uae', 'introduced', 'tax', 'past', 'year', 'order', 'create', 'sustainable', 'source', 'income', 'economy']
__label__Positive ['several', 'regional', 'country', 'including', 'uae', 'introduced', 'tax', 'past', 'year', 'order', 'create', 'sustainable', 'source', 'income', 'economy']
__label__Positive ['ambassador', 'he', 'nahida', 'sobhan', 'bangladesh', 'embassy', 'jordan', 'proudly', 'congratulates', 'dhaka', 'residential', 'model', 'college', 'winn']
__label__Neutral ['pre', 'world', 'government', 'summit', 'forum', 'anticipate', 'comprehensive', 'sustainability']
__label__Positive ['explore', 'best', 'sustainable', 'innovative', 'project', 'uae', 'innovates', 'exhibition', 'global', 'village', 'join', 'february']
__label__Positive ['prepare', 'presentation', 'sdgs', 'goal', 'present', 'min', 'chance', 'win', 'valuable', 'prize', 'participate', 'now']
__label__Neutral ['partnership', 'hope', 'foster', 'collaboration', 'various', 'initiative', 'benefit', 'contrib']
__label__Neutral ['goodness', 'ongoing', 'sustainable', 'emirati', 'giving']
__label__Neutral ['bridge', 'goodness', 'ongoing', 'sustainable', 'emirati', 'giving']
__label__Negative ['copper', 'play', 'vital', 'role', 'everyday', 'life', 'powering', 'home', 'building', 'fueling', 'electric', 'vehicle', 'rene']
__label__Neutral ['ha', 'visionary', 'leadership', 'facilitated', 'delivery']
__label__Positive ['exciting', 'crucial', 'year', 'especially', 'closer', 'he', 'mariam', 'bint', 'm']
__label__Positive ['the', 'tripartite', 'cooperation', 'initiative', 'energy', 'climate', 'change', 'promising', 'step', 'sustainable', 'future', 'it', 'heartening', 'country', 'come', 'promote', 'positive', 'change', 'tackle', 'global', 'challenge']
__label__Neutral ['aluminium', 'air', 'battery', 'solution', 'sustainability', 'low', 'cost', 'elon', 'musk', 'validate', 'uae', 'visit']
__label__Neutral []
__label__Positive ['i', 'proud', 'effort', 'uae', 'market', 'recognized', 'national', 'level', 'uae', 'cemex', 'uae', 'concrete', 'mix', 'sold', 'vertua', 'lower', 'carbon', 'concrete', 'saving', 'approximately', 'million', 'kg', 'co', 'far']
__label__Positive ['in', 'line', 'future', 'action', 'program', 'proud', 'active', 'contributor', 'uae', 'vision']
__label__Neutral ['goodness', 'ongoing', 'sustainable', 'emirati', 'giving']
__label__Positive ['new', 'dawn', 'government', 'secured', 'billion', 'investment', 'uae', 'renewable', 'energy', 'million', 's']
__label__Positive ['new', 'raes', 'youtube', 'channel', 'uae', 'branch', 'lecture', 'the', 'path', 'sustainable', 'aviation', 'andrew', 'armitstead', 'director', 'marketing', 'airbus', 'africa', 'middle', 'east']
__label__Positive ['use', 'innovation', 'achieve', 'sustainable', 'development', 'goalswatch', 'discussion', 'youtube', 'out']
__label__Positive ['with', 'common', 'priority', 'amp', 'amp', 'stand', 'shouldertoshoulder', 'making', 'world', 'safer', 'amp', 'sustainable', 'place', 'proud', 'nation', 'leading', 'way', 'shaping', 'greener', 'future']
__label__Positive ['pulse', 'known', 'legume', 'beneficial', 'human', 'body', 'play', 'vital', 'role', 'sustainable', 'food', 'productionwhy', 'include', 'legume', 'diet', 'check', 'post', 'learn', 'more']
__label__Positive ['a', 'highlevel', 'delegation', 'visited', 'uae', 'aim', 'strengthening', 'existing', 'bilateral', 'trade', 'relation', 'discussing', 'development', 'new', 'area', 'cooperation', 'technology', 'sustainability', 'sector', 'development', 'smart', 'city']
__label__Neutral ['join', 'gulf', 'sustainability', 'leader', 'ashraf', 'abdelkhalek', 'net', 'zero', 'gcc', 'conference', 'panel', 'leader', 'panel', 'esg', 'climate', 'change', 'discover', 'uaes', 'journey', 'sustainable', 'future', 'beyond', 'register', 'here']
__label__Positive ['congrats', 'opening', 'dedicated', 'marinelife', 'conservation', 'facility', 'type', 'region', 'usher', 'uae', 'year', 'sustainability', 'applaud', 'commitment', 'protecting', 'marine', 'animal', 'ecosystem']
__label__Neutral ['join', 'gulf', 'sustainability', 'leader', 'ashraf', 'abdelkhalek', 'net', 'zero', 'gcc', 'conference', 'panel', 'leader', 'panel', 'esg', 'climate', 'change', 'discover', 'uaes', 'journey', 'sustainable', 'future', 'beyondregister', 'here']
__label__Negative ['a', 'closer', 'look', 'turkeysyria', 'earthquake', 'deadly', 'happens', 'next']
__label__Positive ['aligned', 'uae', 'year', 'sustainability', 'proud', 'bring', 'latest', 'series', 'green', 'creatives', 'profiling', 'inspiring', 'homegrown', 'initiative', 'driven', 'artist', 'amp', 'designer', 'making', 'difference', 'innovative', 'sustainable', 'approach']
__label__Positive ['the', 'investment', 'forum', 'sif', 'hosted', 'panel', 'discussion', 'titled', 'redefining', 'economy', 'making', 'significant', 'stride', 'better', 'future', 'engage', 'thoughtprovoking', 'debate', 'step', 'required', 'create', 'equitable', 'future']
__label__Neutral ['we', 'overjoyed', 'dmu', 'dubai', 'attained', 'academic', 'membership', 'emirate', 'environmental', 'group']
__label__Positive ['tap', 'link', 'register', 'free', 'visitor', 'pas', 'now']
__label__Positive ['exciting', 'news', 'trilateral', 'cooperation', 'initiative', 'india', 'france', 'uae', 'powerful', 'step', 'forward', 'fight', 'climate', 'change', 'development', 'sustainable', 'energy', 'solution']
__label__Neutral ['we', 'spe', 'symposium', 'nonmetallics', 'disruptive', 'solution', 'sustainable', 'costeffective', 'assetsst', 'amp', 'nd', 'feb', 'conrad', 'abu', 'dhabi', 'etihad', 'tower', 'abu', 'dhabi', 'uae']
__label__Neutral ['vice', 'chairman', 'dubai', 'academic', 'health', 'corporation', 'formally', 'kicked', 'medlab', 'middle', 'east', 'exhibition', 'congress', 'happening', 'dubai']
__label__Positive ['scientific', 'collaboration', 'unique', 'relation', 'project', 'like', 'graphene']
__label__Neutral ['swami', 'brahmaviharidas', 'contribution', 'summit', 'testament', 'bap', 'unwavering', 'support', 'uae', 'commitment', 'human', 'fraternity', 'sustainable', 'planet']
__label__Negative ['uae', 'farmer', 'impossible', 'use', 'tech', 'grow', 'sustainable', 'crop', 'desert']
__label__Neutral ['the', 'vice', 'president', 'republic', 'maldives', 'praised', 'uaes', 'project', 'field', 'environmental', 'sustainability', 'including', 'role', 'local', 'company', 'led', 'yousuf', 'bin', 'saeed', 'lootah', 'group', 'focus', 'sustainability', 'circular', 'economy', 'environment']
__label__Positive ['the', 'future', 'bright', 'prioritize', 'need', 'global', 'south', 'work', 'sustainable', 'energy', 'transition', 'dr', 'sultan', 'al', 'jaber']
__label__Neutral ['talk', 'series', 'organised', 'concluded', 'today', 'leader', 'government', 'business', 'an']
__label__Negative ['spectator', 'stadiumis', 'sort', 'event', 'sustainable']
__label__Positive ['kind', 'initiative', 'uae', 'hosting', 'leader', 'sustainability', 'shifting', 'economy', 'away', 'oil', 'worldwide', 'effort', 'need', 'crossborder', 'cooperation']
__label__Positive ['scientific', 'collaboration', 'unique', 'relation', 'project', 'like', 'graphene', 'research', 'partnership', 'look', 'cuttingedge', 'way', 'apply', 'material', 'increase', 'global']
__label__Negative ['the', 'company', 'set', 'invest', 'food', 'focusing', 'strategic', 'food', 'sustainability', 'project', 'agriculture', 'aquaculture', 'food', 'processing', 'production', 'logistics', 'green', 'technology', 'healthcare']
__label__Negative ['yes', 'agree', 'cz', 'utd', 'sustainable', 'project', 'amp', 'don', 'need', 'inflate', 'earnings', 'uae', 'ownership', 'cause', 'problem', 'future']
__label__Neutral ['i', 'admire', 'uae', 'dedicated', 'year', 'sustainability']
__label__Positive ['virtual', 'asset', 'regulatory', 'authority', 'issued', 'virtual', 'asset', 'related', 'activity', 'regulation', 'establish', 'comprehensive', 'virtual', 'asset', 'va', 'framework', 'based', 'economic', 'sustainability', 'crossborder', 'financial', 'security', 'principle']
__label__Positive ['sustainable', 'change', 'requires', 'persistent', 'communication', 'communitybuilding', 'applaud', 'dr', 'sultan', 'al', 'jaber', 'presidentdesignate', 'chairman', 'continued', 'commitment', 'better', 'future', 'all', 'look', 'forward', 'inclusive', 'cop']
__label__Neutral ['the', 'nation', 'play', 'integral', 'role', 'determining', 'future', 'amp', 'planet', 'hh', 'sheikha', 'shamma', 'bint', 'sultan', 'bin', 'khalifa', 'al', 'nahyan']
__label__Positive ['and', 'excited', 'witness', 'year', 'sustainability']
__label__Positive ['end', 'visit', 'delegation', 'praised', 'extraordinary', 'effort', 'uae', 'supporting', 'continuous', 'endea']
__label__Negative ['dont', 'let', 'today', 'waste', 'lead', 'tomorrow', 'shortage', 'let', 'save', 'environmentfollow']
__label__Positive ['it', 'interesting', 'develops', 'paying', 'russian', 'oil', 'dirham', 'sustainable', 'indian', 'refiner', 'pay', 'trader', 'dirham', 'russian', 'oil']
__label__Negative ['long', 'established', 'history', 'field', 'began', 'initiative']
__label__Positive ['dr', 'sultan', 'al', 'jaber', 'highlight', 'uae', 'commitment', 'clean', 'energy', 'transition', 'sustainable', 'development']
__label__Positive ['world', 'government', 'summit', 'better', 'future', 'humanity']
__label__Positive ['a', 'circular', 'economy', 'speed', 'sustainability', 'business', 'advancement', 'honored', 'participate', 'meed', 'mashreq', 'business', 'leader', 'forum', 'discussion', 'esg', 'impact', 'modern', 'supply', 'chain', 'tackling', 'detail', 'circular', 'economy', 'uae']
__label__Positive ['good']
__label__Positive ['recently', 'participated', 'sustainable', 'finance', 'working', 'group', 'meeting', 'finance', 'track', 'held', 'time', 'indian', 'presidency']
__label__Positive ['uae', 'participates', 'sustainable', 'finance', 'working', 'group', 'meeting', 'g', 'finance', 'track']
__label__Positive ['hr', 'people', 'sqkm', 'clean', 'uae', 'make', 'mark', 'eeg', 'special', 'edition', 'nationwide', 'campaign', 'usher', 'sustainability']
__label__Positive ['uae', 'participates', 'sustainable', 'finance', 'working', 'group', 'meeting', 'g', 'finance', 'track']
__label__Positive ['uae', 'committed', 'achieving', 'sustainability', 'preserving', 'natural', 'resource', 'future', 'generation', 'hamdan', 'bin', 'zayed']
__label__Positive ['uae', 'participates', 'sustainable', 'finance', 'working', 'group', 'meeting', 'g', 'finance', 'track', 'zawya']
__label__Negative ['long', 'established', 'history', 'field', 'began', 'initiative', 'launched', 'late', 'sheikh', 'zayed', 'bin', 'sultan']
__label__Neutral ['a', 'uae', 'prepares', 'host', 'icba', 'committed', 'continuing', 'support', 'country', 'national', 'international', 'effort', 'initiative', 'sustainable', 'development', 'science', 'innovation']
__label__Positive ['every', 'year', 'february', 'celebrated', 'uae', 'day', 'testament', 'nation', 'commitment', 'sustainable', 'development', 'environmental', 'conservationfor', 'decade', 'worked', 'local', 'partner', 'develop', 'test']
__label__Positive ['speaking', 'special', 'edition', 'minister', 'presidentdesignate', 'chairman', 'reaffirmed', 'commitment', 'clean', 'energy', 'transition', 'sustainable', 'development']
__label__Positive ['participates', 'sustainable', 'finance', 'working', 'group', 'meeting', 'finance', 'track', 'htt']
__label__Positive ['hat', 'uae', 'commitment', 'sustainable', 'future', 'country', 'impressive', 'environment', 'policy', 'shining', 'example', 'world', 'follow']
__label__Positive ['on', 'national', 'environment', 'day', 'hamdan', 'bin', 'zayed', 'emphasised', 'uae', 'commitment', 'achieving', 'sustainability', 'protecting', 'preserving', 'natural', 'resource', 'future', 'generation']
__label__Neutral ['i', 'admire', 'turning', 'point', 'journey', 'sustainability']
__label__Positive ['uae', 'participated', 'sustainable', 'finance', 'working', 'group', 'meeting', 'g', 'finance', 'track']
__label__Positive ['uae', 'participates', 'sustainable', 'finance', 'working', 'group', 'meeting', 'g', 'finance', 'track']
__label__Positive ['setting', 'great', 'example', 'world', 'follow', 'initiative', 'combating', 'climate', 'change', 'promoting', 'energy', 'praiseworthy', 'rightful', 'host']
__label__Positive ['effort', 'promoting', 'sustainability', 'clean', 'energy', 'commendable']
__label__Positive ['cop', 'cop', 'achieved', 'action', 'set', 'course', 'case', 'ground', 'action', 'possibly', 'cop', 'cop', 'set', 'high', 'bar', 'financing', 'climate', 'mitigation', 'structured', 'opportunity', 'make', 'moneythats', 'sustainable', 'thats', 'cop']
__label__Neutral ['on', 'mark', 'continued', 'impact', 'rapidly', 'decarbonizing', 'uae', 'power', 'sector', 'contributing', 'sustainable', 'future', 'nation']
__label__Positive ['watch', 'agriculture', 'meet', 'technology', 'farm', 'middle', 'uae', 'desert', 'operated', 'sharjahbased', 'aggrotech', 'startup', 'veggitech', 'farm', 'produce', 'yearround', 'crop', 'using', 'combination', 'traditional', 'smart', 'farming', 'method']
__label__Neutral ['part', 'digital', 'transformation', 'training', 'session', 'conducted', 'mr', 'hossam', 'manager', 'help', 'aw', 'holding', 'intl', 'employee', 'understand', 'operation', 'cloud', 'connection', 'marketplace', 'uae', 'aw', 'ksa', 'aw', 'oman', 'aw', 'egypt', 'using']
__label__Neutral ['shaping', 'global', 'chairman']
__label__Neutral ['watch', 'agriculture', 'meet', 'technology', 'farm', 'middle', 'uae', 'desert', 'operated', 'sharjahbased', 'aggrotech', 'startup']
__label__Neutral ['track', 'breast', 'cancer', 'technology', 'pleasure', 'inform', 'th', 'world', 'breast', 'pathology', 'bre']
__label__Positive ['oped', 'amira', 'sajwani', 'highlight', 'uae', 'adoption', 'landscape', 'opportunity', 'track', 'read', 'article']
__label__Neutral ['austethcan', 'used', 'a', 'science', 'technology', 'americanafrican', 'abbottabad', 'pakistan', 'ahsanullah', 'bangladesh', 'ajman', 'uae', 'anhui', 'china', 'surname', 'village', 'england']
__label__Positive ['he', 'sarah', 'al', 'amiri', 'minister', 'state', 'public', 'education', 'advanced', 'technology', 'importance', 'data', 'inclusivity', 'world', 'government', 'summit']
__label__Neutral ['the', 'accused', 'bought', 'electronics', 'technology', 'client', 'uae', 'shell', 'corporation']
__label__Neutral ['jewellery', 'gem', 'amp', 'technology', 'open', 'door', 'world']
__label__Neutral ['assistant', 'manager', 'technology', 'strategic', 'partnership', 'al', 'futtaim', 'group']
__label__Positive ['storytelling', 'meet', 'technology', 'whitney', 'johnson', 'captivating', 'talk', 'xposure']
__label__Negative ['marketplace', 'aw', 'uae', 'aw', 'ksa', 'aw', 'oman', 'aw', 'egypt', 'aw', 'cross', 'border', 'center', 'virtual', 'training', 'session', 'digitalization', 'operation', 'using', 'includes', 'cloud', 'connection', 'marketplace']
__label__Positive ['we', 'proud', 'partnered', 'senegalese', 'fishery', 'create', 'positive', 'environmental', 'social', 'impact', 'technology', 'supporting', 'traceability', 'senegalese', 'product', 'global', 'market']
__label__Neutral ['get', 'online', 'chemical', 'engineering', 'homework', 'assignment', 'exam', 'help', 'withchemical', 'process', 'technologychemical', 'thermodynamicsfluid', 'mechanicsheat', 'transferlab', 'report', 'chmass', 'transferpetroleumreaction', 'engineeringtransport', 'phenomenon']
__label__Positive ['heartiest', 'congratulation', 'best', 'wish', 'working', 'uae', 'fascinated', 'visionary', 'planning', 'hh', 'ruler', 'sharjah', 'new', 'generation', 'helm', 'education', 'technology', 'inshahallah', 'sharjah', 'placed', 'greatness', 'bless']
__label__Negative ['it', 'artificial', 'intelligence', 'talk', 'search', 'social', 'medium', 'site']
__label__Negative ['calling', 'teacher', 'uae', 'holding', 'free', 'webinar', 'chatgpt', 'artificial', 'intelligence', 'classroom', 'opportunity', 'threat', 'month', 'register', 'join', 'friday', 'pm', 'pm', 'th', 'february']
__label__Negative ['the', 'department', 'communication', 'organized', 'workshop', 'role', 'artificial', 'intelligence', 'advertising', 'student', 'ma', 'communication', 'th', 'jan', 'resource', 'person', 'session', 'dr', 'bassant', 'eyada', 'dean', 'college', 'medium', 'city', 'university', 'ajman', 'uae']
__label__Negative ['an', 'intrusion', 'detection', 'mechanism', 'manet', 'based', 'deep', 'learning', 'artificial', 'neural', 'network', 'anns']
__label__Negative ['with', 'wagner', 'basically', 'thug', 'investigator', 'hire', 'high', 'security', 'clearance', 'africa', 'rwanda', 'afghanistan', 'arm', 'runner', 'flexible', 'ethic', 'work', 'based', 'amp', 'uae', 'subject', 'multiple', 'investigation', 'christian', 'amp', 'libertarian', 'friend', 'homosexual']
__label__Positive ['trade', 'minister', 'mary', 'ng', 'broke', 'ethic', 'rule', 'contract', 'friendth', 'time', 'liberal', 'ethic', 'violationargentina', 'mexico', 'nigeria', 'qatar', 'uae', 'australia', 'usa', 'supply', 'liquified', 'natural', 'gas', 'europe', 'world', 'trudeau', 'say', 'no']
__label__Positive ['after', 'expected', 'wish', 'amp', 'central', 'govt', 'lead', 'amp', 'make', 'group', 'advisor', 'look', 'ethical', 'security', 'fairness', 'amp', 'agility', 'dimension', 'check', 'regularly', 'ai', 'thx']
__label__Positive ['join', 'mohamed', 'elkhatib', 'sr', 'operation', 'manager', 'thinkprop', 'property', 'show', 'feb', 'pm', 'learn', 'governance', 'ethical', 'standard', 'elevate', 'real', 'estate', 'sector', 'uaeregister']
__label__Neutral ['the', 'use', 'helicopter', 'money', 'resort', 'popularized', 'fed', 'chair', 'ben', 'bernanke', 'misread', 'covid', 'pandemic', 'country', 'like', 'uae', 'avoided', 'inflation', 'spike']
__label__Negative ['clueless', 'people', 'seriously', 'selling', 'euro', 'pound', 'dollar', 'despite', 'fact', 'usa', 'b']
__label__Neutral ['shareslife', 'dubai', 'uae', 'inflation', 'expense', 'recession', 'job', 'purchasing', 'powervideo']
__label__Neutral ['oil']
__label__Neutral ['inflation', 'control', 'operation', 'bank', 'dubai', 'uae']
__label__Negative ['ask', 'help', 'uae', 'lot', 'million', 'spent', 'recently', 'beyonce', 'show', 'western', 'world', 'reeling', 'inflation', 'y', 'prayer']
__label__Positive ['country', 'buy', 'dollar', 'reserve', 'currency', 'bear', 'inflation', 'weightright', 'now', 'country', 'joining', 'brics', 'bloc', 'arabia']
__label__Positive ['do', 'homework', 'committing', 'latest', 'blog', 'tip', 'trick', 'property', 'diligence']
__label__Neutral ['refusal', 'highness', 'sheikh', 'mohamad', 'bin', 'zayed', 'al', 'nahyan', 'showbaz', 'islamabad', 'coas', 'gen', 'be']
__label__Positive ['robot', 'receive', 'citizenship', 'sophia', 'making', 'wave', 'world', 'technology', 'beyond']
__label__Positive ['morning', 'met', 'organised', 'pleasure', 'speak', 'citizen', 'r']
__label__Positive ['this', 'morning', 'met', 'organised', 'pleasure', 'speak', 'citizen', 'robot', 'shes', 'gorgeous']
__label__Neutral ['the', 'dubai', 'electricity', 'water', 'authority', 'use', 'microsofts', 'open', 'ai', 'chatbot', 'offer', 'service', 'customer', 'employee']
__label__Positive ['create', 'google', 'calendar', 'event', 'new', 'telegram', 'message', 'template']
__label__Neutral ['add', 'data', 'google', 'sheet', 'received', 'webhook', 'template']
__label__Positive ['create', 'new', 'group', 'day', 'task', 'assign', 'people', 'template']
__label__Positive ['post', 'new', 'r', 'feed', 'item', 'containing', 'specific', 'word', 'facebook', 'page', 'template']
__label__Positive ['post', 'new', 'discord', 'message', 'telegram', 'template']
__label__Neutral ['quote', 'day']
__label__Positive ['admission', 'started', 'demand', 'distance', 'course', 'free', 'career', 'counselling', 'mentorspursue', 'best']
__label__Positive ['find', 'education', 'software', 'uae', 'softwarescircle']
__label__Negative ['we', 'build', 'custom', 'software', 'easytouse', 'dashboard', 'customer', 'relationship', 'management', 'tool', 'mysql', 'tool', 'backend', 'tool']
__label__Positive ['hr', 'chronicle', 'reliable', 'payroll', 'management', 'software', 'gcc', 'regionurl']
__label__Neutral ['only', 'day', 'go', 'virtual', 'ticket', 'now', 'global', 'tech', 'webinar', 'series', 'event', 'export', 'opportunity', 'australian', 'tech', 'company', 'uae', 'saudi', 'arabia', 'qatar', 'here', 'ticket', 'here']
__label__Neutral ['weekly', 'event', 'alert', 'feb', 'mon', 'tech', 'week', 'tue', 'global', 'tech', 'webinar', 'uae', 'saudi', 'arabia', 'amp', 'qatar']
__label__Negative ['a', 'dual', 'usiranian', 'national', 'sentenced', 'jail', 'month', 'federal', 'court', 'brooklyn', 'smuggled', 'banned', 'tech', 'iran', 'dummy', 'company', 'united', 'arab', 'emirate', 'uae']
__label__Negative ['juror', 'cleared', 'elonmusk', 'liability', 'investor', 'loss', 'fraud', 'trial', 'tweet', 'falsely', 'claiming', 'funding', 'place', 'tesla', 'private']
__label__Neutral ['respond', 'ban']
__label__Neutral ['uae', 'central', 'bank', 'announces', 'launch', 'cbdc', 'announce', 'digital', 'asset', 'payment', 'rulebook']
__label__Neutral ['cryptocurrency', 'project', 'launchpad', 'centralized', 'cryptocurrency', 'exchange', 'with']
__label__Neutral ['wtk', 'it', 'time', 'shine', 'finally', 'people', 'seeing', 'coin', 'mass', 'utility', 'coming', 'march', 'start']
__label__Neutral ['blockchain', 'healthcare', 'prediction', 'globe', 'published', 'inblockchain', 'healthcare', 'today']
__label__Positive ['numerous', 'exceptional', 'business', 'nominated', 'renowned', 'aibc', 'startup', 'pitch', 'wi']
__label__Positive ['united', 'arab', 'bank', 'uab', 'joined', 'uae', 'trade', 'connect', 'utc', 'official', 'member', 'fintech', 'blockchain', 'platform', 'eamp', 'enterprise', 'uaes', 'commercialized', 'solution', 'combat', 'fraud']
__label__Neutral ['respond', 'ban']
__label__Neutral ['united', 'bank', 'uab', 'announced', 'official', 'membership', 'trade', 'connect', 'utc', 'utc', 'fintech', 'blockchain', 'platform']
__label__Positive ['united', 'bank', 'uab', 'announced', 'official', 'membership', 'trade', 'connect', 'utc', 'utc', 'fintech', 'blockchain', 'platform', 'eamp', 'enterprise', 'uaes', 'commercialised', 'solution', 'combat', 'fraud', 'trade', 'finance', 'space', 'built', 'technology', 'blockchain']
__label__Neutral ['united', 'bank', 'uab', 'announced', 'official', 'membership', 'trade', 'connect', 'utc', 'utc', 'fintech', 'blockchain', 'platf']
__label__Neutral ['work', 'creating', 'system', 'wallet', 'amp', 'blockchainbased', 'platform', 'various', 'industriesbring', 'innovation', 'world', 'amp']
__label__Positive ['great', 'thread', 'mark', 'think', 'uae', 'advantage', 'blockchain', 'merit', 'esp', 'duabithe', 'uk', 'havent', 'got', 'time', 'explore', 'legislation', 'prepared', 'there', 'rsunak', 'helm', 'optimistic', 'direction', 'uk', 'crypto', 'regulation']
__label__Neutral ['uae', 'definitely', 'place', 'come', 'blockchain', 'development', 'emerging', 'technology', 'it', 'strategic', 'growth', 'development']
__label__Neutral ['dubai', 'blockchain', 'oasis', 'uae', 'public', 'private', 'sector', 'dubai', 'united', 'arab', 'emirate', 'making', 'concerted', 'effort', 'global', 'leader', 'blockchain', 'adoption']
__label__Positive ['kraken', 'close', 'office', 'uae', 'lay', 'employee', 'chainalysis', 'hire', 'mena']
__label__Positive ['uae', 'follow', 'featurehis', 'blockchain', 'build', 'zero', 'icodao', 'project', 'posand', 'webd', 'soon', 'cold', 'staking', 'k', 'tps', 'mil', 'tpshis', 'wallet', 'easy', 'use', 'devicejust', 'sec', 'start']
__label__Neutral ['ja', 'hotel', 'oldest', 'chain', 'uae', 'hotel', 'dubai', 'maldives', 'seychelles', 'just', 'signed', 'pay']
__label__Neutral ['chitown', 'pack', 'ain', 'going', 'back']
__label__Neutral ['ah', 'chicago', 'bull', 'say', 'pic']
__label__Neutral ['crypto', 'project', 'respond', 'privacy', 'coin', 'ban', 'dubai']
__label__Neutral ['xperts', 'studio', 'collab', 'multi', 'crypto', 'event', 'conducting', 'event', 'uae', 'different', 'project', 'participate']
__label__Neutral ['offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'in', 'paper']
__label__Positive ['uae', 'enroute', 'new', 'zealand']
__label__Neutral ['just', 'nft', 'holder']
__label__Neutral ['i', 'think', 'i', 'know', 'youre', 'talking', 'about', 'check', 'timeline']
__label__Neutral ['dictionary', 'word', 'domain', 'sale']
__label__Positive ['mate', 'youtuber', 'promote', 'nfts', 'crypto', 'project', 'channel', 'brings', 'investor', 'day', 'day', 'good', 'community', 'uae', 'russia', 'usa', 'brazil', 'india', 'like', 'promote', 'project', 'channel', 'kindly', 'tell', 'interested', 'dm', 'me']
__label__Negative ['here', 'related', 'movie']
__label__Positive ['the', 'dubai', 'vara', 'issued', 'new', 'set', 'rulebooks', 'crypto', 'company', 'establishing', 'clear', 'regulatory', 'framework', 'type', 'crypto', 'activity']
__label__Positive ['best', 'opportunity', 'project', 'with']
__label__Neutral ['i', 'dubai']
__label__Neutral ['sale', 'bundledubaiseth', 'koreasethjapanseth', 'check', 'bundle', 'opensea']
__label__Positive ['my', 'art', 'sale', 'eth', 'happy', 'fam', 'receive', 'original', 'art', 'blessing']
__label__Neutral ['daman', 'security', 'premier', 'financial', 'service', 'provider', 'uae', 'middle', 'east', 'specializing', 'investment', 'advisory', 'portfolio', 'management', 'wealth', 'management']
__label__Neutral ['mass', 'class']
__label__Neutral ['mass', 'class']
__label__Positive ['process', 'presentation', 'image', 'dm']
__label__Neutral ['clea', 'al', 'fohein', 'dubai', 'tomorrow', 'conference']
__label__Positive ['great', 'opportunity']
__label__Positive ['great', 'project']
__label__Neutral ['karnn', 'update', 'voucher', 'mazi', 'nft']
__label__Positive ['everytime', 'say', 'banking', 'sector', 'resilient', 'amp', 'stablei', 'buy']
__label__Positive ['love', 'crypto', 'nft', 'place', 'uae', 'dubai']
__label__Neutral ['thank']
__label__Positive ['change', 'taxation', 'gazetted', 'official', 'asset', 'detail', 'new', 'tax', 'measuresordinance', 'r', 'billiion', 'fto', 'chief', 'assurance', 'fbr', 'harassment', 'sc', 'c', 'uae', 'information', 'sharing', 'pakistani', 'unified', 'group']
__label__Positive ['ideal', 'solution', 'valuable', 'information', 'menu', 'price', 'review', 'need', 'business']
__label__Positive ['hesitate', 'send', 'inquires', 'emailinfo', 'website', 'information']
__label__Positive ['gxyawpj', 'queue', 'barrier', 'best', 'price', 'amp', 'informationmail', 'info', 'website']
__label__Neutral ['miracle', 'lifemake', 'appointment', 'information', 'visit', 'website']
__label__Neutral ['help', 'supported', 'online', 'degree', 'like', 'economics', 'business', 'management', 'data', 'sciencemathematics', 'biology', 'bsc', 'actuari']
__label__Positive ['getting', 'thorough', 'comprehensive', 'information', 'major', 'environmental', 'disaster', 'uae', 'exotic']
__label__Positive ['now', 'pay', 'eye', 'medical', 'treatment', 'easy', 'installment', 'tabby', 'please', 'hesitate', 'care', 'eye', 'health', 'first', 'need', 'information', 'new', 'payment', 'method', 'hesitate', 'u', 'happy', 'assist']
__label__Positive ['get', 'ready', 'new', 'launchsaadiyat', 'lagoonsstay', 'tuned', 'contact', 'information', 'visit']
__label__Neutral ['uae', 'host', 'th', 'meeting', 'arab', 'committee', 'expert', 'information', 'management']
__label__Positive ['investment', 'property', 'uae', 'uk', 'usa', 'canada', 'europe', 'greece', 'hotel', 'resort', 'investment', 'stock', 'china', 'india', 'trillion', 'euro', 'using', 'predator', 'pegasus', 'year', 'ago', 'sdamakoudis', 'information', 'contact', 'message', 'directly']
__label__Positive ['looking', 'uae', 'business', 'visa', 'information', 'quote']
__label__Positive ['investment', 'property', 'uae', 'uk', 'usa', 'canada', 'europe', 'greece', 'hotel', 'resort', 'country', 'investment', 'stock', 'china', 'india', 'information', 'sdamakoudis', 'message', 'directly', 'regard', 'stergios', 'damakoudis']
__label__Positive ['matter', 'classified', 'information', 'interesting', 'one', 'assume', 'au', 'general', 'training', 'uae']
__label__Neutral ['national', 'health', 'information', 'exchange', 'unify', 'data', 'create', 'longitudinal', 'health', 'record', 'citizen']
__label__Neutral ['ah', 'youll', 'stop', 'farright', 'propagandist', 'thenthe', 'uae', 'strict', 'cyber', 'crime', 'law']
__label__Neutral ['think', 'need', 'home', 'work', 'type', 'allegation', 'information', 'helping', 'hand', 'people', 'yemen', 'say', 'that']
__label__Positive ['do', 'think', 'posting', 'kind', 'information', 'sound', 'good', 'resident', 'renewed', 'companywhat', 'people', 'drop', 'work', 'already', 'fact', 'straight', 'tell', 'government', 'pay', 'fund', 'money']
__label__Neutral ['highlight', 'day', 'going', 'uae', 'stall', 'weaving', 'showing', 'weave', 'exchanging', 'information', 'talli', 'artist', 'w']
__label__Positive ['erp', 'smes', 'ecommerce', 'uae', 'information', 'visit']
__label__Positive ['erp', 'package', 'uae', 'information', 'visit']
__label__Positive ['erp', 'investment', 'uae', 'information', 'visit']
__label__Negative ['little', 'piece', 'information', 'conveniently', 'publicized', 'mr', 'adil', 'raja', 'later', 'coas', 'aircraft', 'took', 'uk', 'o']
__label__Positive ['erp', 'internet', 'uae', 'information', 'visit']
__label__Positive ['security', 'erp', 'uae', 'information', 'visit']
__label__Positive ['erp', 'architecture', 'uae', 'information', 'visit']
__label__Positive ['trading', 'industry', 'erp', 'uae', 'information', 'visit']
__label__Positive ['session', 'information', 'available', 'iba', 'middle', 'east', 'conference', 'law', 'firm', 'amp', 'client', 'working', 'together', 'session', 'happening', 'amp', 'uk', 'market', 'march', 'dubai', 'uaeregister']
__label__Negative ['ok', 'agreed', 'thanks', 'information', 'tell', 'make', 'bogus', 'fir', 'arshad', 'sharif', 'involved', 'expel', 'uae', 'forced', 'kenya', 'killed', 'him']
__label__Positive ['sunset', 'camel', 'trekking', 'experience', 'culture', 'amp', 'historyfor', 'informationdubai', 'travel', 'tourism', 'inquiry', 'b', 'alphamed', 'building', 'near', 'abuhail', 'center', 'abuhail', 'deira', 'dubai', 'uae']
__label__Neutral ['search', 'truthpil', 'adanihon', 'hearing', 'pil', 'seek', 'information', 'regarding', 'ex']
__label__Neutral ['a', 'national', 'health', 'information', 'exchange', 'helping', 'uae', 'unify', 'data']
__label__Neutral ['head', 'information', 'security', 'assurance', 'michael', 'page', 'international', 'uae', 'limited']
__label__Positive ['bulk', 'sm', 'uae', 'sm', 'marketing', 'dubai', 'sm', 'service', 'provider', 'information', 'visit', 'site']
__label__Positive ['we', 'happy', 'announce', 'bayanat', 'participate', 'silver', 'sponsor', 'national', 'service', 'career', 'fair', 'for', 'information', 'bayanat', 'follow', 'instagram']
__label__Positive ['trying', 'information', 'acceptance', 'cesr', 'surgical', 'fellowshipsconsultantequivalence', 'canadanzaustraliauaeother', 'major', 'classic', 'uk', 'attrition', 'destination', 'help']
__label__Negative ['this', 'little', 'piece', 'information', 'conveniently', 'publicized', 'mr', 'adil', 'raja', 'later', 'coas', 'aircraft', 'took', 'uk', 'th', 'february', 'pm', 'pst', 'flew', 'abu', 'dhabi', 'uae', 'landing', 'pm', 'pst', 'posted', 'mr', 'adil', 'raja', 'tweet']
__label__Positive ['engineering', 'consultancy', 'best', 'engineering', 'consultant', 'i']
__label__Positive ['engineering', 'consultancy', 'best', 'engineering', 'consultant', 'information', 'visit', 'site']
__label__Neutral ['shah', 'dubai', 'uae', 'city', 'tour', 'service', 'transport', 'pick', 'dropping', 'airport', 'desert', 'safari', 'service', 'transport', 'dubai', 'uae', 'contact', 'information']
__label__Positive ['explore', 'high', 'quality', 'long', 'lasting', 'amp', 'maintenance', 'free', 'supreme', 'pipe', 'store', 'information', 'contact', 'todayvisit', 'at']
__label__Positive ['extract', 'data', 'related', 'business', 'location', 'industry', 'contact', 'information', 'data', 'scraped', 'using', 'iweb', 'data', 'scraping', 'help', 'optimize', 'business', 'page', 'connection', 'more']
__label__Positive ['palace', 'residence', 'north', 'emaar', 'dubai', 'creek', 'harbourfor', 'information', 'reach', 'info', 'po', 'box', 'dubai', 'uae', 'number']
__label__Positive ['completed', 'project', 'gate', 'barrier', 'access', 'control', 'location', 'dubai', 'marina', 'uaeal', 'sana', 'technical', 'solution', 'llcdubai', 'sharjah', 'ajmanfor', 'informationcall', 'whatsapp', 'sira', 'dubai', 'approvedsharjah', 'police', 'ampajman', 'police', 'approved']
__label__Positive ['highlight', 'day', 'going', 'uae', 'stall', 'weaving', 'showing', 'weave', 'exchanging', 'information', 'talli', 'artist', 'happy', 'finally', 'art', 'real']
__label__Neutral ['qatar', 'uae', 'announce', 'bilateral', 'linkage', 'traffic', 'system', 'enhance', 'joint', 'cooperation', 'policing', 'amp', 'security', 'field', 'integrated', 'gcc', 'project', 'aimed', 'exchanging', 'information', 'unifying', 'procedure', 'amp', 'facilitating', 'service', 'provided']
__label__Positive ['get', 'chance', 'visit', 'dubai', 'uae', 'tafabot', 'how', 'take', 'stepsfor', 'information', 'check', 'blog']
__label__Neutral ['announced', 'inauguration', 'bilateral', 'linkage', 'traffic', 'system', 'linkage', 'traffic', 'system', 'project', 'aimed', 'exchanging', 'information', 'unifying', 'procedure', 'facilitating', 'service', 'provided']
__label__Neutral ['commercial', 'banking', 'service', 'uae', 'personal', 'banking', 'service']
__label__Neutral ['agricultural', 'network', 'kingdom', 'netherlands', 'gcc', 'looking', 'agricultural', 'advisor', 'united']
__label__Positive ['where', 'fine', 'living', 'new', 'point', 'view', 'starting', 'aed', 'millionfor', 'information', 'contact', 'u', 'info']
__label__Positive ['the', 'uae', 'law', 'provide', 'woman', 'granted', 'wage', 'men', 'read', 'workplace']
__label__Positive ['list', 'uaea', 'list', 'interior', 'design', 'company', 'compilation', 'business', 'specialize', 'creating', 'unique', 'functional', 'interior', 'space', 'want', 'know', 'information', 'visit']
__label__Positive ['the', 'agricultural', 'network', 'kingdom', 'netherlands', 'gcc', 'looking', 'agricultural', 'advisor', 'united', 'arab', 'emirate', 'place', 'work', 'consulate', 'general', 'kingdom', 'netherlands', 'dubai', 'information']
__label__Neutral ['copyright', 'registration', 'copyright', 'registration', 'company', 'mor']
__label__Positive ['your', 'event', 'caught', 'attention', 'guest', 'stopping', 'experience', 'plan', 'event', 'dubai', 'centriz', 'corporate', 'servicesfor', 'informationvisit', 'info']
__label__Positive ['learn', 'vat', 'refund', 'construction', 'operation', 'mosque', 'legislation', 'video', 'information', 'visit', 'website']
__label__Positive ['the', 'tax', 'authority', 'united', 'arab', 'emirate', 'shared', 'twice', 'financial', 'information', 'including', 'bank', 'account', 'overseas', 'pakistani', 'federal', 'board', 'revenueread', 'more']
__label__Positive ['our', 'virtual', 'legal', 'roundtable', 'event', 'taking', 'place', 'february', 'includes', 'insight', 'uae', 'federal', 'family', 'business', 'law', 'update', 'saudi', 'arabia', 'new', 'company', 'lawfor', 'information', 'registration', 'contact', 'rsvp']
__label__Negative ['swamy', 'tweeted', 'with', 'israel', 'uae', 'diplomatic', 'relation', 'dubai', 'dada', 'india', 'deep', 'trouble', 'khan', 'mu']
__label__Neutral ['uae', 'shared', 'bank', 'account', 'detail', 'overseas', 'pakistani', 'twice', 'tax', 'authority', 'united', 'arab', 'emirate', 'uae', 'shared', 'financial', 'information', 'bank', 'account', 'overseas', 'pakistani', 'federal', 'board', 'revenue', 'fbr', 'tw']
__label__Neutral ['information', 'security', 'compliance', 'manager', 'michael', 'page', 'international', 'uae', 'limited']
__label__Neutral ['hi', 'laxman', 'watch', 'test', 'etisalat', 'criclifemax', 'uaehope', 'information', 'help']
__label__Neutral ['required', 'information', 'technology', 'manager', 'dubai', 'uae']
__label__Positive ['for', 'information', 'registration', 'visit', 'link']
__label__Positive ['so', 'generation', 'take', 'pride', 'history', 'uaenla', 'offer', 'various', 'educational', 'package', 'include', 'lecture', 'reading', 'workshop', 'educational', 'game', 'morefor', 'information', 'visit', 'contact', 'edp']
__label__Positive ['hot', 'deal', 'weeklet', 'quick', 'tour', 'divine', 'townhouse', 'mulberry', 'park', 'jumeirah', 'village', 'circlebr', 'maidsfor', 'sale', 'aed', 'million', 'information', 'contact', 'u', 'info']
__label__Positive ['winning', 'team', 'kuwait', 'seaperch', 'challenge', 'qualified', 'regional', 'project', 'he']
__label__Positive ['join', 'weekly', 'webinar', 'tomorrow', 'make', 'realistic', 'choice', 'program', 'amp', 'providing', 'right', 'advice', 'information', 'guidance']
__label__Positive ['invest', 'traverse', 'wide', 'world', 'telecommunication', 'dubaifor', 'information', 'contact', 'info']
__label__Positive ['new', 'midfield', 'terminal', 'expected', 'open', 'end', 'according', 'report', 'momberger', 'airport', 'informationthe', 'opening', 'likely', 'place', 'december', 'year', 'report', 'said']
__label__Positive ['the', 'global', 'challenge', 'youth', 'determination', 'help', 'child', 'disability', 'boost', 'year', 'hosted', 'amazing', 'bridging', 'world']
__label__Neutral ['dear', 'u', 'plz', 'information', 'notice', 'period', 'notice', 'period', 'start', 'date', 'resignation', 'termination']
__label__Positive ['one', 'stop', 'centre', 'domestic', 'worker', 'visa', 'service', 'apply', 'new', 'visa', 'renew', 'amp', 'cancel', 'maid', 'nanny', 'housekeeper', 'cook', 'driver', 'visa', 'timefor', 'information', 'visit', 'officecallwhatsapp', 'hotline']
__label__Positive ['we', 'create', 'digital', 'marketing', 'campaign', 'screen', 'deliver', 'real', 'resultscontact', 'information']
__label__Neutral ['source', 'information', 'uae', 'president', 'came', 'private', 'visit', 'amp', 'islamabad', 'trip', 'card', 'govt', 'announced', 'anyway', 'subsequently', 'face', 'embarrassment']
__label__Positive ['swamy', 'tweeted', 'with', 'israel', 'uae', 'diplomatic', 'relation', 'dubai', 'dada', 'india', 'deep', 'trouble', 'khan', 'musketeer', 'cbi', 'seek', 'help', 'mossad', 'shin', 'beth', 'information', 'sushant', 'sridevi', 'sunanda', 'murder', 'casesaugust', 'sushant', 'brilliant', 'mind']
__label__Positive ['discover', 'service', 'educational', 'program', 'accreditation', 'hospital', 'gahar', 'cbahi', 'jci', 'egypt', 'uae', 'ksafor', 'information', 'contact']
__label__Positive ['a', 'smart', 'road', 'technology', 'collection', 'sensor', 'processor', 'communication', 'system', 'used', 'collect', 'data', 'traffic', 'condition', 'driver', 'behavior', 'information', 'used', 'improve', 'efficiency', 'safety', 'traffic', 'flow']
__label__Positive ['thanks', 'information', 'learning', 'lot', 'producer', 'twitter']
__label__Positive ['grs', 'offer', 'ampelmann', 'uptime', 'gangway', 'impressive', 'track', 'record', 'success', 'uae', 'water', 'make', 'investment', 'today', 'best', 'marine', 'asset', 'contact', 'information']
__label__Positive ['unlock', 'secret', 'radiant', 'flawless', 'skin', 'ancient', 'ayurvedic', 'guideread', 'more']
__label__Positive ['google', 'unveiled', 'response', 'language', 'app', 'mimic', 'human', 'writing', 'called', 'conversational', 'chatbot', 'draw', 'information', 'web', 'provide', 'fresh', 'highquality', 'response']
__label__Positive ['thukher', 'card', 'electronic', 'card', 'offer', 'diverse', 'range', 'service', 'facility', 'discount', 'dubai', 'senior', 'citizen', 'visit', 'website', 'bio', 'information', 'obtain', 'card']
__label__Negative ['be', 'careful', 'are', 'whistleblower', 'rulersowners', 'like', 'criticisminformation']
__label__Positive ['wasl', 'green', 'park', 'located', 'ra', 'al', 'khor', 'great', 'community', 'feature', 'kid', 'playground', 'court', 'gym', 'family', 'entertainedmultiple', 'option', 'availablerera', 'no', 'information', 'contact', 'u']
__label__Positive ['get', 'exclusive', 'offer', 'reward', 'movie', 'information', 'phone', 'joining', 'star', 'cinema', 'whatsapp', 'communitiesvisit', 'box', 'office', 'uae', 'know']
__label__Positive ['thursday', 'join', 'upcoming', 'webinar', 'collaboration', 'explore', 'parentfriendly', 'label', 'information', 'amp', 'register', 'email', 'responsiblebusiness']
__label__Positive ['my', 'op', 'ed', 'partnership', 'developing', 'pillar', 'india', 'west', 'asia', 'outreach', 'free', 'trade', 'agreement', 'deep', 'exchange', 'defence', 'sensitive', 'intelligence', 'information', 'delhi', 'amp', 'dubai', 'tie', 'strategic', 'level']
__label__Negative ['one', 'member', 'russian', 'crypto', 'pyramid', 'finiko', 'arrested', 'uae', 'bitcoin', 'information', 'cryptocurrency', 'sponsor']
__label__Positive ['concur', 'dam', 'finished', 'physically', 'politically', 'way', 'go', 'information', 'sponsorship', 'negotiation', 'trump', 'also', 'know', 'negotiation', 'took', 'place', 'uae', 'month']
__label__Negative ['tell', 'pakistanies', 'living', 'uae', 'purchased', 'appts', 'grade', 'gov', 'employee', 'purchase', 'transfer', 'money', 'outside', 'dont', 'promote', 'fake', 'information', 'pmln', 'need', 'condemn', 'amp', 'boycott']
__label__Positive ['the', 'seaside', 'hill', 'residence', 'project', 'al', 'zorah', 'unveiled', 'exclusive', 'information', 'regarding', 'recent', 'beachfront', 'residential', 'project', 'provided', 'al', 'zorah', 'development', 'company']
__label__Negative ['uae', 'online', 'shopping', 'platform', 'owned', 'al', 'tayer', 'denied', 'data', 'breach', 'saw', 'shopper', 'access', 'customer', 'personal']
__label__Negative ['to', 'calculate', 'approximate', 'cost', 'duty', 'tax', 'custom', 'informationcall', 'u', 'whatsapp', 'email', 'u', 'sale', 'u']
__label__Negative ['uae', 'online', 'shopping', 'platform', 'owned', 'al', 'tayer', 'denied', 'data', 'breach', 'saw', 'shopper', 'access', 'customer', 'personal', 'information']
__label__Positive ['were', 'delighted', 'announce', 'joined', 'summit', 'for', 'information', 'visit']
__label__Negative ['seo', 'process', 'taking', 'step', 'help', 'website', 'piece', 'content', 'rank', 'higher', 'googlecontact', 'information']
__label__Positive ['join', 'march', 'dubai', 'uae', 'network', 'expertise', 'amp', 'latest', 'amp']
__label__Positive ['the', 'summit', 'like', 'honorable', 'welcome', 'mr', 'ahmed', 'al', 'bastaki', 'chief', 'commercial', 'officer', 'for', 'information', 'amp', 'register', 'visit']
__label__Positive ['adani', 'definitely', 'strong', 'cash', 'flow', 'adani', 'port', 'adani', 'security', 'business', 'model', 'gold', 'drug', 'arm', 'little', 'actually', 'caught', 'additional', 'information', 'badals', 'ran', 'chitta', 'punjab', 'adani', 'brother', 'uae', 'multi', 'billionaire']
__label__Negative ['hello', 'travel', 'saudi', 'uae', 'national', 'id', 'check', 'required', 'issue', 'date', 'information', 'available', 'national', 'id']
__label__Positive ['law', 'regulate', 'economic', 'trade', 'investment', 'sector', 'uae']
__label__Positive ['information', 'visit', 'following', 'link']
__label__Positive ['for', 'information', 'contact', 'send', 'email', 'info']
__label__Positive ['posted', 'article', 'soon', 'don', 'live', 'uae', 'sure', 'information', 'safe', 'concerning', 'seeing', 'dealt', 'people', 'listed']
__label__Negative ['first', 'steal', 'secret', 'information', 'computer', 'phone', 'uae', 'resident', 'extort', 'blackmail', 'kerry', 'adler', 'josh', 'adler', 'rachel', 'bellissimo', 'aka', 'rachel', 'ramos', 'doing', 'this']
__label__Positive ['chrysalism', 'dna', 'just', 'beginning', 'happy', 'excited', 'announce', 'redeem', 'phase', 'start']
__label__Positive ['glad', 'hear', 'discussed', 'way', 'enhance', 'defense', 'military', 'relation', 'country', 'stressed', 'importance', 'enhancing', 'cooperation', 'exchange', 'information', 'expertise', 'defense', 'ministry']
__label__Positive ['route', 'foreign', 'entity', 'establish', 'developing', 'market', 'information']
__label__Positive ['meet', 'february', 'th', 'th', 'gartner', 'security', 'amp', 'management', 'risk', 'summit', 'dubai', 'uaeget', 'information', 'an']
__label__Neutral ['emirate', 'safer', 'internet', 'society', 'stand', 'solidarity', 'safer', 'internet', 'day', 'committed', 'promoting', 'safer']
__label__Positive ['internet', 'friend', 'beautiful']
__label__Neutral ['get', 'extender', 'aed', 'delivery']
__label__Negative ['yeah', 'right', 'uae', 'said', 'publicly', 'want', 'romania', 'main', 'eastern', 'europe', 'partner', 'decade', 'random', 'internet', 'fella', 'speaking', 'b', 'limited', 'mind', 'wont', 'trick', 'here']
__label__Negative ['i', 'personally', 'lost', 'shsm', 'sent', 'uae', 'mum', 'went', 'pick', 'kajansi', 'branch', 'teller', 'connived', 'nakulaye', 'branch', 'withdrew', 'money', 'telling', 'mum', 'come', 'tomorrow', 'closing', 'time', 'internet', 'down']
__label__Positive ['the', 'world', 'need', 'initiative', 'like', 'safer', 'internet', 'society', 'protect', 'child', 'danger', 'digital', 'world', 'proud', 'leading', 'way']
__label__Positive ['best', 'trend', 'flaunt', 'wrap', 'gift', 'won', 'internet', 'impress', 'loved', 'one', 'valentine', 'day']
__label__Neutral ['in', 'celebration', 'safer', 'internet', 'day', 'aqdar', 'uae', 'held', 'roundtable', 'discussion', 'key', 'consortium', 'member', 'including', 'emirate', 'safer', 'internet', 'society', 'esafe', 'session', 'attended', 'dr', 'abdulla', 'mohamed', 'al', 'mehyas', 'chairman', 'emirate', 'safer', 'internet', 'society']
__label__Positive ['here', 'advice', 'protect', 'child', 'onlinebe', 'safe', 'online']
__label__Positive ['hello', 'th', 'grade', 'uae', 'learning', 'internet', 'safety', 'like', 'far', 'tweet', 'travel']
__label__Positive ['understanding', 'internet', 'restriction', 'limit', 'make', 'limitation', 'boundary', 'ourselves', 'ensure', 'safety', 'sharing', 'unnecessary', 'stuff', 'careful', 'share', 'mpj', 'wish', 'happy', 'safer', 'internet', 'day']
__label__Negative ['on', 'internet', 'adoption', 'country', 'internet', 'adoption', 'rate', 'percent', 'half', 'population', 'us', 'internet', 'total', 'country', 'worldkenyas', 'internet', 'adoption', 'ireland', 'norway', 'saudi', 'arabia', 'amp', 'uae', 'leading']
__label__Neutral ['that', 'trading', 'commercial', 'industrial', 'activity', 'took', 'place', 'double', 'taxation', 'avoidance', 'agreement', 'dtaa', 'signed', 'uae', 'internet', 'mobile', 'association']
__label__Negative ['last', 'week', 'pakistan', 'day', 'internet', 'outage', 'lax', 'internet', 'outage', 'day', 'part', 'uae', 'internet', 'outage', 'day', 'coincidence']
__label__Positive ['lil', 'hydro', 'flask', 'drive', 'lamborgini', 'favorite', 'brand', 'lv', 'influenced', 's', 'protest', 'rap', 'got', 'famous', 'internet', 'meme', 'dubai', 'uae']
__label__Neutral ['excel', 'class', 'improve', 'grade', 'help', 'expert', 'business', 'tutorsaccountingfinanceeconomicswindowsmicrosoft', 'powerpoint', 'microsoft', 'excel', 'microsoft', 'word', 'computer', 'science', 'ccomputer', 'science', 'java']
__label__Positive ['get', 'help', 'team', 'expert', 'year', 'ready', 'ib', 'examsbiologyhistoryphysicslanguage', 'literaturemathematics', 'hl', 'calculus', 'discrete', 'mathstatisticsprecalculusstatisticspsychologychemistrycomputer', 'science', 'c', 'java']
__label__Positive ['the', 'phase', 'global', 'clinical', 'trial', 'innovative', 'thalassemia', 'medication', 'help', 'department', 'health', 'abu', 'dhabi', 'enhancing', 'emirate', 'status', 'incubator', 'innovation', 'amp', 'centre', 'lifescience', 'research']
__label__Positive ['returning', 'th', 'year', 'sharjah', 'light', 'festival', 'invite', 'internationally', 'renowned', 'artist', 'celebrate', 'science', 'creativity', 'heritage', 'display', 'light', 'color', 'music', 'beloved', 'landmark']
__label__Neutral ['get', 'online', 'accounting', 'class', 'you', 'help', 'englishmedicinenutritionbiologyenglish', 'literaturelawessay', 'writingprojectconstruction', 'engineeringbsc', 'actuarial', 'sciencephysicschemistry']
__label__Neutral ['improve', 'grade', 'expert', 'help', 'language', 'barrier', 'mathalgebracalculusgeometryprecalculu']
__label__Neutral ['photography', 'show', 'science', 'tell', 'about', 'matter']
__label__Neutral ['online', 'class', 'homework', 'exam', 'help']
__label__Neutral ['improve', 'grade', 'expert', 'help', 'language', 'barrier', 'mathalgebracalculusgeometryprecalculus']
__label__Neutral ['online', 'accounting', 'class', 'you', 'help', 'englishmedicinenutritionbiologyenglish', 'literaturelaw']
__label__Positive ['get', 'help', 'team', 'expert', 'year', 'ready', 'ib', 'examsbiologyhistoryphysicslanguage', 'literaturemathematics', 'hl', 'calculus', 'discrete', 'mathstatisticsprecalculusstatisticspsychologychemistrycomputer', 'science', 'c', 'java']
__label__Neutral ['get', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withessay', 'duemathssociology', 'homework', 'anatomyaccountingessay', 'pay', 'algebrahistorygeometrychemistry', 'science']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withessay', 'duemathssociology', 'homeworkanatomyaccountingpowe']
__label__Neutral ['get', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'astronomy', 'economics', 'accounting', 'finance', 'class']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'help', 'expert', 'service', 'machine', 'analysismachine', 'designmanufacturing', 'processma']
__label__Neutral ['get', 'online', 'class', 'homework', 'assignment', 'exam', 'help', 'essay', 'homework', 'report', 'paper', 'write']
__label__Neutral ['get', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'essay', 'report', 'paper', 'write', 'help']
__label__Neutral ['rd', 'did', 'know', 'isi', 'there', 'uae', 'oman', 'kuwait', 'think', 'solution', 'isi', 'start', 'putting', 'science', 'generic', 'faulty', 'statement']
__label__Neutral ['online', 'accounting', 'class', 'you', 'help', 'englishmedicinenutritionbiologyenglish', 'literatu']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'help', 'essay', 'homework', 'report']
__label__Neutral ['online', 'class', 'homework', 'exam', 'help']
__label__Neutral ['excel', 'class', 'improve', 'grade', 'help', 'expert', 'business', 'tutorsaccountingfinanceeconom']
__label__Neutral ['excel', 'class', 'improve', 'grade', 'help', 'expert', 'business', 'tutorsaccountingfinanceecon']
__label__Neutral ['offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withalgebra', 'literature', 'business', 'political', 'science', 'mathl']
__label__Neutral ['excel', 'class', 'improve', 'grade', 'help', 'expert', 'business', 'tutorsaccountingfinanceeconomicswindowsmicro']
__label__Neutral ['from', 'aspiring', 'trailblazer', 'carried', 'ambition', 'space', 'pioneer', 'forefront', 'join', 'world', 'celebrating', 'international', 'day', 'woman', 'girl', 'science']
__label__Positive ['on', 'international', 'day', 'woman', 'girl', 'science', 'celebrating', 'woman', 'setting', 'example', 'young', 'girl', 'passionate', 'science']
__label__Neutral ['hire', 'professional', 'ace', 'assignment', 'journal']
__label__Neutral ['today', 'mark', 'serve', 'inspiration', 'gen']
__label__Positive ['today', 'mark', 'serve', 'inspiration', 'generation', 'leader', 'proud', 'transformational', 'action', 'woman', 'taking', 'uae', 'globally']
__label__Negative ['this', 'international', 'day', 'woman', 'amp', 'girl', 'science', 'pay', 'tribute', 'woman', 'champion', 'science', 'decade', 'world', 'understanding', 'climate', 'change', 'improved', 'exponentially', 'thanks', 'climate', 'scientist', 'amp', 'technology']
__label__Neutral ['get', 'online', 'class', 'homework', 'exam', 'help', 'pay', 'paper', 'class', 'science']
__label__Neutral ['international', 'day', 'woman', 'girl', 'sciencepromise', 'dayeuropean', 'dayyouth', 'day', 'cameroonfoundation', 'day', 'japantina', 'ambani', 'indiajennifer', 'aniston', 'los', 'angelesgabriel', 'boric', 'punta', 'arena', 'chilehassan', 'abdulrahman', 'uaekhalid', 'fort', 'stewart', 'ga', 'feb']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'help', 'expert', 'service', 'machine', 'analysismachine', 'designmanufacturing', 'processmaterial', 'science']
__label__Positive ['sarah', 'amiri', 'minister', 'state', 'public', 'education', 'amp', 'advanced', 'tech', 'omran', 'sharaf', 'asst', 'minister', 'foreign', 'affai']
__label__Neutral ['excel', 'class', 'improve', 'grade', 'help', 'expert', 'business', 'tutorsaccounting', 'powerpointmicrosoft', 'excelmicrosoft', 'wordcomputer', 'science', 'ccomputer', 'science', 'java']
__label__Positive ['spacex', 'testfires', 'powerful', 'engine', 'mar', 'rocket']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'help', 'expert', 'service', 'machine', 'analysismachine', 'designmanufacturing', 'proce']
__label__Positive ['starship', 'spacex', 'testfires', 'powerful', 'engine', 'mar', 'rocket']
__label__Positive ['the', 'amp', 'signed', 'agreement', 'establish', 'unesco', 'chair', 'strategic', 'foresight', 'amp', 'higher', 'education', 'agreement', 'line', 'uae', 'national', 'commission', 'education', 'culture', 'amp', 'science', 'continuous', 'effort', 'enhance', 'cooperation', 'global', 'organization']
__label__Neutral ['get', 'online', 'accounting', 'class', 'you', 'help', 'englishmedicinenutritionbiologyenglish', 'literaturelawessay', 'writingprojectconstruction', 'engineeringbsc', 'actuarial', 'sciencephysicschemistryemail', 'academiatop']
__label__Neutral ['mechanical', 'engineering', 'homework', 'helpgeometric', 'dimension', 'toleranceheat', 'transferinstrumentationinternal', 'combustion']
__label__Positive ['favorite', 'quote', 'podcast', 'operational', 'downtime']
__label__Positive ['the', 'korean', 'mastered', 'art', 'nuclear', 'programme', 'opposed', 'plant', 'buildingas', 'evidenced', 'uae', 'deliver', 'total', 'dealthey', 'standard', 'noncutting', 'edge', 'plant', 'built', 'experienced', 'team', 'standard', 'schedulenot', 'rocket', 'science']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withessay', 'duemathssociology', 'homework', 'anatomyaccountingpow']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help']
__label__Neutral ['we', 'offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'inaccountingenglishmedicinenutritionbiologyenglish', 'literaturelawessay', 'writingprojectconstruction', 'engineeringbsc', 'actuarial', 'sciencephysicschemistry']
__label__Neutral ['get', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'mathematics', 'computer', 'scienceelectrostaticsgravitationmechanicsmodern', 'physicsopticsaccounting', 'finance', 'economics', 'physic', 'chemistry', 'biologysound', 'wave']
__label__Neutral ['get', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withessay', 'duemathssociology', 'homework', 'anatomyaccountingpowerpointessay', 'payalgebrahistorygeometrychemistry', 'science']
__label__Positive ['extends', 'hope', 'probe', 'study', 'mar', 'moon', 'watch']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'mathematics', 'computer', 'scienceelectrostaticsgravitation']
__label__Neutral ['biologysciencemathchem', 'teacher', 'required', 'salary', 'uaeaviation', 'teacher', 'mechanical', 'teacher', 'electrical', 'teacher', 'english', 'teacher', 'native', 'speaker', 'nativebenefits', 'teacher', 'instructor', 'basic', 'salary', 'aed']
__label__Positive ['were', 'proud', 'announce', 'launch', 'sahim', 'flagship', 'citizen', 'science', 'programme', 'brought', 'amp', 'increased', 'public', 'participation', 'enhance', 'scientific', 'research', 'uae', 'achieve', 'greater', 'impact', 'environment']
__label__Positive ['the', 'main', 'step', 'agricultural', 'practice', 'include', 'preparation', 'soil', 'sowing', 'adding', 'manure', 'fertilizer', 'irrigation', 'harvesting', 'storage']
__label__Positive ['sahim', 'aim', 'harness', 'largescale', 'public', 'participation', 'research', 'address', 'environmental', 'challenge', 'data', 'collection', 'analysis', 'interpretation', 'support', 'uae', 'net', 'zero', 'goal', 'read', 'more']
__label__Neutral ['get', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withaccountingenglishmedicinenutritionbiologyenglish', 'literaturelawessay', 'writingprojectconstruction', 'engineeringbsc', 'actuarial', 'sciencephysicschemistry', 'bidenusa']
__label__Neutral ['purehealth', 'group', 'mission', 'unlock', 'time', 'make', 'uae', 'health', 'capital', 'world', 'join', 'to']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'mathematics', 'computer', 'scienceelectrostaticsgravitatio']
__label__Neutral ['online', 'accounting', 'class', 'you', 'help', 'englishmedicinenutritionbiologyenglish', 'literaturel']
__label__Positive ['we', 'glad', 'welcome', 'head', 'science', 'dubai', 'uae', 'speaker', 'th', 'elets', 'world', 'education', 'summit', 'dubaienquire', 'participation']
__label__Neutral ['doing', 'lot', 'service', 'american', 'grateful', 'come', 'language', 'said', 'abdulkhaleq', 'abdulla', 'uae', 'political', 'science', 'professor', 'referring', 'warning', 'g', 'market']
__label__Positive ['day', 'goregister', 'dubai', 'uaefor', 'detail', 'visit']
__label__Positive ['day', 'featured', 'keynote', 'speech', 'ceo', 'foundation', 'uae', 'journey', 'future', 'day', 'feature', 'seminar', 'space', 'science', 'innovation', 'seminar', 'amazon', 'cultu']
__label__Neutral ['microsoft', 'surface', 'book', 'in', 'design']
__label__Neutral ['effect', 'eutrophication', 'research', 'higlight', 'article', 'link', 'link']
__label__Neutral ['mechanical', 'engineering', 'homework', 'helpgeometric', 'dimension', 'toleranceheat', 'transferinstrumentationinternal', 'combustion']
__label__Neutral ['get', 'online', 'accounting', 'class', 'you', 'help', 'englishmedicinenutritionbiologyenglish', 'literaturelawessay', 'writingprojectconstruction', 'engineeringbsc', 'actuarial', 'sciencephysicschemistryacademiatop']
__label__Positive ['president', 'state', 'science', 'culture', 'integral', 'civilized', 'heritage', 'developm']
__label__Neutral ['published', 'numerical', 'investigation', 'blockage', 'phenomenon', 'packed', 'column']
__label__Neutral ['excel', 'class', 'improve', 'grade', 'help', 'expert', 'business', 'tutorsaccountingmanagerial', 'accountingfinance']
__label__Neutral ['excel', 'class', 'improve', 'grade', 'help', 'expert', 'business', 'tutorsaccountingmanagerial', 'accountingfinanceeconomicswindowsmicrosoft', 'powerpointmicrosoft', 'excelmicrosoft', 'wordcomputer', 'science', 'ccomputer', 'science', 'java']
__label__Positive ['new', 'article', 'published', 'energy', 'policy', 'identifies', 'main', 'country', 'likely', 'fight', 'eu', 'cbam']
__label__Positive ['if', 'region', 'make', 'sure', 'attend', 'bring', 'leading', 'professional', 'world', 'discus', 'debate', 'latest', 'science', 'research']
__label__Neutral ['excel', 'class', 'improve', 'grade', 'help', 'expert', 'business', 'tutorsaccounting']
__label__Positive ['come', 'great', 'honor', 'receive', 'arabian', 'business', 'achievement', 'award', 'category', 'medicine', 'amp', 'sci']
__label__Neutral ['online', 'accounting', 'class', 'you', 'help', 'englishmedicinenutritionbiologyenglish', 'literaturelawessay', 'writingprojectconstruction', 'engineeringbsc', 'actuarial', 'sciencephysicschemistryonline', 'class', 'homework', 'exam', 'help']
__label__Neutral ['improve', 'grade', 'expert', 'help', 'language', 'barrier', 'mathalgebracalculusgeometryprecalculusstatisticstrigonometry', 'scienceanatomy', 'physiology', 'sciencephysicssocial', 'study']
__label__Positive ['get', 'help', 'team', 'expert', 'year', 'ready', 'ib', 'examsbiologyhistoryphysicslanguage', 'literaturemathematics', 'hl', 'calculusdiscrete', 'mathstatisticsprecalculusstatisticspsychologychemistrycomputer', 'sciencec', 'java']
__label__Neutral ['runup', 'day', 'amp', 'let', 'celebrate', 'profile']
__label__Positive ['makhtar', 'diop', 'think', 'technological', 'advancement', 'today', 'adopt', 'them', 'better', 'u']
__label__Neutral ['expanding', 'contact', 'business', 'uae', 'managing', 'director', 'bancs', 'chairman', 'alghyath', 'group', 'vi']
__label__Positive ['hioki', 'manufacturer', 'known', 'supporting', 'technological', 'advancementget', 'touch']
__label__Positive ['doe', 'uae', 'silicon', 'valley', 'did', 'invent', 'chatgpt', 'responsible', 'technological', 'innovation', 'rest', 'world', 'us', 'wondering', 'make', 'particularly', 'advanced']
__label__Negative ['the', 'department', 'health', 'kahn', 'sagol', 'maccabi', 'research', 'innovation', 'center', 'signed', 'memorandum', 'understanding', 'promote', 'collaboration', 'technological', 'innovation', 'health', 'care', 'research']
__label__Positive ['the', 'formalisation', 'trilateral', 'cooperation', 'india', 'france', 'uae', 'promise', 'groundbreaking', 'accord', 'particularly', 'term', 'defence', 'technological', 'cooperation']
__label__Neutral ['mechanical', 'engineering', 'homework', 'helpmatlabmechanical', 'measurementsmechanics', 'materialsroboticssolid', 'worksstaticsstre']
__label__Neutral ['get', 'online', 'civil', 'engineering', 'homework', 'help', 'air', 'pollutionconcretedynamicsengineering', 'drawingenvironmental', 'engineeringfluid', 'mechanicsgeotechnical', 'engineeringhydraulicshydrologylab', 'reportsoil', 'mechanic']
__label__Neutral ['pay', 'legit', 'service', 'in']
__label__Neutral ['civil', 'engineering', 'homework', 'help', 'air', 'pollutionconcretedynamicsengineering', 'drawingenvironmental', 'engineeringfluid', 'mechanicsgeotechnical', 'engineeringhydraulicshydrologylab', 'report', 'cesoil', 'mechanic']
__label__Neutral ['online', 'civil', 'engineering', 'homework', 'assignment', 'exam', 'expert', 'help', 'solid', 'worksstaticssteel', 'structurest']
__label__Neutral ['mechanical', 'engineering', 'homework', 'helpmatlabmechanical', 'measurementsmechanics', 'materialsroboticssolid', 'worksstatic']
__label__Neutral ['industrial', 'engineering', 'assignment', 'help', 'industrial', 'experimentationoperation', 'researchquality', 'controlsystem', 'engine']
__label__Positive ['plagiarism', 'free', 'assignment', 'solution', 'onmechanical', 'engineeringelectrical', 'engineeringcivil', 'engineeringchemical', 'e']
__label__Positive ['dear', 'jobseekers', 'based', 'uaewe', 'looking', 'position', 'able', 'engineering', 'study', 'onshore', 'piping', 'electrical', 'civil', 'work', 'project', 'ksa', 'client', 'charge', 'design', 'built', 'nearshore', 'desalination', 'plant', 't']
__label__Neutral ['electrical', 'engineering', 'homework', 'help', 'circuitscontrol', 'systemelectrical', 'machineselectrical', 'measurementselect']
__label__Negative ['a', 'state', 'art', 'tissue', 'culture', 'plant', 'engineering', 'research', 'lab', 'engineer', 'hundred', 'million', 'tree', 'africa', 'amp', 'uae', 'trillion', 'tree', 'initiative', 'program', 'amp', 'cutting', 'carbon', 'emission', 'amp', 'increasing', 'oxygen', 'level', 'amp', 'creating', 'million', 'job']
__label__Neutral ['electrical', 'engineering', 'homework', 'help', 'circuitscontrol', 'systemelectrical', 'machineselectrical', 'measurementselectromagneti']
__label__Neutral ['mechanical', 'engineering', 'homework', 'help', 'onansysautocadcomposite', 'materialcompressible', 'fluidcomputational', 'fluid', 'dynamic']
__label__Positive ['successful', 'day', 'testing', 'abu', 'dhabi', 'yas', 'marina', 'circuit']
__label__Neutral ['engineering', 'art']
__label__Neutral ['electrical', 'engineering', 'homework', 'help', 'circuitscontrol', 'systemelectrical', 'machineselectrical', 'measurementselectrom']
__label__Neutral ['online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withdigital', 'communicationdigital', 'signal', 'processingdigital']
__label__Positive ['position', 'sale', 'coordinatordate', 'posted', 'industry', 'otheremployment', 'type', 'timeexperience', 'yearqualification', 'bachelor', 'engineeringsalary', 'aed', 'apply']
__label__Neutral ['offer', 'online', 'economics', 'homework', 'assignment', 'exam', 'expert', 'help', 'accountancycase', 'studyeconomicsengineering', 'ec']
__label__Neutral ['check', 'gig', 'fiverr', 'soil', 'mechanic', 'geotechnical', 'engineering', 'foundation', 'plaxis']
__label__Positive ['kindly', 'provide', 'support', 'btech', 'engrz', 'pakistan', 'given', 'equal', 'right', 'job', 'amp', 'service', 'world', 'uk', 'eu', 'uae', 'pak', 'hold', 'pak', 'engineering', 'council', 'hecstop', 'btechophobia', 'amp', 'supremacist', 'policy', 'pec', 'mafiaopen', 'merit', 'amp', 'competition']
__label__Neutral ['offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help']
__label__Neutral ['pay', 'legit', 'service', 'in']
__label__Neutral ['help', 'electronics', 'communication', 'engineering', 'homework', 'analog', 'communicationbasic', 'ecdigital', 'communication']
__label__Neutral ['civil', 'engineering', 'homework', 'helpsolid', 'worksstaticssteel', 'structurestrength', 'materialstructural', 'analysissurvey']
__label__Neutral ['offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help']
__label__Neutral ['get', 'mechanical', 'engineering', 'homework', 'help', 'onansysautocadcomposite', 'materialcompressible', 'fluidcomputational', 'fluid', 'dynamicscontrol', 'systemdesign', 'machinedynamicsenergy', 'systemsengineering', 'drawingfinite', 'element', 'analysisfluid', 'mechanic']
__label__Neutral ['offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withessay', 'physic', 'chemistry', 'history', 'nursing', 'biology']
__label__Neutral ['offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'with']
__label__Neutral ['mechanical', 'engineering', 'homework', 'helpmatlabmechanical', 'measurementsmechanics', 'materialsroboticssolid', 'worksstatics']
__label__Neutral ['day', 'regime', 'received', 'shipment', 'disaster', 'relief', 'aid', 'fromuneuuaealgeriairanlib']
__label__Neutral ['we', 'offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'with', 'class', 'homework', 'exam', 'help']
__label__Neutral ['get', 'online', 'class', 'homework', 'assignment', 'exam', 'help', 'expert', 'incivil', 'engineering', 'homework', 'help', 'air', 'pollutionconcretedynamicsengineering', 'drawingenvironmental', 'engineeringfluid', 'mechanicsgeotechnical', 'engineeringhydraulicshydrologylab', 'reportsoil', 'mechanic']
__label__Neutral ['we', 'offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'help', 'help', 'exam', 'help', 'assignment', 'help']
__label__Neutral ['online', 'chemical', 'engineering', 'homework', 'helpchemical', 'process', 'technologychemical', 'thermodynamicsfluid', 'mechanicsheat']
__label__Neutral ['online', 'civil', 'engineering', 'homework', 'help', 'air', 'pollutionconcretedynamicsengineering', 'drawingenvironmental', 'engineer']
__label__Neutral ['get', 'economics', 'homework', 'help', 'accountancycase', 'studyeconomicsengineering', 'economicsfinancemanagementoperation', 'researchprobabilitystatisticsaccountingonline', 'class', 'homework', 'assignment', 'exam', 'expert', 'help']
__label__Neutral ['get', 'economics', 'homework', 'help', 'accountancycase', 'studyeconomicsengineering', 'economicsfinancemanagementoperation', 'researchprobabilitystatisticsaccountingonline', 'class', 'homework', 'assignment', 'exam', 'expert', 'help']
__label__Neutral ['engineering', 'electrician', 'al', 'futtaim', 'group']
__label__Neutral ['get', 'help', 'electronics', 'communication', 'engineering', 'homework', 'analog', 'communicationbasic', 'ecdigital', 'communicationdigital', 'signal', 'processingdigital', 'systemsembedded', 'systemltspicemechatronicsrobotics']
__label__Neutral ['get', 'help', 'electronics', 'communication', 'engineering', 'homework', 'analog', 'communicationbasic', 'ecdigital', 'communicationdigital', 'signal', 'processingdigital', 'systemsembedded', 'systemltspicemechatronicsrobotics']
__label__Positive ['get', 'plagiarism', 'free', 'assignment', 'solution', 'onmechanical', 'engineeringelectrical', 'engineeringcivil', 'engineeringchemical', 'engineeringelectronics', 'communication', 'engineeringcs', 'engineering', 'homework', 'help']
__label__Positive ['get', 'plagiarism', 'free', 'assignment', 'solution', 'onmechanical', 'engineeringelectrical', 'engineeringcivil', 'engineeringchemical', 'engineeringelectronics', 'communication', 'engineeringcs', 'engineering', 'homework', 'help']
__label__Neutral ['get', 'online', 'industrial', 'engineering', 'homework', 'assignment', 'help', 'industrial', 'experimentationoperation', 'researchquality', 'controlsystem', 'engineering', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help']
__label__Neutral ['electrical', 'engineering', 'homework', 'help', 'circuitscontrol', 'systemelectrical', 'machineselectrical', 'measurementselectroma']
__label__Neutral ['help', 'electronics', 'communication', 'engineering', 'homework', 'analog', 'communicationbasic', 'ecdigital', 'communication']
__label__Neutral ['get', 'economics', 'homework', 'help', 'accountancycase', 'studyeconomicsengineering', 'economicsfinancemanagementoperation', 'researchprobabilitystatisticsaccountingonline', 'class', 'homework', 'assignment', 'exam', 'expert', 'help']
__label__Neutral ['get', 'economics', 'homework', 'help', 'accountancycase', 'studyeconomicsengineering', 'economicsfinancemanagementoperation', 'researchprobabilitystatisticsaccountingonline', 'class', 'homework', 'assignment', 'exam', 'expert', 'help']
__label__Neutral ['dubai', 'municipality', 'via', 'digital', 'portal', 'announces', 'availability', 'holder', 'various', 'specialization', 'bachelor', 'degree', 'holder', 'engineering', 'job', 'apply']
__label__Negative ['eldest', 'son', 'muhammad', 'hanzla', 'completed', 'electrical', 'engineering', 'despite', 'extreme', 'poverty', 'suitable', 'job', 'went', 'cousin', 'dubai', 'uae', 'month', 'look', 'employment', 'month', 'jobless', 'to', 'continued']
__label__Positive ['give', 'high', 'standard', 'quality']
__label__Positive ['dubai', 'uae', 'project', 'director', 'finish', 'degree', 'civil', 'engineering', 'min', 'year', 'experience', 'working', 'highend', 'fitout', 'amp', 'finish', 'project', 'luxury', 'residential', 'hotel', 'tower', 'uae', 'ideally', 'looking', 'main', 'contrac']
__label__Neutral ['we', 'offer', 'online', 'economics', 'homework', 'assignment', 'exam', 'expert', 'help', 'accountancycase', 'studyeconomicsengineering', 'economicsfinancemanagementoperation', 'researchprobabilitystatisticsdiscrete', 'math']
__label__Neutral ['economics', 'homework', 'help', 'accountancycase', 'studyeconomicsengineering', 'economicsfinancemanagementoperation', 'researchprobabilitystatistics', 'joebiden', 'exam', 'expert', 'help', 'help']
__label__Negative ['let', 'share', 'foreign', 'account', 'detail', 'acc', 'sbp', 'report', 'is', 'usd', 'million', 'dollar']
__label__Negative ['served', 'global', 'client', 'small', 'medium', 'company', 'large', 'corporation', 'globally', 'country', 'like', 'usa', 'ca']
__label__Neutral ['jacob', 'engineering', 'solution', 'group', 'announces', 'availability', 'campaigner', 'various', 'specialization']
__label__Positive ['ey', 'uae', 'offering', 'unique', 'graduate', 'opportunity', 'national', 'abu', 'dhabi', 'dubai', 'office', 'hiring', 'graduate', 'degree', 'finance', 'engineering', 'economics', 'accounting', 'business', 'more']
__label__Neutral ['mechanical', 'engineering', 'homework', 'helpmatlabmechanical', 'measurementsmechanics', 'materialsroboticssolid', 'worksstaticsst']
__label__Neutral ['online', 'civil', 'engineering', 'homework', 'assignment', 'exam', 'expert', 'help', 'solid', 'worksstaticssteel', 'structurestreng']
__label__Neutral ['pay', 'legit', 'service', 'in']
__label__Neutral ['pay', 'legit', 'service', 'in']
__label__Positive ['provider', 'uaewe', 'known', 'reliable', 'sale', 'or', 'visit']
__label__Neutral ['offer', 'online', 'economics', 'homework', 'assignment', 'exam', 'expert', 'help', 'accountancycase', 'studyeconomicsengineer']
__label__Neutral ['pay', 'legit', 'service', 'in', 'review']
__label__Neutral ['pay', 'legit', 'service', 'in']
__label__Positive ['hiring', 'designationsr', 'officer', 'procurement', 'qualificationbachelor', 'engineering', 'mechanicalexperience', 'year', 'oil', 'amp', 'gas', 'construction', 'working', 'adnoc', 'project', 'advantage', 'aware', 'vendor', 'supplier', 'local', 'uae', 'mar']
__label__Neutral ['check', 'gig', 'fiverr', 'soil', 'mechanic', 'geotechnical', 'engineering', 'foundation', 'plaxis']
__label__Neutral []
__label__Positive ['here', 'couple', 'explore', 'system', 'exploited', 'look', 'connecting', 'tributary', 'story', 'link', 'consequential', 'world', 'event']
__label__Neutral ['offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withenergy', 'systemsthermodynamics', 'anatomy', 'literatur']
__label__Positive ['proud', 'receive', 'top', 'distributor', 'uae', 'award', 'i', 'intelligent', 'security', 'system', 'middle', 'east', 'we']
__label__Positive ['oasis', 'enterprise', 'opportunity', 'work', 'main', 'auditorium', 'american', 'university', 'sharjah', 'installing', 'numero']
__label__Positive ['were', 'delighted', 'launch', 'edition', 'system', 'transformation', 'forum', 'discus', 'food', 'security', 'future', 'food', 'adapt', 'climate', 'change', 'support', 'hosted', 'uae', 'year']
__label__Neutral ['will', 'speaking', 'panel', 'discussion', 'titled', 'progress', 'strengthening', 'maritime', 'security', 'unmanned', 'system', 'ai', 'technology', 'integration', 'idex', 'amp', 'navdex', 'talk']
__label__Positive ['supplier', 'uaeal', 'khabeer', 'water', 'treatment', 'llc', 'provides', 'water', 'treatment', 'system', 'including', 'ultrafiltration', 'filtration', 'remove', 'impurity', 'contaminant', 'water', 'info', 'visit', 'u']
__label__Neutral ['we', 'offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withenergy', 'systemsthermodynamics', 'anatomy', 'literature', 'nursing', 'essay', 'exam', 'term', 'paper', 'powerpoint', 'accountinggeophysics', 'humanity', 'lab', 'report', 'journal', 'dynamic']
__label__Positive ['oasis', 'enterprise', 'opportunity', 'work', 'main', 'auditorium', 'american', 'university', 'sharjah', 'installing', 'numerous', 'system']
__label__Neutral ['emirate', 'defence', 'technology', 'edt', 'leading', 'uaebased', 'integrator', 'comprehensive', 'defence', 'solution', 'steadicopter', 'leader', 'rotary', 'unmanned', 'aerial', 'system', 'ruas', 'industry', 'join', 'force', 'regarding', 'supply', 'latter', 'advanced']
__label__Neutral ['stay', 'compliant', 'local', 'safety', 'regulation', 'entrusting', 'vision', 'safety', 'safety', 'maintenance', 'need', 'team', 'expert', 'system', 'date']
__label__Neutral ['join', 'ben', 'nelson', 'discus', 'decentralized', 'system', 'february']
__label__Neutral ['join', 'ben', 'nelson', 'discus', 'decentralized', 'system', 'february', 'pm', 'gst', 'dubai', 'uae']
__label__Positive ['abu', 'dhabi', 'today', 'announced', 'inauguration', 'bilateral', 'linkage', 'traffic', 'system', 'uae', 'qatar', 'more']
__label__Positive ['coming', 'soon', 'pp', 'designed', 'handle', 'type', 'advanced', 'stage', 'leader', 'pp', 'system', 'handle', 'type', 'logistics', 'globally']
__label__Positive ['road', 'transport', 'authority', 'announces', 'availability', 'holder', 'various', 'discipline', 'job', 'titlethe', 'traffic', 'system', 'operator', 'apply']
__label__Neutral ['uae', 'invested', 'player', 'infrastructure', 'youth', 'system', 'surrounding', 'community', 'mf', 'identity', 'them', 'loyalty']
__label__Positive ['nation', 'like', 'india', 'israel', 'uae', 'earth', 'humanitarian', 'assistancebecause', 'simply', 'nation', 'run', 'emotion', 'bond', 'people', 'state', 'system']
__label__Positive ['hornet', 'system', 'like', 'hornet', 'akeron', 'presented', 'vbl', 'mk', 'booth', 'international', 'golden', 'group', 'igg']
__label__Positive ['nonpartisan', 'electoral', 'system', 'famously', 'democratic', 'just', 'look', 'famously', 'participatory', 'political', 'system', 'left', 'right', 'jordan', 'bahrain', 'uae']
__label__Neutral ['aim', 'security', 'system', 'trading', 'llc', 'uae', 'provides', 'allinone', 'restaurant', 'po', 'solution', 'improve', 'efficiency', 'business']
__label__Positive ['sunmi', 'mobile', 'po', 'system', 'quick', 'amp', 'cost', 'effective', 'business', 'infome', 'technologiesto', 'know', 'visit']
__label__Positive ['coming', 'soon', 'pp', 'designed', 'handle', 'type', 'advanced', 'stage', 'leader', 'pp', 'system', 'handle', 'type', 'logistics', 'globally']
__label__Positive ['coming', 'soon', 'pp', 'designed', 'handle', 'type', 'advanced', 'stage', 'leader', 'pp', 'system', 'handle', 'type', 'logistics', 'globally']
__label__Positive ['indian', 'shame', 'say', 'indian', 'system', 'corrupted', 'thats', 'love', 'uae', 'indian', 'police', 'political', 'party', 'people', 'country', 'money']
__label__Positive ['umm', 'were', 'comparing', 'political', 'system', 'fascism', 'suggest', 'look', 'iran', 'uae', 'saudi', 'etc', 'etc', 'casting', 'aspersion', 'israel', 'im', 'huge', 'fan', 'israeli', 'politics', 'better', 'regional', 'peer']
__label__Positive ['coming', 'soon', 'pp', 'designed', 'handle', 'type', 'advanced', 'stage', 'leader', 'pp', 'system', 'handle', 'type', 'logistics', 'globally']
__label__Neutral ['we', 'offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withenergy', 'systemsthermodynamics', 'anatomy', 'literature', 'nursing', 'essay', 'exam', 'term', 'paper', 'powerpoint', 'accounting', 'geophysicshumanities', 'labreport', 'journal', 'dynamic']
__label__Negative ['resident', 'nvr', 'buy', 'electronics', 'frm', 'amp', 'dont', 'believe', 'bcos', 'it', 'sham', 'washing', 'machine', 'waiting', 'part', 'month', 'amp', 'dishonest', 'insurance', 'cothey', 'replace', 'unit', 'promised']
__label__Negative ['up', 'global', 'investor', 'summit', 'green', 'energy', 'electronics', 'industrial', 'park', 'highest', 'investment', 'proposal', 'pioneer', 'global', 'vc', 'difchq', 'riyadh', 'uaesingapore', 'norway', 'swiss', 'mind', 'pioneer', 'global', 'finance', 'management', 'consulting']
__label__Positive ['macbook', 'pro', 'core', 'i', 'ssd', 'retina', 'display', 'whatsapp', 'delivery', 'uae', 'available', 'shop', 'locationmain', 'point', 'electronics', 'trading', 'llc']
__label__Positive ['ipad', 'gb', 'sim', 'supported', 'whatsapp', 'delivery', 'uae', 'available', 'shop', 'locationmain', 'point', 'electronics', 'trading', 'llc']
__label__Positive ['choose', 'major', 'leading', 'brand', 'plumbing', 'amp', 'fitting', 'best', 'price', 'fesfor', 'detail', 'visit', 'website', 'nowvisit', 'at']
__label__Positive ['affordable', 'laptop', 'sale', 'dubai', 'whatsapp', 'delivery', 'uae', 'available', 'shop', 'locationmain', 'point', 'electronics', 'trading', 'llc']
__label__Neutral ['these', 'activity', 'included', 'deal', 'penalized', 'russian', 'company', 'trade', 'russia', 'usmade', 'product', 'export', 'russia', 'socalled', 'dualuse', 'good', 'like', 'plastic', 'rubber', 'electronics']
__label__Neutral ['multi', 'purpose', 'battery', 'charger', 'lcd', 'displaycompatible', 'aaa', 'aa', 'c', 'd', 'cr', 'more']
__label__Positive ['position', 'assistant', 'estore', 'managerdate', 'posted', 'industry', 'consumer', 'electronicsemployment', 'type', 'timeexperience', 'yearqualification', 'bachelor', 'degree', 'holderapply']
__label__Neutral ['electrical', 'electronics', 'ask', 'arijit', 'rylty', 'pas', 'funding', 'gvn', 'frm', 'gma', 'favs', 'uae', 'reason', 'looked', 'aftr', 'raised', 'gamgpa', 'frnds', 'gpagma']
__label__Neutral ['bap', 'participates', 'global', 'tolerance', 'amp', 'human', 'fraternity', 'summit', 'abu', 'dhabi', 'uae']
__label__Neutral ['on', 'going', 'contractor', 'fibrex', 'constraction', 'groupproject', 'name', 'luxe', 'hotellocation', 'jbr', 'dubai', 'uaesubcontractor', 'safety', 'world', 'for', 'application', 'cementitiousfor', 'inquiry']
__label__Positive ['learn', 'impact', 'worldwide', 'download', 'suqia', 'uae', 'app', 'help', 'save', 'life', 'available', 'io', 'android']
__label__Negative ['deliveroo', 'worst', 'app', 'ordered', 'bf', 'called', 'meeting', 'came', 'wasn', 'chat', 'deliveroo', 'said', 'redeem', 'money', 'driver', 'punched', 'delivered', 'fault', 'did']
__label__Positive ['scrub', 'suit', 'printed', 'white', 'pant', 'polystar', 'fabric', 'class', 'pocket', 'shirt', 'delivery', 'design', 'printedlink', 'item', 'website', 'amp', 'callour', 'location']
__label__Neutral ['recommended', 'reading']
__label__Negative ['trying', 'apply', 'uae', 'tourist', 'visa', 'mother', 'past', 'day', 'application', 'returned', 'continuously', 'asking', 'provide', 'previous', 'travel', 'history', 'country', 'provide', 'previous', 'travel', 'history']
__label__Neutral ['daily', 'energy', 'market', 'february']
__label__Positive ['adding', 'love', 'wait', 'inform', 'app', 'offline', 'amp', 'update', 'at']
__label__Neutral ['time', 'dancemagic', 'mike', 'take', 'stage', 'final', 'performance', 'showing', 'book', 'ticket', 'vox', 'app', 'visit']
__label__Positive ['the', 'future', 'skin', 'treatment', 'start', 'nowthe', 'stellar', 'm', 'powerful', 'modular', 'multiapplication', 'platform', 'inspired', 'brightest', 'constellation', 'skyit', 'enables', 'safely', 'effectively', 'treat', 'different', 'indication', 'different', 'skin', 'type', 'age', 'gender']
__label__Neutral ['worked', 'abroad', 'came', 'teaching', 'obtain', 'police', 'check', 'certificate', 'country', 'uae', 'working', 'sent', 'db', 'application']
__label__Neutral ['bap', 'participates', 'global', 'tolerance', 'amp', 'human', 'fraternity', 'summit', 'abu', 'dhabi', 'uae']
__label__Neutral ['global', 'investor', 'summit', 'uttar', 'pradesh', 'organised', 'partner', 'country', 'including', 'si']
__label__Negative ['crowd', 'funding', 'begin', 'soon', 'netzero', 'leafpays', 'su']
__label__Positive ['company', 'new', 'application']
__label__Negative ['voldemort', 'dark', 'lord', 'came', 'betake', 'dive', 'troubled', 'past', 'dumbledore', 'amp', 'harry', 'big', 'screen', 'vox', 'app']
__label__Positive ['the', 'mitsubishi', 'asx', 'cool', 'compact', 'small', 'suv', 'rent', 'amp', 'drive', 'outcall', 'ampmapp']
__label__Negative ['single', 'lonely', 'option', 'come', 'selection', 'horror', 'movie', 'rr', 'book', 'vox', 'app', 'visit']
__label__Positive ['zomato', 'operation', 'uae', 'run', 'talabat', 'zomato', 'app', 'used', 'dine', 'offer', 'nov', 'delivery', 'talabat', 'app']
__label__Neutral ['daily', 'energy', 'market', 'february']
__label__Positive ['attention', 'uae', 'resident', 'travel', 'thailand', 'hassle', 'thailand', 'visa', 'application', 'service', 'offer', 'smooth', 'efficient', 'process', 'visa', 'need', 'touch', 'learn', 'service', 'today', 'enquiry', 'tosha']
__label__Positive ['go', 'live', 'amp', 'payment', 'major', 'category', 'integrate', 'internationalread']
__label__Positive ['osool', 'smart', 'application', 'society', 'signed', 'ministry', 'provide', 'buraq', 'mobile', 'application', 'document', 'certificate', 'delivery', 'service', 'uae', 'smart', 'delivery', 'solution']
__label__Neutral ['eth', 'wallet', 'code', 't']
__label__Positive ['elevate', 'shopping', 'experience', 'stay', 'updated', 'exclusive', 'offer', 'brand', 'love', 'alef', 'appdownload', 'alef', 'app', 'link']
__label__Neutral ['sir', 'dr', 'nishesh', 'khetpal', 'ra', 'al', 'khaimah', 'uae', 'indian', 'citizenwe', 'applied', 'visit', 'visa', 'wife', 'dr', 'kiran', 'baipakistan', 'national', 'passport', 'eavisa', 'application', 'number', 'aredindian', 'embassydubai', 'waiting', 'clearance', 'mhapls', 'help']
__label__Positive ['buy', 'pay', 'exclusive', 'offer', 'favorite', 'brand', 'using', 'alef', 'appdownload', 'alef', 'app', 'link']
__label__Positive ['are', 'true', 'potterheadname', 'character', 'comment', 'catch', 'showing', 'book', 'vox', 'app', 'visit']
__label__Neutral ['recommended', 'reading']
__label__Positive ['savor', 'taste', 'authentic', 'lebanese', 'cuisine', 'earn', 'bounz', 'aed', 'spent', 'download', 'bounz', 'app', 'cashback', 'bounz', 'reward', 'dine', 'takeaway', 'asli', 'beirut', 'make', 'meal', 'remember']
__label__Positive ['want', 'make', 'travelling', 'quick', 'easy', 'affordable', 'download', 's', 'app', 'plan', 'journey', 'accurate', 'timing', 'fare', 'dubai', 'metro', 'public', 'bus']
__label__Positive ['today', 'cx', 'world', 'cup', 'change', 'beekse', 'bergen', 'out', 'new', 'york', 'in', 'tour', 'antalya', 'cancelled']
__label__Neutral ['uae', 'mobile', 'data', 'offering', 'mobile', 'data', 'package', 'includes', 'county', 'valid', 'day']
__label__Positive ['remitly', 'send', 'money', 'loved', 'one', 'uaestart', 'gt']
__label__Negative ['in', 'today', 'cx', 'world', 'cup', 'change', 'beekse', 'bergen', 'out', 'new', 'york', 'in', 'tour', 'antalya', 'cancelled', 'wake', 'devastating', 'earthquake', 'turkey', 'poga', 'skip', 'uae', 'tour', 'race', 'insteadand', 'more', 'catch']
__label__Positive ['arab', 'region', 'making', 'headway', 'climate', 'change', 'say', 'official', 'mon', 'riyadh', 'event', 'iaee', 'conference', 'currently', 'underway', 'saudi', 'capital', 'cop', 'held', 'egypt', 'upcoming', 'cop', 'uae', 'important', 'milest']
__label__Positive ['remitly', 'send', 'money', 'loved', 'one', 'uaestart', 'gt']
__label__Positive ['haven', 'app', 'update', 'think', 'upgrade', 'backend']
__label__Neutral ['mk', 'replenishing', 'shampoo', 'specially', 'formulated', 'ensure', 'ultimate', 'protection', 'mk', 'hair', 'treatment', 'amp', 'conserve', 'brightness', 'softness', 'hairstore', 'app']
__label__Neutral ['test', 'eampmoney', 'etisalat', 'uae', 'got', 'valuable', 'giftsdownload', 'application', 'android', 'point', 'valuable', 'g']
__label__Positive ['an', 'unusual', 'love', 'triangle', 'heating', 'big', 'screen', 'watch', 'romantic', 'drama', 'starring', 'today', 'vox', 'app', 'visit']
__label__Neutral ['ace', 'time', 'request', 'bgyo', 'song', 'pm', 'pm', 'tag', 'radio', 'uae', 'downloading', 'play', 'playstore', 'app', 'f']
__label__Positive ['great', 'foodfood', 'experience', 'uae', 'list']
__label__Negative ['ask', 'just', 'informing', 'worst', 'experience', 'uae', 'purchased', 'online', 'order', 'application', 'online', 'purchase', 'worst', 'customer', 'service', 'dealt', 'uae']
__label__Neutral ['report', 'username', 'changed', 'enreachdao', 'gt', 'access', 'twitter', 'addsenreach', 'registration']
__label__Neutral ['uae', 'compliance', 'cornerthe', 'article', 'application', 'corporate', 'tax', 'family', 'foundation', 'trust', 'published', 'february']
__label__Positive ['bigger', 'better', 'surprise', 'star', 'cinemasdownload', 'app', 'book', 'ticket', 'online', 'avail', 'offer']
__label__Positive ['ready', 'new', 'school', 'term', 'fee', 'problem', 'download', 'pivot', 'pay', 'app', 'i']
__label__Neutral ['recommended', 'reading']
__label__Positive ['india', 'france', 'uae', 'join', 'hand', 'enhance', 'incorporate', 'defence', 'energy', 'followrtfav', 'mighty', 'winner', 'shiv', 'sant', 'rampal', 'ji', 'maharaj', 'app', 'kargil', 'taylor', 'ssrians', 'l']
__label__Neutral ['india', 'france', 'uae', 'join', 'hand', 'enhance', 'incorporate', 'defence', 'energy', 'followrtfav']
__label__Neutral ['recommended', 'reading']
__label__Positive ['india', 'france', 'uae', 'join', 'hand', 'enhance', 'incorporate', 'defence', 'energy', 'followrtfav', 'mighty', 'winner', 'shiv', 'sant', 'rampal', 'ji', 'maharaj', 'app', 'kargil', 'taylor', 'ssrians', 'l']
__label__Neutral ['recommended', 'reading']
__label__Positive ['admiring', 'afar', 'gonna', 'offer', 'permanent', 'job', 'offer', 'soon', 'yes', 'application', 'ap']
__label__Neutral ['try', 'bus', 'ondemand', 'service', 'abu', 'dhabi', 'link', 'operating', 'saadiyat', 'island', 'download', 'app', 'book', 'nearest', 'bus', 'your']
__label__Positive ['ready', 'new', 'school', 'term', 'fee', 'problem', 'download', 'pivot', 'pay', 'app', 'touch', 'whatsapp', 'on']
__label__Positive ['india', 'france', 'united', 'arab', 'emirate', 'saturday', 'agreed', 'trilateral', 'initiative', 'undertake', 'energy', 'project', 'focus', 'solar', 'nuclear', 'source', 'fight', 'climate', 'change', 'protect', 'biodiversity', 'particularly', 'indian', 'ocean', 'region']
__label__Positive ['like', 'man', 'app', 'buy', 'car', 'uae', 'dont', 'know', 'bros', 'aint', 'happy']
__label__Neutral ['doubt', 'uae']
__label__Neutral ['reminder', 'today', 'weekly', 'lesson', 'happening', 'masjid', 'khadijahhadith', 'no', 'pm', 'uae', 'timelive', 'ig', 'amp', 'tiktoklocation']
__label__Positive ['the', 'ranking', 'better', 'trading', 'volume', 'app', 'install', 'cmon', 'guy', 'u', 'ripped', 'uae', 'investor', 'ur', 'early', 'holder', 'like', 'ur', 'hungry', 'u', 'better', 'good', 'corner', 'start', 'pushing', 'smth', 'else', 'forget', 'crypto', 'die', 'trying']
__label__Positive ['swap', 'dozen', 'prisoner', 'war', 'thanks', 'mediation', 'wion', 'app', 'now', 'wion', 'app']
__label__Neutral ['uae', 'france', 'india', 'cooperate', 'energy', 'climate', 'adopt', 'implementation', 'roadmap', 'sat', 'london', 'uae', 'france', 'india', 'established', 'tripartite', 'cooperation', 'initiative', 'area', 'including', 'energy', 'climate', 'change']
__label__Positive ['thrilling', 'action', 'suspense', 'india', 'biggest', 'star', 'don', 'miss', 'showing', 'book', 'on']
__label__Neutral ['covered', 'pathpicture', 'road', 'covered', 'sand', 'middle', 'desert', 'story', 'photo', 'price', 'ethlocation', 'uae']
__label__Positive ['ridehailing', 'app', 'announced', 'launch', 'loyalty', 'programme', 'giving', 'commuter', 'chance', 'free', 'ride', 'scheme', 'called', 'available', 'user']
__label__Positive ['adding', 'love', 'wait', 'inform', 'app', 'offline', 'amp', 'update', 'pm', 'uae', 'timewe', 'realize', 'extremely', 'excited', 'anxiously', 'waiting', 'start', 'earning', 'lovewe', 'live', 'hour']
__label__Positive ['adding', 'love', 'wait', 'inform', 'app', 'offline', 'amp', 'update', 'pm', 'uae', 'timewe', 'realize', 'extremely', 'excited', 'anxiously', 'waiting', 'start', 'earning', 'lovewe', 'live', 'hour']
__label__Neutral ['agree', 'need', 'people', 'just', 'breath', 'hodl', 'let', 'run', 'load']
__label__Neutral ['are', 'getting', 'refusal', 'ongoing', 'visa', 'application', 'visit', 'visasuper', 'visa', 'study', 'permit', 'work', 'permit']
__label__Neutral ['chinese', 'passport', 'lost', 'apply', 'reissued', 'consulate', 'app', 'st']
__label__Neutral ['offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withonline', 'class', 'homework', 'assignment', 'exam', 'help', 'e']
__label__Neutral ['offer', 'online', 'class', 'homework', 'assignment', 'exam', 'expert', 'help', 'withonline', 'class', 'homework', 'assignment', 'exam', 'help', 'expert']