-
Notifications
You must be signed in to change notification settings - Fork 0
/
spaceshiplabs.wordpress.2013-01-17.xml
3147 lines (3061 loc) · 213 KB
/
spaceshiplabs.wordpress.2013-01-17.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<!-- generator="WordPress/3.3" created="2013-01-17 22:59" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.1/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.1/"
>
<channel>
<title>SpaceshipLabs</title>
<link>http://spaceshiplabs.com</link>
<description>Hacemos paginas y software que funcionan</description>
<pubDate>Thu, 17 Jan 2013 22:59:07 +0000</pubDate>
<language>en</language>
<wp:wxr_version>1.1</wp:wxr_version>
<wp:base_site_url>http://spaceshiplabs.com</wp:base_site_url>
<wp:base_blog_url>http://spaceshiplabs.com</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login>admin</wp:author_login><wp:author_email>[email protected]</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>
<wp:author><wp:author_id>3</wp:author_id><wp:author_login>Sonny</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[Sonny]]></wp:author_display_name><wp:author_first_name><![CDATA[Sonny]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>5</wp:author_id><wp:author_login>Carrot</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[Carrot]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:category><wp:term_id>39</wp:term_id><wp:category_nicename>articulo</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Artículo]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>3</wp:term_id><wp:category_nicename>hacks</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Hacks]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>38</wp:term_id><wp:category_nicename>programacion-web</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Programación Web]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>30</wp:term_id><wp:category_nicename>social-media</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Social Media]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>40</wp:term_id><wp:category_nicename>space-and-universe</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Space and Universe]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>4</wp:term_id><wp:category_nicename>spaceshiplabs</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[SpaceshipLabs]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>41</wp:term_id><wp:category_nicename>tecnologia-2</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Tecnología]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>1</wp:term_id><wp:category_nicename>uncategorized</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name></wp:category>
<wp:tag><wp:term_id>44</wp:term_id><wp:tag_slug>2012</wp:tag_slug><wp:tag_name><![CDATA[2012]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>17</wp:term_id><wp:tag_slug>aaron-swartz</wp:tag_slug><wp:tag_name><![CDATA[Aaron Swartz]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>19</wp:term_id><wp:tag_slug>aaron-swartz-suicide</wp:tag_slug><wp:tag_name><![CDATA[Aaron Swartz suicide]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>5</wp:term_id><wp:tag_slug>apache</wp:tag_slug><wp:tag_name><![CDATA[apache]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>6</wp:term_id><wp:tag_slug>apche2</wp:tag_slug><wp:tag_name><![CDATA[apche2]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>28</wp:term_id><wp:tag_slug>colonia-espacial</wp:tag_slug><wp:tag_name><![CDATA[Colonia Espacial]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>7</wp:term_id><wp:tag_slug>curl</wp:tag_slug><wp:tag_name><![CDATA[curl]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>8</wp:term_id><wp:tag_slug>debian</wp:tag_slug><wp:tag_name><![CDATA[debian]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>21</wp:term_id><wp:tag_slug>demand-progress</wp:tag_slug><wp:tag_name><![CDATA[Demand Progress]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>42</wp:term_id><wp:tag_slug>estadisticas-internet-2012</wp:tag_slug><wp:tag_name><![CDATA[Estadisticas internet 2012]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>31</wp:term_id><wp:tag_slug>facebook</wp:tag_slug><wp:tag_name><![CDATA[Facebook]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>34</wp:term_id><wp:tag_slug>facebook-announce</wp:tag_slug><wp:tag_name><![CDATA[Facebook Announce]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>9</wp:term_id><wp:tag_slug>google</wp:tag_slug><wp:tag_name><![CDATA[Google]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>10</wp:term_id><wp:tag_slug>google-docs</wp:tag_slug><wp:tag_name><![CDATA[Google Docs]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>32</wp:term_id><wp:tag_slug>graph-search</wp:tag_slug><wp:tag_name><![CDATA[Graph Search]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>11</wp:term_id><wp:tag_slug>home</wp:tag_slug><wp:tag_name><![CDATA[home]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>20</wp:term_id><wp:tag_slug>infogami</wp:tag_slug><wp:tag_name><![CDATA[Infogami]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>22</wp:term_id><wp:tag_slug>internet</wp:tag_slug><wp:tag_name><![CDATA[Internet]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>12</wp:term_id><wp:tag_slug>linea-de-comandos</wp:tag_slug><wp:tag_name><![CDATA[linea de comandos]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>33</wp:term_id><wp:tag_slug>mark-zuckerberg</wp:tag_slug><wp:tag_name><![CDATA[Mark Zuckerberg]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>26</wp:term_id><wp:tag_slug>mars</wp:tag_slug><wp:tag_name><![CDATA[Mars]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>25</wp:term_id><wp:tag_slug>mars-one</wp:tag_slug><wp:tag_name><![CDATA[Mars One]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>27</wp:term_id><wp:tag_slug>marte</wp:tag_slug><wp:tag_name><![CDATA[Marte]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>13</wp:term_id><wp:tag_slug>microsoft-office-365</wp:tag_slug><wp:tag_name><![CDATA[Microsoft Office 365]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>18</wp:term_id><wp:tag_slug>mit</wp:tag_slug><wp:tag_name><![CDATA[MIT]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>14</wp:term_id><wp:tag_slug>php</wp:tag_slug><wp:tag_name><![CDATA[php]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>38</wp:term_id><wp:tag_slug>programacion-web</wp:tag_slug><wp:tag_name><![CDATA[Programación Web]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>43</wp:term_id><wp:tag_slug>royal-pingdom</wp:tag_slug><wp:tag_name><![CDATA[Royal Pingdom]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>30</wp:term_id><wp:tag_slug>social-media</wp:tag_slug><wp:tag_name><![CDATA[Social Media]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>15</wp:term_id><wp:tag_slug>software</wp:tag_slug><wp:tag_name><![CDATA[Software]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>24</wp:term_id><wp:tag_slug>space</wp:tag_slug><wp:tag_name><![CDATA[Space]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>23</wp:term_id><wp:tag_slug>space-travel</wp:tag_slug><wp:tag_name><![CDATA[Space Travel]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>16</wp:term_id><wp:tag_slug>technology</wp:tag_slug><wp:tag_name><![CDATA[Technology]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>29</wp:term_id><wp:tag_slug>tecnologia</wp:tag_slug><wp:tag_name><![CDATA[Tecnologia]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>37</wp:term_id><wp:tag_slug>virtual-host</wp:tag_slug><wp:tag_name><![CDATA[Virtual Host]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>36</wp:term_id><wp:tag_slug>wamp</wp:tag_slug><wp:tag_name><![CDATA[WAMP]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>35</wp:term_id><wp:tag_slug>windows</wp:tag_slug><wp:tag_name><![CDATA[Windows]]></wp:tag_name></wp:tag>
<generator>http://wordpress.org/?v=3.3</generator>
<item>
<title>Arenas Spa.. Spa y salón de belleza.</title>
<link>http://spaceshiplabs.com/servicios/software/img15/</link>
<pubDate>Fri, 10 Aug 2012 22:10:57 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img15.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>114</wp:post_id>
<wp:post_date>2012-08-10 22:10:57</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:10:57</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img15</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>18</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img15.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img15.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/img15.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"img15-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"img15-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"img15-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"img15-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"img15-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Inksvolte.. Grupo musical.</title>
<link>http://spaceshiplabs.com/servicios/software/img16/</link>
<pubDate>Fri, 10 Aug 2012 22:11:04 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img16.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>115</wp:post_id>
<wp:post_date>2012-08-10 22:11:04</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:04</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img16</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>17</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img16.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img16.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/img16.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"img16-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"img16-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"img16-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"img16-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"img16-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Elias Ribeiro.. Cineasta y fotógrafo</title>
<link>http://spaceshiplabs.com/servicios/software/img17/</link>
<pubDate>Fri, 10 Aug 2012 22:11:08 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img17.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>116</wp:post_id>
<wp:post_date>2012-08-10 22:11:08</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:08</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img17</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>16</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img17.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img17.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/img17.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"img17-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"img17-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"img17-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"img17-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"img17-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Vibrant Pet's.. Cuidando la salud de tu mascota.</title>
<link>http://spaceshiplabs.com/servicios/software/img1/</link>
<pubDate>Fri, 10 Aug 2012 22:11:12 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>117</wp:post_id>
<wp:post_date>2012-08-10 22:11:12</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:12</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img1</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>15</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img1.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:16:"2012/04/img1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"img1-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"img1-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:16:"img1-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:16:"img1-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:16:"img1-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>ECM de vinos.. Los mejores vinos del mundo.</title>
<link>http://spaceshiplabs.com/servicios/software/img2/</link>
<pubDate>Fri, 10 Aug 2012 22:11:15 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img2.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>118</wp:post_id>
<wp:post_date>2012-08-10 22:11:15</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:15</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>14</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img2.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img2.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:16:"2012/04/img2.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"img2-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"img2-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:16:"img2-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:16:"img2-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:16:"img2-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Cardigan Fashion Magazine.. Revista Online</title>
<link>http://spaceshiplabs.com/servicios/software/img3/</link>
<pubDate>Fri, 10 Aug 2012 22:11:22 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img3.png</guid>
<description></description>
<content:encoded><![CDATA[Creación de logotipo e Identidad Corporativa y Desarrollo de sitio Web]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>119</wp:post_id>
<wp:post_date>2012-08-10 22:11:22</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:22</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img3</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>13</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img3.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img3.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:16:"2012/04/img3.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"img3-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"img3-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:16:"img3-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:16:"img3-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:16:"img3-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>12Transfers.. La mejor manera de llegar a su hotel.</title>
<link>http://spaceshiplabs.com/servicios/software/img4/</link>
<pubDate>Fri, 10 Aug 2012 22:11:29 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img4.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>120</wp:post_id>
<wp:post_date>2012-08-10 22:11:29</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:29</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img4</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>20</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img4.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img4.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:16:"2012/04/img4.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"img4-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"img4-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:16:"img4-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:16:"img4-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:16:"img4-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Yellowtransfers.. Transportación Oficial Aeropuerto.</title>
<link>http://spaceshiplabs.com/servicios/software/img5/</link>
<pubDate>Fri, 10 Aug 2012 22:11:33 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img5.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>121</wp:post_id>
<wp:post_date>2012-08-10 22:11:33</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:33</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img5</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>9</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img5.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img5.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:16:"2012/04/img5.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"img5-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"img5-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:16:"img5-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:16:"img5-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:16:"img5-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Aldea Resorts.. Hotel 5 estrellas de Playa del Carmen.</title>
<link>http://spaceshiplabs.com/servicios/software/img6/</link>
<pubDate>Fri, 10 Aug 2012 22:11:38 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img6.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>122</wp:post_id>
<wp:post_date>2012-08-10 22:11:38</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:38</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img6</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>12</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img6.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img6.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:16:"2012/04/img6.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"img6-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"img6-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:16:"img6-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:16:"img6-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:16:"img6-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Azul.. Lujoso yate de más de 80 pies.</title>
<link>http://spaceshiplabs.com/servicios/software/img7/</link>
<pubDate>Fri, 10 Aug 2012 22:11:49 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img7.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>123</wp:post_id>
<wp:post_date>2012-08-10 22:11:49</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:49</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img7</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>11</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img7.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img7.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:16:"2012/04/img7.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"img7-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"img7-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:16:"img7-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:16:"img7-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:16:"img7-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Infame.. Tienda online de ropa.</title>
<link>http://spaceshiplabs.com/servicios/software/img8/</link>
<pubDate>Fri, 10 Aug 2012 22:11:52 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img8.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>124</wp:post_id>
<wp:post_date>2012-08-10 22:11:52</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:52</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img8</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>10</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img8.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img8.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:16:"2012/04/img8.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"img8-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"img8-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:16:"img8-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:16:"img8-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:16:"img8-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Hurrican Market.. Cortinas anticiclónicas.</title>
<link>http://spaceshiplabs.com/servicios/software/img9/</link>
<pubDate>Fri, 10 Aug 2012 22:11:55 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img9.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>125</wp:post_id>
<wp:post_date>2012-08-10 22:11:55</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:55</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img9</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>8</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img9.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img9.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:16:"2012/04/img9.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"img9-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"img9-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:16:"img9-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:16:"img9-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:16:"img9-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Vitravel.. Agencia de viajes.</title>
<link>http://spaceshiplabs.com/servicios/software/img10/</link>
<pubDate>Fri, 10 Aug 2012 22:11:59 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img10.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>126</wp:post_id>
<wp:post_date>2012-08-10 22:11:59</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:11:59</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img10</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>7</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img10.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img10.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/img10.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"img10-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"img10-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"img10-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"img10-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"img10-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Las 3 Puertas.. Tienda de productos organicos en México.</title>
<link>http://spaceshiplabs.com/servicios/software/img11/</link>
<pubDate>Fri, 10 Aug 2012 22:12:05 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img11.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>127</wp:post_id>
<wp:post_date>2012-08-10 22:12:05</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:12:05</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img11</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>6</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img11.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img11.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/img11.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"img11-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"img11-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"img11-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"img11-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"img11-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>La Confitería.. Ideas originales para tu celebración.</title>
<link>http://spaceshiplabs.com/servicios/software/img12/</link>
<pubDate>Fri, 10 Aug 2012 22:12:10 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img12.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>128</wp:post_id>
<wp:post_date>2012-08-10 22:12:10</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:12:10</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img12</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>5</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img12.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img12.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/img12.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"img12-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"img12-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"img12-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"img12-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"img12-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Celebra.. Todo para tú fiesta.</title>
<link>http://spaceshiplabs.com/servicios/software/img13/</link>
<pubDate>Fri, 10 Aug 2012 22:12:18 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img13.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>129</wp:post_id>
<wp:post_date>2012-08-10 22:12:18</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:12:18</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img13</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>4</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img13.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img13.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/img13.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"img13-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"img13-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"img13-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"img13-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"img13-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Luxury Yacht.. Lujosos Yates.</title>
<link>http://spaceshiplabs.com/servicios/software/img14/</link>
<pubDate>Fri, 10 Aug 2012 22:12:23 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img14.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>130</wp:post_id>
<wp:post_date>2012-08-10 22:12:23</wp:post_date>
<wp:post_date_gmt>2012-08-10 22:12:23</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img14</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>25</wp:post_parent>
<wp:menu_order>3</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img14.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img14.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/img14.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"img14-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"img14-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"img14-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"img14-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"img14-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Azul.. Yate lujoso de más de 80 pies.</title>
<link>http://spaceshiplabs.com/servicios/diseno/logo1/</link>
<pubDate>Wed, 22 Aug 2012 18:21:57 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/logo1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>146</wp:post_id>
<wp:post_date>2012-08-22 18:21:57</wp:post_date>
<wp:post_date_gmt>2012-08-22 18:21:57</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>logo1</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>3</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/logo1.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/logo1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/logo1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"logo1-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"logo1-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"logo1-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"logo1-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"logo1-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Aldea Resorts.. Hotel 5 estrellas de Playa del Carmen.</title>
<link>http://spaceshiplabs.com/servicios/diseno/logo2/</link>
<pubDate>Wed, 22 Aug 2012 18:23:34 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/logo2.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>147</wp:post_id>
<wp:post_date>2012-08-22 18:23:34</wp:post_date>
<wp:post_date_gmt>2012-08-22 18:23:34</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>logo2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>4</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/logo2.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/logo2.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/logo2.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"logo2-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"logo2-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"logo2-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"logo2-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"logo2-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Cardigan Magazine.. Revista online.</title>
<link>http://spaceshiplabs.com/servicios/diseno/logo3/</link>
<pubDate>Wed, 22 Aug 2012 18:29:35 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/logo3.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>148</wp:post_id>
<wp:post_date>2012-08-22 18:29:35</wp:post_date>
<wp:post_date_gmt>2012-08-22 18:29:35</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>logo3</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>5</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/logo3.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/logo3.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/logo3.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"logo3-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"logo3-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"logo3-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"logo3-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"logo3-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Celebra.. Todo para tú fiesta.</title>
<link>http://spaceshiplabs.com/servicios/diseno/logo4/</link>
<pubDate>Wed, 22 Aug 2012 18:32:56 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/logo4.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>149</wp:post_id>
<wp:post_date>2012-08-22 18:32:56</wp:post_date>
<wp:post_date_gmt>2012-08-22 18:32:56</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>logo4</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>6</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/logo4.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/logo4.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/logo4.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"logo4-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"logo4-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"logo4-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"logo4-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"logo4-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Mimbu.. Construye tu propia página web móvil.</title>
<link>http://spaceshiplabs.com/servicios/diseno/logo5/</link>
<pubDate>Wed, 22 Aug 2012 18:37:30 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/logo5.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>150</wp:post_id>
<wp:post_date>2012-08-22 18:37:30</wp:post_date>
<wp:post_date_gmt>2012-08-22 18:37:30</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>logo5</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>7</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/logo5.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/logo5.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/logo5.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"logo5-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"logo5-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"logo5-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"logo5-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"logo5-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Dany García.. Planeación de bodas y eventos.</title>
<link>http://spaceshiplabs.com/servicios/diseno/logo6/</link>
<pubDate>Wed, 22 Aug 2012 18:48:02 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/logo6.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>151</wp:post_id>
<wp:post_date>2012-08-22 18:48:02</wp:post_date>
<wp:post_date_gmt>2012-08-22 18:48:02</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>logo6</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>8</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/logo6.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/logo6.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/logo6.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"logo6-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"logo6-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"logo6-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"logo6-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"logo6-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Zavia Travel.. Desarrollo de logotipo e identidad corporativa.</title>
<link>http://spaceshiplabs.com/servicios/diseno/logo7/</link>
<pubDate>Wed, 22 Aug 2012 18:52:29 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/logo7.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>152</wp:post_id>
<wp:post_date>2012-08-22 18:52:29</wp:post_date>
<wp:post_date_gmt>2012-08-22 18:52:29</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>logo7</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>9</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/logo7.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/logo7.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/logo7.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"logo7-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"logo7-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"logo7-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"logo7-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"logo7-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Festiroo.. Centro de convenciones.</title>
<link>http://spaceshiplabs.com/servicios/diseno/l8/</link>
<pubDate>Wed, 22 Aug 2012 19:03:08 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/l8.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>153</wp:post_id>
<wp:post_date>2012-08-22 19:03:08</wp:post_date>
<wp:post_date_gmt>2012-08-22 19:03:08</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>l8</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>10</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/l8.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/l8.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:14:"2012/04/l8.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:14:"l8-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:14:"l8-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:14:"l8-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:14:"l8-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:14:"l8-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>12Transfers.. La mejor manera de llegar a su hotel</title>
<link>http://spaceshiplabs.com/servicios/diseno/l9/</link>
<pubDate>Wed, 22 Aug 2012 19:12:04 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/l9.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>154</wp:post_id>
<wp:post_date>2012-08-22 19:12:04</wp:post_date>
<wp:post_date_gmt>2012-08-22 19:12:04</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>l9</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>11</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/l9.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/l9.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:14:"2012/04/l9.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:14:"l9-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:14:"l9-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:14:"l9-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:14:"l9-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:14:"l9-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Inyourhands.. Encuéntralo Fácil, Encuéntralo Rápido.</title>
<link>http://spaceshiplabs.com/servicios/diseno/img1-2/</link>
<pubDate>Wed, 22 Aug 2012 19:31:09 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img18.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>155</wp:post_id>
<wp:post_date>2012-08-22 19:31:09</wp:post_date>
<wp:post_date_gmt>2012-08-22 19:31:09</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img1-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>13</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img18.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img18.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/img18.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"img18-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"img18-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"img18-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"img18-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"img18-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Zavia Travel.. Desarrollo de logotipo e identidad coorporativa.</title>
<link>http://spaceshiplabs.com/servicios/diseno/img2-2/</link>
<pubDate>Wed, 22 Aug 2012 22:48:51 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/img21.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>156</wp:post_id>
<wp:post_date>2012-08-22 22:48:51</wp:post_date>
<wp:post_date_gmt>2012-08-22 22:48:51</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>img2-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>12</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/img21.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/img21.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:17:"2012/04/img21.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"img21-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"img21-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:17:"img21-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:17:"img21-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:17:"img21-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>SpaceshipLabs.. Las mejores páginas de Internet.</title>
<link>http://spaceshiplabs.com/servicios/diseno/llll/</link>
<pubDate>Wed, 22 Aug 2012 22:55:44 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/llll.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>157</wp:post_id>
<wp:post_date>2012-08-22 22:55:44</wp:post_date>
<wp:post_date_gmt>2012-08-22 22:55:44</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>llll</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>23</wp:post_parent>
<wp:menu_order>14</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://spaceshiplabs.com/wp-content/uploads/2012/04/llll.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/04/llll.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"855";s:6:"height";s:3:"459";s:14:"hwstring_small";s:23:"height='68' width='128'";s:4:"file";s:16:"2012/04/llll.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"llll-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"llll-300x161.png";s:5:"width";s:3:"300";s:6:"height";s:3:"161";}s:9:"home_reel";a:3:{s:4:"file";s:16:"llll-293x182.png";s:5:"width";s:3:"293";s:6:"height";s:3:"182";}s:4:"blog";a:3:{s:4:"file";s:16:"llll-599x300.png";s:5:"width";s:3:"599";s:6:"height";s:3:"300";}s:10:"portafolio";a:3:{s:4:"file";s:16:"llll-233x119.png";s:5:"width";s:3:"233";s:6:"height";s:3:"119";}}s:10:"image_meta";a:10:{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:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>LaDivina.. Hotel 5 estrellas de Playa del Carmen.</title>
<link>http://spaceshiplabs.com/servicios/software/divina/</link>
<pubDate>Fri, 24 Aug 2012 21:28:53 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid isPermaLink="false">http://spaceship.proyects.spaceshiplabs.com/wp-content/uploads/2012/04/divina.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>158</wp:post_id>
<wp:post_date>2012-08-24 21:28:53</wp:post_date>
<wp:post_date_gmt>2012-08-24 21:28:53</wp:post_date_gmt>