-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathinsert_tables.sql
More file actions
2734 lines (2721 loc) · 285 KB
/
Copy pathinsert_tables.sql
File metadata and controls
2734 lines (2721 loc) · 285 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
-- Insert languages:
INSERT INTO `language` (`languageId`, `isDefaultLang`) VALUES ('ar', false);
INSERT INTO `language` (`languageId`, `isDefaultLang`) VALUES ('en', true);
INSERT INTO `languageTranslation` (`languageId`, `langId`, `languageName`) VALUES ('ar' ,'ar', 'العربية (AR)');
INSERT INTO `languageTranslation` (`languageId`, `langId`, `languageName`) VALUES ('ar' ,'en', 'Arabic (AR)');
INSERT INTO `languageTranslation` (`languageId`, `langId`, `languageName`) VALUES ('en' ,'ar', 'الإنجليزية (EN)');
INSERT INTO `languageTranslation` (`languageId`, `langId`, `languageName`) VALUES ('en' ,'en', 'English (EN)');
-- Insert themes:
INSERT INTO `theme` (`themeId`) VALUES ('default');
INSERT INTO `theme` (`themeId`) VALUES ('ace');
INSERT INTO `theme` (`themeId`) VALUES ('schooly');
INSERT INTO `theme` (`themeId`) VALUES ('greenish');
INSERT INTO `theme` (`themeId`) VALUES ('purplish');
INSERT INTO `theme` (`themeId`) VALUES ('cerulean');
INSERT INTO `theme` (`themeId`) VALUES ('cosmo');
INSERT INTO `theme` (`themeId`) VALUES ('cyborg');
INSERT INTO `theme` (`themeId`) VALUES ('darkly');
INSERT INTO `theme` (`themeId`) VALUES ('flatly');
INSERT INTO `theme` (`themeId`) VALUES ('journal');
INSERT INTO `theme` (`themeId`) VALUES ('litera');
INSERT INTO `theme` (`themeId`) VALUES ('lumen');
INSERT INTO `theme` (`themeId`) VALUES ('lux');
INSERT INTO `theme` (`themeId`) VALUES ('materia');
INSERT INTO `theme` (`themeId`) VALUES ('minty');
INSERT INTO `theme` (`themeId`) VALUES ('pulse');
INSERT INTO `theme` (`themeId`) VALUES ('sandstone');
INSERT INTO `theme` (`themeId`) VALUES ('simplex');
INSERT INTO `theme` (`themeId`) VALUES ('sketchy');
INSERT INTO `theme` (`themeId`) VALUES ('slate');
INSERT INTO `theme` (`themeId`) VALUES ('solar');
INSERT INTO `theme` (`themeId`) VALUES ('spacelab');
INSERT INTO `theme` (`themeId`) VALUES ('superhero');
INSERT INTO `theme` (`themeId`) VALUES ('united');
INSERT INTO `theme` (`themeId`) VALUES ('yeti');
INSERT INTO `theme` (`themeId`) VALUES ('office-white');
INSERT INTO `theme` (`themeId`) VALUES ('purple');
INSERT INTO `theme` (`themeId`) VALUES ('blazing-berry');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'default','العادي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'default','Default');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'ace','أسي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'ace','Ace');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'schooly','سكولي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'schooly','Schooly');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'greenish','خضاري');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'greenish','Greenish');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'purplish','الأرجواني');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'purplish','Purplish');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'cerulean','سماوي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'cerulean','Cerulean');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'cosmo','كوزمو');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'cosmo','Cosmo');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'cyborg','سايبورغ');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'cyborg','Cyborg');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'darkly','ظلامي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'darkly','Darkly');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'flatly','مسطح');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'flatly','Flatly');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'journal','مفعم');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'journal','Journal');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'litera','يتيرا');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'litera','Litera');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'lumen','مجوف');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'lumen','Lumen');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'lux','لوكس');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'lux','Lux');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'materia','مادي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'materia','Materia');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'minty','نعنعي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'minty','Minty');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'pulse','نبضي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'pulse','Pulse');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'sandstone','حجر رملي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'sandstone','Sandstone');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'simplex','بسيطي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'simplex','Simplex');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'sketchy','رسمي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'sketchy','Sketchy');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'slate','سليت');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'slate','Slate');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'solar','شمسي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'solar','Solar');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'spacelab','فضائي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'spacelab','Spacelab');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'superhero','خارق');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'superhero','Superhero');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'united','متحد');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'united','United');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'yeti','اليتي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'yeti','Yeti');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'office-white','المكتب البياضي');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'office-white','Office White');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'purple','أرجواني');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'purple','Purple');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('ar', 'blazing-berry','التوت المتوهج');
INSERT INTO `themeTranslation` (`langId`, `themeId`, `themeName`) VALUES ('en', 'blazing-berry','Blazing Berry');
-- Insert Countries:
INSERT INTO `country` (`countryId`) VALUES ('AD');
INSERT INTO `country` (`countryId`) VALUES ('AE');
INSERT INTO `country` (`countryId`) VALUES ('AF');
INSERT INTO `country` (`countryId`) VALUES ('AI');
INSERT INTO `country` (`countryId`) VALUES ('AL');
INSERT INTO `country` (`countryId`) VALUES ('AM');
INSERT INTO `country` (`countryId`) VALUES ('AN');
INSERT INTO `country` (`countryId`) VALUES ('AO');
INSERT INTO `country` (`countryId`) VALUES ('AQ');
INSERT INTO `country` (`countryId`) VALUES ('AR');
INSERT INTO `country` (`countryId`) VALUES ('AS');
INSERT INTO `country` (`countryId`) VALUES ('AT');
INSERT INTO `country` (`countryId`) VALUES ('AU');
INSERT INTO `country` (`countryId`) VALUES ('AW');
INSERT INTO `country` (`countryId`) VALUES ('AZ');
INSERT INTO `country` (`countryId`) VALUES ('BA');
INSERT INTO `country` (`countryId`) VALUES ('BB');
INSERT INTO `country` (`countryId`) VALUES ('BD');
INSERT INTO `country` (`countryId`) VALUES ('BE');
INSERT INTO `country` (`countryId`) VALUES ('BF');
INSERT INTO `country` (`countryId`) VALUES ('BG');
INSERT INTO `country` (`countryId`) VALUES ('BH');
INSERT INTO `country` (`countryId`) VALUES ('BI');
INSERT INTO `country` (`countryId`) VALUES ('BJ');
INSERT INTO `country` (`countryId`) VALUES ('BL');
INSERT INTO `country` (`countryId`) VALUES ('BM');
INSERT INTO `country` (`countryId`) VALUES ('BN');
INSERT INTO `country` (`countryId`) VALUES ('BO');
INSERT INTO `country` (`countryId`) VALUES ('BQ');
INSERT INTO `country` (`countryId`) VALUES ('BR');
INSERT INTO `country` (`countryId`) VALUES ('BS');
INSERT INTO `country` (`countryId`) VALUES ('BT');
INSERT INTO `country` (`countryId`) VALUES ('BV');
INSERT INTO `country` (`countryId`) VALUES ('BW');
INSERT INTO `country` (`countryId`) VALUES ('BY');
INSERT INTO `country` (`countryId`) VALUES ('BZ');
INSERT INTO `country` (`countryId`) VALUES ('CA');
INSERT INTO `country` (`countryId`) VALUES ('CC');
INSERT INTO `country` (`countryId`) VALUES ('CD');
INSERT INTO `country` (`countryId`) VALUES ('CF');
INSERT INTO `country` (`countryId`) VALUES ('CG');
INSERT INTO `country` (`countryId`) VALUES ('CH');
INSERT INTO `country` (`countryId`) VALUES ('CI');
INSERT INTO `country` (`countryId`) VALUES ('CK');
INSERT INTO `country` (`countryId`) VALUES ('CL');
INSERT INTO `country` (`countryId`) VALUES ('CM');
INSERT INTO `country` (`countryId`) VALUES ('CN');
INSERT INTO `country` (`countryId`) VALUES ('CO');
INSERT INTO `country` (`countryId`) VALUES ('CR');
INSERT INTO `country` (`countryId`) VALUES ('CU');
INSERT INTO `country` (`countryId`) VALUES ('CV');
INSERT INTO `country` (`countryId`) VALUES ('CX');
INSERT INTO `country` (`countryId`) VALUES ('CY');
INSERT INTO `country` (`countryId`) VALUES ('CZ');
INSERT INTO `country` (`countryId`) VALUES ('DE');
INSERT INTO `country` (`countryId`) VALUES ('DJ');
INSERT INTO `country` (`countryId`) VALUES ('DK');
INSERT INTO `country` (`countryId`) VALUES ('DM');
INSERT INTO `country` (`countryId`) VALUES ('DO');
INSERT INTO `country` (`countryId`) VALUES ('DZ');
INSERT INTO `country` (`countryId`) VALUES ('EC');
INSERT INTO `country` (`countryId`) VALUES ('EE');
INSERT INTO `country` (`countryId`) VALUES ('EG');
INSERT INTO `country` (`countryId`) VALUES ('EH');
INSERT INTO `country` (`countryId`) VALUES ('ER');
INSERT INTO `country` (`countryId`) VALUES ('ES');
INSERT INTO `country` (`countryId`) VALUES ('ET');
INSERT INTO `country` (`countryId`) VALUES ('FI');
INSERT INTO `country` (`countryId`) VALUES ('FJ');
INSERT INTO `country` (`countryId`) VALUES ('FK');
INSERT INTO `country` (`countryId`) VALUES ('FM');
INSERT INTO `country` (`countryId`) VALUES ('FO');
INSERT INTO `country` (`countryId`) VALUES ('FR');
INSERT INTO `country` (`countryId`) VALUES ('GA');
INSERT INTO `country` (`countryId`) VALUES ('GB');
INSERT INTO `country` (`countryId`) VALUES ('GD');
INSERT INTO `country` (`countryId`) VALUES ('GE');
INSERT INTO `country` (`countryId`) VALUES ('GF');
INSERT INTO `country` (`countryId`) VALUES ('GH');
INSERT INTO `country` (`countryId`) VALUES ('GI');
INSERT INTO `country` (`countryId`) VALUES ('GL');
INSERT INTO `country` (`countryId`) VALUES ('GM');
INSERT INTO `country` (`countryId`) VALUES ('GN');
INSERT INTO `country` (`countryId`) VALUES ('GP');
INSERT INTO `country` (`countryId`) VALUES ('GQ');
INSERT INTO `country` (`countryId`) VALUES ('GR');
INSERT INTO `country` (`countryId`) VALUES ('GS');
INSERT INTO `country` (`countryId`) VALUES ('GT');
INSERT INTO `country` (`countryId`) VALUES ('GU');
INSERT INTO `country` (`countryId`) VALUES ('GW');
INSERT INTO `country` (`countryId`) VALUES ('GY');
INSERT INTO `country` (`countryId`) VALUES ('HK');
INSERT INTO `country` (`countryId`) VALUES ('HM');
INSERT INTO `country` (`countryId`) VALUES ('HN');
INSERT INTO `country` (`countryId`) VALUES ('HR');
INSERT INTO `country` (`countryId`) VALUES ('HT');
INSERT INTO `country` (`countryId`) VALUES ('HU');
INSERT INTO `country` (`countryId`) VALUES ('ID');
INSERT INTO `country` (`countryId`) VALUES ('IE');
INSERT INTO `country` (`countryId`) VALUES ('IL');
INSERT INTO `country` (`countryId`) VALUES ('IN');
INSERT INTO `country` (`countryId`) VALUES ('IO');
INSERT INTO `country` (`countryId`) VALUES ('IQ');
INSERT INTO `country` (`countryId`) VALUES ('IR');
INSERT INTO `country` (`countryId`) VALUES ('IS');
INSERT INTO `country` (`countryId`) VALUES ('IT');
INSERT INTO `country` (`countryId`) VALUES ('JE');
INSERT INTO `country` (`countryId`) VALUES ('JM');
INSERT INTO `country` (`countryId`) VALUES ('JO');
INSERT INTO `country` (`countryId`) VALUES ('JP');
INSERT INTO `country` (`countryId`) VALUES ('KE');
INSERT INTO `country` (`countryId`) VALUES ('KG');
INSERT INTO `country` (`countryId`) VALUES ('KH');
INSERT INTO `country` (`countryId`) VALUES ('KI');
INSERT INTO `country` (`countryId`) VALUES ('KM');
INSERT INTO `country` (`countryId`) VALUES ('KN');
INSERT INTO `country` (`countryId`) VALUES ('KP');
INSERT INTO `country` (`countryId`) VALUES ('KR');
INSERT INTO `country` (`countryId`) VALUES ('KW');
INSERT INTO `country` (`countryId`) VALUES ('KY');
INSERT INTO `country` (`countryId`) VALUES ('KZ');
INSERT INTO `country` (`countryId`) VALUES ('LA');
INSERT INTO `country` (`countryId`) VALUES ('LB');
INSERT INTO `country` (`countryId`) VALUES ('LC');
INSERT INTO `country` (`countryId`) VALUES ('LI');
INSERT INTO `country` (`countryId`) VALUES ('LK');
INSERT INTO `country` (`countryId`) VALUES ('LR');
INSERT INTO `country` (`countryId`) VALUES ('LS');
INSERT INTO `country` (`countryId`) VALUES ('LT');
INSERT INTO `country` (`countryId`) VALUES ('LU');
INSERT INTO `country` (`countryId`) VALUES ('LV');
INSERT INTO `country` (`countryId`) VALUES ('LY');
INSERT INTO `country` (`countryId`) VALUES ('MA');
INSERT INTO `country` (`countryId`) VALUES ('MC');
INSERT INTO `country` (`countryId`) VALUES ('MD');
INSERT INTO `country` (`countryId`) VALUES ('MF');
INSERT INTO `country` (`countryId`) VALUES ('MG');
INSERT INTO `country` (`countryId`) VALUES ('MH');
INSERT INTO `country` (`countryId`) VALUES ('MK');
INSERT INTO `country` (`countryId`) VALUES ('ML');
INSERT INTO `country` (`countryId`) VALUES ('MM');
INSERT INTO `country` (`countryId`) VALUES ('MN');
INSERT INTO `country` (`countryId`) VALUES ('MO');
INSERT INTO `country` (`countryId`) VALUES ('MP');
INSERT INTO `country` (`countryId`) VALUES ('MQ');
INSERT INTO `country` (`countryId`) VALUES ('MR');
INSERT INTO `country` (`countryId`) VALUES ('MS');
INSERT INTO `country` (`countryId`) VALUES ('MT');
INSERT INTO `country` (`countryId`) VALUES ('MU');
INSERT INTO `country` (`countryId`) VALUES ('MV');
INSERT INTO `country` (`countryId`) VALUES ('MW');
INSERT INTO `country` (`countryId`) VALUES ('MX');
INSERT INTO `country` (`countryId`) VALUES ('MY');
INSERT INTO `country` (`countryId`) VALUES ('MZ');
INSERT INTO `country` (`countryId`) VALUES ('NA');
INSERT INTO `country` (`countryId`) VALUES ('NC');
INSERT INTO `country` (`countryId`) VALUES ('NE');
INSERT INTO `country` (`countryId`) VALUES ('NF');
INSERT INTO `country` (`countryId`) VALUES ('NG');
INSERT INTO `country` (`countryId`) VALUES ('NI');
INSERT INTO `country` (`countryId`) VALUES ('NL');
INSERT INTO `country` (`countryId`) VALUES ('NO');
INSERT INTO `country` (`countryId`) VALUES ('NP');
INSERT INTO `country` (`countryId`) VALUES ('NR');
INSERT INTO `country` (`countryId`) VALUES ('NU');
INSERT INTO `country` (`countryId`) VALUES ('NZ');
INSERT INTO `country` (`countryId`) VALUES ('OM');
INSERT INTO `country` (`countryId`) VALUES ('PA');
INSERT INTO `country` (`countryId`) VALUES ('PE');
INSERT INTO `country` (`countryId`) VALUES ('PF');
INSERT INTO `country` (`countryId`) VALUES ('PG');
INSERT INTO `country` (`countryId`) VALUES ('PH');
INSERT INTO `country` (`countryId`) VALUES ('PK');
INSERT INTO `country` (`countryId`) VALUES ('PL');
INSERT INTO `country` (`countryId`) VALUES ('PM');
INSERT INTO `country` (`countryId`) VALUES ('PN');
INSERT INTO `country` (`countryId`) VALUES ('PR');
INSERT INTO `country` (`countryId`) VALUES ('PT');
INSERT INTO `country` (`countryId`) VALUES ('PW');
INSERT INTO `country` (`countryId`) VALUES ('PY');
INSERT INTO `country` (`countryId`) VALUES ('QA');
INSERT INTO `country` (`countryId`) VALUES ('RE');
INSERT INTO `country` (`countryId`) VALUES ('RO');
INSERT INTO `country` (`countryId`) VALUES ('RU');
INSERT INTO `country` (`countryId`) VALUES ('RW');
INSERT INTO `country` (`countryId`) VALUES ('SA');
INSERT INTO `country` (`countryId`) VALUES ('SB');
INSERT INTO `country` (`countryId`) VALUES ('SC');
INSERT INTO `country` (`countryId`) VALUES ('SD');
INSERT INTO `country` (`countryId`) VALUES ('SE');
INSERT INTO `country` (`countryId`) VALUES ('SG');
INSERT INTO `country` (`countryId`) VALUES ('SH');
INSERT INTO `country` (`countryId`) VALUES ('SI');
INSERT INTO `country` (`countryId`) VALUES ('SJ');
INSERT INTO `country` (`countryId`) VALUES ('SK');
INSERT INTO `country` (`countryId`) VALUES ('SL');
INSERT INTO `country` (`countryId`) VALUES ('SM');
INSERT INTO `country` (`countryId`) VALUES ('SN');
INSERT INTO `country` (`countryId`) VALUES ('SO');
INSERT INTO `country` (`countryId`) VALUES ('SR');
INSERT INTO `country` (`countryId`) VALUES ('ST');
INSERT INTO `country` (`countryId`) VALUES ('SV');
INSERT INTO `country` (`countryId`) VALUES ('SX');
INSERT INTO `country` (`countryId`) VALUES ('SY');
INSERT INTO `country` (`countryId`) VALUES ('SZ');
INSERT INTO `country` (`countryId`) VALUES ('TC');
INSERT INTO `country` (`countryId`) VALUES ('TD');
INSERT INTO `country` (`countryId`) VALUES ('TF');
INSERT INTO `country` (`countryId`) VALUES ('TG');
INSERT INTO `country` (`countryId`) VALUES ('TH');
INSERT INTO `country` (`countryId`) VALUES ('TJ');
INSERT INTO `country` (`countryId`) VALUES ('TK');
INSERT INTO `country` (`countryId`) VALUES ('TM');
INSERT INTO `country` (`countryId`) VALUES ('TN');
INSERT INTO `country` (`countryId`) VALUES ('TO');
INSERT INTO `country` (`countryId`) VALUES ('TR');
INSERT INTO `country` (`countryId`) VALUES ('TT');
INSERT INTO `country` (`countryId`) VALUES ('TV');
INSERT INTO `country` (`countryId`) VALUES ('TW');
INSERT INTO `country` (`countryId`) VALUES ('TZ');
INSERT INTO `country` (`countryId`) VALUES ('UA');
INSERT INTO `country` (`countryId`) VALUES ('UG');
INSERT INTO `country` (`countryId`) VALUES ('UM');
INSERT INTO `country` (`countryId`) VALUES ('US');
INSERT INTO `country` (`countryId`) VALUES ('UY');
INSERT INTO `country` (`countryId`) VALUES ('UZ');
INSERT INTO `country` (`countryId`) VALUES ('VA');
INSERT INTO `country` (`countryId`) VALUES ('VC');
INSERT INTO `country` (`countryId`) VALUES ('VE');
INSERT INTO `country` (`countryId`) VALUES ('VG');
INSERT INTO `country` (`countryId`) VALUES ('VI');
INSERT INTO `country` (`countryId`) VALUES ('VN');
INSERT INTO `country` (`countryId`) VALUES ('VU');
INSERT INTO `country` (`countryId`) VALUES ('WF');
INSERT INTO `country` (`countryId`) VALUES ('WS');
INSERT INTO `country` (`countryId`) VALUES ('YE');
INSERT INTO `country` (`countryId`) VALUES ('YT');
INSERT INTO `country` (`countryId`) VALUES ('ZA');
INSERT INTO `country` (`countryId`) VALUES ('ZM');
INSERT INTO `country` (`countryId`) VALUES ('ZW');
INSERT INTO `country` (`countryId`) VALUES ('AX');
INSERT INTO `country` (`countryId`) VALUES ('PS');
INSERT INTO `country` (`countryId`) VALUES ('AG');
INSERT INTO `country` (`countryId`) VALUES ('RS');
INSERT INTO `country` (`countryId`) VALUES ('SS');
INSERT INTO `country` (`countryId`) VALUES ('GG');
INSERT INTO `country` (`countryId`) VALUES ('CW');
INSERT INTO `country` (`countryId`) VALUES ('TL');
INSERT INTO `country` (`countryId`) VALUES ('IM');
INSERT INTO `country` (`countryId`) VALUES ('ME');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AX','ar','جزر أولاند');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AX','en','Åland Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PS','ar','دولة فلسطين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PS','en','State of Palestine');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AG','ar','أنتيغوا وباربودا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AG','en','Antigua and Barbuda');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('RS','ar','جمهورية صربيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('RS','en','The Republic of Serbia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SS','ar','جمهورية جنوب السودان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SS','en','the Republic of South Sudan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GG','ar','جزيرة غيرنزي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GG','en','Bailiwick of Guernsey');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CW','ar','جزيرة كوراساو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CW','en','Country of Curaçao');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TL','ar','جمهورية تيمور الشرقية الديمقراطية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TL','en','the Democratic Republic of Timor-Leste');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IM','ar','جزيرة مان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IM','en','Isle of Man');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ME','ar','الجبل الأسود أو مونتينيغرو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ME','en','Montenegro');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AD','ar','أندورا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AD','en','Andorra');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AE','ar','الإمارات العربية المتحدة');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AE','en','United Arab Emirates');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AF','ar','أفغانستان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AF','en','Afghanistan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AI','ar','أنغيلا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AI','en','Anguilla');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AL','ar','ألبانيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AL','en','Albania');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AM','ar','أرمينيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AM','en','Armenia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AN','ar','جزر الأنتيل الهولندية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AN','en','Netherlands Antilles');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AO','ar','أنغولا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AO','en','Angola');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AQ','ar','القارة القطبية الجنوبية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AQ','en','Antarctica');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AR','ar','الأرجنتين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AR','en','Argentina');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AS','ar','ساموا الأمريكية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AS','en','American Samoa');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AT','ar','النمسا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AT','en','Austria');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AU','ar','أستراليا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AU','en','Australia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AW','ar','أروبا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AW','en','Aruba');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AZ','ar','أذربيجان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('AZ','en','Azerbaijan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BA','ar','البوسنة والهرسك');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BA','en','Bosnia and Herzegovina');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BB','ar','بربادوس');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BB','en','Barbados');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BD','ar','بنغلاديش');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BD','en','Bangladesh');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BE','ar','بلجيكا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BE','en','Belgium');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BF','ar','بوركينا فاسو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BF','en','Burkina Faso');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BG','ar','بلغاريا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BG','en','Bulgaria');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BH','ar','البحرين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BH','en','Bahrain');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BI','ar','بوروندي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BI','en','Burundi');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BJ','ar','بنين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BJ','en','Benin');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BL','ar','سانت بارتيليمي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BL','en','Saint Barthelemy');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BM','ar','برمودا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BM','en','Bermuda');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BN','ar','بروناي دار السلام');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BN','en','Brunei Darussalam');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BO','ar','بوليفيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BO','en','Bolivia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BQ','ar','الجزر الكاريبية الهولندية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BQ','en','Caribbean Netherlands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BR','ar','البرازيل');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BR','en','Brazil');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BS','ar','الباهاما');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BS','en','Bahamas');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BT','ar','بوتان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BT','en','Bhutan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BV','ar','جزيرة بوفيت');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BV','en','Bouvet Island');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BW','ar','بوتسوانا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BW','en','Botswana');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BY','ar','روسيا البيضاء');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BY','en','Belarus');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BZ','ar','بليز');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('BZ','en','Belize');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CA','ar','كندا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CA','en','Canada');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CC','ar','جزر كوكوس (كيلينغ)');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CC','en','Cocos (Keeling) Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CD','ar','الكونغو ، جمهورية الكونغو الديمقراطية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CD','en','Congo, the Democratic Republic of the');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CF','ar','جمهورية افريقيا الوسطى');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CF','en','Central African Republic');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CG','ar','الكونغو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CG','en','Congo');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CH','ar','سويسرا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CH','en','Switzerland');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CI','ar','كوت ديفوار');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CI','en','Cote d''Ivoire');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CK','ar','جزر كوك');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CK','en','Cook Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CL','ar','تشيلي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CL','en','Chile');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CM','ar','الكاميرون');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CM','en','Cameroon');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CN','ar','الصين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CN','en','China');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CO','ar','كولومبيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CO','en','Colombia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CR','ar','كوستا ريكا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CR','en','Costa Rica');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CU','ar','كوبا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CU','en','Cuba');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CV','ar','الرأس الأخضر');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CV','en','Cape Verde');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CX','ar','جزيرة الكريسماس');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CX','en','Christmas Island');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CY','ar','قبرص');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CY','en','Cyprus');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CZ','ar','جمهورية التشيك');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('CZ','en','Czech Republic');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DE','ar','ألمانيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DE','en','Germany');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DJ','ar','جيبوتي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DJ','en','Djibouti');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DK','ar','الدنمارك');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DK','en','Denmark');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DM','ar','دومينيكا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DM','en','Dominica');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DO','ar','جمهورية الدومنيكان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DO','en','Dominican Republic');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DZ','ar','الجزائر');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('DZ','en','Algeria');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('EC','ar','الإكوادور');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('EC','en','Ecuador');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('EE','ar','استونيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('EE','en','Estonia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('EG','ar','مصر');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('EG','en','Egypt');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('EH','ar','الصحراء الغربية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('EH','en','Western Sahara');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ER','ar','إريتريا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ER','en','Eritrea');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ES','ar','إسبانيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ES','en','Spain');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ET','ar','أثيوبيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ET','en','Ethiopia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FI','ar','فنلندا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FI','en','Finland');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FJ','ar','فيجي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FJ','en','Fiji');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FK','ar','جزر فوكلاند');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FK','en','Falkland Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FM','ar','ولايات ميكرونيزيا الموحدة');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FM','en','Federated States of Micronesia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FO','ar','جزر صناعية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FO','en','Faroe Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FR','ar','فرنسا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('FR','en','France');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GA','ar','الغابون');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GA','en','Gabon');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GB','ar','المملكة المتحدة');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GB','en','United Kingdom');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GD','ar','غرينادا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GD','en','Grenada');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GE','ar','جورجيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GE','en','Georgia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GF','ar','غيانا الفرنسية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GF','en','French Guiana');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GH','ar','غانا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GH','en','Ghana');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GI','ar','جبل طارق');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GI','en','Gibraltar');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GL','ar','الأرض الخضراء');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GL','en','Greenland');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GM','ar','غامبيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GM','en','Gambia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GN','ar','غينيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GN','en','Guinea');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GP','ar','جوادلوب');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GP','en','Guadeloupe');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GQ','ar','غينيا الإستوائية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GQ','en','Equatorial Guinea');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GR','ar','اليونان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GR','en','Greece');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GS','ar','جورجيا الجنوبية وجزر ساندويتش الجنوبية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GS','en','South Georgia and the South Sandwich Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GT','ar','غواتيمالا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GT','en','Guatemala');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GU','ar','غوام');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GU','en','Guam');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GW','ar','غينيا بيساو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GW','en','Guinea-Bissau');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GY','ar','غيانا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('GY','en','Guyana');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HK','ar','هونغ كونغ');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HK','en','Hong Kong');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HM','ar','هيرد وماك دونالد جزر');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HM','en','Heard and Mc Donald Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HN','ar','هندوراس');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HN','en','Honduras');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HR','ar','كرواتيا (هرفاتسكا)');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HR','en','Croatia (Hrvatska)');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HT','ar','هايتي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HT','en','Haiti');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HU','ar','اليونان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('HU','en','Hungary');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ID','ar','أندونيسيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ID','en','Indonesia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IE','ar','أيرلندا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IE','en','Ireland');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IL','ar','إسرائيل');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IL','en','Israel');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IN','ar','الهند');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IN','en','India');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IO','ar','إقليم المحيط البريطاني الهندي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IO','en','British Indian Ocean Territory');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IQ','ar','العراق');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IQ','en','Iraq');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IR','ar','إيران');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IR','en','Iran');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IS','ar','أيسلندا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IS','en','Iceland');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IT','ar','إيطاليا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('IT','en','Italy');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('JE','ar','جيرزي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('JE','en','Jersey');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('JM','ar','جامايكا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('JM','en','Jamaica');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('JO','ar','الأردن');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('JO','en','Jordan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('JP','ar','اليابان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('JP','en','Japan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KE','ar','كينيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KE','en','Kenya');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KG','ar','قرغيزستان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KG','en','Kyrgyzstan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KH','ar','كمبوديا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KH','en','Cambodia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KI','ar','كيريباس');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KI','en','Kiribati');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KM','ar','جزر القمر');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KM','en','Comoros');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KN','ar','سانت كيتس ونيفيس');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KN','en','Saint Kitts and Nevis');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KP','ar','كوريا الشمالية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KP','en','North Korea');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KR','ar','جمهورية كوريا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KR','en','Korea, Republic of');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KW','ar','الكويت');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KW','en','Kuwait');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KY','ar','جزر كايمان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KY','en','Cayman Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KZ','ar','كازاخستان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('KZ','en','Kazakhstan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LA','ar','لاوس');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LA','en','Laos');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LB','ar','لبنان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LB','en','Lebanon');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LC','ar','القديسة لوسيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LC','en','Saint LUCIA');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LI','ar','ليختنشتاين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LI','en','Liechtenstein');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LK','ar','سيريلانكا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LK','en','Sri Lanka');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LR','ar','ليبيريا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LR','en','Liberia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LS','ar','ليسوتو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LS','en','Lesotho');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LT','ar','ليتوانيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LT','en','Lithuania');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LU','ar','لوكسمبورغ');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LU','en','Luxembourg');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LV','ar','لاتفيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LV','en','Latvia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LY','ar','الجماهيرية العربية الليبية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('LY','en','Libyan Arab Jamahiriya');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MA','ar','المغرب');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MA','en','Morocco');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MC','ar','موناكو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MC','en','Monaco');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MD','ar','مولدوفا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MD','en','Moldova');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MF','ar','تجمع سان مارتين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MF','en','Collectivity of Saint Martin');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MG','ar','مدغشقر');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MG','en','Madagascar');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MH','ar','جزر مارشال');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MH','en','Marshall Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MK','ar','مقدونيا ، جمهورية يوغوسلافيا السابقة');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MK','en','Macedonia, The Former Yugoslav Republic of');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ML','ar','مالي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ML','en','Mali');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MM','ar','ميانمار');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MM','en','Myanmar');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MN','ar','منغوليا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MN','en','Mongolia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MO','ar','ماكاو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MO','en','Macau');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MP','ar','جزر مريانا الشمالية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MP','en','Northern Mariana Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MQ','ar','مارتينيك');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MQ','en','Martinique');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MR','ar','موريتانيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MR','en','Mauritania');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MS','ar','مونتسيرات');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MS','en','Montserrat');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MT','ar','مالطا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MT','en','Malta');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MU','ar','موريشيوس');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MU','en','Mauritius');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MV','ar','جزر المالديف');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MV','en','Maldives');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MW','ar','مالاوي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MW','en','Malawi');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MX','ar','المكسيك');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MX','en','Mexico');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MY','ar','ماليزيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MY','en','Malaysia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MZ','ar','موزمبيق');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('MZ','en','Mozambique');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NA','ar','ناميبيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NA','en','Namibia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NC','ar','كاليدونيا الجديدة');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NC','en','New Caledonia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NE','ar','النيجر');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NE','en','Niger');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NF','ar','جزيرة نورفولك');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NF','en','Norfolk Island');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NG','ar','نيجيريا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NG','en','Nigeria');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NI','ar','نيكاراغوا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NI','en','Nicaragua');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NL','ar','هولندا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NL','en','Netherlands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NO','ar','النرويج');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NO','en','Norway');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NP','ar','نيبال');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NP','en','Nepal');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NR','ar','ناورو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NR','en','Nauru');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NU','ar','نيوي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NU','en','Niue');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NZ','ar','نيوزيلندا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('NZ','en','New Zealand');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('OM','ar','سلطنة عمان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('OM','en','Oman');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PA','ar','بناما');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PA','en','Panama');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PE','ar','بيرو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PE','en','Peru');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PF','ar','بولينيزيا الفرنسية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PF','en','French Polynesia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PG','ar','بابوا غينيا الجديدة');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PG','en','Papua New Guinea');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PH','ar','الفلبين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PH','en','Philippines');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PK','ar','باكستان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PK','en','Pakistan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PL','ar','بولندا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PL','en','Poland');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PM','ar','سان بيير وميكلون');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PM','en','Saint Pierre and Miquelon');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PN','ar','بيتكيرن');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PN','en','Pitcairn');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PR','ar','بورتوريكو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PR','en','Puerto Rico');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PT','ar','البرتغال');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PT','en','Portugal');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PW','ar','بالاو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PW','en','Palau');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PY','ar','باراغواي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('PY','en','Paraguay');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('QA','ar','دولة قطر');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('QA','en','Qatar');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('RE','ar','جمع شمل');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('RE','en','Reunion');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('RO','ar','رومانيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('RO','en','Romania');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('RU','ar','روسيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('RU','en','Russia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('RW','ar','رواندا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('RW','en','Rwanda');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SA','ar','المملكة العربية السعودية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SA','en','Saudi Arabia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SB','ar','جزر سليمان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SB','en','Solomon Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SC','ar','سيشيل');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SC','en','Seychelles');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SD','ar','سودان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SD','en','Sudan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SE','ar','السويد');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SE','en','Sweden');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SG','ar','سنغافورة');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SG','en','Singapore');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SH','ar','سانت هيلانة');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SH','en','St. Helena');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SI','ar','سلوفينيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SI','en','Slovenia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SJ','ar','جزر سفالبارد وجان ماين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SJ','en','Svalbard and Jan Mayen Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SK','ar','سلوفاكيا (جمهورية سلوفاكيا)');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SK','en','Slovakia (Slovak Republic)');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SL','ar','سيرا ليون');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SL','en','Sierra Leone');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SM','ar','سان مارينو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SM','en','San Marino');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SN','ar','السنغال');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SN','en','Senegal');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SO','ar','الصومال');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SO','en','Somalia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SR','ar','سورينام');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SR','en','Suriname');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ST','ar','ساو تومي وبرنسيبي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ST','en','Sao Tome and Principe');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SV','ar','السلفادور');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SV','en','El Salvador');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SX','ar','سينت مارتن');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SX','en','Sint Maarten');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SY','ar','الجمهورية العربية السورية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SY','en','Syrian Arab Republic');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SZ','ar','سوازيلاند');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('SZ','en','Swaziland');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TC','ar','جزر تركس وكايكوس');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TC','en','Turks and Caicos Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TD','ar','تشاد');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TD','en','Chad');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TF','ar','المناطق الجنوبية لفرنسا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TF','en','French Southern Territories');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TG','ar','ليذهب');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TG','en','Togo');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TH','ar','تايلاند');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TH','en','Thailand');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TJ','ar','طاجيكستان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TJ','en','Tajikistan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TK','ar','توكيلاو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TK','en','Tokelau');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TM','ar','تركمانستان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TM','en','Turkmenistan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TN','ar','تونس');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TN','en','Tunisia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TO','ar','تونغا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TO','en','Tonga');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TR','ar','ديك رومي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TR','en','Turkey');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TT','ar','ترينداد وتوباغو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TT','en','Trinidad and Tobago');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TV','ar','توفالو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TV','en','Tuvalu');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TW','ar','تايوان ، مقاطعة الصين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TW','en','Taiwan, Province of China');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TZ','ar','جمهورية تنزانيا المتحدة');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('TZ','en','Tanzania, United Republic of');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('UA','ar','أوكرانيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('UA','en','Ukraine');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('UG','ar','أوغندا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('UG','en','Uganda');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('UM','ar','جزر الولايات المتحدة البعيدة الصغرى');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('UM','en','United States Minor Outlying Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('US','ar','الولايات المتحدة الامريكية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('US','en','United States');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('UY','ar','أوروغواي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('UY','en','Uruguay');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('UZ','ar','أوزبكستان');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('UZ','en','Uzbekistan');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VA','ar','الكرسي الرسولي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VA','en','Holy See');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VC','ar','سانت فنسنت وجزر غرينادين');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VC','en','Saint Vincent and the Grenadines');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VE','ar','فنزويلا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VE','en','Venezuela');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VG','ar','جزر فيرجن البريطانية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VG','en','British Virgin Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VI','ar','جزر فيرجن الأمريكية');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VI','en','United States Virgin Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VN','ar','فيتنام');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VN','en','Viet Nam');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VU','ar','فانواتو');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('VU','en','Vanuatu');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('WF','ar','جزر واليس وفوتونا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('WF','en','Wallis and Futuna Islands');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('WS','ar','ساموا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('WS','en','Samoa');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('YE','ar','اليمن');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('YE','en','Yemen');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('YT','ar','مايوت');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('YT','en','Mayotte');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ZA','ar','جنوب أفريقيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ZA','en','South Africa');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ZM','ar','زامبيا');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ZM','en','Zambia');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ZW','ar','زيمبابوي');
INSERT INTO `countryTranslation` (`countryId`, `langId`, `countryName`) VALUES ('ZW','en','Zimbabwe');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Abidjan');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Abidjan', 'en', 'Greenwich Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Abidjan', 'ar', 'توقيت غرينيتش');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Accra');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Accra', 'en', 'Ghana Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Accra', 'ar', 'غانا يعني الوقت');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Addis_Ababa');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Addis_Ababa', 'en', 'Eastern African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Addis_Ababa', 'ar', 'توقيت شرق إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Algiers');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Algiers', 'en', 'Central European Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Algiers', 'ar', 'توقيت وسط أوروبا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Asmara');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Asmara', 'en', 'Eastern African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Asmara', 'ar', 'توقيت شرق إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Asmera');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Asmera', 'en', 'Eastern African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Asmera', 'ar', 'توقيت شرق إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Bamako');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Bamako', 'en', 'Greenwich Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Bamako', 'ar', 'توقيت غرينيتش');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Bangui');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Bangui', 'en', 'Western African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Bangui', 'ar', 'توقيت غرب افريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Banjul');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Banjul', 'en', 'Greenwich Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Banjul', 'ar', 'توقيت غرينيتش');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Bissau');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Bissau', 'en', 'Greenwich Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Bissau', 'ar', 'توقيت غرينيتش');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Blantyre');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Blantyre', 'en', 'Central African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Blantyre', 'ar', 'توقيت وسط إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Brazzaville');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Brazzaville', 'en', 'Western African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Brazzaville', 'ar', 'توقيت غرب افريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Bujumbura');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Bujumbura', 'en', 'Central African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Bujumbura', 'ar', 'توقيت وسط إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Cairo');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Cairo', 'en', 'Eastern European Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Cairo', 'ar', 'توقيت شرق أوروبا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Casablanca');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Casablanca', 'en', 'Western European Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Casablanca', 'ar', 'توقيت غرب أوروبا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Ceuta');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Ceuta', 'en', 'Central European Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Ceuta', 'ar', 'توقيت وسط أوروبا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Conakry');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Conakry', 'en', 'Greenwich Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Conakry', 'ar', 'توقيت غرينيتش');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Dakar');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Dakar', 'en', 'Greenwich Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Dakar', 'ar', 'توقيت غرينيتش');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Dar_es_Salaam');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Dar_es_Salaam', 'en', 'Eastern African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Dar_es_Salaam', 'ar', 'توقيت شرق إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Djibouti');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Djibouti', 'en', 'Eastern African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Djibouti', 'ar', 'توقيت شرق إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Douala');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Douala', 'en', 'Western African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Douala', 'ar', 'توقيت غرب افريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/El_Aaiun');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/El_Aaiun', 'en', 'Western European Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/El_Aaiun', 'ar', 'توقيت غرب أوروبا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Freetown');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Freetown', 'en', 'Greenwich Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Freetown', 'ar', 'توقيت غرينيتش');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Gaborone');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Gaborone', 'en', 'Central African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Gaborone', 'ar', 'توقيت وسط إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Harare');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Harare', 'en', 'Central African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Harare', 'ar', 'توقيت وسط إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Johannesburg');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Johannesburg', 'en', 'South Africa Standard Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Johannesburg', 'ar', 'جنوب أفريقيا الرسمي');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Juba');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Juba', 'en', 'Eastern African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Juba', 'ar', 'توقيت شرق إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Kampala');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Kampala', 'en', 'Eastern African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Kampala', 'ar', 'توقيت شرق إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Khartoum');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Khartoum', 'en', 'Eastern African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Khartoum', 'ar', 'توقيت شرق إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Kigali');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Kigali', 'en', 'Central African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Kigali', 'ar', 'توقيت وسط إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Kinshasa');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Kinshasa', 'en', 'Western African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Kinshasa', 'ar', 'توقيت غرب افريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Lagos');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Lagos', 'en', 'Western African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Lagos', 'ar', 'توقيت غرب افريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Libreville');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Libreville', 'en', 'Western African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Libreville', 'ar', 'توقيت غرب افريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Lome');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Lome', 'en', 'Greenwich Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Lome', 'ar', 'توقيت غرينيتش');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Luanda');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Luanda', 'en', 'Western African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Luanda', 'ar', 'توقيت غرب افريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Lubumbashi');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Lubumbashi', 'en', 'Central African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Lubumbashi', 'ar', 'توقيت وسط إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Lusaka');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Lusaka', 'en', 'Central African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Lusaka', 'ar', 'توقيت وسط إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Malabo');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Malabo', 'en', 'Western African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Malabo', 'ar', 'توقيت غرب افريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Maputo');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Maputo', 'en', 'Central African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Maputo', 'ar', 'توقيت وسط إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Maseru');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Maseru', 'en', 'South Africa Standard Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Maseru', 'ar', 'جنوب أفريقيا الرسمي');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Mbabane');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Mbabane', 'en', 'South Africa Standard Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Mbabane', 'ar', 'جنوب أفريقيا الرسمي');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Mogadishu');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Mogadishu', 'en', 'Eastern African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Mogadishu', 'ar', 'توقيت شرق إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Monrovia');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Monrovia', 'en', 'Greenwich Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Monrovia', 'ar', 'توقيت غرينيتش');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Nairobi');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Nairobi', 'en', 'Eastern African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Nairobi', 'ar', 'توقيت شرق إفريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Ndjamena');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Ndjamena', 'en', 'Western African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Ndjamena', 'ar', 'توقيت غرب افريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Niamey');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Niamey', 'en', 'Western African Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Niamey', 'ar', 'توقيت غرب افريقيا');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Nouakchott');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Nouakchott', 'en', 'Greenwich Mean Time');
INSERT INTO `timezoneTranslation` (`timezoneId`, `langId`, `timezoneName`) VALUES ('Africa/Nouakchott', 'ar', 'توقيت غرينيتش');
INSERT INTO `timezone` (`timezoneId`) VALUES ('Africa/Ouagadougou');