-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathentities_gen.go
1498 lines (1497 loc) · 34.2 KB
/
entities_gen.go
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
package country
var (
//Afghanistan represents 'Afghanistan' country
Afghanistan = Country{
name: NameAfghanistan,
alpha2: Alpha2AF,
alpha3: Alpha3AFG,
}
//Albania represents 'Albania' country
Albania = Country{
name: NameAlbania,
alpha2: Alpha2AL,
alpha3: Alpha3ALB,
}
//Algeria represents 'Algeria' country
Algeria = Country{
name: NameAlgeria,
alpha2: Alpha2DZ,
alpha3: Alpha3DZA,
}
//AmericanSamoa represents 'American Samoa' country
AmericanSamoa = Country{
name: NameAmericanSamoa,
alpha2: Alpha2AS,
alpha3: Alpha3ASM,
}
//Andorra represents 'Andorra' country
Andorra = Country{
name: NameAndorra,
alpha2: Alpha2AD,
alpha3: Alpha3AND,
}
//Angola represents 'Angola' country
Angola = Country{
name: NameAngola,
alpha2: Alpha2AO,
alpha3: Alpha3AGO,
}
//Anguilla represents 'Anguilla' country
Anguilla = Country{
name: NameAnguilla,
alpha2: Alpha2AI,
alpha3: Alpha3AIA,
}
//Antarctica represents 'Antarctica' country
Antarctica = Country{
name: NameAntarctica,
alpha2: Alpha2AQ,
alpha3: Alpha3ATA,
}
//AntiguaAndBarbuda represents 'Antigua and Barbuda' country
AntiguaAndBarbuda = Country{
name: NameAntiguaAndBarbuda,
alpha2: Alpha2AG,
alpha3: Alpha3ATG,
}
//Argentina represents 'Argentina' country
Argentina = Country{
name: NameArgentina,
alpha2: Alpha2AR,
alpha3: Alpha3ARG,
}
//Armenia represents 'Armenia' country
Armenia = Country{
name: NameArmenia,
alpha2: Alpha2AM,
alpha3: Alpha3ARM,
}
//Aruba represents 'Aruba' country
Aruba = Country{
name: NameAruba,
alpha2: Alpha2AW,
alpha3: Alpha3ABW,
}
//Australia represents 'Australia' country
Australia = Country{
name: NameAustralia,
alpha2: Alpha2AU,
alpha3: Alpha3AUS,
}
//Austria represents 'Austria' country
Austria = Country{
name: NameAustria,
alpha2: Alpha2AT,
alpha3: Alpha3AUT,
}
//Azerbaijan represents 'Azerbaijan' country
Azerbaijan = Country{
name: NameAzerbaijan,
alpha2: Alpha2AZ,
alpha3: Alpha3AZE,
}
//Bahamas represents 'Bahamas (the)' country
Bahamas = Country{
name: NameBahamas,
alpha2: Alpha2BS,
alpha3: Alpha3BHS,
}
//Bahrain represents 'Bahrain' country
Bahrain = Country{
name: NameBahrain,
alpha2: Alpha2BH,
alpha3: Alpha3BHR,
}
//Bangladesh represents 'Bangladesh' country
Bangladesh = Country{
name: NameBangladesh,
alpha2: Alpha2BD,
alpha3: Alpha3BGD,
}
//Barbados represents 'Barbados' country
Barbados = Country{
name: NameBarbados,
alpha2: Alpha2BB,
alpha3: Alpha3BRB,
}
//Belarus represents 'Belarus' country
Belarus = Country{
name: NameBelarus,
alpha2: Alpha2BY,
alpha3: Alpha3BLR,
}
//Belgium represents 'Belgium' country
Belgium = Country{
name: NameBelgium,
alpha2: Alpha2BE,
alpha3: Alpha3BEL,
}
//Belize represents 'Belize' country
Belize = Country{
name: NameBelize,
alpha2: Alpha2BZ,
alpha3: Alpha3BLZ,
}
//Benin represents 'Benin' country
Benin = Country{
name: NameBenin,
alpha2: Alpha2BJ,
alpha3: Alpha3BEN,
}
//Bermuda represents 'Bermuda' country
Bermuda = Country{
name: NameBermuda,
alpha2: Alpha2BM,
alpha3: Alpha3BMU,
}
//Bhutan represents 'Bhutan' country
Bhutan = Country{
name: NameBhutan,
alpha2: Alpha2BT,
alpha3: Alpha3BTN,
}
//Bolivia represents 'Bolivia (Plurinational State of)' country
Bolivia = Country{
name: NameBolivia,
alpha2: Alpha2BO,
alpha3: Alpha3BOL,
}
//BonaireSintEustatiusAndSaba represents 'Bonaire, Sint Eustatius and Saba' country
BonaireSintEustatiusAndSaba = Country{
name: NameBonaireSintEustatiusAndSaba,
alpha2: Alpha2BQ,
alpha3: Alpha3BES,
}
//BosniaAndHerzegovina represents 'Bosnia and Herzegovina' country
BosniaAndHerzegovina = Country{
name: NameBosniaAndHerzegovina,
alpha2: Alpha2BA,
alpha3: Alpha3BIH,
}
//Botswana represents 'Botswana' country
Botswana = Country{
name: NameBotswana,
alpha2: Alpha2BW,
alpha3: Alpha3BWA,
}
//BouvetIsland represents 'Bouvet Island' country
BouvetIsland = Country{
name: NameBouvetIsland,
alpha2: Alpha2BV,
alpha3: Alpha3BVT,
}
//Brazil represents 'Brazil' country
Brazil = Country{
name: NameBrazil,
alpha2: Alpha2BR,
alpha3: Alpha3BRA,
}
//BritishIndianOceanTerritory represents 'British Indian Ocean Territory (the)' country
BritishIndianOceanTerritory = Country{
name: NameBritishIndianOceanTerritory,
alpha2: Alpha2IO,
alpha3: Alpha3IOT,
}
//BruneiDarussalam represents 'Brunei Darussalam' country
BruneiDarussalam = Country{
name: NameBruneiDarussalam,
alpha2: Alpha2BN,
alpha3: Alpha3BRN,
}
//Bulgaria represents 'Bulgaria' country
Bulgaria = Country{
name: NameBulgaria,
alpha2: Alpha2BG,
alpha3: Alpha3BGR,
}
//BurkinaFaso represents 'Burkina Faso' country
BurkinaFaso = Country{
name: NameBurkinaFaso,
alpha2: Alpha2BF,
alpha3: Alpha3BFA,
}
//Burundi represents 'Burundi' country
Burundi = Country{
name: NameBurundi,
alpha2: Alpha2BI,
alpha3: Alpha3BDI,
}
//CaboVerde represents 'Cabo Verde' country
CaboVerde = Country{
name: NameCaboVerde,
alpha2: Alpha2CV,
alpha3: Alpha3CPV,
}
//Cambodia represents 'Cambodia' country
Cambodia = Country{
name: NameCambodia,
alpha2: Alpha2KH,
alpha3: Alpha3KHM,
}
//Cameroon represents 'Cameroon' country
Cameroon = Country{
name: NameCameroon,
alpha2: Alpha2CM,
alpha3: Alpha3CMR,
}
//Canada represents 'Canada' country
Canada = Country{
name: NameCanada,
alpha2: Alpha2CA,
alpha3: Alpha3CAN,
}
//CaymanIslands represents 'Cayman Islands (the)' country
CaymanIslands = Country{
name: NameCaymanIslands,
alpha2: Alpha2KY,
alpha3: Alpha3CYM,
}
//CentralAfricanRepublic represents 'Central African Republic (the)' country
CentralAfricanRepublic = Country{
name: NameCentralAfricanRepublic,
alpha2: Alpha2CF,
alpha3: Alpha3CAF,
}
//Chad represents 'Chad' country
Chad = Country{
name: NameChad,
alpha2: Alpha2TD,
alpha3: Alpha3TCD,
}
//Chile represents 'Chile' country
Chile = Country{
name: NameChile,
alpha2: Alpha2CL,
alpha3: Alpha3CHL,
}
//China represents 'China' country
China = Country{
name: NameChina,
alpha2: Alpha2CN,
alpha3: Alpha3CHN,
}
//ChristmasIsland represents 'Christmas Island' country
ChristmasIsland = Country{
name: NameChristmasIsland,
alpha2: Alpha2CX,
alpha3: Alpha3CXR,
}
//Cocos represents 'Cocos (Keeling) Islands (the)' country
Cocos = Country{
name: NameCocos,
alpha2: Alpha2CC,
alpha3: Alpha3CCK,
}
//Colombia represents 'Colombia' country
Colombia = Country{
name: NameColombia,
alpha2: Alpha2CO,
alpha3: Alpha3COL,
}
//Comoros represents 'Comoros (the)' country
Comoros = Country{
name: NameComoros,
alpha2: Alpha2KM,
alpha3: Alpha3COM,
}
//DemocraticRepublicOfTheCongo represents 'Congo (the Democratic Republic of the)' country
DemocraticRepublicOfTheCongo = Country{
name: NameDemocraticRepublicOfTheCongo,
alpha2: Alpha2CD,
alpha3: Alpha3COD,
}
//Congo represents 'Congo (the)' country
Congo = Country{
name: NameCongo,
alpha2: Alpha2CG,
alpha3: Alpha3COG,
}
//CookIslands represents 'Cook Islands (the)' country
CookIslands = Country{
name: NameCookIslands,
alpha2: Alpha2CK,
alpha3: Alpha3COK,
}
//CostaRica represents 'Costa Rica' country
CostaRica = Country{
name: NameCostaRica,
alpha2: Alpha2CR,
alpha3: Alpha3CRI,
}
//Croatia represents 'Croatia' country
Croatia = Country{
name: NameCroatia,
alpha2: Alpha2HR,
alpha3: Alpha3HRV,
}
//Cuba represents 'Cuba' country
Cuba = Country{
name: NameCuba,
alpha2: Alpha2CU,
alpha3: Alpha3CUB,
}
//Curacao represents 'Curaçao' country
Curacao = Country{
name: NameCuracao,
alpha2: Alpha2CW,
alpha3: Alpha3CUW,
}
//Cyprus represents 'Cyprus' country
Cyprus = Country{
name: NameCyprus,
alpha2: Alpha2CY,
alpha3: Alpha3CYP,
}
//Czechia represents 'Czechia' country
Czechia = Country{
name: NameCzechia,
alpha2: Alpha2CZ,
alpha3: Alpha3CZE,
}
//CoteDIvoire represents 'Côte d'Ivoire' country
CoteDIvoire = Country{
name: NameCoteDIvoire,
alpha2: Alpha2CI,
alpha3: Alpha3CIV,
}
//Denmark represents 'Denmark' country
Denmark = Country{
name: NameDenmark,
alpha2: Alpha2DK,
alpha3: Alpha3DNK,
}
//Djibouti represents 'Djibouti' country
Djibouti = Country{
name: NameDjibouti,
alpha2: Alpha2DJ,
alpha3: Alpha3DJI,
}
//Dominica represents 'Dominica' country
Dominica = Country{
name: NameDominica,
alpha2: Alpha2DM,
alpha3: Alpha3DMA,
}
//DominicanRepublic represents 'Dominican Republic (the)' country
DominicanRepublic = Country{
name: NameDominicanRepublic,
alpha2: Alpha2DO,
alpha3: Alpha3DOM,
}
//Ecuador represents 'Ecuador' country
Ecuador = Country{
name: NameEcuador,
alpha2: Alpha2EC,
alpha3: Alpha3ECU,
}
//Egypt represents 'Egypt' country
Egypt = Country{
name: NameEgypt,
alpha2: Alpha2EG,
alpha3: Alpha3EGY,
}
//ElSalvador represents 'El Salvador' country
ElSalvador = Country{
name: NameElSalvador,
alpha2: Alpha2SV,
alpha3: Alpha3SLV,
}
//EquatorialGuinea represents 'Equatorial Guinea' country
EquatorialGuinea = Country{
name: NameEquatorialGuinea,
alpha2: Alpha2GQ,
alpha3: Alpha3GNQ,
}
//Eritrea represents 'Eritrea' country
Eritrea = Country{
name: NameEritrea,
alpha2: Alpha2ER,
alpha3: Alpha3ERI,
}
//Estonia represents 'Estonia' country
Estonia = Country{
name: NameEstonia,
alpha2: Alpha2EE,
alpha3: Alpha3EST,
}
//Eswatini represents 'Eswatini' country
Eswatini = Country{
name: NameEswatini,
alpha2: Alpha2SZ,
alpha3: Alpha3SWZ,
}
//Ethiopia represents 'Ethiopia' country
Ethiopia = Country{
name: NameEthiopia,
alpha2: Alpha2ET,
alpha3: Alpha3ETH,
}
//FalklandIslands represents 'Falkland Islands (the) [Malvinas]' country
FalklandIslands = Country{
name: NameFalklandIslands,
alpha2: Alpha2FK,
alpha3: Alpha3FLK,
}
//FaroeIslands represents 'Faroe Islands (the)' country
FaroeIslands = Country{
name: NameFaroeIslands,
alpha2: Alpha2FO,
alpha3: Alpha3FRO,
}
//Fiji represents 'Fiji' country
Fiji = Country{
name: NameFiji,
alpha2: Alpha2FJ,
alpha3: Alpha3FJI,
}
//Finland represents 'Finland' country
Finland = Country{
name: NameFinland,
alpha2: Alpha2FI,
alpha3: Alpha3FIN,
}
//France represents 'France' country
France = Country{
name: NameFrance,
alpha2: Alpha2FR,
alpha3: Alpha3FRA,
}
//FrenchGuiana represents 'French Guiana' country
FrenchGuiana = Country{
name: NameFrenchGuiana,
alpha2: Alpha2GF,
alpha3: Alpha3GUF,
}
//FrenchPolynesia represents 'French Polynesia' country
FrenchPolynesia = Country{
name: NameFrenchPolynesia,
alpha2: Alpha2PF,
alpha3: Alpha3PYF,
}
//FrenchSouthernTerritories represents 'French Southern Territories (the)' country
FrenchSouthernTerritories = Country{
name: NameFrenchSouthernTerritories,
alpha2: Alpha2TF,
alpha3: Alpha3ATF,
}
//Gabon represents 'Gabon' country
Gabon = Country{
name: NameGabon,
alpha2: Alpha2GA,
alpha3: Alpha3GAB,
}
//Gambia represents 'Gambia (the)' country
Gambia = Country{
name: NameGambia,
alpha2: Alpha2GM,
alpha3: Alpha3GMB,
}
//Georgia represents 'Georgia' country
Georgia = Country{
name: NameGeorgia,
alpha2: Alpha2GE,
alpha3: Alpha3GEO,
}
//Germany represents 'Germany' country
Germany = Country{
name: NameGermany,
alpha2: Alpha2DE,
alpha3: Alpha3DEU,
}
//Ghana represents 'Ghana' country
Ghana = Country{
name: NameGhana,
alpha2: Alpha2GH,
alpha3: Alpha3GHA,
}
//Gibraltar represents 'Gibraltar' country
Gibraltar = Country{
name: NameGibraltar,
alpha2: Alpha2GI,
alpha3: Alpha3GIB,
}
//Greece represents 'Greece' country
Greece = Country{
name: NameGreece,
alpha2: Alpha2GR,
alpha3: Alpha3GRC,
}
//Greenland represents 'Greenland' country
Greenland = Country{
name: NameGreenland,
alpha2: Alpha2GL,
alpha3: Alpha3GRL,
}
//Grenada represents 'Grenada' country
Grenada = Country{
name: NameGrenada,
alpha2: Alpha2GD,
alpha3: Alpha3GRD,
}
//Guadeloupe represents 'Guadeloupe' country
Guadeloupe = Country{
name: NameGuadeloupe,
alpha2: Alpha2GP,
alpha3: Alpha3GLP,
}
//Guam represents 'Guam' country
Guam = Country{
name: NameGuam,
alpha2: Alpha2GU,
alpha3: Alpha3GUM,
}
//Guatemala represents 'Guatemala' country
Guatemala = Country{
name: NameGuatemala,
alpha2: Alpha2GT,
alpha3: Alpha3GTM,
}
//Guernsey represents 'Guernsey' country
Guernsey = Country{
name: NameGuernsey,
alpha2: Alpha2GG,
alpha3: Alpha3GGY,
}
//Guinea represents 'Guinea' country
Guinea = Country{
name: NameGuinea,
alpha2: Alpha2GN,
alpha3: Alpha3GIN,
}
//GuineaBissau represents 'Guinea-Bissau' country
GuineaBissau = Country{
name: NameGuineaBissau,
alpha2: Alpha2GW,
alpha3: Alpha3GNB,
}
//Guyana represents 'Guyana' country
Guyana = Country{
name: NameGuyana,
alpha2: Alpha2GY,
alpha3: Alpha3GUY,
}
//Haiti represents 'Haiti' country
Haiti = Country{
name: NameHaiti,
alpha2: Alpha2HT,
alpha3: Alpha3HTI,
}
//HeardIslandAndMcDonaldIslands represents 'Heard Island and McDonald Islands' country
HeardIslandAndMcDonaldIslands = Country{
name: NameHeardIslandAndMcDonaldIslands,
alpha2: Alpha2HM,
alpha3: Alpha3HMD,
}
//HolySee represents 'Holy See (the)' country
HolySee = Country{
name: NameHolySee,
alpha2: Alpha2VA,
alpha3: Alpha3VAT,
}
//Honduras represents 'Honduras' country
Honduras = Country{
name: NameHonduras,
alpha2: Alpha2HN,
alpha3: Alpha3HND,
}
//HongKong represents 'Hong Kong' country
HongKong = Country{
name: NameHongKong,
alpha2: Alpha2HK,
alpha3: Alpha3HKG,
}
//Hungary represents 'Hungary' country
Hungary = Country{
name: NameHungary,
alpha2: Alpha2HU,
alpha3: Alpha3HUN,
}
//Iceland represents 'Iceland' country
Iceland = Country{
name: NameIceland,
alpha2: Alpha2IS,
alpha3: Alpha3ISL,
}
//India represents 'India' country
India = Country{
name: NameIndia,
alpha2: Alpha2IN,
alpha3: Alpha3IND,
}
//Indonesia represents 'Indonesia' country
Indonesia = Country{
name: NameIndonesia,
alpha2: Alpha2ID,
alpha3: Alpha3IDN,
}
//Iran represents 'Iran (Islamic Republic of)' country
Iran = Country{
name: NameIran,
alpha2: Alpha2IR,
alpha3: Alpha3IRN,
}
//Iraq represents 'Iraq' country
Iraq = Country{
name: NameIraq,
alpha2: Alpha2IQ,
alpha3: Alpha3IRQ,
}
//Ireland represents 'Ireland' country
Ireland = Country{
name: NameIreland,
alpha2: Alpha2IE,
alpha3: Alpha3IRL,
}
//IsleOfMan represents 'Isle of Man' country
IsleOfMan = Country{
name: NameIsleOfMan,
alpha2: Alpha2IM,
alpha3: Alpha3IMN,
}
//Israel represents 'Israel' country
Israel = Country{
name: NameIsrael,
alpha2: Alpha2IL,
alpha3: Alpha3ISR,
}
//Italy represents 'Italy' country
Italy = Country{
name: NameItaly,
alpha2: Alpha2IT,
alpha3: Alpha3ITA,
}
//Jamaica represents 'Jamaica' country
Jamaica = Country{
name: NameJamaica,
alpha2: Alpha2JM,
alpha3: Alpha3JAM,
}
//Japan represents 'Japan' country
Japan = Country{
name: NameJapan,
alpha2: Alpha2JP,
alpha3: Alpha3JPN,
}
//Jersey represents 'Jersey' country
Jersey = Country{
name: NameJersey,
alpha2: Alpha2JE,
alpha3: Alpha3JEY,
}
//Jordan represents 'Jordan' country
Jordan = Country{
name: NameJordan,
alpha2: Alpha2JO,
alpha3: Alpha3JOR,
}
//Kazakhstan represents 'Kazakhstan' country
Kazakhstan = Country{
name: NameKazakhstan,
alpha2: Alpha2KZ,
alpha3: Alpha3KAZ,
}
//Kenya represents 'Kenya' country
Kenya = Country{
name: NameKenya,
alpha2: Alpha2KE,
alpha3: Alpha3KEN,
}
//Kiribati represents 'Kiribati' country
Kiribati = Country{
name: NameKiribati,
alpha2: Alpha2KI,
alpha3: Alpha3KIR,
}
//NorthKorea represents 'Korea (the Democratic People's Republic of)' country
NorthKorea = Country{
name: NameNorthKorea,
alpha2: Alpha2KP,
alpha3: Alpha3PRK,
}
//SouthKorea represents 'Korea (the Republic of)' country
SouthKorea = Country{
name: NameSouthKorea,
alpha2: Alpha2KR,
alpha3: Alpha3KOR,
}
//Kuwait represents 'Kuwait' country
Kuwait = Country{
name: NameKuwait,
alpha2: Alpha2KW,
alpha3: Alpha3KWT,
}
//Kyrgyzstan represents 'Kyrgyzstan' country
Kyrgyzstan = Country{
name: NameKyrgyzstan,
alpha2: Alpha2KG,
alpha3: Alpha3KGZ,
}
//LaoPeoplesDemocraticRepublic represents 'Lao People's Democratic Republic (the)' country
LaoPeoplesDemocraticRepublic = Country{
name: NameLaoPeoplesDemocraticRepublic,
alpha2: Alpha2LA,
alpha3: Alpha3LAO,
}
//Latvia represents 'Latvia' country
Latvia = Country{
name: NameLatvia,
alpha2: Alpha2LV,
alpha3: Alpha3LVA,
}
//Lebanon represents 'Lebanon' country
Lebanon = Country{
name: NameLebanon,
alpha2: Alpha2LB,
alpha3: Alpha3LBN,
}
//Lesotho represents 'Lesotho' country
Lesotho = Country{
name: NameLesotho,
alpha2: Alpha2LS,
alpha3: Alpha3LSO,
}
//Liberia represents 'Liberia' country
Liberia = Country{
name: NameLiberia,
alpha2: Alpha2LR,
alpha3: Alpha3LBR,
}
//Libya represents 'Libya' country
Libya = Country{
name: NameLibya,
alpha2: Alpha2LY,
alpha3: Alpha3LBY,
}
//Liechtenstein represents 'Liechtenstein' country
Liechtenstein = Country{
name: NameLiechtenstein,
alpha2: Alpha2LI,
alpha3: Alpha3LIE,
}
//Lithuania represents 'Lithuania' country
Lithuania = Country{
name: NameLithuania,
alpha2: Alpha2LT,
alpha3: Alpha3LTU,
}
//Luxembourg represents 'Luxembourg' country
Luxembourg = Country{
name: NameLuxembourg,
alpha2: Alpha2LU,
alpha3: Alpha3LUX,
}
//Macao represents 'Macao' country
Macao = Country{
name: NameMacao,
alpha2: Alpha2MO,
alpha3: Alpha3MAC,
}
//Madagascar represents 'Madagascar' country
Madagascar = Country{
name: NameMadagascar,
alpha2: Alpha2MG,
alpha3: Alpha3MDG,
}
//Malawi represents 'Malawi' country
Malawi = Country{
name: NameMalawi,
alpha2: Alpha2MW,
alpha3: Alpha3MWI,
}
//Malaysia represents 'Malaysia' country
Malaysia = Country{
name: NameMalaysia,
alpha2: Alpha2MY,
alpha3: Alpha3MYS,
}
//Maldives represents 'Maldives' country
Maldives = Country{
name: NameMaldives,
alpha2: Alpha2MV,
alpha3: Alpha3MDV,
}
//Mali represents 'Mali' country
Mali = Country{
name: NameMali,
alpha2: Alpha2ML,
alpha3: Alpha3MLI,
}
//Malta represents 'Malta' country
Malta = Country{
name: NameMalta,
alpha2: Alpha2MT,
alpha3: Alpha3MLT,
}
//MarshallIslands represents 'Marshall Islands (the)' country
MarshallIslands = Country{
name: NameMarshallIslands,
alpha2: Alpha2MH,
alpha3: Alpha3MHL,
}
//Martinique represents 'Martinique' country
Martinique = Country{
name: NameMartinique,
alpha2: Alpha2MQ,
alpha3: Alpha3MTQ,
}
//Mauritania represents 'Mauritania' country
Mauritania = Country{
name: NameMauritania,
alpha2: Alpha2MR,
alpha3: Alpha3MRT,
}
//Mauritius represents 'Mauritius' country
Mauritius = Country{
name: NameMauritius,
alpha2: Alpha2MU,
alpha3: Alpha3MUS,
}
//Mayotte represents 'Mayotte' country
Mayotte = Country{
name: NameMayotte,
alpha2: Alpha2YT,
alpha3: Alpha3MYT,
}
//Mexico represents 'Mexico' country
Mexico = Country{
name: NameMexico,
alpha2: Alpha2MX,
alpha3: Alpha3MEX,
}
//Micronesia represents 'Micronesia (Federated States of)' country
Micronesia = Country{
name: NameMicronesia,
alpha2: Alpha2FM,
alpha3: Alpha3FSM,
}
//Moldova represents 'Moldova (the Republic of)' country
Moldova = Country{
name: NameMoldova,
alpha2: Alpha2MD,
alpha3: Alpha3MDA,
}
//Monaco represents 'Monaco' country
Monaco = Country{
name: NameMonaco,
alpha2: Alpha2MC,
alpha3: Alpha3MCO,
}
//Mongolia represents 'Mongolia' country
Mongolia = Country{
name: NameMongolia,
alpha2: Alpha2MN,
alpha3: Alpha3MNG,
}
//Montenegro represents 'Montenegro' country
Montenegro = Country{
name: NameMontenegro,
alpha2: Alpha2ME,
alpha3: Alpha3MNE,
}
//Montserrat represents 'Montserrat' country
Montserrat = Country{
name: NameMontserrat,
alpha2: Alpha2MS,
alpha3: Alpha3MSR,
}
//Morocco represents 'Morocco' country
Morocco = Country{
name: NameMorocco,
alpha2: Alpha2MA,
alpha3: Alpha3MAR,
}
//Mozambique represents 'Mozambique' country
Mozambique = Country{
name: NameMozambique,
alpha2: Alpha2MZ,
alpha3: Alpha3MOZ,
}
//Myanmar represents 'Myanmar' country
Myanmar = Country{
name: NameMyanmar,
alpha2: Alpha2MM,
alpha3: Alpha3MMR,
}
//Namibia represents 'Namibia' country
Namibia = Country{
name: NameNamibia,
alpha2: Alpha2NA,
alpha3: Alpha3NAM,
}
//Nauru represents 'Nauru' country
Nauru = Country{
name: NameNauru,
alpha2: Alpha2NR,
alpha3: Alpha3NRU,
}
//Nepal represents 'Nepal' country
Nepal = Country{
name: NameNepal,
alpha2: Alpha2NP,
alpha3: Alpha3NPL,
}
//Netherlands represents 'Netherlands (the)' country
Netherlands = Country{
name: NameNetherlands,
alpha2: Alpha2NL,
alpha3: Alpha3NLD,
}
//NewCaledonia represents 'New Caledonia' country
NewCaledonia = Country{
name: NameNewCaledonia,
alpha2: Alpha2NC,
alpha3: Alpha3NCL,
}
//NewZealand represents 'New Zealand' country
NewZealand = Country{
name: NameNewZealand,
alpha2: Alpha2NZ,
alpha3: Alpha3NZL,
}
//Nicaragua represents 'Nicaragua' country
Nicaragua = Country{
name: NameNicaragua,
alpha2: Alpha2NI,
alpha3: Alpha3NIC,
}
//Niger represents 'Niger (the)' country
Niger = Country{
name: NameNiger,
alpha2: Alpha2NE,
alpha3: Alpha3NER,
}
//Nigeria represents 'Nigeria' country
Nigeria = Country{
name: NameNigeria,
alpha2: Alpha2NG,
alpha3: Alpha3NGA,
}
//Niue represents 'Niue' country
Niue = Country{
name: NameNiue,
alpha2: Alpha2NU,
alpha3: Alpha3NIU,
}
//NorfolkIsland represents 'Norfolk Island' country
NorfolkIsland = Country{
name: NameNorfolkIsland,
alpha2: Alpha2NF,
alpha3: Alpha3NFK,
}
//NorthMacedonia represents 'North Macedonia' country
NorthMacedonia = Country{
name: NameNorthMacedonia,
alpha2: Alpha2MK,
alpha3: Alpha3MKD,
}
//NorthernMarianaIslands represents 'Northern Mariana Islands (the)' country
NorthernMarianaIslands = Country{
name: NameNorthernMarianaIslands,
alpha2: Alpha2MP,
alpha3: Alpha3MNP,
}
//Norway represents 'Norway' country
Norway = Country{
name: NameNorway,
alpha2: Alpha2NO,
alpha3: Alpha3NOR,
}
//Oman represents 'Oman' country