-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdump.sql
12319 lines (12071 loc) · 757 KB
/
dump.sql
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
-- Dump of TYPO3 Connection "Default"
/*!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.11.8-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: db Database: db
-- ------------------------------------------------------
-- Server version 10.6.18-MariaDB-ubu2004-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `backend_layout`
--
DROP TABLE IF EXISTS `backend_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `backend_layout` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`cruser_id` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`sorting` int(11) NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`t3_origuid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`config` text NOT NULL,
`icon` text DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `backend_layout`
--
LOCK TABLES `backend_layout` WRITE;
/*!40000 ALTER TABLE `backend_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `backend_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `be_dashboards`
--
DROP TABLE IF EXISTS `be_dashboards`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `be_dashboards` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`cruser_id` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`identifier` varchar(120) NOT NULL DEFAULT '',
`title` varchar(120) NOT NULL DEFAULT '',
`widgets` text DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `be_dashboards`
--
LOCK TABLES `be_dashboards` WRITE;
/*!40000 ALTER TABLE `be_dashboards` DISABLE KEYS */;
INSERT INTO `be_dashboards` VALUES
(1,0,1681136030,1681136030,2,0,0,0,0,'a789be90af62969620339f403de7f74072572aaa','My dashboard','{\"36614fbb7345fceb73410b7d44d6b2a318817652\":{\"identifier\":\"t3information\"},\"190eb4a17cd5ef72093fc22c291f99103051a210\":{\"identifier\":\"docGettingStarted\"}}');
/*!40000 ALTER TABLE `be_dashboards` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `be_groups`
--
DROP TABLE IF EXISTS `be_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `be_groups` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`cruser_id` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`title` varchar(50) NOT NULL DEFAULT '',
`non_exclude_fields` text DEFAULT NULL,
`explicit_allowdeny` text DEFAULT NULL,
`allowed_languages` varchar(255) NOT NULL DEFAULT '',
`custom_options` text DEFAULT NULL,
`db_mountpoints` text DEFAULT NULL,
`pagetypes_select` text DEFAULT NULL,
`tables_select` text DEFAULT NULL,
`tables_modify` text DEFAULT NULL,
`groupMods` text DEFAULT NULL,
`availableWidgets` text DEFAULT NULL,
`file_mountpoints` text DEFAULT NULL,
`file_permissions` text DEFAULT NULL,
`TSconfig` text DEFAULT NULL,
`subgroup` text DEFAULT NULL,
`workspace_perms` smallint(6) NOT NULL DEFAULT 1,
`category_perms` longtext DEFAULT NULL,
`mfa_providers` text DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `be_groups`
--
LOCK TABLES `be_groups` WRITE;
/*!40000 ALTER TABLE `be_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `be_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `be_users`
--
DROP TABLE IF EXISTS `be_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `be_users` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`cruser_id` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`disable` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`username` varchar(50) NOT NULL DEFAULT '',
`avatar` int(10) unsigned NOT NULL DEFAULT 0,
`password` varchar(100) NOT NULL DEFAULT '',
`admin` smallint(5) unsigned NOT NULL DEFAULT 0,
`usergroup` text DEFAULT NULL,
`lang` varchar(10) NOT NULL DEFAULT 'default',
`email` varchar(255) NOT NULL DEFAULT '',
`db_mountpoints` text DEFAULT NULL,
`options` smallint(5) unsigned NOT NULL DEFAULT 0,
`realName` varchar(80) NOT NULL DEFAULT '',
`userMods` text DEFAULT NULL,
`allowed_languages` varchar(255) NOT NULL DEFAULT '',
`uc` mediumblob DEFAULT NULL,
`file_mountpoints` text DEFAULT NULL,
`file_permissions` text DEFAULT NULL,
`workspace_perms` smallint(6) NOT NULL DEFAULT 1,
`TSconfig` text DEFAULT NULL,
`lastlogin` int(10) unsigned NOT NULL DEFAULT 0,
`workspace_id` int(11) NOT NULL DEFAULT 0,
`category_perms` longtext DEFAULT NULL,
`password_reset_token` varchar(100) NOT NULL DEFAULT '',
`mfa` mediumblob DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `username` (`username`),
KEY `parent` (`pid`,`deleted`,`disable`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `be_users`
--
LOCK TABLES `be_users` WRITE;
/*!40000 ALTER TABLE `be_users` DISABLE KEYS */;
INSERT INTO `be_users` VALUES
(1,0,1668178395,1668178395,0,0,0,0,0,NULL,'_cli_',0,'$argon2i$v=19$m=65536,t=16,p=1$blVUUDcvMkZnS0E4cXRYaQ$Drs1ruYAO6r9+xXd1ACXlyzx7Chg/oIUGKaUg91jtDo',1,'','default','',NULL,0,'',NULL,'','a:12:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:0:{}s:19:\"thumbnailsByDefault\";i:1;s:14:\"emailMeAtLogin\";i:0;s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:15:\"resizeTextareas\";i:1;s:25:\"resizeTextareas_MaxHeight\";i:500;s:24:\"resizeTextareas_Flexible\";i:0;s:4:\"lang\";s:7:\"default\";s:19:\"firstLoginTimeStamp\";i:1668178395;}',NULL,NULL,1,NULL,0,0,NULL,'',NULL),
(2,0,1699808021,1668446719,0,0,0,0,0,NULL,'admin',0,'$argon2i$v=19$m=65536,t=16,p=1$NmFEMHVQLkxxZ1Yucmlacw$XX5y+tF73dwLpyJ3ZhYL5KurebqPbvnagY3VJYp+roo',1,'','de','',NULL,0,'',NULL,'','a:29:{s:14:\"interfaceSetup\";s:7:\"backend\";s:10:\"moduleData\";a:12:{s:10:\"web_layout\";a:2:{s:8:\"function\";s:1:\"1\";s:8:\"language\";s:1:\"0\";}s:8:\"web_list\";a:2:{s:9:\"clipBoard\";s:1:\"0\";s:15:\"bigControlPanel\";s:1:\"1\";}s:10:\"FormEngine\";a:2:{i:0;a:0:{}i:1;s:32:\"30214382b789903a3c8c2d5d07f541e4\";}s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";a:0:{}s:16:\"opendocs::recent\";a:8:{s:32:\"30214382b789903a3c8c2d5d07f541e4\";a:4:{i:0;s:36:\"Online-Veranstaltung mit E-Mail-Text\";i:1;a:5:{s:4:\"edit\";a:1:{s:20:\"tx_seminars_seminars\";a:1:{i:13;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:44:\"&edit%5Btx_seminars_seminars%5D%5B13%5D=edit\";i:3;a:5:{s:5:\"table\";s:20:\"tx_seminars_seminars\";s:3:\"uid\";i:13;s:3:\"pid\";i:14;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"ac8eceb4554a238d877cdbced8a9c761\";a:4:{i:0;s:0:\"\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:26;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B26%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:26;s:3:\"pid\";i:7;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"86205c5935270b8ee413592ec1b62292\";a:4:{i:0;s:4:\"Root\";i:1;a:5:{s:4:\"edit\";a:1:{s:12:\"sys_template\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:35:\"&edit%5Bsys_template%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:12:\"sys_template\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"6c80f638c9c2df76271e87bdc8259527\";a:4:{i:0;s:14:\"onetimeaccount\";i:1;a:5:{s:4:\"edit\";a:1:{s:12:\"sys_template\";a:1:{i:5;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:35:\"&edit%5Bsys_template%5D%5B5%5D=edit\";i:3;a:5:{s:5:\"table\";s:12:\"sys_template\";s:3:\"uid\";i:5;s:3:\"pid\";i:6;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"08a06f2b8fb494ab79c4796bee35f6db\";a:4:{i:0;s:22:\"Auf der Website suchen\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:34;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B34%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:34;s:3:\"pid\";i:44;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"4682dffdfad2eee3552f9f97b7842579\";a:4:{i:0;s:0:\"\";i:1;a:5:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:33;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:34:\"&edit%5Btt_content%5D%5B33%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:33;s:3:\"pid\";i:43;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"1e82483905bf73dbb1d0ece8628d1ebc\";a:4:{i:0;s:10:\"Tea editor\";i:1;a:5:{s:4:\"edit\";a:1:{s:5:\"pages\";a:1:{i:43;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:29:\"&edit%5Bpages%5D%5B43%5D=edit\";i:3;a:5:{s:5:\"table\";s:5:\"pages\";s:3:\"uid\";i:43;s:3:\"pid\";i:9;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"c5d0a0aca161448570c311265ce97b2f\";a:4:{i:0;s:10:\"Darjeeling\";i:1;a:5:{s:4:\"edit\";a:1:{s:31:\"tx_tea_domain_model_product_tea\";a:1:{i:2;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;}i:2;s:54:\"&edit%5Btx_tea_domain_model_product_tea%5D%5B2%5D=edit\";i:3;a:5:{s:5:\"table\";s:31:\"tx_tea_domain_model_product_tea\";s:3:\"uid\";i:2;s:3:\"pid\";i:3;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}s:16:\"browse_links.php\";a:1:{s:10:\"expandPage\";s:1:\"6\";}s:18:\"list/displayFields\";a:1:{s:5:\"pages\";a:3:{i:0;s:5:\"title\";i:1;s:6:\"hidden\";i:2;s:4:\"slug\";}}s:47:\"TYPO3\\CMS\\Belog\\Controller\\BackendLogController\";s:337:\"O:39:\"TYPO3\\CMS\\Belog\\Domain\\Model\\Constraint\":11:{s:14:\"\0*\0userOrGroup\";s:1:\"0\";s:9:\"\0*\0number\";i:20;s:15:\"\0*\0workspaceUid\";i:-99;s:10:\"\0*\0channel\";s:3:\"php\";s:8:\"\0*\0level\";s:5:\"debug\";s:17:\"\0*\0startTimestamp\";i:0;s:15:\"\0*\0endTimestamp\";i:0;s:18:\"\0*\0manualDateStart\";N;s:17:\"\0*\0manualDateStop\";N;s:9:\"\0*\0pageId\";i:0;s:8:\"\0*\0depth\";i:0;}\";s:12:\"system_dbint\";a:3:{s:8:\"function\";s:8:\"refindex\";s:6:\"search\";s:3:\"raw\";s:22:\"search_query_makeQuery\";s:3:\"all\";}s:13:\"system_config\";a:2:{s:4:\"tree\";s:8:\"confVars\";s:11:\"regexSearch\";b:0;}s:28:\"dashboard/current_dashboard/\";s:40:\"a789be90af62969620339f403de7f74072572aaa\";s:6:\"web_ts\";a:7:{s:8:\"function\";s:87:\"TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateObjectBrowserModuleFunctionController\";s:8:\"language\";N;s:19:\"constant_editor_cat\";s:7:\"content\";s:15:\"ts_browser_type\";s:5:\"setup\";s:16:\"ts_browser_const\";s:1:\"0\";s:23:\"ts_browser_showComments\";s:1:\"1\";s:25:\"tsbrowser_depthKeys_setup\";a:0:{}}}s:19:\"thumbnailsByDefault\";i:1;s:14:\"emailMeAtLogin\";i:0;s:8:\"titleLen\";s:2:\"50\";s:8:\"edit_RTE\";i:1;s:20:\"edit_docModuleUpload\";i:1;s:15:\"resizeTextareas\";i:1;s:25:\"resizeTextareas_MaxHeight\";s:3:\"500\";s:24:\"resizeTextareas_Flexible\";i:0;s:4:\"lang\";s:2:\"de\";s:19:\"firstLoginTimeStamp\";i:1668446726;s:15:\"moduleSessionID\";a:11:{s:10:\"web_layout\";s:40:\"f2e0259ede2cfcbce4d6885d48211ebc886122aa\";s:8:\"web_list\";s:40:\"f2e0259ede2cfcbce4d6885d48211ebc886122aa\";s:10:\"FormEngine\";s:40:\"129ba6b0aaeec388ec450abac51ec89a0e10bcc2\";s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";s:40:\"129ba6b0aaeec388ec450abac51ec89a0e10bcc2\";s:16:\"opendocs::recent\";s:40:\"129ba6b0aaeec388ec450abac51ec89a0e10bcc2\";s:16:\"browse_links.php\";s:40:\"dfa313744cd68b3f847de8a0c1f642db4b8536e9\";s:18:\"list/displayFields\";s:40:\"caf54c66d08fb403b77ce515a7c1e7897bf9e63e\";s:47:\"TYPO3\\CMS\\Belog\\Controller\\BackendLogController\";s:40:\"ceb5132f7c45750bd0321eb897823d33cf119504\";s:12:\"system_dbint\";s:40:\"a8272af325bdfbf71dfc5f9ea5a77f2a4eb728ff\";s:28:\"dashboard/current_dashboard/\";s:40:\"caf54c66d08fb403b77ce515a7c1e7897bf9e63e\";s:6:\"web_ts\";s:40:\"dfa313744cd68b3f847de8a0c1f642db4b8536e9\";}s:17:\"BackendComponents\";a:1:{s:6:\"States\";a:1:{s:8:\"Pagetree\";a:1:{s:9:\"stateHash\";a:10:{s:3:\"0_2\";s:1:\"1\";s:3:\"0_5\";s:1:\"1\";s:3:\"0_1\";s:1:\"1\";s:4:\"0_16\";s:1:\"1\";s:4:\"0_18\";s:1:\"0\";s:4:\"0_11\";s:1:\"1\";s:4:\"0_20\";s:1:\"0\";s:4:\"0_19\";s:1:\"1\";s:3:\"0_9\";s:1:\"1\";s:4:\"0_36\";s:1:\"0\";}}}}s:10:\"modulemenu\";s:39:\"{\"site\":true,\"file\":true,\"system\":true}\";s:11:\"browseTrees\";a:1:{s:11:\"browsePages\";s:34:\"[{\"0\":1,\"1\":1,\"16\":1,\"2\":1,\"5\":1}]\";}s:17:\"systeminformation\";s:45:\"{\"system_BelogLog\":{\"lastAccess\":1687429483}}\";s:11:\"tx_recycler\";a:3:{s:14:\"depthSelection\";i:0;s:14:\"tableSelection\";s:0:\"\";s:11:\"resultLimit\";i:25;}s:8:\"realName\";s:0:\"\";s:5:\"email\";s:0:\"\";s:8:\"password\";s:0:\"\";s:9:\"password2\";s:0:\"\";s:6:\"avatar\";s:0:\"\";s:11:\"startModule\";s:0:\"\";s:25:\"showHiddenFilesAndFolders\";i:0;s:10:\"copyLevels\";s:0:\"\";s:18:\"resetConfiguration\";s:0:\"\";s:12:\"mfaProviders\";s:0:\"\";s:18:\"backendTitleFormat\";s:10:\"titleFirst\";}',NULL,NULL,1,NULL,1726243411,0,NULL,'',NULL);
/*!40000 ALTER TABLE `be_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fe_groups`
--
DROP TABLE IF EXISTS `fe_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fe_groups` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`cruser_id` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`tx_extbase_type` varchar(255) NOT NULL DEFAULT '0',
`title` varchar(50) NOT NULL DEFAULT '',
`subgroup` tinytext DEFAULT NULL,
`TSconfig` text DEFAULT NULL,
`felogin_redirectPid` tinytext DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fe_groups`
--
LOCK TABLES `fe_groups` WRITE;
/*!40000 ALTER TABLE `fe_groups` DISABLE KEYS */;
INSERT INTO `fe_groups` VALUES
(1,4,1627917152,1627917152,1,0,0,'','0','normal users','','',''),
(2,4,1627917165,1627917165,1,0,0,'','0','onetimeaccount','','',''),
(3,4,1627923226,1627922744,1,0,0,'','0','managers','1','',''),
(4,4,1627923245,1627922753,1,0,0,'','0','editors','1','','');
/*!40000 ALTER TABLE `fe_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fe_users`
--
DROP TABLE IF EXISTS `fe_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fe_users` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`cruser_id` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`disable` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`tx_extbase_type` varchar(255) NOT NULL DEFAULT '0',
`username` varchar(255) NOT NULL DEFAULT '',
`password` varchar(100) NOT NULL DEFAULT '',
`usergroup` text DEFAULT NULL,
`name` varchar(160) NOT NULL DEFAULT '',
`first_name` varchar(50) NOT NULL DEFAULT '',
`middle_name` varchar(50) NOT NULL DEFAULT '',
`last_name` varchar(50) NOT NULL DEFAULT '',
`address` varchar(255) NOT NULL DEFAULT '',
`telephone` varchar(30) NOT NULL DEFAULT '',
`fax` varchar(30) NOT NULL DEFAULT '',
`email` varchar(255) NOT NULL DEFAULT '',
`uc` blob DEFAULT NULL,
`title` varchar(40) NOT NULL DEFAULT '',
`zip` varchar(10) NOT NULL DEFAULT '',
`city` varchar(50) NOT NULL DEFAULT '',
`country` varchar(40) NOT NULL DEFAULT '',
`www` varchar(80) NOT NULL DEFAULT '',
`company` varchar(80) NOT NULL DEFAULT '',
`image` tinytext DEFAULT NULL,
`TSconfig` text DEFAULT NULL,
`lastlogin` int(10) unsigned NOT NULL DEFAULT 0,
`is_online` int(10) unsigned NOT NULL DEFAULT 0,
`felogin_redirectPid` tinytext DEFAULT NULL,
`felogin_forgotHash` varchar(80) DEFAULT '',
`tx_seminars_registration` int(10) unsigned NOT NULL DEFAULT 0,
`gender` smallint(5) unsigned NOT NULL DEFAULT 99,
`date_of_birth` int(11) NOT NULL DEFAULT 0,
`zone` varchar(45) NOT NULL DEFAULT '',
`status` smallint(5) unsigned NOT NULL DEFAULT 0,
`comments` text DEFAULT NULL,
`full_salutation` varchar(255) NOT NULL DEFAULT '',
`privacy` smallint(5) unsigned NOT NULL DEFAULT 0,
`mfa` mediumblob DEFAULT NULL,
`terms_acknowledged` smallint(5) unsigned NOT NULL DEFAULT 0,
`privacy_date_of_acceptance` int(10) unsigned NOT NULL DEFAULT 0,
`terms_date_of_acceptance` int(10) unsigned NOT NULL DEFAULT 0,
`vat_in` varchar(15) NOT NULL DEFAULT '',
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`username`(100)),
KEY `username` (`username`(100)),
KEY `is_online` (`is_online`),
KEY `felogin_forgotHash` (`felogin_forgotHash`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fe_users`
--
LOCK TABLES `fe_users` WRITE;
/*!40000 ALTER TABLE `fe_users` DISABLE KEYS */;
INSERT INTO `fe_users` VALUES
(1,4,1670000836,1627917285,1,0,0,0,0,'','0','attendee','$argon2i$v=19$m=65536,t=16,p=1$ODBXYmZrYkQ2akMwa1lHYg$iWz2uY5XHXAhjqG69uFSQDWvy/y1G931gk/s19sfBxo','1','Anna A. Attendee','Anna','Ariana','Attendee','Bertha-von-Suttner-Platz 1','+29 228 111111','','[email protected]','a:1:{s:49:\"tx_seminars_registration_editor_method_of_payment\";s:1:\"1\";}','','53111','Bonn','Germany','','Anna Enterprises','0','',1671406711,1671406711,'','',0,0,0,'',0,NULL,'Hello Anna!',0,NULL,0,0,0,''),
(2,4,1627922794,1627922794,1,0,0,0,0,'','0','manager','$argon2i$v=19$m=65536,t=16,p=1$SFlwZWtxcWgyNVEuV1BjbQ$ZoMcnqrwWGYifTKJDFrLEHwIOMnf9R/4AN1M3jqixbo','3','Max Manager','Max','','Manager','','','','[email protected]',NULL,'','','','','','',NULL,'',1628014697,1628016344,'','',0,0,0,'',0,NULL,'',0,NULL,0,0,0,''),
(3,4,1627922848,1627922848,1,0,0,0,0,'','0','editor','$argon2i$v=19$m=65536,t=16,p=1$N3IuWjhQUXBzRlkyUy45Wg$ktEw18UKASsqun0SoZDh8pG8ELNjo+wyrG6mbmoO8bw','1,4','Eddi Editor','Eddi','','Editor','','','','[email protected]',NULL,'','','','','','',NULL,'',1687429506,1687429569,'','',0,0,0,'',0,NULL,'',0,NULL,0,0,0,''),
(4,4,1628002830,1628002830,1,0,0,0,0,'','0','attendee1','$argon2i$v=19$m=65536,t=16,p=1$emEybmJQYi91N2NNUUVYcQ$8fJzJXhtMf2S8g0BWWgyT42ARYE25QogTLZFFGmHNRc','1','Joe Attendee','Joe','','Attendee','','','','[email protected]',NULL,'','','','','','',NULL,'',0,0,'','',0,0,0,'',0,NULL,'',0,NULL,0,0,0,''),
(5,4,1628002865,1628002862,1,0,0,0,0,'','0','attendee2','$argon2i$v=19$m=65536,t=16,p=1$THlYU0p2NDNseEd5N3RhNQ$eUEKyg2qTgUPr4oWcFacQ/s4J+9u4QQfQYPVQWdR1HM','1','Max Attendee','Max','','Attendee','','','','[email protected]',NULL,'','','','','','','0','',0,0,'','',0,0,0,'',0,NULL,'',0,NULL,0,0,0,''),
(6,4,1670000977,1670000977,2,0,0,0,0,'','0','admin','$argon2i$v=19$m=65536,t=16,p=1$cjR4ZVR1NXlLMUJIYkZoUQ$7HXMQwbSppGCYiBAYbMuyHOsi1FRWttEBCwQqF/t53U','4,3,1','Anton R. Admin','Anton','R.','Admin','Admin Avenue 4','+49 228 12345678','','[email protected]',NULL,'','53111','Bonn','Germany','','Admin Inc.',NULL,'',1671044482,1671044482,'','',0,99,0,'',0,'','Bonjour Anton!',0,NULL,0,0,0,'');
/*!40000 ALTER TABLE `fe_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pages`
--
DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pages` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT 0,
`tstamp` int(10) unsigned NOT NULL DEFAULT 0,
`crdate` int(10) unsigned NOT NULL DEFAULT 0,
`cruser_id` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`hidden` smallint(5) unsigned NOT NULL DEFAULT 0,
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`endtime` int(10) unsigned NOT NULL DEFAULT 0,
`fe_group` varchar(255) NOT NULL DEFAULT '0',
`sorting` int(11) NOT NULL DEFAULT 0,
`rowDescription` text DEFAULT NULL,
`editlock` smallint(5) unsigned NOT NULL DEFAULT 0,
`sys_language_uid` int(11) NOT NULL DEFAULT 0,
`l10n_parent` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_source` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_state` text DEFAULT NULL,
`t3_origuid` int(10) unsigned NOT NULL DEFAULT 0,
`l10n_diffsource` mediumblob DEFAULT NULL,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT 0,
`t3ver_state` smallint(6) NOT NULL DEFAULT 0,
`t3ver_stage` int(11) NOT NULL DEFAULT 0,
`perms_userid` int(10) unsigned NOT NULL DEFAULT 0,
`perms_groupid` int(10) unsigned NOT NULL DEFAULT 0,
`perms_user` smallint(5) unsigned NOT NULL DEFAULT 0,
`perms_group` smallint(5) unsigned NOT NULL DEFAULT 0,
`perms_everybody` smallint(5) unsigned NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`slug` varchar(2048) DEFAULT NULL,
`doktype` int(10) unsigned NOT NULL DEFAULT 0,
`TSconfig` text DEFAULT NULL,
`is_siteroot` smallint(6) NOT NULL DEFAULT 0,
`php_tree_stop` smallint(6) NOT NULL DEFAULT 0,
`url` varchar(255) NOT NULL DEFAULT '',
`shortcut` int(10) unsigned NOT NULL DEFAULT 0,
`shortcut_mode` int(10) unsigned NOT NULL DEFAULT 0,
`subtitle` varchar(255) NOT NULL DEFAULT '',
`layout` int(10) unsigned NOT NULL DEFAULT 0,
`target` varchar(80) NOT NULL DEFAULT '',
`media` int(10) unsigned NOT NULL DEFAULT 0,
`lastUpdated` int(10) unsigned NOT NULL DEFAULT 0,
`keywords` text DEFAULT NULL,
`cache_timeout` int(10) unsigned NOT NULL DEFAULT 0,
`cache_tags` varchar(255) NOT NULL DEFAULT '',
`newUntil` int(10) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`no_search` smallint(5) unsigned NOT NULL DEFAULT 0,
`SYS_LASTCHANGED` int(10) unsigned NOT NULL DEFAULT 0,
`abstract` text DEFAULT NULL,
`module` varchar(255) NOT NULL DEFAULT '',
`extendToSubpages` smallint(5) unsigned NOT NULL DEFAULT 0,
`author` varchar(255) NOT NULL DEFAULT '',
`author_email` varchar(255) NOT NULL DEFAULT '',
`nav_title` varchar(255) NOT NULL DEFAULT '',
`nav_hide` smallint(6) NOT NULL DEFAULT 0,
`content_from_pid` int(10) unsigned NOT NULL DEFAULT 0,
`mount_pid` int(10) unsigned NOT NULL DEFAULT 0,
`mount_pid_ol` smallint(6) NOT NULL DEFAULT 0,
`l18n_cfg` smallint(6) NOT NULL DEFAULT 0,
`fe_login_mode` smallint(6) NOT NULL DEFAULT 0,
`backend_layout` varchar(64) NOT NULL DEFAULT '',
`backend_layout_next_level` varchar(64) NOT NULL DEFAULT '',
`tsconfig_includes` text DEFAULT NULL,
`categories` int(10) unsigned NOT NULL DEFAULT 0,
`seo_title` varchar(255) NOT NULL DEFAULT '',
`no_index` smallint(6) NOT NULL DEFAULT 0,
`no_follow` smallint(6) NOT NULL DEFAULT 0,
`og_title` varchar(255) NOT NULL DEFAULT '',
`og_description` text DEFAULT NULL,
`og_image` int(10) unsigned NOT NULL DEFAULT 0,
`twitter_title` varchar(255) NOT NULL DEFAULT '',
`twitter_description` text DEFAULT NULL,
`twitter_image` int(10) unsigned NOT NULL DEFAULT 0,
`twitter_card` varchar(255) NOT NULL DEFAULT '',
`canonical_link` varchar(2048) NOT NULL DEFAULT '',
`sitemap_priority` decimal(2,1) NOT NULL DEFAULT 0.5,
`sitemap_changefreq` varchar(10) NOT NULL DEFAULT '',
PRIMARY KEY (`uid`),
KEY `determineSiteRoot` (`is_siteroot`),
KEY `language_identifier` (`l10n_parent`,`sys_language_uid`),
KEY `slug` (`slug`(127)),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `translation_source` (`l10n_source`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pages`
--
LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` VALUES
(1,0,1627916053,1627915543,1,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,0,'{\"title\":null}',0,0,0,0,1,0,31,27,0,'Home','/',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1627916053,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(2,1,1683113842,1627915775,1,0,0,0,0,'0',1536,NULL,0,0,0,0,NULL,0,'{\"hidden\":null}',0,0,0,0,1,0,31,27,0,'Data','/1',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(3,2,1683114315,1627915802,1,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,0,'{\"doktype\":\"\",\"title\":\"\",\"slug\":\"\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"module\":\"\",\"media\":\"\",\"tsconfig_includes\":\"\",\"TSconfig\":\"\",\"hidden\":\"\",\"editlock\":\"\",\"categories\":\"\",\"rowDescription\":\"\"}',0,0,0,0,1,0,31,27,0,'Tea','/tea-storage',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(4,2,1627916082,1627915808,1,0,0,0,0,'0',128,NULL,0,0,0,0,NULL,0,'{\"doktype\":null,\"title\":null,\"backend_layout\":null,\"backend_layout_next_level\":null,\"module\":null,\"media\":null,\"tsconfig_includes\":null,\"TSconfig\":null,\"hidden\":null,\"editlock\":null,\"categories\":null,\"rowDescription\":null}',0,0,0,0,1,0,31,27,0,'Users','/users',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'fe_users',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(5,2,1627921950,1627915869,1,0,0,0,0,'0',512,NULL,0,0,0,0,NULL,0,'{\"title\":null}',0,0,0,0,1,0,31,27,0,'Event data','/seminars-1',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(6,2,1627915887,1627915882,1,0,0,0,0,'0',64,NULL,0,0,0,0,NULL,0,'{\"hidden\":null}',0,0,0,0,1,0,31,27,0,'TypoScript templates','/typoscript-templates',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(7,1,1654167028,1627915894,1,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'Login','/login',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1654167028,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(8,1,1654167028,1627916000,1,0,0,0,0,'',128,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'Home','/home',4,NULL,0,0,'',1,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(9,1,1654167028,1627916163,1,0,0,0,0,'0',512,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'Tea','/tea',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1654167028,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(10,9,1627916491,1627916399,1,0,0,0,0,'',256,NULL,0,0,0,0,NULL,0,'{\"doktype\":null,\"title\":null,\"nav_title\":null,\"subtitle\":null,\"abstract\":null,\"keywords\":null,\"description\":null,\"author\":null,\"author_email\":null,\"lastUpdated\":null,\"layout\":null,\"newUntil\":null,\"backend_layout\":null,\"backend_layout_next_level\":null,\"content_from_pid\":null,\"alias\":null,\"target\":null,\"cache_timeout\":null,\"cache_tags\":null,\"is_siteroot\":null,\"no_search\":null,\"php_tree_stop\":null,\"module\":null,\"media\":null,\"tsconfig_includes\":null,\"TSconfig\":null,\"l18n_cfg\":null,\"hidden\":null,\"nav_hide\":null,\"starttime\":null,\"endtime\":null,\"extendToSubpages\":null,\"fe_group\":null,\"fe_login_mode\":null,\"editlock\":null,\"categories\":null,\"rowDescription\":null}',0,0,0,0,1,0,31,27,0,'Single','/single',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1627916491,NULL,'',0,'','','',1,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(11,5,1627921931,1627921774,1,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,0,'{\"title\":null}',0,0,0,0,1,0,31,27,0,'Events','/event-data',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(12,5,1627921975,1627921808,1,0,0,0,0,'0',512,NULL,0,0,0,0,NULL,0,'{\"title\":null}',0,0,0,0,1,0,31,27,0,'Registrations','/registrations',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(13,11,1627921957,1627921940,1,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,0,'{\"hidden\":null}',0,0,0,0,1,0,31,27,0,'Topics','/topics',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(14,11,1628001568,1627921966,1,0,0,0,0,'0',512,NULL,0,0,0,0,NULL,0,'{\"title\":null}',0,0,0,0,1,0,31,27,0,'Event dates','/events-dates',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(15,5,1627922003,1627921995,1,0,0,0,0,'0',768,NULL,0,0,0,0,NULL,0,'{\"hidden\":null}',0,0,0,0,1,0,31,27,0,'Data pool (speaker, sites, …)','/data-pl-speaker-sites',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(16,1,1654167028,1627922127,1,0,0,0,0,'0',1280,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'Seminars','/seminars',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1654167028,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(17,16,1669819115,1627922292,1,0,0,0,0,'',256,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'Details','/seminars/details',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1669819115,NULL,'',0,'','','',1,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(18,16,1669819115,1627922292,1,0,0,0,0,'',512,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'Registration','/seminars/registration',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1669819115,NULL,'',0,'','','',1,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(19,16,1669819115,1627922292,1,0,0,0,0,'-2',768,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'My Events','/seminars/my-events',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1669819115,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(20,16,1669819115,1627922292,1,0,0,0,0,'3',1024,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'My VIP events','/seminars/my-vip-events',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1627923147,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(21,16,1669819115,1627922292,1,0,0,0,0,'4',1280,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'FE Editor','/seminars/my-created-events',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1669819115,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(22,18,1627922430,1627922397,1,0,0,0,0,'',256,NULL,0,0,0,0,NULL,0,'{\"doktype\":null,\"title\":null,\"nav_title\":null,\"subtitle\":null,\"abstract\":null,\"keywords\":null,\"description\":null,\"author\":null,\"author_email\":null,\"lastUpdated\":null,\"layout\":null,\"newUntil\":null,\"backend_layout\":null,\"backend_layout_next_level\":null,\"content_from_pid\":null,\"alias\":null,\"target\":null,\"cache_timeout\":null,\"cache_tags\":null,\"is_siteroot\":null,\"no_search\":null,\"php_tree_stop\":null,\"module\":null,\"media\":null,\"tsconfig_includes\":null,\"TSconfig\":null,\"l18n_cfg\":null,\"hidden\":null,\"nav_hide\":null,\"starttime\":null,\"endtime\":null,\"extendToSubpages\":null,\"fe_group\":null,\"fe_login_mode\":null,\"editlock\":null,\"categories\":null,\"rowDescription\":null}',0,0,0,0,1,0,31,27,0,'Thank you','/2/thank-you',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1627922430,NULL,'',0,'','','',1,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(23,19,1627922528,1627922453,1,0,0,0,0,'-2',256,NULL,0,0,0,0,NULL,0,'{\"doktype\":null,\"title\":null,\"nav_title\":null,\"subtitle\":null,\"abstract\":null,\"keywords\":null,\"description\":null,\"author\":null,\"author_email\":null,\"lastUpdated\":null,\"layout\":null,\"newUntil\":null,\"backend_layout\":null,\"backend_layout_next_level\":null,\"content_from_pid\":null,\"alias\":null,\"target\":null,\"cache_timeout\":null,\"cache_tags\":null,\"is_siteroot\":null,\"no_search\":null,\"php_tree_stop\":null,\"module\":null,\"media\":null,\"tsconfig_includes\":null,\"TSconfig\":null,\"l18n_cfg\":null,\"hidden\":null,\"nav_hide\":null,\"starttime\":null,\"endtime\":null,\"extendToSubpages\":null,\"fe_group\":null,\"fe_login_mode\":null,\"editlock\":null,\"categories\":null,\"rowDescription\":null}',0,0,0,0,1,0,31,27,0,'Participants','/2/my-events/participants',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1627922528,NULL,'',0,'','','',1,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(24,20,1627923157,1627922473,1,0,0,0,0,'3',256,NULL,0,0,0,0,NULL,0,'{\"doktype\":null,\"title\":null,\"nav_title\":null,\"subtitle\":null,\"abstract\":null,\"keywords\":null,\"description\":null,\"author\":null,\"author_email\":null,\"lastUpdated\":null,\"layout\":null,\"newUntil\":null,\"backend_layout\":null,\"backend_layout_next_level\":null,\"content_from_pid\":null,\"alias\":null,\"target\":null,\"cache_timeout\":null,\"cache_tags\":null,\"is_siteroot\":null,\"no_search\":null,\"php_tree_stop\":null,\"module\":null,\"media\":null,\"tsconfig_includes\":null,\"TSconfig\":null,\"l18n_cfg\":null,\"hidden\":null,\"nav_hide\":null,\"starttime\":null,\"endtime\":null,\"extendToSubpages\":null,\"fe_group\":null,\"fe_login_mode\":null,\"editlock\":null,\"categories\":null,\"rowDescription\":null}',0,0,0,0,1,0,31,27,0,'Participants','/2/my-vip-events/participants',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1627923157,NULL,'',0,'','','',1,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(26,16,1669819115,1627922886,1,0,0,0,0,'0',384,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'Categories','/seminars/categories',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1627922890,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(27,16,1669819115,1627923323,1,0,0,0,0,'0',320,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'Topics','/seminars/topics',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1669819115,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(29,18,1627923496,1627923479,1,0,0,0,0,'',512,NULL,0,0,0,0,NULL,0,'{\"doktype\":null,\"title\":null,\"nav_title\":null,\"subtitle\":null,\"abstract\":null,\"keywords\":null,\"description\":null,\"author\":null,\"author_email\":null,\"lastUpdated\":null,\"layout\":null,\"newUntil\":null,\"backend_layout\":null,\"backend_layout_next_level\":null,\"content_from_pid\":null,\"alias\":null,\"target\":null,\"cache_timeout\":null,\"cache_tags\":null,\"is_siteroot\":null,\"no_search\":null,\"php_tree_stop\":null,\"module\":null,\"media\":null,\"tsconfig_includes\":null,\"TSconfig\":null,\"l18n_cfg\":null,\"hidden\":null,\"nav_hide\":null,\"starttime\":null,\"endtime\":null,\"extendToSubpages\":null,\"fe_group\":null,\"fe_login_mode\":null,\"editlock\":null,\"categories\":null,\"rowDescription\":null}',0,0,0,0,1,0,31,27,0,'Oh no!','/2/registration/oh-no',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',1,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(30,11,1628003426,1628003426,1,0,0,0,0,'0',768,'',0,0,0,0,NULL,0,'',0,0,0,0,1,0,31,27,0,'FE-created','/fe-created',254,'',0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','','',0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(31,0,1631546526,1631546510,1,0,0,0,0,'',256,NULL,0,1,1,1,'{\"starttime\":\"parent\",\"endtime\":\"parent\",\"nav_hide\":\"parent\",\"url\":\"parent\",\"lastUpdated\":\"parent\",\"newUntil\":\"parent\",\"no_search\":\"parent\",\"shortcut\":\"parent\",\"shortcut_mode\":\"parent\",\"content_from_pid\":\"parent\",\"author\":\"parent\",\"author_email\":\"parent\",\"media\":\"parent\"}',0,'{\"doktype\":1,\"title\":\"Home\",\"slug\":\"\\/\",\"nav_title\":\"\",\"subtitle\":\"\",\"abstract\":null,\"keywords\":null,\"description\":null,\"hidden\":0,\"categories\":0,\"rowDescription\":null,\"TSconfig\":null,\"php_tree_stop\":0,\"editlock\":0,\"layout\":0,\"fe_group\":\"0\",\"extendToSubpages\":0,\"target\":\"\",\"alias\":\"\",\"cache_timeout\":0,\"cache_tags\":\"\",\"mount_pid\":0,\"is_siteroot\":0,\"mount_pid_ol\":0,\"module\":\"\",\"fe_login_mode\":0,\"l18n_cfg\":0,\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"tsconfig_includes\":null}',0,0,0,0,1,0,31,27,0,'Home','/',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1631546526,NULL,'',0,'','','',0,0,0,0,0,0,'','','',0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(32,16,1669819115,1631549780,1,0,0,0,0,'',128,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,1,0,31,27,0,'Alle Spalten','/seminars/alle-spalten',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1669819115,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(33,16,1669819115,1669818665,2,0,0,0,0,'',1792,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,2,0,31,27,0,'AGB','/seminars/agb',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1669818976,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(34,16,1669819115,1669818687,2,0,0,0,0,'',2048,NULL,0,0,0,0,NULL,0,'{\"slug\":null,\"title\":null}',0,0,0,0,2,0,31,27,0,'Reisebedingungen','/seminars/reisebedingungen',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(36,16,1681136052,1681136048,2,0,0,0,0,'0',640,NULL,0,0,0,0,NULL,0,'{\"hidden\":\"\"}',0,0,0,0,2,0,31,27,0,'Weitere Infos','/seminars/weitere-infos',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(37,36,1681136157,1681136061,2,0,0,0,0,'',256,NULL,0,0,0,0,NULL,0,'{\"doktype\":\"\",\"title\":\"\",\"slug\":\"\",\"nav_title\":\"\",\"subtitle\":\"\",\"abstract\":\"\",\"keywords\":\"\",\"description\":\"\",\"author\":\"\",\"author_email\":\"\",\"lastUpdated\":\"\",\"layout\":\"\",\"newUntil\":\"\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"content_from_pid\":\"\",\"target\":\"\",\"cache_timeout\":\"\",\"cache_tags\":\"\",\"is_siteroot\":\"\",\"no_search\":\"\",\"php_tree_stop\":\"\",\"module\":\"\",\"media\":\"\",\"tsconfig_includes\":\"\",\"TSconfig\":\"\",\"l18n_cfg\":\"\",\"hidden\":\"\",\"nav_hide\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"extendToSubpages\":\"\",\"fe_group\":\"\",\"fe_login_mode\":\"\",\"editlock\":\"\",\"categories\":\"\",\"rowDescription\":\"\"}',0,0,0,0,2,0,31,27,0,'Joe Speaker','/seminars/weitere-infos/joe-speaker',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1681136157,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(38,36,1681136157,1681136068,2,0,0,0,0,'',512,NULL,0,0,0,0,NULL,0,'{\"doktype\":\"\",\"title\":\"\",\"slug\":\"\",\"nav_title\":\"\",\"subtitle\":\"\",\"abstract\":\"\",\"keywords\":\"\",\"description\":\"\",\"author\":\"\",\"author_email\":\"\",\"lastUpdated\":\"\",\"layout\":\"\",\"newUntil\":\"\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"content_from_pid\":\"\",\"target\":\"\",\"cache_timeout\":\"\",\"cache_tags\":\"\",\"is_siteroot\":\"\",\"no_search\":\"\",\"php_tree_stop\":\"\",\"module\":\"\",\"media\":\"\",\"tsconfig_includes\":\"\",\"TSconfig\":\"\",\"l18n_cfg\":\"\",\"hidden\":\"\",\"nav_hide\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"extendToSubpages\":\"\",\"fe_group\":\"\",\"fe_login_mode\":\"\",\"editlock\":\"\",\"categories\":\"\",\"rowDescription\":\"\"}',0,0,0,0,2,0,31,27,0,'TYPO3 Trainer Network','/seminars/typo3-trainer-network',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1681136157,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(39,36,1681136157,1681136085,2,0,0,0,0,'',768,NULL,0,0,0,0,NULL,0,'{\"doktype\":\"\",\"title\":\"\",\"slug\":\"\",\"nav_title\":\"\",\"subtitle\":\"\",\"abstract\":\"\",\"keywords\":\"\",\"description\":\"\",\"author\":\"\",\"author_email\":\"\",\"lastUpdated\":\"\",\"layout\":\"\",\"newUntil\":\"\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"content_from_pid\":\"\",\"target\":\"\",\"cache_timeout\":\"\",\"cache_tags\":\"\",\"is_siteroot\":\"\",\"no_search\":\"\",\"php_tree_stop\":\"\",\"module\":\"\",\"media\":\"\",\"tsconfig_includes\":\"\",\"TSconfig\":\"\",\"l18n_cfg\":\"\",\"hidden\":\"\",\"nav_hide\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"extendToSubpages\":\"\",\"fe_group\":\"\",\"fe_login_mode\":\"\",\"editlock\":\"\",\"categories\":\"\",\"rowDescription\":\"\"}',0,0,0,0,2,0,31,27,0,'Hostel','/seminars/weitere-infos/hostel',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1681136157,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(40,2,1683114369,1683114297,2,0,0,0,0,'',256,NULL,0,1,3,3,'{\"starttime\":\"parent\",\"endtime\":\"parent\",\"nav_hide\":\"parent\",\"url\":\"parent\",\"lastUpdated\":\"parent\",\"newUntil\":\"parent\",\"no_search\":\"parent\",\"shortcut\":\"parent\",\"shortcut_mode\":\"parent\",\"content_from_pid\":\"parent\",\"author\":\"parent\",\"author_email\":\"parent\",\"media\":\"parent\"}',0,'{\"doktype\":\"254\",\"slug\":\"\\/tea-storage\",\"hidden\":\"0\",\"starttime\":\"0\",\"endtime\":\"0\",\"l10n_parent\":\"0\",\"categories\":\"0\",\"l10n_diffsource\":\"{\\\"title\\\":null}\",\"layout\":\"0\",\"lastUpdated\":\"0\",\"newUntil\":\"0\",\"cache_timeout\":\"0\",\"shortcut\":\"0\",\"shortcut_mode\":\"0\",\"content_from_pid\":\"0\",\"mount_pid\":\"0\",\"module\":\"\",\"t3_origuid\":\"0\",\"sys_language_uid\":\"0\",\"l10n_source\":\"0\",\"title\":\"Tea\",\"nav_hide\":\"0\",\"url\":\"\",\"no_search\":\"0\",\"author\":\"\",\"author_email\":\"\",\"media\":\"0\",\"TSconfig\":\"\",\"php_tree_stop\":\"0\",\"editlock\":\"0\",\"fe_group\":\"0\",\"extendToSubpages\":\"0\",\"target\":\"\",\"cache_tags\":\"\",\"is_siteroot\":\"0\",\"mount_pid_ol\":\"0\",\"fe_login_mode\":\"0\",\"l18n_cfg\":\"0\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"tsconfig_includes\":\"\",\"rowDescription\":\"\"}',0,0,0,0,1,0,31,27,0,'Tea','/tea-storage-english',254,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,0,0,'','','',0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(41,1,1683114500,1683114445,2,0,0,0,0,'',512,NULL,0,1,9,9,'{\"starttime\":\"parent\",\"endtime\":\"parent\",\"nav_hide\":\"parent\",\"url\":\"parent\",\"lastUpdated\":\"parent\",\"newUntil\":\"parent\",\"no_search\":\"parent\",\"shortcut\":\"parent\",\"shortcut_mode\":\"parent\",\"content_from_pid\":\"parent\",\"author\":\"parent\",\"author_email\":\"parent\",\"media\":\"parent\"}',0,'{\"doktype\":\"1\",\"slug\":\"\\/tea\",\"hidden\":\"0\",\"starttime\":\"0\",\"endtime\":\"0\",\"l10n_parent\":\"0\",\"categories\":\"0\",\"l10n_diffsource\":\"{\\\"slug\\\":null,\\\"title\\\":null}\",\"layout\":\"0\",\"lastUpdated\":\"0\",\"newUntil\":\"0\",\"cache_timeout\":\"0\",\"shortcut\":\"0\",\"shortcut_mode\":\"0\",\"content_from_pid\":\"0\",\"mount_pid\":\"0\",\"module\":\"\",\"t3_origuid\":\"0\",\"sys_language_uid\":\"0\",\"l10n_source\":\"0\",\"title\":\"Tea\",\"nav_hide\":\"0\",\"url\":\"\",\"no_search\":\"0\",\"author\":\"\",\"author_email\":\"\",\"media\":\"0\",\"TSconfig\":\"\",\"php_tree_stop\":\"0\",\"editlock\":\"0\",\"fe_group\":\"0\",\"extendToSubpages\":\"0\",\"target\":\"\",\"cache_tags\":\"\",\"is_siteroot\":\"0\",\"mount_pid_ol\":\"0\",\"fe_login_mode\":\"0\",\"l18n_cfg\":\"0\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"tsconfig_includes\":\"\",\"nav_title\":\"\",\"subtitle\":\"\",\"abstract\":\"\",\"keywords\":\"\",\"description\":\"\",\"rowDescription\":\"\"}',0,0,0,0,1,0,31,27,0,'Tea','/tea',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1683114500,NULL,'',0,'','','',0,0,0,0,0,0,'','','',0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(42,9,1683114496,1683114461,2,0,0,0,0,'',256,NULL,0,1,10,10,'{\"starttime\":\"parent\",\"endtime\":\"parent\",\"nav_hide\":\"parent\",\"url\":\"parent\",\"lastUpdated\":\"parent\",\"newUntil\":\"parent\",\"no_search\":\"parent\",\"shortcut\":\"parent\",\"shortcut_mode\":\"parent\",\"content_from_pid\":\"parent\",\"author\":\"parent\",\"author_email\":\"parent\",\"media\":\"parent\"}',0,'{\"doktype\":\"1\",\"slug\":\"\\/single\",\"hidden\":\"0\",\"starttime\":\"0\",\"endtime\":\"0\",\"l10n_parent\":\"0\",\"categories\":\"0\",\"l10n_diffsource\":\"{\\\"doktype\\\":null,\\\"title\\\":null,\\\"nav_title\\\":null,\\\"subtitle\\\":null,\\\"abstract\\\":null,\\\"keywords\\\":null,\\\"description\\\":null,\\\"author\\\":null,\\\"author_email\\\":null,\\\"lastUpdated\\\":null,\\\"layout\\\":null,\\\"newUntil\\\":null,\\\"backend_layout\\\":null,\\\"backend_layout_next_level\\\":null,\\\"content_from_pid\\\":null,\\\"alias\\\":null,\\\"target\\\":null,\\\"cache_timeout\\\":null,\\\"cache_tags\\\":null,\\\"is_siteroot\\\":null,\\\"no_search\\\":null,\\\"php_tree_stop\\\":null,\\\"module\\\":null,\\\"media\\\":null,\\\"tsconfig_includes\\\":null,\\\"TSconfig\\\":null,\\\"l18n_cfg\\\":null,\\\"hidden\\\":null,\\\"nav_hide\\\":null,\\\"starttime\\\":null,\\\"endtime\\\":null,\\\"extendToSubpages\\\":null,\\\"fe_group\\\":null,\\\"fe_login_mode\\\":null,\\\"editlock\\\":null,\\\"categories\\\":null,\\\"rowDescription\\\":null}\",\"layout\":\"0\",\"lastUpdated\":\"0\",\"newUntil\":\"0\",\"cache_timeout\":\"0\",\"shortcut\":\"0\",\"shortcut_mode\":\"0\",\"content_from_pid\":\"0\",\"mount_pid\":\"0\",\"module\":\"\",\"t3_origuid\":\"0\",\"sys_language_uid\":\"0\",\"l10n_source\":\"0\",\"title\":\"Single\",\"nav_hide\":\"1\",\"url\":\"\",\"no_search\":\"0\",\"author\":\"\",\"author_email\":\"\",\"media\":\"0\",\"TSconfig\":\"\",\"php_tree_stop\":\"0\",\"editlock\":\"0\",\"fe_group\":\"\",\"extendToSubpages\":\"0\",\"target\":\"\",\"cache_tags\":\"\",\"is_siteroot\":\"0\",\"mount_pid_ol\":\"0\",\"fe_login_mode\":\"0\",\"l18n_cfg\":\"0\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"tsconfig_includes\":\"\",\"nav_title\":\"\",\"subtitle\":\"\",\"abstract\":\"\",\"keywords\":\"\",\"description\":\"\",\"rowDescription\":\"\"}',0,0,0,0,1,0,31,27,0,'Single','/tea/single',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1683114496,NULL,'',0,'','','',1,0,0,0,0,0,'','','',0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(43,9,1687429548,1687429526,2,0,0,0,0,'-2',512,NULL,0,0,0,0,NULL,0,'{\"doktype\":\"\",\"title\":\"\",\"slug\":\"\",\"nav_title\":\"\",\"subtitle\":\"\",\"abstract\":\"\",\"keywords\":\"\",\"description\":\"\",\"author\":\"\",\"author_email\":\"\",\"lastUpdated\":\"\",\"layout\":\"\",\"newUntil\":\"\",\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"content_from_pid\":\"\",\"target\":\"\",\"cache_timeout\":\"\",\"cache_tags\":\"\",\"is_siteroot\":\"\",\"no_search\":\"\",\"php_tree_stop\":\"\",\"module\":\"\",\"media\":\"\",\"tsconfig_includes\":\"\",\"TSconfig\":\"\",\"l18n_cfg\":\"\",\"hidden\":\"\",\"nav_hide\":\"\",\"starttime\":\"\",\"endtime\":\"\",\"extendToSubpages\":\"\",\"fe_group\":\"\",\"fe_login_mode\":\"\",\"editlock\":\"\",\"categories\":\"\",\"rowDescription\":\"\"}',0,0,0,0,2,0,31,27,0,'Tea editor','/tea-editor',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1687429548,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'','',0.5,''),
(44,1,1687701590,1687701584,2,0,0,0,0,'0',1408,NULL,0,0,0,0,NULL,0,'{\"hidden\":\"\"}',0,0,0,0,2,0,31,27,0,'Suche','/suche',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1687701590,NULL,'',0,'','','',0,0,0,0,0,0,'','',NULL,0,'',0,0,'',NULL,0,'',NULL,0,'summary','',0.5,'');
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `static_countries`
--
DROP TABLE IF EXISTS `static_countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `static_countries` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`cn_iso_2` varchar(2) NOT NULL DEFAULT '',
`cn_iso_3` varchar(3) NOT NULL DEFAULT '',
`cn_iso_nr` int(11) NOT NULL DEFAULT 0,
`cn_parent_territory_uid` int(11) NOT NULL DEFAULT 0,
`cn_parent_tr_iso_nr` int(11) NOT NULL DEFAULT 0,
`cn_official_name_local` varchar(128) NOT NULL DEFAULT '',
`cn_official_name_en` varchar(128) NOT NULL DEFAULT '',
`cn_capital` varchar(45) NOT NULL DEFAULT '',
`cn_tldomain` varchar(2) NOT NULL DEFAULT '',
`cn_currency_uid` int(11) NOT NULL DEFAULT 0,
`cn_currency_iso_3` varchar(3) NOT NULL DEFAULT '',
`cn_currency_iso_nr` int(11) NOT NULL DEFAULT 0,
`cn_phone` int(11) NOT NULL DEFAULT 0,
`cn_eu_member` smallint(6) NOT NULL DEFAULT 0,
`cn_uno_member` smallint(6) NOT NULL DEFAULT 0,
`cn_address_format` smallint(6) NOT NULL DEFAULT 0,
`cn_zone_flag` smallint(6) NOT NULL DEFAULT 0,
`cn_short_local` varchar(70) NOT NULL DEFAULT '',
`cn_short_en` varchar(50) NOT NULL DEFAULT '',
`cn_country_zones` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`)
) ENGINE=InnoDB AUTO_INCREMENT=254 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `static_countries`
--
LOCK TABLES `static_countries` WRITE;
/*!40000 ALTER TABLE `static_countries` DISABLE KEYS */;
INSERT INTO `static_countries` VALUES
(1,0,0,'AD','AND',20,10,39,'Principat d\'Andorra','Principality of Andorra','Andorra la Vella','ad',49,'EUR',978,376,0,1,1,0,'Andorra','Andorra',0),
(2,0,0,'AE','ARE',784,9,145,'الإمارات العربيّة المتّحدة','United Arab Emirates','Abu Dhabi','ae',2,'AED',784,971,0,1,1,0,'الإمارات العربيّة المتّحدة','United Arab Emirates',0),
(3,0,0,'AF','AFG',4,30,34,'د افغانستان اسلامي دولت','Islamic Republic of Afghanistan','Kabul','af',171,'AFN',971,93,0,1,2,0,'افغانستان','Afghanistan',0),
(4,0,0,'AG','ATG',28,19,29,'Antigua and Barbuda','Antigua and Barbuda','St John\'s','ag',163,'XCD',951,1268,0,1,1,0,'Antigua and Barbuda','Antigua and Barbuda',0),
(5,0,0,'AI','AIA',660,19,29,'Anguilla','Anguilla','The Valley','ai',163,'XCD',951,1264,0,0,1,0,'Anguilla','Anguilla',0),
(6,0,0,'AL','ALB',8,10,39,'Republika e Shqipërisë','Republic of Albania','Tirana','al',4,'ALL',8,355,0,1,1,0,'Shqipëria','Albania',0),
(7,0,0,'AM','ARM',51,9,145,'Հայաստանի Հանրապետություն','Republic of Armenia','Yerevan','am',5,'AMD',51,374,0,1,1,0,'Հայաստան','Armenia',0),
(8,0,1,'AN','ANT',530,19,29,'Nederlandse Antillen','Netherlands Antilles','Willemstad','an',6,'ANG',532,599,0,0,1,0,'Nederlandse Antillen','Netherlands Antilles',0),
(9,0,0,'AO','AGO',24,23,17,'República de Angola','Republic of Angola','Luanda','ao',7,'AOA',973,244,0,1,1,0,'Angola','Angola',0),
(10,0,0,'AQ','ATA',10,0,0,'Antarctica','Antarctica','','aq',0,'',0,67212,0,0,1,0,'Antarctica','Antarctica',0),
(11,0,0,'AR','ARG',32,16,5,'República Argentina','Argentine Republic','Buenos Aires','ar',8,'ARS',32,54,0,1,2,0,'Argentina','Argentina',0),
(12,0,0,'AS','ASM',16,28,61,'Amerika Samoa','American Samoa','Pago Pago','as',155,'USD',840,685,0,0,1,0,'Amerika Samoa','American Samoa',0),
(13,0,0,'AT','AUT',40,13,155,'Republik Österreich','Republic of Austria','Vienna','at',49,'EUR',978,43,1,1,1,0,'Österreich','Austria',9),
(14,0,0,'AU','AUS',36,25,53,'Commonwealth of Australia','Commonwealth of Australia','Canberra','au',9,'AUD',36,61,0,1,3,0,'Australia','Australia',8),
(15,0,0,'AW','ABW',533,19,29,'Aruba','Aruba','Oranjestad','aw',10,'AWG',533,297,0,0,0,0,'Aruba','Aruba',0),
(16,0,0,'AZ','AZE',31,9,145,'Azərbaycan Respublikası','Republic of Azerbaijan','Baku','az',11,'AZN',944,994,0,1,1,0,'Azərbaycan','Azerbaijan',0),
(17,0,0,'BA','BIH',70,10,39,'Bosna i Hercegovina / Босна и Херцеговина','Bosnia and Herzegovina','Sarajevo','ba',12,'BAM',977,387,0,1,0,0,'BiH/БиХ','Bosnia and Herzegovina',0),
(18,0,0,'BB','BRB',52,19,29,'Barbados','Barbados','Bridgetown','bb',13,'BBD',52,1246,0,1,1,0,'Barbados','Barbados',0),
(19,0,0,'BD','BGD',50,30,34,'গনপ্রজাতন্ত্রী বাংলা','People’s Republic of Bangladesh','Dhaka','bd',14,'BDT',50,880,0,1,1,0,'বাংলাদেশ','Bangladesh',0),
(20,0,0,'BE','BEL',56,13,155,'Koninkrijk België / Royaume de Belgique','Kingdom of Belgium','Brussels','be',49,'EUR',978,32,1,1,1,0,'Belgique','Belgium',0),
(21,0,0,'BF','BFA',854,20,11,'Burkina Faso','Burkina Faso','Ouagadougou','bf',164,'XOF',952,226,0,1,1,0,'Burkina','Burkina Faso',0),
(22,0,0,'BG','BGR',100,11,151,'Република България','Republic of Bulgaria','Sofia','bg',16,'BGN',975,359,1,1,1,0,'Bulgaria','Bulgaria',0),
(23,0,0,'BH','BHR',48,9,145,'مملكة البحرين','Kingdom of Bahrain','Manama','bh',17,'BHD',48,973,0,1,1,0,'البحري','Bahrain',0),
(24,0,0,'BI','BDI',108,21,14,'Republika y\'u Burundi','Republic of Burundi','Bujumbura','bi',18,'BIF',108,257,0,1,1,0,'Burundi','Burundi',0),
(25,0,0,'BJ','BEN',204,20,11,'République du Bénin','Republic of Benin','Porto Novo','bj',164,'XOF',952,229,0,1,1,0,'Bénin','Benin',0),
(26,0,0,'BM','BMU',60,18,21,'Bermuda','Bermuda','Hamilton','bm',19,'BMD',60,1441,0,0,1,0,'Bermuda','Bermuda',0),
(27,0,0,'BN','BRN',96,7,35,'برني دارالسلام','Sultanate of Brunei','Bandar Seri Begawan','bn',20,'BND',96,673,0,1,1,0,'دارالسلام','Brunei',0),
(28,0,0,'BO','BOL',68,16,5,'Estado Plurinacional de Bolivia','Plurinational State of Bolivia','Sucre','bo',21,'BOB',68,591,0,1,1,0,'Bolivia','Bolivia',0),
(29,0,0,'BR','BRA',76,16,5,'República Federativa do Brasil','Federative Republic of Brazil','Brasilia','br',23,'BRL',986,55,0,1,9,0,'Brasil','Brazil',27),
(30,0,0,'BS','BHS',44,19,29,'Commonwealth of The Bahamas','Commonwealth of The Bahamas','Nassau','bs',24,'BSD',44,1242,0,1,1,0,'The Bahamas','The Bahamas',0),
(31,0,0,'BT','BTN',64,30,34,'Druk-Yul','Kingdom of Bhutan','Thimphu','bt',25,'BTN',64,975,0,1,1,0,'Druk-Yul','Bhutan',0),
(32,0,0,'BV','BVT',74,0,0,'Bouvet Island','Bouvet Island','','bv',111,'NOK',578,0,0,0,1,0,'Bouvetøya','Bouvet Island',0),
(33,0,0,'BW','BWA',72,24,18,'Republic of Botswana','Republic of Botswana','Gaborone','bw',26,'BWP',72,267,0,1,1,0,'Botswana','Botswana',0),
(34,0,0,'BY','BLR',112,11,151,'Рэспубліка Беларусь','Republic of Belarus','Minsk','by',27,'BYR',974,375,0,1,1,0,'Беларусь','Belarus',0),
(35,0,0,'BZ','BLZ',84,17,13,'Belize','Belize','Belmopan','bz',28,'BZD',84,501,0,1,1,0,'Belize','Belize',0),
(36,0,0,'CA','CAN',124,18,21,'Canada','Canada','Ottawa','ca',29,'CAD',124,1,0,1,4,0,'Canada','Canada',13),
(37,0,0,'CC','CCK',166,25,53,'Territory of Cocos (Keeling) Islands','Territory of Cocos (Keeling) Islands','Bantam','cc',9,'AUD',36,6722,0,0,1,0,'Cocos (Keeling) Islands','Cocos (Keeling) Islands',0),
(38,0,0,'CD','COD',180,23,17,'République Démocratique du Congo','Democratic Republic of the Congo','Kinshasa','cd',30,'CDF',976,243,0,1,0,0,'Congo','Congo',0),
(39,0,0,'CF','CAF',140,23,17,'République centrafricaine','Central African Republic','Bangui','cf',162,'XAF',950,236,0,1,1,0,'République centrafricaine','Central African Republic',0),
(40,0,0,'CG','COG',178,23,17,'République du Congo','Republic of the Congo','Brazzaville','cg',162,'XAF',950,242,0,1,1,0,'Congo-Brazzaville','Congo-Brazzaville',0),
(41,0,0,'CH','CHE',756,13,155,'Confédération suisse / Schweizerische Eidgenossenschaft','Swiss Confederation','Berne','ch',31,'CHF',756,41,0,1,1,0,'Schweiz','Switzerland',26),
(42,0,0,'CI','CIV',384,20,11,'République de Côte d’Ivoire','Republic of Côte d\'Ivoire','Yamoussoukro','ci',164,'XOF',952,225,0,1,2,0,'Côte d’Ivoire','Côte d’Ivoire',0),
(43,0,0,'CK','COK',184,28,61,'Cook Islands','Cook Islands','Avarua','ck',113,'NZD',554,682,0,0,1,0,'Cook Islands','Cook Islands',0),
(44,0,0,'CL','CHL',152,16,5,'República de Chile','Republic of Chile','Santiago','cl',33,'CLP',152,56,0,1,1,0,'Chile','Chile',0),
(45,0,0,'CM','CMR',120,23,17,'Republic of Cameroon / République du Cameroun','Republic of Cameroon','Yaoundé','cm',162,'XAF',950,237,0,1,1,0,'Cameroun','Cameroon',0),
(46,0,0,'CN','CHN',156,6,30,'中华人民共和国','People’s Republic of China','Beijing','cn',34,'CNY',156,86,0,1,1,0,'中国','China',0),
(47,0,0,'CO','COL',170,16,5,'República de Colombia','Republic of Colombia','Bogotá','co',35,'COP',170,57,0,1,1,0,'Colombia','Colombia',0),
(48,0,0,'CR','CRI',188,17,13,'República de Costa Rica','Republic of Costa Rica','San José','cr',36,'CRC',188,506,0,1,1,0,'Costa Rica','Costa Rica',0),
(49,0,0,'CU','CUB',192,19,29,'República de Cuba','Republic of Cuba','Havana','cu',37,'CUP',192,53,0,1,1,0,'Cuba','Cuba',0),
(50,0,0,'CV','CPV',132,20,11,'República de Cabo Verde','Republic of Cape Verde','Praia','cv',38,'CVE',132,238,0,1,1,0,'Cabo Verde','Cape Verde',0),
(51,0,0,'CX','CXR',162,0,0,'Territory of Christmas Island','Territory of Christmas Island','Flying Fish Cove','cx',9,'AUD',36,6724,0,0,1,0,'Christmas Island','Christmas Island',0),
(52,0,0,'CY','CYP',196,9,145,'Κυπριακή Δημοκρατία / Kıbrıs Cumhuriyeti','Republic of Cyprus','Nicosia','cy',49,'EUR',978,357,1,1,1,0,'Κύπρος / Kıbrıs','Cyprus',0),
(53,0,0,'CZ','CZE',203,11,151,'Česká republika','Czech Republic','Prague','cz',40,'CZK',203,420,1,1,1,0,'Česko','Czech Republic',0),
(54,0,0,'DE','DEU',276,13,155,'Bundesrepublik Deutschland','Federal Republic of Germany','Berlin','de',49,'EUR',978,49,1,1,1,0,'Deutschland','Germany',16),
(55,0,0,'DJ','DJI',262,21,14,'جمهورية جيبوتي / République de Djibouti','Republic of Djibouti','Djibouti','dj',41,'DJF',262,253,0,1,1,0,'جيبوتي /Djibouti','Djibouti',0),
(56,0,0,'DK','DNK',208,12,154,'Kongeriget Danmark','Kingdom of Denmark','Copenhagen','dk',42,'DKK',208,45,1,1,1,0,'Danmark','Denmark',0),
(57,0,0,'DM','DMA',212,19,29,'Commonwealth of Dominica','Commonwealth of Dominica','Roseau','dm',163,'XCD',951,1767,0,1,1,0,'Dominica','Dominica',0),
(58,0,0,'DO','DOM',214,19,29,'República Dominicana','Dominican Republic','Santo Domingo','do',43,'DOP',214,1809,0,1,1,0,'Quisqueya','Dominican Republic',0),
(59,0,0,'DZ','DZA',12,22,15,'الجمهورية الجزائرية الديمقراطية','People’s Democratic Republic of Algeria','Algiers','dz',44,'DZD',12,213,0,1,1,0,'الجزائ','Algeria',0),
(60,0,0,'EC','ECU',218,16,5,'República del Ecuador','Republic of Ecuador','Quito','ec',155,'USD',840,593,0,1,1,0,'Ecuador','Ecuador',0),
(61,0,0,'EE','EST',233,12,154,'Eesti Vabariik','Republic of Estonia','Tallinn','ee',49,'EUR',978,372,1,1,1,0,'Eesti','Estonia',0),
(62,0,0,'EG','EGY',818,22,15,'جمهوريّة مصر العربيّة','Arab Republic of Egypt','Cairo','eg',46,'EGP',818,20,0,1,1,0,'مصر','Egypt',0),
(63,0,0,'EH','ESH',732,22,15,'الصحراء الغربية','Western Sahara','El Aaiún','eh',92,'MAD',504,212,0,0,1,0,'الصحراء الغربي','Western Sahara',0),
(64,0,0,'ER','ERI',232,21,14,'ሃግሬ ኤርትራ','State of Eritrea','Asmara','er',47,'ERN',232,291,0,1,1,0,'ኤርትራ','Eritrea',0),
(65,0,0,'ES','ESP',724,10,39,'Reino de España','Kingdom of Spain','Madrid','es',49,'EUR',978,34,1,1,8,0,'España','Spain',52),
(66,0,0,'ET','ETH',231,21,14,'የኢትዮጵያ ፌዴራላዊ','Federal Democratic Republic of Ethiopia','Addis Ababa','et',48,'ETB',230,251,0,1,1,0,'ኢትዮጵያ','Ethiopia',0),
(67,0,0,'FI','FIN',246,12,154,'Suomen Tasavalta / Republiken Finland','Republic of Finland','Helsinki','fi',49,'EUR',978,358,1,1,1,0,'Suomi','Finland',0),
(68,0,0,'FJ','FJI',242,26,54,'Republic of Fiji / Matanitu Tu-Vaka-i-koya ko Vi','Republic of Fiji','Suva','fj',50,'FJD',242,679,0,1,1,0,'Fiji / Viti','Fiji',0),
(69,0,0,'FK','FLK',238,16,5,'Falkland Islands','Falkland Islands','Stanley','fk',51,'FKP',238,500,0,0,1,0,'Falkland Islands','Falkland Islands',0),
(70,0,0,'FM','FSM',583,27,57,'Federated States of Micronesia','Federated States of Micronesia','Palikir','fm',155,'USD',840,691,0,1,1,0,'Micronesia','Micronesia',0),
(71,0,0,'FO','FRO',234,12,154,'Føroyar / Færøerne','Faroe Islands','Thorshavn','fo',42,'DKK',208,298,0,0,1,0,'Føroyar / Færøerne','Faroes',0),
(72,0,0,'FR','FRA',250,13,155,'République française','French Republic','Paris','fr',49,'EUR',978,33,1,1,1,0,'France','France',131),
(73,0,0,'GA','GAB',266,23,17,'République Gabonaise','Gabonese Republic','Libreville','ga',162,'XAF',950,241,0,1,1,0,'Gabon','Gabon',0),
(74,0,0,'GB','GBR',826,12,154,'United Kingdom of Great Britain and Northern Ireland','United Kingdom of Great Britain and Northern Ireland','London','uk',52,'GBP',826,44,0,1,5,0,'United Kingdom','United Kingdom',105),
(75,0,0,'GD','GRD',308,19,29,'Grenada','Grenada','St George\'s','gd',163,'XCD',951,1473,0,1,1,0,'Grenada','Grenada',0),
(76,0,0,'GE','GEO',268,9,145,'საქართველო','Georgia','Tbilisi','ge',53,'GEL',981,995,0,1,1,0,'საქართველო','Georgia',0),
(77,0,0,'GF','GUF',254,16,5,'Guyane française','French Guiana','Cayenne','gf',49,'EUR',978,594,0,0,1,0,'Guyane française','French Guiana',0),
(78,0,0,'GH','GHA',288,20,11,'Republic of Ghana','Republic of Ghana','Accra','gh',177,'GHS',936,233,0,1,1,0,'Ghana','Ghana',0),
(79,0,0,'GI','GIB',292,10,39,'Gibraltar','Gibraltar','Gibraltar','gi',55,'GIP',292,350,0,0,1,0,'Gibraltar','Gibraltar',0),
(80,0,0,'GL','GRL',304,18,21,'Kalaallit Nunaat / Grønland','Greenland','Nuuk','gl',42,'DKK',208,299,0,0,1,0,'Grønland','Greenland',0),
(81,0,0,'GM','GMB',270,20,11,'Republic of The Gambia','Republic of The Gambia','Banjul','gm',56,'GMD',270,220,0,1,1,0,'Gambia','Gambia',0),
(82,0,0,'GN','GIN',324,20,11,'République de Guinée','Republic of Guinea','Conakry','gn',57,'GNF',324,224,0,1,1,0,'Guinée','Guinea',0),
(83,0,0,'GP','GLP',312,19,29,'Département de la Guadeloupe','Department of Guadeloupe','Basse Terre','gp',49,'EUR',978,590,0,0,1,0,'Guadeloupe','Guadeloupe',0),
(84,0,0,'GQ','GNQ',226,23,17,'República de Guinea Ecuatorial','Republic of Equatorial Guinea','Malabo','gq',162,'XAF',950,240,0,1,1,0,'Guinea Ecuatorial','Equatorial Guinea',0),
(85,0,0,'GR','GRC',300,10,39,'Ελληνική Δημοκρατία','Hellenic Republic','Athens','gr',49,'EUR',978,30,1,1,1,0,'Ελλάδα','Greece',0),
(86,0,0,'GS','SGS',239,0,0,'South Georgia and the South Sandwich Islands','South Georgia and the South Sandwich Islands','','gs',52,'GBP',826,0,0,0,0,0,'South Georgia and the South Sandwich Islands','South Georgia and the South Sandwich Islands',0),
(87,0,0,'GT','GTM',320,17,13,'República de Guatemala','Republic of Guatemala','Guatemala City','gt',58,'GTQ',320,502,0,1,1,0,'Guatemala','Guatemala',0),
(88,0,0,'GU','GUM',316,27,57,'The Territory of Guam / Guåhån','The Territory of Guam','Hagåtña','gu',155,'USD',840,671,0,0,1,0,'Guåhån','Guam',0),
(89,0,0,'GW','GNB',624,20,11,'República da Guiné-Bissau','Republic of Guinea-Bissau','Bissau','gw',164,'XOF',952,245,0,1,1,0,'Guiné-Bissau','Guinea-Bissau',0),
(90,0,0,'GY','GUY',328,16,5,'Co-operative Republic of Guyana','Co-operative Republic of Guyana','Georgetown','gy',60,'GYD',328,592,0,1,1,0,'Guyana','Guyana',0),
(91,0,0,'HK','HKG',344,6,30,'香港特別行政區','Hong Kong SAR of the People’s Republic of China','','hk',61,'HKD',344,852,0,0,1,0,'香港','Hong Kong SAR of China',0),
(92,0,0,'HN','HND',340,17,13,'República de Honduras','Republic of Honduras','Tegucigalpa','hn',62,'HNL',340,504,0,1,1,0,'Honduras','Honduras',0),
(93,0,0,'HR','HRV',191,10,39,'Republika Hrvatska','Republic of Croatia','Zagreb','hr',63,'HRK',191,385,1,1,1,0,'Hrvatska','Croatia',21),
(94,0,0,'HT','HTI',332,19,29,'Repiblik d Ayiti / République d\'Haïti','Republic of Haiti','Port-au-Prince','ht',64,'HTG',332,509,0,1,1,0,'Ayiti','Haiti',0),
(95,0,0,'HU','HUN',348,11,151,'Magyar Köztársaság','Hungary','Budapest','hu',65,'HUF',348,36,1,1,1,0,'Magyarország','Hungary',0),
(96,0,0,'ID','IDN',360,7,35,'Republik Indonesia','Republic of Indonesia','Jakarta','id',66,'IDR',360,62,0,1,2,0,'Indonesia','Indonesia',0),
(97,0,0,'IE','IRL',372,12,154,'Poblacht na hÉireann / Republic of Ireland','Republic of Ireland','Dublin','ie',49,'EUR',978,353,1,1,1,0,'Éire','Ireland',26),
(98,0,0,'IL','ISR',376,9,145,'دولة إسرائيل / מדינת ישראלل','State of Israel','Tel Aviv','il',67,'ILS',376,972,0,1,2,0,'ישראל','Israel',0),
(99,0,0,'IN','IND',356,30,34,'Bharat; Republic of India','Republic of India','New Delhi','in',68,'INR',356,91,0,1,2,0,'India','India',0),
(100,0,0,'IO','IOT',86,30,34,'British Indian Ocean Territory','British Indian Ocean Territory','','io',52,'GBP',826,0,0,0,1,0,'British Indian Ocean Territory','British Indian Ocean Territory',0),
(101,0,0,'IQ','IRQ',368,9,145,'الجمهورية العراقية','Republic of Iraq','Baghdad','iq',69,'IQD',368,964,0,1,1,0,'العراق / عيَراق','Iraq',0),
(102,0,0,'IR','IRN',364,30,34,'جمهوری اسلامی ايران','Islamic Republic of Iran','Tehran','ir',70,'IRR',364,98,0,1,1,0,'ايران','Iran',0),
(103,0,0,'IS','ISL',352,12,154,'Lýðveldið Ísland','Republic of Iceland','Reykjavík','is',71,'ISK',352,354,0,1,1,0,'Ísland','Iceland',0),
(104,0,0,'IT','ITA',380,10,39,'Repubblica Italiana','Italian Republic','Rome','it',49,'EUR',978,39,1,1,7,0,'Italia','Italy',110),
(105,0,0,'JM','JAM',388,19,29,'Commonwealth of Jamaica','Commonwealth of Jamaica','Kingston','jm',72,'JMD',388,1876,0,1,2,0,'Jamaica','Jamaica',0),
(106,0,0,'JO','JOR',400,9,145,'المملكة الأردنية الهاشمية','Hashemite Kingdom of Jordan','Amman','jo',73,'JOD',400,962,0,1,1,0,'أردنّ','Jordan',0),
(107,0,0,'JP','JPN',392,6,30,'日本国','Japan','Tokyo','jp',74,'JPY',392,81,0,1,2,0,'日本','Japan',0),
(108,0,0,'KE','KEN',404,21,14,'Jamhuri va Kenya','Republic of Kenia','Nairobi','ke',75,'KES',404,254,0,1,1,0,'Kenya','Kenya',0),
(109,0,0,'KG','KGZ',417,8,143,'Кыргызстан','Kyrgyzstan','Bishkek','kg',76,'KGS',417,996,0,1,1,0,'Кыргызстан','Kyrgyzstan',0),
(110,0,0,'KH','KHM',116,7,35,'Preăh Réachéanachâkr Kâmpŭchea','Kingdom of Cambodia','Phnom Penh','kh',77,'KHR',116,855,0,1,1,0,'Kâmpŭchea','Cambodia',0),
(111,0,0,'KI','KIR',296,27,57,'Republic of Kiribati','Republic of Kiribati','Bairiki','ki',9,'AUD',36,686,0,1,0,0,'Kiribati','Kiribati',0),
(112,0,0,'KM','COM',174,21,14,'Udzima wa Komori /Union des Comores /اتحاد القمر','Union of the Comoros','Moroni','km',78,'KMF',174,269,0,1,1,0,'اتحاد القمر','Comoros',0),
(113,0,0,'KN','KNA',659,19,29,'Federation of Saint Kitts and Nevis','Federation of Saint Kitts and Nevis','Basseterre','kn',163,'XCD',951,1869,0,1,1,0,'Saint Kitts and Nevis','Saint Kitts and Nevis',0),
(114,0,0,'KP','PRK',408,6,30,'조선민주주의인민화국','Democratic People’s Republic of Korea','Pyongyang','kp',79,'KPW',408,850,0,1,0,0,'북조선','North Korea',0),
(115,0,0,'KR','KOR',410,6,30,'대한민국','Republic of Korea','Seoul','kr',80,'KRW',410,82,0,1,1,0,'한국','South Korea',0),
(116,0,0,'KW','KWT',414,9,145,'دولة الكويت','State of Kuweit','Kuwait City','kw',81,'KWD',414,965,0,1,1,0,'الكويت','Kuwait',0),
(117,0,0,'KY','CYM',136,19,29,'Cayman Islands','Cayman Islands','George Town','ky',82,'KYD',136,1345,0,0,1,0,'Cayman Islands','Cayman Islands',0),
(118,0,0,'KZ','KAZ',398,8,143,'Қазақстан Республикасы /Республика Казахстан','Republic of Kazakhstan','Astana','kz',83,'KZT',398,7,0,1,1,0,'Қазақстан /Казахстан','Kazakhstan',0),
(119,0,0,'LA','LAO',418,7,35,'ສາທາລະນະລັດປະຊາທິປະໄຕປະຊາຊົນລາວ','Lao People’s Democratic Republic','Vientiane','la',84,'LAK',418,856,0,1,1,0,'ເມືອງລາວ','Laos',0),
(120,0,0,'LB','LBN',422,9,145,'الجمهوريّة اللبنانيّة','Republic of Lebanon','Beirut','lb',85,'LBP',422,961,0,1,1,0,'لبنان','Lebanon',0),
(121,0,0,'LC','LCA',662,19,29,'Saint Lucia','Saint Lucia','Castries','lc',163,'XCD',951,1758,0,1,1,0,'Saint Lucia','Saint Lucia',0),
(122,0,0,'LI','LIE',438,13,155,'Fürstentum Liechtenstein','Principality of Liechtenstein','Vaduz','li',31,'CHF',756,423,0,1,1,0,'Liechtenstein','Liechtenstein',0),
(123,0,0,'LK','LKA',144,30,34,'ශ්රී ලංකා / இலங்கை சனநாயக சோஷலிசக் குடியரசு','Democratic Socialist Republic of Sri Lanka','Colombo','lk',86,'LKR',144,94,0,1,2,0,'ශ්රී ලංකා / இலங்கை','Sri Lanka',0),
(124,0,0,'LR','LBR',430,20,11,'Republic of Liberia','Republic of Liberia','Monrovia','lr',87,'LRD',430,231,0,1,1,0,'Liberia','Liberia',0),
(125,0,0,'LS','LSO',426,24,18,'Muso oa Lesotho / Kingdom of Lesotho','Kingdon of Lesotho','Maseru','ls',88,'LSL',426,266,0,1,1,0,'Lesotho','Lesotho',0),
(126,0,0,'LT','LTU',440,12,154,'Lietuvos Respublika','Republic of Lithuania','Vilnius','lt',49,'EUR',978,370,1,1,1,0,'Lietuva','Lithuania',0),
(127,0,0,'LU','LUX',442,13,155,'Grand-Duché de Luxembourg / Großherzogtum Luxemburg / Groussherzogtum Lëtzebuerg','Grand Duchy of Luxembourg','Luxembourg','lu',49,'EUR',978,352,1,1,1,0,'Luxemburg','Luxembourg',0),
(128,0,0,'LV','LVA',428,12,154,'Latvijas Republika','Republic of Latvia','Riga','lv',49,'EUR',978,371,1,1,1,0,'Latvija','Latvia',0),
(129,0,0,'LY','LBY',434,22,15,'ليبيا','State of Libya','Tripoli','ly',91,'LYD',434,218,0,1,1,0,'ليبيا','Libya',0),
(130,0,0,'MA','MAR',504,22,15,'المملكة المغربية','Kingdom of Morocco','Rabat','ma',92,'MAD',504,212,0,1,1,0,'المغربية','Morocco',0),
(131,0,0,'MC','MCO',492,13,155,'Principauté de Monaco / Principatu de Munegu','Principality of Monaco','Monaco','mc',49,'EUR',978,377,0,1,1,0,'Monaco','Monaco',0),
(132,0,0,'MD','MDA',498,11,151,'Republica Moldova','Republic of Moldova','Chisinau','md',93,'MDL',498,373,0,1,1,0,'Moldova','Moldova',0),
(133,0,0,'MG','MDG',450,21,14,'Repoblikan\'i Madagasikara / République de Madagascar','Republic of Madagascar','Antananarivo','mg',173,'MGA',969,261,0,1,1,0,'Madagascar','Madagascar',0),
(134,0,0,'MH','MHL',584,27,57,'Aolepān Aorōkin M̧ajeļ / Republic of the Marshall Islands','Republic of the Marshall Islands','Dalap-Uliga-Darrit (DUD)','mh',155,'USD',840,692,0,1,1,0,'Marshall Islands','Marshall Islands',0),
(135,0,0,'MK','MKD',807,10,39,'Република Северна Македонија','Republic of North Macedonia','Skopje','mk',95,'MKD',807,389,0,1,1,0,'Северна Македонија','North Macedonia',0),
(136,0,0,'ML','MLI',466,20,11,'République du Mali','Republik Mali','Bamako','ml',164,'XOF',952,223,0,1,1,0,'Mali','Mali',0),
(137,0,0,'MM','MMR',104,7,35,'Pyidaungzu Myanma Naingngandaw','Republic of the Union of Myanmar','Yangon','mm',96,'MMK',104,95,0,1,1,0,'Myanmar','Myanmar',0),
(138,0,0,'MN','MNG',496,6,30,'Монгол Улс','Mongolia','Ulan Bator','mn',97,'MNT',496,976,0,1,1,0,'Монгол Улс','Mongolia',0),
(139,0,0,'MO','MAC',446,6,30,'中華人民共和國澳門特別行政區 / Região Administrativa Especial de Macau da República Popular da China','Macao SAR of the People’s Republic of China','Macau','mo',98,'MOP',446,853,0,0,1,0,'澳門 / Macau','Macao SAR of China',0),
(140,0,0,'MP','MNP',580,27,57,'Commonwealth of the Northern Mariana Islands','Commonwealth of the Northern Mariana Islands','Garapan','mp',155,'USD',840,1670,0,0,0,0,'Northern Marianas','Northern Marianas',0),
(141,0,0,'MQ','MTQ',474,19,29,'Département de la Martinique','Department of Martinique','Fort-de-France','mq',49,'EUR',978,596,0,0,1,0,'Martinique','Martinique',0),
(142,0,0,'MR','MRT',478,20,11,'الجمهورية الإسلامية الموريتانية','Islamic Republic of Mauritania','Nouakchott','mr',99,'MRO',478,222,0,1,1,0,'الموريتانية','Mauritania',0),
(143,0,0,'MS','MSR',500,19,29,'Montserrat','Montserrat','Plymouth','ms',163,'XCD',951,1664,0,0,1,0,'Montserrat','Montserrat',0),
(144,0,0,'MT','MLT',470,10,39,'Repubblika ta\' Malta / Republic of Malta','Republic of Malta','Valletta','mt',49,'EUR',978,356,1,1,1,0,'Malta','Malta',0),
(145,0,0,'MU','MUS',480,21,14,'Republic of Mauritius','Republic of Mauritius','Port Louis','mu',101,'MUR',480,230,0,1,1,0,'Mauritius','Mauritius',0),
(146,0,0,'MV','MDV',462,30,34,'ދިވެހިރާއްޖޭގެ ޖުމުހޫރިއްޔާ','Republic of Maldives','Malé','mv',102,'MVR',462,960,0,1,1,0,'ޖުމުހޫރިއްޔ','Maldives',0),
(147,0,0,'MW','MWI',454,21,14,'Republic of Malawi / Dziko la Malaŵi','Republic of Malawi','Lilongwe','mw',103,'MWK',454,265,0,1,1,0,'Malawi','Malawi',0),
(148,0,0,'MX','MEX',484,17,13,'Estados Unidos Mexicanos','United Mexican States','Mexico City','mx',104,'MXN',484,52,0,1,6,0,'México','Mexico',32),
(149,0,0,'MY','MYS',458,7,35,'ڤرسكوتوان مليسيا','Malaysia','Kuala Lumpur','my',106,'MYR',458,60,0,1,1,0,'مليسيا','Malaysia',0),
(150,0,0,'MZ','MOZ',508,21,14,'República de Moçambique','Republic of Mozambique','Maputo','mz',178,'MZN',943,258,0,1,1,0,'Moçambique','Mozambique',0),
(151,0,0,'NA','NAM',516,24,18,'Republic of Namibia','Republic of Namibia','Windhoek','na',108,'NAD',516,264,0,1,1,0,'Namibia','Namibia',0),
(152,0,0,'NC','NCL',540,26,54,'Territoire de Nouvelle-Caledonie et Dépendances','Territory of New Caledonia','Nouméa','nc',165,'XPF',953,687,0,0,1,0,'Nouvelle-Calédonie','New Caledonia',0),
(153,0,0,'NE','NER',562,20,11,'République du Niger','Republic of Niger','Niamey','ne',164,'XOF',952,227,0,1,1,0,'Niger','Niger',0),
(154,0,0,'NF','NFK',574,25,53,'Territory of Norfolk Island','Territory of Norfolk Island','Kingston','nf',9,'AUD',36,6723,0,0,1,0,'Norfolk Island','Norfolk Island',0),
(155,0,0,'NG','NGA',566,20,11,'Federal Republic of Nigeria','Federal Republic of Nigeria','Abuja','ng',109,'NGN',566,234,0,1,1,0,'Nigeria','Nigeria',0),
(156,0,0,'NI','NIC',558,17,13,'República de Nicaragua','Republic of Nicaragua','Managua','ni',110,'NIO',558,505,0,1,1,0,'Nicaragua','Nicaragua',0),
(157,0,0,'NL','NLD',528,13,155,'Koninkrijk der Nederlanden','Kingdom of the Netherlands','Amsterdam','nl',49,'EUR',978,31,1,1,1,0,'Nederland','Netherlands',12),
(158,0,0,'NO','NOR',578,12,154,'Kongeriket Norge','Kingdom of Norway','Oslo','no',111,'NOK',578,47,0,1,1,0,'Norge','Norway',0),
(159,0,0,'NP','NPL',524,30,34,'सङ्घीय लोकतान्त्रिक गणतन्त्र नेपाल','Federal Democratic Republic of Nepal','Kathmandu','np',112,'NPR',524,977,0,1,1,0,'नेपाल','Nepal',0),
(160,0,0,'NR','NRU',520,27,57,'Ripublik Naoero','Republic of Nauru','Yaren','nr',9,'AUD',36,674,0,1,1,0,'Naoero','Nauru',0),
(161,0,0,'NU','NIU',570,28,61,'Niue','Niue','Alofi','nu',113,'NZD',554,683,0,0,1,0,'Niue','Niue',0),
(162,0,0,'NZ','NZL',554,25,53,'New Zealand / Aotearoa','New Zealand','Wellington','nz',113,'NZD',554,64,0,1,2,0,'New Zealand / Aotearoa','New Zealand',0),
(163,0,0,'OM','OMN',512,9,145,'سلطنة عُمان','Sultanate of Oman','Muscat','om',114,'OMR',512,968,0,1,1,0,'عُمان','Oman',0),
(164,0,0,'PA','PAN',591,17,13,'República de Panamá','Repulic of Panama','Panama City','pa',115,'PAB',590,507,0,1,2,0,'Panamá','Panama',0),
(165,0,0,'PE','PER',604,16,5,'República del Perú','Republic of Peru','Lima','pe',116,'PEN',604,51,0,1,2,0,'Perú','Peru',0),
(166,0,0,'PF','PYF',258,28,61,'Polynésie française','French Polynesia','Papeete','pf',165,'XPF',953,689,0,0,1,0,'Polynésie française','French Polynesia',0),
(167,0,0,'PG','PNG',598,26,54,'Independent State of Papua New Guinea / Papua Niugini','Independent State of Papua New Guinea','Port Moresby','pg',117,'PGK',598,675,0,1,1,0,'Papua New Guinea / Papua Niugini','Papua New Guinea',0),
(168,0,0,'PH','PHL',608,7,35,'Republika ng Pilipinas / Republic of the Philippines','Republic of the Philippines','Manila','ph',118,'PHP',608,63,0,1,2,0,'Philippines','Philippines',0),
(169,0,0,'PK','PAK',586,30,34,'Islamic Republic of Pakistan / اسلامی جمہوریۂ پاکستان','Islamic Republic of Pakistan','Islamabad','pk',119,'PKR',586,92,0,1,1,0,'پاکستان','Pakistan',0),
(170,0,0,'PL','POL',616,11,151,'Rzeczpospolita Polska','Republic of Poland','Warsaw','pl',120,'PLN',985,48,1,1,1,0,'Polska','Poland',16),
(171,0,0,'PM','SPM',666,18,21,'Saint-Pierre-et-Miquelon','Saint Pierre and Miquelon','Saint-Pierre','pm',49,'EUR',978,508,0,0,1,0,'Saint-Pierre-et-Miquelon','Saint Pierre and Miquelon',0),
(172,0,0,'PN','PCN',612,28,61,'Pitcairn Islands','Pitcairn Islands','Adamstown','pn',113,'NZD',554,0,0,0,1,0,'Pitcairn Islands','Pitcairn Islands',0),
(173,0,0,'PR','PRI',630,19,29,'Estado Libre Asociado de Puerto Rico / Commonwealth of Puerto Rico','Commonwealth of Puerto Rico','San Juan','pr',155,'USD',840,1787,0,0,2,0,'Puerto Rico','Puerto Rico',0),
(174,0,0,'PT','PRT',620,10,39,'República Portuguesa','Portuguese Republic','Lisbon','pt',49,'EUR',978,351,1,1,1,0,'Portugal','Portugal',0),
(175,0,0,'PW','PLW',585,27,57,'Belu\'u era Belau / Republic of Palau','Republic of Palau','Koror','pw',155,'USD',840,680,0,1,1,0,'Belau / Palau','Palau',0),
(176,0,0,'PY','PRY',600,16,5,'República del Paraguay / Tetä Paraguáype','Republic of Paraguay','Asunción','py',121,'PYG',600,595,0,1,1,0,'Paraguay','Paraguay',0),
(177,0,0,'QA','QAT',634,9,145,'دولة قطر','State of Qatar','Doha','qa',122,'QAR',634,974,0,1,1,0,'قطر','Qatar',0),
(178,0,0,'RE','REU',638,21,14,'Département de la Réunion','Department of Réunion','Saint-Denis','re',49,'EUR',978,262,0,0,1,0,'Réunion','Reunion',0),
(179,0,0,'RO','ROU',642,11,151,'România','Romania','Bucharest','ro',179,'RON',946,40,1,1,1,0,'România','Romania',0),
(180,0,0,'RU','RUS',643,11,151,'Российская Федерация','Russian Federation','Moscow','ru',124,'RUB',643,7,0,1,1,0,'Росси́я','Russia',0),
(181,0,0,'RW','RWA',646,21,14,'Repubulika y\'u Rwanda / République Rwandaise','Republic of Rwanda','Kigali','rw',126,'RWF',646,250,0,1,1,0,'Rwanda','Rwanda',0),
(182,0,0,'SA','SAU',682,9,145,'المملكة العربية السعودية','Kingdom of Saudi Arabia','Riyadh','sa',127,'SAR',682,966,0,1,2,0,'السعودية','Saudi Arabia',0),
(183,0,0,'SB','SLB',90,26,54,'Solomon Islands','Solomon Islands','Honiara','sb',128,'SBD',90,677,0,1,1,0,'Solomon Islands','Solomon Islands',0),
(184,0,0,'SC','SYC',690,21,14,'Repiblik Sesel / Republic of Seychelles / République des Seychelles','Republic of Seychelles','Victoria','sc',129,'SCR',690,248,0,1,1,0,'Seychelles','Seychelles',0),
(185,0,0,'SD','SDN',729,22,15,'جمهورية السودان','Republic of the Sudan','Khartoum','sd',130,'SDG',938,249,0,1,1,0,'السودان','Sudan',0),
(186,0,0,'SE','SWE',752,12,154,'Konungariket Sverige','Kingdom of Sweden','Stockholm','se',131,'SEK',752,46,1,1,1,0,'Sverige','Sweden',0),
(187,0,0,'SG','SGP',702,7,35,'Republic of Singapore / 新加坡共和国 / Republik Singapura / சிங்கப்பூர் குடியரசு','Republic of Singapore','Singapore','sg',132,'SGD',702,65,0,1,2,0,'Singapore','Singapore',0),
(188,0,0,'SH','SHN',654,20,11,'Saint Helena, Ascension and Tristan da Cunha','Saint Helena, Ascension and Tristan da Cunha','Jamestown','sh',133,'SHP',654,290,0,0,1,0,'Saint Helena, Ascension and Tristan da Cunha','Saint Helena, Ascension and Tristan da Cunha',0),
(189,0,0,'SI','SVN',705,10,39,'Republika Slovenija','Republic of Slovenia','Ljubljana','si',49,'EUR',978,386,1,1,1,0,'Slovenija','Slovenia',0),
(190,0,0,'SJ','SJM',744,12,154,'Svalbard','Svalbard','Longyearbyen','sj',111,'NOK',578,47,0,0,1,0,'Svalbard','Svalbard',0),
(191,0,0,'SK','SVK',703,11,151,'Slovenská republika','Slovak Republic','Bratislava','sk',49,'EUR',978,421,1,1,1,0,'Slovensko','Slovakia',0),
(192,0,0,'SL','SLE',694,20,11,'Republic of Sierra Leone','Republic of Sierra Leone','Freetown','sl',136,'SLL',694,232,0,1,1,0,'Sierra Leone','Sierra Leone',0),
(193,0,0,'SM','SMR',674,10,39,'Serenissima Repubblica di San Marino','Most Serene Republic of San Marino','San Marino','sm',49,'EUR',978,378,0,1,1,0,'San Marino','San Marino',0),
(194,0,0,'SN','SEN',686,20,11,'République de Sénégal','Republic of Senegal','Dakar','sn',164,'XOF',952,221,0,1,1,0,'Sénégal','Senegal',0),
(195,0,0,'SO','SOM',706,21,14,'Soomaaliya','Federal Republic of Somalia','Mogadishu','so',137,'SOS',706,252,0,1,1,0,'Soomaaliya','Somalia',0),
(196,0,0,'SR','SUR',740,16,5,'Republiek Suriname','Republic of Surinam','Paramaribo','sr',174,'SRD',968,597,0,1,1,0,'Suriname','Suriname',0),
(197,0,0,'ST','STP',678,23,17,'República Democrática de São Tomé e Príncipe','Democratic Republic of São Tomé e Príncipe','São Tomé','st',139,'STD',678,239,0,1,1,0,'São Tomé e Príncipe','São Tomé e Príncipe',0),
(198,0,0,'SV','SLV',222,17,13,'República de El Salvador','Republic of El Salvador','San Salvador','sv',140,'SVC',222,503,0,1,1,0,'El Salvador','El Salvador',0),
(199,0,0,'SY','SYR',760,9,145,'الجمهوريّة العربيّة السّوريّة','Syrian Arab Republic','Damascus','sy',141,'SYP',760,963,0,1,1,0,'سوري','Syria',0),
(200,0,0,'SZ','SWZ',748,24,18,'Umboso weSwatini / Kingdom of Eswatini','Kingdom of Eswatini','Mbabane','sz',142,'SZL',748,268,0,1,1,0,'eSwatini','Eswatini',0),
(201,0,0,'TC','TCA',796,19,29,'Turks and Caicos Islands','Turks and Caicos Islands','Cockburn Town','tc',155,'USD',840,1649,0,0,1,0,'Turks and Caicos Islands','Turks and Caicos Islands',0),
(202,0,0,'TD','TCD',148,23,17,'جمهورية تشاد / République du Tchad','Republic of Chad','N\'Djamena','td',162,'XAF',950,235,0,1,1,0,'تشاد / Tchad','Chad',0),
(203,0,0,'TF','ATF',260,0,0,'Terres australes françaises','French Southern Territories','','tf',49,'EUR',978,0,0,0,0,0,'Terres australes françaises','French Southern Territories',0),
(204,0,0,'TG','TGO',768,20,11,'République Togolaise','Republic of Togo','Lomé','tg',164,'XOF',952,228,0,1,1,0,'Togo','Togo',0),
(205,0,0,'TH','THA',764,7,35,'ราชอาณาจักรไทย','Kingdom of Thailand','Bangkok','th',143,'THB',764,66,0,1,2,0,'ไทย','Thailand',0),
(206,0,0,'TJ','TJK',762,8,143,'Ҷумҳурии Тоҷикистон','Republic of Tajikistan','Dushanbe','tj',144,'TJS',972,992,0,1,1,0,'Тоҷикистон','Tajikistan',0),
(207,0,0,'TK','TKL',772,28,61,'Tokelau','Tokelau','Fakaofo','tk',113,'NZD',554,0,0,0,1,0,'Tokelau','Tokelau',0),
(208,0,0,'TM','TKM',795,8,143,'Türkmenistan Jumhuriyäti','Republic of Turkmenistan','Ashgabat','tm',180,'TMT',934,993,0,1,1,0,'Türkmenistan','Turkmenistan',0),
(209,0,0,'TN','TUN',788,22,15,'الجمهورية التونسية','Republic of Tunisia','Tunis','tn',146,'TND',788,216,0,1,1,0,'التونسية','Tunisia',0),
(210,0,0,'TO','TON',776,28,61,'Pule\'anga Fakatu\'i \'o Tonga / Kingdom of Tonga','Kingdom of Tonga','Nuku\'alofa','to',147,'TOP',776,676,0,1,1,0,'Tonga','Tonga',0),
(211,0,0,'TL','TLS',626,7,35,'Repúblika Demokrátika Timor Lorosa\'e / República Democrática de Timor-Leste','Democratic Republic of Timor-Leste','Dili','tp',155,'USD',840,670,0,1,1,0,'Timor Lorosa\'e','Timor-Leste',0),
(212,0,0,'TR','TUR',792,9,145,'Türkiye Cumhuriyeti','Republic of Türkiye','Ankara','tr',175,'TRY',949,90,0,1,1,0,'Türkiye','Türkiye',0),
(213,0,0,'TT','TTO',780,19,29,'Republic of Trinidad and Tobago','Republic of Trinidad and Tobago','Port of Spain','tt',150,'TTD',780,1868,0,1,1,0,'Trinidad and Tobago','Trinidad and Tobago',0),
(214,0,0,'TV','TUV',798,28,61,'Tuvalu','Tuvalu','Fongafale','tv',9,'AUD',36,688,0,1,1,0,'Tuvalu','Tuvalu',0),
(215,0,0,'TW','TWN',158,6,30,'中華民國','Republic of China','Taipei','tw',151,'TWD',901,886,0,0,1,0,'中華','Taiwan',0),
(216,0,0,'TZ','TZA',834,21,14,'Jamhuri ya Muungano wa Tanzania','United Republic of Tanzania','Dodoma','tz',152,'TZS',834,255,0,1,1,0,'Tanzania','Tanzania',0),
(217,0,0,'UA','UKR',804,11,151,'Україна','Ukraine','Kyiv','ua',153,'UAH',980,380,0,1,1,0,'Україна','Ukraine',0),
(218,0,0,'UG','UGA',800,21,14,'Republic of Uganda','Republic of Uganda','Kampala','ug',154,'UGX',800,256,0,1,1,0,'Uganda','Uganda',0),
(219,0,0,'UM','UMI',581,0,0,'United States Minor Outlying Islands','United States Minor Outlying Islands','','um',155,'USD',840,0,0,0,0,0,'United States Minor Outlying Islands','United States Minor Outlying Islands',0),
(220,0,0,'US','USA',840,18,21,'United States of America','United States of America','Washington DC','us',155,'USD',840,1,0,1,3,1,'United States','United States',53),
(221,0,0,'UY','URY',858,16,5,'República Oriental del Uruguay','Eastern Republic of Uruguay','Montevideo','uy',156,'UYU',858,598,0,1,1,0,'Uruguay','Uruguay',0),
(222,0,0,'UZ','UZB',860,8,143,'O‘zbekiston Respublikasi','Republic of Uzbekistan','Tashkent','uz',157,'UZS',860,998,0,1,1,0,'O‘zbekiston','Uzbekistan',0),
(223,0,0,'VA','VAT',336,10,39,'Status Civitatis Vaticanae / Città del Vaticano','Vatican City','Vatican City','va',49,'EUR',978,396,0,0,1,0,'Vaticano','Vatican City',0),
(224,0,0,'VC','VCT',670,19,29,'Saint Vincent and the Grenadines','Saint Vincent and the Grenadines','Kingstown','vc',163,'XCD',951,1784,0,1,1,0,'Saint Vincent and the Grenadines','Saint Vincent and the Grenadines',0),
(225,0,0,'VE','VEN',862,16,5,'República Bolivariana de Venezuela','Bolivarian Republic of Venezuela','Caracas','ve',158,'VEF',937,58,0,1,1,0,'Venezuela','Venezuela',0),
(226,0,0,'VG','VGB',92,19,29,'British Virgin Islands','British Virgin Islands','Road Town','vg',155,'USD',840,1284,0,0,1,0,'British Virgin Islands','British Virgin Islands',0),
(227,0,0,'VI','VIR',850,19,29,'United States Virgin Islands','United States Virgin Islands','Charlotte Amalie','vi',155,'USD',840,1340,0,0,1,0,'US Virgin Islands','US Virgin Islands',0),
(228,0,0,'VN','VNM',704,7,35,'Cộng Hòa Xã Hội Chủ Nghĩa Việt Nam','Socialist Republic of Vietnam','Hanoi','vn',159,'VND',704,84,0,1,1,0,'Việt Nam','Vietnam',0),
(229,0,0,'VU','VUT',548,26,54,'Ripablik blong Vanuatu / Republic of Vanuatu / République du Vanuatu','Republic of Vanuatu','Port Vila','vu',160,'VUV',548,678,0,1,1,0,'Vanuatu','Vanuatu',0),
(230,0,0,'WF','WLF',876,28,61,'Territoire de Wallis et Futuna','Territory of Wallis and Futuna Islands','Mata-Utu','wf',165,'XPF',953,681,0,0,1,0,'Wallis and Futuna','Wallis and Futuna',0),
(231,0,0,'WS','WSM',882,28,61,'Malo Sa\'oloto Tuto\'atasi o Samoa / Independent State of Samoa','Independent State of Samoa','Apia','ws',161,'WST',882,685,0,1,1,0,'Samoa','Samoa',0),
(232,0,0,'YE','YEM',887,9,145,'الجمهوريّة اليمنية','Republic of Yemen','San\'a','ye',166,'YER',886,967,0,1,1,0,'اليمنية','Yemen',0),
(233,0,0,'YT','MYT',175,21,14,'Mayotte','Mayotte','Mamoudzou','yt',49,'EUR',978,269,0,0,0,0,'Mayotte','Mayotte',0),
(235,0,0,'ZA','ZAF',710,24,18,'Republic of South Africa / Republiek van Suid-Afrika / Rephaboliki ya Afrika-Borwa','Republic of South Africa','Pretoria','za',168,'ZAR',710,27,0,1,2,0,'Afrika-Borwa','South Africa',0),
(236,0,0,'ZM','ZMB',894,21,14,'Republic of Zambia','Republic of Zambia','Lusaka','zm',169,'ZMW',967,260,0,1,1,0,'Zambia','Zambia',0),
(237,0,0,'ZW','ZWE',716,21,14,'Republic of Zimbabwe','Republic of Zimbabwe','Harare','zw',169,'ZMW',967,263,0,1,1,0,'Zimbabwe','Zimbabwe',0),
(238,0,0,'PS','PSE',275,9,145,'دولة فلسطين','State of Palestine','','ps',0,'',0,0,0,0,0,0,'فلسطين','Palestine',0),
(239,0,1,'CS','CSG',891,10,39,'Државна заједница Србија и Црна Гора','State Union of Serbia and Montenegro','Belgrade','cs',0,'CSD',891,381,0,1,0,0,'Србија и Црна Гора','Serbia and Montenegro',0),
(240,0,0,'AX','ALA',248,12,154,'Landskapet Åland','Åland Islands','Mariehamn','ax',49,'EUR',978,35818,0,0,0,0,'Åland','Åland',0),
(241,0,0,'HM','HMD',334,25,53,'Heard Island and McDonald Islands','Heard Island and McDonald Islands','','',9,'AUD',36,0,0,0,0,0,'Heard Island and McDonald Islands','Heard Island and McDonald Islands',0),
(242,0,0,'ME','MNE',499,10,39,'Republike Crne Gore','Montenegro','Podgorica','me',49,'EUR',978,382,0,1,1,0,'Crna Gora','Montenegro',0),
(243,0,0,'RS','SRB',688,10,39,'Republika Srbija','Republic of Serbia','Belgrade','rs',172,'RSD',941,381,0,1,1,0,'Srbija','Serbia',0),
(244,0,0,'JE','JEY',832,12,154,'Bailiwick of Jersey','Bailiwick of Jersey','Saint Helier','je',52,'GBP',826,44,0,0,5,0,'Jersey','Jersey',0),
(245,0,0,'GG','GGY',831,12,154,'Bailiwick of Guernsey','Bailiwick of Guernsey','Saint Peter Port','gg',52,'GBP',826,44,0,0,5,0,'Guernsey','Guernsey',0),
(246,0,0,'IM','IMN',833,12,154,'Isle of Man / Ellan Vannin','Isle of Man','Douglas','im',52,'GBP',826,44,0,0,5,0,'Mann / Mannin','Isle of Man',0),
(247,0,0,'MF','MAF',652,19,29,'Collectivité de Saint-Martin','Collectivity of Saint Martin','Marigot','fr',49,'EUR',978,590,0,0,1,0,'Saint-Martin','Saint Martin',0),
(248,0,0,'BL','BLM',652,19,29,'Collectivité de Saint-Barthélemy','Collectivity of Saint Barthélemy','Gustavia','fr',49,'EUR',978,590,0,0,1,0,'Saint-Barthélemy','Saint Barthélemy',0),
(249,0,0,'BQ','BES',535,19,29,'Bonaire, Sint Eustatius en Saba','Bonaire, Sint Eustatius and Saba','Oranjestad','bq',155,'USD',840,599,0,0,0,0,'Bonaire, Sint Eustatius en Saba','Bonaire, Sint Eustatius and Saba',0),
(250,0,0,'CW','CUW',531,19,29,'Curaçao','Curaçao','Willemstad','cw',6,'ANG',532,599,0,0,0,0,'Curaçao','Curaçao',0),
(251,0,0,'SX','SXM',534,19,29,'Sint Maarten','Sint Maarten','Philipsburg','sx',6,'ANG',532,599,0,0,0,0,'Sint Maarten','Sint Maarten',0),
(252,0,0,'SS','SSD',728,22,15,'Republic of South Sudan','Republic of South Sudan','Juba','ss',176,'SSP',728,211,0,0,0,0,'South Sudan','South Sudan',0),
(253,0,0,'XK','XKX',926,10,39,'Republika e Kosovës / Република Косово','Republic of Kosovo','Pristina','rs',49,'EUR',978,383,0,0,0,0,'Kosovo','Kosovo',0);
/*!40000 ALTER TABLE `static_countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `static_country_zones`
--
DROP TABLE IF EXISTS `static_country_zones`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `static_country_zones` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT 0,
`deleted` smallint(5) unsigned NOT NULL DEFAULT 0,
`zn_country_iso_2` varchar(2) NOT NULL DEFAULT '',
`zn_country_iso_3` varchar(3) NOT NULL DEFAULT '',
`zn_country_iso_nr` int(11) NOT NULL DEFAULT 0,
`zn_code` varchar(45) NOT NULL DEFAULT '',
`zn_name_local` varchar(128) NOT NULL DEFAULT '',
`zn_name_en` varchar(50) NOT NULL DEFAULT '',
`zn_country_uid` int(11) NOT NULL DEFAULT 0,
`zn_country_table` tinytext DEFAULT NULL,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`)
) ENGINE=InnoDB AUTO_INCREMENT=711 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `static_country_zones`
--
LOCK TABLES `static_country_zones` WRITE;
/*!40000 ALTER TABLE `static_country_zones` DISABLE KEYS */;
INSERT INTO `static_country_zones` VALUES
(1,0,0,'US','USA',840,'AL','Alabama','',220,'static_countries'),
(2,0,0,'US','USA',840,'AK','Alaska','',220,'static_countries'),
(4,0,0,'US','USA',840,'AZ','Arizona','',220,'static_countries'),
(5,0,0,'US','USA',840,'AR','Arkansas','',220,'static_countries'),
(12,0,0,'US','USA',840,'CA','California','',220,'static_countries'),
(13,0,0,'US','USA',840,'CO','Colorado','',220,'static_countries'),
(14,0,0,'US','USA',840,'CT','Connecticut','',220,'static_countries'),
(15,0,0,'US','USA',840,'DE','Delaware','',220,'static_countries'),
(16,0,0,'US','USA',840,'DC','District of Columbia','',220,'static_countries'),
(18,0,0,'US','USA',840,'FL','Florida','',220,'static_countries'),
(19,0,0,'US','USA',840,'GA','Georgia','',220,'static_countries'),
(20,0,0,'US','USA',840,'GU','Guam','',220,'static_countries'),
(21,0,0,'US','USA',840,'HI','Hawaii','',220,'static_countries'),
(22,0,0,'US','USA',840,'ID','Idaho','',220,'static_countries'),
(23,0,0,'US','USA',840,'IL','Illinois','',220,'static_countries'),
(24,0,0,'US','USA',840,'IN','Indiana','',220,'static_countries'),
(25,0,0,'US','USA',840,'IA','Iowa','',220,'static_countries'),
(26,0,0,'US','USA',840,'KS','Kansas','',220,'static_countries'),
(27,0,0,'US','USA',840,'KY','Kentucky','',220,'static_countries'),
(28,0,0,'US','USA',840,'LA','Louisiana','',220,'static_countries'),
(29,0,0,'US','USA',840,'ME','Maine','',220,'static_countries'),
(31,0,0,'US','USA',840,'MD','Maryland','',220,'static_countries'),
(32,0,0,'US','USA',840,'MA','Massachusetts','',220,'static_countries'),
(33,0,0,'US','USA',840,'MI','Michigan','',220,'static_countries'),
(34,0,0,'US','USA',840,'MN','Minnesota','',220,'static_countries'),
(35,0,0,'US','USA',840,'MS','Mississippi','',220,'static_countries'),
(36,0,0,'US','USA',840,'MO','Missouri','',220,'static_countries'),
(37,0,0,'US','USA',840,'MT','Montana','',220,'static_countries'),
(38,0,0,'US','USA',840,'NE','Nebraska','',220,'static_countries'),
(39,0,0,'US','USA',840,'NV','Nevada','',220,'static_countries'),
(40,0,0,'US','USA',840,'NH','New Hampshire','',220,'static_countries'),
(41,0,0,'US','USA',840,'NJ','New Jersey','',220,'static_countries'),
(42,0,0,'US','USA',840,'NM','New Mexico','',220,'static_countries'),
(43,0,0,'US','USA',840,'NY','New York','',220,'static_countries'),
(44,0,0,'US','USA',840,'NC','North Carolina','',220,'static_countries'),
(45,0,0,'US','USA',840,'ND','North Dakota','',220,'static_countries'),
(47,0,0,'US','USA',840,'OH','Ohio','',220,'static_countries'),
(48,0,0,'US','USA',840,'OK','Oklahoma','',220,'static_countries'),
(49,0,0,'US','USA',840,'OR','Oregon','',220,'static_countries'),
(51,0,0,'US','USA',840,'PA','Pennsylvania','',220,'static_countries'),
(52,0,0,'US','USA',840,'PR','Puerto Rico','',220,'static_countries'),
(53,0,0,'US','USA',840,'RI','Rhode Island','',220,'static_countries'),
(54,0,0,'US','USA',840,'SC','South Carolina','',220,'static_countries'),
(55,0,0,'US','USA',840,'SD','South Dakota','',220,'static_countries'),
(56,0,0,'US','USA',840,'TN','Tennessee','',220,'static_countries'),
(57,0,0,'US','USA',840,'TX','Texas','',220,'static_countries'),
(58,0,0,'US','USA',840,'UT','Utah','',220,'static_countries'),
(59,0,0,'US','USA',840,'VT','Vermont','',220,'static_countries'),
(61,0,0,'US','USA',840,'VA','Virginia','',220,'static_countries'),
(62,0,0,'US','USA',840,'WA','Washington','',220,'static_countries'),
(63,0,0,'US','USA',840,'WV','West Virginia','',220,'static_countries'),
(64,0,0,'US','USA',840,'WI','Wisconsin','',220,'static_countries'),
(65,0,0,'US','USA',840,'WY','Wyoming','',220,'static_countries'),
(66,0,0,'CA','CAN',124,'AB','Alberta','',36,'static_countries'),
(67,0,0,'CA','CAN',124,'BC','British Columbia','',36,'static_countries'),
(68,0,0,'CA','CAN',124,'MB','Manitoba','',36,'static_countries'),
(69,0,0,'CA','CAN',124,'NF','Newfoundland and Labrador','',36,'static_countries'),
(70,0,0,'CA','CAN',124,'NB','New Brunswick','',36,'static_countries'),
(71,0,0,'CA','CAN',124,'NS','Nova Scotia','',36,'static_countries'),
(72,0,0,'CA','CAN',124,'NT','Northwest Territories','',36,'static_countries'),
(73,0,0,'CA','CAN',124,'NU','Nunavut','',36,'static_countries'),
(74,0,0,'CA','CAN',124,'ON','Ontario','',36,'static_countries'),
(75,0,0,'CA','CAN',124,'PE','Prince Edward Island','',36,'static_countries'),
(76,0,0,'CA','CAN',124,'QC','Québec','Quebec',36,'static_countries'),
(77,0,0,'CA','CAN',124,'SK','Saskatchewan','',36,'static_countries'),
(78,0,0,'CA','CAN',124,'YT','Yukon Territory','',36,'static_countries'),
(79,0,0,'DE','DEU',276,'NI','Niedersachsen','Lower Saxony',54,'static_countries'),
(80,0,0,'DE','DEU',276,'BW','Baden-Württemberg','',54,'static_countries'),
(81,0,0,'DE','DEU',276,'BY','Bayern','Bavaria',54,'static_countries'),
(82,0,0,'DE','DEU',276,'BE','Berlin','',54,'static_countries'),
(83,0,0,'DE','DEU',276,'BB','Brandenburg','',54,'static_countries'),
(84,0,0,'DE','DEU',276,'HB','Bremen','',54,'static_countries'),
(85,0,0,'DE','DEU',276,'HH','Hamburg','',54,'static_countries'),
(86,0,0,'DE','DEU',276,'HE','Hessen','Hesse',54,'static_countries'),
(87,0,0,'DE','DEU',276,'MV','Mecklenburg-Vorpommern','Mecklenburg-Western Pomerania',54,'static_countries'),
(88,0,0,'DE','DEU',276,'NW','Nordrhein-Westfalen','North Rhine-Westphalia',54,'static_countries'),
(89,0,0,'DE','DEU',276,'RP','Rheinland-Pfalz','Rhineland-Palatinate',54,'static_countries'),
(90,0,0,'DE','DEU',276,'SL','Saarland','',54,'static_countries'),
(91,0,0,'DE','DEU',276,'SN','Sachsen','Saxony',54,'static_countries'),
(92,0,0,'DE','DEU',276,'ST','Sachsen-Anhalt','Saxony-Anhalt',54,'static_countries'),
(93,0,0,'DE','DEU',276,'SH','Schleswig-Holstein','',54,'static_countries'),
(94,0,0,'DE','DEU',276,'TH','Thüringen','Thuringia',54,'static_countries'),
(95,0,0,'AT','AUT',40,'9','Wien','Vienna',13,'static_countries'),
(96,0,0,'AT','AUT',40,'3','Niederösterreich','Lower Austria',13,'static_countries'),
(97,0,0,'AT','AUT',40,'4','Oberösterreich','Upper Austria',13,'static_countries'),
(98,0,0,'AT','AUT',40,'5','Salzburg','',13,'static_countries'),
(99,0,0,'AT','AUT',40,'2','Kärnten','Carinthia',13,'static_countries'),
(100,0,0,'AT','AUT',40,'6','Steiermark','Styria',13,'static_countries'),
(101,0,0,'AT','AUT',40,'7','Tirol','Tyrol',13,'static_countries'),
(102,0,0,'AT','AUT',40,'1','Burgenland','',13,'static_countries'),
(103,0,0,'AT','AUT',40,'8','Vorarlberg','',13,'static_countries'),
(104,0,0,'CH','CHE',756,'AG','Aargau','Aargau',41,'static_countries'),
(105,0,0,'CH','CHE',756,'AI','Appenzell Innerrhoden','Appenzell Innerrhoden',41,'static_countries'),
(106,0,0,'CH','CHE',756,'AR','Appenzell Ausserrhoden','Appenzell Ausserrhoden',41,'static_countries'),
(107,0,0,'CH','CHE',756,'BE','Bern','Bern',41,'static_countries'),
(108,0,0,'CH','CHE',756,'BL','Basel-Landschaft','Basel Landschaft',41,'static_countries'),
(109,0,0,'CH','CHE',756,'BS','Basel-Stadt','Basel Stadt',41,'static_countries'),
(110,0,0,'CH','CHE',756,'FR','Fribourg','Fribourg',41,'static_countries'),
(111,0,0,'CH','CHE',756,'GE','Genève','Geneva',41,'static_countries'),
(112,0,0,'CH','CHE',756,'GL','Glarus','Glarus',41,'static_countries'),
(113,0,0,'CH','CHE',756,'GR','Graubünden','Graubünden',41,'static_countries'),
(114,0,0,'CH','CHE',756,'JU','Jura','Jura',41,'static_countries'),
(115,0,0,'CH','CHE',756,'LU','Luzern','Lucerne',41,'static_countries'),
(116,0,0,'CH','CHE',756,'NE','Neuchâtel','Neuchâtel',41,'static_countries'),
(117,0,0,'CH','CHE',756,'NW','Nidwalden','Nidwalden',41,'static_countries'),
(118,0,0,'CH','CHE',756,'OW','Obwalden','Obwalden',41,'static_countries'),
(119,0,0,'CH','CHE',756,'SG','St. Gallen','St. Gallen',41,'static_countries'),
(120,0,0,'CH','CHE',756,'SH','Schaffhausen','Schaffhausen',41,'static_countries'),
(121,0,0,'CH','CHE',756,'SO','Solothurn','Solothurn',41,'static_countries'),
(122,0,0,'CH','CHE',756,'SZ','Schwyz','Schwyz',41,'static_countries'),
(123,0,0,'CH','CHE',756,'TG','Thurgau','Thurgau',41,'static_countries'),
(124,0,0,'CH','CHE',756,'TI','Ticino','Ticino',41,'static_countries'),
(125,0,0,'CH','CHE',756,'UR','Uri','Uri',41,'static_countries'),
(126,0,0,'CH','CHE',756,'VD','Vaud','Vaud',41,'static_countries'),
(127,0,0,'CH','CHE',756,'VS','Valais','Valais',41,'static_countries'),
(128,0,0,'CH','CHE',756,'ZG','Zug','Zug',41,'static_countries'),
(129,0,0,'CH','CHE',756,'ZH','Zürich','Zurich',41,'static_countries'),
(130,0,0,'ES','ESP',724,'Alava','Alava','',65,'static_countries'),
(131,0,0,'ES','ESP',724,'Malaga','Malaga','',65,'static_countries'),
(132,0,0,'ES','ESP',724,'Segovia','Segovia','',65,'static_countries'),
(133,0,0,'ES','ESP',724,'Granada','Granada','',65,'static_countries'),
(134,0,0,'ES','ESP',724,'Jaen','Jaen','',65,'static_countries'),
(135,0,0,'ES','ESP',724,'Sevilla','Sevilla','',65,'static_countries'),
(136,0,0,'ES','ESP',724,'Barcelona','Barcelona','',65,'static_countries'),
(137,0,0,'ES','ESP',724,'Valencia','Valencia','',65,'static_countries'),
(138,0,0,'ES','ESP',724,'Albacete','Albacete','',65,'static_countries'),
(139,0,0,'ES','ESP',724,'Alicante','Alicante','',65,'static_countries'),
(140,0,0,'ES','ESP',724,'Almeria','Almeria','',65,'static_countries'),
(141,0,0,'ES','ESP',724,'Asturias','Asturias','',65,'static_countries'),
(142,0,0,'ES','ESP',724,'Avila','Avila','',65,'static_countries'),
(143,0,0,'ES','ESP',724,'Badajoz','Badajoz','',65,'static_countries'),
(144,0,0,'ES','ESP',724,'Burgos','Burgos','',65,'static_countries'),
(145,0,0,'ES','ESP',724,'Caceres','Caceres','',65,'static_countries'),
(146,0,0,'ES','ESP',724,'Cadiz','Cadiz','',65,'static_countries'),
(147,0,0,'ES','ESP',724,'Cantabria','Cantabria','',65,'static_countries'),
(148,0,0,'ES','ESP',724,'Castellon','Castellon','',65,'static_countries'),
(149,0,0,'ES','ESP',724,'Ceuta','Ceuta','',65,'static_countries'),
(150,0,0,'ES','ESP',724,'Ciudad Real','Ciudad Real','',65,'static_countries'),
(151,0,0,'ES','ESP',724,'Cordoba','Cordoba','',65,'static_countries'),
(152,0,0,'ES','ESP',724,'Cuenca','Cuenca','',65,'static_countries'),
(153,0,0,'ES','ESP',724,'Girona','Girona','',65,'static_countries'),
(154,0,0,'ES','ESP',724,'Las Palmas','Las Palmas','',65,'static_countries'),
(155,0,0,'ES','ESP',724,'Guadalajara','Guadalajara','',65,'static_countries'),
(156,0,0,'ES','ESP',724,'Guipuzcoa','Guipuzcoa','',65,'static_countries'),
(157,0,0,'ES','ESP',724,'Huelva','Huelva','',65,'static_countries'),
(158,0,0,'ES','ESP',724,'Huesca','Huesca','',65,'static_countries'),
(159,0,0,'ES','ESP',724,'A Coruña','A Coruña','',65,'static_countries'),
(160,0,0,'ES','ESP',724,'La Rioja','La Rioja','',65,'static_countries'),
(161,0,0,'ES','ESP',724,'Leon','Leon','',65,'static_countries'),
(162,0,0,'ES','ESP',724,'Lugo','Lugo','',65,'static_countries'),
(163,0,0,'ES','ESP',724,'Lleida','Lleida','',65,'static_countries'),
(164,0,0,'ES','ESP',724,'Madrid','Madrid','',65,'static_countries'),
(165,0,0,'ES','ESP',724,'Baleares','Baleares','',65,'static_countries'),
(166,0,0,'ES','ESP',724,'Murcia','Murcia','',65,'static_countries'),
(167,0,0,'ES','ESP',724,'Navarra','Navarra','',65,'static_countries'),
(168,0,0,'ES','ESP',724,'Ourense','Ourense','',65,'static_countries'),
(169,0,0,'ES','ESP',724,'Palencia','Palencia','',65,'static_countries'),
(170,0,0,'ES','ESP',724,'Pontevedra','Pontevedra','',65,'static_countries'),
(171,0,0,'ES','ESP',724,'Salamanca','Salamanca','',65,'static_countries'),
(172,0,0,'ES','ESP',724,'Soria','Soria','',65,'static_countries'),
(173,0,0,'ES','ESP',724,'Tarragona','Tarragona','',65,'static_countries'),
(174,0,0,'ES','ESP',724,'Tenerife','Tenerife','',65,'static_countries'),
(175,0,0,'ES','ESP',724,'Teruel','Teruel','',65,'static_countries'),
(176,0,0,'ES','ESP',724,'Toledo','Toledo','',65,'static_countries'),
(177,0,0,'ES','ESP',724,'Valladolid','Valladolid','',65,'static_countries'),
(178,0,0,'ES','ESP',724,'Vizcaya','Vizcaya','',65,'static_countries'),
(179,0,0,'ES','ESP',724,'Zamora','Zamora','',65,'static_countries'),
(180,0,0,'ES','ESP',724,'Zaragoza','Zaragoza','',65,'static_countries'),
(181,0,0,'ES','ESP',724,'Melilla','Melilla','',65,'static_countries'),
(182,0,0,'MX','MEX',484,'AGS','Aguascalientes','',148,'static_countries'),
(183,0,0,'MX','MEX',484,'BCS','Baja California Sur','',148,'static_countries'),
(184,0,0,'MX','MEX',484,'BC','Baja California Norte','',148,'static_countries'),
(185,0,0,'MX','MEX',484,'CAM','Campeche','',148,'static_countries'),
(186,0,0,'MX','MEX',484,'CHIS','Chiapas','',148,'static_countries'),
(187,0,0,'MX','MEX',484,'CHIH','Chihuahua','',148,'static_countries'),
(188,0,0,'MX','MEX',484,'COAH','Coahuila','',148,'static_countries'),
(189,0,0,'MX','MEX',484,'COL','Colima','',148,'static_countries'),
(190,0,0,'MX','MEX',484,'DIF','Distrito Federal','',148,'static_countries'),
(191,0,0,'MX','MEX',484,'DGO','Durango','',148,'static_countries'),
(192,0,0,'MX','MEX',484,'GTO','Guanajuato','',148,'static_countries'),
(193,0,0,'MX','MEX',484,'GRO','Guerrero','',148,'static_countries'),
(194,0,0,'MX','MEX',484,'HGO','Hidalgo','',148,'static_countries'),
(195,0,0,'MX','MEX',484,'JAL','Jalisco','',148,'static_countries'),
(196,0,0,'MX','MEX',484,'MEX','México','',148,'static_countries'),
(197,0,0,'MX','MEX',484,'MICH','Michoacán','',148,'static_countries'),
(198,0,0,'MX','MEX',484,'MOR','Morelos','',148,'static_countries'),
(199,0,0,'MX','MEX',484,'NAY','Nayarit','',148,'static_countries'),
(200,0,0,'MX','MEX',484,'NL','Nuevo León','',148,'static_countries'),
(201,0,0,'MX','MEX',484,'OAX','Oaxaca','',148,'static_countries'),
(202,0,0,'MX','MEX',484,'PUE','Puebla','',148,'static_countries'),
(203,0,0,'MX','MEX',484,'QRO','Querétaro','',148,'static_countries'),
(204,0,0,'MX','MEX',484,'QROO','Quintana Roo','',148,'static_countries'),
(205,0,0,'MX','MEX',484,'SLP','San Luis Potosí','',148,'static_countries'),
(206,0,0,'MX','MEX',484,'SIN','Sinaloa','',148,'static_countries'),
(207,0,0,'MX','MEX',484,'SON','Sonora','',148,'static_countries'),
(208,0,0,'MX','MEX',484,'TAB','Tabasco','',148,'static_countries'),
(209,0,0,'MX','MEX',484,'TAMPS','Tamaulipas','',148,'static_countries'),
(210,0,0,'MX','MEX',484,'TLAX','Tlaxcala','',148,'static_countries'),
(211,0,0,'MX','MEX',484,'VER','Veracruz','',148,'static_countries'),
(212,0,0,'MX','MEX',484,'YUC','Yucatán','',148,'static_countries'),
(213,0,0,'MX','MEX',484,'ZAC','Zacatecas','',148,'static_countries'),
(214,0,0,'AU','AUS',36,'ACT','Australian Capital Territory','',14,'static_countries'),