-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.xml
More file actions
1432 lines (1394 loc) · 105 KB
/
content.xml
File metadata and controls
1432 lines (1394 loc) · 105 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<!-- generator="WordPress/6.5.3" created="2024-05-27 11:52" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
<channel>
<title>FooGallery Demo</title>
<link>https://smooth-zebra-eeed32.instawp.xyz</link>
<description>Thanks for taking FooGallery for a spin!</description>
<pubDate>Mon, 27 May 2024 11:52:58 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>https://smooth-zebra-eeed32.instawp.xyz</wp:base_site_url>
<wp:base_blog_url>https://smooth-zebra-eeed32.instawp.xyz</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[tokeyupuvo6335]]></wp:author_login><wp:author_email><![CDATA[bradvin@gmail.com]]></wp:author_email><wp:author_display_name><![CDATA[tokeyupuvo6335]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:category>
<wp:term_id>1</wp:term_id>
<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
</wp:category>
<wp:term>
<wp:term_id>29</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_template_part_area]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[footer]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[footer]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>28</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_theme]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[twentytwentyfour]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[twentytwentyfour]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>1</wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[uncategorized]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Uncategorized]]></wp:term_name>
</wp:term>
<generator>https://wordpress.org/?v=6.5.3</generator>
<item>
<title><![CDATA[Rusty Padlock - FooGallery Sample Image 1]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/rusty-padlock-foogallery-sample-image-1/</link>
<pubDate>Tue, 23 Jan 2024 17:54:09 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Rusty Padlock On Blue Door]]></excerpt:encoded>
<wp:post_id>18</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:54:09]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:54:09]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:54:09]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:54:09]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[rusty-padlock-foogallery-sample-image-1]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/1.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Rusty Padlock On Blue Door ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1280;s:6:"height";i:851;s:4:"file";s:13:"2024/01/1.jpg";s:8:"filesize";i:160642;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:13:"1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:17945;}s:5:"large";a:5:{s:4:"file";s:14:"1-1024x681.jpg";s:5:"width";i:1024;s:6:"height";i:681;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:152045;}s:9:"thumbnail";a:5:{s:4:"file";s:13:"1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:8094;}s:12:"medium_large";a:5:{s:4:"file";s:13:"1-768x511.jpg";s:5:"width";i:768;s:6:"height";i:511;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:93089;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[White Sandcastle - FooGallery Sample Image 2]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/white-sandcastle-foogallery-sample-image-2/</link>
<pubDate>Tue, 23 Jan 2024 17:54:11 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/2.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[White Sandcastle]]></excerpt:encoded>
<wp:post_id>19</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:54:11]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:54:11]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:54:11]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:54:11]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[white-sandcastle-foogallery-sample-image-2]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/2.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[White Sandcastle ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/2.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/2.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1280;s:6:"height";i:1920;s:4:"file";s:13:"2024/01/2.jpg";s:8:"filesize";i:210338;s:5:"sizes";a:5:{s:6:"medium";a:5:{s:4:"file";s:13:"2-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:12429;}s:5:"large";a:5:{s:4:"file";s:14:"2-683x1024.jpg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:106525;}s:9:"thumbnail";a:5:{s:4:"file";s:13:"2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5374;}s:12:"medium_large";a:5:{s:4:"file";s:14:"2-768x1152.jpg";s:5:"width";i:768;s:6:"height";i:1152;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:131096;}s:9:"1536x1536";a:5:{s:4:"file";s:15:"2-1024x1536.jpg";s:5:"width";i:1024;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:214478;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Scottish Shoreline - FooGallery Sample Image 3]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/scottish-shoreline-foogallery-sample-image-3/</link>
<pubDate>Tue, 23 Jan 2024 17:54:13 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/3.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Scottish Shoreline]]></excerpt:encoded>
<wp:post_id>20</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:54:13]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:54:13]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:54:13]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:54:13]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[scottish-shoreline-foogallery-sample-image-3]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/3.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Scottish Shoreline ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/3.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/3.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1280;s:6:"height";i:853;s:4:"file";s:13:"2024/01/3.jpg";s:8:"filesize";i:199861;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:13:"3-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:16890;}s:5:"large";a:5:{s:4:"file";s:14:"3-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:157589;}s:9:"thumbnail";a:5:{s:4:"file";s:13:"3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7214;}s:12:"medium_large";a:5:{s:4:"file";s:13:"3-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:92445;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Pipeline - FooGallery Sample Image 4]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/pipeline-foogallery-sample-image-4/</link>
<pubDate>Tue, 23 Jan 2024 17:54:15 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/4.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Pipeline]]></excerpt:encoded>
<wp:post_id>21</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:54:15]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:54:15]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:54:15]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:54:15]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[pipeline-foogallery-sample-image-4]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/4.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Pipeline ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/4.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/4.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:956;s:6:"height";i:1280;s:4:"file";s:13:"2024/01/4.jpg";s:8:"filesize";i:257468;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:13:"4-224x300.jpg";s:5:"width";i:224;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:18718;}s:5:"large";a:5:{s:4:"file";s:14:"4-765x1024.jpg";s:5:"width";i:765;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:216863;}s:9:"thumbnail";a:5:{s:4:"file";s:13:"4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7581;}s:12:"medium_large";a:5:{s:4:"file";s:14:"4-768x1028.jpg";s:5:"width";i:768;s:6:"height";i:1028;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:218982;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Deserted Hotel - FooGallery Sample Image 5]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/deserted-hotel-foogallery-sample-image-5/</link>
<pubDate>Tue, 23 Jan 2024 17:54:16 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/5.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Deserted Hotel]]></excerpt:encoded>
<wp:post_id>22</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:54:16]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:54:16]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:54:16]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:54:16]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[deserted-hotel-foogallery-sample-image-5]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/5.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Deserted Hotel ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/5.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/5.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1280;s:6:"height";i:849;s:4:"file";s:13:"2024/01/5.jpg";s:8:"filesize";i:280326;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:13:"5-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:22566;}s:5:"large";a:5:{s:4:"file";s:14:"5-1024x679.jpg";s:5:"width";i:1024;s:6:"height";i:679;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:213465;}s:9:"thumbnail";a:5:{s:4:"file";s:13:"5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:8851;}s:12:"medium_large";a:5:{s:4:"file";s:13:"5-768x509.jpg";s:5:"width";i:768;s:6:"height";i:509;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:127768;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Irish Shoreline - FooGallery Sample Image 6]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/irish-shoreline-foogallery-sample-image-6/</link>
<pubDate>Tue, 23 Jan 2024 17:54:18 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/6.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Irish Shoreline]]></excerpt:encoded>
<wp:post_id>23</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:54:18]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:54:18]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:54:18]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:54:18]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[irish-shoreline-foogallery-sample-image-6]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/6.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Irish Shoreline ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/6.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/6.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:853;s:6:"height";i:1280;s:4:"file";s:13:"2024/01/6.jpg";s:8:"filesize";i:196858;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:13:"6-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:14024;}s:5:"large";a:5:{s:4:"file";s:14:"6-682x1024.jpg";s:5:"width";i:682;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:138229;}s:9:"thumbnail";a:5:{s:4:"file";s:13:"6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5873;}s:12:"medium_large";a:5:{s:4:"file";s:14:"6-768x1152.jpg";s:5:"width";i:768;s:6:"height";i:1152;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:172304;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Railway - FooGallery Sample Image 7]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/railway-foogallery-sample-image-7/</link>
<pubDate>Tue, 23 Jan 2024 17:54:20 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/7.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Railway]]></excerpt:encoded>
<wp:post_id>24</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:54:20]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:54:20]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:54:20]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:54:20]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[railway-foogallery-sample-image-7]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/7.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Railway ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/7.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/7.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:13:"2024/01/7.jpg";s:8:"filesize";i:376705;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:13:"7-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:21717;}s:5:"large";a:5:{s:4:"file";s:14:"7-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:239330;}s:9:"thumbnail";a:5:{s:4:"file";s:13:"7-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:7602;}s:12:"medium_large";a:5:{s:4:"file";s:13:"7-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:135738;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Chinese Market - FooGallery Sample Image 8]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/chinese-market-foogallery-sample-image-8/</link>
<pubDate>Tue, 23 Jan 2024 17:54:21 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/8.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Chinese Market]]></excerpt:encoded>
<wp:post_id>25</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:54:21]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:54:21]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:54:21]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:54:21]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[chinese-market-foogallery-sample-image-8]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/8.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Chinese Market ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/8.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/8.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:960;s:6:"height";i:1280;s:4:"file";s:13:"2024/01/8.jpg";s:8:"filesize";i:195599;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:13:"8-225x300.jpg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:21310;}s:5:"large";a:5:{s:4:"file";s:14:"8-768x1024.jpg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:181655;}s:9:"thumbnail";a:5:{s:4:"file";s:13:"8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:8019;}s:12:"medium_large";a:5:{s:4:"file";s:14:"8-768x1024.jpg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:181655;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Abandoned Building - FooGallery Sample Image 9]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/abandoned-building-foogallery-sample-image-9/</link>
<pubDate>Tue, 23 Jan 2024 17:54:23 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/9.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Abandoned Building]]></excerpt:encoded>
<wp:post_id>26</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:54:23]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:54:23]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:54:23]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:54:23]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[abandoned-building-foogallery-sample-image-9]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/9.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Abandoned Building ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/9.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/9.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1920;s:6:"height";i:1280;s:4:"file";s:13:"2024/01/9.jpg";s:8:"filesize";i:487722;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:13:"9-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:16968;}s:5:"large";a:5:{s:4:"file";s:14:"9-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:194678;}s:9:"thumbnail";a:5:{s:4:"file";s:13:"9-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6832;}s:12:"medium_large";a:5:{s:4:"file";s:13:"9-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:107676;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Abandoned Building - FooGallery Sample Image 9]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/abandoned-building-foogallery-sample-image-9-2/</link>
<pubDate>Tue, 23 Jan 2024 17:55:08 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/9-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Abandoned Building]]></excerpt:encoded>
<wp:post_id>27</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:08]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:08]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:55:08]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:55:08]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[abandoned-building-foogallery-sample-image-9-2]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/9-1.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Abandoned Building ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/9.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/9-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1920;s:6:"height";i:1280;s:4:"file";s:15:"2024/01/9-1.jpg";s:8:"filesize";i:487722;s:5:"sizes";a:5:{s:6:"medium";a:5:{s:4:"file";s:15:"9-1-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:16968;}s:5:"large";a:5:{s:4:"file";s:16:"9-1-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:194678;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"9-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6832;}s:12:"medium_large";a:5:{s:4:"file";s:15:"9-1-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:107676;}s:9:"1536x1536";a:5:{s:4:"file";s:17:"9-1-1536x1024.jpg";s:5:"width";i:1536;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:428668;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Pirate Ship - FooGallery Sample Image 10]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/pirate-ship-foogallery-sample-image-10/</link>
<pubDate>Tue, 23 Jan 2024 17:55:10 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/10.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Pirate Ship]]></excerpt:encoded>
<wp:post_id>28</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:10]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:10]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:55:10]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:55:10]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[pirate-ship-foogallery-sample-image-10]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/10.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Pirate Ship ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/10.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/10.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1280;s:6:"height";i:853;s:4:"file";s:14:"2024/01/10.jpg";s:8:"filesize";i:137277;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:14:"10-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:10169;}s:5:"large";a:5:{s:4:"file";s:15:"10-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:88815;}s:9:"thumbnail";a:5:{s:4:"file";s:14:"10-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:4656;}s:12:"medium_large";a:5:{s:4:"file";s:14:"10-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:52015;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Muscle Car - FooGallery Sample Image 11]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/muscle-car-foogallery-sample-image-11/</link>
<pubDate>Tue, 23 Jan 2024 17:55:12 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/11.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Muscle Car]]></excerpt:encoded>
<wp:post_id>29</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:12]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:12]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:55:12]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:55:12]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[muscle-car-foogallery-sample-image-11]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/11.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Muscle Car ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/11.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/11.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1920;s:6:"height";i:1280;s:4:"file";s:14:"2024/01/11.jpg";s:8:"filesize";i:389871;s:5:"sizes";a:5:{s:6:"medium";a:5:{s:4:"file";s:14:"11-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:15275;}s:5:"large";a:5:{s:4:"file";s:15:"11-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:155708;}s:9:"thumbnail";a:5:{s:4:"file";s:14:"11-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6834;}s:12:"medium_large";a:5:{s:4:"file";s:14:"11-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:87784;}s:9:"1536x1536";a:5:{s:4:"file";s:16:"11-1536x1024.jpg";s:5:"width";i:1536;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:342328;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Grafitti - FooGallery Sample Image 12]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/grafitti-foogallery-sample-image-12/</link>
<pubDate>Tue, 23 Jan 2024 17:55:13 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/12.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Grafitti]]></excerpt:encoded>
<wp:post_id>30</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:13]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:13]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:55:13]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:55:13]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[grafitti-foogallery-sample-image-12]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://smooth-zebra-eeed32.instawp.xyz/wp-content/uploads/2024/01/12.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Grafitti ALT]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_imported_from]]></wp:meta_key>
<wp:meta_value><![CDATA[https://assets.fooplugins.com/pixabay/12.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/01/12.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:14:"2024/01/12.jpg";s:8:"filesize";i:248883;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:14:"12-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:33705;}s:5:"large";a:5:{s:4:"file";s:15:"12-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:255464;}s:9:"thumbnail";a:5:{s:4:"file";s:14:"12-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:12253;}s:12:"medium_large";a:5:{s:4:"file";s:14:"12-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:161525;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Demo : Responsive]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-responsive</link>
<pubDate>Tue, 23 Jan 2024 17:55:14 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-responsive</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>31</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:55:14]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[demo-responsive]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[foogallery]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_template]]></wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[a:36:{s:21:"foogallery_items_view";s:7:"preview";s:28:"default_thumbnail_dimensions";a:2:{s:5:"width";s:3:"200";s:6:"height";s:3:"200";}s:22:"default_thumbnail_link";s:5:"image";s:16:"default_lightbox";s:10:"foogallery";s:15:"default_spacing";s:12:"fg-gutter-10";s:17:"default_alignment";s:9:"fg-center";s:13:"default_theme";s:8:"fg-light";s:19:"default_border_size";s:14:"fg-border-thin";s:23:"default_rounded_corners";s:0:"";s:19:"default_drop_shadow";s:17:"fg-shadow-outline";s:20:"default_inner_shadow";s:0:"";s:20:"default_loading_icon";s:18:"fg-loading-default";s:21:"default_loaded_effect";s:17:"fg-loaded-fade-in";s:17:"default_instagram";s:0:"";s:21:"default_captions_type";s:0:"";s:28:"default_caption_title_source";s:0:"";s:27:"default_caption_desc_source";s:0:"";s:29:"default_captions_limit_length";s:0:"";s:20:"default_gutter_width";s:2:"10";s:39:"default_hover_effect_caption_visibility";s:16:"fg-caption-hover";s:26:"default_hover_effect_color";s:0:"";s:25:"default_hover_effect_icon";s:13:"fg-hover-zoom";s:27:"default_hover_effect_preset";s:9:"fg-custom";s:26:"default_hover_effect_scale";s:15:"fg-hover-zoomed";s:31:"default_hover_effect_transition";s:13:"fg-hover-fade";s:25:"default_hover_effect_type";s:6:"normal";s:28:"default_caption_invert_color";s:0:"";s:22:"default_filtering_type";s:0:"";s:19:"default_paging_type";s:0:"";s:13:"default_state";s:2:"no";s:23:"default_custom_settings";s:0:"";s:16:"default_lazyload";s:0:"";s:22:"default_video_autoplay";s:3:"yes";s:24:"default_video_hover_icon";s:16:"fg-video-default";s:18:"default_video_size";s:7:"640x360";s:25:"default_video_sticky_icon";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_attachments]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{i:0;i:18;i:1;i:19;i:2;i:20;i:3;i:21;i:4;i:22;i:5;i:23;}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Demo : Image Viewer]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-image-viewer</link>
<pubDate>Tue, 23 Jan 2024 17:55:14 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-image-viewer</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>32</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:55:14]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[demo-image-viewer]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[foogallery]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_template]]></wp:meta_key>
<wp:meta_value><![CDATA[image-viewer]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[a:36:{s:21:"foogallery_items_view";s:7:"preview";s:27:"image-viewer_thumbnail_size";a:3:{s:5:"width";s:3:"640";s:6:"height";s:3:"360";s:4:"crop";s:1:"1";}s:27:"image-viewer_thumbnail_link";s:5:"image";s:21:"image-viewer_lightbox";s:10:"foogallery";s:22:"image-viewer_alignment";s:9:"fg-center";s:20:"image-viewer_looping";s:7:"enabled";s:18:"image-viewer_theme";s:8:"fg-light";s:24:"image-viewer_border_size";s:16:"fg-border-medium";s:28:"image-viewer_rounded_corners";s:15:"fg-round-medium";s:24:"image-viewer_drop_shadow";s:15:"fg-shadow-small";s:25:"image-viewer_inner_shadow";s:21:"fg-shadow-inset-large";s:25:"image-viewer_loading_icon";s:16:"fg-loading-pulse";s:26:"image-viewer_loaded_effect";s:18:"fg-loaded-scale-up";s:22:"image-viewer_instagram";s:0:"";s:26:"image-viewer_captions_type";s:0:"";s:33:"image-viewer_caption_title_source";s:0:"";s:32:"image-viewer_caption_desc_source";s:0:"";s:34:"image-viewer_captions_limit_length";s:0:"";s:25:"image-viewer_gutter_width";s:2:"10";s:44:"image-viewer_hover_effect_caption_visibility";s:17:"fg-caption-always";s:31:"image-viewer_hover_effect_color";s:18:"fg-hover-grayscale";s:30:"image-viewer_hover_effect_icon";s:20:"fg-hover-circle-plus";s:32:"image-viewer_hover_effect_preset";s:9:"fg-custom";s:31:"image-viewer_hover_effect_scale";s:15:"fg-hover-zoomed";s:36:"image-viewer_hover_effect_transition";s:13:"fg-hover-fade";s:30:"image-viewer_hover_effect_type";s:6:"normal";s:33:"image-viewer_caption_invert_color";s:17:"fg-light-overlays";s:27:"image-viewer_filtering_type";s:0:"";s:24:"image-viewer_paging_type";s:0:"";s:18:"image-viewer_state";s:2:"no";s:28:"image-viewer_custom_settings";s:0:"";s:21:"image-viewer_lazyload";s:0:"";s:27:"image-viewer_video_autoplay";s:3:"yes";s:29:"image-viewer_video_hover_icon";s:16:"fg-video-default";s:23:"image-viewer_video_size";s:7:"640x360";s:30:"image-viewer_video_sticky_icon";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_attachments]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{i:0;i:20;i:1;i:18;i:2;i:22;i:3;i:28;i:4;i:29;i:5;i:30;}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Demo : Justified]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-justified</link>
<pubDate>Tue, 23 Jan 2024 17:55:14 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-justified</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>33</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:55:14]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[demo-justified]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[foogallery]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_template]]></wp:meta_key>
<wp:meta_value><![CDATA[justified]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[a:37:{s:21:"foogallery_items_view";s:7:"preview";s:20:"justified_row_height";s:3:"200";s:22:"justified_thumb_height";s:3:"300";s:24:"justified_thumbnail_link";s:5:"image";s:18:"justified_lightbox";s:10:"foogallery";s:15:"justified_align";s:6:"center";s:17:"justified_margins";s:1:"1";s:15:"justified_theme";s:7:"fg-dark";s:21:"justified_border_size";s:0:"";s:25:"justified_rounded_corners";s:0:"";s:21:"justified_drop_shadow";s:0:"";s:22:"justified_inner_shadow";s:0:"";s:22:"justified_loading_icon";s:18:"fg-loading-default";s:23:"justified_loaded_effect";s:17:"fg-loaded-fade-in";s:19:"justified_instagram";s:0:"";s:23:"justified_captions_type";s:0:"";s:30:"justified_caption_title_source";s:0:"";s:29:"justified_caption_desc_source";s:4:"none";s:31:"justified_captions_limit_length";s:0:"";s:27:"justified_caption_alignment";s:6:"fg-c-c";s:41:"justified_hover_effect_caption_visibility";s:17:"fg-caption-always";s:28:"justified_hover_effect_color";s:17:"fg-hover-colorize";s:27:"justified_hover_effect_icon";s:0:"";s:29:"justified_hover_effect_preset";s:9:"fg-custom";s:28:"justified_hover_effect_scale";s:15:"fg-hover-zoomed";s:33:"justified_hover_effect_transition";s:16:"fg-hover-instant";s:27:"justified_hover_effect_type";s:6:"normal";s:30:"justified_caption_invert_color";s:23:"fg-transparent-overlays";s:24:"justified_filtering_type";s:0:"";s:21:"justified_paging_type";s:0:"";s:15:"justified_state";s:2:"no";s:25:"justified_custom_settings";s:0:"";s:18:"justified_lazyload";s:0:"";s:24:"justified_video_autoplay";s:3:"yes";s:26:"justified_video_hover_icon";s:16:"fg-video-default";s:20:"justified_video_size";s:7:"640x360";s:27:"justified_video_sticky_icon";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_attachments]]></wp:meta_key>
<wp:meta_value><![CDATA[a:12:{i:0;i:19;i:1;i:18;i:2;i:20;i:3;i:21;i:4;i:22;i:5;i:23;i:6;i:24;i:7;i:25;i:8;i:27;i:9;i:28;i:10;i:29;i:11;i:30;}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Demo : Masonry]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-masonry</link>
<pubDate>Tue, 23 Jan 2024 17:55:14 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-masonry</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>34</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-02-08 11:38:04]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-02-08 11:38:04]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[demo-masonry]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[foogallery]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_template]]></wp:meta_key>
<wp:meta_value><![CDATA[masonry]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[a:56:{s:21:"foogallery_items_view";s:7:"preview";s:23:"masonry_thumbnail_width";s:3:"250";s:14:"masonry_layout";s:4:"col3";s:18:"masonry_horizontal";s:0:"";s:22:"masonry_gutter_percent";s:0:"";s:22:"masonry_thumbnail_link";s:5:"image";s:16:"masonry_lightbox";s:10:"foogallery";s:22:"masonry_lightbox_theme";s:0:"";s:27:"masonry_lightbox_transition";s:4:"fade";s:30:"masonry_lightbox_auto_progress";s:2:"no";s:26:"masonry_lightbox_fit_media";s:2:"no";s:30:"masonry_lightbox_no_scrollbars";s:2:"no";s:30:"masonry_lightbox_mobile_layout";s:0:"";s:29:"masonry_lightbox_button_theme";s:0:"";s:33:"masonry_lightbox_button_highlight";s:0:"";s:32:"masonry_lightbox_buttons_display";s:2:"no";s:30:"masonry_lightbox_hover_buttons";s:2:"no";s:39:"masonry_lightbox_show_fullscreen_button";s:3:"yes";s:36:"masonry_lightbox_show_caption_button";s:3:"yes";s:39:"masonry_lightbox_show_thumbstrip_button";s:2:"no";s:33:"masonry_lightbox_show_nav_buttons";s:3:"yes";s:23:"masonry_lightbox_thumbs";s:6:"bottom";s:32:"masonry_lightbox_thumbs_captions";s:2:"no";s:42:"masonry_lightbox_thumbs_captions_alignment";s:7:"default";s:31:"masonry_lightbox_thumbs_bestfit";s:0:"";s:28:"masonry_lightbox_thumbs_size";s:0:"";s:29:"masonry_lightbox_info_enabled";s:0:"";s:30:"masonry_lightbox_info_position";s:6:"bottom";s:31:"masonry_lightbox_info_alignment";s:7:"default";s:29:"masonry_lightbox_info_overlay";s:3:"yes";s:33:"masonry_lightbox_caption_override";s:0:"";s:13:"masonry_theme";s:7:"fg-dark";s:19:"masonry_border_size";s:14:"fg-border-thin";s:23:"masonry_rounded_corners";s:0:"";s:19:"masonry_drop_shadow";s:15:"fg-shadow-small";s:20:"masonry_inner_shadow";s:0:"";s:20:"masonry_loading_icon";s:18:"fg-loading-default";s:21:"masonry_loaded_effect";s:17:"fg-loaded-fade-in";s:25:"masonry_hover_effect_type";s:6:"normal";s:28:"masonry_caption_invert_color";s:0:"";s:26:"masonry_hover_effect_color";s:0:"";s:26:"masonry_hover_effect_scale";s:15:"fg-hover-zoomed";s:39:"masonry_hover_effect_caption_visibility";s:18:"fg-captions-bottom";s:31:"masonry_hover_effect_transition";s:13:"fg-hover-fade";s:25:"masonry_hover_effect_icon";s:13:"fg-hover-plus";s:27:"masonry_promo_captions_type";s:0:"";s:28:"masonry_caption_title_source";s:0:"";s:27:"masonry_caption_desc_source";s:0:"";s:25:"masonry_caption_alignment";s:0:"";s:29:"masonry_captions_limit_length";s:0:"";s:19:"masonry_paging_type";s:0:"";s:23:"masonry_custom_settings";s:0:"";s:25:"masonry_custom_attributes";s:0:"";s:20:"masonry_custom_class";s:0:"";s:21:"masonry_include_title";s:0:"";s:16:"masonry_lazyload";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_attachments]]></wp:meta_key>
<wp:meta_value><![CDATA[a:12:{i:0;s:2:"21";i:1;s:2:"19";i:2;s:2:"20";i:3;s:2:"18";i:4;s:2:"22";i:5;s:2:"23";i:6;s:2:"24";i:7;s:2:"25";i:8;s:2:"27";i:9;s:2:"28";i:10;s:2:"29";i:11;s:2:"30";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_datasource]]></wp:meta_key>
<wp:meta_value><![CDATA[media_library]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_sort]]></wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Demo : Simple Portfolio]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-simple-portfolio</link>
<pubDate>Tue, 23 Jan 2024 17:55:14 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-simple-portfolio</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>35</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:55:14]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[demo-simple-portfolio]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[foogallery]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_template]]></wp:meta_key>
<wp:meta_value><![CDATA[simple_portfolio]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[a:36:{s:21:"foogallery_items_view";s:7:"preview";s:37:"simple_portfolio_thumbnail_dimensions";a:2:{s:5:"width";s:3:"220";s:6:"height";s:3:"180";}s:31:"simple_portfolio_thumbnail_link";s:5:"image";s:25:"simple_portfolio_lightbox";s:10:"foogallery";s:22:"simple_portfolio_align";s:6:"center";s:23:"simple_portfolio_gutter";s:1:"5";s:22:"simple_portfolio_theme";s:8:"fg-light";s:28:"simple_portfolio_border_size";s:14:"fg-border-thin";s:32:"simple_portfolio_rounded_corners";s:0:"";s:28:"simple_portfolio_drop_shadow";s:15:"fg-shadow-small";s:29:"simple_portfolio_inner_shadow";s:22:"fg-shadow-inset-medium";s:29:"simple_portfolio_loading_icon";s:18:"fg-loading-default";s:30:"simple_portfolio_loaded_effect";s:20:"fg-loaded-swing-down";s:26:"simple_portfolio_instagram";s:0:"";s:30:"simple_portfolio_captions_type";s:0:"";s:37:"simple_portfolio_caption_title_source";s:0:"";s:36:"simple_portfolio_caption_desc_source";s:0:"";s:38:"simple_portfolio_captions_limit_length";s:0:"";s:34:"simple_portfolio_caption_alignment";s:6:"fg-c-c";s:48:"simple_portfolio_hover_effect_caption_visibility";s:17:"fg-caption-always";s:35:"simple_portfolio_hover_effect_color";s:0:"";s:34:"simple_portfolio_hover_effect_icon";s:12:"fg-hover-eye";s:36:"simple_portfolio_hover_effect_preset";s:9:"fg-custom";s:35:"simple_portfolio_hover_effect_scale";s:0:"";s:40:"simple_portfolio_hover_effect_transition";s:13:"fg-hover-fade";s:34:"simple_portfolio_hover_effect_type";s:6:"normal";s:37:"simple_portfolio_caption_invert_color";s:17:"fg-light-overlays";s:31:"simple_portfolio_filtering_type";s:0:"";s:28:"simple_portfolio_paging_type";s:0:"";s:22:"simple_portfolio_state";s:2:"no";s:32:"simple_portfolio_custom_settings";s:0:"";s:25:"simple_portfolio_lazyload";s:0:"";s:31:"simple_portfolio_video_autoplay";s:3:"yes";s:33:"simple_portfolio_video_hover_icon";s:16:"fg-video-default";s:27:"simple_portfolio_video_size";s:7:"640x360";s:34:"simple_portfolio_video_sticky_icon";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_attachments]]></wp:meta_key>
<wp:meta_value><![CDATA[a:12:{i:0;i:22;i:1;i:18;i:2;i:19;i:3;i:20;i:4;i:21;i:5;i:23;i:6;i:24;i:7;i:25;i:8;i:27;i:9;i:28;i:10;i:29;i:11;i:30;}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Demo : Simple Portfolio (Variation)]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-simple-portfolio-variation</link>
<pubDate>Tue, 23 Jan 2024 17:55:14 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-simple-portfolio-variation</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>36</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:55:14]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[demo-simple-portfolio-variation]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[foogallery]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_template]]></wp:meta_key>
<wp:meta_value><![CDATA[simple_portfolio]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[a:36:{s:21:"foogallery_items_view";s:7:"preview";s:37:"simple_portfolio_thumbnail_dimensions";a:2:{s:5:"width";s:3:"220";s:6:"height";s:3:"180";}s:31:"simple_portfolio_thumbnail_link";s:5:"image";s:25:"simple_portfolio_lightbox";s:10:"foogallery";s:22:"simple_portfolio_align";s:6:"center";s:23:"simple_portfolio_gutter";s:1:"5";s:22:"simple_portfolio_theme";s:14:"fg-transparent";s:28:"simple_portfolio_border_size";s:0:"";s:32:"simple_portfolio_rounded_corners";s:14:"fg-round-large";s:28:"simple_portfolio_drop_shadow";s:0:"";s:29:"simple_portfolio_inner_shadow";s:0:"";s:29:"simple_portfolio_loading_icon";s:18:"fg-loading-default";s:30:"simple_portfolio_loaded_effect";s:14:"fg-loaded-flip";s:26:"simple_portfolio_instagram";s:0:"";s:30:"simple_portfolio_captions_type";s:0:"";s:37:"simple_portfolio_caption_title_source";s:0:"";s:36:"simple_portfolio_caption_desc_source";s:4:"none";s:38:"simple_portfolio_captions_limit_length";s:0:"";s:34:"simple_portfolio_caption_alignment";s:6:"fg-c-c";s:48:"simple_portfolio_hover_effect_caption_visibility";s:17:"fg-caption-always";s:35:"simple_portfolio_hover_effect_color";s:0:"";s:34:"simple_portfolio_hover_effect_icon";s:14:"fg-hover-zoom2";s:36:"simple_portfolio_hover_effect_preset";s:9:"fg-custom";s:35:"simple_portfolio_hover_effect_scale";s:15:"fg-hover-zoomed";s:40:"simple_portfolio_hover_effect_transition";s:13:"fg-hover-fade";s:34:"simple_portfolio_hover_effect_type";s:6:"normal";s:37:"simple_portfolio_caption_invert_color";s:0:"";s:31:"simple_portfolio_filtering_type";s:0:"";s:28:"simple_portfolio_paging_type";s:0:"";s:22:"simple_portfolio_state";s:2:"no";s:32:"simple_portfolio_custom_settings";s:0:"";s:25:"simple_portfolio_lazyload";s:0:"";s:31:"simple_portfolio_video_autoplay";s:3:"yes";s:33:"simple_portfolio_video_hover_icon";s:16:"fg-video-default";s:27:"simple_portfolio_video_size";s:7:"640x360";s:34:"simple_portfolio_video_sticky_icon";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_attachments]]></wp:meta_key>
<wp:meta_value><![CDATA[a:12:{i:0;i:23;i:1;i:18;i:2;i:19;i:3;i:20;i:4;i:21;i:5;i:22;i:6;i:24;i:7;i:25;i:8;i:27;i:9;i:28;i:10;i:29;i:11;i:30;}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Demo : Carousel]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-carousel</link>
<pubDate>Tue, 23 Jan 2024 17:55:14 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/?foogallery=demo-carousel</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>37</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:55:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:55:14]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:55:14]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[demo-carousel]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[foogallery]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_template]]></wp:meta_key>
<wp:meta_value><![CDATA[carousel]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery_settings]]></wp:meta_key>
<wp:meta_value><![CDATA[a:40:{s:21:"foogallery_items_view";s:7:"preview";s:29:"carousel_autoplay_interaction";s:5:"pause";s:22:"carousel_autoplay_time";s:1:"0";s:22:"carousel_centerOnClick";s:4:"true";s:17:"carousel_maxItems";s:1:"5";s:14:"carousel_scale";s:4:"0.12";s:15:"carousel_gutter";a:3:{s:3:"min";s:3:"-40";s:3:"max";s:3:"-20";s:5:"units";s:1:"%";}s:17:"carousel_inverted";s:0:"";s:29:"carousel_thumbnail_dimensions";a:2:{s:5:"width";s:3:"200";s:6:"height";s:3:"200";}s:23:"carousel_thumbnail_link";s:5:"image";s:17:"carousel_lightbox";s:10:"foogallery";s:14:"carousel_theme";s:8:"fg-light";s:20:"carousel_border_size";s:14:"fg-border-thin";s:24:"carousel_rounded_corners";s:0:"";s:20:"carousel_drop_shadow";s:17:"fg-shadow-outline";s:21:"carousel_inner_shadow";s:0:"";s:21:"carousel_loading_icon";s:15:"fg-loading-bars";s:22:"carousel_loaded_effect";s:14:"fg-loaded-flip";s:18:"carousel_instagram";s:0:"";s:22:"carousel_captions_type";s:0:"";s:29:"carousel_caption_title_source";s:0:"";s:28:"carousel_caption_desc_source";s:4:"none";s:30:"carousel_captions_limit_length";s:0:"";s:40:"carousel_hover_effect_caption_visibility";s:16:"fg-caption-hover";s:27:"carousel_hover_effect_color";s:0:"";s:26:"carousel_hover_effect_icon";s:14:"fg-hover-zoom3";s:28:"carousel_hover_effect_preset";s:9:"fg-custom";s:27:"carousel_hover_effect_scale";s:15:"fg-hover-zoomed";s:32:"carousel_hover_effect_transition";s:13:"fg-hover-fade";s:26:"carousel_hover_effect_type";s:6:"normal";s:29:"carousel_caption_invert_color";s:0:"";s:23:"carousel_filtering_type";s:0:"";s:20:"carousel_paging_type";s:0:"";s:14:"carousel_state";s:2:"no";s:24:"carousel_custom_settings";s:0:"";s:17:"carousel_lazyload";s:0:"";s:23:"carousel_video_autoplay";s:3:"yes";s:25:"carousel_video_hover_icon";s:16:"fg-video-default";s:19:"carousel_video_size";s:7:"640x360";s:26:"carousel_video_sticky_icon";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[foogallery_attachments]]></wp:meta_key>
<wp:meta_value><![CDATA[a:12:{i:0;i:24;i:1;i:18;i:2;i:19;i:3;i:20;i:4;i:21;i:5;i:22;i:6;i:24;i:7;i:25;i:8;i:27;i:9;i:28;i:10;i:29;i:11;i:30;}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Hello world!]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/hello-world/</link>
<pubDate>Tue, 23 Jan 2024 16:35:39 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/?p=1</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>
<!-- /wp:paragraph -->
<!-- wp:fooplugins/foogallery {"id":37} /-->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 16:35:39]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 16:35:39]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 18:00:29]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 18:00:29]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[hello-world]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[post]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:comment>
<wp:comment_id>1</wp:comment_id>
<wp:comment_author><![CDATA[A WordPress Commenter]]></wp:comment_author>
<wp:comment_author_email><![CDATA[wapuu@wordpress.example]]></wp:comment_author_email>
<wp:comment_author_url>https://wordpress.org/</wp:comment_author_url>
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
<wp:comment_date><![CDATA[2024-01-23 16:35:39]]></wp:comment_date>
<wp:comment_date_gmt><![CDATA[2024-01-23 16:35:39]]></wp:comment_date_gmt>
<wp:comment_content><![CDATA[Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from <a href="https://en.gravatar.com/">Gravatar</a>.]]></wp:comment_content>
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
<wp:comment_type><![CDATA[comment]]></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>0</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title><![CDATA[Gallery]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/gallery/</link>
<pubDate>Tue, 23 Jan 2024 17:59:14 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/?page_id=38</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:fooplugins/foogallery {"id":31} /-->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>38</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:59:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:59:14]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:59:14]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:59:14]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[gallery]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_foogallery]]></wp:meta_key>
<wp:meta_value><![CDATA[31]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Custom Styles]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/wp-global-styles-twentytwentyfour/</link>
<pubDate>Tue, 23 Jan 2024 17:58:16 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/wp-global-styles-twentytwentyfour/</guid>
<description></description>
<content:encoded><![CDATA[{"styles":{"blocks":{"core\/button":{"variations":{"outline":{"spacing":{"padding":{"bottom":"calc(1rem - 1px)","left":"calc(2.2rem - 1px)","right":"calc(2.2rem - 1px)","top":"calc(1rem - 1px)"}},"border":{"width":"1px"}}}},"core\/pullquote":{"typography":{"fontSize":"var(--wp--preset--font-size--large)","fontStyle":"normal","fontWeight":"normal","lineHeight":"1.2"}},"core\/quote":{"typography":{"fontFamily":"var(--wp--preset--font-family--heading)","fontSize":"var(--wp--preset--font-size--large)","fontStyle":"normal"},"variations":{"plain":{"typography":{"fontStyle":"normal","fontWeight":"400"}}}},"core\/site-title":{"typography":{"fontWeight":"400"}}},"elements":{"button":{"border":{"radius":"4px","color":"var(--wp--preset--color--contrast-2)"},"color":{"background":"var(--wp--preset--color--contrast-2)","text":"var(--wp--preset--color--white)"},"spacing":{"padding":{"bottom":"1rem","left":"2.2rem","right":"2.2rem","top":"1rem"}},"typography":{"fontFamily":"var(--wp--preset--font-family--heading)","fontSize":"0.75rem","fontStyle":"normal","textTransform":"uppercase","letterSpacing":"0.1rem"},":hover":{"color":{"background":"var(--wp--preset--color--contrast)"},"border":{"color":"var(--wp--preset--color--contrast)"}}},"heading":{"typography":{"fontWeight":"normal","letterSpacing":"0"}}}},"settings":{"color":{"gradients":{"theme":[{"slug":"gradient-1","gradient":"linear-gradient(to bottom, #cbd9e1 0%, #EBEBEF 100%)","name":"Vertical azure to ice"},{"slug":"gradient-2","gradient":"linear-gradient(to bottom, #466577 0%, #EBEBEF 100%)","name":"Vertical slate to ice"},{"slug":"gradient-3","gradient":"linear-gradient(to bottom, #37505d 0%, #EBEBEF 100%)","name":"Vertical ocean to ice"},{"slug":"gradient-4","gradient":"linear-gradient(to bottom, #1C2930 0%, #EBEBEF 100%)","name":"Vertical ink to ice"},{"slug":"gradient-5","gradient":"linear-gradient(to bottom, #37505d 0%, #466577 100%)","name":"Vertical ocean to slate"},{"slug":"gradient-6","gradient":"linear-gradient(to bottom, #1C2930 0%, #37505d 100%)","name":"Vertical ink to ocean"},{"slug":"gradient-7","gradient":"linear-gradient(to bottom, #EBEBEF 50%, #cbd9e1 50%)","name":"Vertical hard ice to azure"},{"slug":"gradient-8","gradient":"linear-gradient(to bottom, #466577 50%, #EBEBEF 50%)","name":"Vertical hard slate to ice"},{"slug":"gradient-9","gradient":"linear-gradient(to bottom, #37505d 50%, #EBEBEF 50%)","name":"Vertical hard ocean to ice"},{"slug":"gradient-10","gradient":"linear-gradient(to bottom, #1C2930 50%, #EBEBEF 50%)","name":"Vertical hard ink to ice"},{"slug":"gradient-11","gradient":"linear-gradient(to bottom, #37505d 50%, #466577 50%)","name":"Vertical hard ocean to slate"},{"slug":"gradient-12","gradient":"linear-gradient(to bottom, #1C2930 50%, #37505d 50%)","name":"Vertical hard ink to ocean"}]},"palette":{"theme":[{"color":"#EBEBEF","name":"Base","slug":"base"},{"color":"#DCE0E6","name":"Base \/ Two","slug":"base-2"},{"color":"#1C2930","name":"Contrast","slug":"contrast"},{"color":"#37505d","name":"Contrast \/ Two","slug":"contrast-2"},{"color":"#96A5B2","name":"Contrast \/ Three","slug":"contrast-3"}]}},"typography":{"fontFamilies":{"theme":[{"fontFace":[{"fontFamily":"Inter","fontStretch":"normal","fontStyle":"normal","fontWeight":"300 900","src":["file:.\/assets\/fonts\/inter\/Inter-VariableFont_slnt,wght.woff2"]}],"fontFamily":"\"Inter\", sans-serif","name":"Inter","slug":"heading"},{"fontFace":[{"fontFamily":"Jost","fontStyle":"normal","fontWeight":"100 900","src":["file:.\/assets\/fonts\/jost\/Jost-VariableFont_wght.woff2"]},{"fontFamily":"Jost","fontStyle":"italic","fontWeight":"100 900","src":["file:.\/assets\/fonts\/jost\/Jost-Italic-VariableFont_wght.woff2"]}],"fontFamily":"\"Jost\", sans-serif","name":"Jost","slug":"body"},{"fontFamily":"-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif","name":"System Sans-serif","slug":"system-sans-serif"},{"fontFamily":"Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol","name":"System Serif","slug":"system-serif"}]},"fontSizes":{"theme":[{"fluid":false,"name":"Small","size":"1rem","slug":"small"},{"fluid":false,"name":"Medium","size":"1.2rem","slug":"medium"},{"fluid":{"min":"1.5rem","max":"2rem"},"name":"Large","size":"2rem","slug":"large"},{"fluid":{"min":"2rem","max":"2.65rem"},"name":"Extra Large","size":"2.65rem","slug":"x-large"},{"fluid":{"min":"2.65rem","max":"3.5rem"},"name":"Extra Extra Large","size":"3.5rem","slug":"xx-large"}]}}},"isGlobalStylesUserThemeJSON":true,"version":2}]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>39</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:58:16]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:58:16]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-02-08 11:53:38]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-02-08 11:53:38]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[wp-global-styles-twentytwentyfour]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[wp_global_styles]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="wp_theme" nicename="twentytwentyfour"><![CDATA[twentytwentyfour]]></category>
</item>
<item>
<title><![CDATA[Navigation]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/navigation/</link>
<pubDate>Tue, 23 Jan 2024 17:58:59 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/navigation/</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:page-list /-->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>40</wp:post_id>
<wp:post_date><![CDATA[2024-01-23 17:58:59]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-23 17:58:59]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-01-23 17:58:59]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-01-23 17:58:59]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[navigation]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[wp_navigation]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
</item>
<item>
<title><![CDATA[My First Album]]></title>
<link>https://smooth-zebra-eeed32.instawp.xyz/?foogallery-album=my-first-album</link>
<pubDate>Sat, 27 Jan 2024 15:30:44 +0000</pubDate>
<dc:creator><![CDATA[tokeyupuvo6335]]></dc:creator>
<guid isPermaLink="false">https://smooth-zebra-eeed32.instawp.xyz/?post_type=foogallery-album&p=50</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>50</wp:post_id>
<wp:post_date><![CDATA[2024-01-27 15:30:44]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-01-27 15:30:44]]></wp:post_date_gmt>