Shortcodes and extra features for Phlox theme - Version 1.4.2

Version Description

Download this release

Release Info

Developer averta
Plugin Icon 128x128 Shortcodes and extra features for Phlox theme
Version 1.4.2
Comparing to
See all releases

Code changes from version 1.4.1 to 1.4.2

README.txt CHANGED
@@ -6,7 +6,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: banner SEO, shortcode, page-builder, siteorigin, auxin, phlox, averta, framework, widget, element, fullwidth, masonry, timeline
7
  Requires at least: 4.6
8
  Tested up to: 4.8.0
9
- Stable tag: 1.4.1
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl.html
12
 
@@ -140,6 +140,10 @@ Bugs can be reported in our [support forums](http://wordpress.org/tags/auxin-ele
140
 
141
  == Changelog ==
142
 
 
 
 
 
143
  = Version 1.4.1 / (06.08.2017) =
144
  - [Improvement]: Custom CSS and JavaScript fields added to pages
145
 
@@ -200,6 +204,6 @@ Bugs can be reported in our [support forums](http://wordpress.org/tags/auxin-ele
200
 
201
  == Upgrade Notice ==
202
 
203
- = 1.4.0 =
204
- - [Improvement]: Applying some changes based on latest changes in auxin framework
205
 
6
  Tags: banner SEO, shortcode, page-builder, siteorigin, auxin, phlox, averta, framework, widget, element, fullwidth, masonry, timeline
7
  Requires at least: 4.6
8
  Tested up to: 4.8.0
9
+ Stable tag: 1.4.2
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl.html
12
 
140
 
141
  == Changelog ==
142
 
143
+ = Version 1.4.2 / (10.08.2017) =
144
+ - [New]: Changelog section added to welcome page
145
+ - [Improvement]: Some improvements in custom permalink structures for Phlox themes
146
+
147
  = Version 1.4.1 / (06.08.2017) =
148
  - [Improvement]: Custom CSS and JavaScript fields added to pages
149
 
204
 
205
  == Upgrade Notice ==
206
 
207
+ = 1.4.2 =
208
+ - [New]: Changelog section added to welcome page
209
 
admin/includes/admin-hooks.php CHANGED
@@ -225,6 +225,48 @@ function auxin_add_metabox_field_to_title_setting_tab( $fields, $id, $type ){
225
  add_filter( 'auxin_metabox_fields', 'auxin_add_metabox_field_to_title_setting_tab', 10, 3 );
226
 
227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  /*-----------------------------------------------------------------------------------*/
229
  /* Adds Custom JavaScript meta field to 'Advanced setting' tab
230
  /*-----------------------------------------------------------------------------------*/
@@ -247,6 +289,66 @@ function auxin_add_metabox_field_to_advanced_setting_tab( $fields, $id, $type ){
247
  add_filter( 'auxin_metabox_fields', 'auxin_add_metabox_field_to_advanced_setting_tab', 10, 3 );
248
 
249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  /*-----------------------------------------------------------------------------------*/
251
  /* Adding fallback for deprecated theme option name
252
  /*-----------------------------------------------------------------------------------*/
225
  add_filter( 'auxin_metabox_fields', 'auxin_add_metabox_field_to_title_setting_tab', 10, 3 );
226
 
227
 
228
+ /**
229
+ * Display changelogs on welcome page
230
+ *
231
+ * @param string $theme_id The theme ID that we intent to display the it's changelog
232
+ * @return void
233
+ */
234
+ function auxels_add_changelog_to_welcome_page( $theme_id ){
235
+
236
+
237
+ if( function_exists('auxin_get_remote_changelog') ){
238
+
239
+ // sanitize the theme id
240
+ $theme_id = esc_sql( $theme_id );
241
+
242
+ // get remote changelog
243
+ if( false === $changelog_info = get_transient( "auxin_{$theme_id}_remote_changelog" ) ){
244
+
245
+ $changelog = auxin_get_remote_changelog( $theme_id );
246
+
247
+ if( is_wp_error( $changelog ) ){
248
+ echo $changelog->get_error_message();
249
+ } else {
250
+ $changelog_info = json_decode( $changelog, true );
251
+ set_transient( "auxin_{$theme_id}_remote_changelog", $changelog_info, 2 * HOUR_IN_SECONDS );
252
+ }
253
+
254
+ }
255
+
256
+ // print the changelog
257
+ if( $changelog_info && ! empty( $changelog_info['version'] ) && ! empty( $changelog_info['changelog'] ) ){
258
+ echo '<a href="http://support.averta.net/en/changelog/'.$theme_id.'/" target="_blank"><h2 class="aux-featur">' . __( "What's New in version", 'auxin-elements') . ' '. $changelog_info['version'] . '</h2></a>';
259
+ echo '<div class="welcome-changelog">';
260
+ echo str_replace("\n", "<br />", $changelog_info['changelog'] );
261
+ echo '</div>';
262
+ }
263
+
264
+ }
265
+
266
+ }
267
+
268
+ add_action( 'auxin_welcome_page_after_feature_section', 'auxels_add_changelog_to_welcome_page' );
269
+
270
  /*-----------------------------------------------------------------------------------*/
271
  /* Adds Custom JavaScript meta field to 'Advanced setting' tab
272
  /*-----------------------------------------------------------------------------------*/
289
  add_filter( 'auxin_metabox_fields', 'auxin_add_metabox_field_to_advanced_setting_tab', 10, 3 );
290
 
291
 
292
+
293
+ /*-----------------------------------------------------------------------------------*/
294
+ /* Define demo info list / for auxin-element plugin
295
+ /*-----------------------------------------------------------------------------------*/
296
+
297
+ /**
298
+ * Retrieves the list of available demos for current theme
299
+ *
300
+ * @return array List of demos
301
+ */
302
+ function auxels_add_to_demo_info_list( $default_demos ){
303
+
304
+ $demos_list = array(
305
+ 'the-journey' => array(
306
+ 'id' => 'the-journey',
307
+ 'title' => __('The Journey', THEME_DOMAIN),
308
+ 'desc' => __('Create your awesome Journey Website using this demo as a starter. Best choice for adventure looks.', THEME_DOMAIN),
309
+ 'preview_url' => 'http://averta.net/phlox/demo/journey/',
310
+ 'thumb_url' => AUXELS_URL . '/embeds/demos/journey-blog/banner.jpg',
311
+ 'file' => AUXELS_DIR . '/embeds/demos/journey-blog/data.xml'
312
+ ),
313
+ 'classic-blog' => array(
314
+ 'id' => 'classic-blog',
315
+ 'title' => __('Classic Blog', THEME_DOMAIN),
316
+ 'desc' => __('Create your classic good looking Blog using this demo as a starter. Best choice for a classic blogger.', THEME_DOMAIN),
317
+ 'preview_url' => 'http://averta.net/phlox/demo/classic-blog/',
318
+ 'thumb_url' => AUXELS_URL . '/embeds/demos/classic-blog/banner.jpg',
319
+ 'file' => AUXELS_DIR . '/embeds/demos/classic-blog/data.xml'
320
+ ),
321
+ 'food-blog' => array(
322
+ 'id' => 'food-blog',
323
+ 'title' => __('Food Blog', THEME_DOMAIN),
324
+ 'desc' => __('Create your awesome Food Website using this demo as a starter. Best choice for restaurant looks.', THEME_DOMAIN),
325
+ 'preview_url' => 'http://averta.net/phlox/demo/food/',
326
+ 'thumb_url' => AUXELS_URL . '/embeds/demos/food-blog/banner.jpg',
327
+ 'file' => AUXELS_DIR . '/embeds/demos/food-blog/data.xml'
328
+ ),
329
+ 'portfolio' => array(
330
+ 'id' => 'portfolio',
331
+ 'title' => __('Protfolio', THEME_DOMAIN),
332
+ 'desc' => __('A stunning demo for Phlox portfolio that represents your projects in a modern and stylish way.', THEME_DOMAIN),
333
+ 'preview_url' => 'http://averta.net/phlox/demo/portfolio/',
334
+ 'thumb_url' => AUXELS_URL . '/embeds/demos/portfolio/banner.jpg',
335
+ 'file' => AUXELS_DIR . '/embeds/demos/food-blog/data.xml'
336
+ ),
337
+ 'default' => array(
338
+ 'id' => 'default',
339
+ 'title' => __('Default', THEME_DOMAIN),
340
+ 'desc' => __('An excellent example to get familiar with all available layouts, elements, shortcodes and other features of Phlox.', THEME_DOMAIN),
341
+ 'preview_url' => 'http://averta.net/phlox/demo/default/',
342
+ 'thumb_url' => AUXELS_URL . '/embeds/demos/default/banner.jpg',
343
+ 'file' => AUXELS_DIR . '/embeds/demos/default/data.xml'
344
+ )
345
+ );
346
+
347
+ return array_merge( $default_demos, $demos_list );
348
+ }
349
+
350
+ add_filter( 'auxin_get_demo_info_list', 'auxels_add_to_demo_info_list' );
351
+
352
  /*-----------------------------------------------------------------------------------*/
353
  /* Adding fallback for deprecated theme option name
354
  /*-----------------------------------------------------------------------------------*/
auxin-elements.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Powerful and comprehensive plugin that extends the functionality of Phlox theme by adding new shortcodes, widgets and options
15
- * Version: 1.4.1
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Powerful and comprehensive plugin that extends the functionality of Phlox theme by adding new shortcodes, widgets and options
15
+ * Version: 1.4.2
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
embeds/demos/classic-blog/banner.jpg ADDED
Binary file
embeds/demos/classic-blog/data.xml ADDED
@@ -0,0 +1,8083 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
3
+ <!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
4
+ <!-- You may use this file to transfer that content from one site to another. -->
5
+ <!-- This file is not intended to serve as a complete backup of your site. -->
6
+
7
+ <!-- To import this information into a WordPress site follow these steps: -->
8
+ <!-- 1. Log in to that site as an administrator. -->
9
+ <!-- 2. Go to Tools: Import in the WordPress admin panel. -->
10
+ <!-- 3. Install the "WordPress" importer from the list. -->
11
+ <!-- 4. Activate & Run Importer. -->
12
+ <!-- 5. Upload this file using the form provided on that page. -->
13
+ <!-- 6. You will first be asked to map the authors in this export file to users -->
14
+ <!-- on the site. For each author, you may choose to map to an -->
15
+ <!-- existing user on the site or to create a new user. -->
16
+ <!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
17
+ <!-- contained in this file into your site. -->
18
+
19
+ <!-- generator="WordPress/4.6.1" created="2016-09-19 06:42" -->
20
+ <rss version="2.0"
21
+ xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
22
+ xmlns:content="http://purl.org/rss/1.0/modules/content/"
23
+ xmlns:wfw="http://wellformedweb.org/CommentAPI/"
24
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
25
+ xmlns:wp="http://wordpress.org/export/1.2/"
26
+ >
27
+
28
+ <channel>
29
+ <title>Classic Blog</title>
30
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog</link>
31
+ <description>Phlox Free WP Theme - Blog Demo Site</description>
32
+ <pubDate>Mon, 19 Sep 2016 06:42:21 +0000</pubDate>
33
+ <language>en-US</language>
34
+ <wp:wxr_version>1.2</wp:wxr_version>
35
+ <wp:base_site_url>http://averta.net/phlox/wordpress-theme/demo/</wp:base_site_url>
36
+ <wp:base_blog_url>http://averta.net/phlox/wordpress-theme/demo/classic-blog</wp:base_blog_url>
37
+
38
+ <wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[info@averta.net]]></wp:author_email><wp:author_display_name><![CDATA[admin]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
39
+
40
+ <wp:category>
41
+ <wp:term_id>2</wp:term_id>
42
+ <wp:category_nicename><![CDATA[art]]></wp:category_nicename>
43
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
44
+ <wp:cat_name><![CDATA[Art]]></wp:cat_name>
45
+ </wp:category>
46
+ <wp:category>
47
+ <wp:term_id>3</wp:term_id>
48
+ <wp:category_nicename><![CDATA[culture]]></wp:category_nicename>
49
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
50
+ <wp:cat_name><![CDATA[Culture]]></wp:cat_name>
51
+ </wp:category>
52
+ <wp:category>
53
+ <wp:term_id>4</wp:term_id>
54
+ <wp:category_nicename><![CDATA[gadgets]]></wp:category_nicename>
55
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
56
+ <wp:cat_name><![CDATA[Gadgets]]></wp:cat_name>
57
+ </wp:category>
58
+ <wp:category>
59
+ <wp:term_id>5</wp:term_id>
60
+ <wp:category_nicename><![CDATA[life-style]]></wp:category_nicename>
61
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
62
+ <wp:cat_name><![CDATA[Life style]]></wp:cat_name>
63
+ </wp:category>
64
+ <wp:category>
65
+ <wp:term_id>6</wp:term_id>
66
+ <wp:category_nicename><![CDATA[music]]></wp:category_nicename>
67
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
68
+ <wp:cat_name><![CDATA[Music]]></wp:cat_name>
69
+ </wp:category>
70
+ <wp:category>
71
+ <wp:term_id>7</wp:term_id>
72
+ <wp:category_nicename><![CDATA[people]]></wp:category_nicename>
73
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
74
+ <wp:cat_name><![CDATA[People]]></wp:cat_name>
75
+ </wp:category>
76
+ <wp:category>
77
+ <wp:term_id>8</wp:term_id>
78
+ <wp:category_nicename><![CDATA[post-formats]]></wp:category_nicename>
79
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
80
+ <wp:cat_name><![CDATA[Post Formats]]></wp:cat_name>
81
+ </wp:category>
82
+ <wp:category>
83
+ <wp:term_id>9</wp:term_id>
84
+ <wp:category_nicename><![CDATA[social]]></wp:category_nicename>
85
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
86
+ <wp:cat_name><![CDATA[Social]]></wp:cat_name>
87
+ </wp:category>
88
+ <wp:category>
89
+ <wp:term_id>10</wp:term_id>
90
+ <wp:category_nicename><![CDATA[technology]]></wp:category_nicename>
91
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
92
+ <wp:cat_name><![CDATA[Technology]]></wp:cat_name>
93
+ </wp:category>
94
+ <wp:category>
95
+ <wp:term_id>11</wp:term_id>
96
+ <wp:category_nicename><![CDATA[travel]]></wp:category_nicename>
97
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
98
+ <wp:cat_name><![CDATA[Travel]]></wp:cat_name>
99
+ </wp:category>
100
+ <wp:category>
101
+ <wp:term_id>1</wp:term_id>
102
+ <wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
103
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
104
+ <wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
105
+ </wp:category>
106
+ <wp:tag>
107
+ <wp:term_id>12</wp:term_id>
108
+ <wp:tag_slug><![CDATA[anniversary]]></wp:tag_slug>
109
+ <wp:tag_name><![CDATA[Anniversary]]></wp:tag_name>
110
+ </wp:tag>
111
+ <wp:tag>
112
+ <wp:term_id>13</wp:term_id>
113
+ <wp:tag_slug><![CDATA[architecture]]></wp:tag_slug>
114
+ <wp:tag_name><![CDATA[Architecture]]></wp:tag_name>
115
+ </wp:tag>
116
+ <wp:tag>
117
+ <wp:term_id>14</wp:term_id>
118
+ <wp:tag_slug><![CDATA[article]]></wp:tag_slug>
119
+ <wp:tag_name><![CDATA[Article]]></wp:tag_name>
120
+ </wp:tag>
121
+ <wp:tag>
122
+ <wp:term_id>15</wp:term_id>
123
+ <wp:tag_slug><![CDATA[blogging]]></wp:tag_slug>
124
+ <wp:tag_name><![CDATA[Blogging]]></wp:tag_name>
125
+ </wp:tag>
126
+ <wp:tag>
127
+ <wp:term_id>16</wp:term_id>
128
+ <wp:tag_slug><![CDATA[challenge]]></wp:tag_slug>
129
+ <wp:tag_name><![CDATA[Challenge]]></wp:tag_name>
130
+ </wp:tag>
131
+ <wp:tag>
132
+ <wp:term_id>17</wp:term_id>
133
+ <wp:tag_slug><![CDATA[city]]></wp:tag_slug>
134
+ <wp:tag_name><![CDATA[City]]></wp:tag_name>
135
+ </wp:tag>
136
+ <wp:tag>
137
+ <wp:term_id>18</wp:term_id>
138
+ <wp:tag_slug><![CDATA[communication]]></wp:tag_slug>
139
+ <wp:tag_name><![CDATA[Communication]]></wp:tag_name>
140
+ </wp:tag>
141
+ <wp:tag>
142
+ <wp:term_id>19</wp:term_id>
143
+ <wp:tag_slug><![CDATA[creativity]]></wp:tag_slug>
144
+ <wp:tag_name><![CDATA[Creativity]]></wp:tag_name>
145
+ </wp:tag>
146
+ <wp:tag>
147
+ <wp:term_id>20</wp:term_id>
148
+ <wp:tag_slug><![CDATA[fashion]]></wp:tag_slug>
149
+ <wp:tag_name><![CDATA[Fashion]]></wp:tag_name>
150
+ </wp:tag>
151
+ <wp:tag>
152
+ <wp:term_id>21</wp:term_id>
153
+ <wp:tag_slug><![CDATA[grand-bridge]]></wp:tag_slug>
154
+ <wp:tag_name><![CDATA[Grand Bridge]]></wp:tag_name>
155
+ </wp:tag>
156
+ <wp:tag>
157
+ <wp:term_id>22</wp:term_id>
158
+ <wp:tag_slug><![CDATA[happiness]]></wp:tag_slug>
159
+ <wp:tag_name><![CDATA[Happiness]]></wp:tag_name>
160
+ </wp:tag>
161
+ <wp:tag>
162
+ <wp:term_id>23</wp:term_id>
163
+ <wp:tag_slug><![CDATA[home-plants]]></wp:tag_slug>
164
+ <wp:tag_name><![CDATA[Home Plants]]></wp:tag_name>
165
+ </wp:tag>
166
+ <wp:tag>
167
+ <wp:term_id>24</wp:term_id>
168
+ <wp:tag_slug><![CDATA[journalism]]></wp:tag_slug>
169
+ <wp:tag_name><![CDATA[Journalism]]></wp:tag_name>
170
+ </wp:tag>
171
+ <wp:tag>
172
+ <wp:term_id>25</wp:term_id>
173
+ <wp:tag_slug><![CDATA[marketing]]></wp:tag_slug>
174
+ <wp:tag_name><![CDATA[Marketing]]></wp:tag_name>
175
+ </wp:tag>
176
+ <wp:tag>
177
+ <wp:term_id>26</wp:term_id>
178
+ <wp:tag_slug><![CDATA[media]]></wp:tag_slug>
179
+ <wp:tag_name><![CDATA[Media]]></wp:tag_name>
180
+ </wp:tag>
181
+ <wp:tag>
182
+ <wp:term_id>27</wp:term_id>
183
+ <wp:tag_slug><![CDATA[modern-music]]></wp:tag_slug>
184
+ <wp:tag_name><![CDATA[Modern Music]]></wp:tag_name>
185
+ </wp:tag>
186
+ <wp:tag>
187
+ <wp:term_id>28</wp:term_id>
188
+ <wp:tag_slug><![CDATA[modern-technology]]></wp:tag_slug>
189
+ <wp:tag_name><![CDATA[Modern Technology]]></wp:tag_name>
190
+ </wp:tag>
191
+ <wp:tag>
192
+ <wp:term_id>29</wp:term_id>
193
+ <wp:tag_slug><![CDATA[motion-graphics]]></wp:tag_slug>
194
+ <wp:tag_name><![CDATA[Motion Graphics]]></wp:tag_name>
195
+ </wp:tag>
196
+ <wp:tag>
197
+ <wp:term_id>30</wp:term_id>
198
+ <wp:tag_slug><![CDATA[mountain]]></wp:tag_slug>
199
+ <wp:tag_name><![CDATA[Mountain]]></wp:tag_name>
200
+ </wp:tag>
201
+ <wp:tag>
202
+ <wp:term_id>31</wp:term_id>
203
+ <wp:tag_slug><![CDATA[nature]]></wp:tag_slug>
204
+ <wp:tag_name><![CDATA[Nature]]></wp:tag_name>
205
+ </wp:tag>
206
+ <wp:tag>
207
+ <wp:term_id>32</wp:term_id>
208
+ <wp:tag_slug><![CDATA[new-year]]></wp:tag_slug>
209
+ <wp:tag_name><![CDATA[New Year]]></wp:tag_name>
210
+ </wp:tag>
211
+ <wp:tag>
212
+ <wp:term_id>33</wp:term_id>
213
+ <wp:tag_slug><![CDATA[outdoor]]></wp:tag_slug>
214
+ <wp:tag_name><![CDATA[Outdoor]]></wp:tag_name>
215
+ </wp:tag>
216
+ <wp:tag>
217
+ <wp:term_id>34</wp:term_id>
218
+ <wp:tag_slug><![CDATA[people]]></wp:tag_slug>
219
+ <wp:tag_name><![CDATA[People]]></wp:tag_name>
220
+ </wp:tag>
221
+ <wp:tag>
222
+ <wp:term_id>35</wp:term_id>
223
+ <wp:tag_slug><![CDATA[photography]]></wp:tag_slug>
224
+ <wp:tag_name><![CDATA[Photography]]></wp:tag_name>
225
+ </wp:tag>
226
+ <wp:tag>
227
+ <wp:term_id>36</wp:term_id>
228
+ <wp:tag_slug><![CDATA[productivity]]></wp:tag_slug>
229
+ <wp:tag_name><![CDATA[Productivity]]></wp:tag_name>
230
+ </wp:tag>
231
+ <wp:tag>
232
+ <wp:term_id>37</wp:term_id>
233
+ <wp:tag_slug><![CDATA[sea]]></wp:tag_slug>
234
+ <wp:tag_name><![CDATA[Sea]]></wp:tag_name>
235
+ </wp:tag>
236
+ <wp:tag>
237
+ <wp:term_id>38</wp:term_id>
238
+ <wp:tag_slug><![CDATA[tips-and-tricks]]></wp:tag_slug>
239
+ <wp:tag_name><![CDATA[Tips and Tricks]]></wp:tag_name>
240
+ </wp:tag>
241
+ <wp:tag>
242
+ <wp:term_id>39</wp:term_id>
243
+ <wp:tag_slug><![CDATA[tour]]></wp:tag_slug>
244
+ <wp:tag_name><![CDATA[Tour]]></wp:tag_name>
245
+ </wp:tag>
246
+ <wp:term>
247
+ <wp:term_id><![CDATA[12]]></wp:term_id>
248
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
249
+ <wp:term_slug><![CDATA[anniversary]]></wp:term_slug>
250
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
251
+ <wp:term_name><![CDATA[Anniversary]]></wp:term_name>
252
+ </wp:term>
253
+ <wp:term>
254
+ <wp:term_id><![CDATA[13]]></wp:term_id>
255
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
256
+ <wp:term_slug><![CDATA[architecture]]></wp:term_slug>
257
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
258
+ <wp:term_name><![CDATA[Architecture]]></wp:term_name>
259
+ </wp:term>
260
+ <wp:term>
261
+ <wp:term_id><![CDATA[2]]></wp:term_id>
262
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
263
+ <wp:term_slug><![CDATA[art]]></wp:term_slug>
264
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
265
+ <wp:term_name><![CDATA[Art]]></wp:term_name>
266
+ </wp:term>
267
+ <wp:term>
268
+ <wp:term_id><![CDATA[14]]></wp:term_id>
269
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
270
+ <wp:term_slug><![CDATA[article]]></wp:term_slug>
271
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
272
+ <wp:term_name><![CDATA[Article]]></wp:term_name>
273
+ </wp:term>
274
+ <wp:term>
275
+ <wp:term_id><![CDATA[15]]></wp:term_id>
276
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
277
+ <wp:term_slug><![CDATA[blogging]]></wp:term_slug>
278
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
279
+ <wp:term_name><![CDATA[Blogging]]></wp:term_name>
280
+ </wp:term>
281
+ <wp:term>
282
+ <wp:term_id><![CDATA[16]]></wp:term_id>
283
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
284
+ <wp:term_slug><![CDATA[challenge]]></wp:term_slug>
285
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
286
+ <wp:term_name><![CDATA[Challenge]]></wp:term_name>
287
+ </wp:term>
288
+ <wp:term>
289
+ <wp:term_id><![CDATA[17]]></wp:term_id>
290
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
291
+ <wp:term_slug><![CDATA[city]]></wp:term_slug>
292
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
293
+ <wp:term_name><![CDATA[City]]></wp:term_name>
294
+ </wp:term>
295
+ <wp:term>
296
+ <wp:term_id><![CDATA[18]]></wp:term_id>
297
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
298
+ <wp:term_slug><![CDATA[communication]]></wp:term_slug>
299
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
300
+ <wp:term_name><![CDATA[Communication]]></wp:term_name>
301
+ </wp:term>
302
+ <wp:term>
303
+ <wp:term_id><![CDATA[19]]></wp:term_id>
304
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
305
+ <wp:term_slug><![CDATA[creativity]]></wp:term_slug>
306
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
307
+ <wp:term_name><![CDATA[Creativity]]></wp:term_name>
308
+ </wp:term>
309
+ <wp:term>
310
+ <wp:term_id><![CDATA[3]]></wp:term_id>
311
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
312
+ <wp:term_slug><![CDATA[culture]]></wp:term_slug>
313
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
314
+ <wp:term_name><![CDATA[Culture]]></wp:term_name>
315
+ </wp:term>
316
+ <wp:term>
317
+ <wp:term_id><![CDATA[20]]></wp:term_id>
318
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
319
+ <wp:term_slug><![CDATA[fashion]]></wp:term_slug>
320
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
321
+ <wp:term_name><![CDATA[Fashion]]></wp:term_name>
322
+ </wp:term>
323
+ <wp:term>
324
+ <wp:term_id><![CDATA[4]]></wp:term_id>
325
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
326
+ <wp:term_slug><![CDATA[gadgets]]></wp:term_slug>
327
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
328
+ <wp:term_name><![CDATA[Gadgets]]></wp:term_name>
329
+ </wp:term>
330
+ <wp:term>
331
+ <wp:term_id><![CDATA[21]]></wp:term_id>
332
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
333
+ <wp:term_slug><![CDATA[grand-bridge]]></wp:term_slug>
334
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
335
+ <wp:term_name><![CDATA[Grand Bridge]]></wp:term_name>
336
+ </wp:term>
337
+ <wp:term>
338
+ <wp:term_id><![CDATA[22]]></wp:term_id>
339
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
340
+ <wp:term_slug><![CDATA[happiness]]></wp:term_slug>
341
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
342
+ <wp:term_name><![CDATA[Happiness]]></wp:term_name>
343
+ </wp:term>
344
+ <wp:term>
345
+ <wp:term_id><![CDATA[40]]></wp:term_id>
346
+ <wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy>
347
+ <wp:term_slug><![CDATA[header-menu]]></wp:term_slug>
348
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
349
+ <wp:term_name><![CDATA[Header Menu]]></wp:term_name>
350
+ </wp:term>
351
+ <wp:term>
352
+ <wp:term_id><![CDATA[23]]></wp:term_id>
353
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
354
+ <wp:term_slug><![CDATA[home-plants]]></wp:term_slug>
355
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
356
+ <wp:term_name><![CDATA[Home Plants]]></wp:term_name>
357
+ </wp:term>
358
+ <wp:term>
359
+ <wp:term_id><![CDATA[24]]></wp:term_id>
360
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
361
+ <wp:term_slug><![CDATA[journalism]]></wp:term_slug>
362
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
363
+ <wp:term_name><![CDATA[Journalism]]></wp:term_name>
364
+ </wp:term>
365
+ <wp:term>
366
+ <wp:term_id><![CDATA[5]]></wp:term_id>
367
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
368
+ <wp:term_slug><![CDATA[life-style]]></wp:term_slug>
369
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
370
+ <wp:term_name><![CDATA[Life style]]></wp:term_name>
371
+ </wp:term>
372
+ <wp:term>
373
+ <wp:term_id><![CDATA[25]]></wp:term_id>
374
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
375
+ <wp:term_slug><![CDATA[marketing]]></wp:term_slug>
376
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
377
+ <wp:term_name><![CDATA[Marketing]]></wp:term_name>
378
+ </wp:term>
379
+ <wp:term>
380
+ <wp:term_id><![CDATA[26]]></wp:term_id>
381
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
382
+ <wp:term_slug><![CDATA[media]]></wp:term_slug>
383
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
384
+ <wp:term_name><![CDATA[Media]]></wp:term_name>
385
+ </wp:term>
386
+ <wp:term>
387
+ <wp:term_id><![CDATA[27]]></wp:term_id>
388
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
389
+ <wp:term_slug><![CDATA[modern-music]]></wp:term_slug>
390
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
391
+ <wp:term_name><![CDATA[Modern Music]]></wp:term_name>
392
+ </wp:term>
393
+ <wp:term>
394
+ <wp:term_id><![CDATA[28]]></wp:term_id>
395
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
396
+ <wp:term_slug><![CDATA[modern-technology]]></wp:term_slug>
397
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
398
+ <wp:term_name><![CDATA[Modern Technology]]></wp:term_name>
399
+ </wp:term>
400
+ <wp:term>
401
+ <wp:term_id><![CDATA[29]]></wp:term_id>
402
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
403
+ <wp:term_slug><![CDATA[motion-graphics]]></wp:term_slug>
404
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
405
+ <wp:term_name><![CDATA[Motion Graphics]]></wp:term_name>
406
+ </wp:term>
407
+ <wp:term>
408
+ <wp:term_id><![CDATA[30]]></wp:term_id>
409
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
410
+ <wp:term_slug><![CDATA[mountain]]></wp:term_slug>
411
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
412
+ <wp:term_name><![CDATA[Mountain]]></wp:term_name>
413
+ </wp:term>
414
+ <wp:term>
415
+ <wp:term_id><![CDATA[6]]></wp:term_id>
416
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
417
+ <wp:term_slug><![CDATA[music]]></wp:term_slug>
418
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
419
+ <wp:term_name><![CDATA[Music]]></wp:term_name>
420
+ </wp:term>
421
+ <wp:term>
422
+ <wp:term_id><![CDATA[31]]></wp:term_id>
423
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
424
+ <wp:term_slug><![CDATA[nature]]></wp:term_slug>
425
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
426
+ <wp:term_name><![CDATA[Nature]]></wp:term_name>
427
+ </wp:term>
428
+ <wp:term>
429
+ <wp:term_id><![CDATA[32]]></wp:term_id>
430
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
431
+ <wp:term_slug><![CDATA[new-year]]></wp:term_slug>
432
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
433
+ <wp:term_name><![CDATA[New Year]]></wp:term_name>
434
+ </wp:term>
435
+ <wp:term>
436
+ <wp:term_id><![CDATA[33]]></wp:term_id>
437
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
438
+ <wp:term_slug><![CDATA[outdoor]]></wp:term_slug>
439
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
440
+ <wp:term_name><![CDATA[Outdoor]]></wp:term_name>
441
+ </wp:term>
442
+ <wp:term>
443
+ <wp:term_id><![CDATA[7]]></wp:term_id>
444
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
445
+ <wp:term_slug><![CDATA[people]]></wp:term_slug>
446
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
447
+ <wp:term_name><![CDATA[People]]></wp:term_name>
448
+ </wp:term>
449
+ <wp:term>
450
+ <wp:term_id><![CDATA[34]]></wp:term_id>
451
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
452
+ <wp:term_slug><![CDATA[people]]></wp:term_slug>
453
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
454
+ <wp:term_name><![CDATA[People]]></wp:term_name>
455
+ </wp:term>
456
+ <wp:term>
457
+ <wp:term_id><![CDATA[35]]></wp:term_id>
458
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
459
+ <wp:term_slug><![CDATA[photography]]></wp:term_slug>
460
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
461
+ <wp:term_name><![CDATA[Photography]]></wp:term_name>
462
+ </wp:term>
463
+ <wp:term>
464
+ <wp:term_id><![CDATA[8]]></wp:term_id>
465
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
466
+ <wp:term_slug><![CDATA[post-formats]]></wp:term_slug>
467
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
468
+ <wp:term_name><![CDATA[Post Formats]]></wp:term_name>
469
+ </wp:term>
470
+ <wp:term>
471
+ <wp:term_id><![CDATA[41]]></wp:term_id>
472
+ <wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>
473
+ <wp:term_slug><![CDATA[post-format-aside]]></wp:term_slug>
474
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
475
+ <wp:term_name><![CDATA[post-format-aside]]></wp:term_name>
476
+ </wp:term>
477
+ <wp:term>
478
+ <wp:term_id><![CDATA[42]]></wp:term_id>
479
+ <wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>
480
+ <wp:term_slug><![CDATA[post-format-audio]]></wp:term_slug>
481
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
482
+ <wp:term_name><![CDATA[post-format-audio]]></wp:term_name>
483
+ </wp:term>
484
+ <wp:term>
485
+ <wp:term_id><![CDATA[43]]></wp:term_id>
486
+ <wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>
487
+ <wp:term_slug><![CDATA[post-format-gallery]]></wp:term_slug>
488
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
489
+ <wp:term_name><![CDATA[post-format-gallery]]></wp:term_name>
490
+ </wp:term>
491
+ <wp:term>
492
+ <wp:term_id><![CDATA[44]]></wp:term_id>
493
+ <wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>
494
+ <wp:term_slug><![CDATA[post-format-image]]></wp:term_slug>
495
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
496
+ <wp:term_name><![CDATA[post-format-image]]></wp:term_name>
497
+ </wp:term>
498
+ <wp:term>
499
+ <wp:term_id><![CDATA[45]]></wp:term_id>
500
+ <wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>
501
+ <wp:term_slug><![CDATA[post-format-link]]></wp:term_slug>
502
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
503
+ <wp:term_name><![CDATA[post-format-link]]></wp:term_name>
504
+ </wp:term>
505
+ <wp:term>
506
+ <wp:term_id><![CDATA[46]]></wp:term_id>
507
+ <wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>
508
+ <wp:term_slug><![CDATA[post-format-quote]]></wp:term_slug>
509
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
510
+ <wp:term_name><![CDATA[post-format-quote]]></wp:term_name>
511
+ </wp:term>
512
+ <wp:term>
513
+ <wp:term_id><![CDATA[47]]></wp:term_id>
514
+ <wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>
515
+ <wp:term_slug><![CDATA[post-format-video]]></wp:term_slug>
516
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
517
+ <wp:term_name><![CDATA[post-format-video]]></wp:term_name>
518
+ </wp:term>
519
+ <wp:term>
520
+ <wp:term_id><![CDATA[36]]></wp:term_id>
521
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
522
+ <wp:term_slug><![CDATA[productivity]]></wp:term_slug>
523
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
524
+ <wp:term_name><![CDATA[Productivity]]></wp:term_name>
525
+ </wp:term>
526
+ <wp:term>
527
+ <wp:term_id><![CDATA[37]]></wp:term_id>
528
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
529
+ <wp:term_slug><![CDATA[sea]]></wp:term_slug>
530
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
531
+ <wp:term_name><![CDATA[Sea]]></wp:term_name>
532
+ </wp:term>
533
+ <wp:term>
534
+ <wp:term_id><![CDATA[9]]></wp:term_id>
535
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
536
+ <wp:term_slug><![CDATA[social]]></wp:term_slug>
537
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
538
+ <wp:term_name><![CDATA[Social]]></wp:term_name>
539
+ </wp:term>
540
+ <wp:term>
541
+ <wp:term_id><![CDATA[10]]></wp:term_id>
542
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
543
+ <wp:term_slug><![CDATA[technology]]></wp:term_slug>
544
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
545
+ <wp:term_name><![CDATA[Technology]]></wp:term_name>
546
+ </wp:term>
547
+ <wp:term>
548
+ <wp:term_id><![CDATA[38]]></wp:term_id>
549
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
550
+ <wp:term_slug><![CDATA[tips-and-tricks]]></wp:term_slug>
551
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
552
+ <wp:term_name><![CDATA[Tips and Tricks]]></wp:term_name>
553
+ </wp:term>
554
+ <wp:term>
555
+ <wp:term_id><![CDATA[39]]></wp:term_id>
556
+ <wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
557
+ <wp:term_slug><![CDATA[tour]]></wp:term_slug>
558
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
559
+ <wp:term_name><![CDATA[Tour]]></wp:term_name>
560
+ </wp:term>
561
+ <wp:term>
562
+ <wp:term_id><![CDATA[11]]></wp:term_id>
563
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
564
+ <wp:term_slug><![CDATA[travel]]></wp:term_slug>
565
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
566
+ <wp:term_name><![CDATA[Travel]]></wp:term_name>
567
+ </wp:term>
568
+ <wp:term>
569
+ <wp:term_id><![CDATA[1]]></wp:term_id>
570
+ <wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
571
+ <wp:term_slug><![CDATA[uncategorized]]></wp:term_slug>
572
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
573
+ <wp:term_name><![CDATA[Uncategorized]]></wp:term_name>
574
+ </wp:term>
575
+ <wp:term><wp:term_id>40</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[header-menu]]></wp:term_slug><wp:term_name><![CDATA[Header Menu]]></wp:term_name>
576
+ </wp:term>
577
+
578
+ <generator>https://wordpress.org/?v=4.6.1</generator>
579
+ <wp:option>
580
+ <wp:option_key><![CDATA[formatted_options]]></wp:option_key>
581
+ <wp:option_value><![CDATA[a:151:{s:17:"site_wrapper_size";s:4:"full";s:21:"site_max_width_layout";s:2:"hd";s:15:"site_logo_image";s:3:"110";s:18:"site_logo_image_2x";s:3:"111";s:17:"header_logo_width";s:3:"200";s:8:"facebook";s:1:"#";s:7:"twitter";s:1:"#";s:10:"googleplus";s:0:"";s:8:"dribbble";s:0:"";s:7:"youtube";s:1:"#";s:5:"vimeo";s:0:"";s:6:"flickr";s:0:"";s:4:"digg";s:0:"";s:11:"stumbleupon";s:0:"";s:6:"lastfm";s:0:"";s:9:"delicious";s:0:"";s:5:"skype";s:0:"";s:8:"linkedin";s:0:"";s:6:"tumblr";s:1:"#";s:9:"pinterest";s:1:"#";s:9:"instagram";s:1:"#";s:3:"rss";s:0:"";s:21:"auxin_user_custom_css";s:0:"";s:25:"site_body_background_show";s:1:"1";s:26:"site_body_background_color";s:0:"";s:26:"site_body_background_image";s:0:"";s:25:"site_body_background_size";s:4:"auto";s:28:"site_body_background_pattern";s:0:"";s:27:"site_body_background_repeat";s:9:"no-repeat";s:29:"site_body_background_position";s:8:"left top";s:27:"site_body_background_attach";s:6:"scroll";s:29:"site_content_background_color";s:0:"";s:24:"enable_custom_typography";s:1:"1";s:18:"content_typography";s:20:"_gof_Raleway:regular";s:21:"main_title_typography";s:19:"_gof_Domine:regular";s:21:"page_title_typography";s:20:"_gof_Raleway:regular";s:22:"header_menu_typography";s:20:"_gof_Raleway:regular";s:19:"include_latin_chars";s:0:"";s:24:"global_video_player_skin";s:4:"dark";s:24:"global_audio_player_skin";s:4:"dark";s:22:"site_header_top_layout";s:21:"horizontal-menu-right";s:25:"site_header_search_button";s:0:"";s:17:"site_header_width";s:5:"boxed";s:28:"site_header_container_height";s:3:"150";s:25:"site_header_border_bottom";s:1:"1";s:22:"site_header_top_sticky";s:1:"1";s:35:"site_header_container_scaled_height";s:2:"90";s:26:"site_header_logo_can_scale";s:1:"1";s:31:"site_header_navigation_sub_skin";s:7:"classic";s:33:"site_header_navigation_sub_effect";s:0:"";s:37:"site_header_navigation_with_indicator";s:1:"1";s:36:"site_header_navigation_with_splitter";s:1:"1";s:35:"site_header_navigation_sub_location";s:7:"default";s:34:"site_header_navigation_item_height";s:2:"60";s:38:"site_mobile_header_toggle_button_color";s:7:"#3d3d3d";s:32:"site_header_mobile_menu_position";s:10:"toggle-bar";s:43:"site_header_mobile_menu_offcanvas_alignment";s:4:"left";s:28:"site_header_mobile_menu_type";s:6:"toggle";s:26:"site_menu_full_screen_skin";s:0:"";s:38:"site_menu_full_screen_background_color";s:25:"rgba(255, 255, 255, 0.95)";s:38:"site_menu_full_screen_background_image";s:0:"";s:14:"show_topheader";b:0;s:22:"site_top_header_layout";s:10:"topheader2";s:32:"site_top_header_background_color";s:0:"";s:17:"topheader_message";s:0:"";s:29:"header_fullscreen_search_skin";s:0:"";s:28:"post_single_sidebar_position";s:13:"right-sidebar";s:30:"post_single_sidebar_decoration";s:6:"border";s:27:"post_single_title_alignment";s:7:"default";s:24:"show_blog_author_section";s:1:"1";s:29:"show_blog_author_section_text";s:1:"1";s:31:"show_blog_author_section_social";s:1:"1";s:24:"post_index_template_type";s:7:"default";s:27:"post_index_sidebar_position";s:13:"right-sidebar";s:29:"post_index_sidebar_decoration";s:6:"border";s:23:"blog_content_on_listing";s:7:"excerpt";s:30:"blog_content_on_listing_length";s:3:"255";s:24:"post_archive_slider_show";s:1:"1";s:28:"post_archive_slider_location";s:5:"block";s:30:"post_archive_slider_slides_num";s:2:"10";s:27:"post_archive_slider_exclude";s:0:"";s:27:"post_archive_slider_include";s:15:"101, 86, 84, 82";s:26:"post_archive_slider_offset";s:0:"";s:28:"post_archive_slider_order_by";s:4:"date";s:29:"post_archive_slider_order_dir";s:4:"DESC";s:24:"post_archive_slider_skin";s:14:"aux-light-skin";s:29:"post_archive_slider_add_title";s:1:"1";s:28:"post_archive_slider_add_meta";s:1:"1";s:30:"post_archive_slider_image_from";s:4:"auto";s:32:"post_archive_slider_custom_image";s:0:"";s:42:"post_archive_slider_exclude_without_images";s:1:"1";s:25:"post_archive_slider_width";s:3:"960";s:26:"post_archive_slider_height";s:3:"560";s:26:"post_archive_slider_arrows";s:0:"";s:25:"post_archive_slider_space";s:1:"5";s:24:"post_archive_slider_loop";s:1:"1";s:29:"post_archive_slider_slideshow";s:0:"";s:35:"post_archive_slider_slideshow_delay";s:1:"2";s:35:"post_taxonomy_archive_template_type";s:7:"default";s:38:"post_taxonomy_archive_sidebar_position";s:13:"right-sidebar";s:40:"post_taxonomy_archive_sidebar_decoration";s:6:"border";s:40:"post_taxonomy_archive_content_on_listing";s:7:"excerpt";s:39:"post_taxonomy_archive_on_listing_length";s:3:"255";s:31:"product_single_sidebar_position";s:13:"right-sidebar";s:33:"product_single_sidebar_decoration";s:6:"border";s:30:"product_index_sidebar_position";s:13:"right-sidebar";s:32:"product_index_sidebar_decoration";s:6:"border";s:33:"product_category_sidebar_position";s:13:"right-sidebar";s:35:"product_category_sidebar_decoration";s:6:"border";s:18:"show_subfooter_bar";s:1:"1";s:20:"subfooter_bar_layout";s:18:"vertical-none-full";s:29:"subfooter_bar_layout_bg_color";s:0:"";s:14:"show_subfooter";b:1;s:16:"subfooter_layout";s:15:"1-4_1-4_1-4_1-4";s:25:"subfooter_layout_bg_color";s:0:"";s:16:"show_site_footer";s:1:"1";s:25:"site_secondary_logo_image";s:0:"";s:30:"site_secondary_logo_max_height";s:2:"40";s:29:"site_footer_components_layout";s:14:"footer_preset4";s:9:"copyright";s:36:"© 2016 Company. All rights reserved";s:20:"auxin_import_options";s:0:"";s:20:"auxin_export_options";s:0:"";s:17:"show_goto_top_btn";s:1:"1";s:16:"goto_top_animate";s:1:"1";s:18:"goto_top_alignment";s:5:"right";s:20:"auxin_user_custom_js";s:0:"";s:16:"enable_theme_seo";s:1:"1";s:27:"auxin_user_google_analytics";s:0:"";s:27:"auxin_user_google_marketing";s:0:"";s:16:"auxin_login_skin";s:7:"default";s:19:"auxin_login_message";s:0:"";s:22:"auxin_login_logo_image";s:0:"";s:22:"auxin_login_logo_width";s:2:"84";s:23:"auxin_login_logo_height";s:2:"84";s:19:"auxin_login_bg_show";s:0:"";s:20:"auxin_login_bg_color";s:0:"";s:20:"auxin_login_bg_image";s:0:"";s:19:"auxin_login_bg_size";s:4:"auto";s:22:"auxin_login_bg_pattern";s:0:"";s:21:"auxin_login_bg_repeat";s:9:"no-repeat";s:23:"auxin_login_bg_position";s:8:"left top";s:21:"auxin_login_bg_attach";s:6:"scroll";s:22:"auxin_login_body_class";s:0:"";s:29:"header_menu_typography_weight";s:7:"regular";s:23:"content_typography_face";s:9:""Raleway"";s:25:"content_typography_weight";s:7:"regular";s:26:"main_title_typography_face";s:8:""Domine"";s:28:"main_title_typography_weight";s:7:"regular";s:26:"page_title_typography_face";s:9:""Raleway"";s:28:"page_title_typography_weight";s:7:"regular";s:27:"header_menu_typography_face";s:9:""Raleway"";}]]></wp:option_value>
582
+ </wp:option>
583
+
584
+ <item>
585
+ <title>mountain</title>
586
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/22/standard-post-format/mountain/</link>
587
+ <pubDate>Wed, 22 Jun 2016 12:04:54 +0000</pubDate>
588
+ <dc:creator><![CDATA[admin]]></dc:creator>
589
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/mountain.jpg</guid>
590
+ <description></description>
591
+ <content:encoded><![CDATA[]]></content:encoded>
592
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
593
+ <wp:post_id>10</wp:post_id>
594
+ <wp:post_date><![CDATA[2016-06-22 12:04:54]]></wp:post_date>
595
+ <wp:post_date_gmt><![CDATA[2016-06-22 12:04:54]]></wp:post_date_gmt>
596
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
597
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
598
+ <wp:post_name><![CDATA[mountain]]></wp:post_name>
599
+ <wp:status><![CDATA[inherit]]></wp:status>
600
+ <wp:post_parent>7</wp:post_parent>
601
+ <wp:menu_order>0</wp:menu_order>
602
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
603
+ <wp:post_password><![CDATA[]]></wp:post_password>
604
+ <wp:is_sticky>0</wp:is_sticky>
605
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/mountain.jpg]]></wp:attachment_url>
606
+ <wp:postmeta>
607
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
608
+ <wp:meta_value><![CDATA[2016/06/mountain.jpg]]></wp:meta_value>
609
+ </wp:postmeta>
610
+ <wp:postmeta>
611
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
612
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:20:"2016/06/mountain.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"mountain-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"mountain-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"mountain-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"mountain-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"mountain-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:20:"mountain-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
613
+ </wp:postmeta>
614
+ </item>
615
+ <item>
616
+ <title>photo-1432057322224-8916b9ed202a</title>
617
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/22/standard-post-format/photo-1432057322224-8916b9ed202a/</link>
618
+ <pubDate>Wed, 22 Jun 2016 12:05:02 +0000</pubDate>
619
+ <dc:creator><![CDATA[admin]]></dc:creator>
620
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1432057322224-8916b9ed202a.jpg</guid>
621
+ <description></description>
622
+ <content:encoded><![CDATA[]]></content:encoded>
623
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
624
+ <wp:post_id>11</wp:post_id>
625
+ <wp:post_date><![CDATA[2016-06-22 12:05:02]]></wp:post_date>
626
+ <wp:post_date_gmt><![CDATA[2016-06-22 12:05:02]]></wp:post_date_gmt>
627
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
628
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
629
+ <wp:post_name><![CDATA[photo-1432057322224-8916b9ed202a]]></wp:post_name>
630
+ <wp:status><![CDATA[inherit]]></wp:status>
631
+ <wp:post_parent>7</wp:post_parent>
632
+ <wp:menu_order>0</wp:menu_order>
633
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
634
+ <wp:post_password><![CDATA[]]></wp:post_password>
635
+ <wp:is_sticky>0</wp:is_sticky>
636
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1432057322224-8916b9ed202a.jpg]]></wp:attachment_url>
637
+ <wp:postmeta>
638
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
639
+ <wp:meta_value><![CDATA[2016/06/photo-1432057322224-8916b9ed202a.jpg]]></wp:meta_value>
640
+ </wp:postmeta>
641
+ <wp:postmeta>
642
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
643
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:44:"2016/06/photo-1432057322224-8916b9ed202a.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1432057322224-8916b9ed202a-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1432057322224-8916b9ed202a-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1432057322224-8916b9ed202a-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1432057322224-8916b9ed202a-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"photo-1432057322224-8916b9ed202a-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1432057322224-8916b9ed202a-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
644
+ </wp:postmeta>
645
+ </item>
646
+ <item>
647
+ <title>photo-1440613905118-99b921706b5c</title>
648
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/22/standard-post-format/photo-1440613905118-99b921706b5c/</link>
649
+ <pubDate>Wed, 22 Jun 2016 12:05:12 +0000</pubDate>
650
+ <dc:creator><![CDATA[admin]]></dc:creator>
651
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1440613905118-99b921706b5c.jpg</guid>
652
+ <description></description>
653
+ <content:encoded><![CDATA[]]></content:encoded>
654
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
655
+ <wp:post_id>12</wp:post_id>
656
+ <wp:post_date><![CDATA[2016-06-22 12:05:12]]></wp:post_date>
657
+ <wp:post_date_gmt><![CDATA[2016-06-22 12:05:12]]></wp:post_date_gmt>
658
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
659
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
660
+ <wp:post_name><![CDATA[photo-1440613905118-99b921706b5c]]></wp:post_name>
661
+ <wp:status><![CDATA[inherit]]></wp:status>
662
+ <wp:post_parent>7</wp:post_parent>
663
+ <wp:menu_order>0</wp:menu_order>
664
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
665
+ <wp:post_password><![CDATA[]]></wp:post_password>
666
+ <wp:is_sticky>0</wp:is_sticky>
667
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1440613905118-99b921706b5c.jpg]]></wp:attachment_url>
668
+ <wp:postmeta>
669
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
670
+ <wp:meta_value><![CDATA[2016/06/photo-1440613905118-99b921706b5c.jpg]]></wp:meta_value>
671
+ </wp:postmeta>
672
+ <wp:postmeta>
673
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
674
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:44:"2016/06/photo-1440613905118-99b921706b5c.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1440613905118-99b921706b5c-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1440613905118-99b921706b5c-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1440613905118-99b921706b5c-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1440613905118-99b921706b5c-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"photo-1440613905118-99b921706b5c-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1440613905118-99b921706b5c-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
675
+ </wp:postmeta>
676
+ </item>
677
+ <item>
678
+ <title>photo-1441986380878-c4248f5b8b5b</title>
679
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/22/standard-post-format/photo-1441986380878-c4248f5b8b5b/</link>
680
+ <pubDate>Wed, 22 Jun 2016 12:05:18 +0000</pubDate>
681
+ <dc:creator><![CDATA[admin]]></dc:creator>
682
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1441986380878-c4248f5b8b5b.jpg</guid>
683
+ <description></description>
684
+ <content:encoded><![CDATA[]]></content:encoded>
685
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
686
+ <wp:post_id>13</wp:post_id>
687
+ <wp:post_date><![CDATA[2016-06-22 12:05:18]]></wp:post_date>
688
+ <wp:post_date_gmt><![CDATA[2016-06-22 12:05:18]]></wp:post_date_gmt>
689
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
690
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
691
+ <wp:post_name><![CDATA[photo-1441986380878-c4248f5b8b5b]]></wp:post_name>
692
+ <wp:status><![CDATA[inherit]]></wp:status>
693
+ <wp:post_parent>7</wp:post_parent>
694
+ <wp:menu_order>0</wp:menu_order>
695
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
696
+ <wp:post_password><![CDATA[]]></wp:post_password>
697
+ <wp:is_sticky>0</wp:is_sticky>
698
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1441986380878-c4248f5b8b5b.jpg]]></wp:attachment_url>
699
+ <wp:postmeta>
700
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
701
+ <wp:meta_value><![CDATA[2016/06/photo-1441986380878-c4248f5b8b5b.jpg]]></wp:meta_value>
702
+ </wp:postmeta>
703
+ <wp:postmeta>
704
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
705
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:44:"2016/06/photo-1441986380878-c4248f5b8b5b.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1441986380878-c4248f5b8b5b-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1441986380878-c4248f5b8b5b-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1441986380878-c4248f5b8b5b-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1441986380878-c4248f5b8b5b-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"photo-1441986380878-c4248f5b8b5b-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1441986380878-c4248f5b8b5b-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
706
+ </wp:postmeta>
707
+ </item>
708
+ <item>
709
+ <title>photo-1453282716202-de94e528067c</title>
710
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/22/standard-post-format/photo-1453282716202-de94e528067c/</link>
711
+ <pubDate>Wed, 22 Jun 2016 12:05:23 +0000</pubDate>
712
+ <dc:creator><![CDATA[admin]]></dc:creator>
713
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1453282716202-de94e528067c.jpg</guid>
714
+ <description></description>
715
+ <content:encoded><![CDATA[]]></content:encoded>
716
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
717
+ <wp:post_id>14</wp:post_id>
718
+ <wp:post_date><![CDATA[2016-06-22 12:05:23]]></wp:post_date>
719
+ <wp:post_date_gmt><![CDATA[2016-06-22 12:05:23]]></wp:post_date_gmt>
720
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
721
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
722
+ <wp:post_name><![CDATA[photo-1453282716202-de94e528067c]]></wp:post_name>
723
+ <wp:status><![CDATA[inherit]]></wp:status>
724
+ <wp:post_parent>7</wp:post_parent>
725
+ <wp:menu_order>0</wp:menu_order>
726
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
727
+ <wp:post_password><![CDATA[]]></wp:post_password>
728
+ <wp:is_sticky>0</wp:is_sticky>
729
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1453282716202-de94e528067c.jpg]]></wp:attachment_url>
730
+ <wp:postmeta>
731
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
732
+ <wp:meta_value><![CDATA[2016/06/photo-1453282716202-de94e528067c.jpg]]></wp:meta_value>
733
+ </wp:postmeta>
734
+ <wp:postmeta>
735
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
736
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:44:"2016/06/photo-1453282716202-de94e528067c.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1453282716202-de94e528067c-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1453282716202-de94e528067c-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1453282716202-de94e528067c-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1453282716202-de94e528067c-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"photo-1453282716202-de94e528067c-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1453282716202-de94e528067c-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
737
+ </wp:postmeta>
738
+ </item>
739
+ <item>
740
+ <title>sky-rose</title>
741
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/22/standard-post-format/sky-rose/</link>
742
+ <pubDate>Wed, 22 Jun 2016 12:05:28 +0000</pubDate>
743
+ <dc:creator><![CDATA[admin]]></dc:creator>
744
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/sky-rose.jpg</guid>
745
+ <description></description>
746
+ <content:encoded><![CDATA[]]></content:encoded>
747
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
748
+ <wp:post_id>15</wp:post_id>
749
+ <wp:post_date><![CDATA[2016-06-22 12:05:28]]></wp:post_date>
750
+ <wp:post_date_gmt><![CDATA[2016-06-22 12:05:28]]></wp:post_date_gmt>
751
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
752
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
753
+ <wp:post_name><![CDATA[sky-rose]]></wp:post_name>
754
+ <wp:status><![CDATA[inherit]]></wp:status>
755
+ <wp:post_parent>7</wp:post_parent>
756
+ <wp:menu_order>0</wp:menu_order>
757
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
758
+ <wp:post_password><![CDATA[]]></wp:post_password>
759
+ <wp:is_sticky>0</wp:is_sticky>
760
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/sky-rose.jpg]]></wp:attachment_url>
761
+ <wp:postmeta>
762
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
763
+ <wp:meta_value><![CDATA[2016/06/sky-rose.jpg]]></wp:meta_value>
764
+ </wp:postmeta>
765
+ <wp:postmeta>
766
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
767
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:20:"2016/06/sky-rose.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"sky-rose-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"sky-rose-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"sky-rose-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"sky-rose-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"sky-rose-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:20:"sky-rose-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
768
+ </wp:postmeta>
769
+ </item>
770
+ <item>
771
+ <title>ZLSw0SXxThSrkXRIiCdT_DSC_0345</title>
772
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/22/standard-post-format/zlsw0sxxthsrkxriicdt_dsc_0345/</link>
773
+ <pubDate>Wed, 22 Jun 2016 12:05:44 +0000</pubDate>
774
+ <dc:creator><![CDATA[admin]]></dc:creator>
775
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/ZLSw0SXxThSrkXRIiCdT_DSC_0345.jpg</guid>
776
+ <description></description>
777
+ <content:encoded><![CDATA[]]></content:encoded>
778
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
779
+ <wp:post_id>16</wp:post_id>
780
+ <wp:post_date><![CDATA[2016-06-22 12:05:44]]></wp:post_date>
781
+ <wp:post_date_gmt><![CDATA[2016-06-22 12:05:44]]></wp:post_date_gmt>
782
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
783
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
784
+ <wp:post_name><![CDATA[zlsw0sxxthsrkxriicdt_dsc_0345]]></wp:post_name>
785
+ <wp:status><![CDATA[inherit]]></wp:status>
786
+ <wp:post_parent>7</wp:post_parent>
787
+ <wp:menu_order>0</wp:menu_order>
788
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
789
+ <wp:post_password><![CDATA[]]></wp:post_password>
790
+ <wp:is_sticky>0</wp:is_sticky>
791
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/ZLSw0SXxThSrkXRIiCdT_DSC_0345.jpg]]></wp:attachment_url>
792
+ <wp:postmeta>
793
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
794
+ <wp:meta_value><![CDATA[2016/06/ZLSw0SXxThSrkXRIiCdT_DSC_0345.jpg]]></wp:meta_value>
795
+ </wp:postmeta>
796
+ <wp:postmeta>
797
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
798
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1328;s:4:"file";s:41:"2016/06/ZLSw0SXxThSrkXRIiCdT_DSC_0345.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:41:"ZLSw0SXxThSrkXRIiCdT_DSC_0345-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:41:"ZLSw0SXxThSrkXRIiCdT_DSC_0345-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:41:"ZLSw0SXxThSrkXRIiCdT_DSC_0345-768x510.jpg";s:5:"width";i:768;s:6:"height";i:510;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:42:"ZLSw0SXxThSrkXRIiCdT_DSC_0345-1024x680.jpg";s:5:"width";i:1024;s:6:"height";i:680;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:42:"ZLSw0SXxThSrkXRIiCdT_DSC_0345-1200x797.jpg";s:5:"width";i:1200;s:6:"height";i:797;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:41:"ZLSw0SXxThSrkXRIiCdT_DSC_0345-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
799
+ </wp:postmeta>
800
+ </item>
801
+ <item>
802
+ <title>2016_#x27;s Best Selling Stock Music _ Sound Clips _ AudioJungle</title>
803
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/02/18/video-post-format-self-hosted-video-player/2016_x27s-best-selling-stock-music-_-sound-clips-_-audiojungle/</link>
804
+ <pubDate>Thu, 23 Jun 2016 05:00:15 +0000</pubDate>
805
+ <dc:creator><![CDATA[admin]]></dc:creator>
806
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/2016_x27s-Best-Selling-Stock-Music-_-Sound-Clips-_-AudioJungle.mp3</guid>
807
+ <description></description>
808
+ <content:encoded><![CDATA["2016_#x27;s Best Selling Stock Music _ Sound Clips _ AudioJungle".]]></content:encoded>
809
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
810
+ <wp:post_id>22</wp:post_id>
811
+ <wp:post_date><![CDATA[2016-06-23 05:00:15]]></wp:post_date>
812
+ <wp:post_date_gmt><![CDATA[2016-06-23 05:00:15]]></wp:post_date_gmt>
813
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
814
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
815
+ <wp:post_name><![CDATA[2016_x27s-best-selling-stock-music-_-sound-clips-_-audiojungle]]></wp:post_name>
816
+ <wp:status><![CDATA[inherit]]></wp:status>
817
+ <wp:post_parent>21</wp:post_parent>
818
+ <wp:menu_order>0</wp:menu_order>
819
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
820
+ <wp:post_password><![CDATA[]]></wp:post_password>
821
+ <wp:is_sticky>0</wp:is_sticky>
822
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/2016_x27s-Best-Selling-Stock-Music-_-Sound-Clips-_-AudioJungle.mp3]]></wp:attachment_url>
823
+ <wp:postmeta>
824
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
825
+ <wp:meta_value><![CDATA[2016/06/2016_x27s-Best-Selling-Stock-Music-_-Sound-Clips-_-AudioJungle.mp3]]></wp:meta_value>
826
+ </wp:postmeta>
827
+ <wp:postmeta>
828
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
829
+ <wp:meta_value><![CDATA[a:14:{s:10:"dataformat";s:3:"mp3";s:8:"channels";i:2;s:11:"sample_rate";i:44100;s:7:"bitrate";i:320000;s:11:"channelmode";s:12:"joint stereo";s:12:"bitrate_mode";s:3:"cbr";s:8:"lossless";b:0;s:15:"encoder_options";s:6:"CBR320";s:17:"compression_ratio";d:0.226757369614512482858259545537293888628482818603515625;s:10:"fileformat";s:3:"mp3";s:8:"filesize";i:11651657;s:9:"mime_type";s:10:"audio/mpeg";s:6:"length";i:291;s:16:"length_formatted";s:4:"4:51";}]]></wp:meta_value>
830
+ </wp:postmeta>
831
+ </item>
832
+ <item>
833
+ <title>MAISON LUCHA I Introducing movie on Vimeo</title>
834
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/02/18/video-post-format-self-hosted-video-player/maison-lucha-i-introducing-movie-on-vimeo/</link>
835
+ <pubDate>Thu, 23 Jun 2016 05:02:52 +0000</pubDate>
836
+ <dc:creator><![CDATA[admin]]></dc:creator>
837
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/MAISON-LUCHA-I-Introducing-movie-on-Vimeo.mp4</guid>
838
+ <description></description>
839
+ <content:encoded><![CDATA[]]></content:encoded>
840
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
841
+ <wp:post_id>23</wp:post_id>
842
+ <wp:post_date><![CDATA[2016-06-23 05:02:52]]></wp:post_date>
843
+ <wp:post_date_gmt><![CDATA[2016-06-23 05:02:52]]></wp:post_date_gmt>
844
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
845
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
846
+ <wp:post_name><![CDATA[maison-lucha-i-introducing-movie-on-vimeo]]></wp:post_name>
847
+ <wp:status><![CDATA[inherit]]></wp:status>
848
+ <wp:post_parent>21</wp:post_parent>
849
+ <wp:menu_order>0</wp:menu_order>
850
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
851
+ <wp:post_password><![CDATA[]]></wp:post_password>
852
+ <wp:is_sticky>0</wp:is_sticky>
853
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/MAISON-LUCHA-I-Introducing-movie-on-Vimeo.mp4]]></wp:attachment_url>
854
+ <wp:postmeta>
855
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
856
+ <wp:meta_value><![CDATA[2016/06/MAISON-LUCHA-I-Introducing-movie-on-Vimeo.mp4]]></wp:meta_value>
857
+ </wp:postmeta>
858
+ <wp:postmeta>
859
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
860
+ <wp:meta_value><![CDATA[a:9:{s:8:"filesize";i:20999965;s:9:"mime_type";s:15:"video/quicktime";s:6:"length";i:231;s:16:"length_formatted";s:4:"3:51";s:5:"width";i:640;s:6:"height";i:338;s:10:"fileformat";s:3:"mp4";s:10:"dataformat";s:9:"quicktime";s:5:"audio";a:7:{s:10:"dataformat";s:3:"mp4";s:5:"codec";s:19:"ISO/IEC 14496-3 AAC";s:11:"sample_rate";d:48000;s:8:"channels";i:2;s:15:"bits_per_sample";i:16;s:8:"lossless";b:0;s:11:"channelmode";s:6:"stereo";}}]]></wp:meta_value>
861
+ </wp:postmeta>
862
+ </item>
863
+ <item>
864
+ <title>video-poster-image</title>
865
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/02/18/video-post-format-self-hosted-video-player/video-poster-image/</link>
866
+ <pubDate>Thu, 23 Jun 2016 05:03:07 +0000</pubDate>
867
+ <dc:creator><![CDATA[admin]]></dc:creator>
868
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/video-poster-image.jpg</guid>
869
+ <description></description>
870
+ <content:encoded><![CDATA[]]></content:encoded>
871
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
872
+ <wp:post_id>24</wp:post_id>
873
+ <wp:post_date><![CDATA[2016-06-23 05:03:07]]></wp:post_date>
874
+ <wp:post_date_gmt><![CDATA[2016-06-23 05:03:07]]></wp:post_date_gmt>
875
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
876
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
877
+ <wp:post_name><![CDATA[video-poster-image]]></wp:post_name>
878
+ <wp:status><![CDATA[inherit]]></wp:status>
879
+ <wp:post_parent>21</wp:post_parent>
880
+ <wp:menu_order>0</wp:menu_order>
881
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
882
+ <wp:post_password><![CDATA[]]></wp:post_password>
883
+ <wp:is_sticky>0</wp:is_sticky>
884
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/video-poster-image.jpg]]></wp:attachment_url>
885
+ <wp:postmeta>
886
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
887
+ <wp:meta_value><![CDATA[2016/06/video-poster-image.jpg]]></wp:meta_value>
888
+ </wp:postmeta>
889
+ <wp:postmeta>
890
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
891
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1097;s:6:"height";i:580;s:4:"file";s:30:"2016/06/video-poster-image.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"video-poster-image-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:30:"video-poster-image-300x159.jpg";s:5:"width";i:300;s:6:"height";i:159;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"video-poster-image-768x406.jpg";s:5:"width";i:768;s:6:"height";i:406;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"video-poster-image-1024x541.jpg";s:5:"width";i:1024;s:6:"height";i:541;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:30:"video-poster-image-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
892
+ </wp:postmeta>
893
+ </item>
894
+ <item>
895
+ <title>w_author</title>
896
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/w_author/</link>
897
+ <pubDate>Thu, 23 Jun 2016 06:15:40 +0000</pubDate>
898
+ <dc:creator><![CDATA[admin]]></dc:creator>
899
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/w_author.jpg</guid>
900
+ <description></description>
901
+ <content:encoded><![CDATA[]]></content:encoded>
902
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
903
+ <wp:post_id>36</wp:post_id>
904
+ <wp:post_date><![CDATA[2016-06-23 06:15:40]]></wp:post_date>
905
+ <wp:post_date_gmt><![CDATA[2016-06-23 06:15:40]]></wp:post_date_gmt>
906
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
907
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
908
+ <wp:post_name><![CDATA[w_author]]></wp:post_name>
909
+ <wp:status><![CDATA[inherit]]></wp:status>
910
+ <wp:post_parent>0</wp:post_parent>
911
+ <wp:menu_order>0</wp:menu_order>
912
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
913
+ <wp:post_password><![CDATA[]]></wp:post_password>
914
+ <wp:is_sticky>0</wp:is_sticky>
915
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/w_author.jpg]]></wp:attachment_url>
916
+ <wp:postmeta>
917
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
918
+ <wp:meta_value><![CDATA[2016/06/w_author.jpg]]></wp:meta_value>
919
+ </wp:postmeta>
920
+ <wp:postmeta>
921
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
922
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:240;s:6:"height";i:240;s:4:"file";s:20:"2016/06/w_author.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"w_author-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:20:"w_author-240x182.jpg";s:5:"width";i:240;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
923
+ </wp:postmeta>
924
+ </item>
925
+ <item>
926
+ <title>photo-1418833893919-fa9c83e8d69e</title>
927
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/about/photo-1418833893919-fa9c83e8d69e/</link>
928
+ <pubDate>Sat, 25 Jun 2016 05:26:17 +0000</pubDate>
929
+ <dc:creator><![CDATA[admin]]></dc:creator>
930
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1418833893919-fa9c83e8d69e.jpg</guid>
931
+ <description></description>
932
+ <content:encoded><![CDATA[]]></content:encoded>
933
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
934
+ <wp:post_id>38</wp:post_id>
935
+ <wp:post_date><![CDATA[2016-06-25 05:26:17]]></wp:post_date>
936
+ <wp:post_date_gmt><![CDATA[2016-06-25 05:26:17]]></wp:post_date_gmt>
937
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
938
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
939
+ <wp:post_name><![CDATA[photo-1418833893919-fa9c83e8d69e]]></wp:post_name>
940
+ <wp:status><![CDATA[inherit]]></wp:status>
941
+ <wp:post_parent>37</wp:post_parent>
942
+ <wp:menu_order>0</wp:menu_order>
943
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
944
+ <wp:post_password><![CDATA[]]></wp:post_password>
945
+ <wp:is_sticky>0</wp:is_sticky>
946
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1418833893919-fa9c83e8d69e.jpg]]></wp:attachment_url>
947
+ <wp:postmeta>
948
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
949
+ <wp:meta_value><![CDATA[2016/06/photo-1418833893919-fa9c83e8d69e.jpg]]></wp:meta_value>
950
+ </wp:postmeta>
951
+ <wp:postmeta>
952
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
953
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1358;s:6:"height";i:1500;s:4:"file";s:44:"2016/06/photo-1418833893919-fa9c83e8d69e.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1418833893919-fa9c83e8d69e-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1418833893919-fa9c83e8d69e-272x300.jpg";s:5:"width";i:272;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1418833893919-fa9c83e8d69e-768x848.jpg";s:5:"width";i:768;s:6:"height";i:848;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1418833893919-fa9c83e8d69e-927x1024.jpg";s:5:"width";i:927;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:46:"photo-1418833893919-fa9c83e8d69e-1200x1325.jpg";s:5:"width";i:1200;s:6:"height";i:1325;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1418833893919-fa9c83e8d69e-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
954
+ </wp:postmeta>
955
+ </item>
956
+ <item>
957
+ <title>fPuLkQNXRUKI6HQ2cMPf_IMG_4761</title>
958
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-storm-of-rain-and-wind-descended-upon-them/fpulkqnxruki6hq2cmpf_img_4761/</link>
959
+ <pubDate>Sat, 25 Jun 2016 08:16:37 +0000</pubDate>
960
+ <dc:creator><![CDATA[admin]]></dc:creator>
961
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/fPuLkQNXRUKI6HQ2cMPf_IMG_4761.jpg</guid>
962
+ <description></description>
963
+ <content:encoded><![CDATA[]]></content:encoded>
964
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
965
+ <wp:post_id>70</wp:post_id>
966
+ <wp:post_date><![CDATA[2016-06-25 08:16:37]]></wp:post_date>
967
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:16:37]]></wp:post_date_gmt>
968
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
969
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
970
+ <wp:post_name><![CDATA[fpulkqnxruki6hq2cmpf_img_4761]]></wp:post_name>
971
+ <wp:status><![CDATA[inherit]]></wp:status>
972
+ <wp:post_parent>69</wp:post_parent>
973
+ <wp:menu_order>0</wp:menu_order>
974
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
975
+ <wp:post_password><![CDATA[]]></wp:post_password>
976
+ <wp:is_sticky>0</wp:is_sticky>
977
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/fPuLkQNXRUKI6HQ2cMPf_IMG_4761.jpg]]></wp:attachment_url>
978
+ <wp:postmeta>
979
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
980
+ <wp:meta_value><![CDATA[2016/06/fPuLkQNXRUKI6HQ2cMPf_IMG_4761.jpg]]></wp:meta_value>
981
+ </wp:postmeta>
982
+ <wp:postmeta>
983
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
984
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:4462;s:6:"height";i:2975;s:4:"file";s:41:"2016/06/fPuLkQNXRUKI6HQ2cMPf_IMG_4761.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:41:"fPuLkQNXRUKI6HQ2cMPf_IMG_4761-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:41:"fPuLkQNXRUKI6HQ2cMPf_IMG_4761-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:41:"fPuLkQNXRUKI6HQ2cMPf_IMG_4761-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:42:"fPuLkQNXRUKI6HQ2cMPf_IMG_4761-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:42:"fPuLkQNXRUKI6HQ2cMPf_IMG_4761-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:41:"fPuLkQNXRUKI6HQ2cMPf_IMG_4761-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
985
+ </wp:postmeta>
986
+ </item>
987
+ <item>
988
+ <title>gQZ2iaRdRoWKahCTncS1_brooklyn-bridge</title>
989
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-storm-of-rain-and-wind-descended-upon-them/gqz2iardrowkahctncs1_brooklyn-bridge/</link>
990
+ <pubDate>Sat, 25 Jun 2016 08:16:52 +0000</pubDate>
991
+ <dc:creator><![CDATA[admin]]></dc:creator>
992
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gQZ2iaRdRoWKahCTncS1_brooklyn-bridge.jpg</guid>
993
+ <description></description>
994
+ <content:encoded><![CDATA[]]></content:encoded>
995
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
996
+ <wp:post_id>71</wp:post_id>
997
+ <wp:post_date><![CDATA[2016-06-25 08:16:52]]></wp:post_date>
998
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:16:52]]></wp:post_date_gmt>
999
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1000
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1001
+ <wp:post_name><![CDATA[gqz2iardrowkahctncs1_brooklyn-bridge]]></wp:post_name>
1002
+ <wp:status><![CDATA[inherit]]></wp:status>
1003
+ <wp:post_parent>69</wp:post_parent>
1004
+ <wp:menu_order>0</wp:menu_order>
1005
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1006
+ <wp:post_password><![CDATA[]]></wp:post_password>
1007
+ <wp:is_sticky>0</wp:is_sticky>
1008
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gQZ2iaRdRoWKahCTncS1_brooklyn-bridge.jpg]]></wp:attachment_url>
1009
+ <wp:postmeta>
1010
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1011
+ <wp:meta_value><![CDATA[2016/06/gQZ2iaRdRoWKahCTncS1_brooklyn-bridge.jpg]]></wp:meta_value>
1012
+ </wp:postmeta>
1013
+ <wp:postmeta>
1014
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1015
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:3800;s:6:"height";i:2850;s:4:"file";s:48:"2016/06/gQZ2iaRdRoWKahCTncS1_brooklyn-bridge.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:48:"gQZ2iaRdRoWKahCTncS1_brooklyn-bridge-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:48:"gQZ2iaRdRoWKahCTncS1_brooklyn-bridge-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:48:"gQZ2iaRdRoWKahCTncS1_brooklyn-bridge-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:49:"gQZ2iaRdRoWKahCTncS1_brooklyn-bridge-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:49:"gQZ2iaRdRoWKahCTncS1_brooklyn-bridge-1200x900.jpg";s:5:"width";i:1200;s:6:"height";i:900;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:48:"gQZ2iaRdRoWKahCTncS1_brooklyn-bridge-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1016
+ </wp:postmeta>
1017
+ </item>
1018
+ <item>
1019
+ <title>HBzQnOQ6CWhlNi1YwAxZ_italy</title>
1020
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-storm-of-rain-and-wind-descended-upon-them/hbzqnoq6cwhlni1ywaxz_italy/</link>
1021
+ <pubDate>Sat, 25 Jun 2016 08:17:00 +0000</pubDate>
1022
+ <dc:creator><![CDATA[admin]]></dc:creator>
1023
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/HBzQnOQ6CWhlNi1YwAxZ_italy.jpg</guid>
1024
+ <description></description>
1025
+ <content:encoded><![CDATA[]]></content:encoded>
1026
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1027
+ <wp:post_id>72</wp:post_id>
1028
+ <wp:post_date><![CDATA[2016-06-25 08:17:00]]></wp:post_date>
1029
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:17:00]]></wp:post_date_gmt>
1030
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1031
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1032
+ <wp:post_name><![CDATA[hbzqnoq6cwhlni1ywaxz_italy]]></wp:post_name>
1033
+ <wp:status><![CDATA[inherit]]></wp:status>
1034
+ <wp:post_parent>69</wp:post_parent>
1035
+ <wp:menu_order>0</wp:menu_order>
1036
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1037
+ <wp:post_password><![CDATA[]]></wp:post_password>
1038
+ <wp:is_sticky>0</wp:is_sticky>
1039
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/HBzQnOQ6CWhlNi1YwAxZ_italy.jpg]]></wp:attachment_url>
1040
+ <wp:postmeta>
1041
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1042
+ <wp:meta_value><![CDATA[2016/06/HBzQnOQ6CWhlNi1YwAxZ_italy.jpg]]></wp:meta_value>
1043
+ </wp:postmeta>
1044
+ <wp:postmeta>
1045
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1046
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:38:"2016/06/HBzQnOQ6CWhlNi1YwAxZ_italy.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:38:"HBzQnOQ6CWhlNi1YwAxZ_italy-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:38:"HBzQnOQ6CWhlNi1YwAxZ_italy-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:38:"HBzQnOQ6CWhlNi1YwAxZ_italy-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:39:"HBzQnOQ6CWhlNi1YwAxZ_italy-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:39:"HBzQnOQ6CWhlNi1YwAxZ_italy-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:38:"HBzQnOQ6CWhlNi1YwAxZ_italy-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1047
+ </wp:postmeta>
1048
+ </item>
1049
+ <item>
1050
+ <title>hGibbjg0Rb2fUIoMtU5l__DSC8099</title>
1051
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-storm-of-rain-and-wind-descended-upon-them/hgibbjg0rb2fuiomtu5l__dsc8099/</link>
1052
+ <pubDate>Sat, 25 Jun 2016 08:17:10 +0000</pubDate>
1053
+ <dc:creator><![CDATA[admin]]></dc:creator>
1054
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/hGibbjg0Rb2fUIoMtU5l__DSC8099.jpg</guid>
1055
+ <description></description>
1056
+ <content:encoded><![CDATA[]]></content:encoded>
1057
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1058
+ <wp:post_id>73</wp:post_id>
1059
+ <wp:post_date><![CDATA[2016-06-25 08:17:10]]></wp:post_date>
1060
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:17:10]]></wp:post_date_gmt>
1061
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1062
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1063
+ <wp:post_name><![CDATA[hgibbjg0rb2fuiomtu5l__dsc8099]]></wp:post_name>
1064
+ <wp:status><![CDATA[inherit]]></wp:status>
1065
+ <wp:post_parent>69</wp:post_parent>
1066
+ <wp:menu_order>0</wp:menu_order>
1067
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1068
+ <wp:post_password><![CDATA[]]></wp:post_password>
1069
+ <wp:is_sticky>0</wp:is_sticky>
1070
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/hGibbjg0Rb2fUIoMtU5l__DSC8099.jpg]]></wp:attachment_url>
1071
+ <wp:postmeta>
1072
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1073
+ <wp:meta_value><![CDATA[2016/06/hGibbjg0Rb2fUIoMtU5l__DSC8099.jpg]]></wp:meta_value>
1074
+ </wp:postmeta>
1075
+ <wp:postmeta>
1076
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1077
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1223;s:4:"file";s:41:"2016/06/hGibbjg0Rb2fUIoMtU5l__DSC8099.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:41:"hGibbjg0Rb2fUIoMtU5l__DSC8099-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:41:"hGibbjg0Rb2fUIoMtU5l__DSC8099-300x183.jpg";s:5:"width";i:300;s:6:"height";i:183;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:41:"hGibbjg0Rb2fUIoMtU5l__DSC8099-768x470.jpg";s:5:"width";i:768;s:6:"height";i:470;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:42:"hGibbjg0Rb2fUIoMtU5l__DSC8099-1024x626.jpg";s:5:"width";i:1024;s:6:"height";i:626;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:42:"hGibbjg0Rb2fUIoMtU5l__DSC8099-1200x734.jpg";s:5:"width";i:1200;s:6:"height";i:734;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:41:"hGibbjg0Rb2fUIoMtU5l__DSC8099-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1078
+ </wp:postmeta>
1079
+ </item>
1080
+ <item>
1081
+ <title>photo-1415226581130-91cb7f52f078</title>
1082
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-storm-of-rain-and-wind-descended-upon-them/photo-1415226581130-91cb7f52f078/</link>
1083
+ <pubDate>Sat, 25 Jun 2016 08:17:16 +0000</pubDate>
1084
+ <dc:creator><![CDATA[admin]]></dc:creator>
1085
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1415226581130-91cb7f52f078.jpg</guid>
1086
+ <description></description>
1087
+ <content:encoded><![CDATA[]]></content:encoded>
1088
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1089
+ <wp:post_id>74</wp:post_id>
1090
+ <wp:post_date><![CDATA[2016-06-25 08:17:16]]></wp:post_date>
1091
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:17:16]]></wp:post_date_gmt>
1092
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1093
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1094
+ <wp:post_name><![CDATA[photo-1415226581130-91cb7f52f078]]></wp:post_name>
1095
+ <wp:status><![CDATA[inherit]]></wp:status>
1096
+ <wp:post_parent>69</wp:post_parent>
1097
+ <wp:menu_order>0</wp:menu_order>
1098
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1099
+ <wp:post_password><![CDATA[]]></wp:post_password>
1100
+ <wp:is_sticky>0</wp:is_sticky>
1101
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1415226581130-91cb7f52f078.jpg]]></wp:attachment_url>
1102
+ <wp:postmeta>
1103
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1104
+ <wp:meta_value><![CDATA[2016/06/photo-1415226581130-91cb7f52f078.jpg]]></wp:meta_value>
1105
+ </wp:postmeta>
1106
+ <wp:postmeta>
1107
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1108
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1500;s:4:"file";s:44:"2016/06/photo-1415226581130-91cb7f52f078.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1415226581130-91cb7f52f078-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1415226581130-91cb7f52f078-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1415226581130-91cb7f52f078-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1415226581130-91cb7f52f078-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"photo-1415226581130-91cb7f52f078-1200x900.jpg";s:5:"width";i:1200;s:6:"height";i:900;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1415226581130-91cb7f52f078-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1109
+ </wp:postmeta>
1110
+ </item>
1111
+ <item>
1112
+ <title>photo-1429966163023-c132bc887fdd</title>
1113
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-storm-of-rain-and-wind-descended-upon-them/photo-1429966163023-c132bc887fdd/</link>
1114
+ <pubDate>Sat, 25 Jun 2016 08:17:22 +0000</pubDate>
1115
+ <dc:creator><![CDATA[admin]]></dc:creator>
1116
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1429966163023-c132bc887fdd.jpg</guid>
1117
+ <description></description>
1118
+ <content:encoded><![CDATA[]]></content:encoded>
1119
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1120
+ <wp:post_id>75</wp:post_id>
1121
+ <wp:post_date><![CDATA[2016-06-25 08:17:22]]></wp:post_date>
1122
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:17:22]]></wp:post_date_gmt>
1123
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1124
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1125
+ <wp:post_name><![CDATA[photo-1429966163023-c132bc887fdd]]></wp:post_name>
1126
+ <wp:status><![CDATA[inherit]]></wp:status>
1127
+ <wp:post_parent>69</wp:post_parent>
1128
+ <wp:menu_order>0</wp:menu_order>
1129
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1130
+ <wp:post_password><![CDATA[]]></wp:post_password>
1131
+ <wp:is_sticky>0</wp:is_sticky>
1132
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1429966163023-c132bc887fdd.jpg]]></wp:attachment_url>
1133
+ <wp:postmeta>
1134
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1135
+ <wp:meta_value><![CDATA[2016/06/photo-1429966163023-c132bc887fdd.jpg]]></wp:meta_value>
1136
+ </wp:postmeta>
1137
+ <wp:postmeta>
1138
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1139
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1121;s:4:"file";s:44:"2016/06/photo-1429966163023-c132bc887fdd.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1429966163023-c132bc887fdd-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1429966163023-c132bc887fdd-300x168.jpg";s:5:"width";i:300;s:6:"height";i:168;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1429966163023-c132bc887fdd-768x430.jpg";s:5:"width";i:768;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1429966163023-c132bc887fdd-1024x574.jpg";s:5:"width";i:1024;s:6:"height";i:574;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"photo-1429966163023-c132bc887fdd-1200x673.jpg";s:5:"width";i:1200;s:6:"height";i:673;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1429966163023-c132bc887fdd-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1140
+ </wp:postmeta>
1141
+ </item>
1142
+ <item>
1143
+ <title>photo-1454897834822-1ece264a5d89</title>
1144
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-storm-of-rain-and-wind-descended-upon-them/photo-1454897834822-1ece264a5d89/</link>
1145
+ <pubDate>Sat, 25 Jun 2016 08:17:26 +0000</pubDate>
1146
+ <dc:creator><![CDATA[admin]]></dc:creator>
1147
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1454897834822-1ece264a5d89.jpg</guid>
1148
+ <description></description>
1149
+ <content:encoded><![CDATA[]]></content:encoded>
1150
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1151
+ <wp:post_id>76</wp:post_id>
1152
+ <wp:post_date><![CDATA[2016-06-25 08:17:26]]></wp:post_date>
1153
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:17:26]]></wp:post_date_gmt>
1154
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1155
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1156
+ <wp:post_name><![CDATA[photo-1454897834822-1ece264a5d89]]></wp:post_name>
1157
+ <wp:status><![CDATA[inherit]]></wp:status>
1158
+ <wp:post_parent>69</wp:post_parent>
1159
+ <wp:menu_order>0</wp:menu_order>
1160
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1161
+ <wp:post_password><![CDATA[]]></wp:post_password>
1162
+ <wp:is_sticky>0</wp:is_sticky>
1163
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1454897834822-1ece264a5d89.jpg]]></wp:attachment_url>
1164
+ <wp:postmeta>
1165
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1166
+ <wp:meta_value><![CDATA[2016/06/photo-1454897834822-1ece264a5d89.jpg]]></wp:meta_value>
1167
+ </wp:postmeta>
1168
+ <wp:postmeta>
1169
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1170
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1500;s:4:"file";s:44:"2016/06/photo-1454897834822-1ece264a5d89.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1454897834822-1ece264a5d89-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1454897834822-1ece264a5d89-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1454897834822-1ece264a5d89-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1454897834822-1ece264a5d89-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"photo-1454897834822-1ece264a5d89-1200x900.jpg";s:5:"width";i:1200;s:6:"height";i:900;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1454897834822-1ece264a5d89-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1171
+ </wp:postmeta>
1172
+ </item>
1173
+ <item>
1174
+ <title>photo-1464343256590-e0ff9b7d104c</title>
1175
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/it-was-necessary-to-have-dry-wood/photo-1464343256590-e0ff9b7d104c/</link>
1176
+ <pubDate>Sat, 25 Jun 2016 09:46:06 +0000</pubDate>
1177
+ <dc:creator><![CDATA[admin]]></dc:creator>
1178
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1464343256590-e0ff9b7d104c.jpg</guid>
1179
+ <description></description>
1180
+ <content:encoded><![CDATA[]]></content:encoded>
1181
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1182
+ <wp:post_id>89</wp:post_id>
1183
+ <wp:post_date><![CDATA[2016-06-25 09:46:06]]></wp:post_date>
1184
+ <wp:post_date_gmt><![CDATA[2016-06-25 09:46:06]]></wp:post_date_gmt>
1185
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1186
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1187
+ <wp:post_name><![CDATA[photo-1464343256590-e0ff9b7d104c]]></wp:post_name>
1188
+ <wp:status><![CDATA[inherit]]></wp:status>
1189
+ <wp:post_parent>88</wp:post_parent>
1190
+ <wp:menu_order>0</wp:menu_order>
1191
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1192
+ <wp:post_password><![CDATA[]]></wp:post_password>
1193
+ <wp:is_sticky>0</wp:is_sticky>
1194
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1464343256590-e0ff9b7d104c.jpg]]></wp:attachment_url>
1195
+ <wp:postmeta>
1196
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1197
+ <wp:meta_value><![CDATA[2016/06/photo-1464343256590-e0ff9b7d104c.jpg]]></wp:meta_value>
1198
+ </wp:postmeta>
1199
+ <wp:postmeta>
1200
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1201
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:44:"2016/06/photo-1464343256590-e0ff9b7d104c.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1464343256590-e0ff9b7d104c-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1464343256590-e0ff9b7d104c-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1464343256590-e0ff9b7d104c-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1464343256590-e0ff9b7d104c-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"photo-1464343256590-e0ff9b7d104c-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1464343256590-e0ff9b7d104c-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1202
+ </wp:postmeta>
1203
+ </item>
1204
+ <item>
1205
+ <title>photo-1465385621528-53653983a38f</title>
1206
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/it-was-necessary-to-have-dry-wood/photo-1465385621528-53653983a38f/</link>
1207
+ <pubDate>Sat, 25 Jun 2016 09:48:04 +0000</pubDate>
1208
+ <dc:creator><![CDATA[admin]]></dc:creator>
1209
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1465385621528-53653983a38f.jpg</guid>
1210
+ <description></description>
1211
+ <content:encoded><![CDATA[]]></content:encoded>
1212
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1213
+ <wp:post_id>91</wp:post_id>
1214
+ <wp:post_date><![CDATA[2016-06-25 09:48:04]]></wp:post_date>
1215
+ <wp:post_date_gmt><![CDATA[2016-06-25 09:48:04]]></wp:post_date_gmt>
1216
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1217
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1218
+ <wp:post_name><![CDATA[photo-1465385621528-53653983a38f]]></wp:post_name>
1219
+ <wp:status><![CDATA[inherit]]></wp:status>
1220
+ <wp:post_parent>88</wp:post_parent>
1221
+ <wp:menu_order>0</wp:menu_order>
1222
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1223
+ <wp:post_password><![CDATA[]]></wp:post_password>
1224
+ <wp:is_sticky>0</wp:is_sticky>
1225
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1465385621528-53653983a38f.jpg]]></wp:attachment_url>
1226
+ <wp:postmeta>
1227
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1228
+ <wp:meta_value><![CDATA[2016/06/photo-1465385621528-53653983a38f.jpg]]></wp:meta_value>
1229
+ </wp:postmeta>
1230
+ <wp:postmeta>
1231
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1232
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1328;s:4:"file";s:44:"2016/06/photo-1465385621528-53653983a38f.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1465385621528-53653983a38f-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1465385621528-53653983a38f-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1465385621528-53653983a38f-768x510.jpg";s:5:"width";i:768;s:6:"height";i:510;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1465385621528-53653983a38f-1024x680.jpg";s:5:"width";i:1024;s:6:"height";i:680;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"photo-1465385621528-53653983a38f-1200x797.jpg";s:5:"width";i:1200;s:6:"height";i:797;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1465385621528-53653983a38f-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1233
+ </wp:postmeta>
1234
+ </item>
1235
+ <item>
1236
+ <title>2e9b0cb2</title>
1237
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-greater-part-of-the-deck/2e9b0cb2/</link>
1238
+ <pubDate>Sat, 25 Jun 2016 10:06:29 +0000</pubDate>
1239
+ <dc:creator><![CDATA[admin]]></dc:creator>
1240
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/2e9b0cb2.jpg</guid>
1241
+ <description></description>
1242
+ <content:encoded><![CDATA[]]></content:encoded>
1243
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1244
+ <wp:post_id>93</wp:post_id>
1245
+ <wp:post_date><![CDATA[2016-06-25 10:06:29]]></wp:post_date>
1246
+ <wp:post_date_gmt><![CDATA[2016-06-25 10:06:29]]></wp:post_date_gmt>
1247
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1248
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1249
+ <wp:post_name><![CDATA[2e9b0cb2]]></wp:post_name>
1250
+ <wp:status><![CDATA[inherit]]></wp:status>
1251
+ <wp:post_parent>92</wp:post_parent>
1252
+ <wp:menu_order>0</wp:menu_order>
1253
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1254
+ <wp:post_password><![CDATA[]]></wp:post_password>
1255
+ <wp:is_sticky>0</wp:is_sticky>
1256
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/2e9b0cb2.jpg]]></wp:attachment_url>
1257
+ <wp:postmeta>
1258
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1259
+ <wp:meta_value><![CDATA[2016/06/2e9b0cb2.jpg]]></wp:meta_value>
1260
+ </wp:postmeta>
1261
+ <wp:postmeta>
1262
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1263
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:20:"2016/06/2e9b0cb2.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"2e9b0cb2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"2e9b0cb2-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"2e9b0cb2-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"2e9b0cb2-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"2e9b0cb2-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:20:"2e9b0cb2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1264
+ </wp:postmeta>
1265
+ </item>
1266
+ <item>
1267
+ <title>aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o</title>
1268
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-greater-part-of-the-deck/aocwqrtfq12uwr3wweva_14401305508_804b300054_o/</link>
1269
+ <pubDate>Sat, 25 Jun 2016 10:06:32 +0000</pubDate>
1270
+ <dc:creator><![CDATA[admin]]></dc:creator>
1271
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o.jpg</guid>
1272
+ <description></description>
1273
+ <content:encoded><![CDATA[]]></content:encoded>
1274
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1275
+ <wp:post_id>94</wp:post_id>
1276
+ <wp:post_date><![CDATA[2016-06-25 10:06:32]]></wp:post_date>
1277
+ <wp:post_date_gmt><![CDATA[2016-06-25 10:06:32]]></wp:post_date_gmt>
1278
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1279
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1280
+ <wp:post_name><![CDATA[aocwqrtfq12uwr3wweva_14401305508_804b300054_o]]></wp:post_name>
1281
+ <wp:status><![CDATA[inherit]]></wp:status>
1282
+ <wp:post_parent>92</wp:post_parent>
1283
+ <wp:menu_order>0</wp:menu_order>
1284
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1285
+ <wp:post_password><![CDATA[]]></wp:post_password>
1286
+ <wp:is_sticky>0</wp:is_sticky>
1287
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o.jpg]]></wp:attachment_url>
1288
+ <wp:postmeta>
1289
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1290
+ <wp:meta_value><![CDATA[2016/06/aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o.jpg]]></wp:meta_value>
1291
+ </wp:postmeta>
1292
+ <wp:postmeta>
1293
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1294
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1325;s:4:"file";s:57:"2016/06/aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:57:"aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:57:"aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o-768x509.jpg";s:5:"width";i:768;s:6:"height";i:509;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:58:"aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o-1024x678.jpg";s:5:"width";i:1024;s:6:"height";i:678;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:58:"aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o-1200x795.jpg";s:5:"width";i:1200;s:6:"height";i:795;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:57:"aOcWqRTfQ12uwr3wWevA_14401305508_804b300054_o-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1295
+ </wp:postmeta>
1296
+ </item>
1297
+ <item>
1298
+ <title>photo-1465515779535-63e31c612e53</title>
1299
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-greater-part-of-the-deck/photo-1465515779535-63e31c612e53/</link>
1300
+ <pubDate>Sat, 25 Jun 2016 10:06:46 +0000</pubDate>
1301
+ <dc:creator><![CDATA[admin]]></dc:creator>
1302
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/photo-1465515779535-63e31c612e53.jpg</guid>
1303
+ <description></description>
1304
+ <content:encoded><![CDATA[]]></content:encoded>
1305
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1306
+ <wp:post_id>95</wp:post_id>
1307
+ <wp:post_date><![CDATA[2016-06-25 10:06:46]]></wp:post_date>
1308
+ <wp:post_date_gmt><![CDATA[2016-06-25 10:06:46]]></wp:post_date_gmt>
1309
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1310
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1311
+ <wp:post_name><![CDATA[photo-1465515779535-63e31c612e53]]></wp:post_name>
1312
+ <wp:status><![CDATA[inherit]]></wp:status>
1313
+ <wp:post_parent>92</wp:post_parent>
1314
+ <wp:menu_order>0</wp:menu_order>
1315
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1316
+ <wp:post_password><![CDATA[]]></wp:post_password>
1317
+ <wp:is_sticky>0</wp:is_sticky>
1318
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/photo-1465515779535-63e31c612e53.jpg]]></wp:attachment_url>
1319
+ <wp:postmeta>
1320
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1321
+ <wp:meta_value><![CDATA[2016/06/photo-1465515779535-63e31c612e53.jpg]]></wp:meta_value>
1322
+ </wp:postmeta>
1323
+ <wp:postmeta>
1324
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1325
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:44:"2016/06/photo-1465515779535-63e31c612e53.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1465515779535-63e31c612e53-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1465515779535-63e31c612e53-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1465515779535-63e31c612e53-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1465515779535-63e31c612e53-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"photo-1465515779535-63e31c612e53-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1465515779535-63e31c612e53-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1326
+ </wp:postmeta>
1327
+ </item>
1328
+ <item>
1329
+ <title>bsrOzgDkQhGRKOVC7Era_9X6A3584</title>
1330
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/road-to-eye-catching-landscape/bsrozgdkqhgrkovc7era_9x6a3584/</link>
1331
+ <pubDate>Sat, 25 Jun 2016 10:11:59 +0000</pubDate>
1332
+ <dc:creator><![CDATA[admin]]></dc:creator>
1333
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/bsrOzgDkQhGRKOVC7Era_9X6A3584.jpg</guid>
1334
+ <description></description>
1335
+ <content:encoded><![CDATA[]]></content:encoded>
1336
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1337
+ <wp:post_id>102</wp:post_id>
1338
+ <wp:post_date><![CDATA[2016-06-25 10:11:59]]></wp:post_date>
1339
+ <wp:post_date_gmt><![CDATA[2016-06-25 10:11:59]]></wp:post_date_gmt>
1340
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1341
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1342
+ <wp:post_name><![CDATA[bsrozgdkqhgrkovc7era_9x6a3584]]></wp:post_name>
1343
+ <wp:status><![CDATA[inherit]]></wp:status>
1344
+ <wp:post_parent>101</wp:post_parent>
1345
+ <wp:menu_order>0</wp:menu_order>
1346
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1347
+ <wp:post_password><![CDATA[]]></wp:post_password>
1348
+ <wp:is_sticky>0</wp:is_sticky>
1349
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/bsrOzgDkQhGRKOVC7Era_9X6A3584.jpg]]></wp:attachment_url>
1350
+ <wp:postmeta>
1351
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1352
+ <wp:meta_value><![CDATA[2016/06/bsrOzgDkQhGRKOVC7Era_9X6A3584.jpg]]></wp:meta_value>
1353
+ </wp:postmeta>
1354
+ <wp:postmeta>
1355
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1356
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:2000;s:6:"height";i:1333;s:4:"file";s:41:"2016/06/bsrOzgDkQhGRKOVC7Era_9X6A3584.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:41:"bsrOzgDkQhGRKOVC7Era_9X6A3584-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:41:"bsrOzgDkQhGRKOVC7Era_9X6A3584-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:41:"bsrOzgDkQhGRKOVC7Era_9X6A3584-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:42:"bsrOzgDkQhGRKOVC7Era_9X6A3584-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:42:"bsrOzgDkQhGRKOVC7Era_9X6A3584-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:41:"bsrOzgDkQhGRKOVC7Era_9X6A3584-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1357
+ </wp:postmeta>
1358
+ </item>
1359
+ <item>
1360
+ <title>logo-header</title>
1361
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/logo-header/</link>
1362
+ <pubDate>Tue, 28 Jun 2016 05:24:11 +0000</pubDate>
1363
+ <dc:creator><![CDATA[admin]]></dc:creator>
1364
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/logo-header.png</guid>
1365
+ <description></description>
1366
+ <content:encoded><![CDATA[]]></content:encoded>
1367
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1368
+ <wp:post_id>110</wp:post_id>
1369
+ <wp:post_date><![CDATA[2016-06-28 05:24:11]]></wp:post_date>
1370
+ <wp:post_date_gmt><![CDATA[2016-06-28 05:24:11]]></wp:post_date_gmt>
1371
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1372
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1373
+ <wp:post_name><![CDATA[logo-header]]></wp:post_name>
1374
+ <wp:status><![CDATA[inherit]]></wp:status>
1375
+ <wp:post_parent>0</wp:post_parent>
1376
+ <wp:menu_order>0</wp:menu_order>
1377
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1378
+ <wp:post_password><![CDATA[]]></wp:post_password>
1379
+ <wp:is_sticky>0</wp:is_sticky>
1380
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/logo-header.png]]></wp:attachment_url>
1381
+ <wp:postmeta>
1382
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1383
+ <wp:meta_value><![CDATA[2016/06/logo-header.png]]></wp:meta_value>
1384
+ </wp:postmeta>
1385
+ <wp:postmeta>
1386
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1387
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:200;s:6:"height";i:33;s:4:"file";s:23:"2016/06/logo-header.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"logo-header-150x33.png";s:5:"width";i:150;s:6:"height";i:33;s:9:"mime-type";s:9:"image/png";}}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>
1388
+ </wp:postmeta>
1389
+ </item>
1390
+ <item>
1391
+ <title>logo-header-retina</title>
1392
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/logo-header-retina/</link>
1393
+ <pubDate>Tue, 28 Jun 2016 05:24:12 +0000</pubDate>
1394
+ <dc:creator><![CDATA[admin]]></dc:creator>
1395
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/logo-header-retina.png</guid>
1396
+ <description></description>
1397
+ <content:encoded><![CDATA[]]></content:encoded>
1398
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1399
+ <wp:post_id>111</wp:post_id>
1400
+ <wp:post_date><![CDATA[2016-06-28 05:24:12]]></wp:post_date>
1401
+ <wp:post_date_gmt><![CDATA[2016-06-28 05:24:12]]></wp:post_date_gmt>
1402
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1403
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1404
+ <wp:post_name><![CDATA[logo-header-retina]]></wp:post_name>
1405
+ <wp:status><![CDATA[inherit]]></wp:status>
1406
+ <wp:post_parent>0</wp:post_parent>
1407
+ <wp:menu_order>0</wp:menu_order>
1408
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1409
+ <wp:post_password><![CDATA[]]></wp:post_password>
1410
+ <wp:is_sticky>0</wp:is_sticky>
1411
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/logo-header-retina.png]]></wp:attachment_url>
1412
+ <wp:postmeta>
1413
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1414
+ <wp:meta_value><![CDATA[2016/06/logo-header-retina.png]]></wp:meta_value>
1415
+ </wp:postmeta>
1416
+ <wp:postmeta>
1417
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1418
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:400;s:6:"height";i:66;s:4:"file";s:30:"2016/06/logo-header-retina.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"logo-header-retina-150x66.png";s:5:"width";i:150;s:6:"height";i:66;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:29:"logo-header-retina-300x50.png";s:5:"width";i:300;s:6:"height";i:50;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:29:"logo-header-retina-272x66.png";s:5:"width";i:272;s:6:"height";i:66;s:9:"mime-type";s:9:"image/png";}}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>
1419
+ </wp:postmeta>
1420
+ </item>
1421
+ <item>
1422
+ <title>gallery201606280021</title>
1423
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280021/</link>
1424
+ <pubDate>Tue, 28 Jun 2016 12:27:03 +0000</pubDate>
1425
+ <dc:creator><![CDATA[admin]]></dc:creator>
1426
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280021.jpg</guid>
1427
+ <description></description>
1428
+ <content:encoded><![CDATA[]]></content:encoded>
1429
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1430
+ <wp:post_id>113</wp:post_id>
1431
+ <wp:post_date><![CDATA[2016-06-28 12:27:03]]></wp:post_date>
1432
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:03]]></wp:post_date_gmt>
1433
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1434
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1435
+ <wp:post_name><![CDATA[gallery201606280021]]></wp:post_name>
1436
+ <wp:status><![CDATA[inherit]]></wp:status>
1437
+ <wp:post_parent>112</wp:post_parent>
1438
+ <wp:menu_order>0</wp:menu_order>
1439
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1440
+ <wp:post_password><![CDATA[]]></wp:post_password>
1441
+ <wp:is_sticky>0</wp:is_sticky>
1442
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280021.jpg]]></wp:attachment_url>
1443
+ <wp:postmeta>
1444
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1445
+ <wp:meta_value><![CDATA[2016/06/gallery201606280021.jpg]]></wp:meta_value>
1446
+ </wp:postmeta>
1447
+ <wp:postmeta>
1448
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1449
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:996;s:4:"file";s:31:"2016/06/gallery201606280021.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280021-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280021-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280021-768x510.jpg";s:5:"width";i:768;s:6:"height";i:510;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280021-1024x680.jpg";s:5:"width";i:1024;s:6:"height";i:680;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280021-1200x797.jpg";s:5:"width";i:1200;s:6:"height";i:797;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280021-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
1450
+ </wp:postmeta>
1451
+ </item>
1452
+ <item>
1453
+ <title>gallery201606280022</title>
1454
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280022/</link>
1455
+ <pubDate>Tue, 28 Jun 2016 12:27:06 +0000</pubDate>
1456
+ <dc:creator><![CDATA[admin]]></dc:creator>
1457
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280022.jpg</guid>
1458
+ <description></description>
1459
+ <content:encoded><![CDATA[]]></content:encoded>
1460
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1461
+ <wp:post_id>114</wp:post_id>
1462
+ <wp:post_date><![CDATA[2016-06-28 12:27:06]]></wp:post_date>
1463
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:06]]></wp:post_date_gmt>
1464
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1465
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1466
+ <wp:post_name><![CDATA[gallery201606280022]]></wp:post_name>
1467
+ <wp:status><![CDATA[inherit]]></wp:status>
1468
+ <wp:post_parent>112</wp:post_parent>
1469
+ <wp:menu_order>0</wp:menu_order>
1470
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1471
+ <wp:post_password><![CDATA[]]></wp:post_password>
1472
+ <wp:is_sticky>0</wp:is_sticky>
1473
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280022.jpg]]></wp:attachment_url>
1474
+ <wp:postmeta>
1475
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1476
+ <wp:meta_value><![CDATA[2016/06/gallery201606280022.jpg]]></wp:meta_value>
1477
+ </wp:postmeta>
1478
+ <wp:postmeta>
1479
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1480
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:998;s:4:"file";s:31:"2016/06/gallery201606280022.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280022-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280022-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280022-768x511.jpg";s:5:"width";i:768;s:6:"height";i:511;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280022-1024x681.jpg";s:5:"width";i:1024;s:6:"height";i:681;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280022-1200x798.jpg";s:5:"width";i:1200;s:6:"height";i:798;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280022-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1481
+ </wp:postmeta>
1482
+ </item>
1483
+ <item>
1484
+ <title>gallery201606280023</title>
1485
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280023/</link>
1486
+ <pubDate>Tue, 28 Jun 2016 12:27:08 +0000</pubDate>
1487
+ <dc:creator><![CDATA[admin]]></dc:creator>
1488
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280023.jpg</guid>
1489
+ <description></description>
1490
+ <content:encoded><![CDATA[]]></content:encoded>
1491
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1492
+ <wp:post_id>115</wp:post_id>
1493
+ <wp:post_date><![CDATA[2016-06-28 12:27:08]]></wp:post_date>
1494
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:08]]></wp:post_date_gmt>
1495
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1496
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1497
+ <wp:post_name><![CDATA[gallery201606280023]]></wp:post_name>
1498
+ <wp:status><![CDATA[inherit]]></wp:status>
1499
+ <wp:post_parent>112</wp:post_parent>
1500
+ <wp:menu_order>0</wp:menu_order>
1501
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1502
+ <wp:post_password><![CDATA[]]></wp:post_password>
1503
+ <wp:is_sticky>0</wp:is_sticky>
1504
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280023.jpg]]></wp:attachment_url>
1505
+ <wp:postmeta>
1506
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1507
+ <wp:meta_value><![CDATA[2016/06/gallery201606280023.jpg]]></wp:meta_value>
1508
+ </wp:postmeta>
1509
+ <wp:postmeta>
1510
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1511
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:1000;s:4:"file";s:31:"2016/06/gallery201606280023.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280023-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280023-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280023-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280023-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280023-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280023-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1512
+ </wp:postmeta>
1513
+ </item>
1514
+ <item>
1515
+ <title>gallery201606280024</title>
1516
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280024/</link>
1517
+ <pubDate>Tue, 28 Jun 2016 12:27:10 +0000</pubDate>
1518
+ <dc:creator><![CDATA[admin]]></dc:creator>
1519
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280024.jpg</guid>
1520
+ <description></description>
1521
+ <content:encoded><![CDATA[]]></content:encoded>
1522
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1523
+ <wp:post_id>116</wp:post_id>
1524
+ <wp:post_date><![CDATA[2016-06-28 12:27:10]]></wp:post_date>
1525
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:10]]></wp:post_date_gmt>
1526
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1527
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1528
+ <wp:post_name><![CDATA[gallery201606280024]]></wp:post_name>
1529
+ <wp:status><![CDATA[inherit]]></wp:status>
1530
+ <wp:post_parent>112</wp:post_parent>
1531
+ <wp:menu_order>0</wp:menu_order>
1532
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1533
+ <wp:post_password><![CDATA[]]></wp:post_password>
1534
+ <wp:is_sticky>0</wp:is_sticky>
1535
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280024.jpg]]></wp:attachment_url>
1536
+ <wp:postmeta>
1537
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1538
+ <wp:meta_value><![CDATA[2016/06/gallery201606280024.jpg]]></wp:meta_value>
1539
+ </wp:postmeta>
1540
+ <wp:postmeta>
1541
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1542
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1003;s:6:"height";i:1500;s:4:"file";s:31:"2016/06/gallery201606280024.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280024-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280024-201x300.jpg";s:5:"width";i:201;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:32:"gallery201606280024-768x1149.jpg";s:5:"width";i:768;s:6:"height";i:1149;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280024-685x1024.jpg";s:5:"width";i:685;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280024-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
1543
+ </wp:postmeta>
1544
+ </item>
1545
+ <item>
1546
+ <title>gallery201606280025</title>
1547
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280025/</link>
1548
+ <pubDate>Tue, 28 Jun 2016 12:27:11 +0000</pubDate>
1549
+ <dc:creator><![CDATA[admin]]></dc:creator>
1550
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280025.jpg</guid>
1551
+ <description></description>
1552
+ <content:encoded><![CDATA[]]></content:encoded>
1553
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1554
+ <wp:post_id>117</wp:post_id>
1555
+ <wp:post_date><![CDATA[2016-06-28 12:27:11]]></wp:post_date>
1556
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:11]]></wp:post_date_gmt>
1557
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1558
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1559
+ <wp:post_name><![CDATA[gallery201606280025]]></wp:post_name>
1560
+ <wp:status><![CDATA[inherit]]></wp:status>
1561
+ <wp:post_parent>112</wp:post_parent>
1562
+ <wp:menu_order>0</wp:menu_order>
1563
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1564
+ <wp:post_password><![CDATA[]]></wp:post_password>
1565
+ <wp:is_sticky>0</wp:is_sticky>
1566
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280025.jpg]]></wp:attachment_url>
1567
+ <wp:postmeta>
1568
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1569
+ <wp:meta_value><![CDATA[2016/06/gallery201606280025.jpg]]></wp:meta_value>
1570
+ </wp:postmeta>
1571
+ <wp:postmeta>
1572
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1573
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:1000;s:4:"file";s:31:"2016/06/gallery201606280025.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280025-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280025-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280025-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280025-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280025-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280025-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1574
+ </wp:postmeta>
1575
+ </item>
1576
+ <item>
1577
+ <title>gallery201606280026</title>
1578
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280026/</link>
1579
+ <pubDate>Tue, 28 Jun 2016 12:27:14 +0000</pubDate>
1580
+ <dc:creator><![CDATA[admin]]></dc:creator>
1581
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280026.jpg</guid>
1582
+ <description></description>
1583
+ <content:encoded><![CDATA[]]></content:encoded>
1584
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1585
+ <wp:post_id>118</wp:post_id>
1586
+ <wp:post_date><![CDATA[2016-06-28 12:27:14]]></wp:post_date>
1587
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:14]]></wp:post_date_gmt>
1588
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1589
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1590
+ <wp:post_name><![CDATA[gallery201606280026]]></wp:post_name>
1591
+ <wp:status><![CDATA[inherit]]></wp:status>
1592
+ <wp:post_parent>112</wp:post_parent>
1593
+ <wp:menu_order>0</wp:menu_order>
1594
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1595
+ <wp:post_password><![CDATA[]]></wp:post_password>
1596
+ <wp:is_sticky>0</wp:is_sticky>
1597
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280026.jpg]]></wp:attachment_url>
1598
+ <wp:postmeta>
1599
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1600
+ <wp:meta_value><![CDATA[2016/06/gallery201606280026.jpg]]></wp:meta_value>
1601
+ </wp:postmeta>
1602
+ <wp:postmeta>
1603
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1604
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:996;s:4:"file";s:31:"2016/06/gallery201606280026.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280026-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280026-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280026-768x510.jpg";s:5:"width";i:768;s:6:"height";i:510;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280026-1024x680.jpg";s:5:"width";i:1024;s:6:"height";i:680;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280026-1200x797.jpg";s:5:"width";i:1200;s:6:"height";i:797;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280026-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1605
+ </wp:postmeta>
1606
+ </item>
1607
+ <item>
1608
+ <title>gallery201606280027</title>
1609
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280027/</link>
1610
+ <pubDate>Tue, 28 Jun 2016 12:27:17 +0000</pubDate>
1611
+ <dc:creator><![CDATA[admin]]></dc:creator>
1612
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280027.jpg</guid>
1613
+ <description></description>
1614
+ <content:encoded><![CDATA[]]></content:encoded>
1615
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1616
+ <wp:post_id>119</wp:post_id>
1617
+ <wp:post_date><![CDATA[2016-06-28 12:27:17]]></wp:post_date>
1618
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:17]]></wp:post_date_gmt>
1619
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1620
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1621
+ <wp:post_name><![CDATA[gallery201606280027]]></wp:post_name>
1622
+ <wp:status><![CDATA[inherit]]></wp:status>
1623
+ <wp:post_parent>112</wp:post_parent>
1624
+ <wp:menu_order>0</wp:menu_order>
1625
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1626
+ <wp:post_password><![CDATA[]]></wp:post_password>
1627
+ <wp:is_sticky>0</wp:is_sticky>
1628
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280027.jpg]]></wp:attachment_url>
1629
+ <wp:postmeta>
1630
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1631
+ <wp:meta_value><![CDATA[2016/06/gallery201606280027.jpg]]></wp:meta_value>
1632
+ </wp:postmeta>
1633
+ <wp:postmeta>
1634
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1635
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:844;s:4:"file";s:31:"2016/06/gallery201606280027.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280027-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280027-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280027-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280027-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280027-1200x675.jpg";s:5:"width";i:1200;s:6:"height";i:675;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280027-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1636
+ </wp:postmeta>
1637
+ </item>
1638
+ <item>
1639
+ <title>gallery201606280028</title>
1640
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280028/</link>
1641
+ <pubDate>Tue, 28 Jun 2016 12:27:20 +0000</pubDate>
1642
+ <dc:creator><![CDATA[admin]]></dc:creator>
1643
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280028.jpg</guid>
1644
+ <description></description>
1645
+ <content:encoded><![CDATA[]]></content:encoded>
1646
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1647
+ <wp:post_id>120</wp:post_id>
1648
+ <wp:post_date><![CDATA[2016-06-28 12:27:20]]></wp:post_date>
1649
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:20]]></wp:post_date_gmt>
1650
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1651
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1652
+ <wp:post_name><![CDATA[gallery201606280028]]></wp:post_name>
1653
+ <wp:status><![CDATA[inherit]]></wp:status>
1654
+ <wp:post_parent>112</wp:post_parent>
1655
+ <wp:menu_order>0</wp:menu_order>
1656
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1657
+ <wp:post_password><![CDATA[]]></wp:post_password>
1658
+ <wp:is_sticky>0</wp:is_sticky>
1659
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280028.jpg]]></wp:attachment_url>
1660
+ <wp:postmeta>
1661
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1662
+ <wp:meta_value><![CDATA[2016/06/gallery201606280028.jpg]]></wp:meta_value>
1663
+ </wp:postmeta>
1664
+ <wp:postmeta>
1665
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1666
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:1000;s:4:"file";s:31:"2016/06/gallery201606280028.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280028-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280028-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280028-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280028-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280028-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280028-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1667
+ </wp:postmeta>
1668
+ </item>
1669
+ <item>
1670
+ <title>gallery201606280029</title>
1671
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280029/</link>
1672
+ <pubDate>Tue, 28 Jun 2016 12:27:22 +0000</pubDate>
1673
+ <dc:creator><![CDATA[admin]]></dc:creator>
1674
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280029.jpg</guid>
1675
+ <description></description>
1676
+ <content:encoded><![CDATA[]]></content:encoded>
1677
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1678
+ <wp:post_id>121</wp:post_id>
1679
+ <wp:post_date><![CDATA[2016-06-28 12:27:22]]></wp:post_date>
1680
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:22]]></wp:post_date_gmt>
1681
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1682
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1683
+ <wp:post_name><![CDATA[gallery201606280029]]></wp:post_name>
1684
+ <wp:status><![CDATA[inherit]]></wp:status>
1685
+ <wp:post_parent>112</wp:post_parent>
1686
+ <wp:menu_order>0</wp:menu_order>
1687
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1688
+ <wp:post_password><![CDATA[]]></wp:post_password>
1689
+ <wp:is_sticky>0</wp:is_sticky>
1690
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280029.jpg]]></wp:attachment_url>
1691
+ <wp:postmeta>
1692
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1693
+ <wp:meta_value><![CDATA[2016/06/gallery201606280029.jpg]]></wp:meta_value>
1694
+ </wp:postmeta>
1695
+ <wp:postmeta>
1696
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1697
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:926;s:6:"height";i:1500;s:4:"file";s:31:"2016/06/gallery201606280029.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280029-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280029-185x300.jpg";s:5:"width";i:185;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:32:"gallery201606280029-768x1244.jpg";s:5:"width";i:768;s:6:"height";i:1244;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280029-632x1024.jpg";s:5:"width";i:632;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280029-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1698
+ </wp:postmeta>
1699
+ </item>
1700
+ <item>
1701
+ <title>gallery201606280030</title>
1702
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280030/</link>
1703
+ <pubDate>Tue, 28 Jun 2016 12:27:25 +0000</pubDate>
1704
+ <dc:creator><![CDATA[admin]]></dc:creator>
1705
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280030.jpg</guid>
1706
+ <description></description>
1707
+ <content:encoded><![CDATA[]]></content:encoded>
1708
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1709
+ <wp:post_id>122</wp:post_id>
1710
+ <wp:post_date><![CDATA[2016-06-28 12:27:25]]></wp:post_date>
1711
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:25]]></wp:post_date_gmt>
1712
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1713
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1714
+ <wp:post_name><![CDATA[gallery201606280030]]></wp:post_name>
1715
+ <wp:status><![CDATA[inherit]]></wp:status>
1716
+ <wp:post_parent>112</wp:post_parent>
1717
+ <wp:menu_order>0</wp:menu_order>
1718
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1719
+ <wp:post_password><![CDATA[]]></wp:post_password>
1720
+ <wp:is_sticky>0</wp:is_sticky>
1721
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280030.jpg]]></wp:attachment_url>
1722
+ <wp:postmeta>
1723
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1724
+ <wp:meta_value><![CDATA[2016/06/gallery201606280030.jpg]]></wp:meta_value>
1725
+ </wp:postmeta>
1726
+ <wp:postmeta>
1727
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1728
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:1000;s:4:"file";s:31:"2016/06/gallery201606280030.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280030-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280030-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280030-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280030-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280030-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280030-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1729
+ </wp:postmeta>
1730
+ </item>
1731
+ <item>
1732
+ <title>gallery201606280031</title>
1733
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280031/</link>
1734
+ <pubDate>Tue, 28 Jun 2016 12:27:28 +0000</pubDate>
1735
+ <dc:creator><![CDATA[admin]]></dc:creator>
1736
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280031.jpg</guid>
1737
+ <description></description>
1738
+ <content:encoded><![CDATA[]]></content:encoded>
1739
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1740
+ <wp:post_id>123</wp:post_id>
1741
+ <wp:post_date><![CDATA[2016-06-28 12:27:28]]></wp:post_date>
1742
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:28]]></wp:post_date_gmt>
1743
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1744
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1745
+ <wp:post_name><![CDATA[gallery201606280031]]></wp:post_name>
1746
+ <wp:status><![CDATA[inherit]]></wp:status>
1747
+ <wp:post_parent>112</wp:post_parent>
1748
+ <wp:menu_order>0</wp:menu_order>
1749
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1750
+ <wp:post_password><![CDATA[]]></wp:post_password>
1751
+ <wp:is_sticky>0</wp:is_sticky>
1752
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280031.jpg]]></wp:attachment_url>
1753
+ <wp:postmeta>
1754
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1755
+ <wp:meta_value><![CDATA[2016/06/gallery201606280031.jpg]]></wp:meta_value>
1756
+ </wp:postmeta>
1757
+ <wp:postmeta>
1758
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1759
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:1125;s:4:"file";s:31:"2016/06/gallery201606280031.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280031-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280031-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280031-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280031-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280031-1200x900.jpg";s:5:"width";i:1200;s:6:"height";i:900;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280031-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1760
+ </wp:postmeta>
1761
+ </item>
1762
+ <item>
1763
+ <title>gallery201606280032</title>
1764
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280032/</link>
1765
+ <pubDate>Tue, 28 Jun 2016 12:27:29 +0000</pubDate>
1766
+ <dc:creator><![CDATA[admin]]></dc:creator>
1767
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280032.jpg</guid>
1768
+ <description></description>
1769
+ <content:encoded><![CDATA[]]></content:encoded>
1770
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1771
+ <wp:post_id>124</wp:post_id>
1772
+ <wp:post_date><![CDATA[2016-06-28 12:27:29]]></wp:post_date>
1773
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:29]]></wp:post_date_gmt>
1774
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1775
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1776
+ <wp:post_name><![CDATA[gallery201606280032]]></wp:post_name>
1777
+ <wp:status><![CDATA[inherit]]></wp:status>
1778
+ <wp:post_parent>112</wp:post_parent>
1779
+ <wp:menu_order>0</wp:menu_order>
1780
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1781
+ <wp:post_password><![CDATA[]]></wp:post_password>
1782
+ <wp:is_sticky>0</wp:is_sticky>
1783
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280032.jpg]]></wp:attachment_url>
1784
+ <wp:postmeta>
1785
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1786
+ <wp:meta_value><![CDATA[2016/06/gallery201606280032.jpg]]></wp:meta_value>
1787
+ </wp:postmeta>
1788
+ <wp:postmeta>
1789
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1790
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:997;s:4:"file";s:31:"2016/06/gallery201606280032.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280032-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280032-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280032-768x510.jpg";s:5:"width";i:768;s:6:"height";i:510;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280032-1024x681.jpg";s:5:"width";i:1024;s:6:"height";i:681;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280032-1200x798.jpg";s:5:"width";i:1200;s:6:"height";i:798;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280032-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1791
+ </wp:postmeta>
1792
+ </item>
1793
+ <item>
1794
+ <title>gallery201606280033</title>
1795
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280033/</link>
1796
+ <pubDate>Tue, 28 Jun 2016 12:27:34 +0000</pubDate>
1797
+ <dc:creator><![CDATA[admin]]></dc:creator>
1798
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280033.jpg</guid>
1799
+ <description></description>
1800
+ <content:encoded><![CDATA[]]></content:encoded>
1801
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1802
+ <wp:post_id>125</wp:post_id>
1803
+ <wp:post_date><![CDATA[2016-06-28 12:27:34]]></wp:post_date>
1804
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:34]]></wp:post_date_gmt>
1805
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1806
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1807
+ <wp:post_name><![CDATA[gallery201606280033]]></wp:post_name>
1808
+ <wp:status><![CDATA[inherit]]></wp:status>
1809
+ <wp:post_parent>112</wp:post_parent>
1810
+ <wp:menu_order>0</wp:menu_order>
1811
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1812
+ <wp:post_password><![CDATA[]]></wp:post_password>
1813
+ <wp:is_sticky>0</wp:is_sticky>
1814
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280033.jpg]]></wp:attachment_url>
1815
+ <wp:postmeta>
1816
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1817
+ <wp:meta_value><![CDATA[2016/06/gallery201606280033.jpg]]></wp:meta_value>
1818
+ </wp:postmeta>
1819
+ <wp:postmeta>
1820
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1821
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:1000;s:4:"file";s:31:"2016/06/gallery201606280033.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280033-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280033-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280033-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280033-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280033-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280033-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1822
+ </wp:postmeta>
1823
+ </item>
1824
+ <item>
1825
+ <title>About</title>
1826
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/about/</link>
1827
+ <pubDate>Sat, 25 Jun 2016 05:29:20 +0000</pubDate>
1828
+ <dc:creator><![CDATA[admin]]></dc:creator>
1829
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?page_id=37</guid>
1830
+ <description></description>
1831
+ <content:encoded><![CDATA[<section class="aux-widget-image widget-container so-panel widget widget_aux_image panel-first-child panel-last-child" id="panel-37-0-0-0">
1832
+ <section class="aux-media-frame aux-media-image aux-lightbox-frame ">
1833
+ <img width="650" height="400" src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/photo-1418833893919-fa9c83e8d69e-362x400.jpg" class="auxin-attachment attachment-650x400" alt="photo-1418833893919-fa9c83e8d69e">
1834
+ </section>
1835
+ </section><h3 class="widget-title">Mary Johnson</h3>
1836
+ <p style="text-align: left">A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine.</p>
1837
+ <p style="text-align: left">I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment; and yet I feel that I never was a greater artist than now. When, while the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my trees, and but a few stray gleams steal into the inner sanctuary.&nbsp;I throw myself down among the tall grass by the trickling stream; and, as I lie close to the earth, a thousand unknown plants are noticed by me: when I hear the buzz of the little world among the stalks, and grow familiar with the countless indescribable forms of the insects and flies, then I feel the presence of the Almighty, who formed us in his own image, and the breath of that universal love which bears and sustains us, as it floats around us in an eternity of bliss; and then, my friend, when darkness overspreads my eyes.</p>
1838
+ <p style="text-align: left">Like the form of a beloved mistress, then I often think with longing, Oh, would I could describe these conceptions, could impress upon paper all that is living so full and warm within me, that it might be the mirror of my soul, as my soul is the mirror of the infinite God! O my friend -- but it is too much for my strength -- I sink under the weight of the splendour of these visions! A wonderful serenity has taken.</p>
1839
+ <p>But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her.</p>]]></content:encoded>
1840
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1841
+ <wp:post_id>37</wp:post_id>
1842
+ <wp:post_date><![CDATA[2016-06-25 05:29:20]]></wp:post_date>
1843
+ <wp:post_date_gmt><![CDATA[2016-06-25 05:29:20]]></wp:post_date_gmt>
1844
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1845
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1846
+ <wp:post_name><![CDATA[about]]></wp:post_name>
1847
+ <wp:status><![CDATA[publish]]></wp:status>
1848
+ <wp:post_parent>0</wp:post_parent>
1849
+ <wp:menu_order>0</wp:menu_order>
1850
+ <wp:post_type><![CDATA[page]]></wp:post_type>
1851
+ <wp:post_password><![CDATA[]]></wp:post_password>
1852
+ <wp:is_sticky>0</wp:is_sticky>
1853
+ <wp:postmeta>
1854
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
1855
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
1856
+ </wp:postmeta>
1857
+ <wp:postmeta>
1858
+ <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
1859
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
1860
+ </wp:postmeta>
1861
+ <wp:postmeta>
1862
+ <wp:meta_key><![CDATA[_panels_data_preview]]></wp:meta_key>
1863
+ <wp:meta_value><![CDATA[a:3:{s:7:"widgets";a:2:{i:0;a:11:{s:5:"title";s:0:"";s:9:"attach_id";s:2:"38";s:15:"attach_id_hover";s:0:"";s:5:"width";s:0:"";s:6:"height";s:0:"";s:4:"icon";s:0:"";s:8:"lightbox";s:2:"no";s:4:"link";s:0:"";s:6:"target";s:5:"_self";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:9:"aux_image";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9714a264-0481-4c87-8aa6-481dffbe0fe8";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:6:{s:5:"title";s:12:"Mary Johnson";s:4:"text";s:2073:"<p style="text-align: left;">A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine.</p><p style="text-align: left;">I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment; and yet I feel that I never was a greater artist than now. When, while the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my trees, and but a few stray gleams steal into the inner sanctuary. I throw myself down among the tall grass by the trickling stream; and, as I lie close to the earth, a thousand unknown plants are noticed by me: when I hear the buzz of the little world among the stalks, and grow familiar with the countless indescribable forms of the insects and flies, then I feel the presence of the Almighty, who formed us in his own image, and the breath of that universal love which bears and sustains us, as it floats around us in an eternity of bliss; and then, my friend, when darkness overspreads my eyes.</p><p style="text-align: left;">Like the form of a beloved mistress, then I often think with longing, Oh, would I could describe these conceptions, could impress upon paper all that is living so full and warm within me, that it might be the mirror of my soul, as my soul is the mirror of the infinite God! O my friend -- but it is too much for my strength -- I sink under the weight of the splendour of these visions! A wonderful serenity has taken.</p><p>But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"576e1750dbc32";s:11:"panels_info";a:6:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:4:"grid";i:0;s:4:"cell";i:1;s:2:"id";i:1;s:9:"widget_id";s:36:"3e9a8f8d-7e93-4a41-819e-1596f06cf8ce";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:2:{s:5:"cells";i:2;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}s:10:"grid_cells";a:2:{i:0;a:2:{s:4:"grid";i:0;s:6:"weight";d:0.5;}i:1;a:2:{s:4:"grid";i:0;s:6:"weight";d:0.5;}}}]]></wp:meta_value>
1864
+ </wp:postmeta>
1865
+ <wp:postmeta>
1866
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
1867
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
1868
+ </wp:postmeta>
1869
+ <wp:postmeta>
1870
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
1871
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
1872
+ </wp:postmeta>
1873
+ <wp:postmeta>
1874
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
1875
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
1876
+ </wp:postmeta>
1877
+ <wp:postmeta>
1878
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
1879
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
1880
+ </wp:postmeta>
1881
+ <wp:postmeta>
1882
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
1883
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
1884
+ </wp:postmeta>
1885
+ <wp:postmeta>
1886
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
1887
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
1888
+ </wp:postmeta>
1889
+ <wp:postmeta>
1890
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
1891
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
1892
+ </wp:postmeta>
1893
+ <wp:postmeta>
1894
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
1895
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
1896
+ </wp:postmeta>
1897
+ <wp:postmeta>
1898
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
1899
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
1900
+ </wp:postmeta>
1901
+ <wp:postmeta>
1902
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
1903
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
1904
+ </wp:postmeta>
1905
+ <wp:postmeta>
1906
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
1907
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
1908
+ </wp:postmeta>
1909
+ <wp:postmeta>
1910
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
1911
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
1912
+ </wp:postmeta>
1913
+ <wp:postmeta>
1914
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
1915
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
1916
+ </wp:postmeta>
1917
+ <wp:postmeta>
1918
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
1919
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
1920
+ </wp:postmeta>
1921
+ <wp:postmeta>
1922
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
1923
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
1924
+ </wp:postmeta>
1925
+ <wp:postmeta>
1926
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
1927
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
1928
+ </wp:postmeta>
1929
+ <wp:postmeta>
1930
+ <wp:meta_key><![CDATA[axi_custom_bg_show]]></wp:meta_key>
1931
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
1932
+ </wp:postmeta>
1933
+ <wp:postmeta>
1934
+ <wp:meta_key><![CDATA[axi_custom_bg_color]]></wp:meta_key>
1935
+ <wp:meta_value><![CDATA[#dddd]]></wp:meta_value>
1936
+ </wp:postmeta>
1937
+ <wp:postmeta>
1938
+ <wp:meta_key><![CDATA[axi_custom_bg_repeat]]></wp:meta_key>
1939
+ <wp:meta_value><![CDATA[no-repeat]]></wp:meta_value>
1940
+ </wp:postmeta>
1941
+ <wp:postmeta>
1942
+ <wp:meta_key><![CDATA[axi_custom_bg_attach]]></wp:meta_key>
1943
+ <wp:meta_value><![CDATA[fixed]]></wp:meta_value>
1944
+ </wp:postmeta>
1945
+ <wp:postmeta>
1946
+ <wp:meta_key><![CDATA[axi_custom_bg_position]]></wp:meta_key>
1947
+ <wp:meta_value><![CDATA[left top]]></wp:meta_value>
1948
+ </wp:postmeta>
1949
+ <wp:postmeta>
1950
+ <wp:meta_key><![CDATA[axi_custom_bg_size]]></wp:meta_key>
1951
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
1952
+ </wp:postmeta>
1953
+ <wp:postmeta>
1954
+ <wp:meta_key><![CDATA[top_slider_id]]></wp:meta_key>
1955
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
1956
+ </wp:postmeta>
1957
+ <wp:postmeta>
1958
+ <wp:meta_key><![CDATA[top_slider_width]]></wp:meta_key>
1959
+ <wp:meta_value><![CDATA[full]]></wp:meta_value>
1960
+ </wp:postmeta>
1961
+ <wp:postmeta>
1962
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
1963
+ <wp:meta_value><![CDATA[no-sidebar]]></wp:meta_value>
1964
+ </wp:postmeta>
1965
+ <wp:postmeta>
1966
+ <wp:meta_key><![CDATA[aux_sidebar_overlap_bg]]></wp:meta_key>
1967
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
1968
+ </wp:postmeta>
1969
+ <wp:postmeta>
1970
+ <wp:meta_key><![CDATA[aux_sidebar_border]]></wp:meta_key>
1971
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
1972
+ </wp:postmeta>
1973
+ <wp:postmeta>
1974
+ <wp:meta_key><![CDATA[content_layout]]></wp:meta_key>
1975
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
1976
+ </wp:postmeta>
1977
+ <wp:postmeta>
1978
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
1979
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
1980
+ </wp:postmeta>
1981
+ <wp:postmeta>
1982
+ <wp:meta_key><![CDATA[panels_data]]></wp:meta_key>
1983
+ <wp:meta_value><![CDATA[a:3:{s:7:"widgets";a:3:{i:0;a:12:{s:5:"title";s:0:"";s:9:"attach_id";s:2:"38";s:15:"attach_id_hover";s:0:"";s:5:"width";s:0:"";s:6:"height";s:0:"";s:5:"align";s:9:"alignleft";s:4:"icon";s:0:"";s:8:"lightbox";s:1:"0";s:4:"link";s:0:"";s:6:"target";s:5:"_self";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:9:"aux_image";s:3:"raw";b:1;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9714a264-0481-4c87-8aa6-481dffbe0fe8";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:1;a:6:{s:5:"title";s:12:"Mary Johnson";s:4:"text";s:1432:"<p style="text-align: left;">A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine.</p><p style="text-align: left;">I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents. I should be incapable of drawing a single stroke at the present moment; and yet I feel that I never was a greater artist than now. When, while the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my trees, and but a few stray gleams steal into the inner sanctuary. I throw myself down among the tall grass by the trickling stream; and, as I lie close to the earth, a thousand unknown plants are noticed by me: when I hear the buzz of the little world among the stalks, and grow familiar with the countless indescribable forms of the insects and flies, then I feel the presence of the Almighty, who formed us in his own image.</p><p style="text-align: left;">Like the form of a beloved mistress, then I often think with longing, Oh, would I could describe these conceptions, could impress upon paper all that is living so full and warm within me, that it might be the mirror of my soul, as my soul is the mirror of the infinite God!</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"576e1750dbc32";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:1;s:2:"id";i:1;s:9:"widget_id";s:36:"3e9a8f8d-7e93-4a41-819e-1596f06cf8ce";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:2;a:4:{s:5:"title";s:0:"";s:4:"size";s:6:"medium";s:9:"direction";s:10:"horizontal";s:11:"panels_info";a:7:{s:5:"class";s:16:"aux_socials_list";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:1;s:2:"id";i:2;s:9:"widget_id";s:36:"2e5d249c-8aa6-4a3a-aced-95d121bc6bad";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:2:{s:5:"cells";i:2;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}s:10:"grid_cells";a:2:{i:0;a:2:{s:4:"grid";i:0;s:6:"weight";d:0.5;}i:1;a:2:{s:4:"grid";i:0;s:6:"weight";d:0.5;}}}]]></wp:meta_value>
1984
+ </wp:postmeta>
1985
+ <wp:postmeta>
1986
+ <wp:meta_key><![CDATA[axi_custom_bg_pattern]]></wp:meta_key>
1987
+ <wp:meta_value><![CDATA[http://demo.averta.net/themes/phlox/demo1/wp-content/themes/phlox/css/images/pattern/p1.png]]></wp:meta_value>
1988
+ </wp:postmeta>
1989
+ <wp:postmeta>
1990
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
1991
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
1992
+ </wp:postmeta>
1993
+ </item>
1994
+ <item>
1995
+ <title>Contact</title>
1996
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/contact/</link>
1997
+ <pubDate>Sat, 25 Jun 2016 05:45:19 +0000</pubDate>
1998
+ <dc:creator><![CDATA[admin]]></dc:creator>
1999
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?page_id=45</guid>
2000
+ <description></description>
2001
+ <content:encoded><![CDATA[<section class="aux-widget-gmaps widget-container so-panel widget widget_aux_gmaps panel-first-child panel-last-child" id="panel-45-0-0-0">
2002
+ <!-- @TODO: if we don't need these wrapers anymore we can remove them. -->
2003
+ <section>
2004
+ <!-- TODO: show_mapcontrols options should check later since right now aux_switch type has issue on page builder but works on widgets -->
2005
+
2006
+ jQuery( function($) {
2007
+ var map = new GMaps({
2008
+ el: "#axi_map576e1c46425a1",
2009
+ lat: 40.721819,
2010
+ lng: -73.980427,
2011
+ zoom: 14,
2012
+ scrollwheel: 0,
2013
+ maptype: 'ROADMAP' ,
2014
+ panControl : true
2015
+ });
2016
+ map.addStyle({
2017
+ styledMapName:"Auxin custom style map",
2018
+ styles: [{"featureType":"landscape.man_made","elementType":"geometry.fill","stylers":[{"color":"#e9e5dc"}]},{"featureType":"landscape.natural","elementType":"geometry.fill","stylers":[{"visibility":"on"},{"color":"#b8cb93"}]},{"featureType":"poi","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"poi.business","elementType":"all","stylers":[{"visibility":"simplified"}]},{"featureType":"poi.medical","elementType":"all","stylers":[{"visibility":"on"}]},{"featureType":"poi.park","elementType":"all","stylers":[{"visibility":"on"}]},{"featureType":"poi.park","elementType":"geometry.fill","stylers":[{"color":"#ccdca1"}]},{"featureType":"poi.sports_complex","elementType":"all","stylers":[{"visibility":"on"}]},{"featureType":"road","elementType":"geometry.fill","stylers":[{"hue":"#ff0000"},{"saturation":-100},{"lightness":99}]},{"featureType":"road","elementType":"geometry.stroke","stylers":[{"color":"#808080"},{"lightness":54},{"visibility":"off"}]},{"featureType":"road","elementType":"labels.text.fill","stylers":[{"color":"#767676"}]},{"featureType":"road","elementType":"labels.text.stroke","stylers":[{"color":"#ffffff"}]},{"featureType":"water","elementType":"all","stylers":[{"saturation":43},{"lightness":-11},{"color":"#89cada"}]}],
2019
+ mapTypeId: "aux_map_style"
2020
+ });
2021
+ map.setStyle("aux_map_style");
2022
+ map.addMarker({
2023
+ lat: 40.721819,
2024
+ lng: -73.980427 });
2025
+ });
2026
+
2027
+ <!-- aux-col-wrapper -->
2028
+ <!-- widget-inner -->
2029
+ </section><!-- widget-container -->
2030
+ </section><h3 class="widget-title">Contact Info</h3>
2031
+ <p>When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road,</p>
2032
+ <ul>
2033
+ <li>Phone: (392) 583-2569</li>
2034
+ <li>Email: support@dframeworks.com</li>
2035
+ <li>Address: 400342 United Kingdom, Freeroad str.21, r. 94</li>
2036
+ </ul>
2037
+ <section class="">
2038
+ <section class="aux-widget-contact-form widget-container so-panel widget widget_aux_contact_form panel-first-child panel-last-child" id="panel-45-1-1-0"><h3 class="widget-title">Leave Comment</h3>
2039
+ <!-- @TODO - The output for element here -->
2040
+ <form action="" id="contactForm" class="aux-contact-form" method="post">
2041
+
2042
+
2043
+
2044
+ <textarea name="cComment" id="cComment"></textarea>
2045
+
2046
+
2047
+ </form>
2048
+ <!-- aux-col-wrapper -->
2049
+ <!-- widget-inner -->
2050
+ </section><!-- widget-container -->
2051
+ </section>]]></content:encoded>
2052
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2053
+ <wp:post_id>45</wp:post_id>
2054
+ <wp:post_date><![CDATA[2016-06-25 05:45:19]]></wp:post_date>
2055
+ <wp:post_date_gmt><![CDATA[2016-06-25 05:45:19]]></wp:post_date_gmt>
2056
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
2057
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2058
+ <wp:post_name><![CDATA[contact]]></wp:post_name>
2059
+ <wp:status><![CDATA[publish]]></wp:status>
2060
+ <wp:post_parent>0</wp:post_parent>
2061
+ <wp:menu_order>0</wp:menu_order>
2062
+ <wp:post_type><![CDATA[page]]></wp:post_type>
2063
+ <wp:post_password><![CDATA[]]></wp:post_password>
2064
+ <wp:is_sticky>0</wp:is_sticky>
2065
+ <wp:postmeta>
2066
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
2067
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2068
+ </wp:postmeta>
2069
+ <wp:postmeta>
2070
+ <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
2071
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
2072
+ </wp:postmeta>
2073
+ <wp:postmeta>
2074
+ <wp:meta_key><![CDATA[_panels_data_preview]]></wp:meta_key>
2075
+ <wp:meta_value><![CDATA[a:3:{s:7:"widgets";a:3:{i:0;a:12:{s:5:"title";s:0:"";s:6:"height";s:3:"700";s:8:"latitude";s:9:"40.721819";s:9:"longitude";s:10:"-73.980427";s:4:"type";s:7:"ROADMAP";s:4:"zoom";s:2:"14";s:16:"show_mapcontrols";s:2:"on";s:10:"zoom_wheel";s:1:"0";s:11:"marker_info";s:0:"";s:5:"style";s:1258:"[{"featureType":"landscape.man_made","elementType":"geometry.fill","stylers":[{"color":"#e9e5dc"}]},{"featureType":"landscape.natural","elementType":"geometry.fill","stylers":[{"visibility":"on"},{"color":"#b8cb93"}]},{"featureType":"poi","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"poi.business","elementType":"all","stylers":[{"visibility":"simplified"}]},{"featureType":"poi.medical","elementType":"all","stylers":[{"visibility":"on"}]},{"featureType":"poi.park","elementType":"all","stylers":[{"visibility":"on"}]},{"featureType":"poi.park","elementType":"geometry.fill","stylers":[{"color":"#ccdca1"}]},{"featureType":"poi.sports_complex","elementType":"all","stylers":[{"visibility":"on"}]},{"featureType":"road","elementType":"geometry.fill","stylers":[{"hue":"#ff0000"},{"saturation":-100},{"lightness":99}]},{"featureType":"road","elementType":"geometry.stroke","stylers":[{"color":"#808080"},{"lightness":54},{"visibility":"off"}]},{"featureType":"road","elementType":"labels.text.fill","stylers":[{"color":"#767676"}]},{"featureType":"road","elementType":"labels.text.stroke","stylers":[{"color":"#ffffff"}]},{"featureType":"water","elementType":"all","stylers":[{"saturation":43},{"lightness":-11},{"color":"#89cada"}]}]";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:9:"aux_gmaps";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"e83cae51-90df-41de-ae83-bc28dcee99a0";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:6:{s:5:"title";s:12:"Contact Info";s:4:"text";s:343:"<p>When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road,</p><ul><li>Phone: (392) 583-2569</li><li>Email: support@dframeworks.com</li><li>Address: 400342 United Kingdom, Freeroad str.21, r. 94</li></ul>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"576e1c18ee122";s:11:"panels_info";a:6:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"28546c2e-e51a-47da-811f-51fec8b3f0cc";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:2;a:6:{s:5:"title";s:13:"Leave Comment";s:5:"email";s:0:"";s:4:"type";s:5:"phlox";s:13:"cf7_shortcode";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:16:"aux_contact_form";s:3:"raw";b:1;s:4:"grid";i:1;s:4:"cell";i:1;s:2:"id";i:2;s:9:"widget_id";s:36:"523a0cb0-5b72-45ff-8115-98bd13dc4d53";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:2:{s:5:"cells";i:2;s:5:"style";a:0:{}}}s:10:"grid_cells";a:3:{i:0;a:2:{s:4:"grid";i:0;s:6:"weight";i:1;}i:1;a:2:{s:4:"grid";i:1;s:6:"weight";d:0.5;}i:2;a:2:{s:4:"grid";i:1;s:6:"weight";d:0.5;}}}]]></wp:meta_value>
2076
+ </wp:postmeta>
2077
+ <wp:postmeta>
2078
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
2079
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2080
+ </wp:postmeta>
2081
+ <wp:postmeta>
2082
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
2083
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
2084
+ </wp:postmeta>
2085
+ <wp:postmeta>
2086
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
2087
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2088
+ </wp:postmeta>
2089
+ <wp:postmeta>
2090
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
2091
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
2092
+ </wp:postmeta>
2093
+ <wp:postmeta>
2094
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
2095
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2096
+ </wp:postmeta>
2097
+ <wp:postmeta>
2098
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
2099
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2100
+ </wp:postmeta>
2101
+ <wp:postmeta>
2102
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
2103
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2104
+ </wp:postmeta>
2105
+ <wp:postmeta>
2106
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
2107
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2108
+ </wp:postmeta>
2109
+ <wp:postmeta>
2110
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
2111
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2112
+ </wp:postmeta>
2113
+ <wp:postmeta>
2114
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
2115
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
2116
+ </wp:postmeta>
2117
+ <wp:postmeta>
2118
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
2119
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
2120
+ </wp:postmeta>
2121
+ <wp:postmeta>
2122
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
2123
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
2124
+ </wp:postmeta>
2125
+ <wp:postmeta>
2126
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
2127
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
2128
+ </wp:postmeta>
2129
+ <wp:postmeta>
2130
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
2131
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2132
+ </wp:postmeta>
2133
+ <wp:postmeta>
2134
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
2135
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2136
+ </wp:postmeta>
2137
+ <wp:postmeta>
2138
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
2139
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
2140
+ </wp:postmeta>
2141
+ <wp:postmeta>
2142
+ <wp:meta_key><![CDATA[axi_custom_bg_show]]></wp:meta_key>
2143
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2144
+ </wp:postmeta>
2145
+ <wp:postmeta>
2146
+ <wp:meta_key><![CDATA[axi_custom_bg_color]]></wp:meta_key>
2147
+ <wp:meta_value><![CDATA[#dddd]]></wp:meta_value>
2148
+ </wp:postmeta>
2149
+ <wp:postmeta>
2150
+ <wp:meta_key><![CDATA[axi_custom_bg_repeat]]></wp:meta_key>
2151
+ <wp:meta_value><![CDATA[no-repeat]]></wp:meta_value>
2152
+ </wp:postmeta>
2153
+ <wp:postmeta>
2154
+ <wp:meta_key><![CDATA[axi_custom_bg_attach]]></wp:meta_key>
2155
+ <wp:meta_value><![CDATA[fixed]]></wp:meta_value>
2156
+ </wp:postmeta>
2157
+ <wp:postmeta>
2158
+ <wp:meta_key><![CDATA[axi_custom_bg_position]]></wp:meta_key>
2159
+ <wp:meta_value><![CDATA[left top]]></wp:meta_value>
2160
+ </wp:postmeta>
2161
+ <wp:postmeta>
2162
+ <wp:meta_key><![CDATA[axi_custom_bg_size]]></wp:meta_key>
2163
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
2164
+ </wp:postmeta>
2165
+ <wp:postmeta>
2166
+ <wp:meta_key><![CDATA[top_slider_id]]></wp:meta_key>
2167
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
2168
+ </wp:postmeta>
2169
+ <wp:postmeta>
2170
+ <wp:meta_key><![CDATA[top_slider_width]]></wp:meta_key>
2171
+ <wp:meta_value><![CDATA[full]]></wp:meta_value>
2172
+ </wp:postmeta>
2173
+ <wp:postmeta>
2174
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
2175
+ <wp:meta_value><![CDATA[no-sidebar]]></wp:meta_value>
2176
+ </wp:postmeta>
2177
+ <wp:postmeta>
2178
+ <wp:meta_key><![CDATA[aux_sidebar_overlap_bg]]></wp:meta_key>
2179
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2180
+ </wp:postmeta>
2181
+ <wp:postmeta>
2182
+ <wp:meta_key><![CDATA[aux_sidebar_border]]></wp:meta_key>
2183
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2184
+ </wp:postmeta>
2185
+ <wp:postmeta>
2186
+ <wp:meta_key><![CDATA[content_layout]]></wp:meta_key>
2187
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
2188
+ </wp:postmeta>
2189
+ <wp:postmeta>
2190
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
2191
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2192
+ </wp:postmeta>
2193
+ <wp:postmeta>
2194
+ <wp:meta_key><![CDATA[panels_data]]></wp:meta_key>
2195
+ <wp:meta_value><![CDATA[a:3:{s:7:"widgets";a:3:{i:0;a:12:{s:5:"title";s:0:"";s:6:"height";s:3:"700";s:8:"latitude";s:9:"40.721819";s:9:"longitude";s:10:"-73.980427";s:4:"type";s:7:"ROADMAP";s:4:"zoom";s:2:"14";s:16:"show_mapcontrols";s:2:"on";s:10:"zoom_wheel";s:1:"0";s:11:"marker_info";s:0:"";s:5:"style";s:1258:"[{"featureType":"landscape.man_made","elementType":"geometry.fill","stylers":[{"color":"#e9e5dc"}]},{"featureType":"landscape.natural","elementType":"geometry.fill","stylers":[{"visibility":"on"},{"color":"#b8cb93"}]},{"featureType":"poi","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"poi.business","elementType":"all","stylers":[{"visibility":"simplified"}]},{"featureType":"poi.medical","elementType":"all","stylers":[{"visibility":"on"}]},{"featureType":"poi.park","elementType":"all","stylers":[{"visibility":"on"}]},{"featureType":"poi.park","elementType":"geometry.fill","stylers":[{"color":"#ccdca1"}]},{"featureType":"poi.sports_complex","elementType":"all","stylers":[{"visibility":"on"}]},{"featureType":"road","elementType":"geometry.fill","stylers":[{"hue":"#ff0000"},{"saturation":-100},{"lightness":99}]},{"featureType":"road","elementType":"geometry.stroke","stylers":[{"color":"#808080"},{"lightness":54},{"visibility":"off"}]},{"featureType":"road","elementType":"labels.text.fill","stylers":[{"color":"#767676"}]},{"featureType":"road","elementType":"labels.text.stroke","stylers":[{"color":"#ffffff"}]},{"featureType":"water","elementType":"all","stylers":[{"saturation":43},{"lightness":-11},{"color":"#89cada"}]}]";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:9:"aux_gmaps";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"e83cae51-90df-41de-ae83-bc28dcee99a0";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:6:{s:5:"title";s:12:"Contact Info";s:4:"text";s:343:"<p>When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road,</p><ul><li>Phone: (392) 583-2569</li><li>Email: support@dframeworks.com</li><li>Address: 400342 United Kingdom, Freeroad str.21, r. 94</li></ul>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"576e1c18ee122";s:11:"panels_info";a:6:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"28546c2e-e51a-47da-811f-51fec8b3f0cc";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:2;a:6:{s:5:"title";s:13:"Leave Comment";s:5:"email";s:0:"";s:4:"type";s:5:"phlox";s:13:"cf7_shortcode";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:16:"aux_contact_form";s:3:"raw";b:1;s:4:"grid";i:1;s:4:"cell";i:1;s:2:"id";i:2;s:9:"widget_id";s:36:"523a0cb0-5b72-45ff-8115-98bd13dc4d53";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:2:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:1;a:2:{s:5:"cells";i:2;s:5:"style";a:0:{}}}s:10:"grid_cells";a:3:{i:0;a:2:{s:4:"grid";i:0;s:6:"weight";i:1;}i:1;a:2:{s:4:"grid";i:1;s:6:"weight";d:0.5;}i:2;a:2:{s:4:"grid";i:1;s:6:"weight";d:0.5;}}}]]></wp:meta_value>
2196
+ </wp:postmeta>
2197
+ </item>
2198
+ <item>
2199
+ <title></title>
2200
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/08/08/126/</link>
2201
+ <pubDate>Mon, 08 Aug 2016 10:18:08 +0000</pubDate>
2202
+ <dc:creator><![CDATA[admin]]></dc:creator>
2203
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/2016/08/08/</guid>
2204
+ <description></description>
2205
+ <content:encoded><![CDATA[ ]]></content:encoded>
2206
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2207
+ <wp:post_id>126</wp:post_id>
2208
+ <wp:post_date><![CDATA[2016-08-08 10:18:08]]></wp:post_date>
2209
+ <wp:post_date_gmt><![CDATA[2016-08-08 10:18:08]]></wp:post_date_gmt>
2210
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
2211
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2212
+ <wp:post_name><![CDATA[126]]></wp:post_name>
2213
+ <wp:status><![CDATA[publish]]></wp:status>
2214
+ <wp:post_parent>0</wp:post_parent>
2215
+ <wp:menu_order>6</wp:menu_order>
2216
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
2217
+ <wp:post_password><![CDATA[]]></wp:post_password>
2218
+ <wp:is_sticky>0</wp:is_sticky>
2219
+ <category domain="nav_menu" nicename="header-menu"><![CDATA[Header Menu]]></category>
2220
+ <wp:postmeta>
2221
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
2222
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
2223
+ </wp:postmeta>
2224
+ <wp:postmeta>
2225
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
2226
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2227
+ </wp:postmeta>
2228
+ <wp:postmeta>
2229
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
2230
+ <wp:meta_value><![CDATA[45]]></wp:meta_value>
2231
+ </wp:postmeta>
2232
+ <wp:postmeta>
2233
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
2234
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
2235
+ </wp:postmeta>
2236
+ <wp:postmeta>
2237
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
2238
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2239
+ </wp:postmeta>
2240
+ <wp:postmeta>
2241
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
2242
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
2243
+ </wp:postmeta>
2244
+ <wp:postmeta>
2245
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
2246
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2247
+ </wp:postmeta>
2248
+ <wp:postmeta>
2249
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
2250
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2251
+ </wp:postmeta>
2252
+ <wp:postmeta>
2253
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
2254
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2255
+ </wp:postmeta>
2256
+ <wp:postmeta>
2257
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
2258
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2259
+ </wp:postmeta>
2260
+ <wp:postmeta>
2261
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
2262
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2263
+ </wp:postmeta>
2264
+ <wp:postmeta>
2265
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
2266
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2267
+ </wp:postmeta>
2268
+ <wp:postmeta>
2269
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
2270
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2271
+ </wp:postmeta>
2272
+ <wp:postmeta>
2273
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
2274
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2275
+ </wp:postmeta>
2276
+ <wp:postmeta>
2277
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
2278
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2279
+ </wp:postmeta>
2280
+ <wp:postmeta>
2281
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
2282
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2283
+ </wp:postmeta>
2284
+ <wp:postmeta>
2285
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
2286
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2287
+ </wp:postmeta>
2288
+ <wp:postmeta>
2289
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
2290
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2291
+ </wp:postmeta>
2292
+ <wp:postmeta>
2293
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
2294
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2295
+ </wp:postmeta>
2296
+ </item>
2297
+ <item>
2298
+ <title></title>
2299
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/08/08/127/</link>
2300
+ <pubDate>Mon, 08 Aug 2016 10:18:08 +0000</pubDate>
2301
+ <dc:creator><![CDATA[admin]]></dc:creator>
2302
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/2016/08/08/</guid>
2303
+ <description></description>
2304
+ <content:encoded><![CDATA[ ]]></content:encoded>
2305
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2306
+ <wp:post_id>127</wp:post_id>
2307
+ <wp:post_date><![CDATA[2016-08-08 10:18:08]]></wp:post_date>
2308
+ <wp:post_date_gmt><![CDATA[2016-08-08 10:18:08]]></wp:post_date_gmt>
2309
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
2310
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2311
+ <wp:post_name><![CDATA[127]]></wp:post_name>
2312
+ <wp:status><![CDATA[publish]]></wp:status>
2313
+ <wp:post_parent>0</wp:post_parent>
2314
+ <wp:menu_order>5</wp:menu_order>
2315
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
2316
+ <wp:post_password><![CDATA[]]></wp:post_password>
2317
+ <wp:is_sticky>0</wp:is_sticky>
2318
+ <category domain="nav_menu" nicename="header-menu"><![CDATA[Header Menu]]></category>
2319
+ <wp:postmeta>
2320
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
2321
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
2322
+ </wp:postmeta>
2323
+ <wp:postmeta>
2324
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
2325
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2326
+ </wp:postmeta>
2327
+ <wp:postmeta>
2328
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
2329
+ <wp:meta_value><![CDATA[37]]></wp:meta_value>
2330
+ </wp:postmeta>
2331
+ <wp:postmeta>
2332
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
2333
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
2334
+ </wp:postmeta>
2335
+ <wp:postmeta>
2336
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
2337
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2338
+ </wp:postmeta>
2339
+ <wp:postmeta>
2340
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
2341
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
2342
+ </wp:postmeta>
2343
+ <wp:postmeta>
2344
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
2345
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2346
+ </wp:postmeta>
2347
+ <wp:postmeta>
2348
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
2349
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2350
+ </wp:postmeta>
2351
+ <wp:postmeta>
2352
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
2353
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2354
+ </wp:postmeta>
2355
+ <wp:postmeta>
2356
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
2357
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2358
+ </wp:postmeta>
2359
+ <wp:postmeta>
2360
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
2361
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2362
+ </wp:postmeta>
2363
+ <wp:postmeta>
2364
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
2365
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2366
+ </wp:postmeta>
2367
+ <wp:postmeta>
2368
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
2369
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2370
+ </wp:postmeta>
2371
+ <wp:postmeta>
2372
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
2373
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2374
+ </wp:postmeta>
2375
+ <wp:postmeta>
2376
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
2377
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2378
+ </wp:postmeta>
2379
+ <wp:postmeta>
2380
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
2381
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2382
+ </wp:postmeta>
2383
+ <wp:postmeta>
2384
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
2385
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2386
+ </wp:postmeta>
2387
+ <wp:postmeta>
2388
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
2389
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2390
+ </wp:postmeta>
2391
+ <wp:postmeta>
2392
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
2393
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2394
+ </wp:postmeta>
2395
+ </item>
2396
+ <item>
2397
+ <title></title>
2398
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/08/08/128/</link>
2399
+ <pubDate>Mon, 08 Aug 2016 10:18:08 +0000</pubDate>
2400
+ <dc:creator><![CDATA[admin]]></dc:creator>
2401
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/2016/08/08/</guid>
2402
+ <description></description>
2403
+ <content:encoded><![CDATA[ ]]></content:encoded>
2404
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2405
+ <wp:post_id>128</wp:post_id>
2406
+ <wp:post_date><![CDATA[2016-08-08 10:18:08]]></wp:post_date>
2407
+ <wp:post_date_gmt><![CDATA[2016-08-08 10:18:08]]></wp:post_date_gmt>
2408
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
2409
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2410
+ <wp:post_name><![CDATA[128]]></wp:post_name>
2411
+ <wp:status><![CDATA[publish]]></wp:status>
2412
+ <wp:post_parent>0</wp:post_parent>
2413
+ <wp:menu_order>2</wp:menu_order>
2414
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
2415
+ <wp:post_password><![CDATA[]]></wp:post_password>
2416
+ <wp:is_sticky>0</wp:is_sticky>
2417
+ <category domain="nav_menu" nicename="header-menu"><![CDATA[Header Menu]]></category>
2418
+ <wp:postmeta>
2419
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
2420
+ <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value>
2421
+ </wp:postmeta>
2422
+ <wp:postmeta>
2423
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
2424
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2425
+ </wp:postmeta>
2426
+ <wp:postmeta>
2427
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
2428
+ <wp:meta_value><![CDATA[8]]></wp:meta_value>
2429
+ </wp:postmeta>
2430
+ <wp:postmeta>
2431
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
2432
+ <wp:meta_value><![CDATA[category]]></wp:meta_value>
2433
+ </wp:postmeta>
2434
+ <wp:postmeta>
2435
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
2436
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2437
+ </wp:postmeta>
2438
+ <wp:postmeta>
2439
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
2440
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
2441
+ </wp:postmeta>
2442
+ <wp:postmeta>
2443
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
2444
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2445
+ </wp:postmeta>
2446
+ <wp:postmeta>
2447
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
2448
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2449
+ </wp:postmeta>
2450
+ <wp:postmeta>
2451
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
2452
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2453
+ </wp:postmeta>
2454
+ <wp:postmeta>
2455
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
2456
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2457
+ </wp:postmeta>
2458
+ <wp:postmeta>
2459
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
2460
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2461
+ </wp:postmeta>
2462
+ <wp:postmeta>
2463
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
2464
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2465
+ </wp:postmeta>
2466
+ <wp:postmeta>
2467
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
2468
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2469
+ </wp:postmeta>
2470
+ <wp:postmeta>
2471
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
2472
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2473
+ </wp:postmeta>
2474
+ <wp:postmeta>
2475
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
2476
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2477
+ </wp:postmeta>
2478
+ <wp:postmeta>
2479
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
2480
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2481
+ </wp:postmeta>
2482
+ <wp:postmeta>
2483
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
2484
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2485
+ </wp:postmeta>
2486
+ <wp:postmeta>
2487
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
2488
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2489
+ </wp:postmeta>
2490
+ <wp:postmeta>
2491
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
2492
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2493
+ </wp:postmeta>
2494
+ </item>
2495
+ <item>
2496
+ <title>gallery201606280034</title>
2497
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280034/</link>
2498
+ <pubDate>Tue, 28 Jun 2016 12:27:51 +0000</pubDate>
2499
+ <dc:creator><![CDATA[admin]]></dc:creator>
2500
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280034.jpg</guid>
2501
+ <description></description>
2502
+ <content:encoded><![CDATA[]]></content:encoded>
2503
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2504
+ <wp:post_id>130</wp:post_id>
2505
+ <wp:post_date><![CDATA[2016-06-28 12:27:51]]></wp:post_date>
2506
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:51]]></wp:post_date_gmt>
2507
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2508
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2509
+ <wp:post_name><![CDATA[gallery201606280034]]></wp:post_name>
2510
+ <wp:status><![CDATA[inherit]]></wp:status>
2511
+ <wp:post_parent>112</wp:post_parent>
2512
+ <wp:menu_order>0</wp:menu_order>
2513
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2514
+ <wp:post_password><![CDATA[]]></wp:post_password>
2515
+ <wp:is_sticky>0</wp:is_sticky>
2516
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280034.jpg]]></wp:attachment_url>
2517
+ <wp:postmeta>
2518
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2519
+ <wp:meta_value><![CDATA[2016/06/gallery201606280034.jpg]]></wp:meta_value>
2520
+ </wp:postmeta>
2521
+ <wp:postmeta>
2522
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2523
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:5640;s:6:"height";i:3760;s:4:"file";s:31:"2016/06/gallery201606280034.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280034-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280034-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280034-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280034-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280034-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280034-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2524
+ </wp:postmeta>
2525
+ </item>
2526
+ <item>
2527
+ <title>gallery201606280035</title>
2528
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280035/</link>
2529
+ <pubDate>Tue, 28 Jun 2016 12:27:57 +0000</pubDate>
2530
+ <dc:creator><![CDATA[admin]]></dc:creator>
2531
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280035.jpg</guid>
2532
+ <description></description>
2533
+ <content:encoded><![CDATA[]]></content:encoded>
2534
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2535
+ <wp:post_id>131</wp:post_id>
2536
+ <wp:post_date><![CDATA[2016-06-28 12:27:57]]></wp:post_date>
2537
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:27:57]]></wp:post_date_gmt>
2538
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2539
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2540
+ <wp:post_name><![CDATA[gallery201606280035]]></wp:post_name>
2541
+ <wp:status><![CDATA[inherit]]></wp:status>
2542
+ <wp:post_parent>112</wp:post_parent>
2543
+ <wp:menu_order>0</wp:menu_order>
2544
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2545
+ <wp:post_password><![CDATA[]]></wp:post_password>
2546
+ <wp:is_sticky>0</wp:is_sticky>
2547
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280035.jpg]]></wp:attachment_url>
2548
+ <wp:postmeta>
2549
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2550
+ <wp:meta_value><![CDATA[2016/06/gallery201606280035.jpg]]></wp:meta_value>
2551
+ </wp:postmeta>
2552
+ <wp:postmeta>
2553
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2554
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:999;s:4:"file";s:31:"2016/06/gallery201606280035.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280035-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280035-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280035-768x511.jpg";s:5:"width";i:768;s:6:"height";i:511;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280035-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280035-1200x799.jpg";s:5:"width";i:1200;s:6:"height";i:799;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280035-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2555
+ </wp:postmeta>
2556
+ </item>
2557
+ <item>
2558
+ <title>gallery201606280036</title>
2559
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280036/</link>
2560
+ <pubDate>Tue, 28 Jun 2016 12:28:00 +0000</pubDate>
2561
+ <dc:creator><![CDATA[admin]]></dc:creator>
2562
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280036.jpg</guid>
2563
+ <description></description>
2564
+ <content:encoded><![CDATA[]]></content:encoded>
2565
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2566
+ <wp:post_id>132</wp:post_id>
2567
+ <wp:post_date><![CDATA[2016-06-28 12:28:00]]></wp:post_date>
2568
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:28:00]]></wp:post_date_gmt>
2569
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2570
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2571
+ <wp:post_name><![CDATA[gallery201606280036]]></wp:post_name>
2572
+ <wp:status><![CDATA[inherit]]></wp:status>
2573
+ <wp:post_parent>112</wp:post_parent>
2574
+ <wp:menu_order>0</wp:menu_order>
2575
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2576
+ <wp:post_password><![CDATA[]]></wp:post_password>
2577
+ <wp:is_sticky>0</wp:is_sticky>
2578
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280036.jpg]]></wp:attachment_url>
2579
+ <wp:postmeta>
2580
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2581
+ <wp:meta_value><![CDATA[2016/06/gallery201606280036.jpg]]></wp:meta_value>
2582
+ </wp:postmeta>
2583
+ <wp:postmeta>
2584
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2585
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:1002;s:4:"file";s:31:"2016/06/gallery201606280036.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280036-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280036-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280036-768x513.jpg";s:5:"width";i:768;s:6:"height";i:513;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280036-1024x684.jpg";s:5:"width";i:1024;s:6:"height";i:684;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280036-1200x802.jpg";s:5:"width";i:1200;s:6:"height";i:802;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280036-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2586
+ </wp:postmeta>
2587
+ </item>
2588
+ <item>
2589
+ <title>gallery201606280037</title>
2590
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280037/</link>
2591
+ <pubDate>Tue, 28 Jun 2016 12:28:03 +0000</pubDate>
2592
+ <dc:creator><![CDATA[admin]]></dc:creator>
2593
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280037.jpg</guid>
2594
+ <description></description>
2595
+ <content:encoded><![CDATA[]]></content:encoded>
2596
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2597
+ <wp:post_id>133</wp:post_id>
2598
+ <wp:post_date><![CDATA[2016-06-28 12:28:03]]></wp:post_date>
2599
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:28:03]]></wp:post_date_gmt>
2600
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2601
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2602
+ <wp:post_name><![CDATA[gallery201606280037]]></wp:post_name>
2603
+ <wp:status><![CDATA[inherit]]></wp:status>
2604
+ <wp:post_parent>112</wp:post_parent>
2605
+ <wp:menu_order>0</wp:menu_order>
2606
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2607
+ <wp:post_password><![CDATA[]]></wp:post_password>
2608
+ <wp:is_sticky>0</wp:is_sticky>
2609
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280037.jpg]]></wp:attachment_url>
2610
+ <wp:postmeta>
2611
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2612
+ <wp:meta_value><![CDATA[2016/06/gallery201606280037.jpg]]></wp:meta_value>
2613
+ </wp:postmeta>
2614
+ <wp:postmeta>
2615
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2616
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1073;s:6:"height";i:1500;s:4:"file";s:31:"2016/06/gallery201606280037.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280037-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280037-215x300.jpg";s:5:"width";i:215;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:32:"gallery201606280037-768x1074.jpg";s:5:"width";i:768;s:6:"height";i:1074;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280037-733x1024.jpg";s:5:"width";i:733;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280037-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2617
+ </wp:postmeta>
2618
+ </item>
2619
+ <item>
2620
+ <title>gallery201606280038</title>
2621
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280038/</link>
2622
+ <pubDate>Tue, 28 Jun 2016 12:28:07 +0000</pubDate>
2623
+ <dc:creator><![CDATA[admin]]></dc:creator>
2624
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280038.jpg</guid>
2625
+ <description></description>
2626
+ <content:encoded><![CDATA[]]></content:encoded>
2627
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2628
+ <wp:post_id>134</wp:post_id>
2629
+ <wp:post_date><![CDATA[2016-06-28 12:28:07]]></wp:post_date>
2630
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:28:07]]></wp:post_date_gmt>
2631
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2632
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2633
+ <wp:post_name><![CDATA[gallery201606280038]]></wp:post_name>
2634
+ <wp:status><![CDATA[inherit]]></wp:status>
2635
+ <wp:post_parent>112</wp:post_parent>
2636
+ <wp:menu_order>0</wp:menu_order>
2637
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2638
+ <wp:post_password><![CDATA[]]></wp:post_password>
2639
+ <wp:is_sticky>0</wp:is_sticky>
2640
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280038.jpg]]></wp:attachment_url>
2641
+ <wp:postmeta>
2642
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2643
+ <wp:meta_value><![CDATA[2016/06/gallery201606280038.jpg]]></wp:meta_value>
2644
+ </wp:postmeta>
2645
+ <wp:postmeta>
2646
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2647
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:1125;s:4:"file";s:31:"2016/06/gallery201606280038.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280038-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280038-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280038-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280038-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280038-1200x900.jpg";s:5:"width";i:1200;s:6:"height";i:900;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280038-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2648
+ </wp:postmeta>
2649
+ </item>
2650
+ <item>
2651
+ <title>gallery201606280039</title>
2652
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280039/</link>
2653
+ <pubDate>Tue, 28 Jun 2016 12:28:09 +0000</pubDate>
2654
+ <dc:creator><![CDATA[admin]]></dc:creator>
2655
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280039.jpg</guid>
2656
+ <description></description>
2657
+ <content:encoded><![CDATA[]]></content:encoded>
2658
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2659
+ <wp:post_id>135</wp:post_id>
2660
+ <wp:post_date><![CDATA[2016-06-28 12:28:09]]></wp:post_date>
2661
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:28:09]]></wp:post_date_gmt>
2662
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2663
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2664
+ <wp:post_name><![CDATA[gallery201606280039]]></wp:post_name>
2665
+ <wp:status><![CDATA[inherit]]></wp:status>
2666
+ <wp:post_parent>112</wp:post_parent>
2667
+ <wp:menu_order>0</wp:menu_order>
2668
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2669
+ <wp:post_password><![CDATA[]]></wp:post_password>
2670
+ <wp:is_sticky>0</wp:is_sticky>
2671
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280039.jpg]]></wp:attachment_url>
2672
+ <wp:postmeta>
2673
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2674
+ <wp:meta_value><![CDATA[2016/06/gallery201606280039.jpg]]></wp:meta_value>
2675
+ </wp:postmeta>
2676
+ <wp:postmeta>
2677
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2678
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:1000;s:4:"file";s:31:"2016/06/gallery201606280039.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280039-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280039-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280039-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280039-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280039-1200x800.jpg";s:5:"width";i:1200;s:6:"height";i:800;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280039-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2679
+ </wp:postmeta>
2680
+ </item>
2681
+ <item>
2682
+ <title>gallery201606280040</title>
2683
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/gallery201606280040/</link>
2684
+ <pubDate>Tue, 28 Jun 2016 12:28:11 +0000</pubDate>
2685
+ <dc:creator><![CDATA[admin]]></dc:creator>
2686
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280040.jpg</guid>
2687
+ <description></description>
2688
+ <content:encoded><![CDATA[]]></content:encoded>
2689
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2690
+ <wp:post_id>136</wp:post_id>
2691
+ <wp:post_date><![CDATA[2016-06-28 12:28:11]]></wp:post_date>
2692
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:28:11]]></wp:post_date_gmt>
2693
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2694
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2695
+ <wp:post_name><![CDATA[gallery201606280040]]></wp:post_name>
2696
+ <wp:status><![CDATA[inherit]]></wp:status>
2697
+ <wp:post_parent>112</wp:post_parent>
2698
+ <wp:menu_order>0</wp:menu_order>
2699
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2700
+ <wp:post_password><![CDATA[]]></wp:post_password>
2701
+ <wp:is_sticky>0</wp:is_sticky>
2702
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/06/gallery201606280040.jpg]]></wp:attachment_url>
2703
+ <wp:postmeta>
2704
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2705
+ <wp:meta_value><![CDATA[2016/06/gallery201606280040.jpg]]></wp:meta_value>
2706
+ </wp:postmeta>
2707
+ <wp:postmeta>
2708
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2709
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1500;s:6:"height";i:885;s:4:"file";s:31:"2016/06/gallery201606280040.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"gallery201606280040-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"gallery201606280040-300x177.jpg";s:5:"width";i:300;s:6:"height";i:177;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"gallery201606280040-768x453.jpg";s:5:"width";i:768;s:6:"height";i:453;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"gallery201606280040-1024x604.jpg";s:5:"width";i:1024;s:6:"height";i:604;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gallery201606280040-1200x708.jpg";s:5:"width";i:1200;s:6:"height";i:708;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"gallery201606280040-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2710
+ </wp:postmeta>
2711
+ </item>
2712
+ <item>
2713
+ <title></title>
2714
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/08/08/137/</link>
2715
+ <pubDate>Mon, 08 Aug 2016 10:18:13 +0000</pubDate>
2716
+ <dc:creator><![CDATA[admin]]></dc:creator>
2717
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/2016/08/08/</guid>
2718
+ <description></description>
2719
+ <content:encoded><![CDATA[ ]]></content:encoded>
2720
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2721
+ <wp:post_id>137</wp:post_id>
2722
+ <wp:post_date><![CDATA[2016-08-08 10:18:13]]></wp:post_date>
2723
+ <wp:post_date_gmt><![CDATA[2016-08-08 10:18:13]]></wp:post_date_gmt>
2724
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
2725
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2726
+ <wp:post_name><![CDATA[137]]></wp:post_name>
2727
+ <wp:status><![CDATA[publish]]></wp:status>
2728
+ <wp:post_parent>0</wp:post_parent>
2729
+ <wp:menu_order>4</wp:menu_order>
2730
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
2731
+ <wp:post_password><![CDATA[]]></wp:post_password>
2732
+ <wp:is_sticky>0</wp:is_sticky>
2733
+ <category domain="nav_menu" nicename="header-menu"><![CDATA[Header Menu]]></category>
2734
+ <wp:postmeta>
2735
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
2736
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
2737
+ </wp:postmeta>
2738
+ <wp:postmeta>
2739
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
2740
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2741
+ </wp:postmeta>
2742
+ <wp:postmeta>
2743
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
2744
+ <wp:meta_value><![CDATA[112]]></wp:meta_value>
2745
+ </wp:postmeta>
2746
+ <wp:postmeta>
2747
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
2748
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
2749
+ </wp:postmeta>
2750
+ <wp:postmeta>
2751
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
2752
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2753
+ </wp:postmeta>
2754
+ <wp:postmeta>
2755
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
2756
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
2757
+ </wp:postmeta>
2758
+ <wp:postmeta>
2759
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
2760
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2761
+ </wp:postmeta>
2762
+ <wp:postmeta>
2763
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
2764
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2765
+ </wp:postmeta>
2766
+ <wp:postmeta>
2767
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
2768
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2769
+ </wp:postmeta>
2770
+ <wp:postmeta>
2771
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
2772
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2773
+ </wp:postmeta>
2774
+ <wp:postmeta>
2775
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
2776
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2777
+ </wp:postmeta>
2778
+ <wp:postmeta>
2779
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
2780
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2781
+ </wp:postmeta>
2782
+ <wp:postmeta>
2783
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
2784
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2785
+ </wp:postmeta>
2786
+ <wp:postmeta>
2787
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
2788
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2789
+ </wp:postmeta>
2790
+ <wp:postmeta>
2791
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
2792
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2793
+ </wp:postmeta>
2794
+ <wp:postmeta>
2795
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
2796
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2797
+ </wp:postmeta>
2798
+ <wp:postmeta>
2799
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
2800
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2801
+ </wp:postmeta>
2802
+ <wp:postmeta>
2803
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
2804
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2805
+ </wp:postmeta>
2806
+ <wp:postmeta>
2807
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
2808
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2809
+ </wp:postmeta>
2810
+ </item>
2811
+ <item>
2812
+ <title>icon</title>
2813
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/icon/</link>
2814
+ <pubDate>Mon, 04 Jul 2016 05:38:39 +0000</pubDate>
2815
+ <dc:creator><![CDATA[admin]]></dc:creator>
2816
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/07/icon.png</guid>
2817
+ <description></description>
2818
+ <content:encoded><![CDATA[]]></content:encoded>
2819
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2820
+ <wp:post_id>159</wp:post_id>
2821
+ <wp:post_date><![CDATA[2016-07-04 05:38:39]]></wp:post_date>
2822
+ <wp:post_date_gmt><![CDATA[2016-07-04 05:38:39]]></wp:post_date_gmt>
2823
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2824
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2825
+ <wp:post_name><![CDATA[icon]]></wp:post_name>
2826
+ <wp:status><![CDATA[inherit]]></wp:status>
2827
+ <wp:post_parent>0</wp:post_parent>
2828
+ <wp:menu_order>0</wp:menu_order>
2829
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2830
+ <wp:post_password><![CDATA[]]></wp:post_password>
2831
+ <wp:is_sticky>0</wp:is_sticky>
2832
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/icon.png]]></wp:attachment_url>
2833
+ <wp:postmeta>
2834
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2835
+ <wp:meta_value><![CDATA[2016/07/icon.png]]></wp:meta_value>
2836
+ </wp:postmeta>
2837
+ <wp:postmeta>
2838
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2839
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:512;s:6:"height";i:512;s:4:"file";s:16:"2016/07/icon.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"icon-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:16:"icon-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:16:"icon-272x182.png";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:9:"image/png";}}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>
2840
+ </wp:postmeta>
2841
+ </item>
2842
+ <item>
2843
+ <title>cropped-icon.png</title>
2844
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/cropped-icon-png/</link>
2845
+ <pubDate>Mon, 04 Jul 2016 05:38:42 +0000</pubDate>
2846
+ <dc:creator><![CDATA[admin]]></dc:creator>
2847
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/07/cropped-icon.png</guid>
2848
+ <description></description>
2849
+ <content:encoded><![CDATA[http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/07/cropped-icon.png]]></content:encoded>
2850
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2851
+ <wp:post_id>160</wp:post_id>
2852
+ <wp:post_date><![CDATA[2016-07-04 05:38:42]]></wp:post_date>
2853
+ <wp:post_date_gmt><![CDATA[2016-07-04 05:38:42]]></wp:post_date_gmt>
2854
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2855
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2856
+ <wp:post_name><![CDATA[cropped-icon-png]]></wp:post_name>
2857
+ <wp:status><![CDATA[inherit]]></wp:status>
2858
+ <wp:post_parent>0</wp:post_parent>
2859
+ <wp:menu_order>0</wp:menu_order>
2860
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2861
+ <wp:post_password><![CDATA[]]></wp:post_password>
2862
+ <wp:is_sticky>0</wp:is_sticky>
2863
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/cropped-icon.png]]></wp:attachment_url>
2864
+ <wp:postmeta>
2865
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2866
+ <wp:meta_value><![CDATA[2016/07/cropped-icon.png]]></wp:meta_value>
2867
+ </wp:postmeta>
2868
+ <wp:postmeta>
2869
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2870
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:512;s:6:"height";i:512;s:4:"file";s:24:"2016/07/cropped-icon.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"cropped-icon-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:24:"cropped-icon-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"cropped-icon-272x182.png";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:9:"image/png";}}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>
2871
+ </wp:postmeta>
2872
+ <wp:postmeta>
2873
+ <wp:meta_key><![CDATA[_wp_attachment_context]]></wp:meta_key>
2874
+ <wp:meta_value><![CDATA[site-icon]]></wp:meta_value>
2875
+ </wp:postmeta>
2876
+ </item>
2877
+ <item>
2878
+ <title>ad</title>
2879
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/ad/</link>
2880
+ <pubDate>Sat, 09 Jul 2016 05:34:59 +0000</pubDate>
2881
+ <dc:creator><![CDATA[admin]]></dc:creator>
2882
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/07/ad.jpg</guid>
2883
+ <description></description>
2884
+ <content:encoded><![CDATA[]]></content:encoded>
2885
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2886
+ <wp:post_id>163</wp:post_id>
2887
+ <wp:post_date><![CDATA[2016-07-09 05:34:59]]></wp:post_date>
2888
+ <wp:post_date_gmt><![CDATA[2016-07-09 05:34:59]]></wp:post_date_gmt>
2889
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2890
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2891
+ <wp:post_name><![CDATA[ad]]></wp:post_name>
2892
+ <wp:status><![CDATA[inherit]]></wp:status>
2893
+ <wp:post_parent>0</wp:post_parent>
2894
+ <wp:menu_order>0</wp:menu_order>
2895
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2896
+ <wp:post_password><![CDATA[]]></wp:post_password>
2897
+ <wp:is_sticky>0</wp:is_sticky>
2898
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/ad.jpg]]></wp:attachment_url>
2899
+ <wp:postmeta>
2900
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2901
+ <wp:meta_value><![CDATA[2016/07/ad.jpg]]></wp:meta_value>
2902
+ </wp:postmeta>
2903
+ <wp:postmeta>
2904
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2905
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:239;s:6:"height";i:239;s:4:"file";s:14:"2016/07/ad.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"ad-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:14:"ad-239x182.jpg";s:5:"width";i:239;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2906
+ </wp:postmeta>
2907
+ </item>
2908
+ <item>
2909
+ <title></title>
2910
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/08/08/169/</link>
2911
+ <pubDate>Mon, 08 Aug 2016 10:18:14 +0000</pubDate>
2912
+ <dc:creator><![CDATA[admin]]></dc:creator>
2913
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/2016/08/08/</guid>
2914
+ <description></description>
2915
+ <content:encoded><![CDATA[ ]]></content:encoded>
2916
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2917
+ <wp:post_id>169</wp:post_id>
2918
+ <wp:post_date><![CDATA[2016-08-08 10:18:14]]></wp:post_date>
2919
+ <wp:post_date_gmt><![CDATA[2016-08-08 10:18:14]]></wp:post_date_gmt>
2920
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
2921
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2922
+ <wp:post_name><![CDATA[169]]></wp:post_name>
2923
+ <wp:status><![CDATA[publish]]></wp:status>
2924
+ <wp:post_parent>0</wp:post_parent>
2925
+ <wp:menu_order>3</wp:menu_order>
2926
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
2927
+ <wp:post_password><![CDATA[]]></wp:post_password>
2928
+ <wp:is_sticky>0</wp:is_sticky>
2929
+ <category domain="nav_menu" nicename="header-menu"><![CDATA[Header Menu]]></category>
2930
+ <wp:postmeta>
2931
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
2932
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
2933
+ </wp:postmeta>
2934
+ <wp:postmeta>
2935
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
2936
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2937
+ </wp:postmeta>
2938
+ <wp:postmeta>
2939
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
2940
+ <wp:meta_value><![CDATA[168]]></wp:meta_value>
2941
+ </wp:postmeta>
2942
+ <wp:postmeta>
2943
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
2944
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
2945
+ </wp:postmeta>
2946
+ <wp:postmeta>
2947
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
2948
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2949
+ </wp:postmeta>
2950
+ <wp:postmeta>
2951
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
2952
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
2953
+ </wp:postmeta>
2954
+ <wp:postmeta>
2955
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
2956
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2957
+ </wp:postmeta>
2958
+ <wp:postmeta>
2959
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
2960
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2961
+ </wp:postmeta>
2962
+ <wp:postmeta>
2963
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
2964
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2965
+ </wp:postmeta>
2966
+ <wp:postmeta>
2967
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
2968
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2969
+ </wp:postmeta>
2970
+ <wp:postmeta>
2971
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
2972
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2973
+ </wp:postmeta>
2974
+ <wp:postmeta>
2975
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
2976
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2977
+ </wp:postmeta>
2978
+ <wp:postmeta>
2979
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
2980
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2981
+ </wp:postmeta>
2982
+ <wp:postmeta>
2983
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
2984
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2985
+ </wp:postmeta>
2986
+ <wp:postmeta>
2987
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
2988
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2989
+ </wp:postmeta>
2990
+ <wp:postmeta>
2991
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
2992
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2993
+ </wp:postmeta>
2994
+ <wp:postmeta>
2995
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
2996
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2997
+ </wp:postmeta>
2998
+ <wp:postmeta>
2999
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3000
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3001
+ </wp:postmeta>
3002
+ <wp:postmeta>
3003
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3004
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3005
+ </wp:postmeta>
3006
+ </item>
3007
+ <item>
3008
+ <title>Home</title>
3009
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/09/10/home-2/</link>
3010
+ <pubDate>Sat, 10 Sep 2016 11:28:30 +0000</pubDate>
3011
+ <dc:creator><![CDATA[admin]]></dc:creator>
3012
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/classic-blog/?p=171</guid>
3013
+ <description></description>
3014
+ <content:encoded><![CDATA[]]></content:encoded>
3015
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3016
+ <wp:post_id>171</wp:post_id>
3017
+ <wp:post_date><![CDATA[2016-09-10 11:28:30]]></wp:post_date>
3018
+ <wp:post_date_gmt><![CDATA[2016-09-10 11:28:30]]></wp:post_date_gmt>
3019
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3020
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3021
+ <wp:post_name><![CDATA[home-2]]></wp:post_name>
3022
+ <wp:status><![CDATA[publish]]></wp:status>
3023
+ <wp:post_parent>0</wp:post_parent>
3024
+ <wp:menu_order>1</wp:menu_order>
3025
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3026
+ <wp:post_password><![CDATA[]]></wp:post_password>
3027
+ <wp:is_sticky>0</wp:is_sticky>
3028
+ <category domain="nav_menu" nicename="header-menu"><![CDATA[Header Menu]]></category>
3029
+ <wp:postmeta>
3030
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3031
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
3032
+ </wp:postmeta>
3033
+ <wp:postmeta>
3034
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3035
+ <wp:meta_value><![CDATA[171]]></wp:meta_value>
3036
+ </wp:postmeta>
3037
+ <wp:postmeta>
3038
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3039
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3040
+ </wp:postmeta>
3041
+ <wp:postmeta>
3042
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3043
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
3044
+ </wp:postmeta>
3045
+ <wp:postmeta>
3046
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3047
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3048
+ </wp:postmeta>
3049
+ <wp:postmeta>
3050
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3051
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3052
+ </wp:postmeta>
3053
+ <wp:postmeta>
3054
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3055
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3056
+ </wp:postmeta>
3057
+ <wp:postmeta>
3058
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3059
+ <wp:meta_value><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/]]></wp:meta_value>
3060
+ </wp:postmeta>
3061
+ <wp:postmeta>
3062
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3063
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3064
+ </wp:postmeta>
3065
+ <wp:postmeta>
3066
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3067
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3068
+ </wp:postmeta>
3069
+ <wp:postmeta>
3070
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3071
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3072
+ </wp:postmeta>
3073
+ <wp:postmeta>
3074
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3075
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3076
+ </wp:postmeta>
3077
+ <wp:postmeta>
3078
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3079
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3080
+ </wp:postmeta>
3081
+ <wp:postmeta>
3082
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
3083
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3084
+ </wp:postmeta>
3085
+ <wp:postmeta>
3086
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
3087
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3088
+ </wp:postmeta>
3089
+ <wp:postmeta>
3090
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
3091
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3092
+ </wp:postmeta>
3093
+ <wp:postmeta>
3094
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
3095
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3096
+ </wp:postmeta>
3097
+ <wp:postmeta>
3098
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3099
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3100
+ </wp:postmeta>
3101
+ <wp:postmeta>
3102
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3103
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3104
+ </wp:postmeta>
3105
+ </item>
3106
+ <item>
3107
+ <title>logo-averta</title>
3108
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/logo-averta/</link>
3109
+ <pubDate>Sun, 11 Sep 2016 05:59:09 +0000</pubDate>
3110
+ <dc:creator><![CDATA[admin]]></dc:creator>
3111
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/09/Logo-averta.png</guid>
3112
+ <description></description>
3113
+ <content:encoded><![CDATA[]]></content:encoded>
3114
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3115
+ <wp:post_id>172</wp:post_id>
3116
+ <wp:post_date><![CDATA[2016-09-11 05:59:09]]></wp:post_date>
3117
+ <wp:post_date_gmt><![CDATA[2016-09-11 05:59:09]]></wp:post_date_gmt>
3118
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
3119
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3120
+ <wp:post_name><![CDATA[logo-averta]]></wp:post_name>
3121
+ <wp:status><![CDATA[inherit]]></wp:status>
3122
+ <wp:post_parent>0</wp:post_parent>
3123
+ <wp:menu_order>0</wp:menu_order>
3124
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
3125
+ <wp:post_password><![CDATA[]]></wp:post_password>
3126
+ <wp:is_sticky>0</wp:is_sticky>
3127
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/09/Logo-averta.png]]></wp:attachment_url>
3128
+ <wp:postmeta>
3129
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
3130
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1136;s:6:"height";i:212;s:4:"file";s:23:"2016/09/Logo-averta.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Logo-averta-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:22:"Logo-averta-300x56.png";s:5:"width";i:300;s:6:"height";i:56;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:23:"Logo-averta-768x143.png";s:5:"width";i:768;s:6:"height";i:143;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:24:"Logo-averta-1024x191.png";s:5:"width";i:1024;s:6:"height";i:191;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"Logo-averta-280x180.png";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:23:"Logo-averta-272x182.png";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:9:"image/png";}}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>
3131
+ </wp:postmeta>
3132
+ <wp:postmeta>
3133
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
3134
+ <wp:meta_value><![CDATA[2016/09/Logo-averta.png]]></wp:meta_value>
3135
+ </wp:postmeta>
3136
+ </item>
3137
+ <item>
3138
+ <title>sample-image</title>
3139
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/typography/sample-image/</link>
3140
+ <pubDate>Sat, 17 Sep 2016 11:42:37 +0000</pubDate>
3141
+ <dc:creator><![CDATA[admin]]></dc:creator>
3142
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image.jpg</guid>
3143
+ <description></description>
3144
+ <content:encoded><![CDATA[]]></content:encoded>
3145
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3146
+ <wp:post_id>173</wp:post_id>
3147
+ <wp:post_date><![CDATA[2016-09-17 11:42:37]]></wp:post_date>
3148
+ <wp:post_date_gmt><![CDATA[2016-09-17 11:42:37]]></wp:post_date_gmt>
3149
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
3150
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3151
+ <wp:post_name><![CDATA[sample-image]]></wp:post_name>
3152
+ <wp:status><![CDATA[inherit]]></wp:status>
3153
+ <wp:post_parent>168</wp:post_parent>
3154
+ <wp:menu_order>0</wp:menu_order>
3155
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
3156
+ <wp:post_password><![CDATA[]]></wp:post_password>
3157
+ <wp:is_sticky>0</wp:is_sticky>
3158
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image.jpg]]></wp:attachment_url>
3159
+ <wp:postmeta>
3160
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
3161
+ <wp:meta_value><![CDATA[2016/07/sample-image.jpg]]></wp:meta_value>
3162
+ </wp:postmeta>
3163
+ <wp:postmeta>
3164
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
3165
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:250;s:6:"height";i:250;s:4:"file";s:24:"2016/07/sample-image.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"sample-image-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"sample-image-250x180.jpg";s:5:"width";i:250;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"sample-image-250x182.jpg";s:5:"width";i:250;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
3166
+ </wp:postmeta>
3167
+ </item>
3168
+ <item>
3169
+ <title>Sample Page</title>
3170
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/sample-page/</link>
3171
+ <pubDate>Mon, 08 Aug 2016 10:14:38 +0000</pubDate>
3172
+ <dc:creator><![CDATA[admin]]></dc:creator>
3173
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/journey/?page_id=2</guid>
3174
+ <description></description>
3175
+ <content:encoded><![CDATA[]]></content:encoded>
3176
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3177
+ <wp:post_id>2</wp:post_id>
3178
+ <wp:post_date><![CDATA[2016-08-08 10:14:38]]></wp:post_date>
3179
+ <wp:post_date_gmt><![CDATA[2016-08-08 10:14:38]]></wp:post_date_gmt>
3180
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3181
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
3182
+ <wp:post_name><![CDATA[sample-page]]></wp:post_name>
3183
+ <wp:status><![CDATA[publish]]></wp:status>
3184
+ <wp:post_parent>0</wp:post_parent>
3185
+ <wp:menu_order>0</wp:menu_order>
3186
+ <wp:post_type><![CDATA[page]]></wp:post_type>
3187
+ <wp:post_password><![CDATA[]]></wp:post_password>
3188
+ <wp:is_sticky>0</wp:is_sticky>
3189
+ <wp:postmeta>
3190
+ <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
3191
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
3192
+ </wp:postmeta>
3193
+ </item>
3194
+ <item>
3195
+ <title>Standard Post Format</title>
3196
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/22/standard-post-format/</link>
3197
+ <pubDate>Wed, 22 Jun 2016 11:53:24 +0000</pubDate>
3198
+ <dc:creator><![CDATA[admin]]></dc:creator>
3199
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=7</guid>
3200
+ <description></description>
3201
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
3202
+
3203
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
3204
+
3205
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
3206
+
3207
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
3208
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
3209
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
3210
+
3211
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.]]></content:encoded>
3212
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3213
+ <wp:post_id>7</wp:post_id>
3214
+ <wp:post_date><![CDATA[2016-06-22 11:53:24]]></wp:post_date>
3215
+ <wp:post_date_gmt><![CDATA[2016-06-22 11:53:24]]></wp:post_date_gmt>
3216
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
3217
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
3218
+ <wp:post_name><![CDATA[standard-post-format]]></wp:post_name>
3219
+ <wp:status><![CDATA[publish]]></wp:status>
3220
+ <wp:post_parent>0</wp:post_parent>
3221
+ <wp:menu_order>0</wp:menu_order>
3222
+ <wp:post_type><![CDATA[post]]></wp:post_type>
3223
+ <wp:post_password><![CDATA[]]></wp:post_password>
3224
+ <wp:is_sticky>0</wp:is_sticky>
3225
+ <category domain="post_tag" nicename="article"><![CDATA[Article]]></category>
3226
+ <category domain="post_tag" nicename="blogging"><![CDATA[Blogging]]></category>
3227
+ <category domain="post_tag" nicename="journalism"><![CDATA[Journalism]]></category>
3228
+ <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
3229
+ <category domain="category" nicename="travel"><![CDATA[Travel]]></category>
3230
+ <wp:postmeta>
3231
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
3232
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3233
+ </wp:postmeta>
3234
+ <wp:postmeta>
3235
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
3236
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3237
+ </wp:postmeta>
3238
+ <wp:postmeta>
3239
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
3240
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3241
+ </wp:postmeta>
3242
+ <wp:postmeta>
3243
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
3244
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3245
+ </wp:postmeta>
3246
+ <wp:postmeta>
3247
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
3248
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3249
+ </wp:postmeta>
3250
+ <wp:postmeta>
3251
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
3252
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3253
+ </wp:postmeta>
3254
+ <wp:postmeta>
3255
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
3256
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3257
+ </wp:postmeta>
3258
+ <wp:postmeta>
3259
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
3260
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
3261
+ </wp:postmeta>
3262
+ <wp:postmeta>
3263
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
3264
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3265
+ </wp:postmeta>
3266
+ <wp:postmeta>
3267
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
3268
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
3269
+ </wp:postmeta>
3270
+ <wp:postmeta>
3271
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
3272
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3273
+ </wp:postmeta>
3274
+ <wp:postmeta>
3275
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
3276
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
3277
+ </wp:postmeta>
3278
+ <wp:postmeta>
3279
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
3280
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3281
+ </wp:postmeta>
3282
+ <wp:postmeta>
3283
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
3284
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3285
+ </wp:postmeta>
3286
+ <wp:postmeta>
3287
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
3288
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3289
+ </wp:postmeta>
3290
+ <wp:postmeta>
3291
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
3292
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3293
+ </wp:postmeta>
3294
+ <wp:postmeta>
3295
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
3296
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3297
+ </wp:postmeta>
3298
+ <wp:postmeta>
3299
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
3300
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
3301
+ </wp:postmeta>
3302
+ <wp:postmeta>
3303
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
3304
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
3305
+ </wp:postmeta>
3306
+ <wp:postmeta>
3307
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
3308
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
3309
+ </wp:postmeta>
3310
+ <wp:postmeta>
3311
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
3312
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
3313
+ </wp:postmeta>
3314
+ <wp:postmeta>
3315
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
3316
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3317
+ </wp:postmeta>
3318
+ <wp:postmeta>
3319
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
3320
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3321
+ </wp:postmeta>
3322
+ <wp:postmeta>
3323
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
3324
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
3325
+ </wp:postmeta>
3326
+ <wp:postmeta>
3327
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
3328
+ <wp:meta_value><![CDATA[10]]></wp:meta_value>
3329
+ </wp:postmeta>
3330
+ <wp:comment>
3331
+ <wp:comment_id>2</wp:comment_id>
3332
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
3333
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
3334
+ <wp:comment_author_url></wp:comment_author_url>
3335
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3336
+ <wp:comment_date><![CDATA[2016-07-03 08:12:26]]></wp:comment_date>
3337
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:12:26]]></wp:comment_date_gmt>
3338
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
3339
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3340
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3341
+ <wp:comment_parent>0</wp:comment_parent>
3342
+ <wp:comment_user_id>0</wp:comment_user_id>
3343
+ </wp:comment>
3344
+ <wp:comment>
3345
+ <wp:comment_id>3</wp:comment_id>
3346
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
3347
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
3348
+ <wp:comment_author_url></wp:comment_author_url>
3349
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3350
+ <wp:comment_date><![CDATA[2016-07-03 08:12:46]]></wp:comment_date>
3351
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:12:46]]></wp:comment_date_gmt>
3352
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
3353
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3354
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3355
+ <wp:comment_parent>2</wp:comment_parent>
3356
+ <wp:comment_user_id>0</wp:comment_user_id>
3357
+ </wp:comment>
3358
+ <wp:comment>
3359
+ <wp:comment_id>4</wp:comment_id>
3360
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
3361
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
3362
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
3363
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3364
+ <wp:comment_date><![CDATA[2016-07-03 08:14:11]]></wp:comment_date>
3365
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:14:11]]></wp:comment_date_gmt>
3366
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
3367
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3368
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3369
+ <wp:comment_parent>0</wp:comment_parent>
3370
+ <wp:comment_user_id>0</wp:comment_user_id>
3371
+ </wp:comment>
3372
+ <wp:comment>
3373
+ <wp:comment_id>5</wp:comment_id>
3374
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
3375
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
3376
+ <wp:comment_author_url></wp:comment_author_url>
3377
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3378
+ <wp:comment_date><![CDATA[2016-07-03 08:14:32]]></wp:comment_date>
3379
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:14:32]]></wp:comment_date_gmt>
3380
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
3381
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3382
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3383
+ <wp:comment_parent>0</wp:comment_parent>
3384
+ <wp:comment_user_id>0</wp:comment_user_id>
3385
+ </wp:comment>
3386
+ </item>
3387
+ <item>
3388
+ <title>Image Post Format</title>
3389
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/03/18/image-post-format/</link>
3390
+ <pubDate>Fri, 18 Mar 2016 04:52:55 +0000</pubDate>
3391
+ <dc:creator><![CDATA[admin]]></dc:creator>
3392
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=17</guid>
3393
+ <description></description>
3394
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
3395
+
3396
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
3397
+
3398
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
3399
+
3400
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
3401
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
3402
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
3403
+
3404
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.]]></content:encoded>
3405
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3406
+ <wp:post_id>17</wp:post_id>
3407
+ <wp:post_date><![CDATA[2016-03-18 04:52:55]]></wp:post_date>
3408
+ <wp:post_date_gmt><![CDATA[2016-03-18 04:52:55]]></wp:post_date_gmt>
3409
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
3410
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
3411
+ <wp:post_name><![CDATA[image-post-format]]></wp:post_name>
3412
+ <wp:status><![CDATA[publish]]></wp:status>
3413
+ <wp:post_parent>0</wp:post_parent>
3414
+ <wp:menu_order>0</wp:menu_order>
3415
+ <wp:post_type><![CDATA[post]]></wp:post_type>
3416
+ <wp:post_password><![CDATA[]]></wp:post_password>
3417
+ <wp:is_sticky>0</wp:is_sticky>
3418
+ <category domain="post_tag" nicename="people"><![CDATA[People]]></category>
3419
+ <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
3420
+ <category domain="post_format" nicename="post-format-image"><![CDATA[Image]]></category>
3421
+ <category domain="post_tag" nicename="tips-and-tricks"><![CDATA[Tips and Tricks]]></category>
3422
+ <category domain="category" nicename="travel"><![CDATA[Travel]]></category>
3423
+ <wp:postmeta>
3424
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
3425
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3426
+ </wp:postmeta>
3427
+ <wp:postmeta>
3428
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
3429
+ <wp:meta_value><![CDATA[15]]></wp:meta_value>
3430
+ </wp:postmeta>
3431
+ <wp:postmeta>
3432
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
3433
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3434
+ </wp:postmeta>
3435
+ <wp:postmeta>
3436
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
3437
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3438
+ </wp:postmeta>
3439
+ <wp:postmeta>
3440
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
3441
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3442
+ </wp:postmeta>
3443
+ <wp:postmeta>
3444
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
3445
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3446
+ </wp:postmeta>
3447
+ <wp:postmeta>
3448
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
3449
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3450
+ </wp:postmeta>
3451
+ <wp:postmeta>
3452
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
3453
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3454
+ </wp:postmeta>
3455
+ <wp:postmeta>
3456
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
3457
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
3458
+ </wp:postmeta>
3459
+ <wp:postmeta>
3460
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
3461
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3462
+ </wp:postmeta>
3463
+ <wp:postmeta>
3464
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
3465
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
3466
+ </wp:postmeta>
3467
+ <wp:postmeta>
3468
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
3469
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3470
+ </wp:postmeta>
3471
+ <wp:postmeta>
3472
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
3473
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
3474
+ </wp:postmeta>
3475
+ <wp:postmeta>
3476
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
3477
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3478
+ </wp:postmeta>
3479
+ <wp:postmeta>
3480
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
3481
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3482
+ </wp:postmeta>
3483
+ <wp:postmeta>
3484
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
3485
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3486
+ </wp:postmeta>
3487
+ <wp:postmeta>
3488
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
3489
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3490
+ </wp:postmeta>
3491
+ <wp:postmeta>
3492
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
3493
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3494
+ </wp:postmeta>
3495
+ <wp:postmeta>
3496
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
3497
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
3498
+ </wp:postmeta>
3499
+ <wp:postmeta>
3500
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
3501
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
3502
+ </wp:postmeta>
3503
+ <wp:postmeta>
3504
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
3505
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
3506
+ </wp:postmeta>
3507
+ <wp:postmeta>
3508
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
3509
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
3510
+ </wp:postmeta>
3511
+ <wp:postmeta>
3512
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
3513
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3514
+ </wp:postmeta>
3515
+ <wp:postmeta>
3516
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
3517
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3518
+ </wp:postmeta>
3519
+ <wp:postmeta>
3520
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
3521
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
3522
+ </wp:postmeta>
3523
+ <wp:comment>
3524
+ <wp:comment_id>6</wp:comment_id>
3525
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
3526
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
3527
+ <wp:comment_author_url></wp:comment_author_url>
3528
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3529
+ <wp:comment_date><![CDATA[2016-07-03 08:15:06]]></wp:comment_date>
3530
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:15:06]]></wp:comment_date_gmt>
3531
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
3532
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3533
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3534
+ <wp:comment_parent>0</wp:comment_parent>
3535
+ <wp:comment_user_id>0</wp:comment_user_id>
3536
+ </wp:comment>
3537
+ <wp:comment>
3538
+ <wp:comment_id>7</wp:comment_id>
3539
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
3540
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
3541
+ <wp:comment_author_url></wp:comment_author_url>
3542
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3543
+ <wp:comment_date><![CDATA[2016-07-03 08:15:30]]></wp:comment_date>
3544
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:15:30]]></wp:comment_date_gmt>
3545
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
3546
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3547
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3548
+ <wp:comment_parent>6</wp:comment_parent>
3549
+ <wp:comment_user_id>0</wp:comment_user_id>
3550
+ </wp:comment>
3551
+ <wp:comment>
3552
+ <wp:comment_id>8</wp:comment_id>
3553
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
3554
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
3555
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
3556
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3557
+ <wp:comment_date><![CDATA[2016-07-03 08:15:56]]></wp:comment_date>
3558
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:15:56]]></wp:comment_date_gmt>
3559
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
3560
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3561
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3562
+ <wp:comment_parent>0</wp:comment_parent>
3563
+ <wp:comment_user_id>0</wp:comment_user_id>
3564
+ </wp:comment>
3565
+ <wp:comment>
3566
+ <wp:comment_id>9</wp:comment_id>
3567
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
3568
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
3569
+ <wp:comment_author_url></wp:comment_author_url>
3570
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3571
+ <wp:comment_date><![CDATA[2016-07-03 08:16:18]]></wp:comment_date>
3572
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:16:18]]></wp:comment_date_gmt>
3573
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
3574
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3575
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3576
+ <wp:comment_parent>0</wp:comment_parent>
3577
+ <wp:comment_user_id>0</wp:comment_user_id>
3578
+ </wp:comment>
3579
+ </item>
3580
+ <item>
3581
+ <title>Gallery Post Format</title>
3582
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/02/24/gallery-post-format/</link>
3583
+ <pubDate>Wed, 24 Feb 2016 04:56:51 +0000</pubDate>
3584
+ <dc:creator><![CDATA[admin]]></dc:creator>
3585
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=19</guid>
3586
+ <description></description>
3587
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
3588
+
3589
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
3590
+
3591
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
3592
+
3593
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
3594
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
3595
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
3596
+
3597
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.]]></content:encoded>
3598
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3599
+ <wp:post_id>19</wp:post_id>
3600
+ <wp:post_date><![CDATA[2016-02-24 04:56:51]]></wp:post_date>
3601
+ <wp:post_date_gmt><![CDATA[2016-02-24 04:56:51]]></wp:post_date_gmt>
3602
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
3603
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
3604
+ <wp:post_name><![CDATA[gallery-post-format]]></wp:post_name>
3605
+ <wp:status><![CDATA[publish]]></wp:status>
3606
+ <wp:post_parent>0</wp:post_parent>
3607
+ <wp:menu_order>0</wp:menu_order>
3608
+ <wp:post_type><![CDATA[post]]></wp:post_type>
3609
+ <wp:post_password><![CDATA[]]></wp:post_password>
3610
+ <wp:is_sticky>0</wp:is_sticky>
3611
+ <category domain="post_tag" nicename="city"><![CDATA[City]]></category>
3612
+ <category domain="post_tag" nicename="fashion"><![CDATA[Fashion]]></category>
3613
+ <category domain="post_tag" nicename="outdoor"><![CDATA[Outdoor]]></category>
3614
+ <category domain="category" nicename="people"><![CDATA[People]]></category>
3615
+ <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
3616
+ <category domain="post_format" nicename="post-format-gallery"><![CDATA[Gallery]]></category>
3617
+ <category domain="post_tag" nicename="tour"><![CDATA[Tour]]></category>
3618
+ <wp:postmeta>
3619
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
3620
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3621
+ </wp:postmeta>
3622
+ <wp:postmeta>
3623
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
3624
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3625
+ </wp:postmeta>
3626
+ <wp:postmeta>
3627
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
3628
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3629
+ </wp:postmeta>
3630
+ <wp:postmeta>
3631
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
3632
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3633
+ </wp:postmeta>
3634
+ <wp:postmeta>
3635
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
3636
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3637
+ </wp:postmeta>
3638
+ <wp:postmeta>
3639
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
3640
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3641
+ </wp:postmeta>
3642
+ <wp:postmeta>
3643
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
3644
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3645
+ </wp:postmeta>
3646
+ <wp:postmeta>
3647
+ <wp:meta_key><![CDATA[_format_gallery_type]]></wp:meta_key>
3648
+ <wp:meta_value><![CDATA[12,13,16]]></wp:meta_value>
3649
+ </wp:postmeta>
3650
+ <wp:postmeta>
3651
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
3652
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
3653
+ </wp:postmeta>
3654
+ <wp:postmeta>
3655
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
3656
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3657
+ </wp:postmeta>
3658
+ <wp:postmeta>
3659
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
3660
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
3661
+ </wp:postmeta>
3662
+ <wp:postmeta>
3663
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
3664
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3665
+ </wp:postmeta>
3666
+ <wp:postmeta>
3667
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
3668
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
3669
+ </wp:postmeta>
3670
+ <wp:postmeta>
3671
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
3672
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3673
+ </wp:postmeta>
3674
+ <wp:postmeta>
3675
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
3676
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3677
+ </wp:postmeta>
3678
+ <wp:postmeta>
3679
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
3680
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3681
+ </wp:postmeta>
3682
+ <wp:postmeta>
3683
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
3684
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3685
+ </wp:postmeta>
3686
+ <wp:postmeta>
3687
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
3688
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3689
+ </wp:postmeta>
3690
+ <wp:postmeta>
3691
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
3692
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
3693
+ </wp:postmeta>
3694
+ <wp:postmeta>
3695
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
3696
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
3697
+ </wp:postmeta>
3698
+ <wp:postmeta>
3699
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
3700
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
3701
+ </wp:postmeta>
3702
+ <wp:postmeta>
3703
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
3704
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
3705
+ </wp:postmeta>
3706
+ <wp:postmeta>
3707
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
3708
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3709
+ </wp:postmeta>
3710
+ <wp:postmeta>
3711
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
3712
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3713
+ </wp:postmeta>
3714
+ <wp:postmeta>
3715
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
3716
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
3717
+ </wp:postmeta>
3718
+ <wp:comment>
3719
+ <wp:comment_id>10</wp:comment_id>
3720
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
3721
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
3722
+ <wp:comment_author_url></wp:comment_author_url>
3723
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3724
+ <wp:comment_date><![CDATA[2016-07-03 08:17:44]]></wp:comment_date>
3725
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:17:44]]></wp:comment_date_gmt>
3726
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
3727
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3728
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3729
+ <wp:comment_parent>0</wp:comment_parent>
3730
+ <wp:comment_user_id>0</wp:comment_user_id>
3731
+ </wp:comment>
3732
+ <wp:comment>
3733
+ <wp:comment_id>11</wp:comment_id>
3734
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
3735
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
3736
+ <wp:comment_author_url></wp:comment_author_url>
3737
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3738
+ <wp:comment_date><![CDATA[2016-07-03 08:18:05]]></wp:comment_date>
3739
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:18:05]]></wp:comment_date_gmt>
3740
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
3741
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3742
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3743
+ <wp:comment_parent>10</wp:comment_parent>
3744
+ <wp:comment_user_id>0</wp:comment_user_id>
3745
+ </wp:comment>
3746
+ <wp:comment>
3747
+ <wp:comment_id>12</wp:comment_id>
3748
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
3749
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
3750
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
3751
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3752
+ <wp:comment_date><![CDATA[2016-07-03 08:18:29]]></wp:comment_date>
3753
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:18:29]]></wp:comment_date_gmt>
3754
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
3755
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3756
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3757
+ <wp:comment_parent>0</wp:comment_parent>
3758
+ <wp:comment_user_id>0</wp:comment_user_id>
3759
+ </wp:comment>
3760
+ <wp:comment>
3761
+ <wp:comment_id>13</wp:comment_id>
3762
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
3763
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
3764
+ <wp:comment_author_url></wp:comment_author_url>
3765
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3766
+ <wp:comment_date><![CDATA[2016-07-03 08:18:47]]></wp:comment_date>
3767
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:18:47]]></wp:comment_date_gmt>
3768
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
3769
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3770
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3771
+ <wp:comment_parent>0</wp:comment_parent>
3772
+ <wp:comment_user_id>0</wp:comment_user_id>
3773
+ </wp:comment>
3774
+ </item>
3775
+ <item>
3776
+ <title>Video Post Format - Self Hosted Video Player</title>
3777
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/02/18/video-post-format-self-hosted-video-player/</link>
3778
+ <pubDate>Thu, 18 Feb 2016 05:03:22 +0000</pubDate>
3779
+ <dc:creator><![CDATA[admin]]></dc:creator>
3780
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=21</guid>
3781
+ <description></description>
3782
+ <content:encoded><![CDATA[But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her.]]></content:encoded>
3783
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3784
+ <wp:post_id>21</wp:post_id>
3785
+ <wp:post_date><![CDATA[2016-02-18 05:03:22]]></wp:post_date>
3786
+ <wp:post_date_gmt><![CDATA[2016-02-18 05:03:22]]></wp:post_date_gmt>
3787
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
3788
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
3789
+ <wp:post_name><![CDATA[video-post-format-self-hosted-video-player]]></wp:post_name>
3790
+ <wp:status><![CDATA[publish]]></wp:status>
3791
+ <wp:post_parent>0</wp:post_parent>
3792
+ <wp:menu_order>0</wp:menu_order>
3793
+ <wp:post_type><![CDATA[post]]></wp:post_type>
3794
+ <wp:post_password><![CDATA[]]></wp:post_password>
3795
+ <wp:is_sticky>0</wp:is_sticky>
3796
+ <category domain="post_tag" nicename="media"><![CDATA[Media]]></category>
3797
+ <category domain="post_tag" nicename="motion-graphics"><![CDATA[Motion Graphics]]></category>
3798
+ <category domain="category" nicename="people"><![CDATA[People]]></category>
3799
+ <category domain="post_tag" nicename="photography"><![CDATA[Photography]]></category>
3800
+ <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
3801
+ <category domain="post_format" nicename="post-format-video"><![CDATA[Video]]></category>
3802
+ <wp:postmeta>
3803
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
3804
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3805
+ </wp:postmeta>
3806
+ <wp:postmeta>
3807
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
3808
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3809
+ </wp:postmeta>
3810
+ <wp:postmeta>
3811
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
3812
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3813
+ </wp:postmeta>
3814
+ <wp:postmeta>
3815
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
3816
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3817
+ </wp:postmeta>
3818
+ <wp:postmeta>
3819
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
3820
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3821
+ </wp:postmeta>
3822
+ <wp:postmeta>
3823
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
3824
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3825
+ </wp:postmeta>
3826
+ <wp:postmeta>
3827
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
3828
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3829
+ </wp:postmeta>
3830
+ <wp:postmeta>
3831
+ <wp:meta_key><![CDATA[_format_video_attachment]]></wp:meta_key>
3832
+ <wp:meta_value><![CDATA[23]]></wp:meta_value>
3833
+ </wp:postmeta>
3834
+ <wp:postmeta>
3835
+ <wp:meta_key><![CDATA[_format_video_attachment_poster]]></wp:meta_key>
3836
+ <wp:meta_value><![CDATA[24]]></wp:meta_value>
3837
+ </wp:postmeta>
3838
+ <wp:postmeta>
3839
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
3840
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
3841
+ </wp:postmeta>
3842
+ <wp:postmeta>
3843
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
3844
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3845
+ </wp:postmeta>
3846
+ <wp:postmeta>
3847
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
3848
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
3849
+ </wp:postmeta>
3850
+ <wp:postmeta>
3851
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
3852
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3853
+ </wp:postmeta>
3854
+ <wp:postmeta>
3855
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
3856
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
3857
+ </wp:postmeta>
3858
+ <wp:postmeta>
3859
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
3860
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3861
+ </wp:postmeta>
3862
+ <wp:postmeta>
3863
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
3864
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3865
+ </wp:postmeta>
3866
+ <wp:postmeta>
3867
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
3868
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3869
+ </wp:postmeta>
3870
+ <wp:postmeta>
3871
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
3872
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3873
+ </wp:postmeta>
3874
+ <wp:postmeta>
3875
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
3876
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3877
+ </wp:postmeta>
3878
+ <wp:postmeta>
3879
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
3880
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
3881
+ </wp:postmeta>
3882
+ <wp:postmeta>
3883
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
3884
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
3885
+ </wp:postmeta>
3886
+ <wp:postmeta>
3887
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
3888
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
3889
+ </wp:postmeta>
3890
+ <wp:postmeta>
3891
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
3892
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
3893
+ </wp:postmeta>
3894
+ <wp:postmeta>
3895
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
3896
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3897
+ </wp:postmeta>
3898
+ <wp:postmeta>
3899
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
3900
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3901
+ </wp:postmeta>
3902
+ <wp:postmeta>
3903
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
3904
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
3905
+ </wp:postmeta>
3906
+ <wp:comment>
3907
+ <wp:comment_id>14</wp:comment_id>
3908
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
3909
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
3910
+ <wp:comment_author_url></wp:comment_author_url>
3911
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3912
+ <wp:comment_date><![CDATA[2016-07-03 08:19:30]]></wp:comment_date>
3913
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:19:30]]></wp:comment_date_gmt>
3914
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
3915
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3916
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3917
+ <wp:comment_parent>0</wp:comment_parent>
3918
+ <wp:comment_user_id>0</wp:comment_user_id>
3919
+ </wp:comment>
3920
+ <wp:comment>
3921
+ <wp:comment_id>15</wp:comment_id>
3922
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
3923
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
3924
+ <wp:comment_author_url></wp:comment_author_url>
3925
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3926
+ <wp:comment_date><![CDATA[2016-07-03 08:19:51]]></wp:comment_date>
3927
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:19:51]]></wp:comment_date_gmt>
3928
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
3929
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3930
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3931
+ <wp:comment_parent>14</wp:comment_parent>
3932
+ <wp:comment_user_id>0</wp:comment_user_id>
3933
+ </wp:comment>
3934
+ <wp:comment>
3935
+ <wp:comment_id>16</wp:comment_id>
3936
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
3937
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
3938
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
3939
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3940
+ <wp:comment_date><![CDATA[2016-07-03 08:20:09]]></wp:comment_date>
3941
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:20:09]]></wp:comment_date_gmt>
3942
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
3943
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3944
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3945
+ <wp:comment_parent>0</wp:comment_parent>
3946
+ <wp:comment_user_id>0</wp:comment_user_id>
3947
+ </wp:comment>
3948
+ <wp:comment>
3949
+ <wp:comment_id>17</wp:comment_id>
3950
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
3951
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
3952
+ <wp:comment_author_url></wp:comment_author_url>
3953
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
3954
+ <wp:comment_date><![CDATA[2016-07-03 08:20:30]]></wp:comment_date>
3955
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:20:30]]></wp:comment_date_gmt>
3956
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
3957
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
3958
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
3959
+ <wp:comment_parent>0</wp:comment_parent>
3960
+ <wp:comment_user_id>0</wp:comment_user_id>
3961
+ </wp:comment>
3962
+ </item>
3963
+ <item>
3964
+ <title>Audio Post Format - Self Hosted Audio Player</title>
3965
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/02/08/video-post-format-self-hosted-audio-player/</link>
3966
+ <pubDate>Mon, 08 Feb 2016 05:04:26 +0000</pubDate>
3967
+ <dc:creator><![CDATA[admin]]></dc:creator>
3968
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=26</guid>
3969
+ <description></description>
3970
+ <content:encoded><![CDATA[But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her.]]></content:encoded>
3971
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3972
+ <wp:post_id>26</wp:post_id>
3973
+ <wp:post_date><![CDATA[2016-02-08 05:04:26]]></wp:post_date>
3974
+ <wp:post_date_gmt><![CDATA[2016-02-08 05:04:26]]></wp:post_date_gmt>
3975
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
3976
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
3977
+ <wp:post_name><![CDATA[video-post-format-self-hosted-audio-player]]></wp:post_name>
3978
+ <wp:status><![CDATA[publish]]></wp:status>
3979
+ <wp:post_parent>0</wp:post_parent>
3980
+ <wp:menu_order>0</wp:menu_order>
3981
+ <wp:post_type><![CDATA[post]]></wp:post_type>
3982
+ <wp:post_password><![CDATA[]]></wp:post_password>
3983
+ <wp:is_sticky>0</wp:is_sticky>
3984
+ <category domain="post_tag" nicename="happiness"><![CDATA[Happiness]]></category>
3985
+ <category domain="post_tag" nicename="modern-music"><![CDATA[Modern Music]]></category>
3986
+ <category domain="category" nicename="music"><![CDATA[Music]]></category>
3987
+ <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
3988
+ <category domain="post_format" nicename="post-format-audio"><![CDATA[Audio]]></category>
3989
+ <wp:postmeta>
3990
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
3991
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3992
+ </wp:postmeta>
3993
+ <wp:postmeta>
3994
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
3995
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3996
+ </wp:postmeta>
3997
+ <wp:postmeta>
3998
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
3999
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4000
+ </wp:postmeta>
4001
+ <wp:postmeta>
4002
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
4003
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4004
+ </wp:postmeta>
4005
+ <wp:postmeta>
4006
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
4007
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4008
+ </wp:postmeta>
4009
+ <wp:postmeta>
4010
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
4011
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4012
+ </wp:postmeta>
4013
+ <wp:postmeta>
4014
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
4015
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4016
+ </wp:postmeta>
4017
+ <wp:postmeta>
4018
+ <wp:meta_key><![CDATA[_format_audio_attachment]]></wp:meta_key>
4019
+ <wp:meta_value><![CDATA[22]]></wp:meta_value>
4020
+ </wp:postmeta>
4021
+ <wp:postmeta>
4022
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
4023
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4024
+ </wp:postmeta>
4025
+ <wp:postmeta>
4026
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
4027
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4028
+ </wp:postmeta>
4029
+ <wp:postmeta>
4030
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
4031
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
4032
+ </wp:postmeta>
4033
+ <wp:postmeta>
4034
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
4035
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4036
+ </wp:postmeta>
4037
+ <wp:postmeta>
4038
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
4039
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
4040
+ </wp:postmeta>
4041
+ <wp:postmeta>
4042
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
4043
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4044
+ </wp:postmeta>
4045
+ <wp:postmeta>
4046
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
4047
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4048
+ </wp:postmeta>
4049
+ <wp:postmeta>
4050
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
4051
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4052
+ </wp:postmeta>
4053
+ <wp:postmeta>
4054
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
4055
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4056
+ </wp:postmeta>
4057
+ <wp:postmeta>
4058
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
4059
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4060
+ </wp:postmeta>
4061
+ <wp:postmeta>
4062
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
4063
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
4064
+ </wp:postmeta>
4065
+ <wp:postmeta>
4066
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
4067
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
4068
+ </wp:postmeta>
4069
+ <wp:postmeta>
4070
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
4071
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
4072
+ </wp:postmeta>
4073
+ <wp:postmeta>
4074
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
4075
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
4076
+ </wp:postmeta>
4077
+ <wp:postmeta>
4078
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
4079
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4080
+ </wp:postmeta>
4081
+ <wp:postmeta>
4082
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
4083
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4084
+ </wp:postmeta>
4085
+ <wp:postmeta>
4086
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
4087
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
4088
+ </wp:postmeta>
4089
+ <wp:comment>
4090
+ <wp:comment_id>18</wp:comment_id>
4091
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
4092
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
4093
+ <wp:comment_author_url></wp:comment_author_url>
4094
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4095
+ <wp:comment_date><![CDATA[2016-07-03 08:20:52]]></wp:comment_date>
4096
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:20:52]]></wp:comment_date_gmt>
4097
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
4098
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4099
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4100
+ <wp:comment_parent>0</wp:comment_parent>
4101
+ <wp:comment_user_id>0</wp:comment_user_id>
4102
+ </wp:comment>
4103
+ <wp:comment>
4104
+ <wp:comment_id>19</wp:comment_id>
4105
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
4106
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
4107
+ <wp:comment_author_url></wp:comment_author_url>
4108
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4109
+ <wp:comment_date><![CDATA[2016-07-03 08:21:18]]></wp:comment_date>
4110
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:21:18]]></wp:comment_date_gmt>
4111
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
4112
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4113
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4114
+ <wp:comment_parent>18</wp:comment_parent>
4115
+ <wp:comment_user_id>0</wp:comment_user_id>
4116
+ </wp:comment>
4117
+ <wp:comment>
4118
+ <wp:comment_id>20</wp:comment_id>
4119
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
4120
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
4121
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
4122
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4123
+ <wp:comment_date><![CDATA[2016-07-03 08:21:41]]></wp:comment_date>
4124
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:21:41]]></wp:comment_date_gmt>
4125
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
4126
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4127
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4128
+ <wp:comment_parent>0</wp:comment_parent>
4129
+ <wp:comment_user_id>0</wp:comment_user_id>
4130
+ </wp:comment>
4131
+ <wp:comment>
4132
+ <wp:comment_id>21</wp:comment_id>
4133
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
4134
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
4135
+ <wp:comment_author_url></wp:comment_author_url>
4136
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4137
+ <wp:comment_date><![CDATA[2016-07-03 08:22:02]]></wp:comment_date>
4138
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:22:02]]></wp:comment_date_gmt>
4139
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
4140
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4141
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4142
+ <wp:comment_parent>0</wp:comment_parent>
4143
+ <wp:comment_user_id>0</wp:comment_user_id>
4144
+ </wp:comment>
4145
+ </item>
4146
+ <item>
4147
+ <title>Link Post Format</title>
4148
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/01/25/link-post-format/</link>
4149
+ <pubDate>Mon, 25 Jan 2016 05:10:57 +0000</pubDate>
4150
+ <dc:creator><![CDATA[admin]]></dc:creator>
4151
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=28</guid>
4152
+ <description></description>
4153
+ <content:encoded><![CDATA[When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane.
4154
+ http://www.averta.net/themes/phlox/]]></content:encoded>
4155
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4156
+ <wp:post_id>28</wp:post_id>
4157
+ <wp:post_date><![CDATA[2016-01-25 05:10:57]]></wp:post_date>
4158
+ <wp:post_date_gmt><![CDATA[2016-01-25 05:10:57]]></wp:post_date_gmt>
4159
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
4160
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
4161
+ <wp:post_name><![CDATA[link-post-format]]></wp:post_name>
4162
+ <wp:status><![CDATA[publish]]></wp:status>
4163
+ <wp:post_parent>0</wp:post_parent>
4164
+ <wp:menu_order>0</wp:menu_order>
4165
+ <wp:post_type><![CDATA[post]]></wp:post_type>
4166
+ <wp:post_password><![CDATA[]]></wp:post_password>
4167
+ <wp:is_sticky>0</wp:is_sticky>
4168
+ <category domain="post_tag" nicename="blogging"><![CDATA[Blogging]]></category>
4169
+ <category domain="post_tag" nicename="creativity"><![CDATA[Creativity]]></category>
4170
+ <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
4171
+ <category domain="post_format" nicename="post-format-link"><![CDATA[Link]]></category>
4172
+ <category domain="category" nicename="social"><![CDATA[Social]]></category>
4173
+ <wp:postmeta>
4174
+ <wp:meta_key><![CDATA[_oembed_b76de1732e16410945316a1e78c0da19]]></wp:meta_key>
4175
+ <wp:meta_value><![CDATA[{{unknown}}]]></wp:meta_value>
4176
+ </wp:postmeta>
4177
+ <wp:postmeta>
4178
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
4179
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4180
+ </wp:postmeta>
4181
+ <wp:postmeta>
4182
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
4183
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4184
+ </wp:postmeta>
4185
+ <wp:postmeta>
4186
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
4187
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4188
+ </wp:postmeta>
4189
+ <wp:postmeta>
4190
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
4191
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4192
+ </wp:postmeta>
4193
+ <wp:postmeta>
4194
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
4195
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4196
+ </wp:postmeta>
4197
+ <wp:postmeta>
4198
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
4199
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4200
+ </wp:postmeta>
4201
+ <wp:postmeta>
4202
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
4203
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4204
+ </wp:postmeta>
4205
+ <wp:postmeta>
4206
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
4207
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4208
+ </wp:postmeta>
4209
+ <wp:postmeta>
4210
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
4211
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4212
+ </wp:postmeta>
4213
+ <wp:postmeta>
4214
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
4215
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4216
+ </wp:postmeta>
4217
+ <wp:postmeta>
4218
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
4219
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
4220
+ </wp:postmeta>
4221
+ <wp:postmeta>
4222
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
4223
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4224
+ </wp:postmeta>
4225
+ <wp:postmeta>
4226
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
4227
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
4228
+ </wp:postmeta>
4229
+ <wp:postmeta>
4230
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
4231
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4232
+ </wp:postmeta>
4233
+ <wp:postmeta>
4234
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
4235
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4236
+ </wp:postmeta>
4237
+ <wp:postmeta>
4238
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
4239
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4240
+ </wp:postmeta>
4241
+ <wp:postmeta>
4242
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
4243
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4244
+ </wp:postmeta>
4245
+ <wp:postmeta>
4246
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
4247
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4248
+ </wp:postmeta>
4249
+ <wp:postmeta>
4250
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
4251
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
4252
+ </wp:postmeta>
4253
+ <wp:postmeta>
4254
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
4255
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
4256
+ </wp:postmeta>
4257
+ <wp:postmeta>
4258
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
4259
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
4260
+ </wp:postmeta>
4261
+ <wp:postmeta>
4262
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
4263
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
4264
+ </wp:postmeta>
4265
+ <wp:postmeta>
4266
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
4267
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4268
+ </wp:postmeta>
4269
+ <wp:postmeta>
4270
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
4271
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4272
+ </wp:postmeta>
4273
+ <wp:postmeta>
4274
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
4275
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
4276
+ </wp:postmeta>
4277
+ <wp:postmeta>
4278
+ <wp:meta_key><![CDATA[_oembed_5bcae4abe720c8ad0d360a1bd46d3063]]></wp:meta_key>
4279
+ <wp:meta_value><![CDATA[{{unknown}}]]></wp:meta_value>
4280
+ </wp:postmeta>
4281
+ <wp:postmeta>
4282
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
4283
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4284
+ </wp:postmeta>
4285
+ <wp:postmeta>
4286
+ <wp:meta_key><![CDATA[page_content_title_alignment]]></wp:meta_key>
4287
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4288
+ </wp:postmeta>
4289
+ <wp:postmeta>
4290
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
4291
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4292
+ </wp:postmeta>
4293
+ <wp:postmeta>
4294
+ <wp:meta_key><![CDATA[aux_custom_bg_show]]></wp:meta_key>
4295
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4296
+ </wp:postmeta>
4297
+ <wp:postmeta>
4298
+ <wp:meta_key><![CDATA[aux_custom_bg_repeat]]></wp:meta_key>
4299
+ <wp:meta_value><![CDATA[repeat]]></wp:meta_value>
4300
+ </wp:postmeta>
4301
+ <wp:postmeta>
4302
+ <wp:meta_key><![CDATA[aux_custom_bg_attach]]></wp:meta_key>
4303
+ <wp:meta_value><![CDATA[scroll]]></wp:meta_value>
4304
+ </wp:postmeta>
4305
+ <wp:postmeta>
4306
+ <wp:meta_key><![CDATA[aux_custom_bg_position]]></wp:meta_key>
4307
+ <wp:meta_value><![CDATA[left top]]></wp:meta_value>
4308
+ </wp:postmeta>
4309
+ <wp:postmeta>
4310
+ <wp:meta_key><![CDATA[aux_custom_bg_size]]></wp:meta_key>
4311
+ <wp:meta_value><![CDATA[auto]]></wp:meta_value>
4312
+ </wp:postmeta>
4313
+ <wp:postmeta>
4314
+ <wp:meta_key><![CDATA[_oembed_3be46926c2daa9dd91fd9f15e58d2ad2]]></wp:meta_key>
4315
+ <wp:meta_value><![CDATA[{{unknown}}]]></wp:meta_value>
4316
+ </wp:postmeta>
4317
+ <wp:comment>
4318
+ <wp:comment_id>22</wp:comment_id>
4319
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
4320
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
4321
+ <wp:comment_author_url></wp:comment_author_url>
4322
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4323
+ <wp:comment_date><![CDATA[2016-07-03 08:35:54]]></wp:comment_date>
4324
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:35:54]]></wp:comment_date_gmt>
4325
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
4326
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4327
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4328
+ <wp:comment_parent>0</wp:comment_parent>
4329
+ <wp:comment_user_id>0</wp:comment_user_id>
4330
+ </wp:comment>
4331
+ <wp:comment>
4332
+ <wp:comment_id>23</wp:comment_id>
4333
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
4334
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
4335
+ <wp:comment_author_url></wp:comment_author_url>
4336
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4337
+ <wp:comment_date><![CDATA[2016-07-03 08:36:32]]></wp:comment_date>
4338
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:36:32]]></wp:comment_date_gmt>
4339
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
4340
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4341
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4342
+ <wp:comment_parent>22</wp:comment_parent>
4343
+ <wp:comment_user_id>0</wp:comment_user_id>
4344
+ </wp:comment>
4345
+ <wp:comment>
4346
+ <wp:comment_id>24</wp:comment_id>
4347
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
4348
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
4349
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
4350
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4351
+ <wp:comment_date><![CDATA[2016-07-03 08:37:14]]></wp:comment_date>
4352
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:37:14]]></wp:comment_date_gmt>
4353
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
4354
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4355
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4356
+ <wp:comment_parent>0</wp:comment_parent>
4357
+ <wp:comment_user_id>0</wp:comment_user_id>
4358
+ </wp:comment>
4359
+ <wp:comment>
4360
+ <wp:comment_id>25</wp:comment_id>
4361
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
4362
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
4363
+ <wp:comment_author_url></wp:comment_author_url>
4364
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4365
+ <wp:comment_date><![CDATA[2016-07-03 08:37:53]]></wp:comment_date>
4366
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:37:53]]></wp:comment_date_gmt>
4367
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
4368
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4369
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4370
+ <wp:comment_parent>0</wp:comment_parent>
4371
+ <wp:comment_user_id>0</wp:comment_user_id>
4372
+ </wp:comment>
4373
+ </item>
4374
+ <item>
4375
+ <title>Aside Post Format</title>
4376
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/01/14/aside-post-format/</link>
4377
+ <pubDate>Thu, 14 Jan 2016 05:11:20 +0000</pubDate>
4378
+ <dc:creator><![CDATA[admin]]></dc:creator>
4379
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=30</guid>
4380
+ <description></description>
4381
+ <content:encoded><![CDATA[The Big advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline
4382
+
4383
+ ]]></content:encoded>
4384
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4385
+ <wp:post_id>30</wp:post_id>
4386
+ <wp:post_date><![CDATA[2016-01-14 05:11:20]]></wp:post_date>
4387
+ <wp:post_date_gmt><![CDATA[2016-01-14 05:11:20]]></wp:post_date_gmt>
4388
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
4389
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
4390
+ <wp:post_name><![CDATA[aside-post-format]]></wp:post_name>
4391
+ <wp:status><![CDATA[publish]]></wp:status>
4392
+ <wp:post_parent>0</wp:post_parent>
4393
+ <wp:menu_order>0</wp:menu_order>
4394
+ <wp:post_type><![CDATA[post]]></wp:post_type>
4395
+ <wp:post_password><![CDATA[]]></wp:post_password>
4396
+ <wp:is_sticky>0</wp:is_sticky>
4397
+ <category domain="post_tag" nicename="marketing"><![CDATA[Marketing]]></category>
4398
+ <category domain="post_tag" nicename="modern-technology"><![CDATA[Modern Technology]]></category>
4399
+ <category domain="category" nicename="people"><![CDATA[People]]></category>
4400
+ <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
4401
+ <category domain="post_format" nicename="post-format-aside"><![CDATA[Aside]]></category>
4402
+ <category domain="post_tag" nicename="productivity"><![CDATA[Productivity]]></category>
4403
+ <wp:postmeta>
4404
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
4405
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4406
+ </wp:postmeta>
4407
+ <wp:postmeta>
4408
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
4409
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4410
+ </wp:postmeta>
4411
+ <wp:postmeta>
4412
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
4413
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4414
+ </wp:postmeta>
4415
+ <wp:postmeta>
4416
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
4417
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4418
+ </wp:postmeta>
4419
+ <wp:postmeta>
4420
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
4421
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4422
+ </wp:postmeta>
4423
+ <wp:postmeta>
4424
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
4425
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4426
+ </wp:postmeta>
4427
+ <wp:postmeta>
4428
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
4429
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4430
+ </wp:postmeta>
4431
+ <wp:postmeta>
4432
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
4433
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4434
+ </wp:postmeta>
4435
+ <wp:postmeta>
4436
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
4437
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4438
+ </wp:postmeta>
4439
+ <wp:postmeta>
4440
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
4441
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
4442
+ </wp:postmeta>
4443
+ <wp:postmeta>
4444
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
4445
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4446
+ </wp:postmeta>
4447
+ <wp:postmeta>
4448
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
4449
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
4450
+ </wp:postmeta>
4451
+ <wp:postmeta>
4452
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
4453
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4454
+ </wp:postmeta>
4455
+ <wp:postmeta>
4456
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
4457
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4458
+ </wp:postmeta>
4459
+ <wp:postmeta>
4460
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
4461
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4462
+ </wp:postmeta>
4463
+ <wp:postmeta>
4464
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
4465
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4466
+ </wp:postmeta>
4467
+ <wp:postmeta>
4468
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
4469
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4470
+ </wp:postmeta>
4471
+ <wp:postmeta>
4472
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
4473
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
4474
+ </wp:postmeta>
4475
+ <wp:postmeta>
4476
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
4477
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
4478
+ </wp:postmeta>
4479
+ <wp:postmeta>
4480
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
4481
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
4482
+ </wp:postmeta>
4483
+ <wp:postmeta>
4484
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
4485
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
4486
+ </wp:postmeta>
4487
+ <wp:postmeta>
4488
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
4489
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4490
+ </wp:postmeta>
4491
+ <wp:postmeta>
4492
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
4493
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4494
+ </wp:postmeta>
4495
+ <wp:postmeta>
4496
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
4497
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
4498
+ </wp:postmeta>
4499
+ <wp:comment>
4500
+ <wp:comment_id>26</wp:comment_id>
4501
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
4502
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
4503
+ <wp:comment_author_url></wp:comment_author_url>
4504
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4505
+ <wp:comment_date><![CDATA[2016-07-03 08:25:33]]></wp:comment_date>
4506
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:25:33]]></wp:comment_date_gmt>
4507
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
4508
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4509
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4510
+ <wp:comment_parent>0</wp:comment_parent>
4511
+ <wp:comment_user_id>0</wp:comment_user_id>
4512
+ </wp:comment>
4513
+ <wp:comment>
4514
+ <wp:comment_id>27</wp:comment_id>
4515
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
4516
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
4517
+ <wp:comment_author_url></wp:comment_author_url>
4518
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4519
+ <wp:comment_date><![CDATA[2016-07-03 08:25:49]]></wp:comment_date>
4520
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:25:49]]></wp:comment_date_gmt>
4521
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
4522
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4523
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4524
+ <wp:comment_parent>26</wp:comment_parent>
4525
+ <wp:comment_user_id>0</wp:comment_user_id>
4526
+ </wp:comment>
4527
+ <wp:comment>
4528
+ <wp:comment_id>28</wp:comment_id>
4529
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
4530
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
4531
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
4532
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4533
+ <wp:comment_date><![CDATA[2016-07-03 08:26:07]]></wp:comment_date>
4534
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:26:07]]></wp:comment_date_gmt>
4535
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
4536
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4537
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4538
+ <wp:comment_parent>0</wp:comment_parent>
4539
+ <wp:comment_user_id>0</wp:comment_user_id>
4540
+ </wp:comment>
4541
+ <wp:comment>
4542
+ <wp:comment_id>29</wp:comment_id>
4543
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
4544
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
4545
+ <wp:comment_author_url></wp:comment_author_url>
4546
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4547
+ <wp:comment_date><![CDATA[2016-07-03 08:26:30]]></wp:comment_date>
4548
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:26:30]]></wp:comment_date_gmt>
4549
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
4550
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4551
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4552
+ <wp:comment_parent>0</wp:comment_parent>
4553
+ <wp:comment_user_id>0</wp:comment_user_id>
4554
+ </wp:comment>
4555
+ </item>
4556
+ <item>
4557
+ <title>Kevin Morris</title>
4558
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/01/03/32/</link>
4559
+ <pubDate>Sun, 03 Jan 2016 05:12:21 +0000</pubDate>
4560
+ <dc:creator><![CDATA[admin]]></dc:creator>
4561
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=32</guid>
4562
+ <description></description>
4563
+ <content:encoded><![CDATA[It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar]]></content:encoded>
4564
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4565
+ <wp:post_id>32</wp:post_id>
4566
+ <wp:post_date><![CDATA[2016-01-03 05:12:21]]></wp:post_date>
4567
+ <wp:post_date_gmt><![CDATA[2016-01-03 05:12:21]]></wp:post_date_gmt>
4568
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
4569
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
4570
+ <wp:post_name><![CDATA[32]]></wp:post_name>
4571
+ <wp:status><![CDATA[publish]]></wp:status>
4572
+ <wp:post_parent>0</wp:post_parent>
4573
+ <wp:menu_order>0</wp:menu_order>
4574
+ <wp:post_type><![CDATA[post]]></wp:post_type>
4575
+ <wp:post_password><![CDATA[]]></wp:post_password>
4576
+ <wp:is_sticky>0</wp:is_sticky>
4577
+ <category domain="post_tag" nicename="article"><![CDATA[Article]]></category>
4578
+ <category domain="post_tag" nicename="blogging"><![CDATA[Blogging]]></category>
4579
+ <category domain="post_tag" nicename="journalism"><![CDATA[Journalism]]></category>
4580
+ <category domain="category" nicename="people"><![CDATA[People]]></category>
4581
+ <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
4582
+ <category domain="post_format" nicename="post-format-quote"><![CDATA[Quote]]></category>
4583
+ <wp:postmeta>
4584
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
4585
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4586
+ </wp:postmeta>
4587
+ <wp:postmeta>
4588
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
4589
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4590
+ </wp:postmeta>
4591
+ <wp:postmeta>
4592
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
4593
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4594
+ </wp:postmeta>
4595
+ <wp:postmeta>
4596
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
4597
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4598
+ </wp:postmeta>
4599
+ <wp:postmeta>
4600
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
4601
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4602
+ </wp:postmeta>
4603
+ <wp:postmeta>
4604
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
4605
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4606
+ </wp:postmeta>
4607
+ <wp:postmeta>
4608
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
4609
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4610
+ </wp:postmeta>
4611
+ <wp:postmeta>
4612
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
4613
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4614
+ </wp:postmeta>
4615
+ <wp:postmeta>
4616
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
4617
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4618
+ </wp:postmeta>
4619
+ <wp:postmeta>
4620
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
4621
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
4622
+ </wp:postmeta>
4623
+ <wp:postmeta>
4624
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
4625
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4626
+ </wp:postmeta>
4627
+ <wp:postmeta>
4628
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
4629
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
4630
+ </wp:postmeta>
4631
+ <wp:postmeta>
4632
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
4633
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4634
+ </wp:postmeta>
4635
+ <wp:postmeta>
4636
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
4637
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4638
+ </wp:postmeta>
4639
+ <wp:postmeta>
4640
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
4641
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4642
+ </wp:postmeta>
4643
+ <wp:postmeta>
4644
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
4645
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4646
+ </wp:postmeta>
4647
+ <wp:postmeta>
4648
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
4649
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4650
+ </wp:postmeta>
4651
+ <wp:postmeta>
4652
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
4653
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
4654
+ </wp:postmeta>
4655
+ <wp:postmeta>
4656
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
4657
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
4658
+ </wp:postmeta>
4659
+ <wp:postmeta>
4660
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
4661
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
4662
+ </wp:postmeta>
4663
+ <wp:postmeta>
4664
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
4665
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
4666
+ </wp:postmeta>
4667
+ <wp:postmeta>
4668
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
4669
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4670
+ </wp:postmeta>
4671
+ <wp:postmeta>
4672
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
4673
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4674
+ </wp:postmeta>
4675
+ <wp:postmeta>
4676
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
4677
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
4678
+ </wp:postmeta>
4679
+ <wp:comment>
4680
+ <wp:comment_id>30</wp:comment_id>
4681
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
4682
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
4683
+ <wp:comment_author_url></wp:comment_author_url>
4684
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4685
+ <wp:comment_date><![CDATA[2016-07-03 08:38:28]]></wp:comment_date>
4686
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:38:28]]></wp:comment_date_gmt>
4687
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
4688
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4689
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4690
+ <wp:comment_parent>0</wp:comment_parent>
4691
+ <wp:comment_user_id>0</wp:comment_user_id>
4692
+ </wp:comment>
4693
+ <wp:comment>
4694
+ <wp:comment_id>31</wp:comment_id>
4695
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
4696
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
4697
+ <wp:comment_author_url></wp:comment_author_url>
4698
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4699
+ <wp:comment_date><![CDATA[2016-07-03 08:38:52]]></wp:comment_date>
4700
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:38:52]]></wp:comment_date_gmt>
4701
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
4702
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4703
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4704
+ <wp:comment_parent>30</wp:comment_parent>
4705
+ <wp:comment_user_id>0</wp:comment_user_id>
4706
+ </wp:comment>
4707
+ <wp:comment>
4708
+ <wp:comment_id>32</wp:comment_id>
4709
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
4710
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
4711
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
4712
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4713
+ <wp:comment_date><![CDATA[2016-07-03 08:39:32]]></wp:comment_date>
4714
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:39:32]]></wp:comment_date_gmt>
4715
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
4716
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4717
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4718
+ <wp:comment_parent>0</wp:comment_parent>
4719
+ <wp:comment_user_id>0</wp:comment_user_id>
4720
+ </wp:comment>
4721
+ <wp:comment>
4722
+ <wp:comment_id>33</wp:comment_id>
4723
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
4724
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
4725
+ <wp:comment_author_url></wp:comment_author_url>
4726
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4727
+ <wp:comment_date><![CDATA[2016-07-03 08:40:05]]></wp:comment_date>
4728
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:40:05]]></wp:comment_date_gmt>
4729
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
4730
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4731
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4732
+ <wp:comment_parent>0</wp:comment_parent>
4733
+ <wp:comment_user_id>0</wp:comment_user_id>
4734
+ </wp:comment>
4735
+ </item>
4736
+ <item>
4737
+ <title>Audio Post Format - Soundcloud</title>
4738
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/02/05/audio-post-format-soundcloud/</link>
4739
+ <pubDate>Fri, 05 Feb 2016 06:59:21 +0000</pubDate>
4740
+ <dc:creator><![CDATA[admin]]></dc:creator>
4741
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=58</guid>
4742
+ <description></description>
4743
+ <content:encoded><![CDATA[But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her.
4744
+
4745
+ ]]></content:encoded>
4746
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4747
+ <wp:post_id>58</wp:post_id>
4748
+ <wp:post_date><![CDATA[2016-02-05 06:59:21]]></wp:post_date>
4749
+ <wp:post_date_gmt><![CDATA[2016-02-05 06:59:21]]></wp:post_date_gmt>
4750
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
4751
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
4752
+ <wp:post_name><![CDATA[audio-post-format-soundcloud]]></wp:post_name>
4753
+ <wp:status><![CDATA[publish]]></wp:status>
4754
+ <wp:post_parent>0</wp:post_parent>
4755
+ <wp:menu_order>0</wp:menu_order>
4756
+ <wp:post_type><![CDATA[post]]></wp:post_type>
4757
+ <wp:post_password><![CDATA[]]></wp:post_password>
4758
+ <wp:is_sticky>0</wp:is_sticky>
4759
+ <category domain="post_tag" nicename="happiness"><![CDATA[Happiness]]></category>
4760
+ <category domain="post_tag" nicename="modern-music"><![CDATA[Modern Music]]></category>
4761
+ <category domain="category" nicename="music"><![CDATA[Music]]></category>
4762
+ <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
4763
+ <category domain="post_format" nicename="post-format-audio"><![CDATA[Audio]]></category>
4764
+ <wp:postmeta>
4765
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
4766
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4767
+ </wp:postmeta>
4768
+ <wp:postmeta>
4769
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
4770
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4771
+ </wp:postmeta>
4772
+ <wp:postmeta>
4773
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
4774
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4775
+ </wp:postmeta>
4776
+ <wp:postmeta>
4777
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
4778
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4779
+ </wp:postmeta>
4780
+ <wp:postmeta>
4781
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
4782
+ <wp:meta_value><![CDATA[https://soundcloud.com/hammockmusic/hammock-clarity-everything-and-nothing-out-apr-1?auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true]]></wp:meta_value>
4783
+ </wp:postmeta>
4784
+ <wp:postmeta>
4785
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
4786
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4787
+ </wp:postmeta>
4788
+ <wp:postmeta>
4789
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
4790
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4791
+ </wp:postmeta>
4792
+ <wp:postmeta>
4793
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
4794
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4795
+ </wp:postmeta>
4796
+ <wp:postmeta>
4797
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
4798
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4799
+ </wp:postmeta>
4800
+ <wp:postmeta>
4801
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
4802
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
4803
+ </wp:postmeta>
4804
+ <wp:postmeta>
4805
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
4806
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4807
+ </wp:postmeta>
4808
+ <wp:postmeta>
4809
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
4810
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
4811
+ </wp:postmeta>
4812
+ <wp:postmeta>
4813
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
4814
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4815
+ </wp:postmeta>
4816
+ <wp:postmeta>
4817
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
4818
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4819
+ </wp:postmeta>
4820
+ <wp:postmeta>
4821
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
4822
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4823
+ </wp:postmeta>
4824
+ <wp:postmeta>
4825
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
4826
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4827
+ </wp:postmeta>
4828
+ <wp:postmeta>
4829
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
4830
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4831
+ </wp:postmeta>
4832
+ <wp:postmeta>
4833
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
4834
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
4835
+ </wp:postmeta>
4836
+ <wp:postmeta>
4837
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
4838
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
4839
+ </wp:postmeta>
4840
+ <wp:postmeta>
4841
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
4842
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
4843
+ </wp:postmeta>
4844
+ <wp:postmeta>
4845
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
4846
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
4847
+ </wp:postmeta>
4848
+ <wp:postmeta>
4849
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
4850
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4851
+ </wp:postmeta>
4852
+ <wp:postmeta>
4853
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
4854
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4855
+ </wp:postmeta>
4856
+ <wp:postmeta>
4857
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
4858
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
4859
+ </wp:postmeta>
4860
+ <wp:postmeta>
4861
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
4862
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4863
+ </wp:postmeta>
4864
+ <wp:postmeta>
4865
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
4866
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
4867
+ </wp:postmeta>
4868
+ <wp:postmeta>
4869
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
4870
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4871
+ </wp:postmeta>
4872
+ <wp:comment>
4873
+ <wp:comment_id>34</wp:comment_id>
4874
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
4875
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
4876
+ <wp:comment_author_url></wp:comment_author_url>
4877
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4878
+ <wp:comment_date><![CDATA[2016-07-03 08:24:05]]></wp:comment_date>
4879
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:24:05]]></wp:comment_date_gmt>
4880
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
4881
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4882
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4883
+ <wp:comment_parent>0</wp:comment_parent>
4884
+ <wp:comment_user_id>0</wp:comment_user_id>
4885
+ </wp:comment>
4886
+ <wp:comment>
4887
+ <wp:comment_id>35</wp:comment_id>
4888
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
4889
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
4890
+ <wp:comment_author_url></wp:comment_author_url>
4891
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4892
+ <wp:comment_date><![CDATA[2016-07-03 08:24:27]]></wp:comment_date>
4893
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:24:27]]></wp:comment_date_gmt>
4894
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
4895
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4896
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4897
+ <wp:comment_parent>34</wp:comment_parent>
4898
+ <wp:comment_user_id>0</wp:comment_user_id>
4899
+ </wp:comment>
4900
+ <wp:comment>
4901
+ <wp:comment_id>36</wp:comment_id>
4902
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
4903
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
4904
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
4905
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4906
+ <wp:comment_date><![CDATA[2016-07-03 08:24:45]]></wp:comment_date>
4907
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:24:45]]></wp:comment_date_gmt>
4908
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
4909
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4910
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4911
+ <wp:comment_parent>0</wp:comment_parent>
4912
+ <wp:comment_user_id>0</wp:comment_user_id>
4913
+ </wp:comment>
4914
+ <wp:comment>
4915
+ <wp:comment_id>37</wp:comment_id>
4916
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
4917
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
4918
+ <wp:comment_author_url></wp:comment_author_url>
4919
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
4920
+ <wp:comment_date><![CDATA[2016-07-03 08:25:06]]></wp:comment_date>
4921
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:25:06]]></wp:comment_date_gmt>
4922
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
4923
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
4924
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
4925
+ <wp:comment_parent>0</wp:comment_parent>
4926
+ <wp:comment_user_id>0</wp:comment_user_id>
4927
+ </wp:comment>
4928
+ </item>
4929
+ <item>
4930
+ <title>Video Post Format - Vimeo &#038; Youtube</title>
4931
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/02/06/video-post-format-vimeo-youtube/</link>
4932
+ <pubDate>Sat, 06 Feb 2016 07:15:38 +0000</pubDate>
4933
+ <dc:creator><![CDATA[admin]]></dc:creator>
4934
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=62</guid>
4935
+ <description></description>
4936
+ <content:encoded><![CDATA[But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her.
4937
+
4938
+ ]]></content:encoded>
4939
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4940
+ <wp:post_id>62</wp:post_id>
4941
+ <wp:post_date><![CDATA[2016-02-06 07:15:38]]></wp:post_date>
4942
+ <wp:post_date_gmt><![CDATA[2016-02-06 07:15:38]]></wp:post_date_gmt>
4943
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
4944
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
4945
+ <wp:post_name><![CDATA[video-post-format-vimeo-youtube]]></wp:post_name>
4946
+ <wp:status><![CDATA[publish]]></wp:status>
4947
+ <wp:post_parent>0</wp:post_parent>
4948
+ <wp:menu_order>0</wp:menu_order>
4949
+ <wp:post_type><![CDATA[post]]></wp:post_type>
4950
+ <wp:post_password><![CDATA[]]></wp:post_password>
4951
+ <wp:is_sticky>0</wp:is_sticky>
4952
+ <category domain="category" nicename="art"><![CDATA[Art]]></category>
4953
+ <category domain="post_tag" nicename="media"><![CDATA[Media]]></category>
4954
+ <category domain="post_tag" nicename="motion-graphics"><![CDATA[Motion Graphics]]></category>
4955
+ <category domain="category" nicename="people"><![CDATA[People]]></category>
4956
+ <category domain="post_tag" nicename="photography"><![CDATA[Photography]]></category>
4957
+ <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
4958
+ <category domain="post_format" nicename="post-format-video"><![CDATA[Video]]></category>
4959
+ <wp:postmeta>
4960
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
4961
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4962
+ </wp:postmeta>
4963
+ <wp:postmeta>
4964
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
4965
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4966
+ </wp:postmeta>
4967
+ <wp:postmeta>
4968
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
4969
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4970
+ </wp:postmeta>
4971
+ <wp:postmeta>
4972
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
4973
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4974
+ </wp:postmeta>
4975
+ <wp:postmeta>
4976
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
4977
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4978
+ </wp:postmeta>
4979
+ <wp:postmeta>
4980
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
4981
+ <wp:meta_value><![CDATA[https://vimeo.com/72609557]]></wp:meta_value>
4982
+ </wp:postmeta>
4983
+ <wp:postmeta>
4984
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
4985
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4986
+ </wp:postmeta>
4987
+ <wp:postmeta>
4988
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
4989
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
4990
+ </wp:postmeta>
4991
+ <wp:postmeta>
4992
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
4993
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4994
+ </wp:postmeta>
4995
+ <wp:postmeta>
4996
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
4997
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
4998
+ </wp:postmeta>
4999
+ <wp:postmeta>
5000
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
5001
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5002
+ </wp:postmeta>
5003
+ <wp:postmeta>
5004
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
5005
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
5006
+ </wp:postmeta>
5007
+ <wp:postmeta>
5008
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
5009
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5010
+ </wp:postmeta>
5011
+ <wp:postmeta>
5012
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
5013
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
5014
+ </wp:postmeta>
5015
+ <wp:postmeta>
5016
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
5017
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5018
+ </wp:postmeta>
5019
+ <wp:postmeta>
5020
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
5021
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5022
+ </wp:postmeta>
5023
+ <wp:postmeta>
5024
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
5025
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5026
+ </wp:postmeta>
5027
+ <wp:postmeta>
5028
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
5029
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5030
+ </wp:postmeta>
5031
+ <wp:postmeta>
5032
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
5033
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5034
+ </wp:postmeta>
5035
+ <wp:postmeta>
5036
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
5037
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
5038
+ </wp:postmeta>
5039
+ <wp:postmeta>
5040
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
5041
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
5042
+ </wp:postmeta>
5043
+ <wp:postmeta>
5044
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
5045
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
5046
+ </wp:postmeta>
5047
+ <wp:postmeta>
5048
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
5049
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
5050
+ </wp:postmeta>
5051
+ <wp:postmeta>
5052
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
5053
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5054
+ </wp:postmeta>
5055
+ <wp:postmeta>
5056
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
5057
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5058
+ </wp:postmeta>
5059
+ <wp:postmeta>
5060
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
5061
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
5062
+ </wp:postmeta>
5063
+ <wp:postmeta>
5064
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
5065
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5066
+ </wp:postmeta>
5067
+ <wp:comment>
5068
+ <wp:comment_id>38</wp:comment_id>
5069
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
5070
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
5071
+ <wp:comment_author_url></wp:comment_author_url>
5072
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5073
+ <wp:comment_date><![CDATA[2016-07-03 08:22:23]]></wp:comment_date>
5074
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:22:23]]></wp:comment_date_gmt>
5075
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
5076
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5077
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5078
+ <wp:comment_parent>0</wp:comment_parent>
5079
+ <wp:comment_user_id>0</wp:comment_user_id>
5080
+ </wp:comment>
5081
+ <wp:comment>
5082
+ <wp:comment_id>39</wp:comment_id>
5083
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
5084
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
5085
+ <wp:comment_author_url></wp:comment_author_url>
5086
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5087
+ <wp:comment_date><![CDATA[2016-07-03 08:22:45]]></wp:comment_date>
5088
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:22:45]]></wp:comment_date_gmt>
5089
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
5090
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5091
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5092
+ <wp:comment_parent>38</wp:comment_parent>
5093
+ <wp:comment_user_id>0</wp:comment_user_id>
5094
+ </wp:comment>
5095
+ <wp:comment>
5096
+ <wp:comment_id>40</wp:comment_id>
5097
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
5098
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
5099
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
5100
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5101
+ <wp:comment_date><![CDATA[2016-07-03 08:23:10]]></wp:comment_date>
5102
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:23:10]]></wp:comment_date_gmt>
5103
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
5104
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5105
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5106
+ <wp:comment_parent>0</wp:comment_parent>
5107
+ <wp:comment_user_id>0</wp:comment_user_id>
5108
+ </wp:comment>
5109
+ <wp:comment>
5110
+ <wp:comment_id>41</wp:comment_id>
5111
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
5112
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
5113
+ <wp:comment_author_url></wp:comment_author_url>
5114
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5115
+ <wp:comment_date><![CDATA[2016-07-03 08:23:33]]></wp:comment_date>
5116
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:23:33]]></wp:comment_date_gmt>
5117
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
5118
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5119
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5120
+ <wp:comment_parent>0</wp:comment_parent>
5121
+ <wp:comment_user_id>0</wp:comment_user_id>
5122
+ </wp:comment>
5123
+ </item>
5124
+ <item>
5125
+ <title>The Storm of Rain and Wind Descended Upon Them</title>
5126
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-storm-of-rain-and-wind-descended-upon-them/</link>
5127
+ <pubDate>Sat, 25 Jun 2016 08:33:19 +0000</pubDate>
5128
+ <dc:creator><![CDATA[admin]]></dc:creator>
5129
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=69</guid>
5130
+ <description></description>
5131
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
5132
+
5133
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
5134
+
5135
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
5136
+
5137
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
5138
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
5139
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
5140
+
5141
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
5142
+
5143
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
5144
+
5145
+ It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.]]></content:encoded>
5146
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
5147
+ <wp:post_id>69</wp:post_id>
5148
+ <wp:post_date><![CDATA[2016-06-25 08:33:19]]></wp:post_date>
5149
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:33:19]]></wp:post_date_gmt>
5150
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
5151
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
5152
+ <wp:post_name><![CDATA[the-storm-of-rain-and-wind-descended-upon-them]]></wp:post_name>
5153
+ <wp:status><![CDATA[publish]]></wp:status>
5154
+ <wp:post_parent>0</wp:post_parent>
5155
+ <wp:menu_order>0</wp:menu_order>
5156
+ <wp:post_type><![CDATA[post]]></wp:post_type>
5157
+ <wp:post_password><![CDATA[]]></wp:post_password>
5158
+ <wp:is_sticky>0</wp:is_sticky>
5159
+ <category domain="post_tag" nicename="creativity"><![CDATA[Creativity]]></category>
5160
+ <category domain="post_tag" nicename="modern-music"><![CDATA[Modern Music]]></category>
5161
+ <category domain="category" nicename="music"><![CDATA[Music]]></category>
5162
+ <category domain="post_format" nicename="post-format-image"><![CDATA[Image]]></category>
5163
+ <category domain="post_tag" nicename="productivity"><![CDATA[Productivity]]></category>
5164
+ <wp:postmeta>
5165
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
5166
+ <wp:meta_value><![CDATA[74]]></wp:meta_value>
5167
+ </wp:postmeta>
5168
+ <wp:postmeta>
5169
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
5170
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5171
+ </wp:postmeta>
5172
+ <wp:postmeta>
5173
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
5174
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5175
+ </wp:postmeta>
5176
+ <wp:postmeta>
5177
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
5178
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5179
+ </wp:postmeta>
5180
+ <wp:postmeta>
5181
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
5182
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5183
+ </wp:postmeta>
5184
+ <wp:postmeta>
5185
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
5186
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5187
+ </wp:postmeta>
5188
+ <wp:postmeta>
5189
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
5190
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5191
+ </wp:postmeta>
5192
+ <wp:postmeta>
5193
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
5194
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5195
+ </wp:postmeta>
5196
+ <wp:postmeta>
5197
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
5198
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
5199
+ </wp:postmeta>
5200
+ <wp:postmeta>
5201
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
5202
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5203
+ </wp:postmeta>
5204
+ <wp:postmeta>
5205
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
5206
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5207
+ </wp:postmeta>
5208
+ <wp:postmeta>
5209
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
5210
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5211
+ </wp:postmeta>
5212
+ <wp:postmeta>
5213
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
5214
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
5215
+ </wp:postmeta>
5216
+ <wp:postmeta>
5217
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
5218
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5219
+ </wp:postmeta>
5220
+ <wp:postmeta>
5221
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
5222
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
5223
+ </wp:postmeta>
5224
+ <wp:postmeta>
5225
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
5226
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5227
+ </wp:postmeta>
5228
+ <wp:postmeta>
5229
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
5230
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5231
+ </wp:postmeta>
5232
+ <wp:postmeta>
5233
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
5234
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5235
+ </wp:postmeta>
5236
+ <wp:postmeta>
5237
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
5238
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5239
+ </wp:postmeta>
5240
+ <wp:postmeta>
5241
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
5242
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5243
+ </wp:postmeta>
5244
+ <wp:postmeta>
5245
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
5246
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
5247
+ </wp:postmeta>
5248
+ <wp:postmeta>
5249
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
5250
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
5251
+ </wp:postmeta>
5252
+ <wp:postmeta>
5253
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
5254
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
5255
+ </wp:postmeta>
5256
+ <wp:postmeta>
5257
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
5258
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
5259
+ </wp:postmeta>
5260
+ <wp:postmeta>
5261
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
5262
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5263
+ </wp:postmeta>
5264
+ <wp:postmeta>
5265
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
5266
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5267
+ </wp:postmeta>
5268
+ <wp:postmeta>
5269
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
5270
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
5271
+ </wp:postmeta>
5272
+ <wp:postmeta>
5273
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
5274
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5275
+ </wp:postmeta>
5276
+ <wp:comment>
5277
+ <wp:comment_id>42</wp:comment_id>
5278
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
5279
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
5280
+ <wp:comment_author_url></wp:comment_author_url>
5281
+ <wp:comment_author_IP><![CDATA[151.245.164.71]]></wp:comment_author_IP>
5282
+ <wp:comment_date><![CDATA[2016-07-03 06:20:05]]></wp:comment_date>
5283
+ <wp:comment_date_gmt><![CDATA[2016-07-03 06:20:05]]></wp:comment_date_gmt>
5284
+ <wp:comment_content><![CDATA[Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla porttitor accumsan tincidunt. Cras ultricies ligula sed magna dictum porta. Sed porttitor lectus nibh. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vivamus suscipit tortor eget felis porttitor volutpat. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Donec rutrum congue leo eget malesuada.]]></wp:comment_content>
5285
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5286
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5287
+ <wp:comment_parent>0</wp:comment_parent>
5288
+ <wp:comment_user_id>0</wp:comment_user_id>
5289
+ </wp:comment>
5290
+ <wp:comment>
5291
+ <wp:comment_id>43</wp:comment_id>
5292
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
5293
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
5294
+ <wp:comment_author_url></wp:comment_author_url>
5295
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5296
+ <wp:comment_date><![CDATA[2016-07-03 07:11:26]]></wp:comment_date>
5297
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:11:26]]></wp:comment_date_gmt>
5298
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
5299
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5300
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5301
+ <wp:comment_parent>42</wp:comment_parent>
5302
+ <wp:comment_user_id>0</wp:comment_user_id>
5303
+ </wp:comment>
5304
+ <wp:comment>
5305
+ <wp:comment_id>44</wp:comment_id>
5306
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
5307
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
5308
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
5309
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5310
+ <wp:comment_date><![CDATA[2016-07-03 07:12:08]]></wp:comment_date>
5311
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:12:08]]></wp:comment_date_gmt>
5312
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
5313
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5314
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5315
+ <wp:comment_parent>0</wp:comment_parent>
5316
+ <wp:comment_user_id>0</wp:comment_user_id>
5317
+ </wp:comment>
5318
+ <wp:comment>
5319
+ <wp:comment_id>45</wp:comment_id>
5320
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
5321
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
5322
+ <wp:comment_author_url></wp:comment_author_url>
5323
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5324
+ <wp:comment_date><![CDATA[2016-07-03 07:12:27]]></wp:comment_date>
5325
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:12:27]]></wp:comment_date_gmt>
5326
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
5327
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5328
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5329
+ <wp:comment_parent>0</wp:comment_parent>
5330
+ <wp:comment_user_id>0</wp:comment_user_id>
5331
+ </wp:comment>
5332
+ </item>
5333
+ <item>
5334
+ <title>The Boat Scudded Thus Northward During the Whole Day</title>
5335
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-boat-scudded-thus-northward-during-the-whole-day/</link>
5336
+ <pubDate>Sat, 25 Jun 2016 08:46:35 +0000</pubDate>
5337
+ <dc:creator><![CDATA[admin]]></dc:creator>
5338
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=80</guid>
5339
+ <description></description>
5340
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
5341
+
5342
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
5343
+
5344
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
5345
+
5346
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
5347
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
5348
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
5349
+
5350
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
5351
+
5352
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
5353
+
5354
+ It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.]]></content:encoded>
5355
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
5356
+ <wp:post_id>80</wp:post_id>
5357
+ <wp:post_date><![CDATA[2016-06-25 08:46:35]]></wp:post_date>
5358
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:46:35]]></wp:post_date_gmt>
5359
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
5360
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
5361
+ <wp:post_name><![CDATA[the-boat-scudded-thus-northward-during-the-whole-day]]></wp:post_name>
5362
+ <wp:status><![CDATA[publish]]></wp:status>
5363
+ <wp:post_parent>0</wp:post_parent>
5364
+ <wp:menu_order>0</wp:menu_order>
5365
+ <wp:post_type><![CDATA[post]]></wp:post_type>
5366
+ <wp:post_password><![CDATA[]]></wp:post_password>
5367
+ <wp:is_sticky>0</wp:is_sticky>
5368
+ <category domain="post_tag" nicename="happiness"><![CDATA[Happiness]]></category>
5369
+ <category domain="post_tag" nicename="home-plants"><![CDATA[Home Plants]]></category>
5370
+ <category domain="category" nicename="life-style"><![CDATA[Life style]]></category>
5371
+ <category domain="post_tag" nicename="nature"><![CDATA[Nature]]></category>
5372
+ <wp:postmeta>
5373
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
5374
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5375
+ </wp:postmeta>
5376
+ <wp:postmeta>
5377
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
5378
+ <wp:meta_value><![CDATA[89]]></wp:meta_value>
5379
+ </wp:postmeta>
5380
+ <wp:postmeta>
5381
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
5382
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5383
+ </wp:postmeta>
5384
+ <wp:postmeta>
5385
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
5386
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5387
+ </wp:postmeta>
5388
+ <wp:postmeta>
5389
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
5390
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5391
+ </wp:postmeta>
5392
+ <wp:postmeta>
5393
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
5394
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5395
+ </wp:postmeta>
5396
+ <wp:postmeta>
5397
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
5398
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5399
+ </wp:postmeta>
5400
+ <wp:postmeta>
5401
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
5402
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5403
+ </wp:postmeta>
5404
+ <wp:postmeta>
5405
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
5406
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
5407
+ </wp:postmeta>
5408
+ <wp:postmeta>
5409
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
5410
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5411
+ </wp:postmeta>
5412
+ <wp:postmeta>
5413
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
5414
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5415
+ </wp:postmeta>
5416
+ <wp:postmeta>
5417
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
5418
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5419
+ </wp:postmeta>
5420
+ <wp:postmeta>
5421
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
5422
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
5423
+ </wp:postmeta>
5424
+ <wp:postmeta>
5425
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
5426
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5427
+ </wp:postmeta>
5428
+ <wp:postmeta>
5429
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
5430
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
5431
+ </wp:postmeta>
5432
+ <wp:postmeta>
5433
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
5434
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5435
+ </wp:postmeta>
5436
+ <wp:postmeta>
5437
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
5438
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5439
+ </wp:postmeta>
5440
+ <wp:postmeta>
5441
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
5442
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5443
+ </wp:postmeta>
5444
+ <wp:postmeta>
5445
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
5446
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5447
+ </wp:postmeta>
5448
+ <wp:postmeta>
5449
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
5450
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5451
+ </wp:postmeta>
5452
+ <wp:postmeta>
5453
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
5454
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
5455
+ </wp:postmeta>
5456
+ <wp:postmeta>
5457
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
5458
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
5459
+ </wp:postmeta>
5460
+ <wp:postmeta>
5461
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
5462
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
5463
+ </wp:postmeta>
5464
+ <wp:postmeta>
5465
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
5466
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
5467
+ </wp:postmeta>
5468
+ <wp:postmeta>
5469
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
5470
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5471
+ </wp:postmeta>
5472
+ <wp:postmeta>
5473
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
5474
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5475
+ </wp:postmeta>
5476
+ <wp:postmeta>
5477
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
5478
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
5479
+ </wp:postmeta>
5480
+ <wp:postmeta>
5481
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
5482
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5483
+ </wp:postmeta>
5484
+ <wp:comment>
5485
+ <wp:comment_id>46</wp:comment_id>
5486
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
5487
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
5488
+ <wp:comment_author_url></wp:comment_author_url>
5489
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5490
+ <wp:comment_date><![CDATA[2016-07-03 08:02:56]]></wp:comment_date>
5491
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:02:56]]></wp:comment_date_gmt>
5492
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
5493
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5494
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5495
+ <wp:comment_parent>0</wp:comment_parent>
5496
+ <wp:comment_user_id>0</wp:comment_user_id>
5497
+ </wp:comment>
5498
+ <wp:comment>
5499
+ <wp:comment_id>47</wp:comment_id>
5500
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
5501
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
5502
+ <wp:comment_author_url></wp:comment_author_url>
5503
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5504
+ <wp:comment_date><![CDATA[2016-07-03 08:03:15]]></wp:comment_date>
5505
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:03:15]]></wp:comment_date_gmt>
5506
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
5507
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5508
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5509
+ <wp:comment_parent>46</wp:comment_parent>
5510
+ <wp:comment_user_id>0</wp:comment_user_id>
5511
+ </wp:comment>
5512
+ <wp:comment>
5513
+ <wp:comment_id>48</wp:comment_id>
5514
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
5515
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
5516
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
5517
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5518
+ <wp:comment_date><![CDATA[2016-07-03 08:03:39]]></wp:comment_date>
5519
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:03:39]]></wp:comment_date_gmt>
5520
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
5521
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5522
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5523
+ <wp:comment_parent>0</wp:comment_parent>
5524
+ <wp:comment_user_id>0</wp:comment_user_id>
5525
+ </wp:comment>
5526
+ <wp:comment>
5527
+ <wp:comment_id>49</wp:comment_id>
5528
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
5529
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
5530
+ <wp:comment_author_url></wp:comment_author_url>
5531
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5532
+ <wp:comment_date><![CDATA[2016-07-03 08:03:57]]></wp:comment_date>
5533
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:03:57]]></wp:comment_date_gmt>
5534
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
5535
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5536
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5537
+ <wp:comment_parent>0</wp:comment_parent>
5538
+ <wp:comment_user_id>0</wp:comment_user_id>
5539
+ </wp:comment>
5540
+ </item>
5541
+ <item>
5542
+ <title>The Whole Network of Huts And Pathways Forming</title>
5543
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-whole-network-of-huts-and-pathways-forming/</link>
5544
+ <pubDate>Sat, 25 Jun 2016 08:49:35 +0000</pubDate>
5545
+ <dc:creator><![CDATA[admin]]></dc:creator>
5546
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=82</guid>
5547
+ <description></description>
5548
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
5549
+
5550
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
5551
+
5552
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
5553
+
5554
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
5555
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
5556
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
5557
+
5558
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
5559
+
5560
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
5561
+
5562
+ It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.]]></content:encoded>
5563
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
5564
+ <wp:post_id>82</wp:post_id>
5565
+ <wp:post_date><![CDATA[2016-06-25 08:49:35]]></wp:post_date>
5566
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:49:35]]></wp:post_date_gmt>
5567
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
5568
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
5569
+ <wp:post_name><![CDATA[the-whole-network-of-huts-and-pathways-forming]]></wp:post_name>
5570
+ <wp:status><![CDATA[publish]]></wp:status>
5571
+ <wp:post_parent>0</wp:post_parent>
5572
+ <wp:menu_order>0</wp:menu_order>
5573
+ <wp:post_type><![CDATA[post]]></wp:post_type>
5574
+ <wp:post_password><![CDATA[]]></wp:post_password>
5575
+ <wp:is_sticky>0</wp:is_sticky>
5576
+ <category domain="post_tag" nicename="blogging"><![CDATA[Blogging]]></category>
5577
+ <category domain="category" nicename="culture"><![CDATA[Culture]]></category>
5578
+ <category domain="post_tag" nicename="marketing"><![CDATA[Marketing]]></category>
5579
+ <category domain="post_tag" nicename="productivity"><![CDATA[Productivity]]></category>
5580
+ <wp:postmeta>
5581
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
5582
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5583
+ </wp:postmeta>
5584
+ <wp:postmeta>
5585
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
5586
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5587
+ </wp:postmeta>
5588
+ <wp:postmeta>
5589
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
5590
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5591
+ </wp:postmeta>
5592
+ <wp:postmeta>
5593
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
5594
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5595
+ </wp:postmeta>
5596
+ <wp:postmeta>
5597
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
5598
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5599
+ </wp:postmeta>
5600
+ <wp:postmeta>
5601
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
5602
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5603
+ </wp:postmeta>
5604
+ <wp:postmeta>
5605
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
5606
+ <wp:meta_value><![CDATA[73]]></wp:meta_value>
5607
+ </wp:postmeta>
5608
+ <wp:postmeta>
5609
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
5610
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5611
+ </wp:postmeta>
5612
+ <wp:postmeta>
5613
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
5614
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
5615
+ </wp:postmeta>
5616
+ <wp:postmeta>
5617
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
5618
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5619
+ </wp:postmeta>
5620
+ <wp:postmeta>
5621
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
5622
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5623
+ </wp:postmeta>
5624
+ <wp:postmeta>
5625
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
5626
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5627
+ </wp:postmeta>
5628
+ <wp:postmeta>
5629
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
5630
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
5631
+ </wp:postmeta>
5632
+ <wp:postmeta>
5633
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
5634
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5635
+ </wp:postmeta>
5636
+ <wp:postmeta>
5637
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
5638
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
5639
+ </wp:postmeta>
5640
+ <wp:postmeta>
5641
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
5642
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5643
+ </wp:postmeta>
5644
+ <wp:postmeta>
5645
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
5646
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5647
+ </wp:postmeta>
5648
+ <wp:postmeta>
5649
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
5650
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5651
+ </wp:postmeta>
5652
+ <wp:postmeta>
5653
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
5654
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5655
+ </wp:postmeta>
5656
+ <wp:postmeta>
5657
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
5658
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5659
+ </wp:postmeta>
5660
+ <wp:postmeta>
5661
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
5662
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
5663
+ </wp:postmeta>
5664
+ <wp:postmeta>
5665
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
5666
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
5667
+ </wp:postmeta>
5668
+ <wp:postmeta>
5669
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
5670
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
5671
+ </wp:postmeta>
5672
+ <wp:postmeta>
5673
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
5674
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
5675
+ </wp:postmeta>
5676
+ <wp:postmeta>
5677
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
5678
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5679
+ </wp:postmeta>
5680
+ <wp:postmeta>
5681
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
5682
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5683
+ </wp:postmeta>
5684
+ <wp:postmeta>
5685
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
5686
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
5687
+ </wp:postmeta>
5688
+ <wp:postmeta>
5689
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
5690
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5691
+ </wp:postmeta>
5692
+ <wp:comment>
5693
+ <wp:comment_id>50</wp:comment_id>
5694
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
5695
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
5696
+ <wp:comment_author_url></wp:comment_author_url>
5697
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5698
+ <wp:comment_date><![CDATA[2016-07-03 08:00:54]]></wp:comment_date>
5699
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:00:54]]></wp:comment_date_gmt>
5700
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
5701
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5702
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5703
+ <wp:comment_parent>0</wp:comment_parent>
5704
+ <wp:comment_user_id>0</wp:comment_user_id>
5705
+ </wp:comment>
5706
+ <wp:comment>
5707
+ <wp:comment_id>51</wp:comment_id>
5708
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
5709
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
5710
+ <wp:comment_author_url></wp:comment_author_url>
5711
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5712
+ <wp:comment_date><![CDATA[2016-07-03 08:01:40]]></wp:comment_date>
5713
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:01:40]]></wp:comment_date_gmt>
5714
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
5715
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5716
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5717
+ <wp:comment_parent>50</wp:comment_parent>
5718
+ <wp:comment_user_id>0</wp:comment_user_id>
5719
+ </wp:comment>
5720
+ <wp:comment>
5721
+ <wp:comment_id>52</wp:comment_id>
5722
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
5723
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
5724
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
5725
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5726
+ <wp:comment_date><![CDATA[2016-07-03 08:02:02]]></wp:comment_date>
5727
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:02:02]]></wp:comment_date_gmt>
5728
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
5729
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5730
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5731
+ <wp:comment_parent>0</wp:comment_parent>
5732
+ <wp:comment_user_id>0</wp:comment_user_id>
5733
+ </wp:comment>
5734
+ <wp:comment>
5735
+ <wp:comment_id>53</wp:comment_id>
5736
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
5737
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
5738
+ <wp:comment_author_url></wp:comment_author_url>
5739
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5740
+ <wp:comment_date><![CDATA[2016-07-03 08:02:24]]></wp:comment_date>
5741
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:02:24]]></wp:comment_date_gmt>
5742
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
5743
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5744
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5745
+ <wp:comment_parent>0</wp:comment_parent>
5746
+ <wp:comment_user_id>0</wp:comment_user_id>
5747
+ </wp:comment>
5748
+ </item>
5749
+ <item>
5750
+ <title>They spoke in monosyllables and short jerky sentences</title>
5751
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/they-spoke-in-monosyllables-and-short-jerky-sentences/</link>
5752
+ <pubDate>Sat, 25 Jun 2016 08:52:56 +0000</pubDate>
5753
+ <dc:creator><![CDATA[admin]]></dc:creator>
5754
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=84</guid>
5755
+ <description></description>
5756
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
5757
+
5758
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
5759
+
5760
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
5761
+
5762
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
5763
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
5764
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
5765
+
5766
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
5767
+
5768
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
5769
+
5770
+ It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.]]></content:encoded>
5771
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
5772
+ <wp:post_id>84</wp:post_id>
5773
+ <wp:post_date><![CDATA[2016-06-25 08:52:56]]></wp:post_date>
5774
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:52:56]]></wp:post_date_gmt>
5775
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
5776
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
5777
+ <wp:post_name><![CDATA[they-spoke-in-monosyllables-and-short-jerky-sentences]]></wp:post_name>
5778
+ <wp:status><![CDATA[publish]]></wp:status>
5779
+ <wp:post_parent>0</wp:post_parent>
5780
+ <wp:menu_order>0</wp:menu_order>
5781
+ <wp:post_type><![CDATA[post]]></wp:post_type>
5782
+ <wp:post_password><![CDATA[]]></wp:post_password>
5783
+ <wp:is_sticky>0</wp:is_sticky>
5784
+ <category domain="post_tag" nicename="challenge"><![CDATA[Challenge]]></category>
5785
+ <category domain="category" nicename="life-style"><![CDATA[Life style]]></category>
5786
+ <category domain="post_tag" nicename="media"><![CDATA[Media]]></category>
5787
+ <category domain="post_tag" nicename="photography"><![CDATA[Photography]]></category>
5788
+ <category domain="post_format" nicename="post-format-image"><![CDATA[Image]]></category>
5789
+ <category domain="post_tag" nicename="sea"><![CDATA[Sea]]></category>
5790
+ <wp:postmeta>
5791
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
5792
+ <wp:meta_value><![CDATA[76]]></wp:meta_value>
5793
+ </wp:postmeta>
5794
+ <wp:postmeta>
5795
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
5796
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5797
+ </wp:postmeta>
5798
+ <wp:postmeta>
5799
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
5800
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5801
+ </wp:postmeta>
5802
+ <wp:postmeta>
5803
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
5804
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5805
+ </wp:postmeta>
5806
+ <wp:postmeta>
5807
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
5808
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5809
+ </wp:postmeta>
5810
+ <wp:postmeta>
5811
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
5812
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5813
+ </wp:postmeta>
5814
+ <wp:postmeta>
5815
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
5816
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
5817
+ </wp:postmeta>
5818
+ <wp:postmeta>
5819
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
5820
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5821
+ </wp:postmeta>
5822
+ <wp:postmeta>
5823
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
5824
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
5825
+ </wp:postmeta>
5826
+ <wp:postmeta>
5827
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
5828
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5829
+ </wp:postmeta>
5830
+ <wp:postmeta>
5831
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
5832
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5833
+ </wp:postmeta>
5834
+ <wp:postmeta>
5835
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
5836
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5837
+ </wp:postmeta>
5838
+ <wp:postmeta>
5839
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
5840
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
5841
+ </wp:postmeta>
5842
+ <wp:postmeta>
5843
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
5844
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5845
+ </wp:postmeta>
5846
+ <wp:postmeta>
5847
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
5848
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
5849
+ </wp:postmeta>
5850
+ <wp:postmeta>
5851
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
5852
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5853
+ </wp:postmeta>
5854
+ <wp:postmeta>
5855
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
5856
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5857
+ </wp:postmeta>
5858
+ <wp:postmeta>
5859
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
5860
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5861
+ </wp:postmeta>
5862
+ <wp:postmeta>
5863
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
5864
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
5865
+ </wp:postmeta>
5866
+ <wp:postmeta>
5867
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
5868
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5869
+ </wp:postmeta>
5870
+ <wp:postmeta>
5871
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
5872
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
5873
+ </wp:postmeta>
5874
+ <wp:postmeta>
5875
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
5876
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
5877
+ </wp:postmeta>
5878
+ <wp:postmeta>
5879
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
5880
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
5881
+ </wp:postmeta>
5882
+ <wp:postmeta>
5883
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
5884
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
5885
+ </wp:postmeta>
5886
+ <wp:postmeta>
5887
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
5888
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5889
+ </wp:postmeta>
5890
+ <wp:postmeta>
5891
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
5892
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
5893
+ </wp:postmeta>
5894
+ <wp:postmeta>
5895
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
5896
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
5897
+ </wp:postmeta>
5898
+ <wp:postmeta>
5899
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
5900
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
5901
+ </wp:postmeta>
5902
+ <wp:comment>
5903
+ <wp:comment_id>54</wp:comment_id>
5904
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
5905
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
5906
+ <wp:comment_author_url></wp:comment_author_url>
5907
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5908
+ <wp:comment_date><![CDATA[2016-07-03 07:59:06]]></wp:comment_date>
5909
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:59:06]]></wp:comment_date_gmt>
5910
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
5911
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5912
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5913
+ <wp:comment_parent>0</wp:comment_parent>
5914
+ <wp:comment_user_id>0</wp:comment_user_id>
5915
+ </wp:comment>
5916
+ <wp:comment>
5917
+ <wp:comment_id>55</wp:comment_id>
5918
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
5919
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
5920
+ <wp:comment_author_url></wp:comment_author_url>
5921
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5922
+ <wp:comment_date><![CDATA[2016-07-03 07:59:32]]></wp:comment_date>
5923
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:59:32]]></wp:comment_date_gmt>
5924
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
5925
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5926
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5927
+ <wp:comment_parent>54</wp:comment_parent>
5928
+ <wp:comment_user_id>0</wp:comment_user_id>
5929
+ </wp:comment>
5930
+ <wp:comment>
5931
+ <wp:comment_id>56</wp:comment_id>
5932
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
5933
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
5934
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
5935
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5936
+ <wp:comment_date><![CDATA[2016-07-03 07:59:51]]></wp:comment_date>
5937
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:59:51]]></wp:comment_date_gmt>
5938
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
5939
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5940
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5941
+ <wp:comment_parent>0</wp:comment_parent>
5942
+ <wp:comment_user_id>0</wp:comment_user_id>
5943
+ </wp:comment>
5944
+ <wp:comment>
5945
+ <wp:comment_id>57</wp:comment_id>
5946
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
5947
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
5948
+ <wp:comment_author_url></wp:comment_author_url>
5949
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
5950
+ <wp:comment_date><![CDATA[2016-07-03 08:00:26]]></wp:comment_date>
5951
+ <wp:comment_date_gmt><![CDATA[2016-07-03 08:00:26]]></wp:comment_date_gmt>
5952
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
5953
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
5954
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
5955
+ <wp:comment_parent>0</wp:comment_parent>
5956
+ <wp:comment_user_id>0</wp:comment_user_id>
5957
+ </wp:comment>
5958
+ </item>
5959
+ <item>
5960
+ <title>Nor Would Difference of Country Make Very Essential Difference</title>
5961
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/nor-would-difference-of-country-make-very-essential-difference/</link>
5962
+ <pubDate>Sat, 25 Jun 2016 08:56:29 +0000</pubDate>
5963
+ <dc:creator><![CDATA[admin]]></dc:creator>
5964
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=86</guid>
5965
+ <description></description>
5966
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
5967
+
5968
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
5969
+
5970
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
5971
+
5972
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
5973
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
5974
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
5975
+
5976
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
5977
+
5978
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
5979
+
5980
+ It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.]]></content:encoded>
5981
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
5982
+ <wp:post_id>86</wp:post_id>
5983
+ <wp:post_date><![CDATA[2016-06-25 08:56:29]]></wp:post_date>
5984
+ <wp:post_date_gmt><![CDATA[2016-06-25 08:56:29]]></wp:post_date_gmt>
5985
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
5986
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
5987
+ <wp:post_name><![CDATA[nor-would-difference-of-country-make-very-essential-difference]]></wp:post_name>
5988
+ <wp:status><![CDATA[publish]]></wp:status>
5989
+ <wp:post_parent>0</wp:post_parent>
5990
+ <wp:menu_order>0</wp:menu_order>
5991
+ <wp:post_type><![CDATA[post]]></wp:post_type>
5992
+ <wp:post_password><![CDATA[]]></wp:post_password>
5993
+ <wp:is_sticky>0</wp:is_sticky>
5994
+ <category domain="post_tag" nicename="journalism"><![CDATA[Journalism]]></category>
5995
+ <category domain="category" nicename="life-style"><![CDATA[Life style]]></category>
5996
+ <category domain="post_tag" nicename="people"><![CDATA[People]]></category>
5997
+ <category domain="post_tag" nicename="tips-and-tricks"><![CDATA[Tips and Tricks]]></category>
5998
+ <wp:postmeta>
5999
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
6000
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6001
+ </wp:postmeta>
6002
+ <wp:postmeta>
6003
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
6004
+ <wp:meta_value><![CDATA[72]]></wp:meta_value>
6005
+ </wp:postmeta>
6006
+ <wp:postmeta>
6007
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
6008
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6009
+ </wp:postmeta>
6010
+ <wp:postmeta>
6011
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
6012
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6013
+ </wp:postmeta>
6014
+ <wp:postmeta>
6015
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
6016
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6017
+ </wp:postmeta>
6018
+ <wp:postmeta>
6019
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
6020
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6021
+ </wp:postmeta>
6022
+ <wp:postmeta>
6023
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
6024
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6025
+ </wp:postmeta>
6026
+ <wp:postmeta>
6027
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
6028
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
6029
+ </wp:postmeta>
6030
+ <wp:postmeta>
6031
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
6032
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
6033
+ </wp:postmeta>
6034
+ <wp:postmeta>
6035
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
6036
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6037
+ </wp:postmeta>
6038
+ <wp:postmeta>
6039
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
6040
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
6041
+ </wp:postmeta>
6042
+ <wp:postmeta>
6043
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
6044
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6045
+ </wp:postmeta>
6046
+ <wp:postmeta>
6047
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
6048
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
6049
+ </wp:postmeta>
6050
+ <wp:postmeta>
6051
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
6052
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6053
+ </wp:postmeta>
6054
+ <wp:postmeta>
6055
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
6056
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
6057
+ </wp:postmeta>
6058
+ <wp:postmeta>
6059
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
6060
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6061
+ </wp:postmeta>
6062
+ <wp:postmeta>
6063
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
6064
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6065
+ </wp:postmeta>
6066
+ <wp:postmeta>
6067
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
6068
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6069
+ </wp:postmeta>
6070
+ <wp:postmeta>
6071
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
6072
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6073
+ </wp:postmeta>
6074
+ <wp:postmeta>
6075
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
6076
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6077
+ </wp:postmeta>
6078
+ <wp:postmeta>
6079
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
6080
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
6081
+ </wp:postmeta>
6082
+ <wp:postmeta>
6083
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
6084
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
6085
+ </wp:postmeta>
6086
+ <wp:postmeta>
6087
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
6088
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
6089
+ </wp:postmeta>
6090
+ <wp:postmeta>
6091
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
6092
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
6093
+ </wp:postmeta>
6094
+ <wp:postmeta>
6095
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
6096
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6097
+ </wp:postmeta>
6098
+ <wp:postmeta>
6099
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
6100
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6101
+ </wp:postmeta>
6102
+ <wp:postmeta>
6103
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
6104
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
6105
+ </wp:postmeta>
6106
+ <wp:postmeta>
6107
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
6108
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
6109
+ </wp:postmeta>
6110
+ <wp:comment>
6111
+ <wp:comment_id>58</wp:comment_id>
6112
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
6113
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
6114
+ <wp:comment_author_url></wp:comment_author_url>
6115
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6116
+ <wp:comment_date><![CDATA[2016-07-03 07:56:05]]></wp:comment_date>
6117
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:56:05]]></wp:comment_date_gmt>
6118
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
6119
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6120
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6121
+ <wp:comment_parent>0</wp:comment_parent>
6122
+ <wp:comment_user_id>0</wp:comment_user_id>
6123
+ </wp:comment>
6124
+ <wp:comment>
6125
+ <wp:comment_id>59</wp:comment_id>
6126
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
6127
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
6128
+ <wp:comment_author_url></wp:comment_author_url>
6129
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6130
+ <wp:comment_date><![CDATA[2016-07-03 07:56:25]]></wp:comment_date>
6131
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:56:25]]></wp:comment_date_gmt>
6132
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
6133
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6134
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6135
+ <wp:comment_parent>58</wp:comment_parent>
6136
+ <wp:comment_user_id>0</wp:comment_user_id>
6137
+ </wp:comment>
6138
+ <wp:comment>
6139
+ <wp:comment_id>60</wp:comment_id>
6140
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
6141
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
6142
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
6143
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6144
+ <wp:comment_date><![CDATA[2016-07-03 07:56:48]]></wp:comment_date>
6145
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:56:48]]></wp:comment_date_gmt>
6146
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
6147
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6148
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6149
+ <wp:comment_parent>0</wp:comment_parent>
6150
+ <wp:comment_user_id>0</wp:comment_user_id>
6151
+ </wp:comment>
6152
+ <wp:comment>
6153
+ <wp:comment_id>61</wp:comment_id>
6154
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
6155
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
6156
+ <wp:comment_author_url></wp:comment_author_url>
6157
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6158
+ <wp:comment_date><![CDATA[2016-07-03 07:57:27]]></wp:comment_date>
6159
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:57:27]]></wp:comment_date_gmt>
6160
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
6161
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6162
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6163
+ <wp:comment_parent>0</wp:comment_parent>
6164
+ <wp:comment_user_id>0</wp:comment_user_id>
6165
+ </wp:comment>
6166
+ </item>
6167
+ <item>
6168
+ <title>It Was Necessary to Have Dry Wood</title>
6169
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/it-was-necessary-to-have-dry-wood/</link>
6170
+ <pubDate>Sat, 25 Jun 2016 09:46:13 +0000</pubDate>
6171
+ <dc:creator><![CDATA[admin]]></dc:creator>
6172
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=88</guid>
6173
+ <description></description>
6174
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
6175
+
6176
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
6177
+
6178
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
6179
+
6180
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
6181
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
6182
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
6183
+
6184
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
6185
+
6186
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
6187
+
6188
+ It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.]]></content:encoded>
6189
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
6190
+ <wp:post_id>88</wp:post_id>
6191
+ <wp:post_date><![CDATA[2016-06-25 09:46:13]]></wp:post_date>
6192
+ <wp:post_date_gmt><![CDATA[2016-06-25 09:46:13]]></wp:post_date_gmt>
6193
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
6194
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
6195
+ <wp:post_name><![CDATA[it-was-necessary-to-have-dry-wood]]></wp:post_name>
6196
+ <wp:status><![CDATA[publish]]></wp:status>
6197
+ <wp:post_parent>0</wp:post_parent>
6198
+ <wp:menu_order>0</wp:menu_order>
6199
+ <wp:post_type><![CDATA[post]]></wp:post_type>
6200
+ <wp:post_password><![CDATA[]]></wp:post_password>
6201
+ <wp:is_sticky>0</wp:is_sticky>
6202
+ <category domain="post_tag" nicename="architecture"><![CDATA[Architecture]]></category>
6203
+ <category domain="category" nicename="art"><![CDATA[Art]]></category>
6204
+ <category domain="post_tag" nicename="city"><![CDATA[City]]></category>
6205
+ <category domain="post_tag" nicename="grand-bridge"><![CDATA[Grand Bridge]]></category>
6206
+ <category domain="post_format" nicename="post-format-image"><![CDATA[Image]]></category>
6207
+ <wp:postmeta>
6208
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
6209
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6210
+ </wp:postmeta>
6211
+ <wp:postmeta>
6212
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
6213
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6214
+ </wp:postmeta>
6215
+ <wp:postmeta>
6216
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
6217
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6218
+ </wp:postmeta>
6219
+ <wp:postmeta>
6220
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
6221
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6222
+ </wp:postmeta>
6223
+ <wp:postmeta>
6224
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
6225
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6226
+ </wp:postmeta>
6227
+ <wp:postmeta>
6228
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
6229
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6230
+ </wp:postmeta>
6231
+ <wp:postmeta>
6232
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
6233
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
6234
+ </wp:postmeta>
6235
+ <wp:postmeta>
6236
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
6237
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
6238
+ </wp:postmeta>
6239
+ <wp:postmeta>
6240
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
6241
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6242
+ </wp:postmeta>
6243
+ <wp:postmeta>
6244
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
6245
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
6246
+ </wp:postmeta>
6247
+ <wp:postmeta>
6248
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
6249
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6250
+ </wp:postmeta>
6251
+ <wp:postmeta>
6252
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
6253
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
6254
+ </wp:postmeta>
6255
+ <wp:postmeta>
6256
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
6257
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6258
+ </wp:postmeta>
6259
+ <wp:postmeta>
6260
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
6261
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
6262
+ </wp:postmeta>
6263
+ <wp:postmeta>
6264
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
6265
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6266
+ </wp:postmeta>
6267
+ <wp:postmeta>
6268
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
6269
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6270
+ </wp:postmeta>
6271
+ <wp:postmeta>
6272
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
6273
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6274
+ </wp:postmeta>
6275
+ <wp:postmeta>
6276
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
6277
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6278
+ </wp:postmeta>
6279
+ <wp:postmeta>
6280
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
6281
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6282
+ </wp:postmeta>
6283
+ <wp:postmeta>
6284
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
6285
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
6286
+ </wp:postmeta>
6287
+ <wp:postmeta>
6288
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
6289
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
6290
+ </wp:postmeta>
6291
+ <wp:postmeta>
6292
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
6293
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
6294
+ </wp:postmeta>
6295
+ <wp:postmeta>
6296
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
6297
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
6298
+ </wp:postmeta>
6299
+ <wp:postmeta>
6300
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
6301
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6302
+ </wp:postmeta>
6303
+ <wp:postmeta>
6304
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
6305
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6306
+ </wp:postmeta>
6307
+ <wp:postmeta>
6308
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
6309
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
6310
+ </wp:postmeta>
6311
+ <wp:postmeta>
6312
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
6313
+ <wp:meta_value><![CDATA[71]]></wp:meta_value>
6314
+ </wp:postmeta>
6315
+ <wp:postmeta>
6316
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
6317
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
6318
+ </wp:postmeta>
6319
+ <wp:comment>
6320
+ <wp:comment_id>62</wp:comment_id>
6321
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
6322
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
6323
+ <wp:comment_author_url></wp:comment_author_url>
6324
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6325
+ <wp:comment_date><![CDATA[2016-07-03 07:53:48]]></wp:comment_date>
6326
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:53:48]]></wp:comment_date_gmt>
6327
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
6328
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6329
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6330
+ <wp:comment_parent>0</wp:comment_parent>
6331
+ <wp:comment_user_id>0</wp:comment_user_id>
6332
+ </wp:comment>
6333
+ <wp:comment>
6334
+ <wp:comment_id>63</wp:comment_id>
6335
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
6336
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
6337
+ <wp:comment_author_url></wp:comment_author_url>
6338
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6339
+ <wp:comment_date><![CDATA[2016-07-03 07:54:16]]></wp:comment_date>
6340
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:54:16]]></wp:comment_date_gmt>
6341
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
6342
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6343
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6344
+ <wp:comment_parent>62</wp:comment_parent>
6345
+ <wp:comment_user_id>0</wp:comment_user_id>
6346
+ </wp:comment>
6347
+ <wp:comment>
6348
+ <wp:comment_id>64</wp:comment_id>
6349
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
6350
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
6351
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
6352
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6353
+ <wp:comment_date><![CDATA[2016-07-03 07:54:43]]></wp:comment_date>
6354
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:54:43]]></wp:comment_date_gmt>
6355
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
6356
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6357
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6358
+ <wp:comment_parent>0</wp:comment_parent>
6359
+ <wp:comment_user_id>0</wp:comment_user_id>
6360
+ </wp:comment>
6361
+ <wp:comment>
6362
+ <wp:comment_id>65</wp:comment_id>
6363
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
6364
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
6365
+ <wp:comment_author_url></wp:comment_author_url>
6366
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6367
+ <wp:comment_date><![CDATA[2016-07-03 07:55:45]]></wp:comment_date>
6368
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:55:45]]></wp:comment_date_gmt>
6369
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
6370
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6371
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6372
+ <wp:comment_parent>0</wp:comment_parent>
6373
+ <wp:comment_user_id>0</wp:comment_user_id>
6374
+ </wp:comment>
6375
+ </item>
6376
+ <item>
6377
+ <title>The Greater Part of the Photos</title>
6378
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/the-greater-part-of-the-deck/</link>
6379
+ <pubDate>Sat, 25 Jun 2016 10:06:52 +0000</pubDate>
6380
+ <dc:creator><![CDATA[admin]]></dc:creator>
6381
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=92</guid>
6382
+ <description></description>
6383
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
6384
+
6385
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
6386
+
6387
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
6388
+
6389
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
6390
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
6391
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
6392
+
6393
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
6394
+
6395
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
6396
+
6397
+ It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.]]></content:encoded>
6398
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
6399
+ <wp:post_id>92</wp:post_id>
6400
+ <wp:post_date><![CDATA[2016-06-25 10:06:52]]></wp:post_date>
6401
+ <wp:post_date_gmt><![CDATA[2016-06-25 10:06:52]]></wp:post_date_gmt>
6402
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
6403
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
6404
+ <wp:post_name><![CDATA[the-greater-part-of-the-deck]]></wp:post_name>
6405
+ <wp:status><![CDATA[publish]]></wp:status>
6406
+ <wp:post_parent>0</wp:post_parent>
6407
+ <wp:menu_order>0</wp:menu_order>
6408
+ <wp:post_type><![CDATA[post]]></wp:post_type>
6409
+ <wp:post_password><![CDATA[]]></wp:post_password>
6410
+ <wp:is_sticky>0</wp:is_sticky>
6411
+ <category domain="post_tag" nicename="anniversary"><![CDATA[Anniversary]]></category>
6412
+ <category domain="post_tag" nicename="creativity"><![CDATA[Creativity]]></category>
6413
+ <category domain="category" nicename="culture"><![CDATA[Culture]]></category>
6414
+ <category domain="post_tag" nicename="new-year"><![CDATA[New Year]]></category>
6415
+ <category domain="category" nicename="people"><![CDATA[People]]></category>
6416
+ <wp:postmeta>
6417
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
6418
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6419
+ </wp:postmeta>
6420
+ <wp:postmeta>
6421
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
6422
+ <wp:meta_value><![CDATA[91]]></wp:meta_value>
6423
+ </wp:postmeta>
6424
+ <wp:postmeta>
6425
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
6426
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6427
+ </wp:postmeta>
6428
+ <wp:postmeta>
6429
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
6430
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6431
+ </wp:postmeta>
6432
+ <wp:postmeta>
6433
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
6434
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6435
+ </wp:postmeta>
6436
+ <wp:postmeta>
6437
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
6438
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6439
+ </wp:postmeta>
6440
+ <wp:postmeta>
6441
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
6442
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
6443
+ </wp:postmeta>
6444
+ <wp:postmeta>
6445
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
6446
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
6447
+ </wp:postmeta>
6448
+ <wp:postmeta>
6449
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
6450
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
6451
+ </wp:postmeta>
6452
+ <wp:postmeta>
6453
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
6454
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6455
+ </wp:postmeta>
6456
+ <wp:postmeta>
6457
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
6458
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
6459
+ </wp:postmeta>
6460
+ <wp:postmeta>
6461
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
6462
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6463
+ </wp:postmeta>
6464
+ <wp:postmeta>
6465
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
6466
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
6467
+ </wp:postmeta>
6468
+ <wp:postmeta>
6469
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
6470
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6471
+ </wp:postmeta>
6472
+ <wp:postmeta>
6473
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
6474
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
6475
+ </wp:postmeta>
6476
+ <wp:postmeta>
6477
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
6478
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6479
+ </wp:postmeta>
6480
+ <wp:postmeta>
6481
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
6482
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6483
+ </wp:postmeta>
6484
+ <wp:postmeta>
6485
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
6486
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6487
+ </wp:postmeta>
6488
+ <wp:postmeta>
6489
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
6490
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6491
+ </wp:postmeta>
6492
+ <wp:postmeta>
6493
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
6494
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6495
+ </wp:postmeta>
6496
+ <wp:postmeta>
6497
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
6498
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
6499
+ </wp:postmeta>
6500
+ <wp:postmeta>
6501
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
6502
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
6503
+ </wp:postmeta>
6504
+ <wp:postmeta>
6505
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
6506
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
6507
+ </wp:postmeta>
6508
+ <wp:postmeta>
6509
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
6510
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
6511
+ </wp:postmeta>
6512
+ <wp:postmeta>
6513
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
6514
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6515
+ </wp:postmeta>
6516
+ <wp:postmeta>
6517
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
6518
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6519
+ </wp:postmeta>
6520
+ <wp:postmeta>
6521
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
6522
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
6523
+ </wp:postmeta>
6524
+ <wp:postmeta>
6525
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
6526
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
6527
+ </wp:postmeta>
6528
+ <wp:comment>
6529
+ <wp:comment_id>66</wp:comment_id>
6530
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
6531
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
6532
+ <wp:comment_author_url></wp:comment_author_url>
6533
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6534
+ <wp:comment_date><![CDATA[2016-07-03 07:34:02]]></wp:comment_date>
6535
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:34:02]]></wp:comment_date_gmt>
6536
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
6537
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6538
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6539
+ <wp:comment_parent>0</wp:comment_parent>
6540
+ <wp:comment_user_id>0</wp:comment_user_id>
6541
+ </wp:comment>
6542
+ <wp:comment>
6543
+ <wp:comment_id>67</wp:comment_id>
6544
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
6545
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
6546
+ <wp:comment_author_url></wp:comment_author_url>
6547
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6548
+ <wp:comment_date><![CDATA[2016-07-03 07:34:40]]></wp:comment_date>
6549
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:34:40]]></wp:comment_date_gmt>
6550
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
6551
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6552
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6553
+ <wp:comment_parent>66</wp:comment_parent>
6554
+ <wp:comment_user_id>0</wp:comment_user_id>
6555
+ </wp:comment>
6556
+ <wp:comment>
6557
+ <wp:comment_id>68</wp:comment_id>
6558
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
6559
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
6560
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
6561
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6562
+ <wp:comment_date><![CDATA[2016-07-03 07:35:09]]></wp:comment_date>
6563
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:35:09]]></wp:comment_date_gmt>
6564
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
6565
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6566
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6567
+ <wp:comment_parent>0</wp:comment_parent>
6568
+ <wp:comment_user_id>0</wp:comment_user_id>
6569
+ </wp:comment>
6570
+ <wp:comment>
6571
+ <wp:comment_id>69</wp:comment_id>
6572
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
6573
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
6574
+ <wp:comment_author_url></wp:comment_author_url>
6575
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
6576
+ <wp:comment_date><![CDATA[2016-07-03 07:35:28]]></wp:comment_date>
6577
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:35:28]]></wp:comment_date_gmt>
6578
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
6579
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
6580
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
6581
+ <wp:comment_parent>0</wp:comment_parent>
6582
+ <wp:comment_user_id>0</wp:comment_user_id>
6583
+ </wp:comment>
6584
+ </item>
6585
+ <item>
6586
+ <title>Gallery</title>
6587
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/112-2/</link>
6588
+ <pubDate>Tue, 28 Jun 2016 12:28:33 +0000</pubDate>
6589
+ <dc:creator><![CDATA[admin]]></dc:creator>
6590
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?page_id=112</guid>
6591
+ <description></description>
6592
+ <content:encoded><![CDATA[<figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280038.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6593
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280038-768x576.jpg" alt="gallery201606280038" width="300" height="225">
6594
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280037.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6595
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280037-549x768.jpg" alt="gallery201606280037" width="215" height="300">
6596
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280040.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6597
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280040-768x453.jpg" alt="gallery201606280040" width="300" height="177">
6598
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280021.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6599
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280021-768x510.jpg" alt="gallery201606280021" width="300" height="199">
6600
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280035.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6601
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280035-768x511.jpg" alt="gallery201606280035" width="300" height="200">
6602
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280034.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6603
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280034-768x512.jpg" alt="gallery201606280034" width="300" height="200">
6604
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280039.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6605
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280039-768x512.jpg" alt="gallery201606280039" width="300" height="200">
6606
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280033.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6607
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280033-768x512.jpg" alt="gallery201606280033" width="300" height="200">
6608
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280031.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6609
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280031-768x576.jpg" alt="gallery201606280031" width="300" height="225">
6610
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280030.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6611
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280030-768x512.jpg" alt="gallery201606280030" width="300" height="200">
6612
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280029.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6613
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280029-474x768.jpg" alt="gallery201606280029" width="185" height="300">
6614
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280028.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6615
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280028-768x512.jpg" alt="gallery201606280028" width="300" height="200">
6616
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280027.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6617
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280027-768x432.jpg" alt="gallery201606280027" width="300" height="169">
6618
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280026.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6619
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280026-768x510.jpg" alt="gallery201606280026" width="300" height="199">
6620
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280032.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6621
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280032-768x510.jpg" alt="gallery201606280032" width="300" height="199">
6622
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280025.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6623
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280025-768x512.jpg" alt="gallery201606280025" width="300" height="200">
6624
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280023.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6625
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280023-768x512.jpg" alt="gallery201606280023" width="300" height="200">
6626
+ </a></figure><figure class="gallery-item aux-col aux-loading"><a href="http://averta.net/phlox/wordpress-theme/demo/journey/wp-content/uploads/sites/7/2016/06/gallery201606280022.jpg" class="aux-lightbox-btn"><span class="aux-plus"></span> <span class="aux-plus-bg"></span>
6627
+ <img src="http://demo.averta.net/themes/phlox/demo1/wp-content/uploads/2016/06/gallery201606280022-768x511.jpg" alt="gallery201606280022" width="300" height="200">
6628
+ </a></figure>]]></content:encoded>
6629
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
6630
+ <wp:post_id>112</wp:post_id>
6631
+ <wp:post_date><![CDATA[2016-06-28 12:28:33]]></wp:post_date>
6632
+ <wp:post_date_gmt><![CDATA[2016-06-28 12:28:33]]></wp:post_date_gmt>
6633
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
6634
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
6635
+ <wp:post_name><![CDATA[112-2]]></wp:post_name>
6636
+ <wp:status><![CDATA[publish]]></wp:status>
6637
+ <wp:post_parent>0</wp:post_parent>
6638
+ <wp:menu_order>0</wp:menu_order>
6639
+ <wp:post_type><![CDATA[page]]></wp:post_type>
6640
+ <wp:post_password><![CDATA[]]></wp:post_password>
6641
+ <wp:is_sticky>0</wp:is_sticky>
6642
+ <wp:postmeta>
6643
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
6644
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6645
+ </wp:postmeta>
6646
+ <wp:postmeta>
6647
+ <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
6648
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
6649
+ </wp:postmeta>
6650
+ <wp:postmeta>
6651
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
6652
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6653
+ </wp:postmeta>
6654
+ <wp:postmeta>
6655
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
6656
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
6657
+ </wp:postmeta>
6658
+ <wp:postmeta>
6659
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
6660
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6661
+ </wp:postmeta>
6662
+ <wp:postmeta>
6663
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
6664
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
6665
+ </wp:postmeta>
6666
+ <wp:postmeta>
6667
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
6668
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6669
+ </wp:postmeta>
6670
+ <wp:postmeta>
6671
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
6672
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6673
+ </wp:postmeta>
6674
+ <wp:postmeta>
6675
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
6676
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6677
+ </wp:postmeta>
6678
+ <wp:postmeta>
6679
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
6680
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6681
+ </wp:postmeta>
6682
+ <wp:postmeta>
6683
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
6684
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6685
+ </wp:postmeta>
6686
+ <wp:postmeta>
6687
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
6688
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
6689
+ </wp:postmeta>
6690
+ <wp:postmeta>
6691
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
6692
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
6693
+ </wp:postmeta>
6694
+ <wp:postmeta>
6695
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
6696
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
6697
+ </wp:postmeta>
6698
+ <wp:postmeta>
6699
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
6700
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
6701
+ </wp:postmeta>
6702
+ <wp:postmeta>
6703
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
6704
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6705
+ </wp:postmeta>
6706
+ <wp:postmeta>
6707
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
6708
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6709
+ </wp:postmeta>
6710
+ <wp:postmeta>
6711
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
6712
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
6713
+ </wp:postmeta>
6714
+ <wp:postmeta>
6715
+ <wp:meta_key><![CDATA[axi_custom_bg_show]]></wp:meta_key>
6716
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6717
+ </wp:postmeta>
6718
+ <wp:postmeta>
6719
+ <wp:meta_key><![CDATA[axi_custom_bg_color]]></wp:meta_key>
6720
+ <wp:meta_value><![CDATA[#dddd]]></wp:meta_value>
6721
+ </wp:postmeta>
6722
+ <wp:postmeta>
6723
+ <wp:meta_key><![CDATA[axi_custom_bg_repeat]]></wp:meta_key>
6724
+ <wp:meta_value><![CDATA[no-repeat]]></wp:meta_value>
6725
+ </wp:postmeta>
6726
+ <wp:postmeta>
6727
+ <wp:meta_key><![CDATA[axi_custom_bg_attach]]></wp:meta_key>
6728
+ <wp:meta_value><![CDATA[fixed]]></wp:meta_value>
6729
+ </wp:postmeta>
6730
+ <wp:postmeta>
6731
+ <wp:meta_key><![CDATA[axi_custom_bg_position]]></wp:meta_key>
6732
+ <wp:meta_value><![CDATA[left top]]></wp:meta_value>
6733
+ </wp:postmeta>
6734
+ <wp:postmeta>
6735
+ <wp:meta_key><![CDATA[axi_custom_bg_size]]></wp:meta_key>
6736
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
6737
+ </wp:postmeta>
6738
+ <wp:postmeta>
6739
+ <wp:meta_key><![CDATA[axi_custom_bg_pattern]]></wp:meta_key>
6740
+ <wp:meta_value><![CDATA[http://demo.averta.net/themes/phlox/demo1/wp-content/themes/phlox/css/images/pattern/p1.png]]></wp:meta_value>
6741
+ </wp:postmeta>
6742
+ <wp:postmeta>
6743
+ <wp:meta_key><![CDATA[top_slider_id]]></wp:meta_key>
6744
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
6745
+ </wp:postmeta>
6746
+ <wp:postmeta>
6747
+ <wp:meta_key><![CDATA[top_slider_width]]></wp:meta_key>
6748
+ <wp:meta_value><![CDATA[full]]></wp:meta_value>
6749
+ </wp:postmeta>
6750
+ <wp:postmeta>
6751
+ <wp:meta_key><![CDATA[content_layout]]></wp:meta_key>
6752
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
6753
+ </wp:postmeta>
6754
+ <wp:postmeta>
6755
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
6756
+ <wp:meta_value><![CDATA[no-sidebar]]></wp:meta_value>
6757
+ </wp:postmeta>
6758
+ <wp:postmeta>
6759
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
6760
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
6761
+ </wp:postmeta>
6762
+ <wp:postmeta>
6763
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
6764
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
6765
+ </wp:postmeta>
6766
+ <wp:postmeta>
6767
+ <wp:meta_key><![CDATA[_panels_data_preview]]></wp:meta_key>
6768
+ <wp:meta_value><![CDATA[a:3:{s:7:"widgets";a:1:{i:0;a:12:{s:7:"include";s:71:"130,129,132,113,127,126,131,125,123,122,121,120,119,118,124,117,115,114";s:7:"columns";s:1:"3";s:8:"wp_order";s:1:"0";s:5:"order";s:3:"ASC";s:7:"orderby";s:13:"menu_order ID";s:6:"layout";s:7:"masonry";s:4:"link";s:8:"lightbox";s:4:"size";s:6:"medium";s:10:"pagination";s:1:"0";s:7:"perpage";s:2:"24";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_gallery";s:3:"raw";b:1;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"113232b4-41bc-4cd3-a56f-382e9e176a0f";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}}s:10:"grid_cells";a:1:{i:0;a:2:{s:4:"grid";i:0;s:6:"weight";i:1;}}}]]></wp:meta_value>
6769
+ </wp:postmeta>
6770
+ <wp:postmeta>
6771
+ <wp:meta_key><![CDATA[panels_data]]></wp:meta_key>
6772
+ <wp:meta_value><![CDATA[a:3:{s:7:"widgets";a:1:{i:0;a:12:{s:7:"include";s:71:"130,129,132,113,127,126,131,125,123,122,121,120,119,118,124,117,115,114";s:7:"columns";s:1:"3";s:8:"wp_order";s:1:"0";s:5:"order";s:3:"ASC";s:7:"orderby";s:13:"menu_order ID";s:6:"layout";s:7:"masonry";s:4:"link";s:8:"lightbox";s:4:"size";s:6:"medium";s:10:"pagination";s:1:"0";s:7:"perpage";s:2:"24";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_gallery";s:3:"raw";b:1;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"113232b4-41bc-4cd3-a56f-382e9e176a0f";s:5:"style";a:2:{s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:1:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}}s:10:"grid_cells";a:1:{i:0;a:2:{s:4:"grid";i:0;s:6:"weight";i:1;}}}]]></wp:meta_value>
6773
+ </wp:postmeta>
6774
+ <wp:postmeta>
6775
+ <wp:meta_key><![CDATA[aux_custom_bg_show]]></wp:meta_key>
6776
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
6777
+ </wp:postmeta>
6778
+ <wp:postmeta>
6779
+ <wp:meta_key><![CDATA[aux_custom_bg_repeat]]></wp:meta_key>
6780
+ <wp:meta_value><![CDATA[repeat]]></wp:meta_value>
6781
+ </wp:postmeta>
6782
+ <wp:postmeta>
6783
+ <wp:meta_key><![CDATA[aux_custom_bg_attach]]></wp:meta_key>
6784
+ <wp:meta_value><![CDATA[scroll]]></wp:meta_value>
6785
+ </wp:postmeta>
6786
+ <wp:postmeta>
6787
+ <wp:meta_key><![CDATA[aux_custom_bg_position]]></wp:meta_key>
6788
+ <wp:meta_value><![CDATA[left top]]></wp:meta_value>
6789
+ </wp:postmeta>
6790
+ <wp:postmeta>
6791
+ <wp:meta_key><![CDATA[aux_custom_bg_size]]></wp:meta_key>
6792
+ <wp:meta_value><![CDATA[auto]]></wp:meta_value>
6793
+ </wp:postmeta>
6794
+ </item>
6795
+ <item>
6796
+ <title>Typography</title>
6797
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/typography/</link>
6798
+ <pubDate>Thu, 14 Jul 2016 06:24:47 +0000</pubDate>
6799
+ <dc:creator><![CDATA[admin]]></dc:creator>
6800
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?page_id=168</guid>
6801
+ <description></description>
6802
+ <content:encoded><![CDATA[<hr class="aux-divider-space aux-divider-medium" style="margin-bottom: 70px;" />
6803
+
6804
+ <h1>Heading One</h1>
6805
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.
6806
+ <h2>Heading Two</h2>
6807
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.
6808
+ <h3>Heading Three</h3>
6809
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.
6810
+ <h4>Heading  Four</h4>
6811
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.
6812
+ <h5>Heading Five</h5>
6813
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.
6814
+ <h6>Heading Six</h6>
6815
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.
6816
+
6817
+ <hr class="aux-divider-dashed aux-divider-medium" style="margin-top: 100px; margin-bottom: 70px;" />
6818
+
6819
+ Did you ever heat a <strong>piece of paper before the fire until it was real</strong> hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and <em>where large <span style="color: #ff6600;">sparks would jump to your hands</span></em> when held near the <del>belts? Did you ever heat a piece of paper</del> before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from <a href="#">end to end with your hand</a>, and finally see it cling to the wall? Were you ever in a factory where there were <span style="text-decoration: underline;">large belts running rapidly over</span> pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.
6820
+
6821
+ <hr class="aux-divider-dashed aux-divider-medium" style="margin-top: 100px; margin-bottom: 70px;" />
6822
+
6823
+ Did you ever <span class="aux-highlight aux-highlight-red custom-css-class">heat a piece of paper before the fire</span> until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts
6824
+ running rapidly over pulleys or wheels, and where large sparks would jump to <span class="aux-highlight aux-highlight-blue custom-css-class">your hands when held near the belts?</span> Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.<span class="aux-highlight aux-highlight-yellow custom-css-class">Did you ever heat a piece of paper before </span>the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper <span class="aux-highlight aux-highlight-green custom-css-class">before the fire until it was real hot, then lay it upon the table </span>and rub it from end to end with your hand.
6825
+
6826
+ <hr class="aux-divider-dashed aux-divider-medium" style="margin-top: 100px; margin-bottom: 70px;" />
6827
+
6828
+ <span style="color: #33cccc;">This is a sample text</span>
6829
+
6830
+ <strong>This is a sample text</strong>
6831
+
6832
+ <em>This is a sample text</em>
6833
+
6834
+ <span style="text-decoration: underline;">This is a sample text</span>
6835
+
6836
+ <del>This is a sample text</del>
6837
+ <ol>
6838
+ <li>This is a sample list style</li>
6839
+ <li>This is a sample list style</li>
6840
+ <li><span style="line-height: 1.5;">This is a sample list style</span></li>
6841
+ <li>This is a sample list style</li>
6842
+ <li>This is a sample list style</li>
6843
+ <li>This is a sample list style</li>
6844
+ </ol>
6845
+ <ul>
6846
+ <li>This is a sample list style</li>
6847
+ <li>This is a sample list style</li>
6848
+ <li><span style="line-height: 1.5;">This is a sample list style</span>
6849
+ <ul>
6850
+ <li>This is a sample list style</li>
6851
+ <li>This is a sample list style</li>
6852
+ <li>This is a sample list style</li>
6853
+ </ul>
6854
+ </li>
6855
+ </ul>
6856
+ <ul>
6857
+ <li><span style="line-height: 1.5;">This is a sample list style</span>
6858
+ <ul>
6859
+ <li>This is a sample list style</li>
6860
+ <li>This is a sample list style
6861
+ <ul>
6862
+ <li>This is a sample list</li>
6863
+ <li>This is a sample list</li>
6864
+ <li>This is a sample list</li>
6865
+ </ul>
6866
+ </li>
6867
+ </ul>
6868
+ </li>
6869
+ </ul>
6870
+
6871
+ <hr class="aux-divider-dashed aux-divider-medium" style="margin-top: 70px; margin-bottom: 70px;" />
6872
+
6873
+ <img class="size-full wp-image-173 alignleft" src="http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image.jpg" sizes="(max-width: 250px) 100vw, 250px" srcset="http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image.jpg 250w, http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image-150x150.jpg 150w" alt="sample-image" width="250" height="250" />Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.
6874
+
6875
+ Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand.
6876
+
6877
+ You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.
6878
+
6879
+ <hr class="aux-divider-space aux-divider-medium" />
6880
+
6881
+ <img class="alignright size-full wp-image-173" src="http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image.jpg" sizes="(max-width: 250px) 100vw, 250px" srcset="http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image.jpg 250w, http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image-150x150.jpg 150w" alt="sample-image" width="250" height="250" />Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.
6882
+
6883
+ Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand.
6884
+
6885
+ You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.
6886
+
6887
+ <hr class="aux-divider-dashed aux-divider-medium" style="margin-top: 100px; margin-bottom: 70px;" />
6888
+
6889
+ <section id="panel-168-6-0-0" class="aux-widget-accordion widget-toggle widget-container so-panel widget widget_aux_accordion panel-first-child panel-last-child" data-index="16"><section>
6890
+ <h6 class="toggle-header">Accordion label</h6>
6891
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot
6892
+
6893
+ </section><section>
6894
+ <h6 class="toggle-header">Accordion label</h6>
6895
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot
6896
+
6897
+ </section><section>
6898
+ <h6 class="toggle-header">Accordion label</h6>
6899
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot
6900
+
6901
+ </section><section>
6902
+ <h6 class="toggle-header">Accordion label</h6>
6903
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot
6904
+
6905
+ </section></section><section id="panel-168-6-1-0" class="aux-widget-tabs widget-container so-panel widget widget_aux_tabs panel-first-child panel-last-child" data-index="17"><section class="widget-tabs widget-container bordered">
6906
+ <ul class="tabs">
6907
+ <li><a>Tab label</a></li>
6908
+ <li><a>Tab label</a></li>
6909
+ <li><a>Tab label</a></li>
6910
+ </ul>
6911
+ <ul class="tabs-content">
6912
+ <li>ar far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove,</li>
6913
+ <li>The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country.</li>
6914
+ <li>But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.</li>
6915
+ </ul>
6916
+ </section></section>
6917
+
6918
+ <hr class="aux-divider-dashed aux-divider-medium" style="margin-top: 100px; margin-bottom: 70px;" />
6919
+
6920
+ <section class="widget-container aux-widget-dropcap custom-css">
6921
+ <p class="custom-css"><span class="dropcap">M</span></p>
6922
+
6923
+ </section><!-- widget-container -->aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.
6924
+
6925
+ <section class="widget-container aux-widget-dropcap custom-css">
6926
+ <p class="custom-css"><span class="dropcap square outline">M</span></p>
6927
+
6928
+ </section><!-- widget-container -->aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.
6929
+
6930
+ <section class="widget-container aux-widget-dropcap custom-css">
6931
+ <p class="custom-css"><span class="dropcap circle">M</span></p>
6932
+
6933
+ </section><!-- widget-container -->aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.
6934
+
6935
+ <section class="widget-container aux-widget-dropcap custom-css">
6936
+ <p class="custom-css"><span class="dropcap square">M</span></p>
6937
+
6938
+ </section><!-- widget-container -->aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.
6939
+
6940
+ <section class="widget-container aux-widget-dropcap custom-css">
6941
+ <p class="custom-css"><span class="dropcap square round">M</span></p>
6942
+
6943
+ </section><!-- widget-container -->aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.
6944
+
6945
+ <section class="widget-container aux-widget-dropcap custom-css">
6946
+ <p class="custom-css"><span class="dropcap circle outline">M</span></p>
6947
+
6948
+ </section><!-- widget-container -->aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.
6949
+
6950
+ <hr class="aux-divider-dashed aux-divider-medium" style="margin-top: 100px; margin-bottom: 70px;" />
6951
+
6952
+ <section class="widget-container aux-widget-quote">
6953
+ <p class="aux-elem-quote aux-intro-hero aux-text-align-center aux-quote-letter">There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.</p>
6954
+
6955
+ </section><!-- widget-container -->
6956
+ <p style="text-align: center;">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>
6957
+
6958
+
6959
+ <hr class="aux-divider-space aux-divider-medium" style="margin-top: 100px; margin-bottom: 70px;" />
6960
+ <p class="intro-paragraph"></p>
6961
+
6962
+ <section class="widget-container aux-widget-quote">
6963
+ <p class="aux-elem-quote aux-intro-normal aux-text-align-center aux-quote-letter">There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.</p>
6964
+
6965
+ </section><!-- widget-container -->
6966
+ <p style="text-align: center;">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>
6967
+
6968
+
6969
+ <hr class="aux-divider-space aux-divider-medium" style="margin-top: 100px; margin-bottom: 70px;" />
6970
+ <p class="intro-paragraph"></p>
6971
+
6972
+ <section class="widget-container aux-widget-quote custom-css">
6973
+ <p class="aux-elem-quote aux-intro-splitter aux-text-align-center aux-quote-letter custom-css">There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.</p>
6974
+
6975
+ </section><!-- widget-container -->
6976
+ <p style="text-align: center;">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>
6977
+
6978
+
6979
+ <hr class="aux-divider-center" style="margin-top: 100px;" />
6980
+
6981
+
6982
+
6983
+ <hr class="aux-divider-center aux-divider-medium" />
6984
+
6985
+
6986
+
6987
+ <hr class="aux-divider-center aux-divider-small" />
6988
+
6989
+
6990
+
6991
+ <hr class="aux-divider-dashed" style="margin-top: 100px;" />
6992
+
6993
+
6994
+
6995
+ <hr class="aux-divider-dashed aux-divider-medium" />
6996
+
6997
+
6998
+
6999
+ <hr class="aux-divider-dashed aux-divider-small" />
7000
+
7001
+
7002
+
7003
+ <hr class="aux-divider-symbolic-circle" style="margin-top: 100px;" />
7004
+
7005
+
7006
+
7007
+ <hr class="aux-divider-symbolic-circle aux-divider-medium" />
7008
+
7009
+
7010
+
7011
+ <hr class="aux-divider-symbolic-circle aux-divider-small" />
7012
+
7013
+
7014
+
7015
+ <hr class="aux-divider-symbolic-square" style="margin-top: 100px;" />
7016
+
7017
+
7018
+
7019
+ <hr class="aux-divider-symbolic-square aux-divider-medium" />
7020
+
7021
+
7022
+
7023
+ <hr class="aux-divider-symbolic-square aux-divider-small" style="margin-bottom: 70px;" />
7024
+
7025
+ <section class="widget-container aux-widget-quote custom-css">
7026
+ <blockquote class="aux-elem-quote aux-quote-normal aux-text-align-left aux-quote-letter custom-css">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</blockquote>
7027
+ </section><!-- widget-container -->
7028
+
7029
+ <section class="widget-container aux-widget-quote custom-css">
7030
+ <blockquote class="aux-elem-quote aux-blockquote-normal aux-text-align-left aux-quote-letter custom-css">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</blockquote>
7031
+ </section><!-- widget-container -->
7032
+
7033
+ <section class="widget-container aux-widget-quote custom-css">
7034
+ <blockquote class="aux-elem-quote aux-blockquote-bordered aux-text-align-left aux-quote-letter custom-css">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</blockquote>
7035
+ </section><!-- widget-container -->
7036
+
7037
+ <section class="widget-container aux-widget-quote custom-css">
7038
+ <blockquote class="aux-elem-quote aux-pullquote-normal aux-text-align-left aux-quote-letter custom-css">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</blockquote>
7039
+ </section><!-- widget-container -->
7040
+
7041
+ <section class="widget-container aux-widget-quote custom-css">
7042
+ <blockquote class="aux-elem-quote aux-pullquote-colorized aux-text-align-left aux-quote-letter custom-css">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</blockquote>
7043
+ </section><!-- widget-container -->
7044
+
7045
+ Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before
7046
+
7047
+ <section class="widget-container aux-widget-quote">
7048
+ <blockquote class="aux-elem-quote aux-pullquote-normal aux-text-align-left aux-float-left aux-quote-letter">There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.</blockquote>
7049
+ </section><!-- widget-container -->the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand. You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand. Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand Did you ever heat a piece of paper before the fire until it was real hot.
7050
+
7051
+ <section class="widget-container aux-widget-quote">
7052
+ <blockquote class="aux-elem-quote aux-blockquote-normal aux-text-align-left aux-float-right aux-quote-letter">There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.</blockquote>
7053
+ </section><!-- widget-container -->Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the tables of and rub it from end to end with your hands. You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to endin with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from ended to end with your hand. Were you ever in a factory where there were large.Belts running rapidly over pulleys or wheels, and where large sparks.Would jump to your hands when held near the belts?Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks.
7054
+
7055
+ <hr class="aux-divider-dashed aux-divider-medium" style="margin-top: 100px; margin-bottom: 70px;" />
7056
+
7057
+ <section id="panel-168-12-0-0" class="aux-widget-code widget-container so-panel widget widget_aux_code panel-first-child panel-last-child" data-index="50">
7058
+ <pre class="aux-widget-code "><code class="javascript ">this.each(function () {
7059
+ var instance = $.data(this, 'plugin_' + pluginName);
7060
+ // Tests that there's already a plugin-instance
7061
+ // and checks that the requested public method exists
7062
+ if (instance instanceof Plugin &amp;&amp; typeof instance[options] === 'function') {
7063
+ // Call the method of our plugin instance,
7064
+ // and pass it the supplied arguments.
7065
+ returns = instance[options].apply( instance, Array.prototype.slice.call( args, 1 ) );
7066
+ }
7067
+ // Allow instances to be destroyed via the 'destroy' method
7068
+ if (options === 'destroy') {
7069
+ $.data(this, 'plugin_' + pluginName, null);
7070
+ }
7071
+ });
7072
+ // If the earlier cached method
7073
+ // gives a value back return the value,
7074
+ // otherwise return this to preserve chainability.
7075
+ return returns !== undefined ? returns : this;</code></pre>
7076
+ </section>]]></content:encoded>
7077
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
7078
+ <wp:post_id>168</wp:post_id>
7079
+ <wp:post_date><![CDATA[2016-07-14 06:24:47]]></wp:post_date>
7080
+ <wp:post_date_gmt><![CDATA[2016-07-14 06:24:47]]></wp:post_date_gmt>
7081
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
7082
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
7083
+ <wp:post_name><![CDATA[typography]]></wp:post_name>
7084
+ <wp:status><![CDATA[publish]]></wp:status>
7085
+ <wp:post_parent>0</wp:post_parent>
7086
+ <wp:menu_order>0</wp:menu_order>
7087
+ <wp:post_type><![CDATA[page]]></wp:post_type>
7088
+ <wp:post_password><![CDATA[]]></wp:post_password>
7089
+ <wp:is_sticky>0</wp:is_sticky>
7090
+ <wp:postmeta>
7091
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
7092
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7093
+ </wp:postmeta>
7094
+ <wp:postmeta>
7095
+ <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
7096
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
7097
+ </wp:postmeta>
7098
+ <wp:postmeta>
7099
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
7100
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7101
+ </wp:postmeta>
7102
+ <wp:postmeta>
7103
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
7104
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
7105
+ </wp:postmeta>
7106
+ <wp:postmeta>
7107
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
7108
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7109
+ </wp:postmeta>
7110
+ <wp:postmeta>
7111
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
7112
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
7113
+ </wp:postmeta>
7114
+ <wp:postmeta>
7115
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
7116
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7117
+ </wp:postmeta>
7118
+ <wp:postmeta>
7119
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
7120
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7121
+ </wp:postmeta>
7122
+ <wp:postmeta>
7123
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
7124
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7125
+ </wp:postmeta>
7126
+ <wp:postmeta>
7127
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
7128
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7129
+ </wp:postmeta>
7130
+ <wp:postmeta>
7131
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
7132
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7133
+ </wp:postmeta>
7134
+ <wp:postmeta>
7135
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
7136
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
7137
+ </wp:postmeta>
7138
+ <wp:postmeta>
7139
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
7140
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
7141
+ </wp:postmeta>
7142
+ <wp:postmeta>
7143
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
7144
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
7145
+ </wp:postmeta>
7146
+ <wp:postmeta>
7147
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
7148
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
7149
+ </wp:postmeta>
7150
+ <wp:postmeta>
7151
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
7152
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7153
+ </wp:postmeta>
7154
+ <wp:postmeta>
7155
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
7156
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7157
+ </wp:postmeta>
7158
+ <wp:postmeta>
7159
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
7160
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
7161
+ </wp:postmeta>
7162
+ <wp:postmeta>
7163
+ <wp:meta_key><![CDATA[axi_custom_bg_show]]></wp:meta_key>
7164
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7165
+ </wp:postmeta>
7166
+ <wp:postmeta>
7167
+ <wp:meta_key><![CDATA[axi_custom_bg_color]]></wp:meta_key>
7168
+ <wp:meta_value><![CDATA[#dddd]]></wp:meta_value>
7169
+ </wp:postmeta>
7170
+ <wp:postmeta>
7171
+ <wp:meta_key><![CDATA[axi_custom_bg_repeat]]></wp:meta_key>
7172
+ <wp:meta_value><![CDATA[no-repeat]]></wp:meta_value>
7173
+ </wp:postmeta>
7174
+ <wp:postmeta>
7175
+ <wp:meta_key><![CDATA[axi_custom_bg_attach]]></wp:meta_key>
7176
+ <wp:meta_value><![CDATA[fixed]]></wp:meta_value>
7177
+ </wp:postmeta>
7178
+ <wp:postmeta>
7179
+ <wp:meta_key><![CDATA[axi_custom_bg_position]]></wp:meta_key>
7180
+ <wp:meta_value><![CDATA[left top]]></wp:meta_value>
7181
+ </wp:postmeta>
7182
+ <wp:postmeta>
7183
+ <wp:meta_key><![CDATA[axi_custom_bg_size]]></wp:meta_key>
7184
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
7185
+ </wp:postmeta>
7186
+ <wp:postmeta>
7187
+ <wp:meta_key><![CDATA[axi_custom_bg_pattern]]></wp:meta_key>
7188
+ <wp:meta_value><![CDATA[http://demo.averta.net/themes/phlox/demo1/wp-content/themes/phlox/css/images/pattern/p1.png]]></wp:meta_value>
7189
+ </wp:postmeta>
7190
+ <wp:postmeta>
7191
+ <wp:meta_key><![CDATA[top_slider_id]]></wp:meta_key>
7192
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
7193
+ </wp:postmeta>
7194
+ <wp:postmeta>
7195
+ <wp:meta_key><![CDATA[top_slider_width]]></wp:meta_key>
7196
+ <wp:meta_value><![CDATA[full]]></wp:meta_value>
7197
+ </wp:postmeta>
7198
+ <wp:postmeta>
7199
+ <wp:meta_key><![CDATA[content_layout]]></wp:meta_key>
7200
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
7201
+ </wp:postmeta>
7202
+ <wp:postmeta>
7203
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
7204
+ <wp:meta_value><![CDATA[no-sidebar]]></wp:meta_value>
7205
+ </wp:postmeta>
7206
+ <wp:postmeta>
7207
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
7208
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
7209
+ </wp:postmeta>
7210
+ <wp:postmeta>
7211
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
7212
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7213
+ </wp:postmeta>
7214
+ <wp:postmeta>
7215
+ <wp:meta_key><![CDATA[panels_data]]></wp:meta_key>
7216
+ <wp:meta_value><![CDATA[a:3:{s:7:"widgets";a:51:{i:0;a:6:{s:5:"style";s:11:"white-space";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9b3ff994-f041-4761-8837-1798b38d0319";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:6:{s:5:"title";s:0:"";s:4:"text";s:3144:"<h1>Heading One</h1><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p><h2>Heading Two</h2><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p><h3>Heading Three</h3><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p><h4>Heading  Four</h4><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p><h5>Heading Five</h5><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p><h6>Heading Six</h6><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:4:"tmce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57838d5d1d3f3";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"b04e44c1-2ae8-4a99-9497-9cbb13295f89";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:2;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:2;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:3;a:6:{s:5:"title";s:0:"";s:4:"text";s:1138:"<p>Did you ever heat a <strong>piece of paper before the fire until it was real</strong> hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and <em>where large <span style="color: #ff6600;">sparks would jump to your hands</span></em> when held near the <del>belts? Did you ever heat a piece of paper</del> before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from <a href="#">end to end with your hand</a>, and finally see it cling to the wall? Were you ever in a factory where there were <span style="text-decoration: underline;">large belts running rapidly over</span> pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:4:"tmce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784cbe0535a1";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:3;s:9:"widget_id";s:36:"b04e44c1-2ae8-4a99-9497-9cbb13295f89";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:4;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:4;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:5;a:6:{s:5:"title";s:0:"";s:4:"text";s:1376:"<p>Did you ever [aux_highlight style="aux-highlight-red" extra_classes="custom-css-class"]heat a piece of paper before the fire[/aux_highlight] until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts<br /> running rapidly over pulleys or wheels, and where large sparks would jump to [aux_highlight style="aux-highlight-blue" extra_classes="custom-css-class"]your hands when held near the belts?[/aux_highlight] Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[aux_highlight style="aux-highlight-yellow" extra_classes="custom-css-class"]Did you ever heat a piece of paper before [/aux_highlight]the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper [aux_highlight style="aux-highlight-green" extra_classes="custom-css-class"]before the fire until it was real hot, then lay it upon the table [/aux_highlight]and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5783919ae0eb8";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:2;s:4:"cell";i:0;s:2:"id";i:5;s:9:"widget_id";s:36:"c6ef7a6f-acd0-4b9c-9071-1f68e7ca5350";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:6;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:2;s:4:"cell";i:0;s:2:"id";i:6;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:7;a:6:{s:5:"title";s:0:"";s:4:"text";s:263:"<p><span style="color: #33cccc;">This is a sample text</span></p><p><strong>This is a sample text</strong></p><p><em>This is a sample text</em></p><p><span style="text-decoration: underline;">This is a sample text</span></p><p><del>This is a sample text</del></p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57861fb1171d7";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:3;s:4:"cell";i:0;s:2:"id";i:7;s:9:"widget_id";s:36:"de1cfb4c-5a6b-4c10-bfd4-85c08e391bb6";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:8;a:6:{s:5:"title";s:0:"";s:4:"text";s:264:"<ol><li>This is a sample list style</li><li>This is a sample list style</li><li><span style="line-height: 1.5;">This is a sample list style</span></li><li>This is a sample list style</li><li>This is a sample list style</li><li>This is a sample list style</li></ol>";s:20:"text_selected_editor";s:7:"tinymce";s:12:"_sow_form_id";s:13:"5786125e005cb";s:5:"autop";b:0;s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:3;s:4:"cell";i:1;s:2:"id";i:8;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:9;a:6:{s:5:"title";s:0:"";s:4:"text";s:273:"<ul><li>This is a sample list style</li><li>This is a sample list style</li><li><span style="line-height: 1.5;">This is a sample list style</span><ul><li>This is a sample list style</li><li>This is a sample list style</li><li>This is a sample list style</li></ul></li></ul>";s:20:"text_selected_editor";s:7:"tinymce";s:12:"_sow_form_id";s:13:"578610e1dd7df";s:5:"autop";b:0;s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:3;s:4:"cell";i:2;s:2:"id";i:9;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:10;a:6:{s:5:"title";s:0:"";s:4:"text";s:272:"<ul><li><span style="line-height: 1.5;">This is a sample list style</span><ul><li>This is a sample list style</li><li>This is a sample list style<br /><ul><li>This is a sample list</li><li>This is a sample list</li><li>This is a sample list </li></ul></li></ul></li></ul>";s:20:"text_selected_editor";s:7:"tinymce";s:12:"_sow_form_id";s:13:"57861e1c2a622";s:5:"autop";b:0;s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:3;s:4:"cell";i:3;s:2:"id";i:10;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:11;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:4:"70px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:4;s:4:"cell";i:0;s:2:"id";i:11;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:12;a:6:{s:5:"title";s:0:"";s:4:"text";s:1881:"<p><img class="size-full wp-image-173 alignleft" src="http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image.jpg" alt="sample-image" width="250" height="250" />Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.</p><p>Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand.</p><p>You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784d0e7c18ee";s:11:"panels_info";a:6:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:4:"grid";i:5;s:4:"cell";i:0;s:2:"id";i:12;s:9:"widget_id";s:36:"c6ef7a6f-acd0-4b9c-9071-1f68e7ca5350";s:5:"style";a:3:{s:5:"class";s:17:"intro-hero-center";s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:13;a:6:{s:5:"style";s:11:"white-space";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:5;s:4:"cell";i:0;s:2:"id";i:13;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:14;a:6:{s:5:"title";s:0:"";s:4:"text";s:1882:"<p><img class="alignright size-full wp-image-173" src="http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image.jpg" alt="sample-image" width="250" height="250" />Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.</p><p>Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand.</p><p>You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784d45955c0a";s:11:"panels_info";a:6:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:4:"grid";i:5;s:4:"cell";i:0;s:2:"id";i:14;s:9:"widget_id";s:36:"c6ef7a6f-acd0-4b9c-9071-1f68e7ca5350";s:5:"style";a:3:{s:5:"class";s:17:"intro-hero-center";s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:15;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:5;s:4:"cell";i:0;s:2:"id";i:15;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:16;a:5:{s:5:"title";s:0:"";s:4:"type";s:4:"true";s:7:"content";s:1972:"[accordion_section label="Accordion label" ] Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot [/accordion_section].
7217
+ [accordion_section label="Accordion label" ] Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot [/accordion_section].
7218
+ [accordion_section label="Accordion label" ] Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot [/accordion_section].
7219
+ [accordion_section label="Accordion label" ] Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot [/accordion_section].
7220
+ ";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:13:"aux_accordion";s:3:"raw";b:0;s:4:"grid";i:6;s:4:"cell";i:0;s:2:"id";i:16;s:9:"widget_id";s:36:"4ef2df77-5f51-4403-bc28-7c6c2e13f627";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:17;a:4:{s:5:"title";s:0:"";s:7:"content";s:2919:"[tab_section label="Tab label" ]ar far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.
7221
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, [/tab_section]
7222
+ [tab_section label="Tab label" ]The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country.[/tab_section]
7223
+ [tab_section label="Tab label" ]But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.[/tab_section]
7224
+ ";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:8:"aux_tabs";s:3:"raw";b:0;s:4:"grid";i:6;s:4:"cell";i:1;s:2:"id";i:17;s:9:"widget_id";s:36:"96b27582-adb3-4474-8579-1d5ff6036c8e";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:18;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:7;s:4:"cell";i:0;s:2:"id";i:18;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:19;a:6:{s:5:"title";s:0:"";s:4:"text";s:411:"<p>[aux_dropcap style="classic" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b56fda254";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:0;s:2:"id";i:19;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:20;a:6:{s:5:"title";s:0:"";s:4:"text";s:418:"<p>[aux_dropcap style="square-outline" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b7bcb481a";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:0;s:2:"id";i:20;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:21;a:6:{s:5:"title";s:0:"";s:4:"text";s:410:"<p>[aux_dropcap style="circle" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b7ec9a6bd";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:0;s:2:"id";i:21;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:22;a:6:{s:5:"title";s:0:"";s:4:"text";s:410:"<p>[aux_dropcap style="square" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b6c83f3de";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:1;s:2:"id";i:22;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:23;a:6:{s:5:"title";s:0:"";s:4:"text";s:416:"<p>[aux_dropcap style="square-round" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b7ea5075b";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:1;s:2:"id";i:23;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:24;a:6:{s:5:"title";s:0:"";s:4:"text";s:418:"<p>[aux_dropcap style="circle-outline" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b7e6db0dd";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:1;s:2:"id";i:24;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:25;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:25;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:26;a:6:{s:5:"title";s:0:"";s:4:"text";s:895:"<p>[aux_quote type="intro-hero" text_align="center" quote_symbol="1" title="title" extra_classes=""]There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.[/aux_quote]</p><p style="text-align: center;">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:12:"_sow_form_id";s:13:"578478ee0a080";s:5:"autop";b:0;s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:26;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:27;a:6:{s:5:"style";s:11:"white-space";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:27;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:28;a:6:{s:5:"title";s:0:"";s:4:"text";s:921:"<p class="intro-paragraph">[aux_quote type="intro-normal" text_align="center" quote_symbol="1" title="title" extra_classes=""]There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.[/aux_quote]</p><p style="text-align: center;">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"578479a4bbbe3";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:28;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:29;a:6:{s:5:"style";s:11:"white-space";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:29;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:30;a:6:{s:5:"title";s:0:"";s:4:"text";s:933:"<p class="intro-paragraph">[aux_quote type="intro-splitter" text_align="center" quote_symbol="1" title="title" extra_classes="custom-css"]There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.[/aux_quote]</p><p style="text-align: center;">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57847a6401cd4";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:30;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:31;a:6:{s:5:"style";s:5:"solid";s:5:"width";s:5:"large";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:31;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:32;a:6:{s:5:"style";s:5:"solid";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:32;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:33;a:6:{s:5:"style";s:5:"solid";s:5:"width";s:5:"small";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:33;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:34;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:5:"large";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:34;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:35;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:35;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:36;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:5:"small";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:36;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:37;a:6:{s:5:"style";s:13:"circle-symbol";s:5:"width";s:5:"large";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:37;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:38;a:6:{s:5:"style";s:13:"circle-symbol";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:38;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:39;a:6:{s:5:"style";s:13:"circle-symbol";s:5:"width";s:5:"small";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:39;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:40;a:6:{s:5:"style";s:14:"diamond-symbol";s:5:"width";s:5:"large";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:40;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:41;a:6:{s:5:"style";s:14:"diamond-symbol";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:41;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:42;a:6:{s:5:"style";s:14:"diamond-symbol";s:5:"width";s:5:"small";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:42;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:43;a:6:{s:5:"title";s:0:"";s:4:"text";s:622:"<p>[aux_quote type="quote-normal" text_align="left" quote_symbol="1" title="title" extra_classes="custom-css"]Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[/aux_quote]</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57848cc46f1e7";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:43;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:44;a:6:{s:5:"title";s:0:"";s:4:"text";s:627:"<p>[aux_quote type="blockquote-normal" text_align="left" quote_symbol="1" title="title" extra_classes="custom-css"]Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[/aux_quote]</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57848ced55818";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:44;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:45;a:6:{s:5:"title";s:0:"";s:4:"text";s:629:"<p>[aux_quote type="blockquote-bordered" text_align="left" quote_symbol="1" title="title" extra_classes="custom-css"]Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[/aux_quote]</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57848d9e2b551";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:45;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:46;a:6:{s:5:"title";s:0:"";s:4:"text";s:626:"<p>[aux_quote type="pullquote-normal" text_align="left" quote_symbol="1" title="title" extra_classes="custom-css"]Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[/aux_quote]</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57848e186d683";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:46;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:47;a:6:{s:5:"title";s:0:"";s:4:"text";s:629:"<p>[aux_quote type="pullquote-colorized" text_align="left" quote_symbol="1" title="title" extra_classes="custom-css"]Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[/aux_quote]</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57848e8110080";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:47;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:48;a:6:{s:5:"title";s:0:"";s:4:"text";s:3551:"<p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before [aux_quote type="pullquote-normal" text_align="left" quote_symbol="1" title="title" float= "left"]There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.[/aux_quote]the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand. You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand. Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand Did you ever heat a piece of paper before the fire until it was real hot. [aux_quote type="blockquote-normal" text_align="left" quote_symbol="1" title="title" float= "right"]There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.[/aux_quote]Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the tables of and rub it from end to end with your hands. You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to endin with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from ended to end with your hand. Were you ever in a factory where there were large.Belts running rapidly over pulleys or wheels, and where large sparks.Would jump to your hands when held near the belts?Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:12:"_sow_form_id";s:13:"5785db382eba8";s:5:"autop";b:0;s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:48;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:49;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:49;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:50;a:6:{s:5:"title";s:0:"";s:7:"content";s:800:"this.each(function () {
7225
+ var instance = $.data(this, 'plugin_' + pluginName);
7226
+
7227
+ // Tests that there's already a plugin-instance
7228
+ // and checks that the requested public method exists
7229
+ if (instance instanceof Plugin && typeof instance[options] === 'function') {
7230
+
7231
+ // Call the method of our plugin instance,
7232
+ // and pass it the supplied arguments.
7233
+ returns = instance[options].apply( instance, Array.prototype.slice.call( args, 1 ) );
7234
+ }
7235
+
7236
+ // Allow instances to be destroyed via the 'destroy' method
7237
+ if (options === 'destroy') {
7238
+ $.data(this, 'plugin_' + pluginName, null);
7239
+ }
7240
+ });
7241
+
7242
+ // If the earlier cached method
7243
+ // gives a value back return the value,
7244
+ // otherwise return this to preserve chainability.
7245
+ return returns !== undefined ? returns : this;";s:8:"language";s:11:"javascript ";s:5:"theme";s:9:"tomorrow ";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:8:"aux_code";s:3:"raw";b:0;s:4:"grid";i:12;s:4:"cell";i:0;s:2:"id";i:50;s:9:"widget_id";s:36:"51c75a71-e53c-484e-a20f-ac5b422c9097";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:13:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:1;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:2;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:3;a:2:{s:5:"cells";i:4;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:4;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:5;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:6;a:2:{s:5:"cells";i:2;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:7;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:8;a:2:{s:5:"cells";i:2;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:9;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:10;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:11;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:12;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}s:10:"grid_cells";a:18:{i:0;a:2:{s:4:"grid";i:0;s:6:"weight";i:1;}i:1;a:2:{s:4:"grid";i:1;s:6:"weight";i:1;}i:2;a:2:{s:4:"grid";i:2;s:6:"weight";i:1;}i:3;a:2:{s:4:"grid";i:3;s:6:"weight";d:0.25;}i:4;a:2:{s:4:"grid";i:3;s:6:"weight";d:0.25;}i:5;a:2:{s:4:"grid";i:3;s:6:"weight";d:0.25;}i:6;a:2:{s:4:"grid";i:3;s:6:"weight";d:0.25;}i:7;a:2:{s:4:"grid";i:4;s:6:"weight";i:1;}i:8;a:2:{s:4:"grid";i:5;s:6:"weight";i:1;}i:9;a:2:{s:4:"grid";i:6;s:6:"weight";d:0.5;}i:10;a:2:{s:4:"grid";i:6;s:6:"weight";d:0.5;}i:11;a:2:{s:4:"grid";i:7;s:6:"weight";i:1;}i:12;a:2:{s:4:"grid";i:8;s:6:"weight";d:0.5;}i:13;a:2:{s:4:"grid";i:8;s:6:"weight";d:0.5;}i:14;a:2:{s:4:"grid";i:9;s:6:"weight";i:1;}i:15;a:2:{s:4:"grid";i:10;s:6:"weight";i:1;}i:16;a:2:{s:4:"grid";i:11;s:6:"weight";i:1;}i:17;a:2:{s:4:"grid";i:12;s:6:"weight";i:1;}}}]]></wp:meta_value>
7246
+ </wp:postmeta>
7247
+ <wp:postmeta>
7248
+ <wp:meta_key><![CDATA[_panels_data_preview]]></wp:meta_key>
7249
+ <wp:meta_value><![CDATA[a:3:{s:7:"widgets";a:51:{i:0;a:6:{s:5:"style";s:11:"white-space";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:0;s:9:"widget_id";s:36:"9b3ff994-f041-4761-8837-1798b38d0319";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:1;a:6:{s:5:"title";s:0:"";s:4:"text";s:3144:"<h1>Heading One</h1><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p><h2>Heading Two</h2><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p><h3>Heading Three</h3><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p><h4>Heading  Four</h4><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p><h5>Heading Five</h5><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p><h6>Heading Six</h6><p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:4:"tmce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57838d5d1d3f3";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:1;s:9:"widget_id";s:36:"b04e44c1-2ae8-4a99-9497-9cbb13295f89";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:2;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:0;s:4:"cell";i:0;s:2:"id";i:2;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:3;a:6:{s:5:"title";s:0:"";s:4:"text";s:1138:"<p>Did you ever heat a <strong>piece of paper before the fire until it was real</strong> hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and <em>where large <span style="color: #ff6600;">sparks would jump to your hands</span></em> when held near the <del>belts? Did you ever heat a piece of paper</del> before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from <a href="#">end to end with your hand</a>, and finally see it cling to the wall? Were you ever in a factory where there were <span style="text-decoration: underline;">large belts running rapidly over</span> pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:4:"tmce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784cbe0535a1";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:3;s:9:"widget_id";s:36:"b04e44c1-2ae8-4a99-9497-9cbb13295f89";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:4;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:1;s:4:"cell";i:0;s:2:"id";i:4;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:5;a:6:{s:5:"title";s:0:"";s:4:"text";s:1376:"<p>Did you ever [aux_highlight style="aux-highlight-red" extra_classes="custom-css-class"]heat a piece of paper before the fire[/aux_highlight] until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts<br /> running rapidly over pulleys or wheels, and where large sparks would jump to [aux_highlight style="aux-highlight-blue" extra_classes="custom-css-class"]your hands when held near the belts?[/aux_highlight] Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[aux_highlight style="aux-highlight-yellow" extra_classes="custom-css-class"]Did you ever heat a piece of paper before [/aux_highlight]the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper [aux_highlight style="aux-highlight-green" extra_classes="custom-css-class"]before the fire until it was real hot, then lay it upon the table [/aux_highlight]and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5783919ae0eb8";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:2;s:4:"cell";i:0;s:2:"id";i:5;s:9:"widget_id";s:36:"c6ef7a6f-acd0-4b9c-9071-1f68e7ca5350";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:6;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:2;s:4:"cell";i:0;s:2:"id";i:6;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:7;a:6:{s:5:"title";s:0:"";s:4:"text";s:263:"<p><span style="color: #33cccc;">This is a sample text</span></p><p><strong>This is a sample text</strong></p><p><em>This is a sample text</em></p><p><span style="text-decoration: underline;">This is a sample text</span></p><p><del>This is a sample text</del></p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57861fb1171d7";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:3;s:4:"cell";i:0;s:2:"id";i:7;s:9:"widget_id";s:36:"de1cfb4c-5a6b-4c10-bfd4-85c08e391bb6";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:8;a:6:{s:5:"title";s:0:"";s:4:"text";s:264:"<ol><li>This is a sample list style</li><li>This is a sample list style</li><li><span style="line-height: 1.5;">This is a sample list style</span></li><li>This is a sample list style</li><li>This is a sample list style</li><li>This is a sample list style</li></ol>";s:20:"text_selected_editor";s:7:"tinymce";s:12:"_sow_form_id";s:13:"5786125e005cb";s:5:"autop";b:0;s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:3;s:4:"cell";i:1;s:2:"id";i:8;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:9;a:6:{s:5:"title";s:0:"";s:4:"text";s:273:"<ul><li>This is a sample list style</li><li>This is a sample list style</li><li><span style="line-height: 1.5;">This is a sample list style</span><ul><li>This is a sample list style</li><li>This is a sample list style</li><li>This is a sample list style</li></ul></li></ul>";s:20:"text_selected_editor";s:7:"tinymce";s:12:"_sow_form_id";s:13:"578610e1dd7df";s:5:"autop";b:0;s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:3;s:4:"cell";i:2;s:2:"id";i:9;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:10;a:6:{s:5:"title";s:0:"";s:4:"text";s:272:"<ul><li><span style="line-height: 1.5;">This is a sample list style</span><ul><li>This is a sample list style</li><li>This is a sample list style<br /><ul><li>This is a sample list</li><li>This is a sample list</li><li>This is a sample list </li></ul></li></ul></li></ul>";s:20:"text_selected_editor";s:7:"tinymce";s:12:"_sow_form_id";s:13:"57861e1c2a622";s:5:"autop";b:0;s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:3;s:4:"cell";i:3;s:2:"id";i:10;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:11;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:4:"70px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:4;s:4:"cell";i:0;s:2:"id";i:11;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:12;a:6:{s:5:"title";s:0:"";s:4:"text";s:1881:"<p><img class="size-full wp-image-173 alignleft" src="http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image.jpg" alt="sample-image" width="250" height="250" />Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.</p><p>Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand.</p><p>You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784d0e7c18ee";s:11:"panels_info";a:6:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:4:"grid";i:5;s:4:"cell";i:0;s:2:"id";i:12;s:9:"widget_id";s:36:"c6ef7a6f-acd0-4b9c-9071-1f68e7ca5350";s:5:"style";a:3:{s:5:"class";s:17:"intro-hero-center";s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:13;a:6:{s:5:"style";s:11:"white-space";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:5;s:4:"cell";i:0;s:2:"id";i:13;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:14;a:6:{s:5:"title";s:0:"";s:4:"text";s:1882:"<p><img class="alignright size-full wp-image-173" src="http://averta.net/phlox/wordpress-theme/demo/classic-blog/wp-content/uploads/sites/7/2016/07/sample-image.jpg" alt="sample-image" width="250" height="250" />Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.</p><p>Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand.</p><p>You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784d45955c0a";s:11:"panels_info";a:6:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:4:"grid";i:5;s:4:"cell";i:0;s:2:"id";i:14;s:9:"widget_id";s:36:"c6ef7a6f-acd0-4b9c-9071-1f68e7ca5350";s:5:"style";a:3:{s:5:"class";s:17:"intro-hero-center";s:27:"background_image_attachment";b:0;s:18:"background_display";s:4:"tile";}}}i:15;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:5;s:4:"cell";i:0;s:2:"id";i:15;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:16;a:5:{s:5:"title";s:0:"";s:4:"type";s:4:"true";s:7:"content";s:1972:"[accordion_section label="Accordion label" ] Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot [/accordion_section].
7250
+ [accordion_section label="Accordion label" ] Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot [/accordion_section].
7251
+ [accordion_section label="Accordion label" ] Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot [/accordion_section].
7252
+ [accordion_section label="Accordion label" ] Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot [/accordion_section].
7253
+ ";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:13:"aux_accordion";s:3:"raw";b:0;s:4:"grid";i:6;s:4:"cell";i:0;s:2:"id";i:16;s:9:"widget_id";s:36:"4ef2df77-5f51-4403-bc28-7c6c2e13f627";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:17;a:4:{s:5:"title";s:0:"";s:7:"content";s:2919:"[tab_section label="Tab label" ]ar far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.
7254
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, [/tab_section]
7255
+ [tab_section label="Tab label" ]The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country.[/tab_section]
7256
+ [tab_section label="Tab label" ]But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.[/tab_section]
7257
+ ";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:8:"aux_tabs";s:3:"raw";b:0;s:4:"grid";i:6;s:4:"cell";i:1;s:2:"id";i:17;s:9:"widget_id";s:36:"96b27582-adb3-4474-8579-1d5ff6036c8e";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:18;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:7;s:4:"cell";i:0;s:2:"id";i:18;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:19;a:6:{s:5:"title";s:0:"";s:4:"text";s:411:"<p>[aux_dropcap style="classic" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b56fda254";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:0;s:2:"id";i:19;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:20;a:6:{s:5:"title";s:0:"";s:4:"text";s:418:"<p>[aux_dropcap style="square-outline" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b7bcb481a";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:0;s:2:"id";i:20;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:21;a:6:{s:5:"title";s:0:"";s:4:"text";s:410:"<p>[aux_dropcap style="circle" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b7ec9a6bd";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:0;s:2:"id";i:21;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:22;a:6:{s:5:"title";s:0:"";s:4:"text";s:410:"<p>[aux_dropcap style="square" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b6c83f3de";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:1;s:2:"id";i:22;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:23;a:6:{s:5:"title";s:0:"";s:4:"text";s:416:"<p>[aux_dropcap style="square-round" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b7ea5075b";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:1;s:2:"id";i:23;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:24;a:6:{s:5:"title";s:0:"";s:4:"text";s:418:"<p>[aux_dropcap style="circle-outline" extra_classes="custom-css"]M[/aux_dropcap]aybe you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels are the same manu publishers during the world of mayor.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"5784b7e6db0dd";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:8;s:4:"cell";i:1;s:2:"id";i:24;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:25;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:25;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:26;a:6:{s:5:"title";s:0:"";s:4:"text";s:895:"<p>[aux_quote type="intro-hero" text_align="center" quote_symbol="1" title="title" extra_classes=""]There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.[/aux_quote]</p><p style="text-align: center;">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:12:"_sow_form_id";s:13:"578478ee0a080";s:5:"autop";b:0;s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:26;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:27;a:6:{s:5:"style";s:11:"white-space";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:27;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:28;a:6:{s:5:"title";s:0:"";s:4:"text";s:921:"<p class="intro-paragraph">[aux_quote type="intro-normal" text_align="center" quote_symbol="1" title="title" extra_classes=""]There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.[/aux_quote]</p><p style="text-align: center;">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"578479a4bbbe3";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:28;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:29;a:6:{s:5:"style";s:11:"white-space";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:29;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:30;a:6:{s:5:"title";s:0:"";s:4:"text";s:933:"<p class="intro-paragraph">[aux_quote type="intro-splitter" text_align="center" quote_symbol="1" title="title" extra_classes="custom-css"]There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.[/aux_quote]</p><p style="text-align: center;">Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57847a6401cd4";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:9;s:4:"cell";i:0;s:2:"id";i:30;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:31;a:6:{s:5:"style";s:5:"solid";s:5:"width";s:5:"large";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:31;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:32;a:6:{s:5:"style";s:5:"solid";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:32;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:33;a:6:{s:5:"style";s:5:"solid";s:5:"width";s:5:"small";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:33;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:34;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:5:"large";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:34;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:35;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:35;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:36;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:5:"small";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:36;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:37;a:6:{s:5:"style";s:13:"circle-symbol";s:5:"width";s:5:"large";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:37;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:38;a:6:{s:5:"style";s:13:"circle-symbol";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:38;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:39;a:6:{s:5:"style";s:13:"circle-symbol";s:5:"width";s:5:"small";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:39;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:40;a:6:{s:5:"style";s:14:"diamond-symbol";s:5:"width";s:5:"large";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:40;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:41;a:6:{s:5:"style";s:14:"diamond-symbol";s:5:"width";s:6:"medium";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:0:"";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:41;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:42;a:6:{s:5:"style";s:14:"diamond-symbol";s:5:"width";s:5:"small";s:10:"margin_top";s:0:"";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:10;s:4:"cell";i:0;s:2:"id";i:42;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:43;a:6:{s:5:"title";s:0:"";s:4:"text";s:622:"<p>[aux_quote type="quote-normal" text_align="left" quote_symbol="1" title="title" extra_classes="custom-css"]Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[/aux_quote]</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57848cc46f1e7";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:43;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:44;a:6:{s:5:"title";s:0:"";s:4:"text";s:627:"<p>[aux_quote type="blockquote-normal" text_align="left" quote_symbol="1" title="title" extra_classes="custom-css"]Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[/aux_quote]</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57848ced55818";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:44;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:45;a:6:{s:5:"title";s:0:"";s:4:"text";s:629:"<p>[aux_quote type="blockquote-bordered" text_align="left" quote_symbol="1" title="title" extra_classes="custom-css"]Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[/aux_quote]</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57848d9e2b551";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:45;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:46;a:6:{s:5:"title";s:0:"";s:4:"text";s:626:"<p>[aux_quote type="pullquote-normal" text_align="left" quote_symbol="1" title="title" extra_classes="custom-css"]Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[/aux_quote]</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57848e186d683";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:46;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:47;a:6:{s:5:"title";s:0:"";s:4:"text";s:629:"<p>[aux_quote type="pullquote-colorized" text_align="left" quote_symbol="1" title="title" extra_classes="custom-css"]Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand.[/aux_quote]</p>";s:20:"text_selected_editor";s:7:"tinymce";s:5:"autop";b:1;s:12:"_sow_form_id";s:13:"57848e8110080";s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:47;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:48;a:6:{s:5:"title";s:0:"";s:4:"text";s:3551:"<p>Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before [aux_quote type="pullquote-normal" text_align="left" quote_symbol="1" title="title" float= "left"]There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.[/aux_quote]the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand. You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand. Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks would jump to your hands when held near the belts? Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand Did you ever heat a piece of paper before the fire until it was real hot. [aux_quote type="blockquote-normal" text_align="left" quote_symbol="1" title="title" float= "right"]There are dozens of simple, fascinating experiments that may be performed with this kind of electricity.[/aux_quote]Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand, and finally see it cling to the wall? Were you ever in a factory where there were large belts running rapidly over pulleys or wheels upon the tables of and rub it from end to end with your hands. You ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to endin with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from ended to end with your hand. Were you ever in a factory where there were large.Belts running rapidly over pulleys or wheels, and where large sparks.Would jump to your hands when held near the belts?Did you ever heat a piece of paper before the fire until it was real hot, then lay it upon the table and rub it from end to end with your hand. upon the table and rub it from end to end with your hand were large belts running rapidly over pulleys or wheels upon the table and rub it from end to end with your hand. Did you ever heat a piece of paper before the fire until it was real hot. Then lay it upon the table and rub it from end to end with your hand.Were you ever in a factory where there were large belts running rapidly over pulleys or wheels, and where large sparks.</p>";s:20:"text_selected_editor";s:7:"tinymce";s:12:"_sow_form_id";s:13:"5785db382eba8";s:5:"autop";b:0;s:11:"panels_info";a:7:{s:5:"class";s:31:"SiteOrigin_Widget_Editor_Widget";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:48;s:9:"widget_id";s:36:"aab53ec6-d019-41fa-a6f4-168cb4e5dbd3";s:5:"style";a:2:{s:5:"class";s:17:"intro-hero-center";s:18:"background_display";s:4:"tile";}}}i:49;a:6:{s:5:"style";s:6:"dashed";s:5:"width";s:6:"medium";s:10:"margin_top";s:5:"100px";s:13:"margin_bottom";s:4:"70px";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:11:"aux_divider";s:3:"raw";b:0;s:4:"grid";i:11;s:4:"cell";i:0;s:2:"id";i:49;s:9:"widget_id";s:36:"c4e54c16-252c-42cf-961f-6f51ca9ecd56";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}i:50;a:6:{s:5:"title";s:0:"";s:7:"content";s:800:"this.each(function () {
7258
+ var instance = $.data(this, 'plugin_' + pluginName);
7259
+
7260
+ // Tests that there's already a plugin-instance
7261
+ // and checks that the requested public method exists
7262
+ if (instance instanceof Plugin && typeof instance[options] === 'function') {
7263
+
7264
+ // Call the method of our plugin instance,
7265
+ // and pass it the supplied arguments.
7266
+ returns = instance[options].apply( instance, Array.prototype.slice.call( args, 1 ) );
7267
+ }
7268
+
7269
+ // Allow instances to be destroyed via the 'destroy' method
7270
+ if (options === 'destroy') {
7271
+ $.data(this, 'plugin_' + pluginName, null);
7272
+ }
7273
+ });
7274
+
7275
+ // If the earlier cached method
7276
+ // gives a value back return the value,
7277
+ // otherwise return this to preserve chainability.
7278
+ return returns !== undefined ? returns : this;";s:8:"language";s:11:"javascript ";s:5:"theme";s:9:"tomorrow ";s:13:"extra_classes";s:0:"";s:11:"panels_info";a:7:{s:5:"class";s:8:"aux_code";s:3:"raw";b:0;s:4:"grid";i:12;s:4:"cell";i:0;s:2:"id";i:50;s:9:"widget_id";s:36:"51c75a71-e53c-484e-a20f-ac5b422c9097";s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}}s:5:"grids";a:13:{i:0;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:1;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:2;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:3;a:2:{s:5:"cells";i:4;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:4;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:5;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:6;a:2:{s:5:"cells";i:2;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:7;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:8;a:2:{s:5:"cells";i:2;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:9;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:10;a:2:{s:5:"cells";i:1;s:5:"style";a:0:{}}i:11;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}i:12;a:2:{s:5:"cells";i:1;s:5:"style";a:1:{s:18:"background_display";s:4:"tile";}}}s:10:"grid_cells";a:18:{i:0;a:2:{s:4:"grid";i:0;s:6:"weight";i:1;}i:1;a:2:{s:4:"grid";i:1;s:6:"weight";i:1;}i:2;a:2:{s:4:"grid";i:2;s:6:"weight";i:1;}i:3;a:2:{s:4:"grid";i:3;s:6:"weight";d:0.25;}i:4;a:2:{s:4:"grid";i:3;s:6:"weight";d:0.25;}i:5;a:2:{s:4:"grid";i:3;s:6:"weight";d:0.25;}i:6;a:2:{s:4:"grid";i:3;s:6:"weight";d:0.25;}i:7;a:2:{s:4:"grid";i:4;s:6:"weight";i:1;}i:8;a:2:{s:4:"grid";i:5;s:6:"weight";i:1;}i:9;a:2:{s:4:"grid";i:6;s:6:"weight";d:0.5;}i:10;a:2:{s:4:"grid";i:6;s:6:"weight";d:0.5;}i:11;a:2:{s:4:"grid";i:7;s:6:"weight";i:1;}i:12;a:2:{s:4:"grid";i:8;s:6:"weight";d:0.5;}i:13;a:2:{s:4:"grid";i:8;s:6:"weight";d:0.5;}i:14;a:2:{s:4:"grid";i:9;s:6:"weight";i:1;}i:15;a:2:{s:4:"grid";i:10;s:6:"weight";i:1;}i:16;a:2:{s:4:"grid";i:11;s:6:"weight";i:1;}i:17;a:2:{s:4:"grid";i:12;s:6:"weight";i:1;}}}]]></wp:meta_value>
7279
+ </wp:postmeta>
7280
+ <wp:postmeta>
7281
+ <wp:meta_key><![CDATA[page_header_top_layout]]></wp:meta_key>
7282
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
7283
+ </wp:postmeta>
7284
+ <wp:postmeta>
7285
+ <wp:meta_key><![CDATA[aux_custom_bg_show]]></wp:meta_key>
7286
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7287
+ </wp:postmeta>
7288
+ <wp:postmeta>
7289
+ <wp:meta_key><![CDATA[aux_custom_bg_repeat]]></wp:meta_key>
7290
+ <wp:meta_value><![CDATA[repeat]]></wp:meta_value>
7291
+ </wp:postmeta>
7292
+ <wp:postmeta>
7293
+ <wp:meta_key><![CDATA[aux_custom_bg_attach]]></wp:meta_key>
7294
+ <wp:meta_value><![CDATA[scroll]]></wp:meta_value>
7295
+ </wp:postmeta>
7296
+ <wp:postmeta>
7297
+ <wp:meta_key><![CDATA[aux_custom_bg_position]]></wp:meta_key>
7298
+ <wp:meta_value><![CDATA[left top]]></wp:meta_value>
7299
+ </wp:postmeta>
7300
+ <wp:postmeta>
7301
+ <wp:meta_key><![CDATA[aux_custom_bg_size]]></wp:meta_key>
7302
+ <wp:meta_value><![CDATA[auto]]></wp:meta_value>
7303
+ </wp:postmeta>
7304
+ <wp:postmeta>
7305
+ <wp:meta_key><![CDATA[_yoast_wpseo_content_score]]></wp:meta_key>
7306
+ <wp:meta_value><![CDATA[30]]></wp:meta_value>
7307
+ </wp:postmeta>
7308
+ </item>
7309
+ <item>
7310
+ <title>Contact form 1</title>
7311
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/?post_type=wpcf7_contact_form&#038;p=6</link>
7312
+ <pubDate>Wed, 22 Jun 2016 11:45:05 +0000</pubDate>
7313
+ <dc:creator><![CDATA[admin]]></dc:creator>
7314
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?post_type=wpcf7_contact_form&#038;p=6</guid>
7315
+ <description></description>
7316
+ <content:encoded><![CDATA[<p>Your Name (required)<br />
7317
+ [text* your-name] </p>
7318
+
7319
+ <p>Your Email (required)<br />
7320
+ [email* your-email] </p>
7321
+
7322
+ <p>Subject<br />
7323
+ [text your-subject] </p>
7324
+
7325
+ <p>Your Message<br />
7326
+ [textarea your-message] </p>
7327
+
7328
+ <p>[submit "Send"]</p>
7329
+ Phlox demo1 "[your-subject]"
7330
+ [your-name]
7331
+ From: [your-name]
7332
+ Subject: [your-subject]
7333
+
7334
+ Message Body:
7335
+ [your-message]
7336
+
7337
+ --
7338
+ This e-mail was sent from a contact form on Phlox demo1 (http://demo.averta.net/themes/phlox/demo1)
7339
+ info@averta.net
7340
+ Reply-To: [your-email]
7341
+
7342
+ 0
7343
+ 0
7344
+
7345
+ Phlox demo1 "[your-subject]"
7346
+ Phlox demo1
7347
+ Message Body:
7348
+ [your-message]
7349
+
7350
+ --
7351
+ This e-mail was sent from a contact form on Phlox demo1 (http://demo.averta.net/themes/phlox/demo1)
7352
+ [your-email]
7353
+ Reply-To: info@averta.net
7354
+
7355
+ 0
7356
+ 0
7357
+ Thank you for your message. It has been sent.
7358
+ There was an error trying to send your message. Please try again later.
7359
+ One or more fields have an error. Please check and try again.
7360
+ There was an error trying to send your message. Please try again later.
7361
+ You must accept the terms and conditions before sending your message.
7362
+ The field is required.
7363
+ The field is too long.
7364
+ The field is too short.]]></content:encoded>
7365
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
7366
+ <wp:post_id>6</wp:post_id>
7367
+ <wp:post_date><![CDATA[2016-06-22 11:45:05]]></wp:post_date>
7368
+ <wp:post_date_gmt><![CDATA[2016-06-22 11:45:05]]></wp:post_date_gmt>
7369
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
7370
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
7371
+ <wp:post_name><![CDATA[contact-form-1]]></wp:post_name>
7372
+ <wp:status><![CDATA[publish]]></wp:status>
7373
+ <wp:post_parent>0</wp:post_parent>
7374
+ <wp:menu_order>0</wp:menu_order>
7375
+ <wp:post_type><![CDATA[wpcf7_contact_form]]></wp:post_type>
7376
+ <wp:post_password><![CDATA[]]></wp:post_password>
7377
+ <wp:is_sticky>0</wp:is_sticky>
7378
+ <wp:postmeta>
7379
+ <wp:meta_key><![CDATA[_form]]></wp:meta_key>
7380
+ <wp:meta_value><![CDATA[<p>Your Name (required)<br />
7381
+ [text* your-name] </p>
7382
+
7383
+ <p>Your Email (required)<br />
7384
+ [email* your-email] </p>
7385
+
7386
+ <p>Subject<br />
7387
+ [text your-subject] </p>
7388
+
7389
+ <p>Your Message<br />
7390
+ [textarea your-message] </p>
7391
+
7392
+ <p>[submit "Send"]</p>]]></wp:meta_value>
7393
+ </wp:postmeta>
7394
+ <wp:postmeta>
7395
+ <wp:meta_key><![CDATA[_mail]]></wp:meta_key>
7396
+ <wp:meta_value><![CDATA[a:8:{s:7:"subject";s:28:"Phlox demo1 "[your-subject]"";s:6:"sender";s:39:"[your-name] <wordpress@demo.averta.net>";s:4:"body";s:190:"From: [your-name] <[your-email]>
7397
+ Subject: [your-subject]
7398
+
7399
+ Message Body:
7400
+ [your-message]
7401
+
7402
+ --
7403
+ This e-mail was sent from a contact form on Phlox demo1 (http://demo.averta.net/themes/phlox/demo1)";s:9:"recipient";s:15:"info@averta.net";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";i:0;s:13:"exclude_blank";i:0;}]]></wp:meta_value>
7404
+ </wp:postmeta>
7405
+ <wp:postmeta>
7406
+ <wp:meta_key><![CDATA[_mail_2]]></wp:meta_key>
7407
+ <wp:meta_value><![CDATA[a:9:{s:6:"active";b:0;s:7:"subject";s:28:"Phlox demo1 "[your-subject]"";s:6:"sender";s:39:"Phlox demo1 <wordpress@demo.averta.net>";s:4:"body";s:132:"Message Body:
7408
+ [your-message]
7409
+
7410
+ --
7411
+ This e-mail was sent from a contact form on Phlox demo1 (http://demo.averta.net/themes/phlox/demo1)";s:9:"recipient";s:12:"[your-email]";s:18:"additional_headers";s:25:"Reply-To: info@averta.net";s:11:"attachments";s:0:"";s:8:"use_html";i:0;s:13:"exclude_blank";i:0;}]]></wp:meta_value>
7412
+ </wp:postmeta>
7413
+ <wp:postmeta>
7414
+ <wp:meta_key><![CDATA[_messages]]></wp:meta_key>
7415
+ <wp:meta_value><![CDATA[a:8:{s:12:"mail_sent_ok";s:45:"Thank you for your message. It has been sent.";s:12:"mail_sent_ng";s:71:"There was an error trying to send your message. Please try again later.";s:16:"validation_error";s:61:"One or more fields have an error. Please check and try again.";s:4:"spam";s:71:"There was an error trying to send your message. Please try again later.";s:12:"accept_terms";s:69:"You must accept the terms and conditions before sending your message.";s:16:"invalid_required";s:22:"The field is required.";s:16:"invalid_too_long";s:22:"The field is too long.";s:17:"invalid_too_short";s:23:"The field is too short.";}]]></wp:meta_value>
7416
+ </wp:postmeta>
7417
+ <wp:postmeta>
7418
+ <wp:meta_key><![CDATA[_additional_settings]]></wp:meta_key>
7419
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7420
+ </wp:postmeta>
7421
+ <wp:postmeta>
7422
+ <wp:meta_key><![CDATA[_locale]]></wp:meta_key>
7423
+ <wp:meta_value><![CDATA[en_US]]></wp:meta_value>
7424
+ </wp:postmeta>
7425
+ </item>
7426
+ <item>
7427
+ <title>Serious Problems with Cables in CIty</title>
7428
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/serious-problems-with-cables-in-city/</link>
7429
+ <pubDate>Sat, 25 Jun 2016 10:10:42 +0000</pubDate>
7430
+ <dc:creator><![CDATA[admin]]></dc:creator>
7431
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=99</guid>
7432
+ <description></description>
7433
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
7434
+
7435
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
7436
+
7437
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
7438
+
7439
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
7440
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
7441
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
7442
+
7443
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
7444
+
7445
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
7446
+
7447
+ It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.]]></content:encoded>
7448
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
7449
+ <wp:post_id>99</wp:post_id>
7450
+ <wp:post_date><![CDATA[2016-06-25 10:10:42]]></wp:post_date>
7451
+ <wp:post_date_gmt><![CDATA[2016-06-25 10:10:42]]></wp:post_date_gmt>
7452
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
7453
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
7454
+ <wp:post_name><![CDATA[serious-problems-with-cables-in-city]]></wp:post_name>
7455
+ <wp:status><![CDATA[publish]]></wp:status>
7456
+ <wp:post_parent>0</wp:post_parent>
7457
+ <wp:menu_order>0</wp:menu_order>
7458
+ <wp:post_type><![CDATA[post]]></wp:post_type>
7459
+ <wp:post_password><![CDATA[]]></wp:post_password>
7460
+ <wp:is_sticky>0</wp:is_sticky>
7461
+ <category domain="post_tag" nicename="city"><![CDATA[City]]></category>
7462
+ <category domain="post_tag" nicename="communication"><![CDATA[Communication]]></category>
7463
+ <category domain="post_tag" nicename="people"><![CDATA[People]]></category>
7464
+ <category domain="category" nicename="social"><![CDATA[Social]]></category>
7465
+ <wp:postmeta>
7466
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
7467
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7468
+ </wp:postmeta>
7469
+ <wp:postmeta>
7470
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
7471
+ <wp:meta_value><![CDATA[95]]></wp:meta_value>
7472
+ </wp:postmeta>
7473
+ <wp:postmeta>
7474
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
7475
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7476
+ </wp:postmeta>
7477
+ <wp:postmeta>
7478
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
7479
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7480
+ </wp:postmeta>
7481
+ <wp:postmeta>
7482
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
7483
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7484
+ </wp:postmeta>
7485
+ <wp:postmeta>
7486
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
7487
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7488
+ </wp:postmeta>
7489
+ <wp:postmeta>
7490
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
7491
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7492
+ </wp:postmeta>
7493
+ <wp:postmeta>
7494
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
7495
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
7496
+ </wp:postmeta>
7497
+ <wp:postmeta>
7498
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
7499
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
7500
+ </wp:postmeta>
7501
+ <wp:postmeta>
7502
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
7503
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7504
+ </wp:postmeta>
7505
+ <wp:postmeta>
7506
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
7507
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
7508
+ </wp:postmeta>
7509
+ <wp:postmeta>
7510
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
7511
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7512
+ </wp:postmeta>
7513
+ <wp:postmeta>
7514
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
7515
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
7516
+ </wp:postmeta>
7517
+ <wp:postmeta>
7518
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
7519
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7520
+ </wp:postmeta>
7521
+ <wp:postmeta>
7522
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
7523
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
7524
+ </wp:postmeta>
7525
+ <wp:postmeta>
7526
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
7527
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7528
+ </wp:postmeta>
7529
+ <wp:postmeta>
7530
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
7531
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7532
+ </wp:postmeta>
7533
+ <wp:postmeta>
7534
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
7535
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7536
+ </wp:postmeta>
7537
+ <wp:postmeta>
7538
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
7539
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7540
+ </wp:postmeta>
7541
+ <wp:postmeta>
7542
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
7543
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7544
+ </wp:postmeta>
7545
+ <wp:postmeta>
7546
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
7547
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
7548
+ </wp:postmeta>
7549
+ <wp:postmeta>
7550
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
7551
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
7552
+ </wp:postmeta>
7553
+ <wp:postmeta>
7554
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
7555
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
7556
+ </wp:postmeta>
7557
+ <wp:postmeta>
7558
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
7559
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
7560
+ </wp:postmeta>
7561
+ <wp:postmeta>
7562
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
7563
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7564
+ </wp:postmeta>
7565
+ <wp:postmeta>
7566
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
7567
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7568
+ </wp:postmeta>
7569
+ <wp:postmeta>
7570
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
7571
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
7572
+ </wp:postmeta>
7573
+ <wp:postmeta>
7574
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
7575
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
7576
+ </wp:postmeta>
7577
+ <wp:comment>
7578
+ <wp:comment_id>70</wp:comment_id>
7579
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
7580
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
7581
+ <wp:comment_author_url></wp:comment_author_url>
7582
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
7583
+ <wp:comment_date><![CDATA[2016-07-03 07:22:10]]></wp:comment_date>
7584
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:22:10]]></wp:comment_date_gmt>
7585
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
7586
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
7587
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
7588
+ <wp:comment_parent>0</wp:comment_parent>
7589
+ <wp:comment_user_id>0</wp:comment_user_id>
7590
+ </wp:comment>
7591
+ <wp:comment>
7592
+ <wp:comment_id>71</wp:comment_id>
7593
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
7594
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
7595
+ <wp:comment_author_url></wp:comment_author_url>
7596
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
7597
+ <wp:comment_date><![CDATA[2016-07-03 07:22:33]]></wp:comment_date>
7598
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:22:33]]></wp:comment_date_gmt>
7599
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
7600
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
7601
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
7602
+ <wp:comment_parent>70</wp:comment_parent>
7603
+ <wp:comment_user_id>0</wp:comment_user_id>
7604
+ </wp:comment>
7605
+ <wp:comment>
7606
+ <wp:comment_id>72</wp:comment_id>
7607
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
7608
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
7609
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
7610
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
7611
+ <wp:comment_date><![CDATA[2016-07-03 07:23:01]]></wp:comment_date>
7612
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:23:01]]></wp:comment_date_gmt>
7613
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
7614
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
7615
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
7616
+ <wp:comment_parent>0</wp:comment_parent>
7617
+ <wp:comment_user_id>0</wp:comment_user_id>
7618
+ </wp:comment>
7619
+ <wp:comment>
7620
+ <wp:comment_id>73</wp:comment_id>
7621
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
7622
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
7623
+ <wp:comment_author_url></wp:comment_author_url>
7624
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
7625
+ <wp:comment_date><![CDATA[2016-07-03 07:23:22]]></wp:comment_date>
7626
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:23:22]]></wp:comment_date_gmt>
7627
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
7628
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
7629
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
7630
+ <wp:comment_parent>0</wp:comment_parent>
7631
+ <wp:comment_user_id>0</wp:comment_user_id>
7632
+ </wp:comment>
7633
+ </item>
7634
+ <item>
7635
+ <title>Road to Eye-catching Landscape</title>
7636
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/road-to-eye-catching-landscape/</link>
7637
+ <pubDate>Sat, 25 Jun 2016 10:07:15 +0000</pubDate>
7638
+ <dc:creator><![CDATA[admin]]></dc:creator>
7639
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=101</guid>
7640
+ <description></description>
7641
+ <content:encoded><![CDATA[The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
7642
+
7643
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
7644
+
7645
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
7646
+
7647
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
7648
+ <blockquote>To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.</blockquote>
7649
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
7650
+
7651
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
7652
+
7653
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
7654
+
7655
+ It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.]]></content:encoded>
7656
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
7657
+ <wp:post_id>101</wp:post_id>
7658
+ <wp:post_date><![CDATA[2016-06-25 10:07:15]]></wp:post_date>
7659
+ <wp:post_date_gmt><![CDATA[2016-06-25 10:07:15]]></wp:post_date_gmt>
7660
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
7661
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
7662
+ <wp:post_name><![CDATA[road-to-eye-catching-landscape]]></wp:post_name>
7663
+ <wp:status><![CDATA[publish]]></wp:status>
7664
+ <wp:post_parent>0</wp:post_parent>
7665
+ <wp:menu_order>0</wp:menu_order>
7666
+ <wp:post_type><![CDATA[post]]></wp:post_type>
7667
+ <wp:post_password><![CDATA[]]></wp:post_password>
7668
+ <wp:is_sticky>0</wp:is_sticky>
7669
+ <category domain="category" nicename="life-style"><![CDATA[Life style]]></category>
7670
+ <category domain="post_tag" nicename="nature"><![CDATA[Nature]]></category>
7671
+ <category domain="post_tag" nicename="outdoor"><![CDATA[Outdoor]]></category>
7672
+ <category domain="post_tag" nicename="photography"><![CDATA[Photography]]></category>
7673
+ <category domain="post_format" nicename="post-format-image"><![CDATA[Image]]></category>
7674
+ <category domain="category" nicename="travel"><![CDATA[Travel]]></category>
7675
+ <wp:postmeta>
7676
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
7677
+ <wp:meta_value><![CDATA[102]]></wp:meta_value>
7678
+ </wp:postmeta>
7679
+ <wp:postmeta>
7680
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
7681
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7682
+ </wp:postmeta>
7683
+ <wp:postmeta>
7684
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
7685
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7686
+ </wp:postmeta>
7687
+ <wp:postmeta>
7688
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
7689
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7690
+ </wp:postmeta>
7691
+ <wp:postmeta>
7692
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
7693
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7694
+ </wp:postmeta>
7695
+ <wp:postmeta>
7696
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
7697
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7698
+ </wp:postmeta>
7699
+ <wp:postmeta>
7700
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
7701
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7702
+ </wp:postmeta>
7703
+ <wp:postmeta>
7704
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
7705
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
7706
+ </wp:postmeta>
7707
+ <wp:postmeta>
7708
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
7709
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
7710
+ </wp:postmeta>
7711
+ <wp:postmeta>
7712
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
7713
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7714
+ </wp:postmeta>
7715
+ <wp:postmeta>
7716
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
7717
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
7718
+ </wp:postmeta>
7719
+ <wp:postmeta>
7720
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
7721
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7722
+ </wp:postmeta>
7723
+ <wp:postmeta>
7724
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
7725
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
7726
+ </wp:postmeta>
7727
+ <wp:postmeta>
7728
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
7729
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7730
+ </wp:postmeta>
7731
+ <wp:postmeta>
7732
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
7733
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
7734
+ </wp:postmeta>
7735
+ <wp:postmeta>
7736
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
7737
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7738
+ </wp:postmeta>
7739
+ <wp:postmeta>
7740
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
7741
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7742
+ </wp:postmeta>
7743
+ <wp:postmeta>
7744
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
7745
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7746
+ </wp:postmeta>
7747
+ <wp:postmeta>
7748
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
7749
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7750
+ </wp:postmeta>
7751
+ <wp:postmeta>
7752
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
7753
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7754
+ </wp:postmeta>
7755
+ <wp:postmeta>
7756
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
7757
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
7758
+ </wp:postmeta>
7759
+ <wp:postmeta>
7760
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
7761
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
7762
+ </wp:postmeta>
7763
+ <wp:postmeta>
7764
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
7765
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
7766
+ </wp:postmeta>
7767
+ <wp:postmeta>
7768
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
7769
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
7770
+ </wp:postmeta>
7771
+ <wp:postmeta>
7772
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
7773
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7774
+ </wp:postmeta>
7775
+ <wp:postmeta>
7776
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
7777
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7778
+ </wp:postmeta>
7779
+ <wp:postmeta>
7780
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
7781
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
7782
+ </wp:postmeta>
7783
+ <wp:postmeta>
7784
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
7785
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
7786
+ </wp:postmeta>
7787
+ <wp:comment>
7788
+ <wp:comment_id>74</wp:comment_id>
7789
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
7790
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
7791
+ <wp:comment_author_url></wp:comment_author_url>
7792
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
7793
+ <wp:comment_date><![CDATA[2016-07-03 07:32:27]]></wp:comment_date>
7794
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:32:27]]></wp:comment_date_gmt>
7795
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
7796
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
7797
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
7798
+ <wp:comment_parent>0</wp:comment_parent>
7799
+ <wp:comment_user_id>0</wp:comment_user_id>
7800
+ </wp:comment>
7801
+ <wp:comment>
7802
+ <wp:comment_id>75</wp:comment_id>
7803
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
7804
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
7805
+ <wp:comment_author_url></wp:comment_author_url>
7806
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
7807
+ <wp:comment_date><![CDATA[2016-07-03 07:32:47]]></wp:comment_date>
7808
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:32:47]]></wp:comment_date_gmt>
7809
+ <wp:comment_content><![CDATA[Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
7810
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
7811
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
7812
+ <wp:comment_parent>74</wp:comment_parent>
7813
+ <wp:comment_user_id>0</wp:comment_user_id>
7814
+ </wp:comment>
7815
+ <wp:comment>
7816
+ <wp:comment_id>76</wp:comment_id>
7817
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
7818
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
7819
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
7820
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
7821
+ <wp:comment_date><![CDATA[2016-07-03 07:33:07]]></wp:comment_date>
7822
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:33:07]]></wp:comment_date_gmt>
7823
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
7824
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
7825
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
7826
+ <wp:comment_parent>0</wp:comment_parent>
7827
+ <wp:comment_user_id>0</wp:comment_user_id>
7828
+ </wp:comment>
7829
+ <wp:comment>
7830
+ <wp:comment_id>77</wp:comment_id>
7831
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
7832
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
7833
+ <wp:comment_author_url></wp:comment_author_url>
7834
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
7835
+ <wp:comment_date><![CDATA[2016-07-03 07:33:28]]></wp:comment_date>
7836
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:33:28]]></wp:comment_date_gmt>
7837
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
7838
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
7839
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
7840
+ <wp:comment_parent>0</wp:comment_parent>
7841
+ <wp:comment_user_id>0</wp:comment_user_id>
7842
+ </wp:comment>
7843
+ </item>
7844
+ <item>
7845
+ <title>Montain and Winter Cold Weather</title>
7846
+ <link>http://averta.net/phlox/wordpress-theme/demo/classic-blog/2016/06/25/moutain-and-winter-cold-weather/</link>
7847
+ <pubDate>Sat, 25 Jun 2016 10:35:01 +0000</pubDate>
7848
+ <dc:creator><![CDATA[admin]]></dc:creator>
7849
+ <guid isPermaLink="false">http://demo.averta.net/themes/phlox/demo1/?p=104</guid>
7850
+ <description></description>
7851
+ <content:encoded><![CDATA[[aux_dropcap style="classic"]M[/aux_dropcap]any of new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
7852
+
7853
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental.
7854
+
7855
+ Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary.
7856
+
7857
+ A small river named Duden flows by their place and supplies it with the necessary regelialia.To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their
7858
+
7859
+ To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words. If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.
7860
+
7861
+ The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is. The European languages are members of the same family.
7862
+
7863
+ [aux_quote type="pullquote-normal" text_align="left" quote_symbol="1" float=""]To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental European languages are grammar of the resulting language is more simple and regular than that of the individual languages.[/aux_quote]
7864
+
7865
+ Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators. To achieve this, it would be necessary to have uniform grammar, pronunciation and more common words.
7866
+
7867
+ If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages.The new common language will be more simple and regular than the existing European languages. It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is.The European languages are members of the same family. Their separate existence is a myth. For science, music, sport, etc, Europe uses the same vocabulary. The languages only differ in their grammar, their pronunciation and their most common words. Everyone realizes why a new common language would be desirable: one could refuse to pay expensive translators.
7868
+
7869
+ The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
7870
+
7871
+ It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.]]></content:encoded>
7872
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
7873
+ <wp:post_id>104</wp:post_id>
7874
+ <wp:post_date><![CDATA[2016-06-25 10:35:01]]></wp:post_date>
7875
+ <wp:post_date_gmt><![CDATA[2016-06-25 10:35:01]]></wp:post_date_gmt>
7876
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
7877
+ <wp:ping_status><![CDATA[open]]></wp:ping_status>
7878
+ <wp:post_name><![CDATA[moutain-and-winter-cold-weather]]></wp:post_name>
7879
+ <wp:status><![CDATA[publish]]></wp:status>
7880
+ <wp:post_parent>0</wp:post_parent>
7881
+ <wp:menu_order>0</wp:menu_order>
7882
+ <wp:post_type><![CDATA[post]]></wp:post_type>
7883
+ <wp:post_password><![CDATA[]]></wp:post_password>
7884
+ <wp:is_sticky>0</wp:is_sticky>
7885
+ <category domain="post_tag" nicename="mountain"><![CDATA[Mountain]]></category>
7886
+ <category domain="post_tag" nicename="outdoor"><![CDATA[Outdoor]]></category>
7887
+ <category domain="post_tag" nicename="tour"><![CDATA[Tour]]></category>
7888
+ <category domain="category" nicename="travel"><![CDATA[Travel]]></category>
7889
+ <wp:postmeta>
7890
+ <wp:meta_key><![CDATA[aux_custom_bg_show]]></wp:meta_key>
7891
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7892
+ </wp:postmeta>
7893
+ <wp:postmeta>
7894
+ <wp:meta_key><![CDATA[aux_custom_bg_repeat]]></wp:meta_key>
7895
+ <wp:meta_value><![CDATA[repeat]]></wp:meta_value>
7896
+ </wp:postmeta>
7897
+ <wp:postmeta>
7898
+ <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
7899
+ <wp:meta_value><![CDATA[94]]></wp:meta_value>
7900
+ </wp:postmeta>
7901
+ <wp:postmeta>
7902
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
7903
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7904
+ </wp:postmeta>
7905
+ <wp:postmeta>
7906
+ <wp:meta_key><![CDATA[_format_link_url]]></wp:meta_key>
7907
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7908
+ </wp:postmeta>
7909
+ <wp:postmeta>
7910
+ <wp:meta_key><![CDATA[_format_quote_source_url]]></wp:meta_key>
7911
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7912
+ </wp:postmeta>
7913
+ <wp:postmeta>
7914
+ <wp:meta_key><![CDATA[_format_quote_source_name]]></wp:meta_key>
7915
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7916
+ </wp:postmeta>
7917
+ <wp:postmeta>
7918
+ <wp:meta_key><![CDATA[_format_audio_embed]]></wp:meta_key>
7919
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7920
+ </wp:postmeta>
7921
+ <wp:postmeta>
7922
+ <wp:meta_key><![CDATA[_format_video_embed]]></wp:meta_key>
7923
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
7924
+ </wp:postmeta>
7925
+ <wp:postmeta>
7926
+ <wp:meta_key><![CDATA[page_layout]]></wp:meta_key>
7927
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
7928
+ </wp:postmeta>
7929
+ <wp:postmeta>
7930
+ <wp:meta_key><![CDATA[page_sidebar_style]]></wp:meta_key>
7931
+ <wp:meta_value><![CDATA[simple]]></wp:meta_value>
7932
+ </wp:postmeta>
7933
+ <wp:postmeta>
7934
+ <wp:meta_key><![CDATA[show_content_top_margin]]></wp:meta_key>
7935
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7936
+ </wp:postmeta>
7937
+ <wp:postmeta>
7938
+ <wp:meta_key><![CDATA[_format_audio_player_skin]]></wp:meta_key>
7939
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
7940
+ </wp:postmeta>
7941
+ <wp:postmeta>
7942
+ <wp:meta_key><![CDATA[aux_title_bar_show]]></wp:meta_key>
7943
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7944
+ </wp:postmeta>
7945
+ <wp:postmeta>
7946
+ <wp:meta_key><![CDATA[aux_title_bar_preset]]></wp:meta_key>
7947
+ <wp:meta_value><![CDATA[normal_title_1]]></wp:meta_value>
7948
+ </wp:postmeta>
7949
+ <wp:postmeta>
7950
+ <wp:meta_key><![CDATA[aux_title_bar_enable_customize]]></wp:meta_key>
7951
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7952
+ </wp:postmeta>
7953
+ <wp:postmeta>
7954
+ <wp:meta_key><![CDATA[aux_title_bar_content_width_type]]></wp:meta_key>
7955
+ <wp:meta_value><![CDATA[boxed]]></wp:meta_value>
7956
+ </wp:postmeta>
7957
+ <wp:postmeta>
7958
+ <wp:meta_key><![CDATA[aux_title_bar_heading_bordered]]></wp:meta_key>
7959
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7960
+ </wp:postmeta>
7961
+ <wp:postmeta>
7962
+ <wp:meta_key><![CDATA[aux_title_bar_heading_boxed]]></wp:meta_key>
7963
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7964
+ </wp:postmeta>
7965
+ <wp:postmeta>
7966
+ <wp:meta_key><![CDATA[aux_title_bar_meta_enabled]]></wp:meta_key>
7967
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7968
+ </wp:postmeta>
7969
+ <wp:postmeta>
7970
+ <wp:meta_key><![CDATA[aux_title_bar_bread_enabled]]></wp:meta_key>
7971
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
7972
+ </wp:postmeta>
7973
+ <wp:postmeta>
7974
+ <wp:meta_key><![CDATA[aux_title_bar_bread_bordered]]></wp:meta_key>
7975
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7976
+ </wp:postmeta>
7977
+ <wp:postmeta>
7978
+ <wp:meta_key><![CDATA[aux_title_bar_bread_sep_style]]></wp:meta_key>
7979
+ <wp:meta_value><![CDATA[slash]]></wp:meta_value>
7980
+ </wp:postmeta>
7981
+ <wp:postmeta>
7982
+ <wp:meta_key><![CDATA[aux_title_bar_text_align]]></wp:meta_key>
7983
+ <wp:meta_value><![CDATA[left]]></wp:meta_value>
7984
+ </wp:postmeta>
7985
+ <wp:postmeta>
7986
+ <wp:meta_key><![CDATA[aux_title_bar_overlay_pattern]]></wp:meta_key>
7987
+ <wp:meta_value><![CDATA[none]]></wp:meta_value>
7988
+ </wp:postmeta>
7989
+ <wp:postmeta>
7990
+ <wp:meta_key><![CDATA[aux_title_bar_color_style]]></wp:meta_key>
7991
+ <wp:meta_value><![CDATA[dark]]></wp:meta_value>
7992
+ </wp:postmeta>
7993
+ <wp:postmeta>
7994
+ <wp:meta_key><![CDATA[aux_title_bar_bg_show]]></wp:meta_key>
7995
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
7996
+ </wp:postmeta>
7997
+ <wp:postmeta>
7998
+ <wp:meta_key><![CDATA[aux_title_bar_bg_parallax]]></wp:meta_key>
7999
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
8000
+ </wp:postmeta>
8001
+ <wp:postmeta>
8002
+ <wp:meta_key><![CDATA[aux_title_bar_bg_size]]></wp:meta_key>
8003
+ <wp:meta_value><![CDATA[cover]]></wp:meta_value>
8004
+ </wp:postmeta>
8005
+ <wp:postmeta>
8006
+ <wp:meta_key><![CDATA[_format_video_player_skin]]></wp:meta_key>
8007
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
8008
+ </wp:postmeta>
8009
+ <wp:postmeta>
8010
+ <wp:meta_key><![CDATA[page_content_title_alignment]]></wp:meta_key>
8011
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
8012
+ </wp:postmeta>
8013
+ <wp:postmeta>
8014
+ <wp:meta_key><![CDATA[aux_custom_bg_attach]]></wp:meta_key>
8015
+ <wp:meta_value><![CDATA[scroll]]></wp:meta_value>
8016
+ </wp:postmeta>
8017
+ <wp:postmeta>
8018
+ <wp:meta_key><![CDATA[aux_custom_bg_position]]></wp:meta_key>
8019
+ <wp:meta_value><![CDATA[left top]]></wp:meta_value>
8020
+ </wp:postmeta>
8021
+ <wp:postmeta>
8022
+ <wp:meta_key><![CDATA[aux_custom_bg_size]]></wp:meta_key>
8023
+ <wp:meta_value><![CDATA[auto]]></wp:meta_value>
8024
+ </wp:postmeta>
8025
+ <wp:comment>
8026
+ <wp:comment_id>78</wp:comment_id>
8027
+ <wp:comment_author><![CDATA[Maria Griffin]]></wp:comment_author>
8028
+ <wp:comment_author_email><![CDATA[samsoindia2@hotmail.com]]></wp:comment_author_email>
8029
+ <wp:comment_author_url></wp:comment_author_url>
8030
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
8031
+ <wp:comment_date><![CDATA[2016-07-03 07:18:30]]></wp:comment_date>
8032
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:18:30]]></wp:comment_date_gmt>
8033
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
8034
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
8035
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
8036
+ <wp:comment_parent>0</wp:comment_parent>
8037
+ <wp:comment_user_id>0</wp:comment_user_id>
8038
+ </wp:comment>
8039
+ <wp:comment>
8040
+ <wp:comment_id>79</wp:comment_id>
8041
+ <wp:comment_author><![CDATA[Robert Chambers]]></wp:comment_author>
8042
+ <wp:comment_author_email><![CDATA[zojhokhbak@outlook.com]]></wp:comment_author_email>
8043
+ <wp:comment_author_url></wp:comment_author_url>
8044
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
8045
+ <wp:comment_date><![CDATA[2016-07-03 07:19:00]]></wp:comment_date>
8046
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:19:00]]></wp:comment_date_gmt>
8047
+ <wp:comment_content><![CDATA[Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental in fact, it va esser Occidental.]]></wp:comment_content>
8048
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
8049
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
8050
+ <wp:comment_parent>78</wp:comment_parent>
8051
+ <wp:comment_user_id>0</wp:comment_user_id>
8052
+ </wp:comment>
8053
+ <wp:comment>
8054
+ <wp:comment_id>80</wp:comment_id>
8055
+ <wp:comment_author><![CDATA[Leona Thompson]]></wp:comment_author>
8056
+ <wp:comment_author_email><![CDATA[jainygreeny@gmail.com]]></wp:comment_author_email>
8057
+ <wp:comment_author_url>http://demo.averta.net/themes/phlox</wp:comment_author_url>
8058
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
8059
+ <wp:comment_date><![CDATA[2016-07-03 07:19:48]]></wp:comment_date>
8060
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:19:48]]></wp:comment_date_gmt>
8061
+ <wp:comment_content><![CDATA[Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues.]]></wp:comment_content>
8062
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
8063
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
8064
+ <wp:comment_parent>0</wp:comment_parent>
8065
+ <wp:comment_user_id>0</wp:comment_user_id>
8066
+ </wp:comment>
8067
+ <wp:comment>
8068
+ <wp:comment_id>81</wp:comment_id>
8069
+ <wp:comment_author><![CDATA[Phillip Fredricks]]></wp:comment_author>
8070
+ <wp:comment_author_email><![CDATA[oscartiger_324@hotmail.com]]></wp:comment_author_email>
8071
+ <wp:comment_author_url></wp:comment_author_url>
8072
+ <wp:comment_author_IP><![CDATA[5.63.149.100]]></wp:comment_author_IP>
8073
+ <wp:comment_date><![CDATA[2016-07-03 07:21:31]]></wp:comment_date>
8074
+ <wp:comment_date_gmt><![CDATA[2016-07-03 07:21:31]]></wp:comment_date_gmt>
8075
+ <wp:comment_content><![CDATA[A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.]]></wp:comment_content>
8076
+ <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
8077
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
8078
+ <wp:comment_parent>0</wp:comment_parent>
8079
+ <wp:comment_user_id>0</wp:comment_user_id>
8080
+ </wp:comment>
8081
+ </item>
8082
+ </channel>
8083
+ </rss>
embeds/demos/default/banner.jpg ADDED
Binary file
embeds/demos/default/data.xml ADDED
@@ -0,0 +1,43554 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
3
+ <!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
4
+ <!-- You may use this file to transfer that content from one site to another. -->
5
+ <!-- This file is not intended to serve as a complete backup of your site. -->
6
+
7
+ <!-- To import this information into a WordPress site follow these steps: -->
8
+ <!-- 1. Log in to that site as an administrator. -->
9
+ <!-- 2. Go to Tools: Import in the WordPress admin panel. -->
10
+ <!-- 3. Install the "WordPress" importer from the list. -->
11
+ <!-- 4. Activate & Run Importer. -->
12
+ <!-- 5. Upload this file using the form provided on that page. -->
13
+ <!-- 6. You will first be asked to map the authors in this export file to users -->
14
+ <!-- on the site. For each author, you may choose to map to an -->
15
+ <!-- existing user on the site or to create a new user. -->
16
+ <!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
17
+ <!-- contained in this file into your site. -->
18
+
19
+ <!-- generator="WordPress/4.8" created="2017-07-10 09:11" -->
20
+ <rss version="2.0"
21
+ xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
22
+ xmlns:content="http://purl.org/rss/1.0/modules/content/"
23
+ xmlns:wfw="http://wellformedweb.org/CommentAPI/"
24
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
25
+ xmlns:wp="http://wordpress.org/export/1.2/"
26
+ >
27
+
28
+ <channel>
29
+ <title>Phlox - All in One</title>
30
+ <link>http://averta.net/phlox/wordpress-theme/demo/default</link>
31
+ <description>Complete Demo Site for Phlox Theme</description>
32
+ <pubDate>Mon, 10 Jul 2017 09:11:57 +0000</pubDate>
33
+ <language>en-US</language>
34
+ <wp:wxr_version>1.2</wp:wxr_version>
35
+ <wp:base_site_url>http://averta.net/phlox/wordpress-theme/demo/</wp:base_site_url>
36
+ <wp:base_blog_url>http://averta.net/phlox/wordpress-theme/demo/default</wp:base_blog_url>
37
+
38
+ <wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[info@averta.net]]></wp:author_email><wp:author_display_name><![CDATA[Lura Blaim]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
39
+ <wp:author><wp:author_id>4</wp:author_id><wp:author_login><![CDATA[kasra]]></wp:author_login><wp:author_email><![CDATA[kasra.najafi.91@gmail.com]]></wp:author_email><wp:author_display_name><![CDATA[kasra]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
40
+
41
+ <wp:category>
42
+ <wp:term_id>3</wp:term_id>
43
+ <wp:category_nicename><![CDATA[art]]></wp:category_nicename>
44
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
45
+ <wp:cat_name><![CDATA[Art]]></wp:cat_name>
46
+ </wp:category>
47
+ <wp:category>
48
+ <wp:term_id>4</wp:term_id>
49
+ <wp:category_nicename><![CDATA[culture]]></wp:category_nicename>
50
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
51
+ <wp:cat_name><![CDATA[Culture]]></wp:cat_name>
52
+ </wp:category>
53
+ <wp:category>
54
+ <wp:term_id>5</wp:term_id>
55
+ <wp:category_nicename><![CDATA[life-style]]></wp:category_nicename>
56
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
57
+ <wp:cat_name><![CDATA[Life style]]></wp:cat_name>
58
+ </wp:category>
59
+ <wp:category>
60
+ <wp:term_id>6</wp:term_id>
61
+ <wp:category_nicename><![CDATA[music]]></wp:category_nicename>
62
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
63
+ <wp:cat_name><![CDATA[Music]]></wp:cat_name>
64
+ </wp:category>
65
+ <wp:category>
66
+ <wp:term_id>7</wp:term_id>
67
+ <wp:category_nicename><![CDATA[people]]></wp:category_nicename>
68
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
69
+ <wp:cat_name><![CDATA[People]]></wp:cat_name>
70
+ </wp:category>
71
+ <wp:category>
72
+ <wp:term_id>8</wp:term_id>
73
+ <wp:category_nicename><![CDATA[post-formats]]></wp:category_nicename>
74
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
75
+ <wp:cat_name><![CDATA[Post Formats]]></wp:cat_name>
76
+ </wp:category>
77
+ <wp:category>
78
+ <wp:term_id>9</wp:term_id>
79
+ <wp:category_nicename><![CDATA[social]]></wp:category_nicename>
80
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
81
+ <wp:cat_name><![CDATA[Social]]></wp:cat_name>
82
+ </wp:category>
83
+ <wp:category>
84
+ <wp:term_id>10</wp:term_id>
85
+ <wp:category_nicename><![CDATA[travel]]></wp:category_nicename>
86
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
87
+ <wp:cat_name><![CDATA[Travel]]></wp:cat_name>
88
+ </wp:category>
89
+ <wp:category>
90
+ <wp:term_id>1</wp:term_id>
91
+ <wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
92
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
93
+ <wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
94
+ </wp:category>
95
+ <wp:category>
96
+ <wp:term_id>47</wp:term_id>
97
+ <wp:category_nicename><![CDATA[video]]></wp:category_nicename>
98
+ <wp:category_parent><![CDATA[]]></wp:category_parent>
99
+ <wp:cat_name><![CDATA[Video]]></wp:cat_name>
100
+ </wp:category>
101
+ <wp:tag>
102
+ <wp:term_id>11</wp:term_id>
103
+ <wp:tag_slug><![CDATA[anniversary]]></wp:tag_slug>
104
+ <wp:tag_name><![CDATA[Anniversary]]></wp:tag_name>
105
+ </wp:tag>
106
+ <wp:tag>
107
+ <wp:term_id>12</wp:term_id>
108
+ <wp:tag_slug><![CDATA[architecture]]></wp:tag_slug>
109
+ <wp:tag_name><![CDATA[Architecture]]></wp:tag_name>
110
+ </wp:tag>
111
+ <wp:tag>
112
+ <wp:term_id>13</wp:term_id>
113
+ <wp:tag_slug><![CDATA[article]]></wp:tag_slug>
114
+ <wp:tag_name><![CDATA[Article]]></wp:tag_name>
115
+ </wp:tag>
116
+ <wp:tag>
117
+ <wp:term_id>14</wp:term_id>
118
+ <wp:tag_slug><![CDATA[blogging]]></wp:tag_slug>
119
+ <wp:tag_name><![CDATA[Blogging]]></wp:tag_name>
120
+ </wp:tag>
121
+ <wp:tag>
122
+ <wp:term_id>15</wp:term_id>
123
+ <wp:tag_slug><![CDATA[challenge]]></wp:tag_slug>
124
+ <wp:tag_name><![CDATA[Challenge]]></wp:tag_name>
125
+ </wp:tag>
126
+ <wp:tag>
127
+ <wp:term_id>16</wp:term_id>
128
+ <wp:tag_slug><![CDATA[city]]></wp:tag_slug>
129
+ <wp:tag_name><![CDATA[City]]></wp:tag_name>
130
+ </wp:tag>
131
+ <wp:tag>
132
+ <wp:term_id>17</wp:term_id>
133
+ <wp:tag_slug><![CDATA[communication]]></wp:tag_slug>
134
+ <wp:tag_name><![CDATA[Communication]]></wp:tag_name>
135
+ </wp:tag>
136
+ <wp:tag>
137
+ <wp:term_id>18</wp:term_id>
138
+ <wp:tag_slug><![CDATA[creativity]]></wp:tag_slug>
139
+ <wp:tag_name><![CDATA[Creativity]]></wp:tag_name>
140
+ </wp:tag>
141
+ <wp:tag>
142
+ <wp:term_id>19</wp:term_id>
143
+ <wp:tag_slug><![CDATA[fashion]]></wp:tag_slug>
144
+ <wp:tag_name><![CDATA[Fashion]]></wp:tag_name>
145
+ </wp:tag>
146
+ <wp:tag>
147
+ <wp:term_id>20</wp:term_id>
148
+ <wp:tag_slug><![CDATA[grand-bridge]]></wp:tag_slug>
149
+ <wp:tag_name><![CDATA[Grand Bridge]]></wp:tag_name>
150
+ </wp:tag>
151
+ <wp:tag>
152
+ <wp:term_id>21</wp:term_id>
153
+ <wp:tag_slug><![CDATA[happiness]]></wp:tag_slug>
154
+ <wp:tag_name><![CDATA[Happiness]]></wp:tag_name>
155
+ </wp:tag>
156
+ <wp:tag>
157
+ <wp:term_id>22</wp:term_id>
158
+ <wp:tag_slug><![CDATA[home-plants]]></wp:tag_slug>
159
+ <wp:tag_name><![CDATA[Home Plants]]></wp:tag_name>
160
+ </wp:tag>
161
+ <wp:tag>
162
+ <wp:term_id>23</wp:term_id>
163
+ <wp:tag_slug><![CDATA[journalism]]></wp:tag_slug>
164
+ <wp:tag_name><![CDATA[Journalism]]></wp:tag_name>
165
+ </wp:tag>
166
+ <wp:tag>
167
+ <wp:term_id>24</wp:term_id>
168
+ <wp:tag_slug><![CDATA[marketing]]></wp:tag_slug>
169
+ <wp:tag_name><![CDATA[Marketing]]></wp:tag_name>
170
+ </wp:tag>
171
+ <wp:tag>
172
+ <wp:term_id>25</wp:term_id>
173
+ <wp:tag_slug><![CDATA[media]]></wp:tag_slug>
174
+ <wp:tag_name><![CDATA[Media]]></wp:tag_name>
175
+ </wp:tag>
176
+ <wp:tag>
177
+ <wp:term_id>26</wp:term_id>
178
+ <wp:tag_slug><![CDATA[modern-music]]></wp:tag_slug>
179
+ <wp:tag_name><![CDATA[Modern Music]]></wp:tag_name>
180
+ </wp:tag>
181
+ <wp:tag>
182
+ <wp:term_id>27</wp:term_id>
183
+ <wp:tag_slug><![CDATA[modern-technology]]></wp:tag_slug>
184
+ <wp:tag_name><![CDATA[Modern Technology]]></wp:tag_name>
185
+ </wp:tag>
186
+ <wp:tag>
187
+ <wp:term_id>28</wp:term_id>
188
+ <wp:tag_slug><![CDATA[motion-graphics]]></wp:tag_slug>
189
+ <wp:tag_name><![CDATA[Motion Graphics]]></wp:tag_name>
190
+ </wp:tag>
191
+ <wp:tag>
192
+ <wp:term_id>29</wp:term_id>
193
+ <wp:tag_slug><![CDATA[mountain]]></wp:tag_slug>
194
+ <wp:tag_name><![CDATA[Mountain]]></wp:tag_name>
195
+ </wp:tag>
196
+ <wp:tag>
197
+ <wp:term_id>30</wp:term_id>
198
+ <wp:tag_slug><![CDATA[nature]]></wp:tag_slug>
199
+ <wp:tag_name><![CDATA[Nature]]></wp:tag_name>
200
+ </wp:tag>
201
+ <wp:tag>
202
+ <wp:term_id>31</wp:term_id>
203
+ <wp:tag_slug><![CDATA[new-year]]></wp:tag_slug>
204
+ <wp:tag_name><![CDATA[New Year]]></wp:tag_name>
205
+ </wp:tag>
206
+ <wp:tag>
207
+ <wp:term_id>32</wp:term_id>
208
+ <wp:tag_slug><![CDATA[outdoor]]></wp:tag_slug>
209
+ <wp:tag_name><![CDATA[Outdoor]]></wp:tag_name>
210
+ </wp:tag>
211
+ <wp:tag>
212
+ <wp:term_id>33</wp:term_id>
213
+ <wp:tag_slug><![CDATA[people]]></wp:tag_slug>
214
+ <wp:tag_name><![CDATA[People]]></wp:tag_name>
215
+ </wp:tag>
216
+ <wp:tag>
217
+ <wp:term_id>34</wp:term_id>
218
+ <wp:tag_slug><![CDATA[photography]]></wp:tag_slug>
219
+ <wp:tag_name><![CDATA[Photography]]></wp:tag_name>
220
+ </wp:tag>
221
+ <wp:tag>
222
+ <wp:term_id>35</wp:term_id>
223
+ <wp:tag_slug><![CDATA[productivity]]></wp:tag_slug>
224
+ <wp:tag_name><![CDATA[Productivity]]></wp:tag_name>
225
+ </wp:tag>
226
+ <wp:tag>
227
+ <wp:term_id>36</wp:term_id>
228
+ <wp:tag_slug><![CDATA[sea]]></wp:tag_slug>
229
+ <wp:tag_name><![CDATA[Sea]]></wp:tag_name>
230
+ </wp:tag>
231
+ <wp:tag>
232
+ <wp:term_id>37</wp:term_id>
233
+ <wp:tag_slug><![CDATA[tips-and-tricks]]></wp:tag_slug>
234
+ <wp:tag_name><![CDATA[Tips and Tricks]]></wp:tag_name>
235
+ </wp:tag>
236
+ <wp:tag>
237
+ <wp:term_id>38</wp:term_id>
238
+ <wp:tag_slug><![CDATA[tour]]></wp:tag_slug>
239
+ <wp:tag_name><![CDATA[Tour]]></wp:tag_name>
240
+ </wp:tag>
241
+ <wp:term>
242
+ <wp:term_id><![CDATA[49]]></wp:term_id>
243
+ <wp:term_taxonomy><![CDATA[portfolio-cat]]></wp:term_taxonomy>
244
+ <wp:term_slug><![CDATA[illustration]]></wp:term_slug>
245
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
246
+ <wp:term_name><![CDATA[Illustration]]></wp:term_name>
247
+ </wp:term>
248
+ <wp:term>
249
+ <wp:term_id><![CDATA[50]]></wp:term_id>
250
+ <wp:term_taxonomy><![CDATA[portfolio-cat]]></wp:term_taxonomy>
251
+ <wp:term_slug><![CDATA[photography]]></wp:term_slug>
252
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
253
+ <wp:term_name><![CDATA[Photography]]></wp:term_name>
254
+ </wp:term>
255
+ <wp:term>
256
+ <wp:term_id><![CDATA[51]]></wp:term_id>
257
+ <wp:term_taxonomy><![CDATA[portfolio-cat]]></wp:term_taxonomy>
258
+ <wp:term_slug><![CDATA[print]]></wp:term_slug>
259
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
260
+ <wp:term_name><![CDATA[Print]]></wp:term_name>
261
+ </wp:term>
262
+ <wp:term>
263
+ <wp:term_id><![CDATA[48]]></wp:term_id>
264
+ <wp:term_taxonomy><![CDATA[portfolio-cat]]></wp:term_taxonomy>
265
+ <wp:term_slug><![CDATA[web]]></wp:term_slug>
266
+ <wp:term_parent><![CDATA[]]></wp:term_parent>
267
+ <wp:term_name><![CDATA[Web]]></wp:term_name>
268
+ </wp:term>
269
+ <wp:term><wp:term_id>2</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[header]]></wp:term_slug><wp:term_name><![CDATA[header]]></wp:term_name>
270
+ </wp:term>
271
+ <wp:term><wp:term_id>42</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[header-menu]]></wp:term_slug><wp:term_name><![CDATA[Header Menu]]></wp:term_name>
272
+ </wp:term>
273
+
274
+ <generator>https://wordpress.org/?v=4.8</generator>
275
+
276
+ <image>
277
+ <url>http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/cropped-icon-32x32.png</url>
278
+ <title>Phlox &#8211; All in One</title>
279
+ <link>http://averta.net/phlox/wordpress-theme/demo/default</link>
280
+ <width>32</width>
281
+ <height>32</height>
282
+ </image>
283
+
284
+ <item>
285
+ <title>2016_#x27;s Best Selling Stock Music _ Sound Clips _ AudioJungle</title>
286
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016_x27s-best-selling-stock-music-_-sound-clips-_-audiojungle/</link>
287
+ <pubDate>Tue, 05 Jul 2016 05:02:18 +0000</pubDate>
288
+ <dc:creator><![CDATA[admin]]></dc:creator>
289
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/07/2016_x27s-Best-Selling-Stock-Music-_-Sound-Clips-_-AudioJungle.mp3</guid>
290
+ <description></description>
291
+ <content:encoded><![CDATA["2016_#x27;s Best Selling Stock Music _ Sound Clips _ AudioJungle".]]></content:encoded>
292
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
293
+ <wp:post_id>210</wp:post_id>
294
+ <wp:post_date><![CDATA[2016-07-05 05:02:18]]></wp:post_date>
295
+ <wp:post_date_gmt><![CDATA[2016-07-05 05:02:18]]></wp:post_date_gmt>
296
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
297
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
298
+ <wp:post_name><![CDATA[2016_x27s-best-selling-stock-music-_-sound-clips-_-audiojungle]]></wp:post_name>
299
+ <wp:status><![CDATA[inherit]]></wp:status>
300
+ <wp:post_parent>0</wp:post_parent>
301
+ <wp:menu_order>0</wp:menu_order>
302
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
303
+ <wp:post_password><![CDATA[]]></wp:post_password>
304
+ <wp:is_sticky>0</wp:is_sticky>
305
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/07/2016_x27s-Best-Selling-Stock-Music-_-Sound-Clips-_-AudioJungle.mp3]]></wp:attachment_url>
306
+ <wp:postmeta>
307
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
308
+ <wp:meta_value><![CDATA[2016/07/2016_x27s-Best-Selling-Stock-Music-_-Sound-Clips-_-AudioJungle.mp3]]></wp:meta_value>
309
+ </wp:postmeta>
310
+ <wp:postmeta>
311
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
312
+ <wp:meta_value><![CDATA[a:16:{s:10:"dataformat";s:3:"mp3";s:8:"channels";i:2;s:11:"sample_rate";i:44100;s:7:"bitrate";i:320000;s:11:"channelmode";s:12:"joint stereo";s:12:"bitrate_mode";s:3:"cbr";s:8:"lossless";b:0;s:15:"encoder_options";s:6:"CBR320";s:17:"compression_ratio";d:0.226757369614512482858259545537293888628482818603515625;s:10:"fileformat";s:3:"mp3";s:8:"filesize";i:11651657;s:9:"mime_type";s:10:"audio/mpeg";s:6:"length";i:291;s:16:"length_formatted";s:4:"4:51";s:6:"artist";s:0:"";s:5:"album";s:0:"";}]]></wp:meta_value>
313
+ </wp:postmeta>
314
+ </item>
315
+ <item>
316
+ <title>logo-averta</title>
317
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/logo-averta/</link>
318
+ <pubDate>Sun, 11 Sep 2016 06:06:49 +0000</pubDate>
319
+ <dc:creator><![CDATA[admin]]></dc:creator>
320
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/Logo-averta.png</guid>
321
+ <description></description>
322
+ <content:encoded><![CDATA[]]></content:encoded>
323
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
324
+ <wp:post_id>272</wp:post_id>
325
+ <wp:post_date><![CDATA[2016-09-11 06:06:49]]></wp:post_date>
326
+ <wp:post_date_gmt><![CDATA[2016-09-11 06:06:49]]></wp:post_date_gmt>
327
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
328
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
329
+ <wp:post_name><![CDATA[logo-averta]]></wp:post_name>
330
+ <wp:status><![CDATA[inherit]]></wp:status>
331
+ <wp:post_parent>0</wp:post_parent>
332
+ <wp:menu_order>0</wp:menu_order>
333
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
334
+ <wp:post_password><![CDATA[]]></wp:post_password>
335
+ <wp:is_sticky>0</wp:is_sticky>
336
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/Logo-averta.png]]></wp:attachment_url>
337
+ <wp:postmeta>
338
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
339
+ <wp:meta_value><![CDATA[2016/09/Logo-averta.png]]></wp:meta_value>
340
+ </wp:postmeta>
341
+ <wp:postmeta>
342
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
343
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1136;s:6:"height";i:212;s:4:"file";s:23:"2016/09/Logo-averta.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Logo-averta-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:22:"Logo-averta-300x56.png";s:5:"width";i:300;s:6:"height";i:56;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:23:"Logo-averta-768x143.png";s:5:"width";i:768;s:6:"height";i:143;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:24:"Logo-averta-1024x191.png";s:5:"width";i:1024;s:6:"height";i:191;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"Logo-averta-280x180.png";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:23:"Logo-averta-272x182.png";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:9:"image/png";}}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>
344
+ </wp:postmeta>
345
+ </item>
346
+ <item>
347
+ <title>ad</title>
348
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/home/ad/</link>
349
+ <pubDate>Thu, 15 Sep 2016 06:18:32 +0000</pubDate>
350
+ <dc:creator><![CDATA[admin]]></dc:creator>
351
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/ad.jpg</guid>
352
+ <description></description>
353
+ <content:encoded><![CDATA[]]></content:encoded>
354
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
355
+ <wp:post_id>293</wp:post_id>
356
+ <wp:post_date><![CDATA[2016-09-15 06:18:32]]></wp:post_date>
357
+ <wp:post_date_gmt><![CDATA[2016-09-15 06:18:32]]></wp:post_date_gmt>
358
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
359
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
360
+ <wp:post_name><![CDATA[ad]]></wp:post_name>
361
+ <wp:status><![CDATA[inherit]]></wp:status>
362
+ <wp:post_parent>269</wp:post_parent>
363
+ <wp:menu_order>0</wp:menu_order>
364
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
365
+ <wp:post_password><![CDATA[]]></wp:post_password>
366
+ <wp:is_sticky>0</wp:is_sticky>
367
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/ad.jpg]]></wp:attachment_url>
368
+ <wp:postmeta>
369
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
370
+ <wp:meta_value><![CDATA[2016/09/ad.jpg]]></wp:meta_value>
371
+ </wp:postmeta>
372
+ <wp:postmeta>
373
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
374
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:239;s:6:"height";i:239;s:4:"file";s:14:"2016/09/ad.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"ad-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:14:"ad-239x180.jpg";s:5:"width";i:239;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:14:"ad-239x182.jpg";s:5:"width";i:239;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
375
+ </wp:postmeta>
376
+ </item>
377
+ <item>
378
+ <title>poster-frame</title>
379
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/02/18/video-post-format-self-hosted-video-player/poster-frame/</link>
380
+ <pubDate>Sat, 17 Sep 2016 07:35:40 +0000</pubDate>
381
+ <dc:creator><![CDATA[admin]]></dc:creator>
382
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/02/poster-frame.jpg</guid>
383
+ <description></description>
384
+ <content:encoded><![CDATA[]]></content:encoded>
385
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
386
+ <wp:post_id>296</wp:post_id>
387
+ <wp:post_date><![CDATA[2016-09-17 07:35:40]]></wp:post_date>
388
+ <wp:post_date_gmt><![CDATA[2016-09-17 07:35:40]]></wp:post_date_gmt>
389
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
390
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
391
+ <wp:post_name><![CDATA[poster-frame]]></wp:post_name>
392
+ <wp:status><![CDATA[inherit]]></wp:status>
393
+ <wp:post_parent>253</wp:post_parent>
394
+ <wp:menu_order>0</wp:menu_order>
395
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
396
+ <wp:post_password><![CDATA[]]></wp:post_password>
397
+ <wp:is_sticky>0</wp:is_sticky>
398
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/02/poster-frame.jpg]]></wp:attachment_url>
399
+ <wp:postmeta>
400
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
401
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:960;s:6:"height";i:529;s:4:"file";s:24:"2016/02/poster-frame.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"poster-frame-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"poster-frame-300x165.jpg";s:5:"width";i:300;s:6:"height";i:165;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"poster-frame-768x423.jpg";s:5:"width";i:768;s:6:"height";i:423;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"poster-frame-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"poster-frame-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
402
+ </wp:postmeta>
403
+ <wp:postmeta>
404
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
405
+ <wp:meta_value><![CDATA[2016/02/poster-frame.jpg]]></wp:meta_value>
406
+ </wp:postmeta>
407
+ </item>
408
+ <item>
409
+ <title>lands-of-wind</title>
410
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/lands-of-wind/</link>
411
+ <pubDate>Sat, 17 Sep 2016 07:57:41 +0000</pubDate>
412
+ <dc:creator><![CDATA[admin]]></dc:creator>
413
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/LANDS-OF-WIND.mp4</guid>
414
+ <description></description>
415
+ <content:encoded><![CDATA[]]></content:encoded>
416
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
417
+ <wp:post_id>297</wp:post_id>
418
+ <wp:post_date><![CDATA[2016-09-17 07:57:41]]></wp:post_date>
419
+ <wp:post_date_gmt><![CDATA[2016-09-17 07:57:41]]></wp:post_date_gmt>
420
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
421
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
422
+ <wp:post_name><![CDATA[lands-of-wind]]></wp:post_name>
423
+ <wp:status><![CDATA[inherit]]></wp:status>
424
+ <wp:post_parent>0</wp:post_parent>
425
+ <wp:menu_order>0</wp:menu_order>
426
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
427
+ <wp:post_password><![CDATA[]]></wp:post_password>
428
+ <wp:is_sticky>0</wp:is_sticky>
429
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/LANDS-OF-WIND.mp4]]></wp:attachment_url>
430
+ <wp:postmeta>
431
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
432
+ <wp:meta_value><![CDATA[2016/09/LANDS-OF-WIND.mp4]]></wp:meta_value>
433
+ </wp:postmeta>
434
+ <wp:postmeta>
435
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
436
+ <wp:meta_value><![CDATA[a:9:{s:8:"filesize";i:90884549;s:9:"mime_type";s:15:"video/quicktime";s:6:"length";i:276;s:16:"length_formatted";s:4:"4:36";s:5:"width";i:1280;s:6:"height";i:720;s:10:"fileformat";s:3:"mp4";s:10:"dataformat";s:9:"quicktime";s:5:"audio";a:7:{s:10:"dataformat";s:3:"mp4";s:5:"codec";s:19:"ISO/IEC 14496-3 AAC";s:11:"sample_rate";d:48000;s:8:"channels";i:2;s:15:"bits_per_sample";i:16;s:8:"lossless";b:0;s:11:"channelmode";s:6:"stereo";}}]]></wp:meta_value>
437
+ </wp:postmeta>
438
+ </item>
439
+ <item>
440
+ <title>lands-of-wind_360</title>
441
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/home/lands-of-wind_360/</link>
442
+ <pubDate>Sat, 17 Sep 2016 10:38:04 +0000</pubDate>
443
+ <dc:creator><![CDATA[admin]]></dc:creator>
444
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/LANDS-OF-WIND_360.mp4</guid>
445
+ <description></description>
446
+ <content:encoded><![CDATA[]]></content:encoded>
447
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
448
+ <wp:post_id>300</wp:post_id>
449
+ <wp:post_date><![CDATA[2016-09-17 10:38:04]]></wp:post_date>
450
+ <wp:post_date_gmt><![CDATA[2016-09-17 10:38:04]]></wp:post_date_gmt>
451
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
452
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
453
+ <wp:post_name><![CDATA[lands-of-wind_360]]></wp:post_name>
454
+ <wp:status><![CDATA[inherit]]></wp:status>
455
+ <wp:post_parent>269</wp:post_parent>
456
+ <wp:menu_order>0</wp:menu_order>
457
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
458
+ <wp:post_password><![CDATA[]]></wp:post_password>
459
+ <wp:is_sticky>0</wp:is_sticky>
460
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/LANDS-OF-WIND_360.mp4]]></wp:attachment_url>
461
+ <wp:postmeta>
462
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
463
+ <wp:meta_value><![CDATA[2016/09/LANDS-OF-WIND_360.mp4]]></wp:meta_value>
464
+ </wp:postmeta>
465
+ <wp:postmeta>
466
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
467
+ <wp:meta_value><![CDATA[a:9:{s:8:"filesize";i:28880059;s:9:"mime_type";s:15:"video/quicktime";s:6:"length";i:276;s:16:"length_formatted";s:4:"4:36";s:5:"width";i:640;s:6:"height";i:360;s:10:"fileformat";s:3:"mp4";s:10:"dataformat";s:9:"quicktime";s:5:"audio";a:7:{s:10:"dataformat";s:3:"mp4";s:5:"codec";s:19:"ISO/IEC 14496-3 AAC";s:11:"sample_rate";d:48000;s:8:"channels";i:2;s:15:"bits_per_sample";i:16;s:8:"lossless";b:0;s:11:"channelmode";s:6:"stereo";}}]]></wp:meta_value>
468
+ </wp:postmeta>
469
+ </item>
470
+ <item>
471
+ <title>poster-frame</title>
472
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/poster-frame-2/</link>
473
+ <pubDate>Sat, 17 Sep 2016 10:49:48 +0000</pubDate>
474
+ <dc:creator><![CDATA[admin]]></dc:creator>
475
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/poster-frame.jpg</guid>
476
+ <description></description>
477
+ <content:encoded><![CDATA[]]></content:encoded>
478
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
479
+ <wp:post_id>301</wp:post_id>
480
+ <wp:post_date><![CDATA[2016-09-17 10:49:48]]></wp:post_date>
481
+ <wp:post_date_gmt><![CDATA[2016-09-17 10:49:48]]></wp:post_date_gmt>
482
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
483
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
484
+ <wp:post_name><![CDATA[poster-frame-2]]></wp:post_name>
485
+ <wp:status><![CDATA[inherit]]></wp:status>
486
+ <wp:post_parent>0</wp:post_parent>
487
+ <wp:menu_order>0</wp:menu_order>
488
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
489
+ <wp:post_password><![CDATA[]]></wp:post_password>
490
+ <wp:is_sticky>0</wp:is_sticky>
491
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/poster-frame.jpg]]></wp:attachment_url>
492
+ <wp:postmeta>
493
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
494
+ <wp:meta_value><![CDATA[2016/09/poster-frame.jpg]]></wp:meta_value>
495
+ </wp:postmeta>
496
+ <wp:postmeta>
497
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
498
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:24:"2016/09/poster-frame.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"poster-frame-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"poster-frame-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"poster-frame-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"poster-frame-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"poster-frame-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"poster-frame-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
499
+ </wp:postmeta>
500
+ <wp:postmeta>
501
+ <wp:meta_key><![CDATA[wp-smpro-smush-data]]></wp:meta_key>
502
+ <wp:meta_value><![CDATA[a:2:{s:5:"stats";a:8:{s:7:"percent";d:5.7174039707455364123234176076948642730712890625;s:5:"bytes";i:13149;s:11:"size_before";i:229982;s:10:"size_after";i:216833;s:4:"time";d:0.369999999999999940047956670241546817123889923095703125;s:11:"api_version";s:3:"1.0";s:5:"lossy";b:0;s:9:"keep_exif";i:0;}s:5:"sizes";a:6:{s:9:"thumbnail";O:8:"stdClass":5:{s:7:"percent";d:7.3300000000000000710542735760100185871124267578125;s:5:"bytes";i:515;s:11:"size_before";i:7030;s:10:"size_after";i:6515;s:4:"time";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:"medium";O:8:"stdClass":5:{s:7:"percent";d:5.6500000000000003552713678800500929355621337890625;s:5:"bytes";i:720;s:11:"size_before";i:12735;s:10:"size_after";i:12015;s:4:"time";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:"medium_large";O:8:"stdClass":5:{s:7:"percent";d:5.87999999999999989341858963598497211933135986328125;s:5:"bytes";i:4082;s:11:"size_before";i:69448;s:10:"size_after";i:65366;s:4:"time";d:0.11999999999999999555910790149937383830547332763671875;}s:5:"large";O:8:"stdClass":5:{s:7:"percent";d:5.410000000000000142108547152020037174224853515625;s:5:"bytes";i:6195;s:11:"size_before";i:114483;s:10:"size_after";i:108288;s:4:"time";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:"post-thumbnail";O:8:"stdClass":5:{s:7:"percent";d:6.04000000000000003552713678800500929355621337890625;s:5:"bytes";i:801;s:11:"size_before";i:13270;s:10:"size_after";i:12469;s:4:"time";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:"sow-carousel-default";O:8:"stdClass":5:{s:7:"percent";d:6.4199999999999999289457264239899814128875732421875;s:5:"bytes";i:836;s:11:"size_before";i:13016;s:10:"size_after";i:12180;s:4:"time";d:0.05000000000000000277555756156289135105907917022705078125;}}}]]></wp:meta_value>
503
+ </wp:postmeta>
504
+ </item>
505
+ <item>
506
+ <title>titlebar</title>
507
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/moutain-and-winter-cold-weather/titlebar-2/</link>
508
+ <pubDate>Sun, 18 Sep 2016 10:21:13 +0000</pubDate>
509
+ <dc:creator><![CDATA[admin]]></dc:creator>
510
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/titlebar-1.jpg</guid>
511
+ <description></description>
512
+ <content:encoded><![CDATA[]]></content:encoded>
513
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
514
+ <wp:post_id>335</wp:post_id>
515
+ <wp:post_date><![CDATA[2016-09-18 10:21:13]]></wp:post_date>
516
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:21:13]]></wp:post_date_gmt>
517
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
518
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
519
+ <wp:post_name><![CDATA[titlebar-2]]></wp:post_name>
520
+ <wp:status><![CDATA[inherit]]></wp:status>
521
+ <wp:post_parent>265</wp:post_parent>
522
+ <wp:menu_order>0</wp:menu_order>
523
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
524
+ <wp:post_password><![CDATA[]]></wp:post_password>
525
+ <wp:is_sticky>0</wp:is_sticky>
526
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/titlebar-1.jpg]]></wp:attachment_url>
527
+ <wp:postmeta>
528
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
529
+ <wp:meta_value><![CDATA[2016/06/titlebar-1.jpg]]></wp:meta_value>
530
+ </wp:postmeta>
531
+ <wp:postmeta>
532
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
533
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1350;s:6:"height";i:434;s:4:"file";s:22:"2016/06/titlebar-1.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"titlebar-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"titlebar-1-300x96.jpg";s:5:"width";i:300;s:6:"height";i:96;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"titlebar-1-768x247.jpg";s:5:"width";i:768;s:6:"height";i:247;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"titlebar-1-1024x329.jpg";s:5:"width";i:1024;s:6:"height";i:329;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"titlebar-1-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:22:"titlebar-1-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
534
+ </wp:postmeta>
535
+ </item>
536
+ <item>
537
+ <title>photo-1452827073306-6e6e661baf57</title>
538
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/moutain-and-winter-cold-weather/photo-1452827073306-6e6e661baf57-3/</link>
539
+ <pubDate>Sun, 18 Sep 2016 10:24:00 +0000</pubDate>
540
+ <dc:creator><![CDATA[admin]]></dc:creator>
541
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1452827073306-6e6e661baf57-2.jpg</guid>
542
+ <description></description>
543
+ <content:encoded><![CDATA[]]></content:encoded>
544
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
545
+ <wp:post_id>337</wp:post_id>
546
+ <wp:post_date><![CDATA[2016-09-18 10:24:00]]></wp:post_date>
547
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:24:00]]></wp:post_date_gmt>
548
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
549
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
550
+ <wp:post_name><![CDATA[photo-1452827073306-6e6e661baf57-3]]></wp:post_name>
551
+ <wp:status><![CDATA[inherit]]></wp:status>
552
+ <wp:post_parent>265</wp:post_parent>
553
+ <wp:menu_order>0</wp:menu_order>
554
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
555
+ <wp:post_password><![CDATA[]]></wp:post_password>
556
+ <wp:is_sticky>0</wp:is_sticky>
557
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1452827073306-6e6e661baf57-2.jpg]]></wp:attachment_url>
558
+ <wp:postmeta>
559
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
560
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:900;s:4:"file";s:46:"2016/06/photo-1452827073306-6e6e661baf57-2.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:46:"photo-1452827073306-6e6e661baf57-2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:46:"photo-1452827073306-6e6e661baf57-2-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:46:"photo-1452827073306-6e6e661baf57-2-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:47:"photo-1452827073306-6e6e661baf57-2-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:46:"photo-1452827073306-6e6e661baf57-2-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:46:"photo-1452827073306-6e6e661baf57-2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
561
+ </wp:postmeta>
562
+ <wp:postmeta>
563
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
564
+ <wp:meta_value><![CDATA[2016/06/photo-1452827073306-6e6e661baf57-2.jpg]]></wp:meta_value>
565
+ </wp:postmeta>
566
+ </item>
567
+ <item>
568
+ <title>photo-1428189923803-e9801d464d76</title>
569
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/serious-problems-with-cables-in-city/photo-1428189923803-e9801d464d76/</link>
570
+ <pubDate>Sun, 18 Sep 2016 10:25:24 +0000</pubDate>
571
+ <dc:creator><![CDATA[admin]]></dc:creator>
572
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1428189923803-e9801d464d76.jpg</guid>
573
+ <description></description>
574
+ <content:encoded><![CDATA[]]></content:encoded>
575
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
576
+ <wp:post_id>338</wp:post_id>
577
+ <wp:post_date><![CDATA[2016-09-18 10:25:24]]></wp:post_date>
578
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:25:24]]></wp:post_date_gmt>
579
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
580
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
581
+ <wp:post_name><![CDATA[photo-1428189923803-e9801d464d76]]></wp:post_name>
582
+ <wp:status><![CDATA[inherit]]></wp:status>
583
+ <wp:post_parent>263</wp:post_parent>
584
+ <wp:menu_order>0</wp:menu_order>
585
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
586
+ <wp:post_password><![CDATA[]]></wp:post_password>
587
+ <wp:is_sticky>0</wp:is_sticky>
588
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1428189923803-e9801d464d76.jpg]]></wp:attachment_url>
589
+ <wp:postmeta>
590
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
591
+ <wp:meta_value><![CDATA[2016/06/photo-1428189923803-e9801d464d76.jpg]]></wp:meta_value>
592
+ </wp:postmeta>
593
+ <wp:postmeta>
594
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
595
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:690;s:4:"file";s:44:"2016/06/photo-1428189923803-e9801d464d76.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1428189923803-e9801d464d76-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1428189923803-e9801d464d76-300x173.jpg";s:5:"width";i:300;s:6:"height";i:173;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1428189923803-e9801d464d76-768x442.jpg";s:5:"width";i:768;s:6:"height";i:442;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1428189923803-e9801d464d76-1024x589.jpg";s:5:"width";i:1024;s:6:"height";i:589;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1428189923803-e9801d464d76-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1428189923803-e9801d464d76-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
596
+ </wp:postmeta>
597
+ </item>
598
+ <item>
599
+ <title>photo-1466979783824-134c24c7cd86</title>
600
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/serious-problems-with-cables-in-city/photo-1466979783824-134c24c7cd86/</link>
601
+ <pubDate>Sun, 18 Sep 2016 10:25:26 +0000</pubDate>
602
+ <dc:creator><![CDATA[admin]]></dc:creator>
603
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1466979783824-134c24c7cd86.jpg</guid>
604
+ <description></description>
605
+ <content:encoded><![CDATA[]]></content:encoded>
606
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
607
+ <wp:post_id>339</wp:post_id>
608
+ <wp:post_date><![CDATA[2016-09-18 10:25:26]]></wp:post_date>
609
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:25:26]]></wp:post_date_gmt>
610
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
611
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
612
+ <wp:post_name><![CDATA[photo-1466979783824-134c24c7cd86]]></wp:post_name>
613
+ <wp:status><![CDATA[inherit]]></wp:status>
614
+ <wp:post_parent>263</wp:post_parent>
615
+ <wp:menu_order>0</wp:menu_order>
616
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
617
+ <wp:post_password><![CDATA[]]></wp:post_password>
618
+ <wp:is_sticky>0</wp:is_sticky>
619
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1466979783824-134c24c7cd86.jpg]]></wp:attachment_url>
620
+ <wp:postmeta>
621
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
622
+ <wp:meta_value><![CDATA[2016/06/photo-1466979783824-134c24c7cd86.jpg]]></wp:meta_value>
623
+ </wp:postmeta>
624
+ <wp:postmeta>
625
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
626
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:797;s:4:"file";s:44:"2016/06/photo-1466979783824-134c24c7cd86.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1466979783824-134c24c7cd86-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1466979783824-134c24c7cd86-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1466979783824-134c24c7cd86-768x510.jpg";s:5:"width";i:768;s:6:"height";i:510;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1466979783824-134c24c7cd86-1024x680.jpg";s:5:"width";i:1024;s:6:"height";i:680;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1466979783824-134c24c7cd86-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1466979783824-134c24c7cd86-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
627
+ </wp:postmeta>
628
+ </item>
629
+ <item>
630
+ <title>photo-1466554735730-6281a8638806</title>
631
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/serious-problems-with-cables-in-city/photo-1466554735730-6281a8638806/</link>
632
+ <pubDate>Sun, 18 Sep 2016 10:25:29 +0000</pubDate>
633
+ <dc:creator><![CDATA[admin]]></dc:creator>
634
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1466554735730-6281a8638806.jpg</guid>
635
+ <description></description>
636
+ <content:encoded><![CDATA[]]></content:encoded>
637
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
638
+ <wp:post_id>340</wp:post_id>
639
+ <wp:post_date><![CDATA[2016-09-18 10:25:29]]></wp:post_date>
640
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:25:29]]></wp:post_date_gmt>
641
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
642
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
643
+ <wp:post_name><![CDATA[photo-1466554735730-6281a8638806]]></wp:post_name>
644
+ <wp:status><![CDATA[inherit]]></wp:status>
645
+ <wp:post_parent>263</wp:post_parent>
646
+ <wp:menu_order>0</wp:menu_order>
647
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
648
+ <wp:post_password><![CDATA[]]></wp:post_password>
649
+ <wp:is_sticky>0</wp:is_sticky>
650
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1466554735730-6281a8638806.jpg]]></wp:attachment_url>
651
+ <wp:postmeta>
652
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
653
+ <wp:meta_value><![CDATA[2016/06/photo-1466554735730-6281a8638806.jpg]]></wp:meta_value>
654
+ </wp:postmeta>
655
+ <wp:postmeta>
656
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
657
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/06/photo-1466554735730-6281a8638806.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1466554735730-6281a8638806-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1466554735730-6281a8638806-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1466554735730-6281a8638806-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1466554735730-6281a8638806-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1466554735730-6281a8638806-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1466554735730-6281a8638806-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
658
+ </wp:postmeta>
659
+ <wp:comment>
660
+ <wp:comment_id>94</wp:comment_id>
661
+ <wp:comment_author><![CDATA[Ferminscele]]></wp:comment_author>
662
+ <wp:comment_author_email><![CDATA[johnca.ll.aw.ay.g.nitto.s.ba.h.erz@gmail.com]]></wp:comment_author_email>
663
+ <wp:comment_author_url>http://seatmiquel38.skyrock.com/3276040142-A-Kanye-West-sex-tape-is-about-to-break-the-net.html</wp:comment_author_url>
664
+ <wp:comment_author_IP><![CDATA[109.169.22.73]]></wp:comment_author_IP>
665
+ <wp:comment_date><![CDATA[2017-05-09 12:32:00]]></wp:comment_date>
666
+ <wp:comment_date_gmt><![CDATA[2017-05-09 12:32:00]]></wp:comment_date_gmt>
667
+ <wp:comment_content><![CDATA[Turkey objects to the mass killings getting known as a genocide and disputes that there was an try to systematically destroy the Christian Armenian people. Kim Kardashian featuring Ray J video full <a href="http://shadmitten.skyrock.com/3171276721-A-Kim-Kardashian-Adult-porn-Film-Many-of-us-Realized-It-could-Take.html" rel="nofollow">can find over here</a>. The outlet factors to “flagging ratings” on “Keeping Up with the Kardashians” and a pending lawsuit Gossip Cop previously comprehensive. “Kim’s made a few inroads to earning more with her gaming app, Khloe’s show flopping and Kourtney barely earning a dime on her very own in years is not helping,” the supposed supply vaguely claims.]]></wp:comment_content>
668
+ <wp:comment_approved><![CDATA[0]]></wp:comment_approved>
669
+ <wp:comment_type><![CDATA[]]></wp:comment_type>
670
+ <wp:comment_parent>0</wp:comment_parent>
671
+ <wp:comment_user_id>0</wp:comment_user_id>
672
+ <wp:commentmeta>
673
+ <wp:meta_key><![CDATA[akismet_error]]></wp:meta_key>
674
+ <wp:meta_value><![CDATA[1494333120]]></wp:meta_value>
675
+ </wp:commentmeta>
676
+ <wp:commentmeta>
677
+ <wp:meta_key><![CDATA[akismet_history]]></wp:meta_key>
678
+ <wp:meta_value><![CDATA[a:3:{s:4:"time";d:1494333120.4416511058807373046875;s:5:"event";s:11:"check-error";s:4:"meta";a:1:{s:8:"response";s:7:"invalid";}}]]></wp:meta_value>
679
+ </wp:commentmeta>
680
+ </wp:comment>
681
+ </item>
682
+ <item>
683
+ <title>photo-1473798778802-efbba458877d</title>
684
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/serious-problems-with-cables-in-city/photo-1473798778802-efbba458877d/</link>
685
+ <pubDate>Sun, 18 Sep 2016 10:25:30 +0000</pubDate>
686
+ <dc:creator><![CDATA[admin]]></dc:creator>
687
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473798778802-efbba458877d.jpg</guid>
688
+ <description></description>
689
+ <content:encoded><![CDATA[]]></content:encoded>
690
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
691
+ <wp:post_id>341</wp:post_id>
692
+ <wp:post_date><![CDATA[2016-09-18 10:25:30]]></wp:post_date>
693
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:25:30]]></wp:post_date_gmt>
694
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
695
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
696
+ <wp:post_name><![CDATA[photo-1473798778802-efbba458877d]]></wp:post_name>
697
+ <wp:status><![CDATA[inherit]]></wp:status>
698
+ <wp:post_parent>263</wp:post_parent>
699
+ <wp:menu_order>0</wp:menu_order>
700
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
701
+ <wp:post_password><![CDATA[]]></wp:post_password>
702
+ <wp:is_sticky>0</wp:is_sticky>
703
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473798778802-efbba458877d.jpg]]></wp:attachment_url>
704
+ <wp:postmeta>
705
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
706
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1350;s:6:"height";i:709;s:4:"file";s:44:"2016/06/photo-1473798778802-efbba458877d.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473798778802-efbba458877d-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473798778802-efbba458877d-300x158.jpg";s:5:"width";i:300;s:6:"height";i:158;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473798778802-efbba458877d-768x403.jpg";s:5:"width";i:768;s:6:"height";i:403;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473798778802-efbba458877d-1024x538.jpg";s:5:"width";i:1024;s:6:"height";i:538;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473798778802-efbba458877d-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473798778802-efbba458877d-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
707
+ </wp:postmeta>
708
+ <wp:postmeta>
709
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
710
+ <wp:meta_value><![CDATA[2016/06/photo-1473798778802-efbba458877d.jpg]]></wp:meta_value>
711
+ </wp:postmeta>
712
+ </item>
713
+ <item>
714
+ <title>1200</title>
715
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/serious-problems-with-cables-in-city/attachment/1200/</link>
716
+ <pubDate>Sun, 18 Sep 2016 10:25:32 +0000</pubDate>
717
+ <dc:creator><![CDATA[admin]]></dc:creator>
718
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/1200.jpg</guid>
719
+ <description></description>
720
+ <content:encoded><![CDATA[]]></content:encoded>
721
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
722
+ <wp:post_id>342</wp:post_id>
723
+ <wp:post_date><![CDATA[2016-09-18 10:25:32]]></wp:post_date>
724
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:25:32]]></wp:post_date_gmt>
725
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
726
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
727
+ <wp:post_name><![CDATA[1200]]></wp:post_name>
728
+ <wp:status><![CDATA[inherit]]></wp:status>
729
+ <wp:post_parent>263</wp:post_parent>
730
+ <wp:menu_order>0</wp:menu_order>
731
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
732
+ <wp:post_password><![CDATA[]]></wp:post_password>
733
+ <wp:is_sticky>0</wp:is_sticky>
734
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/1200.jpg]]></wp:attachment_url>
735
+ <wp:postmeta>
736
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
737
+ <wp:meta_value><![CDATA[2016/06/1200.jpg]]></wp:meta_value>
738
+ </wp:postmeta>
739
+ <wp:postmeta>
740
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
741
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:16:"2016/06/1200.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"1200-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"1200-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"1200-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"1200-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"1200-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:16:"1200-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
742
+ </wp:postmeta>
743
+ </item>
744
+ <item>
745
+ <title>photo-1473668256061-43afd618ff98</title>
746
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/serious-problems-with-cables-in-city/photo-1473668256061-43afd618ff98/</link>
747
+ <pubDate>Sun, 18 Sep 2016 10:25:33 +0000</pubDate>
748
+ <dc:creator><![CDATA[admin]]></dc:creator>
749
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473668256061-43afd618ff98.jpg</guid>
750
+ <description></description>
751
+ <content:encoded><![CDATA[]]></content:encoded>
752
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
753
+ <wp:post_id>343</wp:post_id>
754
+ <wp:post_date><![CDATA[2016-09-18 10:25:33]]></wp:post_date>
755
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:25:33]]></wp:post_date_gmt>
756
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
757
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
758
+ <wp:post_name><![CDATA[photo-1473668256061-43afd618ff98]]></wp:post_name>
759
+ <wp:status><![CDATA[inherit]]></wp:status>
760
+ <wp:post_parent>263</wp:post_parent>
761
+ <wp:menu_order>0</wp:menu_order>
762
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
763
+ <wp:post_password><![CDATA[]]></wp:post_password>
764
+ <wp:is_sticky>0</wp:is_sticky>
765
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473668256061-43afd618ff98.jpg]]></wp:attachment_url>
766
+ <wp:postmeta>
767
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
768
+ <wp:meta_value><![CDATA[2016/06/photo-1473668256061-43afd618ff98.jpg]]></wp:meta_value>
769
+ </wp:postmeta>
770
+ <wp:postmeta>
771
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
772
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:801;s:4:"file";s:44:"2016/06/photo-1473668256061-43afd618ff98.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473668256061-43afd618ff98-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473668256061-43afd618ff98-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473668256061-43afd618ff98-768x513.jpg";s:5:"width";i:768;s:6:"height";i:513;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473668256061-43afd618ff98-1024x684.jpg";s:5:"width";i:1024;s:6:"height";i:684;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473668256061-43afd618ff98-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473668256061-43afd618ff98-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
773
+ </wp:postmeta>
774
+ </item>
775
+ <item>
776
+ <title>photo-1473101167633-bfa08e705e4b</title>
777
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/serious-problems-with-cables-in-city/photo-1473101167633-bfa08e705e4b/</link>
778
+ <pubDate>Sun, 18 Sep 2016 10:25:36 +0000</pubDate>
779
+ <dc:creator><![CDATA[admin]]></dc:creator>
780
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473101167633-bfa08e705e4b.jpg</guid>
781
+ <description></description>
782
+ <content:encoded><![CDATA[]]></content:encoded>
783
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
784
+ <wp:post_id>344</wp:post_id>
785
+ <wp:post_date><![CDATA[2016-09-18 10:25:36]]></wp:post_date>
786
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:25:36]]></wp:post_date_gmt>
787
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
788
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
789
+ <wp:post_name><![CDATA[photo-1473101167633-bfa08e705e4b]]></wp:post_name>
790
+ <wp:status><![CDATA[inherit]]></wp:status>
791
+ <wp:post_parent>263</wp:post_parent>
792
+ <wp:menu_order>0</wp:menu_order>
793
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
794
+ <wp:post_password><![CDATA[]]></wp:post_password>
795
+ <wp:is_sticky>0</wp:is_sticky>
796
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473101167633-bfa08e705e4b.jpg]]></wp:attachment_url>
797
+ <wp:postmeta>
798
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
799
+ <wp:meta_value><![CDATA[2016/06/photo-1473101167633-bfa08e705e4b.jpg]]></wp:meta_value>
800
+ </wp:postmeta>
801
+ <wp:postmeta>
802
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
803
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/06/photo-1473101167633-bfa08e705e4b.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473101167633-bfa08e705e4b-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473101167633-bfa08e705e4b-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473101167633-bfa08e705e4b-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473101167633-bfa08e705e4b-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473101167633-bfa08e705e4b-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473101167633-bfa08e705e4b-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
804
+ </wp:postmeta>
805
+ </item>
806
+ <item>
807
+ <title>photo-1473059415728-1fea43f1e651</title>
808
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/serious-problems-with-cables-in-city/photo-1473059415728-1fea43f1e651/</link>
809
+ <pubDate>Sun, 18 Sep 2016 10:25:37 +0000</pubDate>
810
+ <dc:creator><![CDATA[admin]]></dc:creator>
811
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473059415728-1fea43f1e651.jpg</guid>
812
+ <description></description>
813
+ <content:encoded><![CDATA[]]></content:encoded>
814
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
815
+ <wp:post_id>345</wp:post_id>
816
+ <wp:post_date><![CDATA[2016-09-18 10:25:37]]></wp:post_date>
817
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:25:37]]></wp:post_date_gmt>
818
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
819
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
820
+ <wp:post_name><![CDATA[photo-1473059415728-1fea43f1e651]]></wp:post_name>
821
+ <wp:status><![CDATA[inherit]]></wp:status>
822
+ <wp:post_parent>263</wp:post_parent>
823
+ <wp:menu_order>0</wp:menu_order>
824
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
825
+ <wp:post_password><![CDATA[]]></wp:post_password>
826
+ <wp:is_sticky>0</wp:is_sticky>
827
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473059415728-1fea43f1e651.jpg]]></wp:attachment_url>
828
+ <wp:postmeta>
829
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
830
+ <wp:meta_value><![CDATA[2016/06/photo-1473059415728-1fea43f1e651.jpg]]></wp:meta_value>
831
+ </wp:postmeta>
832
+ <wp:postmeta>
833
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
834
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:801;s:4:"file";s:44:"2016/06/photo-1473059415728-1fea43f1e651.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473059415728-1fea43f1e651-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473059415728-1fea43f1e651-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473059415728-1fea43f1e651-768x513.jpg";s:5:"width";i:768;s:6:"height";i:513;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473059415728-1fea43f1e651-1024x684.jpg";s:5:"width";i:1024;s:6:"height";i:684;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473059415728-1fea43f1e651-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473059415728-1fea43f1e651-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
835
+ </wp:postmeta>
836
+ </item>
837
+ <item>
838
+ <title>photo-1452457436726-a8e6ea2adf29</title>
839
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/serious-problems-with-cables-in-city/photo-1452457436726-a8e6ea2adf29/</link>
840
+ <pubDate>Sun, 18 Sep 2016 10:25:39 +0000</pubDate>
841
+ <dc:creator><![CDATA[admin]]></dc:creator>
842
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1452457436726-a8e6ea2adf29.jpg</guid>
843
+ <description></description>
844
+ <content:encoded><![CDATA[]]></content:encoded>
845
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
846
+ <wp:post_id>346</wp:post_id>
847
+ <wp:post_date><![CDATA[2016-09-18 10:25:39]]></wp:post_date>
848
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:25:39]]></wp:post_date_gmt>
849
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
850
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
851
+ <wp:post_name><![CDATA[photo-1452457436726-a8e6ea2adf29]]></wp:post_name>
852
+ <wp:status><![CDATA[inherit]]></wp:status>
853
+ <wp:post_parent>263</wp:post_parent>
854
+ <wp:menu_order>0</wp:menu_order>
855
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
856
+ <wp:post_password><![CDATA[]]></wp:post_password>
857
+ <wp:is_sticky>0</wp:is_sticky>
858
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1452457436726-a8e6ea2adf29.jpg]]></wp:attachment_url>
859
+ <wp:postmeta>
860
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
861
+ <wp:meta_value><![CDATA[2016/06/photo-1452457436726-a8e6ea2adf29.jpg]]></wp:meta_value>
862
+ </wp:postmeta>
863
+ <wp:postmeta>
864
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
865
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:801;s:4:"file";s:44:"2016/06/photo-1452457436726-a8e6ea2adf29.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1452457436726-a8e6ea2adf29-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1452457436726-a8e6ea2adf29-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1452457436726-a8e6ea2adf29-768x513.jpg";s:5:"width";i:768;s:6:"height";i:513;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1452457436726-a8e6ea2adf29-1024x684.jpg";s:5:"width";i:1024;s:6:"height";i:684;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1452457436726-a8e6ea2adf29-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1452457436726-a8e6ea2adf29-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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:19:"All rights reserved";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>
866
+ </wp:postmeta>
867
+ </item>
868
+ <item>
869
+ <title>photo-1465636360230-1255730fa033</title>
870
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/the-whole-network-of-huts-and-pathways-forming/photo-1465636360230-1255730fa033/</link>
871
+ <pubDate>Sun, 18 Sep 2016 10:39:18 +0000</pubDate>
872
+ <dc:creator><![CDATA[admin]]></dc:creator>
873
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1465636360230-1255730fa033.jpg</guid>
874
+ <description></description>
875
+ <content:encoded><![CDATA[]]></content:encoded>
876
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
877
+ <wp:post_id>357</wp:post_id>
878
+ <wp:post_date><![CDATA[2016-09-18 10:39:18]]></wp:post_date>
879
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:39:18]]></wp:post_date_gmt>
880
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
881
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
882
+ <wp:post_name><![CDATA[photo-1465636360230-1255730fa033]]></wp:post_name>
883
+ <wp:status><![CDATA[inherit]]></wp:status>
884
+ <wp:post_parent>258</wp:post_parent>
885
+ <wp:menu_order>0</wp:menu_order>
886
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
887
+ <wp:post_password><![CDATA[]]></wp:post_password>
888
+ <wp:is_sticky>0</wp:is_sticky>
889
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1465636360230-1255730fa033.jpg]]></wp:attachment_url>
890
+ <wp:postmeta>
891
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
892
+ <wp:meta_value><![CDATA[2016/06/photo-1465636360230-1255730fa033.jpg]]></wp:meta_value>
893
+ </wp:postmeta>
894
+ <wp:postmeta>
895
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
896
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:799;s:4:"file";s:44:"2016/06/photo-1465636360230-1255730fa033.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1465636360230-1255730fa033-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1465636360230-1255730fa033-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1465636360230-1255730fa033-768x511.jpg";s:5:"width";i:768;s:6:"height";i:511;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1465636360230-1255730fa033-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1465636360230-1255730fa033-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1465636360230-1255730fa033-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
897
+ </wp:postmeta>
898
+ </item>
899
+ <item>
900
+ <title>photo-1473633900894-651736056c8e</title>
901
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/the-boat-scudded-thus-northward-during-the-whole-day/photo-1473633900894-651736056c8e/</link>
902
+ <pubDate>Sun, 18 Sep 2016 10:53:41 +0000</pubDate>
903
+ <dc:creator><![CDATA[admin]]></dc:creator>
904
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473633900894-651736056c8e.jpg</guid>
905
+ <description></description>
906
+ <content:encoded><![CDATA[]]></content:encoded>
907
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
908
+ <wp:post_id>369</wp:post_id>
909
+ <wp:post_date><![CDATA[2016-09-18 10:53:41]]></wp:post_date>
910
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:53:41]]></wp:post_date_gmt>
911
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
912
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
913
+ <wp:post_name><![CDATA[photo-1473633900894-651736056c8e]]></wp:post_name>
914
+ <wp:status><![CDATA[inherit]]></wp:status>
915
+ <wp:post_parent>257</wp:post_parent>
916
+ <wp:menu_order>0</wp:menu_order>
917
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
918
+ <wp:post_password><![CDATA[]]></wp:post_password>
919
+ <wp:is_sticky>0</wp:is_sticky>
920
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473633900894-651736056c8e.jpg]]></wp:attachment_url>
921
+ <wp:postmeta>
922
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
923
+ <wp:meta_value><![CDATA[2016/06/photo-1473633900894-651736056c8e.jpg]]></wp:meta_value>
924
+ </wp:postmeta>
925
+ <wp:postmeta>
926
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
927
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/06/photo-1473633900894-651736056c8e.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473633900894-651736056c8e-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473633900894-651736056c8e-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473633900894-651736056c8e-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473633900894-651736056c8e-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473633900894-651736056c8e-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473633900894-651736056c8e-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
928
+ </wp:postmeta>
929
+ </item>
930
+ <item>
931
+ <title>photo-1473873446975-123c5143248b</title>
932
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/the-boat-scudded-thus-northward-during-the-whole-day/photo-1473873446975-123c5143248b/</link>
933
+ <pubDate>Sun, 18 Sep 2016 10:53:44 +0000</pubDate>
934
+ <dc:creator><![CDATA[admin]]></dc:creator>
935
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473873446975-123c5143248b.jpg</guid>
936
+ <description></description>
937
+ <content:encoded><![CDATA[]]></content:encoded>
938
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
939
+ <wp:post_id>370</wp:post_id>
940
+ <wp:post_date><![CDATA[2016-09-18 10:53:44]]></wp:post_date>
941
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:53:44]]></wp:post_date_gmt>
942
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
943
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
944
+ <wp:post_name><![CDATA[photo-1473873446975-123c5143248b]]></wp:post_name>
945
+ <wp:status><![CDATA[inherit]]></wp:status>
946
+ <wp:post_parent>257</wp:post_parent>
947
+ <wp:menu_order>0</wp:menu_order>
948
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
949
+ <wp:post_password><![CDATA[]]></wp:post_password>
950
+ <wp:is_sticky>0</wp:is_sticky>
951
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473873446975-123c5143248b.jpg]]></wp:attachment_url>
952
+ <wp:postmeta>
953
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
954
+ <wp:meta_value><![CDATA[2016/06/photo-1473873446975-123c5143248b.jpg]]></wp:meta_value>
955
+ </wp:postmeta>
956
+ <wp:postmeta>
957
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
958
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/06/photo-1473873446975-123c5143248b.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473873446975-123c5143248b-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473873446975-123c5143248b-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473873446975-123c5143248b-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473873446975-123c5143248b-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473873446975-123c5143248b-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473873446975-123c5143248b-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
959
+ </wp:postmeta>
960
+ </item>
961
+ <item>
962
+ <title>photo-1473951298521-f0f27c6bda7b</title>
963
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/the-boat-scudded-thus-northward-during-the-whole-day/photo-1473951298521-f0f27c6bda7b/</link>
964
+ <pubDate>Sun, 18 Sep 2016 10:53:49 +0000</pubDate>
965
+ <dc:creator><![CDATA[admin]]></dc:creator>
966
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473951298521-f0f27c6bda7b.jpg</guid>
967
+ <description></description>
968
+ <content:encoded><![CDATA[]]></content:encoded>
969
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
970
+ <wp:post_id>371</wp:post_id>
971
+ <wp:post_date><![CDATA[2016-09-18 10:53:49]]></wp:post_date>
972
+ <wp:post_date_gmt><![CDATA[2016-09-18 10:53:49]]></wp:post_date_gmt>
973
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
974
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
975
+ <wp:post_name><![CDATA[photo-1473951298521-f0f27c6bda7b]]></wp:post_name>
976
+ <wp:status><![CDATA[inherit]]></wp:status>
977
+ <wp:post_parent>257</wp:post_parent>
978
+ <wp:menu_order>0</wp:menu_order>
979
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
980
+ <wp:post_password><![CDATA[]]></wp:post_password>
981
+ <wp:is_sticky>0</wp:is_sticky>
982
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1473951298521-f0f27c6bda7b.jpg]]></wp:attachment_url>
983
+ <wp:postmeta>
984
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
985
+ <wp:meta_value><![CDATA[2016/06/photo-1473951298521-f0f27c6bda7b.jpg]]></wp:meta_value>
986
+ </wp:postmeta>
987
+ <wp:postmeta>
988
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
989
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/06/photo-1473951298521-f0f27c6bda7b.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473951298521-f0f27c6bda7b-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473951298521-f0f27c6bda7b-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473951298521-f0f27c6bda7b-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473951298521-f0f27c6bda7b-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473951298521-f0f27c6bda7b-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473951298521-f0f27c6bda7b-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
990
+ </wp:postmeta>
991
+ </item>
992
+ <item>
993
+ <title>photo-1438302439441-82e18f791f5e</title>
994
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/they-spoke-in-monosyllables-and-short-jerky-sentences/photo-1438302439441-82e18f791f5e/</link>
995
+ <pubDate>Sun, 18 Sep 2016 11:00:01 +0000</pubDate>
996
+ <dc:creator><![CDATA[admin]]></dc:creator>
997
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1438302439441-82e18f791f5e.jpg</guid>
998
+ <description></description>
999
+ <content:encoded><![CDATA[]]></content:encoded>
1000
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1001
+ <wp:post_id>389</wp:post_id>
1002
+ <wp:post_date><![CDATA[2016-09-18 11:00:01]]></wp:post_date>
1003
+ <wp:post_date_gmt><![CDATA[2016-09-18 11:00:01]]></wp:post_date_gmt>
1004
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1005
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1006
+ <wp:post_name><![CDATA[photo-1438302439441-82e18f791f5e]]></wp:post_name>
1007
+ <wp:status><![CDATA[inherit]]></wp:status>
1008
+ <wp:post_parent>259</wp:post_parent>
1009
+ <wp:menu_order>0</wp:menu_order>
1010
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1011
+ <wp:post_password><![CDATA[]]></wp:post_password>
1012
+ <wp:is_sticky>0</wp:is_sticky>
1013
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1438302439441-82e18f791f5e.jpg]]></wp:attachment_url>
1014
+ <wp:postmeta>
1015
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1016
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:807;s:4:"file";s:44:"2016/06/photo-1438302439441-82e18f791f5e.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1438302439441-82e18f791f5e-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1438302439441-82e18f791f5e-300x202.jpg";s:5:"width";i:300;s:6:"height";i:202;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1438302439441-82e18f791f5e-768x516.jpg";s:5:"width";i:768;s:6:"height";i:516;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1438302439441-82e18f791f5e-1024x689.jpg";s:5:"width";i:1024;s:6:"height";i:689;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1438302439441-82e18f791f5e-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1438302439441-82e18f791f5e-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1017
+ </wp:postmeta>
1018
+ <wp:postmeta>
1019
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1020
+ <wp:meta_value><![CDATA[2016/06/photo-1438302439441-82e18f791f5e.jpg]]></wp:meta_value>
1021
+ </wp:postmeta>
1022
+ </item>
1023
+ <item>
1024
+ <title>photo-1465834342651-fca149ee1ee6</title>
1025
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/they-spoke-in-monosyllables-and-short-jerky-sentences/photo-1465834342651-fca149ee1ee6/</link>
1026
+ <pubDate>Sun, 18 Sep 2016 11:09:05 +0000</pubDate>
1027
+ <dc:creator><![CDATA[admin]]></dc:creator>
1028
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1465834342651-fca149ee1ee6.jpg</guid>
1029
+ <description></description>
1030
+ <content:encoded><![CDATA[]]></content:encoded>
1031
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1032
+ <wp:post_id>402</wp:post_id>
1033
+ <wp:post_date><![CDATA[2016-09-18 11:09:05]]></wp:post_date>
1034
+ <wp:post_date_gmt><![CDATA[2016-09-18 11:09:05]]></wp:post_date_gmt>
1035
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1036
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1037
+ <wp:post_name><![CDATA[photo-1465834342651-fca149ee1ee6]]></wp:post_name>
1038
+ <wp:status><![CDATA[inherit]]></wp:status>
1039
+ <wp:post_parent>259</wp:post_parent>
1040
+ <wp:menu_order>0</wp:menu_order>
1041
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1042
+ <wp:post_password><![CDATA[]]></wp:post_password>
1043
+ <wp:is_sticky>0</wp:is_sticky>
1044
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1465834342651-fca149ee1ee6.jpg]]></wp:attachment_url>
1045
+ <wp:postmeta>
1046
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1047
+ <wp:meta_value><![CDATA[2016/06/photo-1465834342651-fca149ee1ee6.jpg]]></wp:meta_value>
1048
+ </wp:postmeta>
1049
+ <wp:postmeta>
1050
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1051
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:4272;s:6:"height";i:2848;s:4:"file";s:44:"2016/06/photo-1465834342651-fca149ee1ee6.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1465834342651-fca149ee1ee6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1465834342651-fca149ee1ee6-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1465834342651-fca149ee1ee6-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1465834342651-fca149ee1ee6-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1465834342651-fca149ee1ee6-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1465834342651-fca149ee1ee6-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1052
+ </wp:postmeta>
1053
+ </item>
1054
+ <item>
1055
+ <title>photo-1467533003447-e295ff1b0435</title>
1056
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/they-spoke-in-monosyllables-and-short-jerky-sentences/photo-1467533003447-e295ff1b0435/</link>
1057
+ <pubDate>Sun, 18 Sep 2016 11:09:07 +0000</pubDate>
1058
+ <dc:creator><![CDATA[admin]]></dc:creator>
1059
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1467533003447-e295ff1b0435.jpg</guid>
1060
+ <description></description>
1061
+ <content:encoded><![CDATA[]]></content:encoded>
1062
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1063
+ <wp:post_id>403</wp:post_id>
1064
+ <wp:post_date><![CDATA[2016-09-18 11:09:07]]></wp:post_date>
1065
+ <wp:post_date_gmt><![CDATA[2016-09-18 11:09:07]]></wp:post_date_gmt>
1066
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1067
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1068
+ <wp:post_name><![CDATA[photo-1467533003447-e295ff1b0435]]></wp:post_name>
1069
+ <wp:status><![CDATA[inherit]]></wp:status>
1070
+ <wp:post_parent>259</wp:post_parent>
1071
+ <wp:menu_order>0</wp:menu_order>
1072
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1073
+ <wp:post_password><![CDATA[]]></wp:post_password>
1074
+ <wp:is_sticky>0</wp:is_sticky>
1075
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1467533003447-e295ff1b0435.jpg]]></wp:attachment_url>
1076
+ <wp:postmeta>
1077
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1078
+ <wp:meta_value><![CDATA[2016/06/photo-1467533003447-e295ff1b0435.jpg]]></wp:meta_value>
1079
+ </wp:postmeta>
1080
+ <wp:postmeta>
1081
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1082
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/06/photo-1467533003447-e295ff1b0435.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1467533003447-e295ff1b0435-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1467533003447-e295ff1b0435-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1467533003447-e295ff1b0435-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1467533003447-e295ff1b0435-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1467533003447-e295ff1b0435-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1467533003447-e295ff1b0435-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1083
+ </wp:postmeta>
1084
+ </item>
1085
+ <item>
1086
+ <title>photo-1474028508333-260275381f1c</title>
1087
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/06/25/they-spoke-in-monosyllables-and-short-jerky-sentences/photo-1474028508333-260275381f1c/</link>
1088
+ <pubDate>Sun, 18 Sep 2016 11:11:12 +0000</pubDate>
1089
+ <dc:creator><![CDATA[admin]]></dc:creator>
1090
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1474028508333-260275381f1c.jpg</guid>
1091
+ <description></description>
1092
+ <content:encoded><![CDATA[]]></content:encoded>
1093
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1094
+ <wp:post_id>408</wp:post_id>
1095
+ <wp:post_date><![CDATA[2016-09-18 11:11:12]]></wp:post_date>
1096
+ <wp:post_date_gmt><![CDATA[2016-09-18 11:11:12]]></wp:post_date_gmt>
1097
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1098
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1099
+ <wp:post_name><![CDATA[photo-1474028508333-260275381f1c]]></wp:post_name>
1100
+ <wp:status><![CDATA[inherit]]></wp:status>
1101
+ <wp:post_parent>259</wp:post_parent>
1102
+ <wp:menu_order>0</wp:menu_order>
1103
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1104
+ <wp:post_password><![CDATA[]]></wp:post_password>
1105
+ <wp:is_sticky>0</wp:is_sticky>
1106
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/06/photo-1474028508333-260275381f1c.jpg]]></wp:attachment_url>
1107
+ <wp:postmeta>
1108
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1109
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/06/photo-1474028508333-260275381f1c.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1474028508333-260275381f1c-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1474028508333-260275381f1c-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1474028508333-260275381f1c-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1474028508333-260275381f1c-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1474028508333-260275381f1c-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1474028508333-260275381f1c-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1110
+ </wp:postmeta>
1111
+ <wp:postmeta>
1112
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1113
+ <wp:meta_value><![CDATA[2016/06/photo-1474028508333-260275381f1c.jpg]]></wp:meta_value>
1114
+ </wp:postmeta>
1115
+ </item>
1116
+ <item>
1117
+ <title>photo-1466442929976-97f336a657be</title>
1118
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/02/24/gallery-post-format/photo-1466442929976-97f336a657be/</link>
1119
+ <pubDate>Sun, 18 Sep 2016 11:28:31 +0000</pubDate>
1120
+ <dc:creator><![CDATA[admin]]></dc:creator>
1121
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/02/photo-1466442929976-97f336a657be.jpg</guid>
1122
+ <description></description>
1123
+ <content:encoded><![CDATA[]]></content:encoded>
1124
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1125
+ <wp:post_id>426</wp:post_id>
1126
+ <wp:post_date><![CDATA[2016-09-18 11:28:31]]></wp:post_date>
1127
+ <wp:post_date_gmt><![CDATA[2016-09-18 11:28:31]]></wp:post_date_gmt>
1128
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1129
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1130
+ <wp:post_name><![CDATA[photo-1466442929976-97f336a657be]]></wp:post_name>
1131
+ <wp:status><![CDATA[inherit]]></wp:status>
1132
+ <wp:post_parent>252</wp:post_parent>
1133
+ <wp:menu_order>0</wp:menu_order>
1134
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1135
+ <wp:post_password><![CDATA[]]></wp:post_password>
1136
+ <wp:is_sticky>0</wp:is_sticky>
1137
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/02/photo-1466442929976-97f336a657be.jpg]]></wp:attachment_url>
1138
+ <wp:postmeta>
1139
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1140
+ <wp:meta_value><![CDATA[2016/02/photo-1466442929976-97f336a657be.jpg]]></wp:meta_value>
1141
+ </wp:postmeta>
1142
+ <wp:postmeta>
1143
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1144
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:1800;s:4:"file";s:44:"2016/02/photo-1466442929976-97f336a657be.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1466442929976-97f336a657be-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1466442929976-97f336a657be-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:45:"photo-1466442929976-97f336a657be-768x1152.jpg";s:5:"width";i:768;s:6:"height";i:1152;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1466442929976-97f336a657be-683x1024.jpg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1466442929976-97f336a657be-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1466442929976-97f336a657be-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1145
+ </wp:postmeta>
1146
+ </item>
1147
+ <item>
1148
+ <title>photo-1473346782721-d6cef5897f07</title>
1149
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/02/24/gallery-post-format/photo-1473346782721-d6cef5897f07/</link>
1150
+ <pubDate>Sun, 18 Sep 2016 11:28:34 +0000</pubDate>
1151
+ <dc:creator><![CDATA[admin]]></dc:creator>
1152
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/02/photo-1473346782721-d6cef5897f07.jpg</guid>
1153
+ <description></description>
1154
+ <content:encoded><![CDATA[]]></content:encoded>
1155
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1156
+ <wp:post_id>427</wp:post_id>
1157
+ <wp:post_date><![CDATA[2016-09-18 11:28:34]]></wp:post_date>
1158
+ <wp:post_date_gmt><![CDATA[2016-09-18 11:28:34]]></wp:post_date_gmt>
1159
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1160
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1161
+ <wp:post_name><![CDATA[photo-1473346782721-d6cef5897f07]]></wp:post_name>
1162
+ <wp:status><![CDATA[inherit]]></wp:status>
1163
+ <wp:post_parent>252</wp:post_parent>
1164
+ <wp:menu_order>0</wp:menu_order>
1165
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1166
+ <wp:post_password><![CDATA[]]></wp:post_password>
1167
+ <wp:is_sticky>0</wp:is_sticky>
1168
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/02/photo-1473346782721-d6cef5897f07.jpg]]></wp:attachment_url>
1169
+ <wp:postmeta>
1170
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1171
+ <wp:meta_value><![CDATA[2016/02/photo-1473346782721-d6cef5897f07.jpg]]></wp:meta_value>
1172
+ </wp:postmeta>
1173
+ <wp:postmeta>
1174
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1175
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:900;s:4:"file";s:44:"2016/02/photo-1473346782721-d6cef5897f07.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473346782721-d6cef5897f07-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473346782721-d6cef5897f07-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473346782721-d6cef5897f07-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473346782721-d6cef5897f07-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473346782721-d6cef5897f07-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473346782721-d6cef5897f07-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1176
+ </wp:postmeta>
1177
+ </item>
1178
+ <item>
1179
+ <title>photo-1473437222596-e67fbca9b5ff</title>
1180
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/02/24/gallery-post-format/photo-1473437222596-e67fbca9b5ff/</link>
1181
+ <pubDate>Sun, 18 Sep 2016 11:28:37 +0000</pubDate>
1182
+ <dc:creator><![CDATA[admin]]></dc:creator>
1183
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/02/photo-1473437222596-e67fbca9b5ff.jpg</guid>
1184
+ <description></description>
1185
+ <content:encoded><![CDATA[]]></content:encoded>
1186
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1187
+ <wp:post_id>428</wp:post_id>
1188
+ <wp:post_date><![CDATA[2016-09-18 11:28:37]]></wp:post_date>
1189
+ <wp:post_date_gmt><![CDATA[2016-09-18 11:28:37]]></wp:post_date_gmt>
1190
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1191
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1192
+ <wp:post_name><![CDATA[photo-1473437222596-e67fbca9b5ff]]></wp:post_name>
1193
+ <wp:status><![CDATA[inherit]]></wp:status>
1194
+ <wp:post_parent>252</wp:post_parent>
1195
+ <wp:menu_order>0</wp:menu_order>
1196
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1197
+ <wp:post_password><![CDATA[]]></wp:post_password>
1198
+ <wp:is_sticky>0</wp:is_sticky>
1199
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/02/photo-1473437222596-e67fbca9b5ff.jpg]]></wp:attachment_url>
1200
+ <wp:postmeta>
1201
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1202
+ <wp:meta_value><![CDATA[2016/02/photo-1473437222596-e67fbca9b5ff.jpg]]></wp:meta_value>
1203
+ </wp:postmeta>
1204
+ <wp:postmeta>
1205
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1206
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/02/photo-1473437222596-e67fbca9b5ff.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473437222596-e67fbca9b5ff-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473437222596-e67fbca9b5ff-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473437222596-e67fbca9b5ff-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473437222596-e67fbca9b5ff-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473437222596-e67fbca9b5ff-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473437222596-e67fbca9b5ff-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1207
+ </wp:postmeta>
1208
+ </item>
1209
+ <item>
1210
+ <title>logo_retina</title>
1211
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/logo_retina/</link>
1212
+ <pubDate>Sun, 18 Sep 2016 11:42:08 +0000</pubDate>
1213
+ <dc:creator><![CDATA[admin]]></dc:creator>
1214
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/logo_retina.png</guid>
1215
+ <description></description>
1216
+ <content:encoded><![CDATA[]]></content:encoded>
1217
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1218
+ <wp:post_id>448</wp:post_id>
1219
+ <wp:post_date><![CDATA[2016-09-18 11:42:08]]></wp:post_date>
1220
+ <wp:post_date_gmt><![CDATA[2016-09-18 11:42:08]]></wp:post_date_gmt>
1221
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1222
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1223
+ <wp:post_name><![CDATA[logo_retina]]></wp:post_name>
1224
+ <wp:status><![CDATA[inherit]]></wp:status>
1225
+ <wp:post_parent>0</wp:post_parent>
1226
+ <wp:menu_order>0</wp:menu_order>
1227
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1228
+ <wp:post_password><![CDATA[]]></wp:post_password>
1229
+ <wp:is_sticky>0</wp:is_sticky>
1230
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/logo_retina.png]]></wp:attachment_url>
1231
+ <wp:postmeta>
1232
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1233
+ <wp:meta_value><![CDATA[2016/09/logo_retina.png]]></wp:meta_value>
1234
+ </wp:postmeta>
1235
+ <wp:postmeta>
1236
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1237
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:386;s:6:"height";i:90;s:4:"file";s:23:"2016/09/logo_retina.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"logo_retina-150x90.png";s:5:"width";i:150;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:22:"logo_retina-300x70.png";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"logo_retina-280x90.png";s:5:"width";i:280;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:22:"logo_retina-272x90.png";s:5:"width";i:272;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}}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>
1238
+ </wp:postmeta>
1239
+ </item>
1240
+ <item>
1241
+ <title>logo</title>
1242
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/logo/</link>
1243
+ <pubDate>Sun, 18 Sep 2016 11:42:08 +0000</pubDate>
1244
+ <dc:creator><![CDATA[admin]]></dc:creator>
1245
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/logo.png</guid>
1246
+ <description></description>
1247
+ <content:encoded><![CDATA[]]></content:encoded>
1248
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1249
+ <wp:post_id>450</wp:post_id>
1250
+ <wp:post_date><![CDATA[2016-09-18 11:42:08]]></wp:post_date>
1251
+ <wp:post_date_gmt><![CDATA[2016-09-18 11:42:08]]></wp:post_date_gmt>
1252
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1253
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1254
+ <wp:post_name><![CDATA[logo]]></wp:post_name>
1255
+ <wp:status><![CDATA[inherit]]></wp:status>
1256
+ <wp:post_parent>0</wp:post_parent>
1257
+ <wp:menu_order>0</wp:menu_order>
1258
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1259
+ <wp:post_password><![CDATA[]]></wp:post_password>
1260
+ <wp:is_sticky>0</wp:is_sticky>
1261
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/logo.png]]></wp:attachment_url>
1262
+ <wp:postmeta>
1263
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1264
+ <wp:meta_value><![CDATA[2016/09/logo.png]]></wp:meta_value>
1265
+ </wp:postmeta>
1266
+ <wp:postmeta>
1267
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1268
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:193;s:6:"height";i:45;s:4:"file";s:16:"2016/09/logo.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"logo-150x45.png";s:5:"width";i:150;s:6:"height";i:45;s:9:"mime-type";s:9:"image/png";}}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>
1269
+ </wp:postmeta>
1270
+ </item>
1271
+ <item>
1272
+ <title>logo-footer</title>
1273
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/logo-footer-2/</link>
1274
+ <pubDate>Sun, 18 Sep 2016 11:45:14 +0000</pubDate>
1275
+ <dc:creator><![CDATA[admin]]></dc:creator>
1276
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/logo-footer.png</guid>
1277
+ <description></description>
1278
+ <content:encoded><![CDATA[]]></content:encoded>
1279
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1280
+ <wp:post_id>456</wp:post_id>
1281
+ <wp:post_date><![CDATA[2016-09-18 11:45:14]]></wp:post_date>
1282
+ <wp:post_date_gmt><![CDATA[2016-09-18 11:45:14]]></wp:post_date_gmt>
1283
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1284
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1285
+ <wp:post_name><![CDATA[logo-footer-2]]></wp:post_name>
1286
+ <wp:status><![CDATA[inherit]]></wp:status>
1287
+ <wp:post_parent>0</wp:post_parent>
1288
+ <wp:menu_order>0</wp:menu_order>
1289
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1290
+ <wp:post_password><![CDATA[]]></wp:post_password>
1291
+ <wp:is_sticky>0</wp:is_sticky>
1292
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/logo-footer.png]]></wp:attachment_url>
1293
+ <wp:postmeta>
1294
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1295
+ <wp:meta_value><![CDATA[2016/09/logo-footer.png]]></wp:meta_value>
1296
+ </wp:postmeta>
1297
+ <wp:postmeta>
1298
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1299
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:133;s:6:"height";i:45;s:4:"file";s:23:"2016/09/logo-footer.png";s:5:"sizes";a:0:{}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>
1300
+ </wp:postmeta>
1301
+ </item>
1302
+ <item>
1303
+ <title>author</title>
1304
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/author-5/</link>
1305
+ <pubDate>Sun, 18 Sep 2016 12:17:45 +0000</pubDate>
1306
+ <dc:creator><![CDATA[admin]]></dc:creator>
1307
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/author-1.jpg</guid>
1308
+ <description></description>
1309
+ <content:encoded><![CDATA[]]></content:encoded>
1310
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1311
+ <wp:post_id>488</wp:post_id>
1312
+ <wp:post_date><![CDATA[2016-09-18 12:17:45]]></wp:post_date>
1313
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:17:45]]></wp:post_date_gmt>
1314
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1315
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1316
+ <wp:post_name><![CDATA[author-5]]></wp:post_name>
1317
+ <wp:status><![CDATA[inherit]]></wp:status>
1318
+ <wp:post_parent>0</wp:post_parent>
1319
+ <wp:menu_order>0</wp:menu_order>
1320
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1321
+ <wp:post_password><![CDATA[]]></wp:post_password>
1322
+ <wp:is_sticky>0</wp:is_sticky>
1323
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/author-1.jpg]]></wp:attachment_url>
1324
+ <wp:postmeta>
1325
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1326
+ <wp:meta_value><![CDATA[2016/09/author-1.jpg]]></wp:meta_value>
1327
+ </wp:postmeta>
1328
+ <wp:postmeta>
1329
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1330
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:450;s:6:"height";i:204;s:4:"file";s:20:"2016/09/author-1.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"author-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"author-1-300x136.jpg";s:5:"width";i:300;s:6:"height";i:136;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"author-1-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:20:"author-1-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1331
+ </wp:postmeta>
1332
+ </item>
1333
+ <item>
1334
+ <title>icon</title>
1335
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/icon/</link>
1336
+ <pubDate>Sun, 18 Sep 2016 12:33:57 +0000</pubDate>
1337
+ <dc:creator><![CDATA[admin]]></dc:creator>
1338
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/icon.png</guid>
1339
+ <description></description>
1340
+ <content:encoded><![CDATA[]]></content:encoded>
1341
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1342
+ <wp:post_id>500</wp:post_id>
1343
+ <wp:post_date><![CDATA[2016-09-18 12:33:57]]></wp:post_date>
1344
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:33:57]]></wp:post_date_gmt>
1345
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1346
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1347
+ <wp:post_name><![CDATA[icon]]></wp:post_name>
1348
+ <wp:status><![CDATA[inherit]]></wp:status>
1349
+ <wp:post_parent>0</wp:post_parent>
1350
+ <wp:menu_order>0</wp:menu_order>
1351
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1352
+ <wp:post_password><![CDATA[]]></wp:post_password>
1353
+ <wp:is_sticky>0</wp:is_sticky>
1354
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/icon.png]]></wp:attachment_url>
1355
+ <wp:postmeta>
1356
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1357
+ <wp:meta_value><![CDATA[2016/09/icon.png]]></wp:meta_value>
1358
+ </wp:postmeta>
1359
+ <wp:postmeta>
1360
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1361
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:500;s:6:"height";i:500;s:4:"file";s:16:"2016/09/icon.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"icon-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:16:"icon-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"icon-280x180.png";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:16:"icon-272x182.png";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:9:"image/png";}}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>
1362
+ </wp:postmeta>
1363
+ </item>
1364
+ <item>
1365
+ <title>cropped-icon.png</title>
1366
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/cropped-icon-png/</link>
1367
+ <pubDate>Sun, 18 Sep 2016 12:34:06 +0000</pubDate>
1368
+ <dc:creator><![CDATA[admin]]></dc:creator>
1369
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/cropped-icon.png</guid>
1370
+ <description></description>
1371
+ <content:encoded><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/cropped-icon.png]]></content:encoded>
1372
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1373
+ <wp:post_id>501</wp:post_id>
1374
+ <wp:post_date><![CDATA[2016-09-18 12:34:06]]></wp:post_date>
1375
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:34:06]]></wp:post_date_gmt>
1376
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1377
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1378
+ <wp:post_name><![CDATA[cropped-icon-png]]></wp:post_name>
1379
+ <wp:status><![CDATA[inherit]]></wp:status>
1380
+ <wp:post_parent>0</wp:post_parent>
1381
+ <wp:menu_order>0</wp:menu_order>
1382
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1383
+ <wp:post_password><![CDATA[]]></wp:post_password>
1384
+ <wp:is_sticky>0</wp:is_sticky>
1385
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/09/cropped-icon.png]]></wp:attachment_url>
1386
+ <wp:postmeta>
1387
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1388
+ <wp:meta_value><![CDATA[2016/09/cropped-icon.png]]></wp:meta_value>
1389
+ </wp:postmeta>
1390
+ <wp:postmeta>
1391
+ <wp:meta_key><![CDATA[_wp_attachment_context]]></wp:meta_key>
1392
+ <wp:meta_value><![CDATA[site-icon]]></wp:meta_value>
1393
+ </wp:postmeta>
1394
+ <wp:postmeta>
1395
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1396
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:512;s:6:"height";i:512;s:4:"file";s:24:"2016/09/cropped-icon.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"cropped-icon-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:24:"cropped-icon-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"cropped-icon-280x180.png";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:9:"image/png";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:24:"cropped-icon-272x182.png";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:9:"image/png";}s:13:"site_icon-270";a:4:{s:4:"file";s:24:"cropped-icon-270x270.png";s:5:"width";i:270;s:6:"height";i:270;s:9:"mime-type";s:9:"image/png";}s:13:"site_icon-192";a:4:{s:4:"file";s:24:"cropped-icon-192x192.png";s:5:"width";i:192;s:6:"height";i:192;s:9:"mime-type";s:9:"image/png";}s:13:"site_icon-180";a:4:{s:4:"file";s:24:"cropped-icon-180x180.png";s:5:"width";i:180;s:6:"height";i:180;s:9:"mime-type";s:9:"image/png";}s:12:"site_icon-32";a:4:{s:4:"file";s:22:"cropped-icon-32x32.png";s:5:"width";i:32;s:6:"height";i:32;s:9:"mime-type";s:9:"image/png";}}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>
1397
+ </wp:postmeta>
1398
+ </item>
1399
+ <item>
1400
+ <title>photo-1472808900176-aa74f96048c0</title>
1401
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1472808900176-aa74f96048c0/</link>
1402
+ <pubDate>Sun, 18 Sep 2016 12:44:05 +0000</pubDate>
1403
+ <dc:creator><![CDATA[admin]]></dc:creator>
1404
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1472808900176-aa74f96048c0.jpg</guid>
1405
+ <description></description>
1406
+ <content:encoded><![CDATA[]]></content:encoded>
1407
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1408
+ <wp:post_id>502</wp:post_id>
1409
+ <wp:post_date><![CDATA[2016-09-18 12:44:05]]></wp:post_date>
1410
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:05]]></wp:post_date_gmt>
1411
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1412
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1413
+ <wp:post_name><![CDATA[photo-1472808900176-aa74f96048c0]]></wp:post_name>
1414
+ <wp:status><![CDATA[inherit]]></wp:status>
1415
+ <wp:post_parent>134</wp:post_parent>
1416
+ <wp:menu_order>0</wp:menu_order>
1417
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1418
+ <wp:post_password><![CDATA[]]></wp:post_password>
1419
+ <wp:is_sticky>0</wp:is_sticky>
1420
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1472808900176-aa74f96048c0.jpg]]></wp:attachment_url>
1421
+ <wp:postmeta>
1422
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1423
+ <wp:meta_value><![CDATA[2016/08/photo-1472808900176-aa74f96048c0.jpg]]></wp:meta_value>
1424
+ </wp:postmeta>
1425
+ <wp:postmeta>
1426
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1427
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/08/photo-1472808900176-aa74f96048c0.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1472808900176-aa74f96048c0-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1472808900176-aa74f96048c0-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1472808900176-aa74f96048c0-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1472808900176-aa74f96048c0-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1472808900176-aa74f96048c0-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1472808900176-aa74f96048c0-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1428
+ </wp:postmeta>
1429
+ </item>
1430
+ <item>
1431
+ <title>photo-1472849676747-48a51c0c30b6</title>
1432
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1472849676747-48a51c0c30b6/</link>
1433
+ <pubDate>Sun, 18 Sep 2016 12:44:07 +0000</pubDate>
1434
+ <dc:creator><![CDATA[admin]]></dc:creator>
1435
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1472849676747-48a51c0c30b6.jpg</guid>
1436
+ <description></description>
1437
+ <content:encoded><![CDATA[]]></content:encoded>
1438
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1439
+ <wp:post_id>503</wp:post_id>
1440
+ <wp:post_date><![CDATA[2016-09-18 12:44:07]]></wp:post_date>
1441
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:07]]></wp:post_date_gmt>
1442
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1443
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1444
+ <wp:post_name><![CDATA[photo-1472849676747-48a51c0c30b6]]></wp:post_name>
1445
+ <wp:status><![CDATA[inherit]]></wp:status>
1446
+ <wp:post_parent>134</wp:post_parent>
1447
+ <wp:menu_order>0</wp:menu_order>
1448
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1449
+ <wp:post_password><![CDATA[]]></wp:post_password>
1450
+ <wp:is_sticky>0</wp:is_sticky>
1451
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1472849676747-48a51c0c30b6.jpg]]></wp:attachment_url>
1452
+ <wp:postmeta>
1453
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1454
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:778;s:4:"file";s:44:"2016/08/photo-1472849676747-48a51c0c30b6.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1472849676747-48a51c0c30b6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1472849676747-48a51c0c30b6-300x195.jpg";s:5:"width";i:300;s:6:"height";i:195;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1472849676747-48a51c0c30b6-768x498.jpg";s:5:"width";i:768;s:6:"height";i:498;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1472849676747-48a51c0c30b6-1024x664.jpg";s:5:"width";i:1024;s:6:"height";i:664;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1472849676747-48a51c0c30b6-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1472849676747-48a51c0c30b6-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1455
+ </wp:postmeta>
1456
+ <wp:postmeta>
1457
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1458
+ <wp:meta_value><![CDATA[2016/08/photo-1472849676747-48a51c0c30b6.jpg]]></wp:meta_value>
1459
+ </wp:postmeta>
1460
+ </item>
1461
+ <item>
1462
+ <title>photo-1473050357442-3dcb2fb2b1ba</title>
1463
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473050357442-3dcb2fb2b1ba/</link>
1464
+ <pubDate>Sun, 18 Sep 2016 12:44:11 +0000</pubDate>
1465
+ <dc:creator><![CDATA[admin]]></dc:creator>
1466
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473050357442-3dcb2fb2b1ba.jpg</guid>
1467
+ <description></description>
1468
+ <content:encoded><![CDATA[]]></content:encoded>
1469
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1470
+ <wp:post_id>504</wp:post_id>
1471
+ <wp:post_date><![CDATA[2016-09-18 12:44:11]]></wp:post_date>
1472
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:11]]></wp:post_date_gmt>
1473
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1474
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1475
+ <wp:post_name><![CDATA[photo-1473050357442-3dcb2fb2b1ba]]></wp:post_name>
1476
+ <wp:status><![CDATA[inherit]]></wp:status>
1477
+ <wp:post_parent>134</wp:post_parent>
1478
+ <wp:menu_order>0</wp:menu_order>
1479
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1480
+ <wp:post_password><![CDATA[]]></wp:post_password>
1481
+ <wp:is_sticky>0</wp:is_sticky>
1482
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473050357442-3dcb2fb2b1ba.jpg]]></wp:attachment_url>
1483
+ <wp:postmeta>
1484
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1485
+ <wp:meta_value><![CDATA[2016/08/photo-1473050357442-3dcb2fb2b1ba.jpg]]></wp:meta_value>
1486
+ </wp:postmeta>
1487
+ <wp:postmeta>
1488
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1489
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:802;s:4:"file";s:44:"2016/08/photo-1473050357442-3dcb2fb2b1ba.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473050357442-3dcb2fb2b1ba-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473050357442-3dcb2fb2b1ba-300x201.jpg";s:5:"width";i:300;s:6:"height";i:201;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473050357442-3dcb2fb2b1ba-768x513.jpg";s:5:"width";i:768;s:6:"height";i:513;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473050357442-3dcb2fb2b1ba-1024x684.jpg";s:5:"width";i:1024;s:6:"height";i:684;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473050357442-3dcb2fb2b1ba-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473050357442-3dcb2fb2b1ba-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1490
+ </wp:postmeta>
1491
+ </item>
1492
+ <item>
1493
+ <title>photo-1473163162601-1dc5c6676070</title>
1494
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473163162601-1dc5c6676070/</link>
1495
+ <pubDate>Sun, 18 Sep 2016 12:44:14 +0000</pubDate>
1496
+ <dc:creator><![CDATA[admin]]></dc:creator>
1497
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473163162601-1dc5c6676070.jpg</guid>
1498
+ <description></description>
1499
+ <content:encoded><![CDATA[]]></content:encoded>
1500
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1501
+ <wp:post_id>505</wp:post_id>
1502
+ <wp:post_date><![CDATA[2016-09-18 12:44:14]]></wp:post_date>
1503
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:14]]></wp:post_date_gmt>
1504
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1505
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1506
+ <wp:post_name><![CDATA[photo-1473163162601-1dc5c6676070]]></wp:post_name>
1507
+ <wp:status><![CDATA[inherit]]></wp:status>
1508
+ <wp:post_parent>134</wp:post_parent>
1509
+ <wp:menu_order>0</wp:menu_order>
1510
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1511
+ <wp:post_password><![CDATA[]]></wp:post_password>
1512
+ <wp:is_sticky>0</wp:is_sticky>
1513
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473163162601-1dc5c6676070.jpg]]></wp:attachment_url>
1514
+ <wp:postmeta>
1515
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1516
+ <wp:meta_value><![CDATA[2016/08/photo-1473163162601-1dc5c6676070.jpg]]></wp:meta_value>
1517
+ </wp:postmeta>
1518
+ <wp:postmeta>
1519
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1520
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:1067;s:4:"file";s:44:"2016/08/photo-1473163162601-1dc5c6676070.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473163162601-1dc5c6676070-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473163162601-1dc5c6676070-300x267.jpg";s:5:"width";i:300;s:6:"height";i:267;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473163162601-1dc5c6676070-768x683.jpg";s:5:"width";i:768;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473163162601-1dc5c6676070-1024x911.jpg";s:5:"width";i:1024;s:6:"height";i:911;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473163162601-1dc5c6676070-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473163162601-1dc5c6676070-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1521
+ </wp:postmeta>
1522
+ </item>
1523
+ <item>
1524
+ <title>photo-1473182296310-8f43085844fd</title>
1525
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473182296310-8f43085844fd/</link>
1526
+ <pubDate>Sun, 18 Sep 2016 12:44:15 +0000</pubDate>
1527
+ <dc:creator><![CDATA[admin]]></dc:creator>
1528
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473182296310-8f43085844fd.jpg</guid>
1529
+ <description></description>
1530
+ <content:encoded><![CDATA[]]></content:encoded>
1531
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1532
+ <wp:post_id>506</wp:post_id>
1533
+ <wp:post_date><![CDATA[2016-09-18 12:44:15]]></wp:post_date>
1534
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:15]]></wp:post_date_gmt>
1535
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1536
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1537
+ <wp:post_name><![CDATA[photo-1473182296310-8f43085844fd]]></wp:post_name>
1538
+ <wp:status><![CDATA[inherit]]></wp:status>
1539
+ <wp:post_parent>134</wp:post_parent>
1540
+ <wp:menu_order>0</wp:menu_order>
1541
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1542
+ <wp:post_password><![CDATA[]]></wp:post_password>
1543
+ <wp:is_sticky>0</wp:is_sticky>
1544
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473182296310-8f43085844fd.jpg]]></wp:attachment_url>
1545
+ <wp:postmeta>
1546
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1547
+ <wp:meta_value><![CDATA[2016/08/photo-1473182296310-8f43085844fd.jpg]]></wp:meta_value>
1548
+ </wp:postmeta>
1549
+ <wp:postmeta>
1550
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1551
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/08/photo-1473182296310-8f43085844fd.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473182296310-8f43085844fd-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473182296310-8f43085844fd-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473182296310-8f43085844fd-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473182296310-8f43085844fd-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473182296310-8f43085844fd-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473182296310-8f43085844fd-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1552
+ </wp:postmeta>
1553
+ </item>
1554
+ <item>
1555
+ <title>photo-1473186578172-c141e6798cf4</title>
1556
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473186578172-c141e6798cf4/</link>
1557
+ <pubDate>Sun, 18 Sep 2016 12:44:18 +0000</pubDate>
1558
+ <dc:creator><![CDATA[admin]]></dc:creator>
1559
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473186578172-c141e6798cf4.jpg</guid>
1560
+ <description></description>
1561
+ <content:encoded><![CDATA[]]></content:encoded>
1562
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1563
+ <wp:post_id>507</wp:post_id>
1564
+ <wp:post_date><![CDATA[2016-09-18 12:44:18]]></wp:post_date>
1565
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:18]]></wp:post_date_gmt>
1566
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1567
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1568
+ <wp:post_name><![CDATA[photo-1473186578172-c141e6798cf4]]></wp:post_name>
1569
+ <wp:status><![CDATA[inherit]]></wp:status>
1570
+ <wp:post_parent>134</wp:post_parent>
1571
+ <wp:menu_order>0</wp:menu_order>
1572
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1573
+ <wp:post_password><![CDATA[]]></wp:post_password>
1574
+ <wp:is_sticky>0</wp:is_sticky>
1575
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473186578172-c141e6798cf4.jpg]]></wp:attachment_url>
1576
+ <wp:postmeta>
1577
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1578
+ <wp:meta_value><![CDATA[2016/08/photo-1473186578172-c141e6798cf4.jpg]]></wp:meta_value>
1579
+ </wp:postmeta>
1580
+ <wp:postmeta>
1581
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1582
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:901;s:4:"file";s:44:"2016/08/photo-1473186578172-c141e6798cf4.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473186578172-c141e6798cf4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473186578172-c141e6798cf4-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473186578172-c141e6798cf4-768x577.jpg";s:5:"width";i:768;s:6:"height";i:577;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473186578172-c141e6798cf4-1024x769.jpg";s:5:"width";i:1024;s:6:"height";i:769;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473186578172-c141e6798cf4-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473186578172-c141e6798cf4-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1583
+ </wp:postmeta>
1584
+ </item>
1585
+ <item>
1586
+ <title>photo-1473186664755-1c495368b58c</title>
1587
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473186664755-1c495368b58c/</link>
1588
+ <pubDate>Sun, 18 Sep 2016 12:44:19 +0000</pubDate>
1589
+ <dc:creator><![CDATA[admin]]></dc:creator>
1590
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473186664755-1c495368b58c.jpg</guid>
1591
+ <description></description>
1592
+ <content:encoded><![CDATA[]]></content:encoded>
1593
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1594
+ <wp:post_id>508</wp:post_id>
1595
+ <wp:post_date><![CDATA[2016-09-18 12:44:19]]></wp:post_date>
1596
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:19]]></wp:post_date_gmt>
1597
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1598
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1599
+ <wp:post_name><![CDATA[photo-1473186664755-1c495368b58c]]></wp:post_name>
1600
+ <wp:status><![CDATA[inherit]]></wp:status>
1601
+ <wp:post_parent>134</wp:post_parent>
1602
+ <wp:menu_order>0</wp:menu_order>
1603
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1604
+ <wp:post_password><![CDATA[]]></wp:post_password>
1605
+ <wp:is_sticky>0</wp:is_sticky>
1606
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473186664755-1c495368b58c.jpg]]></wp:attachment_url>
1607
+ <wp:postmeta>
1608
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1609
+ <wp:meta_value><![CDATA[2016/08/photo-1473186664755-1c495368b58c.jpg]]></wp:meta_value>
1610
+ </wp:postmeta>
1611
+ <wp:postmeta>
1612
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1613
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/08/photo-1473186664755-1c495368b58c.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473186664755-1c495368b58c-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473186664755-1c495368b58c-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473186664755-1c495368b58c-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473186664755-1c495368b58c-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473186664755-1c495368b58c-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473186664755-1c495368b58c-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1614
+ </wp:postmeta>
1615
+ </item>
1616
+ <item>
1617
+ <title>photo-1473200705267-319bfdc89671</title>
1618
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473200705267-319bfdc89671/</link>
1619
+ <pubDate>Sun, 18 Sep 2016 12:44:22 +0000</pubDate>
1620
+ <dc:creator><![CDATA[admin]]></dc:creator>
1621
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473200705267-319bfdc89671.jpg</guid>
1622
+ <description></description>
1623
+ <content:encoded><![CDATA[]]></content:encoded>
1624
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1625
+ <wp:post_id>509</wp:post_id>
1626
+ <wp:post_date><![CDATA[2016-09-18 12:44:22]]></wp:post_date>
1627
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:22]]></wp:post_date_gmt>
1628
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1629
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1630
+ <wp:post_name><![CDATA[photo-1473200705267-319bfdc89671]]></wp:post_name>
1631
+ <wp:status><![CDATA[inherit]]></wp:status>
1632
+ <wp:post_parent>134</wp:post_parent>
1633
+ <wp:menu_order>0</wp:menu_order>
1634
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1635
+ <wp:post_password><![CDATA[]]></wp:post_password>
1636
+ <wp:is_sticky>0</wp:is_sticky>
1637
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473200705267-319bfdc89671.jpg]]></wp:attachment_url>
1638
+ <wp:postmeta>
1639
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1640
+ <wp:meta_value><![CDATA[2016/08/photo-1473200705267-319bfdc89671.jpg]]></wp:meta_value>
1641
+ </wp:postmeta>
1642
+ <wp:postmeta>
1643
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1644
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/08/photo-1473200705267-319bfdc89671.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473200705267-319bfdc89671-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473200705267-319bfdc89671-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473200705267-319bfdc89671-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473200705267-319bfdc89671-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473200705267-319bfdc89671-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473200705267-319bfdc89671-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1645
+ </wp:postmeta>
1646
+ </item>
1647
+ <item>
1648
+ <title>photo-1473225071450-1f1462d5aa92</title>
1649
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473225071450-1f1462d5aa92/</link>
1650
+ <pubDate>Sun, 18 Sep 2016 12:44:25 +0000</pubDate>
1651
+ <dc:creator><![CDATA[admin]]></dc:creator>
1652
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473225071450-1f1462d5aa92.jpg</guid>
1653
+ <description></description>
1654
+ <content:encoded><![CDATA[]]></content:encoded>
1655
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1656
+ <wp:post_id>510</wp:post_id>
1657
+ <wp:post_date><![CDATA[2016-09-18 12:44:25]]></wp:post_date>
1658
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:25]]></wp:post_date_gmt>
1659
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1660
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1661
+ <wp:post_name><![CDATA[photo-1473225071450-1f1462d5aa92]]></wp:post_name>
1662
+ <wp:status><![CDATA[inherit]]></wp:status>
1663
+ <wp:post_parent>134</wp:post_parent>
1664
+ <wp:menu_order>0</wp:menu_order>
1665
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1666
+ <wp:post_password><![CDATA[]]></wp:post_password>
1667
+ <wp:is_sticky>0</wp:is_sticky>
1668
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473225071450-1f1462d5aa92.jpg]]></wp:attachment_url>
1669
+ <wp:postmeta>
1670
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1671
+ <wp:meta_value><![CDATA[2016/08/photo-1473225071450-1f1462d5aa92.jpg]]></wp:meta_value>
1672
+ </wp:postmeta>
1673
+ <wp:postmeta>
1674
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1675
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:795;s:4:"file";s:44:"2016/08/photo-1473225071450-1f1462d5aa92.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473225071450-1f1462d5aa92-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473225071450-1f1462d5aa92-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473225071450-1f1462d5aa92-768x509.jpg";s:5:"width";i:768;s:6:"height";i:509;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473225071450-1f1462d5aa92-1024x678.jpg";s:5:"width";i:1024;s:6:"height";i:678;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473225071450-1f1462d5aa92-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473225071450-1f1462d5aa92-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1676
+ </wp:postmeta>
1677
+ </item>
1678
+ <item>
1679
+ <title>photo-1473254773321-be90a4a8e70c</title>
1680
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473254773321-be90a4a8e70c/</link>
1681
+ <pubDate>Sun, 18 Sep 2016 12:44:28 +0000</pubDate>
1682
+ <dc:creator><![CDATA[admin]]></dc:creator>
1683
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473254773321-be90a4a8e70c.jpg</guid>
1684
+ <description></description>
1685
+ <content:encoded><![CDATA[]]></content:encoded>
1686
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1687
+ <wp:post_id>511</wp:post_id>
1688
+ <wp:post_date><![CDATA[2016-09-18 12:44:28]]></wp:post_date>
1689
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:28]]></wp:post_date_gmt>
1690
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1691
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1692
+ <wp:post_name><![CDATA[photo-1473254773321-be90a4a8e70c]]></wp:post_name>
1693
+ <wp:status><![CDATA[inherit]]></wp:status>
1694
+ <wp:post_parent>134</wp:post_parent>
1695
+ <wp:menu_order>0</wp:menu_order>
1696
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1697
+ <wp:post_password><![CDATA[]]></wp:post_password>
1698
+ <wp:is_sticky>0</wp:is_sticky>
1699
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473254773321-be90a4a8e70c.jpg]]></wp:attachment_url>
1700
+ <wp:postmeta>
1701
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1702
+ <wp:meta_value><![CDATA[2016/08/photo-1473254773321-be90a4a8e70c.jpg]]></wp:meta_value>
1703
+ </wp:postmeta>
1704
+ <wp:postmeta>
1705
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1706
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:799;s:4:"file";s:44:"2016/08/photo-1473254773321-be90a4a8e70c.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473254773321-be90a4a8e70c-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473254773321-be90a4a8e70c-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473254773321-be90a4a8e70c-768x511.jpg";s:5:"width";i:768;s:6:"height";i:511;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473254773321-be90a4a8e70c-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473254773321-be90a4a8e70c-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473254773321-be90a4a8e70c-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1707
+ </wp:postmeta>
1708
+ </item>
1709
+ <item>
1710
+ <title>photo-1473355792139-d329cfbb5541</title>
1711
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473355792139-d329cfbb5541/</link>
1712
+ <pubDate>Sun, 18 Sep 2016 12:44:30 +0000</pubDate>
1713
+ <dc:creator><![CDATA[admin]]></dc:creator>
1714
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473355792139-d329cfbb5541.jpg</guid>
1715
+ <description></description>
1716
+ <content:encoded><![CDATA[]]></content:encoded>
1717
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1718
+ <wp:post_id>512</wp:post_id>
1719
+ <wp:post_date><![CDATA[2016-09-18 12:44:30]]></wp:post_date>
1720
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:30]]></wp:post_date_gmt>
1721
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1722
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1723
+ <wp:post_name><![CDATA[photo-1473355792139-d329cfbb5541]]></wp:post_name>
1724
+ <wp:status><![CDATA[inherit]]></wp:status>
1725
+ <wp:post_parent>134</wp:post_parent>
1726
+ <wp:menu_order>0</wp:menu_order>
1727
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1728
+ <wp:post_password><![CDATA[]]></wp:post_password>
1729
+ <wp:is_sticky>0</wp:is_sticky>
1730
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473355792139-d329cfbb5541.jpg]]></wp:attachment_url>
1731
+ <wp:postmeta>
1732
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1733
+ <wp:meta_value><![CDATA[2016/08/photo-1473355792139-d329cfbb5541.jpg]]></wp:meta_value>
1734
+ </wp:postmeta>
1735
+ <wp:postmeta>
1736
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1737
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:675;s:4:"file";s:44:"2016/08/photo-1473355792139-d329cfbb5541.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473355792139-d329cfbb5541-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473355792139-d329cfbb5541-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473355792139-d329cfbb5541-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473355792139-d329cfbb5541-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473355792139-d329cfbb5541-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473355792139-d329cfbb5541-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1738
+ </wp:postmeta>
1739
+ </item>
1740
+ <item>
1741
+ <title>photo-1473367961721-680e99e8e882</title>
1742
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473367961721-680e99e8e882/</link>
1743
+ <pubDate>Sun, 18 Sep 2016 12:44:31 +0000</pubDate>
1744
+ <dc:creator><![CDATA[admin]]></dc:creator>
1745
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473367961721-680e99e8e882.jpg</guid>
1746
+ <description></description>
1747
+ <content:encoded><![CDATA[]]></content:encoded>
1748
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1749
+ <wp:post_id>513</wp:post_id>
1750
+ <wp:post_date><![CDATA[2016-09-18 12:44:31]]></wp:post_date>
1751
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:31]]></wp:post_date_gmt>
1752
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1753
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1754
+ <wp:post_name><![CDATA[photo-1473367961721-680e99e8e882]]></wp:post_name>
1755
+ <wp:status><![CDATA[inherit]]></wp:status>
1756
+ <wp:post_parent>134</wp:post_parent>
1757
+ <wp:menu_order>0</wp:menu_order>
1758
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1759
+ <wp:post_password><![CDATA[]]></wp:post_password>
1760
+ <wp:is_sticky>0</wp:is_sticky>
1761
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473367961721-680e99e8e882.jpg]]></wp:attachment_url>
1762
+ <wp:postmeta>
1763
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1764
+ <wp:meta_value><![CDATA[2016/08/photo-1473367961721-680e99e8e882.jpg]]></wp:meta_value>
1765
+ </wp:postmeta>
1766
+ <wp:postmeta>
1767
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1768
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:730;s:4:"file";s:44:"2016/08/photo-1473367961721-680e99e8e882.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473367961721-680e99e8e882-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473367961721-680e99e8e882-300x183.jpg";s:5:"width";i:300;s:6:"height";i:183;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473367961721-680e99e8e882-768x467.jpg";s:5:"width";i:768;s:6:"height";i:467;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473367961721-680e99e8e882-1024x623.jpg";s:5:"width";i:1024;s:6:"height";i:623;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473367961721-680e99e8e882-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473367961721-680e99e8e882-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1769
+ </wp:postmeta>
1770
+ </item>
1771
+ <item>
1772
+ <title>photo-1473442240418-452f03b7ae40</title>
1773
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473442240418-452f03b7ae40/</link>
1774
+ <pubDate>Sun, 18 Sep 2016 12:44:33 +0000</pubDate>
1775
+ <dc:creator><![CDATA[admin]]></dc:creator>
1776
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473442240418-452f03b7ae40.jpg</guid>
1777
+ <description></description>
1778
+ <content:encoded><![CDATA[]]></content:encoded>
1779
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1780
+ <wp:post_id>514</wp:post_id>
1781
+ <wp:post_date><![CDATA[2016-09-18 12:44:33]]></wp:post_date>
1782
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:33]]></wp:post_date_gmt>
1783
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1784
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1785
+ <wp:post_name><![CDATA[photo-1473442240418-452f03b7ae40]]></wp:post_name>
1786
+ <wp:status><![CDATA[inherit]]></wp:status>
1787
+ <wp:post_parent>134</wp:post_parent>
1788
+ <wp:menu_order>0</wp:menu_order>
1789
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1790
+ <wp:post_password><![CDATA[]]></wp:post_password>
1791
+ <wp:is_sticky>0</wp:is_sticky>
1792
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473442240418-452f03b7ae40.jpg]]></wp:attachment_url>
1793
+ <wp:postmeta>
1794
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1795
+ <wp:meta_value><![CDATA[2016/08/photo-1473442240418-452f03b7ae40.jpg]]></wp:meta_value>
1796
+ </wp:postmeta>
1797
+ <wp:postmeta>
1798
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1799
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/08/photo-1473442240418-452f03b7ae40.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473442240418-452f03b7ae40-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473442240418-452f03b7ae40-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473442240418-452f03b7ae40-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473442240418-452f03b7ae40-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473442240418-452f03b7ae40-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473442240418-452f03b7ae40-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1800
+ </wp:postmeta>
1801
+ </item>
1802
+ <item>
1803
+ <title>photo-1473536039939-5230ae20467d</title>
1804
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473536039939-5230ae20467d/</link>
1805
+ <pubDate>Sun, 18 Sep 2016 12:44:35 +0000</pubDate>
1806
+ <dc:creator><![CDATA[admin]]></dc:creator>
1807
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473536039939-5230ae20467d.jpg</guid>
1808
+ <description></description>
1809
+ <content:encoded><![CDATA[]]></content:encoded>
1810
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1811
+ <wp:post_id>515</wp:post_id>
1812
+ <wp:post_date><![CDATA[2016-09-18 12:44:35]]></wp:post_date>
1813
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:35]]></wp:post_date_gmt>
1814
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1815
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1816
+ <wp:post_name><![CDATA[photo-1473536039939-5230ae20467d]]></wp:post_name>
1817
+ <wp:status><![CDATA[inherit]]></wp:status>
1818
+ <wp:post_parent>134</wp:post_parent>
1819
+ <wp:menu_order>0</wp:menu_order>
1820
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1821
+ <wp:post_password><![CDATA[]]></wp:post_password>
1822
+ <wp:is_sticky>0</wp:is_sticky>
1823
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473536039939-5230ae20467d.jpg]]></wp:attachment_url>
1824
+ <wp:postmeta>
1825
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1826
+ <wp:meta_value><![CDATA[2016/08/photo-1473536039939-5230ae20467d.jpg]]></wp:meta_value>
1827
+ </wp:postmeta>
1828
+ <wp:postmeta>
1829
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1830
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/08/photo-1473536039939-5230ae20467d.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473536039939-5230ae20467d-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473536039939-5230ae20467d-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473536039939-5230ae20467d-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473536039939-5230ae20467d-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473536039939-5230ae20467d-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473536039939-5230ae20467d-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1831
+ </wp:postmeta>
1832
+ </item>
1833
+ <item>
1834
+ <title>photo-1473557656032-3c55d06303d7</title>
1835
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473557656032-3c55d06303d7/</link>
1836
+ <pubDate>Sun, 18 Sep 2016 12:44:37 +0000</pubDate>
1837
+ <dc:creator><![CDATA[admin]]></dc:creator>
1838
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473557656032-3c55d06303d7.jpg</guid>
1839
+ <description></description>
1840
+ <content:encoded><![CDATA[]]></content:encoded>
1841
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1842
+ <wp:post_id>516</wp:post_id>
1843
+ <wp:post_date><![CDATA[2016-09-18 12:44:37]]></wp:post_date>
1844
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:37]]></wp:post_date_gmt>
1845
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1846
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1847
+ <wp:post_name><![CDATA[photo-1473557656032-3c55d06303d7]]></wp:post_name>
1848
+ <wp:status><![CDATA[inherit]]></wp:status>
1849
+ <wp:post_parent>134</wp:post_parent>
1850
+ <wp:menu_order>0</wp:menu_order>
1851
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1852
+ <wp:post_password><![CDATA[]]></wp:post_password>
1853
+ <wp:is_sticky>0</wp:is_sticky>
1854
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473557656032-3c55d06303d7.jpg]]></wp:attachment_url>
1855
+ <wp:postmeta>
1856
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1857
+ <wp:meta_value><![CDATA[2016/08/photo-1473557656032-3c55d06303d7.jpg]]></wp:meta_value>
1858
+ </wp:postmeta>
1859
+ <wp:postmeta>
1860
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1861
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:44:"2016/08/photo-1473557656032-3c55d06303d7.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473557656032-3c55d06303d7-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473557656032-3c55d06303d7-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473557656032-3c55d06303d7-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473557656032-3c55d06303d7-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473557656032-3c55d06303d7-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473557656032-3c55d06303d7-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1862
+ </wp:postmeta>
1863
+ </item>
1864
+ <item>
1865
+ <title>photo-1473583821644-e90554a12721</title>
1866
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1473583821644-e90554a12721/</link>
1867
+ <pubDate>Sun, 18 Sep 2016 12:44:39 +0000</pubDate>
1868
+ <dc:creator><![CDATA[admin]]></dc:creator>
1869
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473583821644-e90554a12721.jpg</guid>
1870
+ <description></description>
1871
+ <content:encoded><![CDATA[]]></content:encoded>
1872
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1873
+ <wp:post_id>517</wp:post_id>
1874
+ <wp:post_date><![CDATA[2016-09-18 12:44:39]]></wp:post_date>
1875
+ <wp:post_date_gmt><![CDATA[2016-09-18 12:44:39]]></wp:post_date_gmt>
1876
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1877
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1878
+ <wp:post_name><![CDATA[photo-1473583821644-e90554a12721]]></wp:post_name>
1879
+ <wp:status><![CDATA[inherit]]></wp:status>
1880
+ <wp:post_parent>134</wp:post_parent>
1881
+ <wp:menu_order>0</wp:menu_order>
1882
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1883
+ <wp:post_password><![CDATA[]]></wp:post_password>
1884
+ <wp:is_sticky>0</wp:is_sticky>
1885
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1473583821644-e90554a12721.jpg]]></wp:attachment_url>
1886
+ <wp:postmeta>
1887
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1888
+ <wp:meta_value><![CDATA[2016/08/photo-1473583821644-e90554a12721.jpg]]></wp:meta_value>
1889
+ </wp:postmeta>
1890
+ <wp:postmeta>
1891
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1892
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:661;s:4:"file";s:44:"2016/08/photo-1473583821644-e90554a12721.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1473583821644-e90554a12721-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1473583821644-e90554a12721-300x165.jpg";s:5:"width";i:300;s:6:"height";i:165;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"photo-1473583821644-e90554a12721-768x423.jpg";s:5:"width";i:768;s:6:"height";i:423;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1473583821644-e90554a12721-1024x564.jpg";s:5:"width";i:1024;s:6:"height";i:564;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1473583821644-e90554a12721-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1473583821644-e90554a12721-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1893
+ </wp:postmeta>
1894
+ </item>
1895
+ <item>
1896
+ <title>photo-1465194331848-b4709877b1d4</title>
1897
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1465194331848-b4709877b1d4/</link>
1898
+ <pubDate>Sun, 18 Sep 2016 13:12:06 +0000</pubDate>
1899
+ <dc:creator><![CDATA[admin]]></dc:creator>
1900
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1465194331848-b4709877b1d4.jpg</guid>
1901
+ <description></description>
1902
+ <content:encoded><![CDATA[]]></content:encoded>
1903
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1904
+ <wp:post_id>530</wp:post_id>
1905
+ <wp:post_date><![CDATA[2016-09-18 13:12:06]]></wp:post_date>
1906
+ <wp:post_date_gmt><![CDATA[2016-09-18 13:12:06]]></wp:post_date_gmt>
1907
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1908
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1909
+ <wp:post_name><![CDATA[photo-1465194331848-b4709877b1d4]]></wp:post_name>
1910
+ <wp:status><![CDATA[inherit]]></wp:status>
1911
+ <wp:post_parent>134</wp:post_parent>
1912
+ <wp:menu_order>0</wp:menu_order>
1913
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1914
+ <wp:post_password><![CDATA[]]></wp:post_password>
1915
+ <wp:is_sticky>0</wp:is_sticky>
1916
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1465194331848-b4709877b1d4.jpg]]></wp:attachment_url>
1917
+ <wp:postmeta>
1918
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1919
+ <wp:meta_value><![CDATA[2016/08/photo-1465194331848-b4709877b1d4.jpg]]></wp:meta_value>
1920
+ </wp:postmeta>
1921
+ <wp:postmeta>
1922
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1923
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:1200;s:4:"file";s:44:"2016/08/photo-1465194331848-b4709877b1d4.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1465194331848-b4709877b1d4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1465194331848-b4709877b1d4-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:45:"photo-1465194331848-b4709877b1d4-768x1152.jpg";s:5:"width";i:768;s:6:"height";i:1152;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1465194331848-b4709877b1d4-683x1024.jpg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1465194331848-b4709877b1d4-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1465194331848-b4709877b1d4-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1924
+ </wp:postmeta>
1925
+ </item>
1926
+ <item>
1927
+ <title>photo-1465513186934-3f5d20797c3f</title>
1928
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gallery/photo-1465513186934-3f5d20797c3f/</link>
1929
+ <pubDate>Sun, 18 Sep 2016 13:12:09 +0000</pubDate>
1930
+ <dc:creator><![CDATA[admin]]></dc:creator>
1931
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1465513186934-3f5d20797c3f.jpg</guid>
1932
+ <description></description>
1933
+ <content:encoded><![CDATA[]]></content:encoded>
1934
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1935
+ <wp:post_id>531</wp:post_id>
1936
+ <wp:post_date><![CDATA[2016-09-18 13:12:09]]></wp:post_date>
1937
+ <wp:post_date_gmt><![CDATA[2016-09-18 13:12:09]]></wp:post_date_gmt>
1938
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1939
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1940
+ <wp:post_name><![CDATA[photo-1465513186934-3f5d20797c3f]]></wp:post_name>
1941
+ <wp:status><![CDATA[inherit]]></wp:status>
1942
+ <wp:post_parent>134</wp:post_parent>
1943
+ <wp:menu_order>0</wp:menu_order>
1944
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1945
+ <wp:post_password><![CDATA[]]></wp:post_password>
1946
+ <wp:is_sticky>0</wp:is_sticky>
1947
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/photo-1465513186934-3f5d20797c3f.jpg]]></wp:attachment_url>
1948
+ <wp:postmeta>
1949
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1950
+ <wp:meta_value><![CDATA[2016/08/photo-1465513186934-3f5d20797c3f.jpg]]></wp:meta_value>
1951
+ </wp:postmeta>
1952
+ <wp:postmeta>
1953
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1954
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:1200;s:4:"file";s:44:"2016/08/photo-1465513186934-3f5d20797c3f.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"photo-1465513186934-3f5d20797c3f-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:44:"photo-1465513186934-3f5d20797c3f-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:45:"photo-1465513186934-3f5d20797c3f-768x1152.jpg";s:5:"width";i:768;s:6:"height";i:1152;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"photo-1465513186934-3f5d20797c3f-683x1024.jpg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"photo-1465513186934-3f5d20797c3f-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:44:"photo-1465513186934-3f5d20797c3f-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1955
+ </wp:postmeta>
1956
+ </item>
1957
+ <item>
1958
+ <title>image-1</title>
1959
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/image/image-1/</link>
1960
+ <pubDate>Mon, 19 Sep 2016 07:21:23 +0000</pubDate>
1961
+ <dc:creator><![CDATA[admin]]></dc:creator>
1962
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/image-1.jpg</guid>
1963
+ <description></description>
1964
+ <content:encoded><![CDATA[]]></content:encoded>
1965
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1966
+ <wp:post_id>558</wp:post_id>
1967
+ <wp:post_date><![CDATA[2016-09-19 07:21:23]]></wp:post_date>
1968
+ <wp:post_date_gmt><![CDATA[2016-09-19 07:21:23]]></wp:post_date_gmt>
1969
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
1970
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1971
+ <wp:post_name><![CDATA[image-1]]></wp:post_name>
1972
+ <wp:status><![CDATA[inherit]]></wp:status>
1973
+ <wp:post_parent>136</wp:post_parent>
1974
+ <wp:menu_order>0</wp:menu_order>
1975
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
1976
+ <wp:post_password><![CDATA[]]></wp:post_password>
1977
+ <wp:is_sticky>0</wp:is_sticky>
1978
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/image-1.jpg]]></wp:attachment_url>
1979
+ <wp:postmeta>
1980
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
1981
+ <wp:meta_value><![CDATA[2016/08/image-1.jpg]]></wp:meta_value>
1982
+ </wp:postmeta>
1983
+ <wp:postmeta>
1984
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
1985
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:533;s:4:"file";s:19:"2016/08/image-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image-1-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"image-1-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"image-1-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:19:"image-1-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
1986
+ </wp:postmeta>
1987
+ </item>
1988
+ <item>
1989
+ <title>image-2</title>
1990
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/image/image-2/</link>
1991
+ <pubDate>Mon, 19 Sep 2016 07:21:25 +0000</pubDate>
1992
+ <dc:creator><![CDATA[admin]]></dc:creator>
1993
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/image-2.jpg</guid>
1994
+ <description></description>
1995
+ <content:encoded><![CDATA[]]></content:encoded>
1996
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1997
+ <wp:post_id>559</wp:post_id>
1998
+ <wp:post_date><![CDATA[2016-09-19 07:21:25]]></wp:post_date>
1999
+ <wp:post_date_gmt><![CDATA[2016-09-19 07:21:25]]></wp:post_date_gmt>
2000
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2001
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2002
+ <wp:post_name><![CDATA[image-2]]></wp:post_name>
2003
+ <wp:status><![CDATA[inherit]]></wp:status>
2004
+ <wp:post_parent>136</wp:post_parent>
2005
+ <wp:menu_order>0</wp:menu_order>
2006
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2007
+ <wp:post_password><![CDATA[]]></wp:post_password>
2008
+ <wp:is_sticky>0</wp:is_sticky>
2009
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2016/08/image-2.jpg]]></wp:attachment_url>
2010
+ <wp:postmeta>
2011
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2012
+ <wp:meta_value><![CDATA[2016/08/image-2.jpg]]></wp:meta_value>
2013
+ </wp:postmeta>
2014
+ <wp:postmeta>
2015
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2016
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:533;s:4:"file";s:19:"2016/08/image-2.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image-2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image-2-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"image-2-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"image-2-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:19:"image-2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2017
+ </wp:postmeta>
2018
+ </item>
2019
+ <item>
2020
+ <title>pic1</title>
2021
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic1/</link>
2022
+ <pubDate>Sat, 20 May 2017 05:53:25 +0000</pubDate>
2023
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2024
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic1.jpg</guid>
2025
+ <description></description>
2026
+ <content:encoded><![CDATA[]]></content:encoded>
2027
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2028
+ <wp:post_id>1085</wp:post_id>
2029
+ <wp:post_date><![CDATA[2017-05-20 05:53:25]]></wp:post_date>
2030
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:53:25]]></wp:post_date_gmt>
2031
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2032
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2033
+ <wp:post_name><![CDATA[pic1]]></wp:post_name>
2034
+ <wp:status><![CDATA[inherit]]></wp:status>
2035
+ <wp:post_parent>938</wp:post_parent>
2036
+ <wp:menu_order>0</wp:menu_order>
2037
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2038
+ <wp:post_password><![CDATA[]]></wp:post_password>
2039
+ <wp:is_sticky>0</wp:is_sticky>
2040
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic1.jpg]]></wp:attachment_url>
2041
+ <wp:postmeta>
2042
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2043
+ <wp:meta_value><![CDATA[2017/05/pic1.jpg]]></wp:meta_value>
2044
+ </wp:postmeta>
2045
+ <wp:postmeta>
2046
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2047
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:613;s:4:"file";s:16:"2017/05/pic1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"pic1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"pic1-300x204.jpg";s:5:"width";i:300;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"pic1-768x523.jpg";s:5:"width";i:768;s:6:"height";i:523;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"pic1-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:16:"pic1-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2048
+ </wp:postmeta>
2049
+ </item>
2050
+ <item>
2051
+ <title>pic2</title>
2052
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic2/</link>
2053
+ <pubDate>Sat, 20 May 2017 05:53:27 +0000</pubDate>
2054
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2055
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic2.jpg</guid>
2056
+ <description></description>
2057
+ <content:encoded><![CDATA[]]></content:encoded>
2058
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2059
+ <wp:post_id>1086</wp:post_id>
2060
+ <wp:post_date><![CDATA[2017-05-20 05:53:27]]></wp:post_date>
2061
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:53:27]]></wp:post_date_gmt>
2062
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2063
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2064
+ <wp:post_name><![CDATA[pic2]]></wp:post_name>
2065
+ <wp:status><![CDATA[inherit]]></wp:status>
2066
+ <wp:post_parent>938</wp:post_parent>
2067
+ <wp:menu_order>0</wp:menu_order>
2068
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2069
+ <wp:post_password><![CDATA[]]></wp:post_password>
2070
+ <wp:is_sticky>0</wp:is_sticky>
2071
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic2.jpg]]></wp:attachment_url>
2072
+ <wp:postmeta>
2073
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2074
+ <wp:meta_value><![CDATA[2017/05/pic2.jpg]]></wp:meta_value>
2075
+ </wp:postmeta>
2076
+ <wp:postmeta>
2077
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2078
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:581;s:4:"file";s:16:"2017/05/pic2.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"pic2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"pic2-300x194.jpg";s:5:"width";i:300;s:6:"height";i:194;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"pic2-768x496.jpg";s:5:"width";i:768;s:6:"height";i:496;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"pic2-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:16:"pic2-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
2079
+ </wp:postmeta>
2080
+ </item>
2081
+ <item>
2082
+ <title>pic6</title>
2083
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic6/</link>
2084
+ <pubDate>Sat, 20 May 2017 05:53:35 +0000</pubDate>
2085
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2086
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic6.jpg</guid>
2087
+ <description></description>
2088
+ <content:encoded><![CDATA[]]></content:encoded>
2089
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2090
+ <wp:post_id>1090</wp:post_id>
2091
+ <wp:post_date><![CDATA[2017-05-20 05:53:35]]></wp:post_date>
2092
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:53:35]]></wp:post_date_gmt>
2093
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2094
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2095
+ <wp:post_name><![CDATA[pic6]]></wp:post_name>
2096
+ <wp:status><![CDATA[inherit]]></wp:status>
2097
+ <wp:post_parent>938</wp:post_parent>
2098
+ <wp:menu_order>0</wp:menu_order>
2099
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2100
+ <wp:post_password><![CDATA[]]></wp:post_password>
2101
+ <wp:is_sticky>0</wp:is_sticky>
2102
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic6.jpg]]></wp:attachment_url>
2103
+ <wp:postmeta>
2104
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2105
+ <wp:meta_value><![CDATA[2017/05/pic6.jpg]]></wp:meta_value>
2106
+ </wp:postmeta>
2107
+ <wp:postmeta>
2108
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2109
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:619;s:4:"file";s:16:"2017/05/pic6.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"pic6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"pic6-300x206.jpg";s:5:"width";i:300;s:6:"height";i:206;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"pic6-768x528.jpg";s:5:"width";i:768;s:6:"height";i:528;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"pic6-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:16:"pic6-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2110
+ </wp:postmeta>
2111
+ </item>
2112
+ <item>
2113
+ <title>pic8</title>
2114
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic8/</link>
2115
+ <pubDate>Sat, 20 May 2017 05:53:38 +0000</pubDate>
2116
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2117
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic8.jpg</guid>
2118
+ <description></description>
2119
+ <content:encoded><![CDATA[]]></content:encoded>
2120
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2121
+ <wp:post_id>1092</wp:post_id>
2122
+ <wp:post_date><![CDATA[2017-05-20 05:53:38]]></wp:post_date>
2123
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:53:38]]></wp:post_date_gmt>
2124
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2125
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2126
+ <wp:post_name><![CDATA[pic8]]></wp:post_name>
2127
+ <wp:status><![CDATA[inherit]]></wp:status>
2128
+ <wp:post_parent>938</wp:post_parent>
2129
+ <wp:menu_order>0</wp:menu_order>
2130
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2131
+ <wp:post_password><![CDATA[]]></wp:post_password>
2132
+ <wp:is_sticky>0</wp:is_sticky>
2133
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic8.jpg]]></wp:attachment_url>
2134
+ <wp:postmeta>
2135
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2136
+ <wp:meta_value><![CDATA[2017/05/pic8.jpg]]></wp:meta_value>
2137
+ </wp:postmeta>
2138
+ <wp:postmeta>
2139
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2140
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:675;s:4:"file";s:16:"2017/05/pic8.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"pic8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"pic8-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"pic8-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"pic8-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:16:"pic8-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2141
+ </wp:postmeta>
2142
+ </item>
2143
+ <item>
2144
+ <title>pic9</title>
2145
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic9/</link>
2146
+ <pubDate>Sat, 20 May 2017 05:53:41 +0000</pubDate>
2147
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2148
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic9.jpg</guid>
2149
+ <description></description>
2150
+ <content:encoded><![CDATA[]]></content:encoded>
2151
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2152
+ <wp:post_id>1093</wp:post_id>
2153
+ <wp:post_date><![CDATA[2017-05-20 05:53:41]]></wp:post_date>
2154
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:53:41]]></wp:post_date_gmt>
2155
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2156
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2157
+ <wp:post_name><![CDATA[pic9]]></wp:post_name>
2158
+ <wp:status><![CDATA[inherit]]></wp:status>
2159
+ <wp:post_parent>938</wp:post_parent>
2160
+ <wp:menu_order>0</wp:menu_order>
2161
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2162
+ <wp:post_password><![CDATA[]]></wp:post_password>
2163
+ <wp:is_sticky>0</wp:is_sticky>
2164
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic9.jpg]]></wp:attachment_url>
2165
+ <wp:postmeta>
2166
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2167
+ <wp:meta_value><![CDATA[2017/05/pic9.jpg]]></wp:meta_value>
2168
+ </wp:postmeta>
2169
+ <wp:postmeta>
2170
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2171
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:512;s:4:"file";s:16:"2017/05/pic9.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"pic9-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"pic9-300x171.jpg";s:5:"width";i:300;s:6:"height";i:171;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"pic9-768x437.jpg";s:5:"width";i:768;s:6:"height";i:437;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"pic9-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:16:"pic9-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2172
+ </wp:postmeta>
2173
+ </item>
2174
+ <item>
2175
+ <title>pic10</title>
2176
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic10/</link>
2177
+ <pubDate>Sat, 20 May 2017 05:53:45 +0000</pubDate>
2178
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2179
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic10.jpg</guid>
2180
+ <description></description>
2181
+ <content:encoded><![CDATA[]]></content:encoded>
2182
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2183
+ <wp:post_id>1094</wp:post_id>
2184
+ <wp:post_date><![CDATA[2017-05-20 05:53:45]]></wp:post_date>
2185
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:53:45]]></wp:post_date_gmt>
2186
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2187
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2188
+ <wp:post_name><![CDATA[pic10]]></wp:post_name>
2189
+ <wp:status><![CDATA[inherit]]></wp:status>
2190
+ <wp:post_parent>938</wp:post_parent>
2191
+ <wp:menu_order>0</wp:menu_order>
2192
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2193
+ <wp:post_password><![CDATA[]]></wp:post_password>
2194
+ <wp:is_sticky>0</wp:is_sticky>
2195
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic10.jpg]]></wp:attachment_url>
2196
+ <wp:postmeta>
2197
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2198
+ <wp:meta_value><![CDATA[2017/05/pic10.jpg]]></wp:meta_value>
2199
+ </wp:postmeta>
2200
+ <wp:postmeta>
2201
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2202
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:602;s:4:"file";s:17:"2017/05/pic10.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"pic10-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:17:"pic10-300x201.jpg";s:5:"width";i:300;s:6:"height";i:201;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"pic10-768x514.jpg";s:5:"width";i:768;s:6:"height";i:514;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"pic10-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:17:"pic10-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2203
+ </wp:postmeta>
2204
+ </item>
2205
+ <item>
2206
+ <title>pic12</title>
2207
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic12/</link>
2208
+ <pubDate>Sat, 20 May 2017 05:53:54 +0000</pubDate>
2209
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2210
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic12.jpg</guid>
2211
+ <description></description>
2212
+ <content:encoded><![CDATA[]]></content:encoded>
2213
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2214
+ <wp:post_id>1096</wp:post_id>
2215
+ <wp:post_date><![CDATA[2017-05-20 05:53:54]]></wp:post_date>
2216
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:53:54]]></wp:post_date_gmt>
2217
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2218
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2219
+ <wp:post_name><![CDATA[pic12]]></wp:post_name>
2220
+ <wp:status><![CDATA[inherit]]></wp:status>
2221
+ <wp:post_parent>938</wp:post_parent>
2222
+ <wp:menu_order>0</wp:menu_order>
2223
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2224
+ <wp:post_password><![CDATA[]]></wp:post_password>
2225
+ <wp:is_sticky>0</wp:is_sticky>
2226
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic12.jpg]]></wp:attachment_url>
2227
+ <wp:postmeta>
2228
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2229
+ <wp:meta_value><![CDATA[2017/05/pic12.jpg]]></wp:meta_value>
2230
+ </wp:postmeta>
2231
+ <wp:postmeta>
2232
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2233
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:675;s:4:"file";s:17:"2017/05/pic12.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"pic12-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:17:"pic12-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"pic12-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"pic12-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:17:"pic12-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2234
+ </wp:postmeta>
2235
+ </item>
2236
+ <item>
2237
+ <title>pic13</title>
2238
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic13/</link>
2239
+ <pubDate>Sat, 20 May 2017 05:53:56 +0000</pubDate>
2240
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2241
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic13.jpg</guid>
2242
+ <description></description>
2243
+ <content:encoded><![CDATA[]]></content:encoded>
2244
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2245
+ <wp:post_id>1097</wp:post_id>
2246
+ <wp:post_date><![CDATA[2017-05-20 05:53:56]]></wp:post_date>
2247
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:53:56]]></wp:post_date_gmt>
2248
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2249
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2250
+ <wp:post_name><![CDATA[pic13]]></wp:post_name>
2251
+ <wp:status><![CDATA[inherit]]></wp:status>
2252
+ <wp:post_parent>938</wp:post_parent>
2253
+ <wp:menu_order>0</wp:menu_order>
2254
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2255
+ <wp:post_password><![CDATA[]]></wp:post_password>
2256
+ <wp:is_sticky>0</wp:is_sticky>
2257
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic13.jpg]]></wp:attachment_url>
2258
+ <wp:postmeta>
2259
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2260
+ <wp:meta_value><![CDATA[2017/05/pic13.jpg]]></wp:meta_value>
2261
+ </wp:postmeta>
2262
+ <wp:postmeta>
2263
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2264
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:596;s:4:"file";s:17:"2017/05/pic13.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"pic13-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:17:"pic13-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"pic13-768x509.jpg";s:5:"width";i:768;s:6:"height";i:509;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"pic13-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:17:"pic13-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2265
+ </wp:postmeta>
2266
+ </item>
2267
+ <item>
2268
+ <title>pic14</title>
2269
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic14/</link>
2270
+ <pubDate>Sat, 20 May 2017 05:53:57 +0000</pubDate>
2271
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2272
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic14.jpg</guid>
2273
+ <description></description>
2274
+ <content:encoded><![CDATA[]]></content:encoded>
2275
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2276
+ <wp:post_id>1098</wp:post_id>
2277
+ <wp:post_date><![CDATA[2017-05-20 05:53:57]]></wp:post_date>
2278
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:53:57]]></wp:post_date_gmt>
2279
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2280
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2281
+ <wp:post_name><![CDATA[pic14]]></wp:post_name>
2282
+ <wp:status><![CDATA[inherit]]></wp:status>
2283
+ <wp:post_parent>938</wp:post_parent>
2284
+ <wp:menu_order>0</wp:menu_order>
2285
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2286
+ <wp:post_password><![CDATA[]]></wp:post_password>
2287
+ <wp:is_sticky>0</wp:is_sticky>
2288
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic14.jpg]]></wp:attachment_url>
2289
+ <wp:postmeta>
2290
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2291
+ <wp:meta_value><![CDATA[2017/05/pic14.jpg]]></wp:meta_value>
2292
+ </wp:postmeta>
2293
+ <wp:postmeta>
2294
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2295
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:675;s:4:"file";s:17:"2017/05/pic14.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"pic14-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:17:"pic14-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"pic14-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"pic14-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:17:"pic14-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2296
+ </wp:postmeta>
2297
+ </item>
2298
+ <item>
2299
+ <title>pic15</title>
2300
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic15/</link>
2301
+ <pubDate>Sat, 20 May 2017 05:53:59 +0000</pubDate>
2302
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2303
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic15.jpg</guid>
2304
+ <description></description>
2305
+ <content:encoded><![CDATA[]]></content:encoded>
2306
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2307
+ <wp:post_id>1099</wp:post_id>
2308
+ <wp:post_date><![CDATA[2017-05-20 05:53:59]]></wp:post_date>
2309
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:53:59]]></wp:post_date_gmt>
2310
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2311
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2312
+ <wp:post_name><![CDATA[pic15]]></wp:post_name>
2313
+ <wp:status><![CDATA[inherit]]></wp:status>
2314
+ <wp:post_parent>938</wp:post_parent>
2315
+ <wp:menu_order>0</wp:menu_order>
2316
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2317
+ <wp:post_password><![CDATA[]]></wp:post_password>
2318
+ <wp:is_sticky>0</wp:is_sticky>
2319
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic15.jpg]]></wp:attachment_url>
2320
+ <wp:postmeta>
2321
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2322
+ <wp:meta_value><![CDATA[2017/05/pic15.jpg]]></wp:meta_value>
2323
+ </wp:postmeta>
2324
+ <wp:postmeta>
2325
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2326
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:602;s:4:"file";s:17:"2017/05/pic15.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"pic15-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:17:"pic15-300x201.jpg";s:5:"width";i:300;s:6:"height";i:201;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"pic15-768x514.jpg";s:5:"width";i:768;s:6:"height";i:514;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"pic15-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:17:"pic15-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2327
+ </wp:postmeta>
2328
+ </item>
2329
+ <item>
2330
+ <title>pic16</title>
2331
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic16/</link>
2332
+ <pubDate>Sat, 20 May 2017 05:54:00 +0000</pubDate>
2333
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2334
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic16.jpg</guid>
2335
+ <description></description>
2336
+ <content:encoded><![CDATA[]]></content:encoded>
2337
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2338
+ <wp:post_id>1100</wp:post_id>
2339
+ <wp:post_date><![CDATA[2017-05-20 05:54:00]]></wp:post_date>
2340
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:54:00]]></wp:post_date_gmt>
2341
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2342
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2343
+ <wp:post_name><![CDATA[pic16]]></wp:post_name>
2344
+ <wp:status><![CDATA[inherit]]></wp:status>
2345
+ <wp:post_parent>938</wp:post_parent>
2346
+ <wp:menu_order>0</wp:menu_order>
2347
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2348
+ <wp:post_password><![CDATA[]]></wp:post_password>
2349
+ <wp:is_sticky>0</wp:is_sticky>
2350
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic16.jpg]]></wp:attachment_url>
2351
+ <wp:postmeta>
2352
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2353
+ <wp:meta_value><![CDATA[2017/05/pic16.jpg]]></wp:meta_value>
2354
+ </wp:postmeta>
2355
+ <wp:postmeta>
2356
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2357
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:600;s:4:"file";s:17:"2017/05/pic16.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"pic16-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:17:"pic16-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"pic16-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"pic16-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:17:"pic16-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2358
+ </wp:postmeta>
2359
+ </item>
2360
+ <item>
2361
+ <title>pic17</title>
2362
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/portfolio/portfolio-masonry/pic17/</link>
2363
+ <pubDate>Sat, 20 May 2017 05:54:01 +0000</pubDate>
2364
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2365
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic17.jpg</guid>
2366
+ <description></description>
2367
+ <content:encoded><![CDATA[]]></content:encoded>
2368
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2369
+ <wp:post_id>1101</wp:post_id>
2370
+ <wp:post_date><![CDATA[2017-05-20 05:54:01]]></wp:post_date>
2371
+ <wp:post_date_gmt><![CDATA[2017-05-20 05:54:01]]></wp:post_date_gmt>
2372
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2373
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2374
+ <wp:post_name><![CDATA[pic17]]></wp:post_name>
2375
+ <wp:status><![CDATA[inherit]]></wp:status>
2376
+ <wp:post_parent>938</wp:post_parent>
2377
+ <wp:menu_order>0</wp:menu_order>
2378
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2379
+ <wp:post_password><![CDATA[]]></wp:post_password>
2380
+ <wp:is_sticky>0</wp:is_sticky>
2381
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/pic17.jpg]]></wp:attachment_url>
2382
+ <wp:postmeta>
2383
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2384
+ <wp:meta_value><![CDATA[2017/05/pic17.jpg]]></wp:meta_value>
2385
+ </wp:postmeta>
2386
+ <wp:postmeta>
2387
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2388
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:648;s:4:"file";s:17:"2017/05/pic17.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"pic17-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:17:"pic17-300x216.jpg";s:5:"width";i:300;s:6:"height";i:216;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"pic17-768x553.jpg";s:5:"width";i:768;s:6:"height";i:553;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"pic17-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:17:"pic17-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2389
+ </wp:postmeta>
2390
+ </item>
2391
+ <item>
2392
+ <title>freestocks-org-195641</title>
2393
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/freestocks-org-195641/</link>
2394
+ <pubDate>Sat, 20 May 2017 07:00:50 +0000</pubDate>
2395
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2396
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/freestocks-org-195641.jpg</guid>
2397
+ <description></description>
2398
+ <content:encoded><![CDATA[]]></content:encoded>
2399
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2400
+ <wp:post_id>1132</wp:post_id>
2401
+ <wp:post_date><![CDATA[2017-05-20 07:00:50]]></wp:post_date>
2402
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:00:50]]></wp:post_date_gmt>
2403
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2404
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2405
+ <wp:post_name><![CDATA[freestocks-org-195641]]></wp:post_name>
2406
+ <wp:status><![CDATA[inherit]]></wp:status>
2407
+ <wp:post_parent>0</wp:post_parent>
2408
+ <wp:menu_order>0</wp:menu_order>
2409
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2410
+ <wp:post_password><![CDATA[]]></wp:post_password>
2411
+ <wp:is_sticky>0</wp:is_sticky>
2412
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/freestocks-org-195641.jpg]]></wp:attachment_url>
2413
+ <wp:postmeta>
2414
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2415
+ <wp:meta_value><![CDATA[2017/05/freestocks-org-195641.jpg]]></wp:meta_value>
2416
+ </wp:postmeta>
2417
+ <wp:postmeta>
2418
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2419
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:900;s:6:"height";i:600;s:4:"file";s:33:"2017/05/freestocks-org-195641.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"freestocks-org-195641-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"freestocks-org-195641-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"freestocks-org-195641-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:33:"freestocks-org-195641-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:33:"freestocks-org-195641-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2420
+ </wp:postmeta>
2421
+ </item>
2422
+ <item>
2423
+ <title>adam-birkett-191377</title>
2424
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/adam-birkett-191377/</link>
2425
+ <pubDate>Sat, 20 May 2017 07:16:14 +0000</pubDate>
2426
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2427
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/adam-birkett-191377.jpg</guid>
2428
+ <description></description>
2429
+ <content:encoded><![CDATA[]]></content:encoded>
2430
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2431
+ <wp:post_id>1133</wp:post_id>
2432
+ <wp:post_date><![CDATA[2017-05-20 07:16:14]]></wp:post_date>
2433
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:16:14]]></wp:post_date_gmt>
2434
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2435
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2436
+ <wp:post_name><![CDATA[adam-birkett-191377]]></wp:post_name>
2437
+ <wp:status><![CDATA[inherit]]></wp:status>
2438
+ <wp:post_parent>0</wp:post_parent>
2439
+ <wp:menu_order>0</wp:menu_order>
2440
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2441
+ <wp:post_password><![CDATA[]]></wp:post_password>
2442
+ <wp:is_sticky>0</wp:is_sticky>
2443
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/adam-birkett-191377.jpg]]></wp:attachment_url>
2444
+ <wp:postmeta>
2445
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2446
+ <wp:meta_value><![CDATA[2017/05/adam-birkett-191377.jpg]]></wp:meta_value>
2447
+ </wp:postmeta>
2448
+ <wp:postmeta>
2449
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2450
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:683;s:6:"height";i:1024;s:4:"file";s:31:"2017/05/adam-birkett-191377.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"adam-birkett-191377-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"adam-birkett-191377-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"adam-birkett-191377-683x1024.jpg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:31:"adam-birkett-191377-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"adam-birkett-191377-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2451
+ </wp:postmeta>
2452
+ </item>
2453
+ <item>
2454
+ <title>kari-shea-193649</title>
2455
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/kari-shea-193649/</link>
2456
+ <pubDate>Sat, 20 May 2017 07:19:59 +0000</pubDate>
2457
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2458
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/kari-shea-193649.jpg</guid>
2459
+ <description></description>
2460
+ <content:encoded><![CDATA[]]></content:encoded>
2461
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2462
+ <wp:post_id>1134</wp:post_id>
2463
+ <wp:post_date><![CDATA[2017-05-20 07:19:59]]></wp:post_date>
2464
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:19:59]]></wp:post_date_gmt>
2465
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2466
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2467
+ <wp:post_name><![CDATA[kari-shea-193649]]></wp:post_name>
2468
+ <wp:status><![CDATA[inherit]]></wp:status>
2469
+ <wp:post_parent>0</wp:post_parent>
2470
+ <wp:menu_order>0</wp:menu_order>
2471
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2472
+ <wp:post_password><![CDATA[]]></wp:post_password>
2473
+ <wp:is_sticky>0</wp:is_sticky>
2474
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/kari-shea-193649.jpg]]></wp:attachment_url>
2475
+ <wp:postmeta>
2476
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2477
+ <wp:meta_value><![CDATA[2017/05/kari-shea-193649.jpg]]></wp:meta_value>
2478
+ </wp:postmeta>
2479
+ <wp:postmeta>
2480
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2481
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:683;s:6:"height";i:1024;s:4:"file";s:28:"2017/05/kari-shea-193649.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"kari-shea-193649-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:28:"kari-shea-193649-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"kari-shea-193649-683x1024.jpg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:28:"kari-shea-193649-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:28:"kari-shea-193649-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2482
+ </wp:postmeta>
2483
+ </item>
2484
+ <item>
2485
+ <title>sarah-dorweiler-128577</title>
2486
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/sarah-dorweiler-128577/</link>
2487
+ <pubDate>Sat, 20 May 2017 07:26:18 +0000</pubDate>
2488
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2489
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/sarah-dorweiler-128577.jpg</guid>
2490
+ <description></description>
2491
+ <content:encoded><![CDATA[]]></content:encoded>
2492
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2493
+ <wp:post_id>1137</wp:post_id>
2494
+ <wp:post_date><![CDATA[2017-05-20 07:26:18]]></wp:post_date>
2495
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:26:18]]></wp:post_date_gmt>
2496
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2497
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2498
+ <wp:post_name><![CDATA[sarah-dorweiler-128577]]></wp:post_name>
2499
+ <wp:status><![CDATA[inherit]]></wp:status>
2500
+ <wp:post_parent>0</wp:post_parent>
2501
+ <wp:menu_order>0</wp:menu_order>
2502
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2503
+ <wp:post_password><![CDATA[]]></wp:post_password>
2504
+ <wp:is_sticky>0</wp:is_sticky>
2505
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/sarah-dorweiler-128577.jpg]]></wp:attachment_url>
2506
+ <wp:postmeta>
2507
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2508
+ <wp:meta_value><![CDATA[2017/05/sarah-dorweiler-128577.jpg]]></wp:meta_value>
2509
+ </wp:postmeta>
2510
+ <wp:postmeta>
2511
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2512
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:683;s:6:"height";i:1024;s:4:"file";s:34:"2017/05/sarah-dorweiler-128577.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"sarah-dorweiler-128577-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:34:"sarah-dorweiler-128577-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:35:"sarah-dorweiler-128577-683x1024.jpg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"sarah-dorweiler-128577-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:34:"sarah-dorweiler-128577-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2513
+ </wp:postmeta>
2514
+ </item>
2515
+ <item>
2516
+ <title>florian-klauer-14840</title>
2517
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/florian-klauer-14840/</link>
2518
+ <pubDate>Sat, 20 May 2017 07:32:38 +0000</pubDate>
2519
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2520
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/florian-klauer-14840.jpg</guid>
2521
+ <description></description>
2522
+ <content:encoded><![CDATA[]]></content:encoded>
2523
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2524
+ <wp:post_id>1138</wp:post_id>
2525
+ <wp:post_date><![CDATA[2017-05-20 07:32:38]]></wp:post_date>
2526
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:32:38]]></wp:post_date_gmt>
2527
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2528
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2529
+ <wp:post_name><![CDATA[florian-klauer-14840]]></wp:post_name>
2530
+ <wp:status><![CDATA[inherit]]></wp:status>
2531
+ <wp:post_parent>0</wp:post_parent>
2532
+ <wp:menu_order>0</wp:menu_order>
2533
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2534
+ <wp:post_password><![CDATA[]]></wp:post_password>
2535
+ <wp:is_sticky>0</wp:is_sticky>
2536
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/florian-klauer-14840.jpg]]></wp:attachment_url>
2537
+ <wp:postmeta>
2538
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2539
+ <wp:meta_value><![CDATA[2017/05/florian-klauer-14840.jpg]]></wp:meta_value>
2540
+ </wp:postmeta>
2541
+ <wp:postmeta>
2542
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2543
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:683;s:6:"height";i:1024;s:4:"file";s:32:"2017/05/florian-klauer-14840.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"florian-klauer-14840-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:32:"florian-klauer-14840-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:33:"florian-klauer-14840-683x1024.jpg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"florian-klauer-14840-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:32:"florian-klauer-14840-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2544
+ </wp:postmeta>
2545
+ </item>
2546
+ <item>
2547
+ <title>breather-196134</title>
2548
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/breather-196134/</link>
2549
+ <pubDate>Sat, 20 May 2017 07:34:39 +0000</pubDate>
2550
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2551
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/breather-196134.jpg</guid>
2552
+ <description></description>
2553
+ <content:encoded><![CDATA[]]></content:encoded>
2554
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2555
+ <wp:post_id>1139</wp:post_id>
2556
+ <wp:post_date><![CDATA[2017-05-20 07:34:39]]></wp:post_date>
2557
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:34:39]]></wp:post_date_gmt>
2558
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2559
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2560
+ <wp:post_name><![CDATA[breather-196134]]></wp:post_name>
2561
+ <wp:status><![CDATA[inherit]]></wp:status>
2562
+ <wp:post_parent>0</wp:post_parent>
2563
+ <wp:menu_order>0</wp:menu_order>
2564
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2565
+ <wp:post_password><![CDATA[]]></wp:post_password>
2566
+ <wp:is_sticky>0</wp:is_sticky>
2567
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/breather-196134.jpg]]></wp:attachment_url>
2568
+ <wp:postmeta>
2569
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2570
+ <wp:meta_value><![CDATA[2017/05/breather-196134.jpg]]></wp:meta_value>
2571
+ </wp:postmeta>
2572
+ <wp:postmeta>
2573
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2574
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:683;s:4:"file";s:27:"2017/05/breather-196134.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"breather-196134-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:27:"breather-196134-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"breather-196134-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"breather-196134-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"breather-196134-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:27:"breather-196134-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2575
+ </wp:postmeta>
2576
+ </item>
2577
+ <item>
2578
+ <title>brooke-lark-210776</title>
2579
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/brooke-lark-210776/</link>
2580
+ <pubDate>Sat, 20 May 2017 07:35:46 +0000</pubDate>
2581
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2582
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/brooke-lark-210776.jpg</guid>
2583
+ <description></description>
2584
+ <content:encoded><![CDATA[]]></content:encoded>
2585
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2586
+ <wp:post_id>1140</wp:post_id>
2587
+ <wp:post_date><![CDATA[2017-05-20 07:35:46]]></wp:post_date>
2588
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:35:46]]></wp:post_date_gmt>
2589
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2590
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2591
+ <wp:post_name><![CDATA[brooke-lark-210776]]></wp:post_name>
2592
+ <wp:status><![CDATA[inherit]]></wp:status>
2593
+ <wp:post_parent>0</wp:post_parent>
2594
+ <wp:menu_order>0</wp:menu_order>
2595
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2596
+ <wp:post_password><![CDATA[]]></wp:post_password>
2597
+ <wp:is_sticky>0</wp:is_sticky>
2598
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/brooke-lark-210776.jpg]]></wp:attachment_url>
2599
+ <wp:postmeta>
2600
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2601
+ <wp:meta_value><![CDATA[2017/05/brooke-lark-210776.jpg]]></wp:meta_value>
2602
+ </wp:postmeta>
2603
+ <wp:postmeta>
2604
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2605
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:683;s:6:"height";i:1024;s:4:"file";s:30:"2017/05/brooke-lark-210776.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"brooke-lark-210776-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:30:"brooke-lark-210776-200x300.jpg";s:5:"width";i:200;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"brooke-lark-210776-683x1024.jpg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:30:"brooke-lark-210776-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:30:"brooke-lark-210776-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2606
+ </wp:postmeta>
2607
+ </item>
2608
+ <item>
2609
+ <title>lauren-mancke-69437</title>
2610
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/lauren-mancke-69437/</link>
2611
+ <pubDate>Sat, 20 May 2017 07:38:41 +0000</pubDate>
2612
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2613
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/lauren-mancke-69437.jpg</guid>
2614
+ <description></description>
2615
+ <content:encoded><![CDATA[]]></content:encoded>
2616
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2617
+ <wp:post_id>1141</wp:post_id>
2618
+ <wp:post_date><![CDATA[2017-05-20 07:38:41]]></wp:post_date>
2619
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:38:41]]></wp:post_date_gmt>
2620
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2621
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2622
+ <wp:post_name><![CDATA[lauren-mancke-69437]]></wp:post_name>
2623
+ <wp:status><![CDATA[inherit]]></wp:status>
2624
+ <wp:post_parent>0</wp:post_parent>
2625
+ <wp:menu_order>0</wp:menu_order>
2626
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2627
+ <wp:post_password><![CDATA[]]></wp:post_password>
2628
+ <wp:is_sticky>0</wp:is_sticky>
2629
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/lauren-mancke-69437.jpg]]></wp:attachment_url>
2630
+ <wp:postmeta>
2631
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2632
+ <wp:meta_value><![CDATA[2017/05/lauren-mancke-69437.jpg]]></wp:meta_value>
2633
+ </wp:postmeta>
2634
+ <wp:postmeta>
2635
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2636
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:683;s:4:"file";s:31:"2017/05/lauren-mancke-69437.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"lauren-mancke-69437-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:31:"lauren-mancke-69437-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"lauren-mancke-69437-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"lauren-mancke-69437-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:31:"lauren-mancke-69437-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:31:"lauren-mancke-69437-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2637
+ </wp:postmeta>
2638
+ </item>
2639
+ <item>
2640
+ <title>tim-wright-131742</title>
2641
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/tim-wright-131742/</link>
2642
+ <pubDate>Sat, 20 May 2017 07:39:13 +0000</pubDate>
2643
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2644
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/tim-wright-131742.jpg</guid>
2645
+ <description></description>
2646
+ <content:encoded><![CDATA[]]></content:encoded>
2647
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2648
+ <wp:post_id>1142</wp:post_id>
2649
+ <wp:post_date><![CDATA[2017-05-20 07:39:13]]></wp:post_date>
2650
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:39:13]]></wp:post_date_gmt>
2651
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2652
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2653
+ <wp:post_name><![CDATA[tim-wright-131742]]></wp:post_name>
2654
+ <wp:status><![CDATA[inherit]]></wp:status>
2655
+ <wp:post_parent>0</wp:post_parent>
2656
+ <wp:menu_order>0</wp:menu_order>
2657
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2658
+ <wp:post_password><![CDATA[]]></wp:post_password>
2659
+ <wp:is_sticky>0</wp:is_sticky>
2660
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/tim-wright-131742.jpg]]></wp:attachment_url>
2661
+ <wp:postmeta>
2662
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2663
+ <wp:meta_value><![CDATA[2017/05/tim-wright-131742.jpg]]></wp:meta_value>
2664
+ </wp:postmeta>
2665
+ <wp:postmeta>
2666
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2667
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:683;s:4:"file";s:29:"2017/05/tim-wright-131742.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"tim-wright-131742-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"tim-wright-131742-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"tim-wright-131742-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"tim-wright-131742-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"tim-wright-131742-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:29:"tim-wright-131742-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2668
+ </wp:postmeta>
2669
+ </item>
2670
+ <item>
2671
+ <title>maarten-deckers-227224</title>
2672
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/maarten-deckers-227224/</link>
2673
+ <pubDate>Sat, 20 May 2017 07:40:12 +0000</pubDate>
2674
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2675
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/maarten-deckers-227224.jpg</guid>
2676
+ <description></description>
2677
+ <content:encoded><![CDATA[]]></content:encoded>
2678
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2679
+ <wp:post_id>1143</wp:post_id>
2680
+ <wp:post_date><![CDATA[2017-05-20 07:40:12]]></wp:post_date>
2681
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:40:12]]></wp:post_date_gmt>
2682
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2683
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2684
+ <wp:post_name><![CDATA[maarten-deckers-227224]]></wp:post_name>
2685
+ <wp:status><![CDATA[inherit]]></wp:status>
2686
+ <wp:post_parent>0</wp:post_parent>
2687
+ <wp:menu_order>0</wp:menu_order>
2688
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2689
+ <wp:post_password><![CDATA[]]></wp:post_password>
2690
+ <wp:is_sticky>0</wp:is_sticky>
2691
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/maarten-deckers-227224.jpg]]></wp:attachment_url>
2692
+ <wp:postmeta>
2693
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2694
+ <wp:meta_value><![CDATA[2017/05/maarten-deckers-227224.jpg]]></wp:meta_value>
2695
+ </wp:postmeta>
2696
+ <wp:postmeta>
2697
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2698
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:683;s:4:"file";s:34:"2017/05/maarten-deckers-227224.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"maarten-deckers-227224-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:34:"maarten-deckers-227224-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:34:"maarten-deckers-227224-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:35:"maarten-deckers-227224-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"maarten-deckers-227224-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:34:"maarten-deckers-227224-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2699
+ </wp:postmeta>
2700
+ </item>
2701
+ <item>
2702
+ <title>galina-n-200668</title>
2703
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/galina-n-200668/</link>
2704
+ <pubDate>Sat, 20 May 2017 07:42:57 +0000</pubDate>
2705
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2706
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/galina-n-200668.jpg</guid>
2707
+ <description></description>
2708
+ <content:encoded><![CDATA[]]></content:encoded>
2709
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2710
+ <wp:post_id>1144</wp:post_id>
2711
+ <wp:post_date><![CDATA[2017-05-20 07:42:57]]></wp:post_date>
2712
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:42:57]]></wp:post_date_gmt>
2713
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2714
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2715
+ <wp:post_name><![CDATA[galina-n-200668]]></wp:post_name>
2716
+ <wp:status><![CDATA[inherit]]></wp:status>
2717
+ <wp:post_parent>0</wp:post_parent>
2718
+ <wp:menu_order>0</wp:menu_order>
2719
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2720
+ <wp:post_password><![CDATA[]]></wp:post_password>
2721
+ <wp:is_sticky>0</wp:is_sticky>
2722
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/galina-n-200668.jpg]]></wp:attachment_url>
2723
+ <wp:postmeta>
2724
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2725
+ <wp:meta_value><![CDATA[2017/05/galina-n-200668.jpg]]></wp:meta_value>
2726
+ </wp:postmeta>
2727
+ <wp:postmeta>
2728
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2729
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:682;s:4:"file";s:27:"2017/05/galina-n-200668.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"galina-n-200668-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:27:"galina-n-200668-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"galina-n-200668-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"galina-n-200668-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"galina-n-200668-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:27:"galina-n-200668-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2730
+ </wp:postmeta>
2731
+ </item>
2732
+ <item>
2733
+ <title>gaelle-marcel-206454</title>
2734
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/gaelle-marcel-206454/</link>
2735
+ <pubDate>Sat, 20 May 2017 07:43:57 +0000</pubDate>
2736
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2737
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/gaelle-marcel-206454.jpg</guid>
2738
+ <description></description>
2739
+ <content:encoded><![CDATA[]]></content:encoded>
2740
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2741
+ <wp:post_id>1145</wp:post_id>
2742
+ <wp:post_date><![CDATA[2017-05-20 07:43:57]]></wp:post_date>
2743
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:43:57]]></wp:post_date_gmt>
2744
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2745
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2746
+ <wp:post_name><![CDATA[gaelle-marcel-206454]]></wp:post_name>
2747
+ <wp:status><![CDATA[inherit]]></wp:status>
2748
+ <wp:post_parent>0</wp:post_parent>
2749
+ <wp:menu_order>0</wp:menu_order>
2750
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2751
+ <wp:post_password><![CDATA[]]></wp:post_password>
2752
+ <wp:is_sticky>0</wp:is_sticky>
2753
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/gaelle-marcel-206454.jpg]]></wp:attachment_url>
2754
+ <wp:postmeta>
2755
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2756
+ <wp:meta_value><![CDATA[2017/05/gaelle-marcel-206454.jpg]]></wp:meta_value>
2757
+ </wp:postmeta>
2758
+ <wp:postmeta>
2759
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2760
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:684;s:4:"file";s:32:"2017/05/gaelle-marcel-206454.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"gaelle-marcel-206454-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:32:"gaelle-marcel-206454-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:32:"gaelle-marcel-206454-768x513.jpg";s:5:"width";i:768;s:6:"height";i:513;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:33:"gaelle-marcel-206454-1024x684.jpg";s:5:"width";i:1024;s:6:"height";i:684;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"gaelle-marcel-206454-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:32:"gaelle-marcel-206454-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2761
+ </wp:postmeta>
2762
+ </item>
2763
+ <item>
2764
+ <title>alex-holyoake-157976-1024x683</title>
2765
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/alex-holyoake-157976-1024x683/</link>
2766
+ <pubDate>Sat, 20 May 2017 07:44:42 +0000</pubDate>
2767
+ <dc:creator><![CDATA[kasra]]></dc:creator>
2768
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/alex-holyoake-157976-1024x683.jpg</guid>
2769
+ <description></description>
2770
+ <content:encoded><![CDATA[]]></content:encoded>
2771
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2772
+ <wp:post_id>1146</wp:post_id>
2773
+ <wp:post_date><![CDATA[2017-05-20 07:44:42]]></wp:post_date>
2774
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:44:42]]></wp:post_date_gmt>
2775
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
2776
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2777
+ <wp:post_name><![CDATA[alex-holyoake-157976-1024x683]]></wp:post_name>
2778
+ <wp:status><![CDATA[inherit]]></wp:status>
2779
+ <wp:post_parent>0</wp:post_parent>
2780
+ <wp:menu_order>0</wp:menu_order>
2781
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
2782
+ <wp:post_password><![CDATA[]]></wp:post_password>
2783
+ <wp:is_sticky>0</wp:is_sticky>
2784
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/alex-holyoake-157976-1024x683.jpg]]></wp:attachment_url>
2785
+ <wp:postmeta>
2786
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
2787
+ <wp:meta_value><![CDATA[2017/05/alex-holyoake-157976-1024x683.jpg]]></wp:meta_value>
2788
+ </wp:postmeta>
2789
+ <wp:postmeta>
2790
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
2791
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:683;s:4:"file";s:41:"2017/05/alex-holyoake-157976-1024x683.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:41:"alex-holyoake-157976-1024x683-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:41:"alex-holyoake-157976-1024x683-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:41:"alex-holyoake-157976-1024x683-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:42:"alex-holyoake-157976-1024x683-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:41:"alex-holyoake-157976-1024x683-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:41:"alex-holyoake-157976-1024x683-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
2792
+ </wp:postmeta>
2793
+ </item>
2794
+ <item>
2795
+ <title>Home</title>
2796
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/20/home/</link>
2797
+ <pubDate>Sat, 20 Aug 2016 13:41:25 +0000</pubDate>
2798
+ <dc:creator><![CDATA[admin]]></dc:creator>
2799
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=98</guid>
2800
+ <description></description>
2801
+ <content:encoded><![CDATA[]]></content:encoded>
2802
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2803
+ <wp:post_id>98</wp:post_id>
2804
+ <wp:post_date><![CDATA[2016-08-20 13:41:25]]></wp:post_date>
2805
+ <wp:post_date_gmt><![CDATA[2016-08-20 13:41:25]]></wp:post_date_gmt>
2806
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
2807
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2808
+ <wp:post_name><![CDATA[home]]></wp:post_name>
2809
+ <wp:status><![CDATA[publish]]></wp:status>
2810
+ <wp:post_parent>0</wp:post_parent>
2811
+ <wp:menu_order>1</wp:menu_order>
2812
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
2813
+ <wp:post_password><![CDATA[]]></wp:post_password>
2814
+ <wp:is_sticky>0</wp:is_sticky>
2815
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
2816
+ <wp:postmeta>
2817
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
2818
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
2819
+ </wp:postmeta>
2820
+ <wp:postmeta>
2821
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
2822
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2823
+ </wp:postmeta>
2824
+ <wp:postmeta>
2825
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
2826
+ <wp:meta_value><![CDATA[98]]></wp:meta_value>
2827
+ </wp:postmeta>
2828
+ <wp:postmeta>
2829
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
2830
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
2831
+ </wp:postmeta>
2832
+ <wp:postmeta>
2833
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
2834
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2835
+ </wp:postmeta>
2836
+ <wp:postmeta>
2837
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
2838
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
2839
+ </wp:postmeta>
2840
+ <wp:postmeta>
2841
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
2842
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2843
+ </wp:postmeta>
2844
+ <wp:postmeta>
2845
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
2846
+ <wp:meta_value><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/]]></wp:meta_value>
2847
+ </wp:postmeta>
2848
+ <wp:postmeta>
2849
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
2850
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2851
+ </wp:postmeta>
2852
+ <wp:postmeta>
2853
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
2854
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2855
+ </wp:postmeta>
2856
+ <wp:postmeta>
2857
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
2858
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2859
+ </wp:postmeta>
2860
+ <wp:postmeta>
2861
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
2862
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2863
+ </wp:postmeta>
2864
+ <wp:postmeta>
2865
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
2866
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2867
+ </wp:postmeta>
2868
+ <wp:postmeta>
2869
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
2870
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2871
+ </wp:postmeta>
2872
+ <wp:postmeta>
2873
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
2874
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2875
+ </wp:postmeta>
2876
+ <wp:postmeta>
2877
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
2878
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2879
+ </wp:postmeta>
2880
+ <wp:postmeta>
2881
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
2882
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2883
+ </wp:postmeta>
2884
+ <wp:postmeta>
2885
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
2886
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2887
+ </wp:postmeta>
2888
+ <wp:postmeta>
2889
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
2890
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2891
+ </wp:postmeta>
2892
+ <wp:postmeta>
2893
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
2894
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2895
+ </wp:postmeta>
2896
+ </item>
2897
+ <item>
2898
+ <title>Blog</title>
2899
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/20/blog/</link>
2900
+ <pubDate>Sat, 20 Aug 2016 13:41:25 +0000</pubDate>
2901
+ <dc:creator><![CDATA[admin]]></dc:creator>
2902
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=99</guid>
2903
+ <description></description>
2904
+ <content:encoded><![CDATA[]]></content:encoded>
2905
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
2906
+ <wp:post_id>99</wp:post_id>
2907
+ <wp:post_date><![CDATA[2016-08-20 13:41:25]]></wp:post_date>
2908
+ <wp:post_date_gmt><![CDATA[2016-08-20 13:41:25]]></wp:post_date_gmt>
2909
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
2910
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
2911
+ <wp:post_name><![CDATA[blog]]></wp:post_name>
2912
+ <wp:status><![CDATA[publish]]></wp:status>
2913
+ <wp:post_parent>0</wp:post_parent>
2914
+ <wp:menu_order>2</wp:menu_order>
2915
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
2916
+ <wp:post_password><![CDATA[]]></wp:post_password>
2917
+ <wp:is_sticky>0</wp:is_sticky>
2918
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
2919
+ <wp:postmeta>
2920
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
2921
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
2922
+ </wp:postmeta>
2923
+ <wp:postmeta>
2924
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
2925
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2926
+ </wp:postmeta>
2927
+ <wp:postmeta>
2928
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
2929
+ <wp:meta_value><![CDATA[99]]></wp:meta_value>
2930
+ </wp:postmeta>
2931
+ <wp:postmeta>
2932
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
2933
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
2934
+ </wp:postmeta>
2935
+ <wp:postmeta>
2936
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
2937
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2938
+ </wp:postmeta>
2939
+ <wp:postmeta>
2940
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
2941
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
2942
+ </wp:postmeta>
2943
+ <wp:postmeta>
2944
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
2945
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2946
+ </wp:postmeta>
2947
+ <wp:postmeta>
2948
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
2949
+ <wp:meta_value><![CDATA[#]]></wp:meta_value>
2950
+ </wp:postmeta>
2951
+ <wp:postmeta>
2952
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
2953
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2954
+ </wp:postmeta>
2955
+ <wp:postmeta>
2956
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
2957
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2958
+ </wp:postmeta>
2959
+ <wp:postmeta>
2960
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
2961
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2962
+ </wp:postmeta>
2963
+ <wp:postmeta>
2964
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
2965
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2966
+ </wp:postmeta>
2967
+ <wp:postmeta>
2968
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
2969
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2970
+ </wp:postmeta>
2971
+ <wp:postmeta>
2972
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
2973
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2974
+ </wp:postmeta>
2975
+ <wp:postmeta>
2976
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
2977
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
2978
+ </wp:postmeta>
2979
+ <wp:postmeta>
2980
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
2981
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2982
+ </wp:postmeta>
2983
+ <wp:postmeta>
2984
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
2985
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2986
+ </wp:postmeta>
2987
+ <wp:postmeta>
2988
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
2989
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2990
+ </wp:postmeta>
2991
+ <wp:postmeta>
2992
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
2993
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
2994
+ </wp:postmeta>
2995
+ <wp:postmeta>
2996
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
2997
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
2998
+ </wp:postmeta>
2999
+ </item>
3000
+ <item>
3001
+ <title>Elements</title>
3002
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/20/elementsshortcodes/</link>
3003
+ <pubDate>Sat, 20 Aug 2016 13:41:25 +0000</pubDate>
3004
+ <dc:creator><![CDATA[admin]]></dc:creator>
3005
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=100</guid>
3006
+ <description></description>
3007
+ <content:encoded><![CDATA[]]></content:encoded>
3008
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3009
+ <wp:post_id>100</wp:post_id>
3010
+ <wp:post_date><![CDATA[2016-08-20 13:41:25]]></wp:post_date>
3011
+ <wp:post_date_gmt><![CDATA[2016-08-20 13:41:25]]></wp:post_date_gmt>
3012
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3013
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3014
+ <wp:post_name><![CDATA[elementsshortcodes]]></wp:post_name>
3015
+ <wp:status><![CDATA[publish]]></wp:status>
3016
+ <wp:post_parent>0</wp:post_parent>
3017
+ <wp:menu_order>12</wp:menu_order>
3018
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3019
+ <wp:post_password><![CDATA[]]></wp:post_password>
3020
+ <wp:is_sticky>0</wp:is_sticky>
3021
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
3022
+ <wp:postmeta>
3023
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3024
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
3025
+ </wp:postmeta>
3026
+ <wp:postmeta>
3027
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3028
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3029
+ </wp:postmeta>
3030
+ <wp:postmeta>
3031
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3032
+ <wp:meta_value><![CDATA[100]]></wp:meta_value>
3033
+ </wp:postmeta>
3034
+ <wp:postmeta>
3035
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3036
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
3037
+ </wp:postmeta>
3038
+ <wp:postmeta>
3039
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3040
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3041
+ </wp:postmeta>
3042
+ <wp:postmeta>
3043
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3044
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3045
+ </wp:postmeta>
3046
+ <wp:postmeta>
3047
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3048
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3049
+ </wp:postmeta>
3050
+ <wp:postmeta>
3051
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3052
+ <wp:meta_value><![CDATA[#]]></wp:meta_value>
3053
+ </wp:postmeta>
3054
+ <wp:postmeta>
3055
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3056
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3057
+ </wp:postmeta>
3058
+ <wp:postmeta>
3059
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3060
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3061
+ </wp:postmeta>
3062
+ <wp:postmeta>
3063
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3064
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3065
+ </wp:postmeta>
3066
+ <wp:postmeta>
3067
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3068
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3069
+ </wp:postmeta>
3070
+ <wp:postmeta>
3071
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3072
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3073
+ </wp:postmeta>
3074
+ <wp:postmeta>
3075
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
3076
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3077
+ </wp:postmeta>
3078
+ <wp:postmeta>
3079
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
3080
+ <wp:meta_value><![CDATA[4]]></wp:meta_value>
3081
+ </wp:postmeta>
3082
+ <wp:postmeta>
3083
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
3084
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3085
+ </wp:postmeta>
3086
+ <wp:postmeta>
3087
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
3088
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3089
+ </wp:postmeta>
3090
+ <wp:postmeta>
3091
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3092
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3093
+ </wp:postmeta>
3094
+ <wp:postmeta>
3095
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3096
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3097
+ </wp:postmeta>
3098
+ <wp:postmeta>
3099
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
3100
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3101
+ </wp:postmeta>
3102
+ </item>
3103
+ <item>
3104
+ <title>Pages</title>
3105
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/20/pages/</link>
3106
+ <pubDate>Sat, 20 Aug 2016 13:41:25 +0000</pubDate>
3107
+ <dc:creator><![CDATA[admin]]></dc:creator>
3108
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=101</guid>
3109
+ <description></description>
3110
+ <content:encoded><![CDATA[]]></content:encoded>
3111
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3112
+ <wp:post_id>101</wp:post_id>
3113
+ <wp:post_date><![CDATA[2016-08-20 13:41:25]]></wp:post_date>
3114
+ <wp:post_date_gmt><![CDATA[2016-08-20 13:41:25]]></wp:post_date_gmt>
3115
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3116
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3117
+ <wp:post_name><![CDATA[pages]]></wp:post_name>
3118
+ <wp:status><![CDATA[publish]]></wp:status>
3119
+ <wp:post_parent>0</wp:post_parent>
3120
+ <wp:menu_order>43</wp:menu_order>
3121
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3122
+ <wp:post_password><![CDATA[]]></wp:post_password>
3123
+ <wp:is_sticky>0</wp:is_sticky>
3124
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
3125
+ <wp:postmeta>
3126
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3127
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
3128
+ </wp:postmeta>
3129
+ <wp:postmeta>
3130
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3131
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3132
+ </wp:postmeta>
3133
+ <wp:postmeta>
3134
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3135
+ <wp:meta_value><![CDATA[101]]></wp:meta_value>
3136
+ </wp:postmeta>
3137
+ <wp:postmeta>
3138
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3139
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
3140
+ </wp:postmeta>
3141
+ <wp:postmeta>
3142
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3143
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3144
+ </wp:postmeta>
3145
+ <wp:postmeta>
3146
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3147
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3148
+ </wp:postmeta>
3149
+ <wp:postmeta>
3150
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3151
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3152
+ </wp:postmeta>
3153
+ <wp:postmeta>
3154
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3155
+ <wp:meta_value><![CDATA[#]]></wp:meta_value>
3156
+ </wp:postmeta>
3157
+ <wp:postmeta>
3158
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3159
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3160
+ </wp:postmeta>
3161
+ <wp:postmeta>
3162
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3163
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3164
+ </wp:postmeta>
3165
+ <wp:postmeta>
3166
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3167
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3168
+ </wp:postmeta>
3169
+ <wp:postmeta>
3170
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3171
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3172
+ </wp:postmeta>
3173
+ <wp:postmeta>
3174
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3175
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3176
+ </wp:postmeta>
3177
+ <wp:postmeta>
3178
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
3179
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3180
+ </wp:postmeta>
3181
+ <wp:postmeta>
3182
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
3183
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3184
+ </wp:postmeta>
3185
+ <wp:postmeta>
3186
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
3187
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3188
+ </wp:postmeta>
3189
+ <wp:postmeta>
3190
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
3191
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3192
+ </wp:postmeta>
3193
+ <wp:postmeta>
3194
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3195
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3196
+ </wp:postmeta>
3197
+ <wp:postmeta>
3198
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3199
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3200
+ </wp:postmeta>
3201
+ <wp:postmeta>
3202
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
3203
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3204
+ </wp:postmeta>
3205
+ </item>
3206
+ <item>
3207
+ <title>Classic Archive Page</title>
3208
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/20/classic/</link>
3209
+ <pubDate>Sat, 20 Aug 2016 14:01:00 +0000</pubDate>
3210
+ <dc:creator><![CDATA[admin]]></dc:creator>
3211
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=103</guid>
3212
+ <description></description>
3213
+ <content:encoded><![CDATA[]]></content:encoded>
3214
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3215
+ <wp:post_id>103</wp:post_id>
3216
+ <wp:post_date><![CDATA[2016-08-20 14:01:00]]></wp:post_date>
3217
+ <wp:post_date_gmt><![CDATA[2016-08-20 14:01:00]]></wp:post_date_gmt>
3218
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3219
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3220
+ <wp:post_name><![CDATA[classic]]></wp:post_name>
3221
+ <wp:status><![CDATA[publish]]></wp:status>
3222
+ <wp:post_parent>0</wp:post_parent>
3223
+ <wp:menu_order>4</wp:menu_order>
3224
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3225
+ <wp:post_password><![CDATA[]]></wp:post_password>
3226
+ <wp:is_sticky>0</wp:is_sticky>
3227
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
3228
+ <wp:postmeta>
3229
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3230
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
3231
+ </wp:postmeta>
3232
+ <wp:postmeta>
3233
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3234
+ <wp:meta_value><![CDATA[99]]></wp:meta_value>
3235
+ </wp:postmeta>
3236
+ <wp:postmeta>
3237
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3238
+ <wp:meta_value><![CDATA[103]]></wp:meta_value>
3239
+ </wp:postmeta>
3240
+ <wp:postmeta>
3241
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3242
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
3243
+ </wp:postmeta>
3244
+ <wp:postmeta>
3245
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3246
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3247
+ </wp:postmeta>
3248
+ <wp:postmeta>
3249
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3250
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3251
+ </wp:postmeta>
3252
+ <wp:postmeta>
3253
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3254
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3255
+ </wp:postmeta>
3256
+ <wp:postmeta>
3257
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3258
+ <wp:meta_value><![CDATA[#]]></wp:meta_value>
3259
+ </wp:postmeta>
3260
+ <wp:postmeta>
3261
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3262
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3263
+ </wp:postmeta>
3264
+ <wp:postmeta>
3265
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3266
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3267
+ </wp:postmeta>
3268
+ <wp:postmeta>
3269
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3270
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3271
+ </wp:postmeta>
3272
+ <wp:postmeta>
3273
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3274
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3275
+ </wp:postmeta>
3276
+ <wp:postmeta>
3277
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3278
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3279
+ </wp:postmeta>
3280
+ <wp:postmeta>
3281
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
3282
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3283
+ </wp:postmeta>
3284
+ <wp:postmeta>
3285
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
3286
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3287
+ </wp:postmeta>
3288
+ <wp:postmeta>
3289
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
3290
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3291
+ </wp:postmeta>
3292
+ <wp:postmeta>
3293
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
3294
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3295
+ </wp:postmeta>
3296
+ <wp:postmeta>
3297
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3298
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3299
+ </wp:postmeta>
3300
+ <wp:postmeta>
3301
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3302
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3303
+ </wp:postmeta>
3304
+ <wp:postmeta>
3305
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
3306
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3307
+ </wp:postmeta>
3308
+ </item>
3309
+ <item>
3310
+ <title></title>
3311
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/167/</link>
3312
+ <pubDate>Sun, 21 Aug 2016 12:03:33 +0000</pubDate>
3313
+ <dc:creator><![CDATA[admin]]></dc:creator>
3314
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=167</guid>
3315
+ <description></description>
3316
+ <content:encoded><![CDATA[ ]]></content:encoded>
3317
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3318
+ <wp:post_id>167</wp:post_id>
3319
+ <wp:post_date><![CDATA[2016-08-21 12:03:33]]></wp:post_date>
3320
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:03:33]]></wp:post_date_gmt>
3321
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3322
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3323
+ <wp:post_name><![CDATA[167]]></wp:post_name>
3324
+ <wp:status><![CDATA[publish]]></wp:status>
3325
+ <wp:post_parent>0</wp:post_parent>
3326
+ <wp:menu_order>14</wp:menu_order>
3327
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3328
+ <wp:post_password><![CDATA[]]></wp:post_password>
3329
+ <wp:is_sticky>0</wp:is_sticky>
3330
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
3331
+ <wp:postmeta>
3332
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3333
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
3334
+ </wp:postmeta>
3335
+ <wp:postmeta>
3336
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3337
+ <wp:meta_value><![CDATA[329]]></wp:meta_value>
3338
+ </wp:postmeta>
3339
+ <wp:postmeta>
3340
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3341
+ <wp:meta_value><![CDATA[117]]></wp:meta_value>
3342
+ </wp:postmeta>
3343
+ <wp:postmeta>
3344
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3345
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
3346
+ </wp:postmeta>
3347
+ <wp:postmeta>
3348
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3349
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3350
+ </wp:postmeta>
3351
+ <wp:postmeta>
3352
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3353
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3354
+ </wp:postmeta>
3355
+ <wp:postmeta>
3356
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3357
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3358
+ </wp:postmeta>
3359
+ <wp:postmeta>
3360
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3361
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3362
+ </wp:postmeta>
3363
+ <wp:postmeta>
3364
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3365
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3366
+ </wp:postmeta>
3367
+ <wp:postmeta>
3368
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3369
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3370
+ </wp:postmeta>
3371
+ <wp:postmeta>
3372
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3373
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3374
+ </wp:postmeta>
3375
+ <wp:postmeta>
3376
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3377
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3378
+ </wp:postmeta>
3379
+ <wp:postmeta>
3380
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3381
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3382
+ </wp:postmeta>
3383
+ <wp:postmeta>
3384
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
3385
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3386
+ </wp:postmeta>
3387
+ <wp:postmeta>
3388
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
3389
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3390
+ </wp:postmeta>
3391
+ <wp:postmeta>
3392
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
3393
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3394
+ </wp:postmeta>
3395
+ <wp:postmeta>
3396
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
3397
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3398
+ </wp:postmeta>
3399
+ <wp:postmeta>
3400
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3401
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3402
+ </wp:postmeta>
3403
+ <wp:postmeta>
3404
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3405
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3406
+ </wp:postmeta>
3407
+ <wp:postmeta>
3408
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
3409
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3410
+ </wp:postmeta>
3411
+ </item>
3412
+ <item>
3413
+ <title></title>
3414
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/168/</link>
3415
+ <pubDate>Sun, 21 Aug 2016 12:03:33 +0000</pubDate>
3416
+ <dc:creator><![CDATA[admin]]></dc:creator>
3417
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=168</guid>
3418
+ <description></description>
3419
+ <content:encoded><![CDATA[ ]]></content:encoded>
3420
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3421
+ <wp:post_id>168</wp:post_id>
3422
+ <wp:post_date><![CDATA[2016-08-21 12:03:33]]></wp:post_date>
3423
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:03:33]]></wp:post_date_gmt>
3424
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3425
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3426
+ <wp:post_name><![CDATA[168]]></wp:post_name>
3427
+ <wp:status><![CDATA[publish]]></wp:status>
3428
+ <wp:post_parent>0</wp:post_parent>
3429
+ <wp:menu_order>16</wp:menu_order>
3430
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3431
+ <wp:post_password><![CDATA[]]></wp:post_password>
3432
+ <wp:is_sticky>0</wp:is_sticky>
3433
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
3434
+ <wp:postmeta>
3435
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3436
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
3437
+ </wp:postmeta>
3438
+ <wp:postmeta>
3439
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3440
+ <wp:meta_value><![CDATA[329]]></wp:meta_value>
3441
+ </wp:postmeta>
3442
+ <wp:postmeta>
3443
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3444
+ <wp:meta_value><![CDATA[119]]></wp:meta_value>
3445
+ </wp:postmeta>
3446
+ <wp:postmeta>
3447
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3448
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
3449
+ </wp:postmeta>
3450
+ <wp:postmeta>
3451
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3452
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3453
+ </wp:postmeta>
3454
+ <wp:postmeta>
3455
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3456
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3457
+ </wp:postmeta>
3458
+ <wp:postmeta>
3459
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3460
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3461
+ </wp:postmeta>
3462
+ <wp:postmeta>
3463
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3464
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3465
+ </wp:postmeta>
3466
+ <wp:postmeta>
3467
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3468
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3469
+ </wp:postmeta>
3470
+ <wp:postmeta>
3471
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3472
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3473
+ </wp:postmeta>
3474
+ <wp:postmeta>
3475
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3476
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3477
+ </wp:postmeta>
3478
+ <wp:postmeta>
3479
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3480
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3481
+ </wp:postmeta>
3482
+ <wp:postmeta>
3483
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3484
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3485
+ </wp:postmeta>
3486
+ <wp:postmeta>
3487
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
3488
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3489
+ </wp:postmeta>
3490
+ <wp:postmeta>
3491
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
3492
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3493
+ </wp:postmeta>
3494
+ <wp:postmeta>
3495
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
3496
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3497
+ </wp:postmeta>
3498
+ <wp:postmeta>
3499
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
3500
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3501
+ </wp:postmeta>
3502
+ <wp:postmeta>
3503
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3504
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3505
+ </wp:postmeta>
3506
+ <wp:postmeta>
3507
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3508
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3509
+ </wp:postmeta>
3510
+ <wp:postmeta>
3511
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
3512
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3513
+ </wp:postmeta>
3514
+ </item>
3515
+ <item>
3516
+ <title></title>
3517
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/169/</link>
3518
+ <pubDate>Sun, 21 Aug 2016 12:03:33 +0000</pubDate>
3519
+ <dc:creator><![CDATA[admin]]></dc:creator>
3520
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=169</guid>
3521
+ <description></description>
3522
+ <content:encoded><![CDATA[ ]]></content:encoded>
3523
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3524
+ <wp:post_id>169</wp:post_id>
3525
+ <wp:post_date><![CDATA[2016-08-21 12:03:33]]></wp:post_date>
3526
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:03:33]]></wp:post_date_gmt>
3527
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3528
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3529
+ <wp:post_name><![CDATA[169]]></wp:post_name>
3530
+ <wp:status><![CDATA[publish]]></wp:status>
3531
+ <wp:post_parent>0</wp:post_parent>
3532
+ <wp:menu_order>21</wp:menu_order>
3533
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3534
+ <wp:post_password><![CDATA[]]></wp:post_password>
3535
+ <wp:is_sticky>0</wp:is_sticky>
3536
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
3537
+ <wp:postmeta>
3538
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3539
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
3540
+ </wp:postmeta>
3541
+ <wp:postmeta>
3542
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3543
+ <wp:meta_value><![CDATA[330]]></wp:meta_value>
3544
+ </wp:postmeta>
3545
+ <wp:postmeta>
3546
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3547
+ <wp:meta_value><![CDATA[121]]></wp:meta_value>
3548
+ </wp:postmeta>
3549
+ <wp:postmeta>
3550
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3551
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
3552
+ </wp:postmeta>
3553
+ <wp:postmeta>
3554
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3555
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3556
+ </wp:postmeta>
3557
+ <wp:postmeta>
3558
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3559
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3560
+ </wp:postmeta>
3561
+ <wp:postmeta>
3562
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3563
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3564
+ </wp:postmeta>
3565
+ <wp:postmeta>
3566
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3567
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3568
+ </wp:postmeta>
3569
+ <wp:postmeta>
3570
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3571
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3572
+ </wp:postmeta>
3573
+ <wp:postmeta>
3574
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3575
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3576
+ </wp:postmeta>
3577
+ <wp:postmeta>
3578
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3579
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3580
+ </wp:postmeta>
3581
+ <wp:postmeta>
3582
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3583
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3584
+ </wp:postmeta>
3585
+ <wp:postmeta>
3586
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3587
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3588
+ </wp:postmeta>
3589
+ <wp:postmeta>
3590
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
3591
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3592
+ </wp:postmeta>
3593
+ <wp:postmeta>
3594
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
3595
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3596
+ </wp:postmeta>
3597
+ <wp:postmeta>
3598
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
3599
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3600
+ </wp:postmeta>
3601
+ <wp:postmeta>
3602
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
3603
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3604
+ </wp:postmeta>
3605
+ <wp:postmeta>
3606
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3607
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3608
+ </wp:postmeta>
3609
+ <wp:postmeta>
3610
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3611
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3612
+ </wp:postmeta>
3613
+ <wp:postmeta>
3614
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
3615
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3616
+ </wp:postmeta>
3617
+ </item>
3618
+ <item>
3619
+ <title></title>
3620
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/170/</link>
3621
+ <pubDate>Sun, 21 Aug 2016 12:03:33 +0000</pubDate>
3622
+ <dc:creator><![CDATA[admin]]></dc:creator>
3623
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=170</guid>
3624
+ <description></description>
3625
+ <content:encoded><![CDATA[ ]]></content:encoded>
3626
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3627
+ <wp:post_id>170</wp:post_id>
3628
+ <wp:post_date><![CDATA[2016-08-21 12:03:33]]></wp:post_date>
3629
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:03:33]]></wp:post_date_gmt>
3630
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3631
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3632
+ <wp:post_name><![CDATA[170]]></wp:post_name>
3633
+ <wp:status><![CDATA[publish]]></wp:status>
3634
+ <wp:post_parent>0</wp:post_parent>
3635
+ <wp:menu_order>17</wp:menu_order>
3636
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3637
+ <wp:post_password><![CDATA[]]></wp:post_password>
3638
+ <wp:is_sticky>0</wp:is_sticky>
3639
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
3640
+ <wp:postmeta>
3641
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3642
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
3643
+ </wp:postmeta>
3644
+ <wp:postmeta>
3645
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3646
+ <wp:meta_value><![CDATA[329]]></wp:meta_value>
3647
+ </wp:postmeta>
3648
+ <wp:postmeta>
3649
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3650
+ <wp:meta_value><![CDATA[123]]></wp:meta_value>
3651
+ </wp:postmeta>
3652
+ <wp:postmeta>
3653
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3654
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
3655
+ </wp:postmeta>
3656
+ <wp:postmeta>
3657
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3658
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3659
+ </wp:postmeta>
3660
+ <wp:postmeta>
3661
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3662
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3663
+ </wp:postmeta>
3664
+ <wp:postmeta>
3665
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3666
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3667
+ </wp:postmeta>
3668
+ <wp:postmeta>
3669
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3670
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3671
+ </wp:postmeta>
3672
+ <wp:postmeta>
3673
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3674
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3675
+ </wp:postmeta>
3676
+ <wp:postmeta>
3677
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3678
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3679
+ </wp:postmeta>
3680
+ <wp:postmeta>
3681
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3682
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3683
+ </wp:postmeta>
3684
+ <wp:postmeta>
3685
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3686
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3687
+ </wp:postmeta>
3688
+ <wp:postmeta>
3689
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3690
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3691
+ </wp:postmeta>
3692
+ <wp:postmeta>
3693
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
3694
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3695
+ </wp:postmeta>
3696
+ <wp:postmeta>
3697
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
3698
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3699
+ </wp:postmeta>
3700
+ <wp:postmeta>
3701
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
3702
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3703
+ </wp:postmeta>
3704
+ <wp:postmeta>
3705
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
3706
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3707
+ </wp:postmeta>
3708
+ <wp:postmeta>
3709
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3710
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3711
+ </wp:postmeta>
3712
+ <wp:postmeta>
3713
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3714
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3715
+ </wp:postmeta>
3716
+ <wp:postmeta>
3717
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
3718
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3719
+ </wp:postmeta>
3720
+ </item>
3721
+ <item>
3722
+ <title></title>
3723
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/171/</link>
3724
+ <pubDate>Sun, 21 Aug 2016 12:03:33 +0000</pubDate>
3725
+ <dc:creator><![CDATA[admin]]></dc:creator>
3726
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=171</guid>
3727
+ <description></description>
3728
+ <content:encoded><![CDATA[ ]]></content:encoded>
3729
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3730
+ <wp:post_id>171</wp:post_id>
3731
+ <wp:post_date><![CDATA[2016-08-21 12:03:33]]></wp:post_date>
3732
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:03:33]]></wp:post_date_gmt>
3733
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3734
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3735
+ <wp:post_name><![CDATA[171]]></wp:post_name>
3736
+ <wp:status><![CDATA[publish]]></wp:status>
3737
+ <wp:post_parent>0</wp:post_parent>
3738
+ <wp:menu_order>23</wp:menu_order>
3739
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3740
+ <wp:post_password><![CDATA[]]></wp:post_password>
3741
+ <wp:is_sticky>0</wp:is_sticky>
3742
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
3743
+ <wp:postmeta>
3744
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3745
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
3746
+ </wp:postmeta>
3747
+ <wp:postmeta>
3748
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3749
+ <wp:meta_value><![CDATA[330]]></wp:meta_value>
3750
+ </wp:postmeta>
3751
+ <wp:postmeta>
3752
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3753
+ <wp:meta_value><![CDATA[134]]></wp:meta_value>
3754
+ </wp:postmeta>
3755
+ <wp:postmeta>
3756
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3757
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
3758
+ </wp:postmeta>
3759
+ <wp:postmeta>
3760
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3761
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3762
+ </wp:postmeta>
3763
+ <wp:postmeta>
3764
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3765
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3766
+ </wp:postmeta>
3767
+ <wp:postmeta>
3768
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3769
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3770
+ </wp:postmeta>
3771
+ <wp:postmeta>
3772
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3773
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3774
+ </wp:postmeta>
3775
+ <wp:postmeta>
3776
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3777
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3778
+ </wp:postmeta>
3779
+ <wp:postmeta>
3780
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3781
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3782
+ </wp:postmeta>
3783
+ <wp:postmeta>
3784
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3785
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3786
+ </wp:postmeta>
3787
+ <wp:postmeta>
3788
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3789
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3790
+ </wp:postmeta>
3791
+ <wp:postmeta>
3792
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3793
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3794
+ </wp:postmeta>
3795
+ <wp:postmeta>
3796
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
3797
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3798
+ </wp:postmeta>
3799
+ <wp:postmeta>
3800
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
3801
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3802
+ </wp:postmeta>
3803
+ <wp:postmeta>
3804
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
3805
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3806
+ </wp:postmeta>
3807
+ <wp:postmeta>
3808
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
3809
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3810
+ </wp:postmeta>
3811
+ <wp:postmeta>
3812
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3813
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3814
+ </wp:postmeta>
3815
+ <wp:postmeta>
3816
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3817
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3818
+ </wp:postmeta>
3819
+ <wp:postmeta>
3820
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
3821
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3822
+ </wp:postmeta>
3823
+ </item>
3824
+ <item>
3825
+ <title></title>
3826
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/172/</link>
3827
+ <pubDate>Sun, 21 Aug 2016 12:03:33 +0000</pubDate>
3828
+ <dc:creator><![CDATA[admin]]></dc:creator>
3829
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=172</guid>
3830
+ <description></description>
3831
+ <content:encoded><![CDATA[ ]]></content:encoded>
3832
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3833
+ <wp:post_id>172</wp:post_id>
3834
+ <wp:post_date><![CDATA[2016-08-21 12:03:33]]></wp:post_date>
3835
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:03:33]]></wp:post_date_gmt>
3836
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3837
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3838
+ <wp:post_name><![CDATA[172]]></wp:post_name>
3839
+ <wp:status><![CDATA[publish]]></wp:status>
3840
+ <wp:post_parent>0</wp:post_parent>
3841
+ <wp:menu_order>32</wp:menu_order>
3842
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3843
+ <wp:post_password><![CDATA[]]></wp:post_password>
3844
+ <wp:is_sticky>0</wp:is_sticky>
3845
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
3846
+ <wp:postmeta>
3847
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3848
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
3849
+ </wp:postmeta>
3850
+ <wp:postmeta>
3851
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3852
+ <wp:meta_value><![CDATA[331]]></wp:meta_value>
3853
+ </wp:postmeta>
3854
+ <wp:postmeta>
3855
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3856
+ <wp:meta_value><![CDATA[136]]></wp:meta_value>
3857
+ </wp:postmeta>
3858
+ <wp:postmeta>
3859
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3860
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
3861
+ </wp:postmeta>
3862
+ <wp:postmeta>
3863
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3864
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3865
+ </wp:postmeta>
3866
+ <wp:postmeta>
3867
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3868
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3869
+ </wp:postmeta>
3870
+ <wp:postmeta>
3871
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3872
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3873
+ </wp:postmeta>
3874
+ <wp:postmeta>
3875
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3876
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3877
+ </wp:postmeta>
3878
+ <wp:postmeta>
3879
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3880
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3881
+ </wp:postmeta>
3882
+ <wp:postmeta>
3883
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3884
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3885
+ </wp:postmeta>
3886
+ <wp:postmeta>
3887
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3888
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3889
+ </wp:postmeta>
3890
+ <wp:postmeta>
3891
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3892
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3893
+ </wp:postmeta>
3894
+ <wp:postmeta>
3895
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3896
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3897
+ </wp:postmeta>
3898
+ <wp:postmeta>
3899
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
3900
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3901
+ </wp:postmeta>
3902
+ <wp:postmeta>
3903
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
3904
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
3905
+ </wp:postmeta>
3906
+ <wp:postmeta>
3907
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
3908
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3909
+ </wp:postmeta>
3910
+ <wp:postmeta>
3911
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
3912
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3913
+ </wp:postmeta>
3914
+ <wp:postmeta>
3915
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
3916
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3917
+ </wp:postmeta>
3918
+ <wp:postmeta>
3919
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
3920
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3921
+ </wp:postmeta>
3922
+ <wp:postmeta>
3923
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
3924
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3925
+ </wp:postmeta>
3926
+ </item>
3927
+ <item>
3928
+ <title></title>
3929
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/173/</link>
3930
+ <pubDate>Sun, 21 Aug 2016 12:03:33 +0000</pubDate>
3931
+ <dc:creator><![CDATA[admin]]></dc:creator>
3932
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=173</guid>
3933
+ <description></description>
3934
+ <content:encoded><![CDATA[ ]]></content:encoded>
3935
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
3936
+ <wp:post_id>173</wp:post_id>
3937
+ <wp:post_date><![CDATA[2016-08-21 12:03:33]]></wp:post_date>
3938
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:03:33]]></wp:post_date_gmt>
3939
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
3940
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
3941
+ <wp:post_name><![CDATA[173]]></wp:post_name>
3942
+ <wp:status><![CDATA[publish]]></wp:status>
3943
+ <wp:post_parent>0</wp:post_parent>
3944
+ <wp:menu_order>30</wp:menu_order>
3945
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
3946
+ <wp:post_password><![CDATA[]]></wp:post_password>
3947
+ <wp:is_sticky>0</wp:is_sticky>
3948
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
3949
+ <wp:postmeta>
3950
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
3951
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
3952
+ </wp:postmeta>
3953
+ <wp:postmeta>
3954
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
3955
+ <wp:meta_value><![CDATA[331]]></wp:meta_value>
3956
+ </wp:postmeta>
3957
+ <wp:postmeta>
3958
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
3959
+ <wp:meta_value><![CDATA[139]]></wp:meta_value>
3960
+ </wp:postmeta>
3961
+ <wp:postmeta>
3962
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
3963
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
3964
+ </wp:postmeta>
3965
+ <wp:postmeta>
3966
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
3967
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3968
+ </wp:postmeta>
3969
+ <wp:postmeta>
3970
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
3971
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
3972
+ </wp:postmeta>
3973
+ <wp:postmeta>
3974
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
3975
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3976
+ </wp:postmeta>
3977
+ <wp:postmeta>
3978
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
3979
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3980
+ </wp:postmeta>
3981
+ <wp:postmeta>
3982
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
3983
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3984
+ </wp:postmeta>
3985
+ <wp:postmeta>
3986
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
3987
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3988
+ </wp:postmeta>
3989
+ <wp:postmeta>
3990
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
3991
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
3992
+ </wp:postmeta>
3993
+ <wp:postmeta>
3994
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
3995
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
3996
+ </wp:postmeta>
3997
+ <wp:postmeta>
3998
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
3999
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4000
+ </wp:postmeta>
4001
+ <wp:postmeta>
4002
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
4003
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4004
+ </wp:postmeta>
4005
+ <wp:postmeta>
4006
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
4007
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4008
+ </wp:postmeta>
4009
+ <wp:postmeta>
4010
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
4011
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4012
+ </wp:postmeta>
4013
+ <wp:postmeta>
4014
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
4015
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4016
+ </wp:postmeta>
4017
+ <wp:postmeta>
4018
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
4019
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4020
+ </wp:postmeta>
4021
+ <wp:postmeta>
4022
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
4023
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4024
+ </wp:postmeta>
4025
+ <wp:postmeta>
4026
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
4027
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4028
+ </wp:postmeta>
4029
+ </item>
4030
+ <item>
4031
+ <title></title>
4032
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/176/</link>
4033
+ <pubDate>Sun, 21 Aug 2016 12:09:55 +0000</pubDate>
4034
+ <dc:creator><![CDATA[admin]]></dc:creator>
4035
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=176</guid>
4036
+ <description></description>
4037
+ <content:encoded><![CDATA[ ]]></content:encoded>
4038
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4039
+ <wp:post_id>176</wp:post_id>
4040
+ <wp:post_date><![CDATA[2016-08-21 12:09:55]]></wp:post_date>
4041
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:09:55]]></wp:post_date_gmt>
4042
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
4043
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
4044
+ <wp:post_name><![CDATA[176]]></wp:post_name>
4045
+ <wp:status><![CDATA[publish]]></wp:status>
4046
+ <wp:post_parent>0</wp:post_parent>
4047
+ <wp:menu_order>15</wp:menu_order>
4048
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
4049
+ <wp:post_password><![CDATA[]]></wp:post_password>
4050
+ <wp:is_sticky>0</wp:is_sticky>
4051
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
4052
+ <wp:postmeta>
4053
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
4054
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
4055
+ </wp:postmeta>
4056
+ <wp:postmeta>
4057
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
4058
+ <wp:meta_value><![CDATA[329]]></wp:meta_value>
4059
+ </wp:postmeta>
4060
+ <wp:postmeta>
4061
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
4062
+ <wp:meta_value><![CDATA[141]]></wp:meta_value>
4063
+ </wp:postmeta>
4064
+ <wp:postmeta>
4065
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
4066
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
4067
+ </wp:postmeta>
4068
+ <wp:postmeta>
4069
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
4070
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4071
+ </wp:postmeta>
4072
+ <wp:postmeta>
4073
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
4074
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
4075
+ </wp:postmeta>
4076
+ <wp:postmeta>
4077
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
4078
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4079
+ </wp:postmeta>
4080
+ <wp:postmeta>
4081
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
4082
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4083
+ </wp:postmeta>
4084
+ <wp:postmeta>
4085
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
4086
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4087
+ </wp:postmeta>
4088
+ <wp:postmeta>
4089
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
4090
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4091
+ </wp:postmeta>
4092
+ <wp:postmeta>
4093
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
4094
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4095
+ </wp:postmeta>
4096
+ <wp:postmeta>
4097
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
4098
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4099
+ </wp:postmeta>
4100
+ <wp:postmeta>
4101
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
4102
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4103
+ </wp:postmeta>
4104
+ <wp:postmeta>
4105
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
4106
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4107
+ </wp:postmeta>
4108
+ <wp:postmeta>
4109
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
4110
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4111
+ </wp:postmeta>
4112
+ <wp:postmeta>
4113
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
4114
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4115
+ </wp:postmeta>
4116
+ <wp:postmeta>
4117
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
4118
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4119
+ </wp:postmeta>
4120
+ <wp:postmeta>
4121
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
4122
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4123
+ </wp:postmeta>
4124
+ <wp:postmeta>
4125
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
4126
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4127
+ </wp:postmeta>
4128
+ <wp:postmeta>
4129
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
4130
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4131
+ </wp:postmeta>
4132
+ </item>
4133
+ <item>
4134
+ <title></title>
4135
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/177/</link>
4136
+ <pubDate>Sun, 21 Aug 2016 12:09:55 +0000</pubDate>
4137
+ <dc:creator><![CDATA[admin]]></dc:creator>
4138
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=177</guid>
4139
+ <description></description>
4140
+ <content:encoded><![CDATA[ ]]></content:encoded>
4141
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4142
+ <wp:post_id>177</wp:post_id>
4143
+ <wp:post_date><![CDATA[2016-08-21 12:09:55]]></wp:post_date>
4144
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:09:55]]></wp:post_date_gmt>
4145
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
4146
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
4147
+ <wp:post_name><![CDATA[177]]></wp:post_name>
4148
+ <wp:status><![CDATA[publish]]></wp:status>
4149
+ <wp:post_parent>0</wp:post_parent>
4150
+ <wp:menu_order>31</wp:menu_order>
4151
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
4152
+ <wp:post_password><![CDATA[]]></wp:post_password>
4153
+ <wp:is_sticky>0</wp:is_sticky>
4154
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
4155
+ <wp:postmeta>
4156
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
4157
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
4158
+ </wp:postmeta>
4159
+ <wp:postmeta>
4160
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
4161
+ <wp:meta_value><![CDATA[331]]></wp:meta_value>
4162
+ </wp:postmeta>
4163
+ <wp:postmeta>
4164
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
4165
+ <wp:meta_value><![CDATA[143]]></wp:meta_value>
4166
+ </wp:postmeta>
4167
+ <wp:postmeta>
4168
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
4169
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
4170
+ </wp:postmeta>
4171
+ <wp:postmeta>
4172
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
4173
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4174
+ </wp:postmeta>
4175
+ <wp:postmeta>
4176
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
4177
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
4178
+ </wp:postmeta>
4179
+ <wp:postmeta>
4180
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
4181
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4182
+ </wp:postmeta>
4183
+ <wp:postmeta>
4184
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
4185
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4186
+ </wp:postmeta>
4187
+ <wp:postmeta>
4188
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
4189
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4190
+ </wp:postmeta>
4191
+ <wp:postmeta>
4192
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
4193
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4194
+ </wp:postmeta>
4195
+ <wp:postmeta>
4196
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
4197
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4198
+ </wp:postmeta>
4199
+ <wp:postmeta>
4200
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
4201
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4202
+ </wp:postmeta>
4203
+ <wp:postmeta>
4204
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
4205
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4206
+ </wp:postmeta>
4207
+ <wp:postmeta>
4208
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
4209
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4210
+ </wp:postmeta>
4211
+ <wp:postmeta>
4212
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
4213
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4214
+ </wp:postmeta>
4215
+ <wp:postmeta>
4216
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
4217
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4218
+ </wp:postmeta>
4219
+ <wp:postmeta>
4220
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
4221
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4222
+ </wp:postmeta>
4223
+ <wp:postmeta>
4224
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
4225
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4226
+ </wp:postmeta>
4227
+ <wp:postmeta>
4228
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
4229
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4230
+ </wp:postmeta>
4231
+ <wp:postmeta>
4232
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
4233
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4234
+ </wp:postmeta>
4235
+ </item>
4236
+ <item>
4237
+ <title></title>
4238
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/180/</link>
4239
+ <pubDate>Sun, 21 Aug 2016 12:09:55 +0000</pubDate>
4240
+ <dc:creator><![CDATA[admin]]></dc:creator>
4241
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=180</guid>
4242
+ <description></description>
4243
+ <content:encoded><![CDATA[ ]]></content:encoded>
4244
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4245
+ <wp:post_id>180</wp:post_id>
4246
+ <wp:post_date><![CDATA[2016-08-21 12:09:55]]></wp:post_date>
4247
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:09:55]]></wp:post_date_gmt>
4248
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
4249
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
4250
+ <wp:post_name><![CDATA[180]]></wp:post_name>
4251
+ <wp:status><![CDATA[publish]]></wp:status>
4252
+ <wp:post_parent>0</wp:post_parent>
4253
+ <wp:menu_order>19</wp:menu_order>
4254
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
4255
+ <wp:post_password><![CDATA[]]></wp:post_password>
4256
+ <wp:is_sticky>0</wp:is_sticky>
4257
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
4258
+ <wp:postmeta>
4259
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
4260
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
4261
+ </wp:postmeta>
4262
+ <wp:postmeta>
4263
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
4264
+ <wp:meta_value><![CDATA[329]]></wp:meta_value>
4265
+ </wp:postmeta>
4266
+ <wp:postmeta>
4267
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
4268
+ <wp:meta_value><![CDATA[147]]></wp:meta_value>
4269
+ </wp:postmeta>
4270
+ <wp:postmeta>
4271
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
4272
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
4273
+ </wp:postmeta>
4274
+ <wp:postmeta>
4275
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
4276
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4277
+ </wp:postmeta>
4278
+ <wp:postmeta>
4279
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
4280
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
4281
+ </wp:postmeta>
4282
+ <wp:postmeta>
4283
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
4284
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4285
+ </wp:postmeta>
4286
+ <wp:postmeta>
4287
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
4288
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4289
+ </wp:postmeta>
4290
+ <wp:postmeta>
4291
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
4292
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4293
+ </wp:postmeta>
4294
+ <wp:postmeta>
4295
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
4296
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4297
+ </wp:postmeta>
4298
+ <wp:postmeta>
4299
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
4300
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4301
+ </wp:postmeta>
4302
+ <wp:postmeta>
4303
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
4304
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4305
+ </wp:postmeta>
4306
+ <wp:postmeta>
4307
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
4308
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4309
+ </wp:postmeta>
4310
+ <wp:postmeta>
4311
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
4312
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4313
+ </wp:postmeta>
4314
+ <wp:postmeta>
4315
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
4316
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4317
+ </wp:postmeta>
4318
+ <wp:postmeta>
4319
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
4320
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4321
+ </wp:postmeta>
4322
+ <wp:postmeta>
4323
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
4324
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4325
+ </wp:postmeta>
4326
+ <wp:postmeta>
4327
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
4328
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4329
+ </wp:postmeta>
4330
+ <wp:postmeta>
4331
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
4332
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4333
+ </wp:postmeta>
4334
+ <wp:postmeta>
4335
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
4336
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4337
+ </wp:postmeta>
4338
+ </item>
4339
+ <item>
4340
+ <title></title>
4341
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/181/</link>
4342
+ <pubDate>Sun, 21 Aug 2016 12:09:56 +0000</pubDate>
4343
+ <dc:creator><![CDATA[admin]]></dc:creator>
4344
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=181</guid>
4345
+ <description></description>
4346
+ <content:encoded><![CDATA[ ]]></content:encoded>
4347
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4348
+ <wp:post_id>181</wp:post_id>
4349
+ <wp:post_date><![CDATA[2016-08-21 12:09:56]]></wp:post_date>
4350
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:09:56]]></wp:post_date_gmt>
4351
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
4352
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
4353
+ <wp:post_name><![CDATA[181]]></wp:post_name>
4354
+ <wp:status><![CDATA[publish]]></wp:status>
4355
+ <wp:post_parent>0</wp:post_parent>
4356
+ <wp:menu_order>36</wp:menu_order>
4357
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
4358
+ <wp:post_password><![CDATA[]]></wp:post_password>
4359
+ <wp:is_sticky>0</wp:is_sticky>
4360
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
4361
+ <wp:postmeta>
4362
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
4363
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
4364
+ </wp:postmeta>
4365
+ <wp:postmeta>
4366
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
4367
+ <wp:meta_value><![CDATA[332]]></wp:meta_value>
4368
+ </wp:postmeta>
4369
+ <wp:postmeta>
4370
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
4371
+ <wp:meta_value><![CDATA[149]]></wp:meta_value>
4372
+ </wp:postmeta>
4373
+ <wp:postmeta>
4374
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
4375
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
4376
+ </wp:postmeta>
4377
+ <wp:postmeta>
4378
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
4379
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4380
+ </wp:postmeta>
4381
+ <wp:postmeta>
4382
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
4383
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
4384
+ </wp:postmeta>
4385
+ <wp:postmeta>
4386
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
4387
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4388
+ </wp:postmeta>
4389
+ <wp:postmeta>
4390
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
4391
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4392
+ </wp:postmeta>
4393
+ <wp:postmeta>
4394
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
4395
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4396
+ </wp:postmeta>
4397
+ <wp:postmeta>
4398
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
4399
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4400
+ </wp:postmeta>
4401
+ <wp:postmeta>
4402
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
4403
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4404
+ </wp:postmeta>
4405
+ <wp:postmeta>
4406
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
4407
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4408
+ </wp:postmeta>
4409
+ <wp:postmeta>
4410
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
4411
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4412
+ </wp:postmeta>
4413
+ <wp:postmeta>
4414
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
4415
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4416
+ </wp:postmeta>
4417
+ <wp:postmeta>
4418
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
4419
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4420
+ </wp:postmeta>
4421
+ <wp:postmeta>
4422
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
4423
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4424
+ </wp:postmeta>
4425
+ <wp:postmeta>
4426
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
4427
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4428
+ </wp:postmeta>
4429
+ <wp:postmeta>
4430
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
4431
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4432
+ </wp:postmeta>
4433
+ <wp:postmeta>
4434
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
4435
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4436
+ </wp:postmeta>
4437
+ <wp:postmeta>
4438
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
4439
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4440
+ </wp:postmeta>
4441
+ </item>
4442
+ <item>
4443
+ <title></title>
4444
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/182/</link>
4445
+ <pubDate>Sun, 21 Aug 2016 12:09:56 +0000</pubDate>
4446
+ <dc:creator><![CDATA[admin]]></dc:creator>
4447
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=182</guid>
4448
+ <description></description>
4449
+ <content:encoded><![CDATA[ ]]></content:encoded>
4450
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4451
+ <wp:post_id>182</wp:post_id>
4452
+ <wp:post_date><![CDATA[2016-08-21 12:09:56]]></wp:post_date>
4453
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:09:56]]></wp:post_date_gmt>
4454
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
4455
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
4456
+ <wp:post_name><![CDATA[182]]></wp:post_name>
4457
+ <wp:status><![CDATA[publish]]></wp:status>
4458
+ <wp:post_parent>0</wp:post_parent>
4459
+ <wp:menu_order>37</wp:menu_order>
4460
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
4461
+ <wp:post_password><![CDATA[]]></wp:post_password>
4462
+ <wp:is_sticky>0</wp:is_sticky>
4463
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
4464
+ <wp:postmeta>
4465
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
4466
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
4467
+ </wp:postmeta>
4468
+ <wp:postmeta>
4469
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
4470
+ <wp:meta_value><![CDATA[332]]></wp:meta_value>
4471
+ </wp:postmeta>
4472
+ <wp:postmeta>
4473
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
4474
+ <wp:meta_value><![CDATA[151]]></wp:meta_value>
4475
+ </wp:postmeta>
4476
+ <wp:postmeta>
4477
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
4478
+ <wp:meta_value><![CDATA[page]]></wp:meta_value>
4479
+ </wp:postmeta>
4480
+ <wp:postmeta>
4481
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
4482
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4483
+ </wp:postmeta>
4484
+ <wp:postmeta>
4485
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
4486
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
4487
+ </wp:postmeta>
4488
+ <wp:postmeta>
4489
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
4490
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4491
+ </wp:postmeta>
4492
+ <wp:postmeta>
4493
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
4494
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4495
+ </wp:postmeta>
4496
+ <wp:postmeta>
4497
+ <wp:meta_key><![CDATA[_menu_item_megamenu]]></wp:meta_key>
4498
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4499
+ </wp:postmeta>
4500
+ <wp:postmeta>
4501
+ <wp:meta_key><![CDATA[_menu_item_nolink]]></wp:meta_key>
4502
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4503
+ </wp:postmeta>
4504
+ <wp:postmeta>
4505
+ <wp:meta_key><![CDATA[_menu_item_hide_label]]></wp:meta_key>
4506
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4507
+ </wp:postmeta>
4508
+ <wp:postmeta>
4509
+ <wp:meta_key><![CDATA[_menu_item_icon]]></wp:meta_key>
4510
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4511
+ </wp:postmeta>
4512
+ <wp:postmeta>
4513
+ <wp:meta_key><![CDATA[_menu_item_icon_align]]></wp:meta_key>
4514
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4515
+ </wp:postmeta>
4516
+ <wp:postmeta>
4517
+ <wp:meta_key><![CDATA[_menu_item_row_start]]></wp:meta_key>
4518
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4519
+ </wp:postmeta>
4520
+ <wp:postmeta>
4521
+ <wp:meta_key><![CDATA[_menu_item_col_num]]></wp:meta_key>
4522
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
4523
+ </wp:postmeta>
4524
+ <wp:postmeta>
4525
+ <wp:meta_key><![CDATA[_menu_item_hide_desktop]]></wp:meta_key>
4526
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4527
+ </wp:postmeta>
4528
+ <wp:postmeta>
4529
+ <wp:meta_key><![CDATA[_menu_item_hide_tablet]]></wp:meta_key>
4530
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4531
+ </wp:postmeta>
4532
+ <wp:postmeta>
4533
+ <wp:meta_key><![CDATA[_menu_item_hide_mobile]]></wp:meta_key>
4534
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4535
+ </wp:postmeta>
4536
+ <wp:postmeta>
4537
+ <wp:meta_key><![CDATA[_menu_item_custom_style]]></wp:meta_key>
4538
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4539
+ </wp:postmeta>
4540
+ <wp:postmeta>
4541
+ <wp:meta_key><![CDATA[_menu_item_hide_title]]></wp:meta_key>
4542
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4543
+ </wp:postmeta>
4544
+ </item>
4545
+ <item>
4546
+ <title>max-ostrozhinskiy-223040</title>
4547
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/max-ostrozhinskiy-223040/</link>
4548
+ <pubDate>Sat, 20 May 2017 07:45:49 +0000</pubDate>
4549
+ <dc:creator><![CDATA[kasra]]></dc:creator>
4550
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/max-ostrozhinskiy-223040.jpg</guid>
4551
+ <description></description>
4552
+ <content:encoded><![CDATA[]]></content:encoded>
4553
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4554
+ <wp:post_id>1147</wp:post_id>
4555
+ <wp:post_date><![CDATA[2017-05-20 07:45:49]]></wp:post_date>
4556
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:45:49]]></wp:post_date_gmt>
4557
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
4558
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
4559
+ <wp:post_name><![CDATA[max-ostrozhinskiy-223040]]></wp:post_name>
4560
+ <wp:status><![CDATA[inherit]]></wp:status>
4561
+ <wp:post_parent>0</wp:post_parent>
4562
+ <wp:menu_order>0</wp:menu_order>
4563
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
4564
+ <wp:post_password><![CDATA[]]></wp:post_password>
4565
+ <wp:is_sticky>0</wp:is_sticky>
4566
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/max-ostrozhinskiy-223040.jpg]]></wp:attachment_url>
4567
+ <wp:postmeta>
4568
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
4569
+ <wp:meta_value><![CDATA[2017/05/max-ostrozhinskiy-223040.jpg]]></wp:meta_value>
4570
+ </wp:postmeta>
4571
+ <wp:postmeta>
4572
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
4573
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:768;s:4:"file";s:36:"2017/05/max-ostrozhinskiy-223040.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"max-ostrozhinskiy-223040-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:36:"max-ostrozhinskiy-223040-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:36:"max-ostrozhinskiy-223040-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:37:"max-ostrozhinskiy-223040-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:36:"max-ostrozhinskiy-223040-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:36:"max-ostrozhinskiy-223040-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
4574
+ </wp:postmeta>
4575
+ </item>
4576
+ <item>
4577
+ <title>brooke-lark-96398</title>
4578
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/brooke-lark-96398/</link>
4579
+ <pubDate>Sat, 20 May 2017 07:46:38 +0000</pubDate>
4580
+ <dc:creator><![CDATA[kasra]]></dc:creator>
4581
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/brooke-lark-96398.jpg</guid>
4582
+ <description></description>
4583
+ <content:encoded><![CDATA[]]></content:encoded>
4584
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4585
+ <wp:post_id>1148</wp:post_id>
4586
+ <wp:post_date><![CDATA[2017-05-20 07:46:38]]></wp:post_date>
4587
+ <wp:post_date_gmt><![CDATA[2017-05-20 07:46:38]]></wp:post_date_gmt>
4588
+ <wp:comment_status><![CDATA[open]]></wp:comment_status>
4589
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
4590
+ <wp:post_name><![CDATA[brooke-lark-96398]]></wp:post_name>
4591
+ <wp:status><![CDATA[inherit]]></wp:status>
4592
+ <wp:post_parent>0</wp:post_parent>
4593
+ <wp:menu_order>0</wp:menu_order>
4594
+ <wp:post_type><![CDATA[attachment]]></wp:post_type>
4595
+ <wp:post_password><![CDATA[]]></wp:post_password>
4596
+ <wp:is_sticky>0</wp:is_sticky>
4597
+ <wp:attachment_url><![CDATA[http://averta.net/phlox/wordpress-theme/demo/default/wp-content/uploads/sites/8/2017/05/brooke-lark-96398.jpg]]></wp:attachment_url>
4598
+ <wp:postmeta>
4599
+ <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
4600
+ <wp:meta_value><![CDATA[2017/05/brooke-lark-96398.jpg]]></wp:meta_value>
4601
+ </wp:postmeta>
4602
+ <wp:postmeta>
4603
+ <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
4604
+ <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:683;s:4:"file";s:29:"2017/05/brooke-lark-96398.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"brooke-lark-96398-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"brooke-lark-96398-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"brooke-lark-96398-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:30:"brooke-lark-96398-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"brooke-lark-96398-280x180.jpg";s:5:"width";i:280;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:20:"sow-carousel-default";a:4:{s:4:"file";s:29:"brooke-lark-96398-272x182.jpg";s:5:"width";i:272;s:6:"height";i:182;s:9:"mime-type";s:10:"image/jpeg";}}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>
4605
+ </wp:postmeta>
4606
+ </item>
4607
+ <item>
4608
+ <title>Portfolio</title>
4609
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/?p=1267</link>
4610
+ <pubDate>Mon, 30 Nov -0001 00:00:00 +0000</pubDate>
4611
+ <dc:creator><![CDATA[admin]]></dc:creator>
4612
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=1267</guid>
4613
+ <description></description>
4614
+ <content:encoded><![CDATA[]]></content:encoded>
4615
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4616
+ <wp:post_id>1267</wp:post_id>
4617
+ <wp:post_date><![CDATA[2017-06-18 11:19:06]]></wp:post_date>
4618
+ <wp:post_date_gmt><![CDATA[0000-00-00 00:00:00]]></wp:post_date_gmt>
4619
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
4620
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
4621
+ <wp:post_name><![CDATA[]]></wp:post_name>
4622
+ <wp:status><![CDATA[draft]]></wp:status>
4623
+ <wp:post_parent>0</wp:post_parent>
4624
+ <wp:menu_order>1</wp:menu_order>
4625
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
4626
+ <wp:post_password><![CDATA[]]></wp:post_password>
4627
+ <wp:is_sticky>0</wp:is_sticky>
4628
+ <wp:postmeta>
4629
+ <wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
4630
+ <wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
4631
+ </wp:postmeta>
4632
+ <wp:postmeta>
4633
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
4634
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
4635
+ </wp:postmeta>
4636
+ <wp:postmeta>
4637
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
4638
+ <wp:meta_value><![CDATA[0]]></wp:meta_value>
4639
+ </wp:postmeta>
4640
+ <wp:postmeta>
4641
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
4642
+ <wp:meta_value><![CDATA[1267]]></wp:meta_value>
4643
+ </wp:postmeta>
4644
+ <wp:postmeta>
4645
+ <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
4646
+ <wp:meta_value><![CDATA[custom]]></wp:meta_value>
4647
+ </wp:postmeta>
4648
+ <wp:postmeta>
4649
+ <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
4650
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4651
+ </wp:postmeta>
4652
+ <wp:postmeta>
4653
+ <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
4654
+ <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
4655
+ </wp:postmeta>
4656
+ <wp:postmeta>
4657
+ <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
4658
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
4659
+ </wp:postmeta>
4660
+ <wp:postmeta>
4661
+ <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
4662
+ <wp:meta_value><![CDATA[#]]></wp:meta_value>
4663
+ </wp:postmeta>
4664
+ <wp:postmeta>
4665
+ <wp:meta_key><![CDATA[_menu_item_orphaned]]></wp:meta_key>
4666
+ <wp:meta_value><![CDATA[1497784746]]></wp:meta_value>
4667
+ </wp:postmeta>
4668
+ </item>
4669
+ <item>
4670
+ <title></title>
4671
+ <link>http://averta.net/phlox/wordpress-theme/demo/default/2016/08/21/183/</link>
4672
+ <pubDate>Sun, 21 Aug 2016 12:09:56 +0000</pubDate>
4673
+ <dc:creator><![CDATA[admin]]></dc:creator>
4674
+ <guid isPermaLink="false">http://averta.net/phlox/wordpress-theme/demo/default/?p=183</guid>
4675
+ <description></description>
4676
+ <content:encoded><![CDATA[ ]]></content:encoded>
4677
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
4678
+ <wp:post_id>183</wp:post_id>
4679
+ <wp:post_date><![CDATA[2016-08-21 12:09:56]]></wp:post_date>
4680
+ <wp:post_date_gmt><![CDATA[2016-08-21 12:09:56]]></wp:post_date_gmt>
4681
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
4682
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
4683
+ <wp:post_name><![CDATA[183]]></wp:post_name>
4684
+ <wp:status><![CDATA[publish]]></wp:status>
4685
+ <wp:post_parent>0</wp:post_parent>
4686
+ <wp:menu_order>22</wp:menu_order>
4687
+ <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
4688
+ <wp:post_password><![CDATA[]]></wp:post_password>
4689
+ <wp:is_sticky>0</wp:is_sticky>
4690
+ <category domain="nav_menu" nicename="header"><![CDATA[header]]></category>
4691
+ <wp:postmeta>
4692
+ <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
4693
+ <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
4694
+ </wp:postmeta>
4695
+ <wp:postmeta>
4696
+ <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
4697
+ <wp:meta_value><![CDATA[330]]></wp:meta_value>
4698
+ </wp:postmeta>
4699
+ <wp:postmeta>
4700
+ <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
4701
+ <wp:meta_value><![CDAT