Ma2_Juno_Theme - Version 1.0.2

Version Notes

Version number: 1.0.2
Stability: Stable
Compatibility: 1.7, 1.8, 1.8.1

+ Update module Ma2 Featured Products

Download this release

Release Info

Developer Magenmarket.com
Extension Ma2_Juno_Theme
Version 1.0.2
Comparing to
See all releases


Code changes from version 1.0.1 to 1.0.2

Files changed (21) hide show
  1. app/code/community/Ma2/FeaturedProducts/Block/Adminhtml/Edit.php +79 -0
  2. app/code/community/Ma2/FeaturedProducts/Block/Adminhtml/Edit/Grid.php +379 -0
  3. app/code/community/Ma2/FeaturedProducts/Block/Adminhtml/Edit/Renderer/Name.php +51 -0
  4. app/code/community/Ma2/FeaturedProducts/Block/Adminhtml/Edit/Renderer/Thumbnail.php +51 -0
  5. app/code/community/Ma2/FeaturedProducts/Block/Adminhtml/Edit/Renderer/Visibility.php +43 -0
  6. app/code/community/Ma2/FeaturedProducts/Block/Block.php +114 -0
  7. app/code/community/Ma2/FeaturedProducts/Block/Standalone/List.php +119 -0
  8. app/code/community/Ma2/FeaturedProducts/Block/Widget.php +87 -0
  9. app/code/community/Ma2/FeaturedProducts/Helper/Data.php +43 -0
  10. app/code/community/Ma2/FeaturedProducts/Model/System/Config/Source/Listtype.php +36 -0
  11. app/code/community/Ma2/FeaturedProducts/Model/System/Config/Source/Sortby.php +37 -0
  12. app/code/community/Ma2/FeaturedProducts/Model/System/Config/Source/Sortdir.php +36 -0
  13. app/code/community/Ma2/FeaturedProducts/controllers/Adminhtml/FeaturedController.php +144 -0
  14. app/code/community/Ma2/FeaturedProducts/controllers/IndexController.php +54 -0
  15. app/code/community/Ma2/FeaturedProducts/etc/adminhtml.xml +68 -0
  16. app/code/community/Ma2/FeaturedProducts/etc/config.xml +121 -0
  17. app/code/community/Ma2/FeaturedProducts/etc/system.xml +390 -0
  18. app/code/community/Ma2/FeaturedProducts/etc/widget.xml +153 -0
  19. app/code/community/Ma2/FeaturedProducts/sql/featuredproducts_setup/mysql4-install-1.0.0.php +54 -0
  20. media/ma2/images/default/ma2_juno_thumb.jpg +0 -0
  21. package.xml +6 -8
app/code/community/Ma2/FeaturedProducts/Block/Adminhtml/Edit.php ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Edit.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Block_Adminhtml_Edit extends Mage_Adminhtml_Block_Widget_Grid_Container {
24
+
25
+ public function __construct() {
26
+
27
+
28
+ $this->_blockGroup = 'featuredproducts';
29
+ $this->_controller = 'adminhtml_edit';
30
+
31
+
32
+ $this->_headerText = Mage::helper('adminhtml')->__('Featured Products Manager');
33
+
34
+ parent::__construct();
35
+
36
+ $this->_removeButton('add');
37
+
38
+ $this->_addButton('save', array(
39
+ 'label' => Mage::helper('featuredproducts')->__('Save Selected'),
40
+ 'onclick' => 'categorySubmit(\'' . $this->getSaveUrl() . '\')',
41
+ 'class' => 'save',
42
+ ));
43
+ }
44
+
45
+ public function getSaveUrl() {
46
+ return $this->getUrl('*/*/save', array('store' => $this->getRequest()->getParam('store')));
47
+ }
48
+
49
+ private function _prependHtml() {
50
+ $html = '
51
+
52
+ <form id="featured_edit_form" action="' . $this->getSaveUrl() . '" method="post" enctype="multipart/form-data">
53
+ <input name="form_key" type="hidden" value="' . $this->getFormKey() . '" />
54
+ <div class="no-display">
55
+ <input type="hidden" name="featured_products" id="saved_featured_products" value="" />
56
+ </div>
57
+ </form>
58
+ ';
59
+
60
+ return $html;
61
+ }
62
+
63
+ public function getHeaderHtml() {
64
+ return '<h3 style="background-image: url(' . $this->getSkinUrl('images/product_rating_full_star.gif') . ');" class="' . $this->getHeaderCssClass() . '">' . $this->getHeaderText() . '</h3>';
65
+ }
66
+
67
+ protected function _prepareLayout() {
68
+ $this->setChild('store_switcher', $this->getLayout()->createBlock('adminhtml/store_switcher', 'store_switcher')->setUseConfirm(false)
69
+ );
70
+ return parent::_prepareLayout();
71
+ }
72
+
73
+ public function getGridHtml() {
74
+
75
+ return $this->getChildHtml('store_switcher') . $this->_prependHtml() . $this->getChildHtml('grid');
76
+ }
77
+
78
+ }
79
+ ?>
app/code/community/Ma2/FeaturedProducts/Block/Adminhtml/Edit/Grid.php ADDED
@@ -0,0 +1,379 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Grid.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+ class Ma2_FeaturedProducts_Block_Adminhtml_Edit_Grid extends Mage_Adminhtml_Block_Widget_Grid {
23
+
24
+ public function __construct() {
25
+ parent::__construct();
26
+
27
+ $this->setId('ma2_featured_products');
28
+ $this->setDefaultSort('entity_id');
29
+ $this->setUseAjax(true);
30
+
31
+ $this->setRowClickCallback('FeaturedRowClick');
32
+ }
33
+
34
+ public function getProduct() {
35
+ return Mage::registry('product');
36
+ }
37
+
38
+ protected function _getStore() {
39
+ $storeId = (int) $this->getRequest()->getParam('store', 0);
40
+ return Mage::app()->getStore($storeId);
41
+ }
42
+
43
+ protected function _addColumnFilterToCollection($column) {
44
+
45
+ if ($this->getCollection()) {
46
+ if ($column->getId() == 'websites') {
47
+
48
+ $this->getCollection()->joinField('websites', 'catalog/product_website', 'website_id', 'product_id=entity_id', null, 'left');
49
+ }
50
+ }
51
+
52
+
53
+ if ($column->getId() == "featured") {
54
+ $productIds = $this->_getSelectedProducts();
55
+
56
+ if (empty($productIds)) {
57
+ $productIds = 0;
58
+ }
59
+ if ($column->getFilter()->getValue()) {
60
+ $this->getCollection()->addFieldToFilter('entity_id', array('in' => $productIds));
61
+ } elseif (!empty($productIds)) {
62
+ $this->getCollection()->addFieldToFilter('entity_id', array('nin' => $productIds));
63
+ }
64
+ } else {
65
+
66
+ parent::_addColumnFilterToCollection($column);
67
+ }
68
+
69
+ return $this;
70
+ }
71
+
72
+ protected function _prepareCollection() {
73
+
74
+ $store = $this->_getStore();
75
+
76
+ $collection = Mage::getModel('catalog/product')->getCollection()
77
+ ->addAttributeToSelect('name')
78
+ ->addAttributeToSelect('sku')
79
+ ->addAttributeToSelect('ma2_featured_product')
80
+ ->addAttributeToSelect('type_id')
81
+ ->addAttributeToSelect('attribute_set_id')
82
+ ->addAttributeToSelect('thumbnail')
83
+ ->addAttributeToSelect('small_image')
84
+ ->addAttributeToSelect('image')
85
+ ->addAttributeToFilter('visibility', array('nin' => array(1, 3)));
86
+
87
+
88
+ if ($store->getId()) {
89
+ $collection->addStoreFilter($store);
90
+ $collection->joinAttribute('custom_name', 'catalog_product/name', 'entity_id', null, 'inner', $store->getId());
91
+ $collection->joinAttribute('status', 'catalog_product/status', 'entity_id', null, 'inner', $store->getId());
92
+ $collection->joinAttribute('visibility', 'catalog_product/visibility', 'entity_id', 1, 'inner', $store->getId());
93
+ $collection->joinAttribute('price', 'catalog_product/price', 'entity_id', null, 'left', $store->getId());
94
+ } else {
95
+ $collection->addAttributeToSelect('price');
96
+ $collection->addAttributeToSelect('status');
97
+ $collection->addAttributeToSelect('visibility');
98
+ }
99
+
100
+ $action_name = $this->getRequest()->getActionName();
101
+
102
+ if ($action_name == 'exportCsv' || $action_name == 'exportXml') {
103
+ $collection->addAttributeToFilter('ma2_featured_product', array('eq' => true));
104
+ }
105
+
106
+
107
+ $this->setCollection($collection);
108
+
109
+ parent::_prepareCollection();
110
+
111
+ $this->getCollection()->addWebsiteNamesToResult();
112
+
113
+ return $this;
114
+ }
115
+
116
+ protected function _prepareColumns() {
117
+
118
+ $action_name = $this->getRequest()->getActionName();
119
+
120
+ if ($action_name != 'exportCsv' && $action_name != 'exportXml') {
121
+
122
+ $this->addColumn('featured', array(
123
+ 'header_css_class' => 'a-center',
124
+ 'type' => 'checkbox',
125
+ 'name' => 'featured',
126
+ 'values' => $this->_getSelectedProducts(),
127
+ 'align' => 'center',
128
+ 'index' => 'entity_id'
129
+ ));
130
+ }
131
+
132
+ $this->addColumn('entity_id', array(
133
+ 'header' => Mage::helper('catalog')->__('ID'),
134
+ 'sortable' => true,
135
+ 'width' => '50px',
136
+ 'index' => 'entity_id',
137
+ 'type' => 'number'
138
+ ));
139
+ $this->addColumn('image', array(
140
+ 'header' => Mage::helper('catalog')->__('Image'),
141
+ 'width' => '50px',
142
+ 'index' => 'image',
143
+ 'filter' => false,
144
+ 'renderer' => 'featuredproducts/adminhtml_edit_renderer_thumbnail',
145
+ ));
146
+ $this->addColumn('name', array(
147
+ 'header' => Mage::helper('catalog')->__('Name'),
148
+ 'index' => 'name',
149
+ 'renderer' => 'featuredproducts/adminhtml_edit_renderer_name',
150
+ ));
151
+
152
+ $this->addColumn('type', array(
153
+ 'header' => Mage::helper('catalog')->__('Type'),
154
+ 'width' => '60px',
155
+ 'index' => 'type_id',
156
+ 'type' => 'options',
157
+ 'options' => Mage::getSingleton('catalog/product_type')->getOptionArray(),
158
+ ));
159
+
160
+ $sets = Mage::getResourceModel('eav/entity_attribute_set_collection')
161
+ ->setEntityTypeFilter(Mage::getModel('catalog/product')->getResource()->getTypeId())
162
+ ->load()
163
+ ->toOptionHash();
164
+
165
+ $this->addColumn('set_name', array(
166
+ 'header'=> Mage::helper('catalog')->__('Attrib. Set Name'),
167
+ 'width' => '100px',
168
+ 'index' => 'attribute_set_id',
169
+ 'type' => 'options',
170
+ 'options' => $sets,
171
+ ));
172
+
173
+ $this->addColumn('sku', array(
174
+ 'header' => Mage::helper('catalog')->__('SKU'),
175
+ 'width' => '140px',
176
+ 'index' => 'sku'
177
+ ));
178
+
179
+ $this->addColumn('visibility', array(
180
+ 'header' => Mage::helper('catalog')->__('Visibility'),
181
+ 'width' => '140px',
182
+ 'index' => 'visibility',
183
+ 'filter' => false,
184
+ 'renderer' => 'featuredproducts/adminhtml_edit_renderer_visibility',
185
+ ));
186
+
187
+ if (!Mage::app()->isSingleStoreMode()) {
188
+ $this->addColumn('websites', array(
189
+ 'header' => Mage::helper('catalog')->__('Websites'),
190
+ 'width' => '100px',
191
+ 'sortable' => false,
192
+ 'index' => 'websites',
193
+ 'type' => 'options',
194
+ 'options' => Mage::getModel('core/website')->getCollection()->toOptionHash(),
195
+ ));
196
+ }
197
+
198
+ $store = $this->_getStore();
199
+ $this->addColumn('price', array(
200
+ 'header' => Mage::helper('catalog')->__('Price'),
201
+ 'type' => 'price',
202
+ 'currency_code' => $store->getBaseCurrency()->getCode(),
203
+ 'index' => 'price',
204
+ ));
205
+
206
+ $this->addExportType('*/*/exportCsv', Mage::helper('featuredproducts')->__('CSV'));
207
+ $this->addExportType('*/*/exportXml', Mage::helper('featuredproducts')->__('Excel XML'));
208
+
209
+ return parent::_prepareColumns();
210
+ }
211
+
212
+ public function getGridUrl() {
213
+ return $this->getUrl('*/*/grid', array('_current' => true));
214
+ }
215
+
216
+ protected function _getSelectedProducts($json = false) {
217
+ $temp = $this->getRequest()->getPost('featured_ids');
218
+ $store = $this->_getStore();
219
+
220
+ if ($temp) {
221
+ parse_str($temp, $featured_ids);
222
+ }
223
+
224
+ $_prod = Mage::getModel('catalog/product')->getCollection()
225
+ ->joinAttribute('ma2_featured_product', 'catalog_product/ma2_featured_product', 'entity_id', null, 'left', $store->getId())
226
+ ->addAttributeToFilter('ma2_featured_product', '1');
227
+
228
+ $products = $_prod->getColumnValues('entity_id');
229
+ $selected_products = array();
230
+
231
+
232
+ if ($json == true) {
233
+ foreach ($products as $key => $value) {
234
+ $selected_products[$value] = '1';
235
+ }
236
+ return Zend_Json::encode($selected_products);
237
+ } else {
238
+
239
+ foreach ($products as $key => $value) {
240
+ if ((isset($featured_ids[$value])) && ($featured_ids[$value] == 0)) {
241
+
242
+ }else
243
+ $selected_products[$value] = '0';
244
+ }
245
+
246
+ if (isset($featured_ids))
247
+ foreach ($featured_ids as $key => $value) {
248
+ if ($value == 1)
249
+ $selected_products[$key] = '0';
250
+ }
251
+
252
+ return array_keys($selected_products);
253
+ }
254
+
255
+ return $products;
256
+ }
257
+
258
+ //add javascript before/after grid html
259
+ protected function _afterToHtml($html) {
260
+ return $this->_prependHtml() . parent::_afterToHtml($html) . $this->_appendHtml();
261
+ }
262
+
263
+ private function _prependHtml() {
264
+ $gridName = $this->getJsObjectName();
265
+
266
+ $html =
267
+ <<<EndHTML
268
+ <script type="text/javascript">
269
+ //<![CDATA[
270
+
271
+ categoryForm = new varienForm('featured_edit_form');
272
+ categoryForm.submit= function (url) {
273
+
274
+ this._submit();
275
+
276
+ return true;
277
+
278
+
279
+ };
280
+
281
+ document.observe("dom:loaded", function() {
282
+
283
+ var everycheckbox = $$("#ma2_featured_products_table tbody input.checkbox");
284
+
285
+ everycheckbox.each(function(element, index) {
286
+ element.onclick = function(e)
287
+ {
288
+ var val = element.value;
289
+ if(element.checked)
290
+ {
291
+ element.checked = false;
292
+ checkBoxes.set(val, 0);
293
+ }
294
+ else
295
+ {
296
+ element.checked = "checked";
297
+ checkBoxes.set(val, 1);
298
+ }
299
+ }
300
+ });
301
+
302
+ });
303
+
304
+
305
+ function categorySubmit(url) {
306
+
307
+ var params = {};
308
+ var fields = $('featured_edit_form').getElementsBySelector('input', 'select');
309
+
310
+ categoryForm.submit();
311
+ }
312
+
313
+ function FeaturedRowClick(grid, event)
314
+ {
315
+
316
+ var trElement = Event.findElement(event, 'tr');
317
+ var isInput = Event.element(event).tagName == 'INPUT';
318
+
319
+ var checkbox = Element.getElementsBySelector(trElement, 'input.checkbox').first();
320
+
321
+ if(!checkbox) return;
322
+
323
+ var val = checkbox.value;
324
+
325
+ if(checkbox.checked)
326
+ {
327
+ checkbox.checked = false;
328
+ checkBoxes.set(val, 0);
329
+ }
330
+ else
331
+ {
332
+ checkbox.checked = "checked";
333
+ checkBoxes.set(val, 1);
334
+ }
335
+
336
+ $("saved_featured_products").value = checkBoxes.toQueryString();
337
+ $gridName.reloadParams = {'featured_ids':checkBoxes.toQueryString()};
338
+ }
339
+
340
+ //]]>
341
+
342
+ </script>
343
+ EndHTML;
344
+
345
+ return $html;
346
+ }
347
+
348
+ private function _appendHtml() {
349
+ $html = '<script type="text/javascript">
350
+ var checkBoxes = $H();
351
+
352
+ var checkbox_all = $$("#ma2_featured_products_table thead input.checkbox").first();
353
+ var everycheckbox = $$("#ma2_featured_products_table tbody input.checkbox");
354
+
355
+ checkbox_all.observe("click", function(event) {
356
+
357
+ if(checkbox_all.checked)
358
+ {
359
+ everycheckbox.each(function(element, index) {
360
+
361
+ checkBoxes.set(element.value, 1)
362
+
363
+ });
364
+ } else
365
+ {
366
+ everycheckbox.each(function(element, index) {
367
+ checkBoxes.set(element.value, 0)
368
+ });
369
+ }
370
+ $("saved_featured_products").value = checkBoxes.toQueryString();
371
+ });
372
+
373
+ </script>';
374
+
375
+ return $html;
376
+ }
377
+
378
+ }
379
+ ?>
app/code/community/Ma2/FeaturedProducts/Block/Adminhtml/Edit/Renderer/Name.php ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Name.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Block_Adminhtml_Edit_Renderer_Name extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract {
24
+
25
+ protected $_values;
26
+
27
+ /**
28
+ * Renders grid column
29
+ *
30
+ * @param Varien_Object $row
31
+ * @return string
32
+ */
33
+ public function render(Varien_Object $row) {
34
+
35
+ $action_name = $this->getRequest()->getActionName();
36
+
37
+ if ($action_name == 'exportCsv' || $action_name == 'exportXml') {
38
+ return $row->getName();
39
+ }
40
+
41
+ $href = $this->getUrl('*/catalog_product/edit', array(
42
+ 'store' => $this->getRequest()->getParam('store'),
43
+ 'id' => $row->getId()));
44
+
45
+ $html = '<a href="' . $href . '">' . $row->getName() . '</a>';
46
+
47
+ return $html;
48
+ }
49
+
50
+ }
51
+ ?>
app/code/community/Ma2/FeaturedProducts/Block/Adminhtml/Edit/Renderer/Thumbnail.php ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Thumbnail.php 8 2013-12-18 09:22:02Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Block_Adminhtml_Edit_Renderer_Thumbnail extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract
24
+ {
25
+ protected $_values;
26
+
27
+ /**
28
+ * Renders grid column
29
+ *
30
+ * @param Varien_Object $row
31
+ * @return string
32
+ */
33
+ public function render(Varien_Object $row)
34
+ {
35
+ $html = 'No image';
36
+ try{
37
+ if ($row->getThumbnail() && $row->getThumbnail() != 'noselection'){
38
+ $html = '<a href="'.Mage::helper('catalog/image')->init($row, 'thumbnail').'" target="_blank"><img src="'. Mage::helper('catalog/image')->init($row, 'thumbnail')->resize(50) . '" alt=""/></a>';
39
+ }
40
+ else if ($row->getSmallImage() && $row->getSmallImage() != 'noselection'){
41
+ $html = '<a href="'.Mage::helper('catalog/image')->init($row, 'small_image').'" target="_blank"><img src="'. Mage::helper('catalog/image')->init($row, 'small_image')->resize(50) . '" alt=""/></a>';
42
+ }
43
+ else if ($row->getImage() && $row->getImage() != 'noselection'){
44
+ $html = '<a href="'.Mage::helper('catalog/image')->init($row, 'image').'" target="_blank"><img src="'. Mage::helper('catalog/image')->init($row, 'image')->resize(50) . '" alt=""/></a>';
45
+ }
46
+ } catch (Exception $e){}
47
+
48
+ return $html;
49
+ }
50
+ }
51
+ ?>
app/code/community/Ma2/FeaturedProducts/Block/Adminhtml/Edit/Renderer/Visibility.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Visibility.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Block_Adminhtml_Edit_Renderer_Visibility extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract
24
+ {
25
+ protected $_values;
26
+
27
+ /**
28
+ * Renders grid column
29
+ *
30
+ * @param Varien_Object $row
31
+ * @return string
32
+ */
33
+ public function render(Varien_Object $row)
34
+ {
35
+
36
+ $this->_values = Mage::getModel('catalog/product_visibility')->getOptionArray();
37
+
38
+ $html = $this->_values[$row->getData($this->getColumn()->getIndex())];
39
+
40
+ return $html;
41
+ }
42
+ }
43
+ ?>
app/code/community/Ma2/FeaturedProducts/Block/Block.php ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Block.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Block_Block extends Mage_Catalog_Block_Product_Abstract {
24
+ /*
25
+ * Check sort option and limits set in System->Configuration and apply them
26
+ * Additionally, set template to block so call from CMS will look like {{block type="featuredproducts/listing"}}
27
+ */
28
+ protected $params;
29
+
30
+ public function __construct() {
31
+ parent::__construct();
32
+ $this->setTemplate('ma2_featuredproducts/block.phtml');
33
+ $this->params = (array)Mage::getStoreConfig("featuredproducts/block");
34
+ }
35
+
36
+ /**
37
+ * Get products collection
38
+ */
39
+
40
+ protected function _getProductCollection()
41
+ {
42
+ if (is_null($this->_productCollection)) {
43
+ $collection = Mage::getModel('catalog/product')->getCollection();
44
+ $attributes = Mage::getSingleton('catalog/config')
45
+ ->getProductAttributes();
46
+
47
+ $storeId = Mage::app()->getStore()->getId();
48
+
49
+ $collection->addAttributeToSelect($attributes)
50
+ ->addMinimalPrice()
51
+ ->addFinalPrice()
52
+ ->addTaxPercents()
53
+ ->addAttributeToFilter('status', 1)
54
+ ->addAttributeToFilter('ma2_featured_product', 1)
55
+ ->addStoreFilter($storeId)
56
+ ->setOrder($this->params['sort_by'], $this->params['sort_dir'])
57
+ ;
58
+
59
+ Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($collection);
60
+ Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($collection);
61
+
62
+ $collection->setPageSize($this->params['products_count'])
63
+ ->setCurPage(1);
64
+ Mage::getModel('review/review')->appendSummary($collection);
65
+ $collection->load();
66
+
67
+ $this->_productCollection = $collection;
68
+ }
69
+
70
+ return $this->_productCollection;
71
+ }
72
+
73
+ /*
74
+ * Load featured products collection
75
+ * */
76
+
77
+ protected function _beforeToHtml() {
78
+
79
+ $this->assign('FeaturedProductCollection',$this->_getProductCollection());
80
+ $_columnCount = $this->params['column_count'];
81
+ if(!$_columnCount || $_columnCount == 0 || empty($_columnCount)) $_columnCount = 3;
82
+ $size_width = 100/$_columnCount;
83
+ $this->assign('item_width',$size_width);
84
+ $this->assign('_columnCount',(int)$_columnCount);
85
+
86
+ /* assign variables in the parameters */
87
+ foreach($this->params as $_para=>$value)
88
+ {
89
+ $this->assign($_para, $value);
90
+ }
91
+
92
+ return parent::_beforeToHtml();
93
+ }
94
+
95
+ protected function _toHtml() {
96
+
97
+ if (!$this->helper('featuredproducts')->getIsActive()) {
98
+ return '';
99
+ }
100
+
101
+ return parent::_toHtml();
102
+ }
103
+
104
+ /*
105
+ * Return label for CMS block output
106
+ * */
107
+
108
+ protected function getBlockLabel() {
109
+ return $this->helper('featuredproducts')->getCmsBlockLabel();
110
+ }
111
+
112
+ }
113
+
114
+ ?>
app/code/community/Ma2/FeaturedProducts/Block/Standalone/List.php ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: List.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Block_Standalone_List extends Mage_Catalog_Block_Product_List
24
+ {
25
+ protected $_productCollection;
26
+ protected $params;
27
+
28
+ public function __construct() {
29
+ parent::__construct();
30
+ $this->params = (array)Mage::getStoreConfig("featuredproducts/standalone");
31
+ }
32
+
33
+ protected function _prepareLayout()
34
+ {
35
+ if ($breadcrumbsBlock = $this->getLayout()->getBlock('breadcrumbs')) {
36
+ $breadcrumbsBlock->addCrumb('home', array(
37
+ 'label'=>Mage::helper('catalog')->__('Home'),
38
+ 'title'=>Mage::helper('catalog')->__('Go to Home Page'),
39
+ 'link'=>Mage::getBaseUrl()
40
+ ));
41
+ }
42
+
43
+ parent::_prepareLayout();
44
+ }
45
+
46
+
47
+ /*
48
+ * Load featured products collection
49
+ * */
50
+ protected function _getProductCollection()
51
+ {
52
+
53
+ if (is_null($this->_productCollection)) {
54
+ $collection = Mage::getModel('catalog/product')->getCollection();
55
+ $attributes = Mage::getSingleton('catalog/config')
56
+ ->getProductAttributes();
57
+
58
+ $storeId = Mage::app()->getStore()->getId();
59
+
60
+ $limit = (int)$this->getRequest()->getParam('limit') ? (int)$this->getRequest()->getParam('limit') : (int)$this->getToolbarBlock()->getDefaultPerPageValue();
61
+
62
+ $collection->addAttributeToSelect($attributes)
63
+ ->addMinimalPrice()
64
+ ->addFinalPrice()
65
+ ->addTaxPercents()
66
+ ->addAttributeToFilter('status', 1)
67
+ ->addAttributeToFilter('ma2_featured_product', 1)
68
+ ->addStoreFilter($storeId)
69
+ ->setOrder($this->getRequest()->getParam('order'), $this->getRequest()->getParam('dir'))
70
+ ;
71
+
72
+ Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($collection);
73
+ Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($collection);
74
+
75
+ $collection->setPageSize($limit)
76
+ ->setCurPage($this->getRequest()->getParam('p'));
77
+ Mage::getModel('review/review')->appendSummary($collection);
78
+ $collection->load();
79
+
80
+ $this->_productCollection = $collection;
81
+ }
82
+ return $this->_productCollection;
83
+ }
84
+
85
+
86
+ /*
87
+ * Remove "Position" option from Sort By dropdown
88
+ * Assign product and params
89
+ */
90
+ protected function _beforeToHtml()
91
+ {
92
+ parent::_beforeToHtml();
93
+ $toolbar = $this->getToolbarBlock();
94
+ $toolbar->removeOrderFromAvailableOrders('position');
95
+
96
+ if (!$this->_getProductCollection()->count()){
97
+ return '';
98
+ }
99
+
100
+ $this->assign('FeaturedProductCollection', $this->_getProductCollection());
101
+ $_columnCount = (int)$this->params['column_count'];
102
+ if(!$_columnCount || $_columnCount == 0 || empty($_columnCount)) $_columnCount = 3;
103
+ $size_width = 100/$_columnCount;
104
+ $this->assign('item_width',$size_width);
105
+ $this->assign('_columnCount', $_columnCount);
106
+ $this->setData('column_count', $_columnCount);
107
+ /* assign variables in the parameters */
108
+ foreach($this->params as $_para=>$value)
109
+ {
110
+ $this->assign($_para, $value);
111
+ }
112
+
113
+ return $this;
114
+ }
115
+
116
+
117
+
118
+ }
119
+ ?>
app/code/community/Ma2/FeaturedProducts/Block/Widget.php ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Widget.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+ ?>
23
+ <?php
24
+ class Ma2_FeaturedProducts_Block_Widget extends Mage_Catalog_Block_Product_Abstract
25
+ implements Mage_Widget_Block_Interface
26
+ {
27
+
28
+ /**
29
+ * Get products collection
30
+ */
31
+
32
+ protected function _getProductCollection()
33
+ {
34
+ if (is_null($this->_productCollection)) {
35
+ $collection = Mage::getModel('catalog/product')->getCollection();
36
+ $attributes = Mage::getSingleton('catalog/config')
37
+ ->getProductAttributes();
38
+
39
+ $storeId = Mage::app()->getStore()->getId();
40
+
41
+ $collection->addAttributeToSelect($attributes)
42
+ ->addMinimalPrice()
43
+ ->addFinalPrice()
44
+ ->addTaxPercents()
45
+ ->addAttributeToFilter('status', 1)
46
+ ->addAttributeToFilter('ma2_featured_product', 1)
47
+ ->addStoreFilter($storeId)
48
+ ->setOrder($this->getData('sort_by'), $this->getData('sort_dir'))
49
+ ;
50
+
51
+ Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($collection);
52
+ Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($collection);
53
+
54
+ $collection->setPageSize($this->getData('products_count'))
55
+ ->setCurPage(1);
56
+ Mage::getModel('review/review')->appendSummary($collection);
57
+ $collection->load();
58
+
59
+ $this->_productCollection = $collection;
60
+ }
61
+
62
+ return $this->_productCollection;
63
+ }
64
+
65
+
66
+ /**
67
+ * To html
68
+ * Assign variables
69
+ */
70
+ protected function _toHtml()
71
+ {
72
+ $this->assign('WidgetProductProductCollection',$this->_getProductCollection());
73
+ $_columnCount = $this->getData('column_count');
74
+ if(!$_columnCount || $_columnCount == 0 || empty($_columnCount)) $_columnCount = 3;
75
+ $size_width = 100/$_columnCount;
76
+ $this->assign('item_width',$size_width);
77
+ $this->assign('_columnCount',(int)$_columnCount);
78
+ /* assign variables in the parameters */
79
+ foreach($this->getData() as $_para=>$value)
80
+ {
81
+ $this->assign($_para, $value);
82
+ }
83
+ return parent::_toHtml();
84
+ }
85
+
86
+ }
87
+ ?>
app/code/community/Ma2/FeaturedProducts/Helper/Data.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Data.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Helper_Data extends Mage_Core_Helper_Abstract {
24
+
25
+ const PATH_PAGE_HEADING = 'featuredproducts/standalone/heading';
26
+ const DEFAULT_LABEL = 'Featured Products';
27
+
28
+ public function getCmsBlockLabel() {
29
+ $configValue = Mage::getStoreConfig(self::PATH_CMS_HEADING);
30
+ return strlen($configValue) > 0 ? $configValue : self::DEFAULT_LABEL;
31
+ }
32
+
33
+ public function getPageLabel() {
34
+ $configValue = Mage::getStoreConfig(self::PATH_PAGE_HEADING);
35
+ return strlen($configValue) > 0 ? $configValue : self::DEFAULT_LABEL;
36
+ }
37
+
38
+ public function getIsActive() {
39
+ return (bool) Mage::getStoreConfig('featuredproducts/standalone/active');
40
+ }
41
+
42
+ }
43
+ ?>
app/code/community/Ma2/FeaturedProducts/Model/System/Config/Source/Listtype.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Listtype.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Model_System_Config_Source_Listtype
24
+ {
25
+ /*
26
+ * Prepare data for System->Configuration dropdown
27
+ * */
28
+ public function toOptionArray()
29
+ {
30
+ return array(
31
+ 'grid' => Mage::helper('adminhtml')->__('Grid'),
32
+ 'list' => Mage::helper('adminhtml')->__('List')
33
+ );
34
+ }
35
+ }
36
+ ?>
app/code/community/Ma2/FeaturedProducts/Model/System/Config/Source/Sortby.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Sortby.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Model_System_Config_Source_Sortby
24
+ {
25
+ /*
26
+ * Prepare data for System->Configuration dropdown
27
+ * */
28
+ public function toOptionArray()
29
+ {
30
+ return array(
31
+ 'price' => Mage::helper('adminhtml')->__('Price'),
32
+ 'name' => Mage::helper('adminhtml')->__('Name'),
33
+ 'created_at' => Mage::helper('adminhtml')->__('Created date')
34
+ );
35
+ }
36
+ }
37
+ ?>
app/code/community/Ma2/FeaturedProducts/Model/System/Config/Source/Sortdir.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: Sortdir.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Model_System_Config_Source_Sortdir
24
+ {
25
+ /*
26
+ * Prepare data for System->Configuration dropdown
27
+ * */
28
+ public function toOptionArray()
29
+ {
30
+ return array(
31
+ 'DESC' => Mage::helper('adminhtml')->__('DESC'),
32
+ 'ASC' => Mage::helper('adminhtml')->__('ASC')
33
+ );
34
+ }
35
+ }
36
+ ?>
app/code/community/Ma2/FeaturedProducts/controllers/Adminhtml/FeaturedController.php ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: FeaturedController.php 5 2013-11-06 09:05:49Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_Adminhtml_FeaturedController extends Mage_Adminhtml_Controller_Action {
24
+
25
+ protected function _initProduct() {
26
+
27
+ $product = Mage::getModel('catalog/product')
28
+ ->setStoreId($this->getRequest()->getParam('store', 0));
29
+
30
+
31
+ if ($setId = (int) $this->getRequest()->getParam('set')) {
32
+ $product->setAttributeSetId($setId);
33
+ }
34
+
35
+ if ($typeId = $this->getRequest()->getParam('type')) {
36
+ $product->setTypeId($typeId);
37
+ }
38
+
39
+ $product->setData('_edit_mode', true);
40
+
41
+ Mage::register('product', $product);
42
+
43
+ return $product;
44
+ }
45
+
46
+ public function indexAction() {
47
+ $this->_initProduct();
48
+
49
+ $this->loadLayout()->_setActiveMenu('ma2/featuredproduct');
50
+
51
+ $this->_addContent($this->getLayout()->createBlock('featuredproducts/adminhtml_edit'));
52
+
53
+ $this->renderLayout();
54
+ }
55
+
56
+ public function gridAction() {
57
+
58
+ $this->getResponse()->setBody(
59
+ $this->getLayout()->createBlock('featuredproducts/adminhtml_edit_grid')->toHtml()
60
+ );
61
+ }
62
+
63
+ public function saveAction() {
64
+ $data = $this->getRequest()->getPost();
65
+ $collection = Mage::getModel('catalog/product')->getCollection();
66
+ $storeId = $this->getRequest()->getParam('store', 0);
67
+
68
+
69
+ parse_str($data['featured_products'], $featured_products);
70
+
71
+
72
+ $collection->addIdFilter(array_keys($featured_products));
73
+
74
+ try {
75
+
76
+ foreach ($collection->getItems() as $product) {
77
+
78
+ $product->setData('ma2_featured_product', $featured_products[$product->getEntityId()]);
79
+ $product->setStoreId($storeId);
80
+ $product->save();
81
+ }
82
+
83
+
84
+ $this->_getSession()->addSuccess($this->__('Featured product was successfully saved.'));
85
+ $this->_redirect('*/*/index', array('store' => $this->getRequest()->getParam('store')));
86
+ } catch (Exception $e) {
87
+ $this->_getSession()->addError($e->getMessage());
88
+ $this->_redirect('*/*/index', array('store' => $this->getRequest()->getParam('store')));
89
+ }
90
+ }
91
+
92
+ protected function _validateSecretKey() {
93
+ return true;
94
+ }
95
+
96
+ protected function _isAllowed() {
97
+ return Mage::getSingleton('admin/session')->isAllowed('admin/ma2/featuredproduct');
98
+ }
99
+
100
+ private function _getExportFileName($extension='csv') {
101
+
102
+ $store_id = $this->getRequest()->getParam('store');
103
+
104
+ $name = 'featured_products_';
105
+
106
+ if ($store_id) {
107
+ $store = Mage::getModel('core/store')->load($store_id);
108
+
109
+ if ($store && $store->getId()) {
110
+ return $name . $store->getName() . '.' . $extension;
111
+ }
112
+ }
113
+
114
+ return $name . 'AllStores.' . $extension;
115
+ }
116
+
117
+ /**
118
+ * Export stylist grid to CSV format
119
+ */
120
+ public function exportCsvAction() {
121
+
122
+ $fileName = $this->_getExportFileName('csv');
123
+
124
+ $content = $this->getLayout()->createBlock('featuredproducts/adminhtml_edit_grid')
125
+ ->getCsvFile();
126
+
127
+ $this->_prepareDownloadResponse($fileName, $content);
128
+ }
129
+
130
+ /**
131
+ * Export stylist grid to XML format
132
+ */
133
+ public function exportXmlAction() {
134
+
135
+ $fileName = $this->_getExportFileName('xml');
136
+
137
+ $content = $this->getLayout()->createBlock('featuredproducts/adminhtml_edit_grid')
138
+ ->getExcelFile();
139
+
140
+ $this->_prepareDownloadResponse($fileName, $content);
141
+ }
142
+
143
+ }
144
+ ?>
app/code/community/Ma2/FeaturedProducts/controllers/IndexController.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: IndexController.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ class Ma2_FeaturedProducts_IndexController extends Mage_Core_Controller_Front_Action {
24
+ /*
25
+ * Check settings set in System->Configuration and apply them for featured-products page
26
+ * */
27
+
28
+ public function indexAction() {
29
+
30
+ if (!Mage::helper('featuredproducts')->getIsActive()) {
31
+ $this->_forward('noRoute');
32
+ return;
33
+ }
34
+
35
+ $template = Mage::getConfig()->getNode('global/page/layouts/' . Mage::getStoreConfig("featuredproducts/standalone/layout") . '/template');
36
+
37
+ $this->loadLayout();
38
+
39
+ $this->getLayout()->getBlock('root')->setTemplate($template);
40
+ $this->getLayout()->getBlock('head')->setTitle($this->__(Mage::getStoreConfig("featuredproducts/standalone/meta_title")));
41
+ $this->getLayout()->getBlock('head')->setDescription($this->__(Mage::getStoreConfig("featuredproducts/standalone/meta_description")));
42
+ $this->getLayout()->getBlock('head')->setKeywords($this->__(Mage::getStoreConfig("featuredproducts/standalone/meta_keywords")));
43
+
44
+ $breadcrumbsBlock = $this->getLayout()->getBlock('breadcrumbs');
45
+ $breadcrumbsBlock->addCrumb('featured_products', array(
46
+ 'label' => Mage::helper('featuredproducts')->__(Mage::helper('featuredproducts')->getPageLabel()),
47
+ 'title' => Mage::helper('featuredproducts')->__(Mage::helper('featuredproducts')->getPageLabel()),
48
+ ));
49
+
50
+ $this->renderLayout();
51
+ }
52
+
53
+ }
54
+ ?>
app/code/community/Ma2/FeaturedProducts/etc/adminhtml.xml ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <config>
2
+ <menu>
3
+ <ma2>
4
+ <children>
5
+ <featuredproduct translate="title">
6
+ <title>Featured Products</title>
7
+ <sort_order>19</sort_order>
8
+ <action>adminhtml/featured/index</action>
9
+ <children>
10
+ <featuredproduct_manager translate="title">
11
+ <title>Featured products manager</title>
12
+ <sort_order>1</sort_order>
13
+ <action>adminhtml/featured/index</action>
14
+ </featuredproduct_manager>
15
+ <featuredproduct_config translate="title">
16
+ <title>Configuration</title>
17
+ <sort_order>2</sort_order>
18
+ <action>adminhtml/system_config/edit/section/featuredproducts</action>
19
+ </featuredproduct_config>
20
+ </children>
21
+ </featuredproduct>
22
+ </children>
23
+ </ma2>
24
+ </menu>
25
+
26
+ <acl>
27
+ <resources>
28
+ <admin>
29
+ <children>
30
+ <system>
31
+ <children>
32
+ <config>
33
+ <children>
34
+ <featuredproducts translate="title" module="featuredproducts">
35
+ <title>Featured Products Settings</title>
36
+ <sort_order>50</sort_order>
37
+ </featuredproducts>
38
+ </children>
39
+ </config>
40
+ </children>
41
+ </system>
42
+ </children>
43
+ </admin>
44
+ <admin>
45
+ <children>
46
+ <ma2>
47
+ <children>
48
+ <featuredproduct translate="title" module="featuredproducts">
49
+ <title>Ma2 Featured Products</title>
50
+ <sort_order>60</sort_order>
51
+ <children>
52
+ <featuredproduct_manager>
53
+ <title>Featured products manager</title>
54
+ <sort_order>1</sort_order>
55
+ </featuredproduct_manager>
56
+ <featuredproduct_config>
57
+ <title>Configuration</title>
58
+ <sort_order>2</sort_order>
59
+ </featuredproduct_config>
60
+ </children>
61
+ </featuredproduct>
62
+ </children>
63
+ </ma2>
64
+ </children>
65
+ </admin>
66
+ </resources>
67
+ </acl>
68
+ </config>
app/code/community/Ma2/FeaturedProducts/etc/config.xml ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <Ma2_FeaturedProducts>
5
+ <version>1.0.0</version>
6
+ </Ma2_FeaturedProducts>
7
+ </modules>
8
+
9
+ <global>
10
+ <blocks>
11
+ <featuredproducts>
12
+ <class>Ma2_FeaturedProducts_Block</class>
13
+ </featuredproducts>
14
+ </blocks>
15
+
16
+ <helpers>
17
+ <featuredproducts>
18
+ <class>Ma2_FeaturedProducts_Helper</class>
19
+ </featuredproducts>
20
+ </helpers>
21
+
22
+ <models>
23
+ <featuredproducts>
24
+ <class>Ma2_FeaturedProducts_Model</class>
25
+ </featuredproducts>
26
+ </models>
27
+
28
+ <resources>
29
+ <featuredproducts_setup>
30
+ <setup>
31
+ <module>Ma2_FeaturedProducts</module>
32
+ <class>Mage_Eav_Model_Entity_Setup</class>
33
+ </setup>
34
+
35
+ <connection>
36
+ <use>core_setup</use>
37
+ </connection>
38
+ </featuredproducts_setup>
39
+
40
+ <featuredproducts_write>
41
+ <connection>
42
+ <use>core_write</use>
43
+ </connection>
44
+ </featuredproducts_write>
45
+ <featuredproducts_read>
46
+ <connection>
47
+ <use>core_read</use>
48
+ </connection>
49
+ </featuredproducts_read>
50
+ </resources>
51
+ </global>
52
+
53
+ <frontend>
54
+ <routers>
55
+ <featuredproducts>
56
+ <use>standard</use>
57
+ <args>
58
+ <module>Ma2_FeaturedProducts</module>
59
+ <frontName>featured-products</frontName>
60
+ </args>
61
+ </featuredproducts>
62
+ </routers>
63
+ <layout>
64
+ <updates>
65
+ <featuredproducts>
66
+ <file>ma2_featuredproducts.xml</file>
67
+ </featuredproducts>
68
+ </updates>
69
+ </layout>
70
+ </frontend>
71
+
72
+ <admin>
73
+ <routers>
74
+ <adminhtml>
75
+ <args>
76
+ <modules>
77
+ <featuredproducts before="Mage_Adminhtml">Ma2_FeaturedProducts_Adminhtml</featuredproducts>
78
+ </modules>
79
+ </args>
80
+ </adminhtml>
81
+ </routers>
82
+ </admin>
83
+
84
+ <default>
85
+ <featuredproducts>
86
+ <block>
87
+ <heading>Featured Products</heading>
88
+ <show_heading>1</show_heading>
89
+ <products_count>6</products_count>
90
+ <sort_by>created_at</sort_by>
91
+ <sort_dir>DESC</sort_dir>
92
+ <list_type>grid</list_type>
93
+ <column_count>3</column_count>
94
+ <show_addtocart>1</show_addtocart>
95
+ <show_details>1</show_details>
96
+ <show_price>1</show_price>
97
+ <show_short_description>1</show_short_description>
98
+ <short_description_limit>88</short_description_limit>
99
+ <thumbnail_width>135</thumbnail_width>
100
+ <thumbnail_height>135</thumbnail_height>
101
+ </block>
102
+ <standalone>
103
+ <active>0</active>
104
+ <heading>Featured Products</heading>
105
+ <layout>two_columns_right</layout>
106
+ <column_count>3</column_count>
107
+ <show_heading>1</show_heading>
108
+ <show_addtocart>1</show_addtocart>
109
+ <show_details>1</show_details>
110
+ <show_price>1</show_price>
111
+ <show_short_description>1</show_short_description>
112
+ <short_description_limit>88</short_description_limit>
113
+ <thumbnail_width>135</thumbnail_width>
114
+ <thumbnail_height>135</thumbnail_height>
115
+ <meta_title>Featured Products</meta_title>
116
+ <meta_description>Check out our great collection of Featured products</meta_description>
117
+ <meta_keywords>featured, products</meta_keywords>
118
+ </standalone>
119
+ </featuredproducts>
120
+ </default>
121
+ </config>
app/code/community/Ma2/FeaturedProducts/etc/system.xml ADDED
@@ -0,0 +1,390 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <tabs>
4
+ <ma2 translate="label" module="ma2all">
5
+ <label>MagenMarket Extensions</label>
6
+ <sort_order>168</sort_order>
7
+ </ma2>
8
+ </tabs>
9
+ <sections>
10
+ <featuredproducts translate="label" module="featuredproducts">
11
+ <class>separator-top</class>
12
+ <label>Ma2 Featured Products</label>
13
+ <tab>ma2</tab>
14
+ <sort_order>10</sort_order>
15
+ <show_in_default>1</show_in_default>
16
+ <show_in_website>1</show_in_website>
17
+ <show_in_store>1</show_in_store>
18
+ <groups>
19
+ <block translate="label">
20
+ <label>Featured Products Block</label>
21
+ <frontend_type>text</frontend_type>
22
+ <sort_order>0</sort_order>
23
+ <show_in_default>1</show_in_default>
24
+ <show_in_website>1</show_in_website>
25
+ <show_in_store>1</show_in_store>
26
+ <fields>
27
+ <heading translate="label comment">
28
+ <label>Block Heading</label>
29
+ <frontend_type>text</frontend_type>
30
+ <sort_order>2</sort_order>
31
+ <show_in_default>1</show_in_default>
32
+ <show_in_website>1</show_in_website>
33
+ <show_in_store>1</show_in_store>
34
+ </heading>
35
+ <show_heading translate="label comment">
36
+ <required>1</required>
37
+ <visible>1</visible>
38
+ <label>Display Block Heading</label>
39
+ <comment>Choose NO to hide the Block heading.</comment>
40
+ <frontend_type>select</frontend_type>
41
+ <source_model>adminhtml/system_config_source_yesno</source_model>
42
+ <sort_order>6</sort_order>
43
+ <show_in_default>1</show_in_default>
44
+ <show_in_website>1</show_in_website>
45
+ <show_in_store>1</show_in_store>
46
+ </show_heading>
47
+ <products_count translate="label">
48
+ <required>1</required>
49
+ <visible>1</visible>
50
+ <label>Maximum number of products</label>
51
+ <value>6</value>
52
+ <frontend_type>text</frontend_type>
53
+ <sort_order>9</sort_order>
54
+ <show_in_default>1</show_in_default>
55
+ <show_in_website>1</show_in_website>
56
+ <show_in_store>1</show_in_store>
57
+ </products_count>
58
+ <sort_by translate="label">
59
+ <visible>1</visible>
60
+ <label>Sort by</label>
61
+ <frontend_type>select</frontend_type>
62
+ <source_model>featuredproducts/system_config_source_sortby</source_model>
63
+ <sort_order>11</sort_order>
64
+ <show_in_default>1</show_in_default>
65
+ <show_in_website>1</show_in_website>
66
+ <show_in_store>1</show_in_store>
67
+ </sort_by>
68
+ <sort_dir translate="label">
69
+ <visible>1</visible>
70
+ <label>Sort direction</label>
71
+ <frontend_type>select</frontend_type>
72
+ <source_model>featuredproducts/system_config_source_sortdir</source_model>
73
+ <sort_order>13</sort_order>
74
+ <show_in_default>1</show_in_default>
75
+ <show_in_website>1</show_in_website>
76
+ <show_in_store>1</show_in_store>
77
+ </sort_dir>
78
+ <list_type translate="label">
79
+ <visible>1</visible>
80
+ <label>Display mode (grid, list)</label>
81
+ <frontend_type>select</frontend_type>
82
+ <source_model>featuredproducts/system_config_source_listtype</source_model>
83
+ <sort_order>15</sort_order>
84
+ <show_in_default>1</show_in_default>
85
+ <show_in_website>1</show_in_website>
86
+ <show_in_store>1</show_in_store>
87
+ </list_type>
88
+ <column_count>
89
+ <required>0</required>
90
+ <visible>1</visible>
91
+ <label>Number of products per row</label>
92
+ <value>3</value>
93
+ <frontend_type>text</frontend_type>
94
+ <sort_order>17</sort_order>
95
+ <show_in_default>1</show_in_default>
96
+ <show_in_website>1</show_in_website>
97
+ <show_in_store>1</show_in_store>
98
+ <depends>
99
+ <list_type><value>grid</value></list_type>
100
+ </depends>
101
+ </column_count>
102
+ <show_addtocart translate="label">
103
+ <visible>1</visible>
104
+ <label> Show Add To Cart button</label>
105
+ <frontend_type>select</frontend_type>
106
+ <sort_order>19</sort_order>
107
+ <value>1</value>
108
+ <show_in_default>1</show_in_default>
109
+ <show_in_website>1</show_in_website>
110
+ <show_in_store>1</show_in_store>
111
+ <source_model>adminhtml/system_config_source_yesno</source_model>
112
+ </show_addtocart>
113
+ <show_details translate="label">
114
+ <visible>1</visible>
115
+ <label> Show Details button</label>
116
+ <frontend_type>select</frontend_type>
117
+ <sort_order>21</sort_order>
118
+ <value>1</value>
119
+ <show_in_default>1</show_in_default>
120
+ <show_in_website>1</show_in_website>
121
+ <show_in_store>1</show_in_store>
122
+ <source_model>adminhtml/system_config_source_yesno</source_model>
123
+ </show_details>
124
+ <show_price translate="label">
125
+ <visible>1</visible>
126
+ <label>Show Price</label>
127
+ <frontend_type>select</frontend_type>
128
+ <sort_order>23</sort_order>
129
+ <value>1</value>
130
+ <show_in_default>1</show_in_default>
131
+ <show_in_website>1</show_in_website>
132
+ <show_in_store>1</show_in_store>
133
+ <source_model>adminhtml/system_config_source_yesno</source_model>
134
+ </show_price>
135
+ <show_short_description translate="label">
136
+ <visible>1</visible>
137
+ <label>Show short description</label>
138
+ <frontend_type>select</frontend_type>
139
+ <sort_order>25</sort_order>
140
+ <value>1</value>
141
+ <show_in_default>1</show_in_default>
142
+ <show_in_website>1</show_in_website>
143
+ <show_in_store>1</show_in_store>
144
+ <source_model>adminhtml/system_config_source_yesno</source_model>
145
+ </show_short_description>
146
+ <short_description_limit>
147
+ <required>0</required>
148
+ <visible>1</visible>
149
+ <label>Short description characters limit</label>
150
+ <frontend_type>text</frontend_type>
151
+ <sort_order>27</sort_order>
152
+ <value>88</value>
153
+ <show_in_default>1</show_in_default>
154
+ <show_in_website>1</show_in_website>
155
+ <show_in_store>1</show_in_store>
156
+ <depends>
157
+ <show_short_description><value>1</value></show_short_description>
158
+ </depends>
159
+ </short_description_limit>
160
+ <thumbnail_width>
161
+ <required>0</required>
162
+ <visible>1</visible>
163
+ <label>Width of thumbnail image</label>
164
+ <frontend_type>text</frontend_type>
165
+ <sort_order>29</sort_order>
166
+ <value>135</value>
167
+ <show_in_default>1</show_in_default>
168
+ <show_in_website>1</show_in_website>
169
+ <show_in_store>1</show_in_store>
170
+ </thumbnail_width>
171
+ <thumbnail_height>
172
+ <required>0</required>
173
+ <visible>1</visible>
174
+ <label>Height of thumbnail image</label>
175
+ <frontend_type>text</frontend_type>
176
+ <sort_order>31</sort_order>
177
+ <value>135</value>
178
+ <show_in_default>1</show_in_default>
179
+ <show_in_website>1</show_in_website>
180
+ <show_in_store>1</show_in_store>
181
+ </thumbnail_height>
182
+ </fields>
183
+ </block>
184
+
185
+ <standalone translate="label">
186
+ <label>Featured Products Standalone Page</label>
187
+ <frontend_type>text</frontend_type>
188
+ <sort_order>1</sort_order>
189
+ <show_in_default>1</show_in_default>
190
+ <show_in_website>1</show_in_website>
191
+ <show_in_store>1</show_in_store>
192
+ <fields>
193
+ <active translate="label comment">
194
+ <label>Enable standalone page</label>
195
+ <frontend_type>select</frontend_type>
196
+ <source_model>adminhtml/system_config_source_yesno</source_model>
197
+ <sort_order>2</sort_order>
198
+ <show_in_default>1</show_in_default>
199
+ <show_in_website>1</show_in_website>
200
+ <show_in_store>1</show_in_store>
201
+ </active>
202
+ <heading translate="label comment">
203
+ <label>Page Heading</label>
204
+ <frontend_type>text</frontend_type>
205
+ <sort_order>4</sort_order>
206
+ <show_in_default>1</show_in_default>
207
+ <show_in_website>1</show_in_website>
208
+ <show_in_store>1</show_in_store>
209
+ </heading>
210
+ <layout translate="label comment">
211
+ <label>Page Layout</label>
212
+ <comment>Layout for featured-products page</comment>
213
+ <frontend_type>select</frontend_type>
214
+ <source_model>page/source_layout</source_model>
215
+ <sort_order>6</sort_order>
216
+ <show_in_default>1</show_in_default>
217
+ <show_in_website>0</show_in_website>
218
+ <show_in_store>0</show_in_store>
219
+ </layout>
220
+ <show_heading translate="label comment">
221
+ <required>1</required>
222
+ <visible>1</visible>
223
+ <label>Display Page Heading</label>
224
+ <comment>Choose NO to hide the page heading.</comment>
225
+ <frontend_type>select</frontend_type>
226
+ <source_model>adminhtml/system_config_source_yesno</source_model>
227
+ <sort_order>8</sort_order>
228
+ <show_in_default>1</show_in_default>
229
+ <show_in_website>1</show_in_website>
230
+ <show_in_store>1</show_in_store>
231
+ </show_heading>
232
+
233
+ <spacer1>
234
+ <frontend_type>label</frontend_type>
235
+ <sort_order>10</sort_order>
236
+ <show_in_default>1</show_in_default>
237
+ <show_in_website>1</show_in_website>
238
+ <show_in_store>1</show_in_store>
239
+ </spacer1>
240
+ <spacer2>
241
+ <label>[ FEATURED PRODUCTS LISTING OPTIONS ]</label>
242
+ <frontend_type>label</frontend_type>
243
+ <sort_order>12</sort_order>
244
+ <show_in_default>1</show_in_default>
245
+ <show_in_website>1</show_in_website>
246
+ <show_in_store>1</show_in_store>
247
+ <comment><![CDATA[<strong>Note:</strong> To setup default value of List mode, Products per page, Available values of Product per page, etc. please go to <em>System -> Configuration -> Catalog -> Catalog -> Frontend</em>. ]]></comment>
248
+ </spacer2>
249
+
250
+
251
+ <column_count>
252
+ <required>0</required>
253
+ <visible>1</visible>
254
+ <label>Number of products per row in grid mode</label>
255
+ <value>3</value>
256
+ <frontend_type>text</frontend_type>
257
+ <sort_order>16</sort_order>
258
+ <show_in_default>1</show_in_default>
259
+ <show_in_website>1</show_in_website>
260
+ <show_in_store>1</show_in_store>
261
+ </column_count>
262
+ <show_addtocart translate="label">
263
+ <visible>1</visible>
264
+ <label> Show Add To Cart button</label>
265
+ <frontend_type>select</frontend_type>
266
+ <sort_order>19</sort_order>
267
+ <value>1</value>
268
+ <show_in_default>1</show_in_default>
269
+ <show_in_website>1</show_in_website>
270
+ <show_in_store>1</show_in_store>
271
+ <source_model>adminhtml/system_config_source_yesno</source_model>
272
+ </show_addtocart>
273
+ <show_details translate="label">
274
+ <visible>1</visible>
275
+ <label> Show Details button</label>
276
+ <frontend_type>select</frontend_type>
277
+ <sort_order>21</sort_order>
278
+ <value>1</value>
279
+ <show_in_default>1</show_in_default>
280
+ <show_in_website>1</show_in_website>
281
+ <show_in_store>1</show_in_store>
282
+ <source_model>adminhtml/system_config_source_yesno</source_model>
283
+ </show_details>
284
+ <show_price translate="label">
285
+ <visible>1</visible>
286
+ <label>Show Price</label>
287
+ <frontend_type>select</frontend_type>
288
+ <sort_order>23</sort_order>
289
+ <value>1</value>
290
+ <show_in_default>1</show_in_default>
291
+ <show_in_website>1</show_in_website>
292
+ <show_in_store>1</show_in_store>
293
+ <source_model>adminhtml/system_config_source_yesno</source_model>
294
+ </show_price>
295
+ <show_short_description translate="label">
296
+ <visible>1</visible>
297
+ <label>Show short description</label>
298
+ <frontend_type>select</frontend_type>
299
+ <sort_order>25</sort_order>
300
+ <value>1</value>
301
+ <show_in_default>1</show_in_default>
302
+ <show_in_website>1</show_in_website>
303
+ <show_in_store>1</show_in_store>
304
+ <source_model>adminhtml/system_config_source_yesno</source_model>
305
+ </show_short_description>
306
+ <short_description_limit>
307
+ <required>0</required>
308
+ <visible>1</visible>
309
+ <label>Short description characters limit</label>
310
+ <frontend_type>text</frontend_type>
311
+ <sort_order>27</sort_order>
312
+ <value>88</value>
313
+ <show_in_default>1</show_in_default>
314
+ <show_in_website>1</show_in_website>
315
+ <show_in_store>1</show_in_store>
316
+ <depends>
317
+ <show_short_description><value>1</value></show_short_description>
318
+ </depends>
319
+ </short_description_limit>
320
+ <thumbnail_width>
321
+ <required>0</required>
322
+ <visible>1</visible>
323
+ <label>Width of thumbnail image</label>
324
+ <frontend_type>text</frontend_type>
325
+ <sort_order>29</sort_order>
326
+ <value>135</value>
327
+ <show_in_default>1</show_in_default>
328
+ <show_in_website>1</show_in_website>
329
+ <show_in_store>1</show_in_store>
330
+ </thumbnail_width>
331
+ <thumbnail_height>
332
+ <required>0</required>
333
+ <visible>1</visible>
334
+ <label>Height of thumbnail image</label>
335
+ <frontend_type>text</frontend_type>
336
+ <sort_order>31</sort_order>
337
+ <value>135</value>
338
+ <show_in_default>1</show_in_default>
339
+ <show_in_website>1</show_in_website>
340
+ <show_in_store>1</show_in_store>
341
+ </thumbnail_height>
342
+
343
+ <spacer3>
344
+ <frontend_type>label</frontend_type>
345
+ <sort_order>33</sort_order>
346
+ <show_in_default>1</show_in_default>
347
+ <show_in_website>1</show_in_website>
348
+ <show_in_store>1</show_in_store>
349
+ </spacer3>
350
+ <spacer4>
351
+ <label>[ PAGE SEO OPTIONS ]</label>
352
+ <frontend_type>label</frontend_type>
353
+ <sort_order>34</sort_order>
354
+ <show_in_default>1</show_in_default>
355
+ <show_in_website>1</show_in_website>
356
+ <show_in_store>1</show_in_store>
357
+ </spacer4>
358
+
359
+ <meta_title translate="label comment">
360
+ <label>Meta Title</label>
361
+ <frontend_type>text</frontend_type>
362
+ <sort_order>35</sort_order>
363
+ <show_in_default>1</show_in_default>
364
+ <show_in_website>1</show_in_website>
365
+ <show_in_store>1</show_in_store>
366
+ </meta_title>
367
+
368
+ <meta_description translate="label comment">
369
+ <label>Meta Description</label>
370
+ <frontend_type>textarea</frontend_type>
371
+ <sort_order>37</sort_order>
372
+ <show_in_default>1</show_in_default>
373
+ <show_in_website>1</show_in_website>
374
+ <show_in_store>1</show_in_store>
375
+ </meta_description>
376
+
377
+ <meta_keywords translate="label comment">
378
+ <label>Meta Keywords</label>
379
+ <frontend_type>textarea</frontend_type>
380
+ <sort_order>39</sort_order>
381
+ <show_in_default>1</show_in_default>
382
+ <show_in_website>1</show_in_website>
383
+ <show_in_store>1</show_in_store>
384
+ </meta_keywords>
385
+ </fields>
386
+ </standalone>
387
+ </groups>
388
+ </featuredproducts>
389
+ </sections>
390
+ </config>
app/code/community/Ma2/FeaturedProducts/etc/widget.xml ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <widgets>
3
+ <featuredproduts translate="name description" type="featuredproducts/widget">
4
+ <name>Ma2 Featured Products widget</name>
5
+ <description type="desc">Help adding featured products listing to CMS page or static block</description>
6
+ <parameters>
7
+ <widget_title translate="label description">
8
+ <required>0</required>
9
+ <visible>1</visible>
10
+ <label>Frontend Title</label>
11
+ <value>Featured Products</value>
12
+ <type>text</type>
13
+ <description>The frontend widget instance title</description>
14
+ </widget_title>
15
+ <show_widget_title translate="label description">
16
+ <required>1</required>
17
+ <visible>1</visible>
18
+ <label>Display Frontend Title</label>
19
+ <description>Choose NO to hide the frontend widget instance title.</description>
20
+ <type>select</type>
21
+ <source_model>adminhtml/system_config_source_yesno</source_model>
22
+ </show_widget_title>
23
+ <products_count translate="label">
24
+ <required>1</required>
25
+ <visible>1</visible>
26
+ <label>Maximum number of products</label>
27
+ <value>6</value>
28
+ <type>text</type>
29
+ </products_count>
30
+ <sort_by translate="label">
31
+ <visible>1</visible>
32
+ <label>Sort by</label>
33
+ <type>select</type>
34
+ <values>
35
+ <price translate="label">
36
+ <value>price</value>
37
+ <label>Price</label>
38
+ </price>
39
+ <name translate="label">
40
+ <value>name</value>
41
+ <label>Name</label>
42
+ </name>
43
+ <created_at translate="label">
44
+ <value>created_at</value>
45
+ <label>Created date</label>
46
+ </created_at>
47
+ </values>
48
+ </sort_by>
49
+ <sort_dir translate="label">
50
+ <visible>1</visible>
51
+ <label>Sort direction</label>
52
+ <type>select</type>
53
+ <values>
54
+ <asc translate="label">
55
+ <value>ASC</value><label>ASC</label>
56
+ </asc>
57
+ <desc translate="label">
58
+ <value>DESC</value><label>DESC</label>
59
+ </desc>
60
+ </values>
61
+ </sort_dir>
62
+ <list_type translate="label">
63
+ <visible>1</visible>
64
+ <label>Display mode (grid, list)</label>
65
+ <type>select</type>
66
+ <values>
67
+ <grid_type translate="label">
68
+ <label>Grid</label>
69
+ <value>grid</value>
70
+ </grid_type>
71
+ <list_type translate="label">
72
+ <label>List</label>
73
+ <value>list</value>
74
+ </list_type>
75
+ </values>
76
+ </list_type>
77
+ <column_count>
78
+ <required>0</required>
79
+ <visible>1</visible>
80
+ <label>Number of products per row</label>
81
+ <value>3</value>
82
+ <type>text</type>
83
+ <depends>
84
+ <list_type><value>grid</value></list_type>
85
+ </depends>
86
+ </column_count>
87
+ <show_addtocart translate="label">
88
+ <visible>1</visible>
89
+ <label> Show Add To Cart button</label>
90
+ <type>select</type>
91
+ <value>1</value>
92
+ <source_model>adminhtml/system_config_source_yesno</source_model>
93
+ </show_addtocart>
94
+ <show_details translate="label">
95
+ <visible>1</visible>
96
+ <label> Show Details button</label>
97
+ <type>select</type>
98
+ <value>1</value>
99
+ <source_model>adminhtml/system_config_source_yesno</source_model>
100
+ </show_details>
101
+ <show_price translate="label">
102
+ <visible>1</visible>
103
+ <label>Show Price</label>
104
+ <type>select</type>
105
+ <value>1</value>
106
+ <source_model>adminhtml/system_config_source_yesno</source_model>
107
+ </show_price>
108
+ <show_short_description translate="label">
109
+ <visible>1</visible>
110
+ <label>Show short description</label>
111
+ <type>select</type>
112
+ <value>1</value>
113
+ <source_model>adminhtml/system_config_source_yesno</source_model>
114
+ </show_short_description>
115
+ <short_description_limit>
116
+ <required>0</required>
117
+ <visible>1</visible>
118
+ <label>Short description characters limit</label>
119
+ <type>text</type>
120
+ <value>88</value>
121
+ <depends>
122
+ <show_short_description><value>1</value></show_short_description>
123
+ </depends>
124
+ </short_description_limit>
125
+ <thumbnail_width>
126
+ <required>0</required>
127
+ <visible>1</visible>
128
+ <label>Width of thumbnail image</label>
129
+ <type>text</type>
130
+ <value>135</value>
131
+ </thumbnail_width>
132
+ <thumbnail_height>
133
+ <required>0</required>
134
+ <visible>1</visible>
135
+ <label>Height of thumbnail image</label>
136
+ <type>text</type>
137
+ <value>135</value>
138
+ </thumbnail_height>
139
+ <template>
140
+ <required>1</required>
141
+ <visible>1</visible>
142
+ <label>Select template</label>
143
+ <type>select</type>
144
+ <values>
145
+ <default translate="label">
146
+ <value>ma2_featuredproducts/widget.phtml</value>
147
+ <label>Default Template</label>
148
+ </default>
149
+ </values>
150
+ </template>
151
+ </parameters>
152
+ </featuredproduts>
153
+ </widgets>
app/code/community/Ma2/FeaturedProducts/sql/featuredproducts_setup/mysql4-install-1.0.0.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * MagenMarket.com
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * DISCLAIMER
13
+ *
14
+ * Edit or modify this file with yourown risk.
15
+ *
16
+ * @category Extensions
17
+ * @package Ma2_FeaturedProducts
18
+ * @copyright Copyright (c) 2013 MagenMarket. (http://www.magenmarket.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ **/
21
+ /* $Id: mysql4-install-1.0.0.php 4 2013-11-05 07:31:07Z linhnt $ */
22
+
23
+ $installer = $this;
24
+
25
+ $installer->addAttribute('catalog_product', 'ma2_featured_product', array(
26
+ 'group' => 'General',
27
+ 'type' => 'int',
28
+ 'backend' => '',
29
+ 'frontend' => '',
30
+ 'label' => 'Featured product',
31
+ 'input' => 'boolean',
32
+ 'class' => '',
33
+ 'source' => '',
34
+ 'is_global', Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
35
+ 'visible' => true,
36
+ 'required' => false,
37
+ 'user_defined' => false,
38
+ 'default' => '0',
39
+ 'searchable' => false,
40
+ 'filterable' => false,
41
+ 'comparable' => false,
42
+ 'visible_on_front' => false,
43
+ 'unique' => false,
44
+ 'apply_to' => 'simple,configurable,virtual,bundle,downloadable',
45
+ 'is_configurable' => false,
46
+ 'used_in_product_listing', '1'
47
+ ));
48
+
49
+ $installer->updateAttribute('catalog_product', 'ma2_featured_product', 'used_in_product_listing', '1');
50
+ $installer->updateAttribute('catalog_product', 'ma2_featured_product', 'is_global', '0');
51
+
52
+ $installer->endSetup();
53
+
54
+ ?>
media/ma2/images/default/ma2_juno_thumb.jpg ADDED
Binary file
package.xml CHANGED
@@ -1,25 +1,23 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ma2_Juno_Theme</name>
4
- <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>MA2 Juno for Magento is a nice theme for any kind of eCommerce store with modern and clean design.</summary>
10
  <description>MA2 Juno for Magento is a nice theme for any kind of eCommerce store with modern and clean design. This theme introduces many innovative features and offers tons of customizable options, giving you total control over your store's look and feel.</description>
11
- <notes>Version number: 1.0.1&#xD;
12
  Stability: Stable &#xD;
13
- Compatibility: 1.7, 1.8&#xD;
14
  &#xD;
15
- + Fix CMS block doesn't display at the right positions&#xD;
16
  + Update module Ma2 Featured Products&#xD;
17
- + Update module Ma2 Widget Tabs Free&#xD;
18
  </notes>
19
  <authors><author><name>Magenmarket.com</name><user>Magen_Market</user><email>trungdt@omegatheme.com</email></author></authors>
20
- <date>2013-12-23</date>
21
- <time>09:09:04</time>
22
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="ma2_all.xml" hash="59880296e6923687e89609aed7b59c31"/><file name="ma2featuredproducts.xml" hash="267b42a6dd54ac108f9845f73f76dc9b"/><file name="ma2slideshow.xml" hash="4639f81b3c9940886de9728d1ca7fd0e"/><file name="ma2themeoptions.xml" hash="62c9f23947062d67650db077e8d7d61d"/><file name="ma2_widgettabsf.xml" hash="d4b57cac2dd7884e98e852e6b468e13f"/></dir></dir></dir></dir><dir name="frontend"><dir name="ma2"><dir name="juno"><dir name="etc"><file name="widget.xml" hash="8bb4cd4228dbb0678cff05ded6e906f8"/></dir><dir name="layout"><file name="local.xml" hash="5fe73b318ef4ee1ac713b4a773b7dde4"/><file name="ma2_all.xml" hash="60da2a96f1c431e35c409190c269af68"/><file name="ma2_widgettabsf.xml" hash="c6cb955cd0d1443d0fea638ac9da0d8b"/><file name="ma2slideshow.xml" hash="0420495aed74f371b83b2e38fd29ab85"/><file name="ma2widgettabs.xml" hash="3c7d0b5cf80330de94e2ee3815b02491"/></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="page.phtml" hash="be09d324903e74d8ab256d823b9136f4"/><file name="view.phtml" hash="030152e419ec78f7dddc7423ae3bcbe2"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="154d923655194660f3c6b040b7b8fcea"/><file name="link_inline.phtml" hash="1e0d919d42534acdaa61121829273f3c"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="18df31d346756388c2f1009c4fd39ca4"/><file name="state.phtml" hash="0291dab90fce001ca017e32e74f00411"/><file name="view.phtml" hash="cec3350b62a989406bd158e5b372805a"/></dir><dir name="msrp"><file name="popup.phtml" hash="70d9a11d560b13c1a1430a163a671e80"/></dir><dir name="navigation"><file name="left.phtml" hash="e287afeb46a84aa5c8c1e685f51bffaa"/><file name="right.phtml" hash="9012ab759e14b21fab69832776e0f133"/><file name="top.phtml" hash="8ddede3b4fd84a27d2ec3ca7dbdede25"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="4aac8eb1b1cd3caf55ff8bc3ca27084e"/><file name="sidebar.phtml" hash="46c987a848fa3bf0765bdfd11dc8c7df"/></dir><file name="gallery.phtml" hash="721ccac6c1617cb895a67e6c336738d7"/><dir name="list"><file name="related.phtml" hash="3cd9c6dd2850438b7c9451ba7ef585f8"/><file name="toolbar.phtml" hash="9280adbd941d2dcdd51f47098f06dd64"/><file name="upsell.phtml" hash="d2a4059f4947351afa6034a0078a1cff"/></dir><file name="list.phtml" hash="9dbe54f5b66ce2bfd6058b5f3af66e78"/><file name="new.phtml" hash="fe5256e59d993b3c6dc600db2ea6fe2a"/><file name="price.phtml" hash="afb997df5ae2b7253a96c22d269eeef3"/><file name="price_msrp.phtml" hash="e1ef8f9193047af8e2749b4e795ced5a"/><file name="price_msrp_item.phtml" hash="1a05db808b9e33b50ccac7fa88d14bc8"/><file name="price_msrp_noform.phtml" hash="e2728b9dfa6f0df5adf08ee3aa9531bb"/><file name="price_msrp_rss.phtml" hash="8a904953f8b74b4faf58902f9a46d43d"/><dir name="view"><file name="additional.phtml" hash="7bab9dbcc43d46b0aa057dd92547e49e"/><file name="addto.phtml" hash="b20f2d46fb5c64d47eca5a08c04f92bc"/><file name="addtocart.phtml" hash="c817ac504816c3c98cb88ece2d730cd9"/><file name="attributes.phtml" hash="a234143e664549fbca1d49c1e950efc5"/><file name="description.phtml" hash="a9ee13db96558372435034562dbdaa7a"/><file name="media.phtml" hash="ea3b00cffa64265030f7e9aec8caea3f"/><dir name="options"><file name="js.phtml" hash="9d5c5c4786c5b9fb7125f6f3cc8c7309"/><dir name="type"><file name="date.phtml" hash="5bdfd7dc4817a500095e076a21a2c467"/><file name="default.phtml" hash="f1acbd98563c6640c4a0b6cf5abc994f"/><file name="file.phtml" hash="b72f9363f049dd486ff0a3c8b667cbc9"/><file name="select.phtml" hash="5dbbe91d0581ccb291737992c5188121"/><file name="text.phtml" hash="1aaef71a9e81521aab601aa281fa0b8e"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="6a612992021e3e65ca7b5f6e897821d5"/></dir><file name="wrapper.phtml" hash="472e04ad6c1a35dfeaa54b3012884ed6"/></dir><file name="options.phtml" hash="c1227dcadb83af6708d78a032ffd8d6c"/><file name="price.phtml" hash="f2ae6daff42b8ee7074d27c8bf5f1e6c"/><file name="price_clone.phtml" hash="732daf46245f4ee7068d5ae26defc750"/><file name="tierprices.phtml" hash="0b7f122253b505c45772eff069203a5d"/><dir name="type"><file name="configurable.phtml" hash="1a0a77285960b4227f000855e8194ed7"/><file name="default.phtml" hash="dd5d4b8859956d79ec7d42522b4f42a8"/><file name="grouped.phtml" hash="f5d7db323383b19a80ab3c55a1736dd5"/><dir name="options"><file name="configurable.phtml" hash="c37919561a3cde0d9b92fd34d44c69c1"/></dir><file name="simple.phtml" hash="1a0a77285960b4227f000855e8194ed7"/><file name="virtual.phtml" hash="1a0a77285960b4227f000855e8194ed7"/></dir></dir><file name="view.phtml" hash="fa3aab9a284b9fe8e3154396acb3df13"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="d48d079cdbc11c340e527b27a5956434"/><file name="link_inline.phtml" hash="80a9c2cad3491605eebbe84f73ed6a81"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="e3bfe025786c3ad06ea7ab282c54004a"/><file name="new_images_list.phtml" hash="30299cf21fd0f2d203640875a68d3ea6"/><file name="new_names_list.phtml" hash="ea1d4cb042f6319b798d587bae7eff07"/></dir><dir name="content"><file name="new_grid.phtml" hash="b734ae1ca010b96179274741c653dd2d"/><file name="new_list.phtml" hash="427b323b0cbfc26aa4092343df5fa125"/></dir></dir></dir></dir><dir name="rss"><dir name="product"><file name="price.phtml" hash="b1b71983d3d8616116922d3b91dbcaba"/></dir></dir><dir name="seo"><dir name="sitemap"><file name="container.phtml" hash="ed20c43980bb321548837b821e400dd8"/></dir><file name="sitemap.phtml" hash="3572cdf4d9d3389d4fde1232bb027a0f"/><file name="tree.phtml" hash="de625774b149902edf5d451101491b52"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="d5a3b4cf51f3ffcc256eb451c32725ef"/><file name="result.phtml" hash="b1e4ce41e5e31f0e9295030aab77f2f1"/></dir><file name="form.mini.phtml" hash="669835d242aa7c57af71fa58d1b480d3"/><file name="result.phtml" hash="c2bdfc4b0599094a83456dd6f17d4c77"/><file name="term.phtml" hash="d5d0883f5f685228ad5e87ce294b5821"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="8a3f239d1f8afa5dfa3d45a1ca28baae"/><file name="crosssell.phtml" hash="186f8405ec7a86f7e48bfcb01adf7b2e"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="0fc6cc809c88704da74a915cf7e20918"/></dir><file name="default.phtml" hash="ef843033ce7057091a5eca85723f40be"/></dir><file name="noItems.phtml" hash="001f7d25b1c9468f532a13940fc8c7bb"/><dir name="render"><file name="default.phtml" hash="f5b6d21f8a80455daab898ea0f3f7c97"/><file name="simple.phtml" hash="15fb630f32aadbd48a892e8d90af3073"/></dir><file name="shipping.phtml" hash="6b774a841fc54c29a1f5d3a2af6a0944"/><dir name="sidebar"><file name="default.phtml" hash="b508e1e2007554fdd72570e9b1efbc92"/></dir><file name="sidebar.phtml" hash="1f76718ac277acb3d9e65f81620d6ee6"/><file name="totals.phtml" hash="5b69442fec9380e0e6d2afc6f95fd04a"/></dir><file name="cart.phtml" hash="34d41f366e05314baf7cbee9a37ad6bd"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="5298b1c3f448f03685fb8bd0df88d97b"/></dir><file name="addresses.phtml" hash="234be7957d9cdf739c06c714ba04c372"/><file name="agreements.phtml" hash="ff0beb153b284b2e3c58b4370a4b8401"/><dir name="billing"><file name="items.phtml" hash="cabfbfb5d33255a4750ccc3d55c358d6"/></dir><file name="billing.phtml" hash="281597e3e36ba83a13cdb4fb6bdbc3f8"/><dir name="item"><file name="default.phtml" hash="0ff34fc5d79d1bbe12fcf297b8280f08"/></dir><file name="link.phtml" hash="70249f4132c971ec5888690ffd092403"/><dir name="overview"><file name="item.phtml" hash="e83def5645dc64adef382b849c8fbdbb"/></dir><file name="overview.phtml" hash="bcdab97360c0938600c5a08249d81d17"/><file name="shipping.phtml" hash="568b9a00ba97c7db001cd894bae675a1"/><file name="state.phtml" hash="070912c23e8ff11f007e22306217f6d5"/><file name="success.phtml" hash="ae7f8dda179230945ace59db76f8b017"/></dir><dir name="onepage"><file name="agreements.phtml" hash="a8f762dd61914b2d9eab9fe9ada1945a"/><file name="billing.phtml" hash="3627f62972b124c21cbb08fd67458552"/><file name="failure.phtml" hash="0b95128399f2521bf12837aceaa31836"/><file name="link.phtml" hash="323dcf7f1acb91a186595b618592be86"/><file name="login.phtml" hash="ea2fbe290afcefdc0077ac42835899e7"/><dir name="payment"><file name="info.phtml" hash="e3d23f5d3e0b135ca38ec7ab5b41f851"/><file name="methods.phtml" hash="b88d2e4a2f375b5fb4a3983539b2e81e"/></dir><file name="payment.phtml" hash="0f2094bb3da954aa9405c1af7b66ae2a"/><dir name="progress"><file name="billing.phtml" hash="e0c20674a6831364b055424dac493acb"/><file name="payment.phtml" hash="2c5af1d7ea230faa3963781f85e9f610"/><file name="shipping.phtml" hash="b26f2b46e5c12cda8de4ecb37f98c355"/><file name="shipping_method.phtml" hash="1fbb3446280be2b2ce831e6b0b26fd80"/></dir><file name="progress.phtml" hash="3eab47ed120f6efd05f85294da825544"/><dir name="review"><file name="button.phtml" hash="d7a54917e7d0ceec6875760a3910452f"/><file name="info.phtml" hash="60c527a672dc8ed0afbe180c1105f65b"/><file name="item.phtml" hash="4ff6deeabbe76339f9914075e49cf798"/><file name="totals.phtml" hash="0acb66397e2d390de49dbdfca15d9804"/></dir><file name="review.phtml" hash="5ffdd3cc23815519462e3dcb1fc6b81a"/><file name="shipping.phtml" hash="0dd2ceb18da2763395701c6379cb9a77"/><dir name="shipping_method"><file name="additional.phtml" hash="7f8751c51089c14316694e2aa6c5357d"/><file name="available.phtml" hash="779142c301923119db60c08ad90d4e06"/></dir><file name="shipping_method.phtml" hash="ca5074b35e9a6167298a4a4433ecf98b"/></dir><file name="onepage.phtml" hash="b9c5a5a822652a0890be7e3e4f05d6b1"/><file name="success.phtml" hash="2e15bd609848f9da5edcece36b75ee45"/><dir name="total"><file name="default.phtml" hash="0ee253b9c15115a9db2cf53a67eeadf2"/><file name="nominal.phtml" hash="d377962c59bffbf7d21ced50f23c6d16"/><file name="tax.phtml" hash="df7b9274149d74ff7d6cc7fa356be35c"/></dir></dir><dir name="cms"><file name="content.phtml" hash="21fba66ee197b4e83c9f8292b98970e4"/><file name="content_heading.phtml" hash="9f7652c66d978f6c2946ba7bf419374e"/><dir name="default"><file name="home.phtml" hash="18d93ac152e47351b0039d8b3a67d59d"/><file name="no-route.phtml" hash="52106ead9e9ce41f82122f875caecfd7"/></dir><file name="meta.phtml" hash="2204e889eef9af73ca7ee62ac816b4e3"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="a68c6f5a81619916efb013711d4bcf2a"/><file name="link_inline.phtml" hash="d02b918997135ce60ee4a958d0721299"/></dir><dir name="static_block"><file name="default.phtml" hash="967e54d555e0f9bebc09a5e5b704e45b"/></dir></dir></dir><dir name="ma2_widgettabsf"><file name="default.phtml" hash="56db896833690f7f99331912f9c5bc0f"/></dir><dir name="ma2slideshow"><file name="slideshow.phtml" hash="5fb7920a13f63de30ff0ba382a9dc231"/></dir><dir name="ma2widgetproductlist"><dir name="bestselling"><file name="default.phtml" hash="b81fa264b9dfd8cb0660cf1623a06746"/><file name="template1.phtml" hash="7b71b5add0c36721b22362378ca4c95f"/><file name="template2.phtml" hash="873a93f1e856c4c9f6637b395948dc99"/></dir><dir name="custom"><file name="default.phtml" hash="234036bc31f7853d88a998820740d7ed"/><file name="template1.phtml" hash="234036bc31f7853d88a998820740d7ed"/><file name="template2.phtml" hash="234036bc31f7853d88a998820740d7ed"/></dir><dir name="featured"><file name="default.phtml" hash="ccc429cd4e9dcbb6d95782bc69c08237"/><file name="template1.phtml" hash="ccc429cd4e9dcbb6d95782bc69c08237"/><file name="template2.phtml" hash="009867217a6191b4e1911445a43614be"/></dir><dir name="new"><file name="default.phtml" hash="c1fe309c855bcbb24a16149036eea203"/><file name="template1.phtml" hash="c1fe309c855bcbb24a16149036eea203"/><file name="template2.phtml" hash="f5da32429b7e31427d75ccf59a85bdfa"/></dir></dir><dir name="page"><file name="1column.phtml" hash="d643cb73143d7d8e42be0a7d3467bef1"/><file name="2columns-left.phtml" hash="705dd615c4c4a44177d499765acccc90"/><file name="2columns-right.phtml" hash="154926cb4d881de88961028ab07088d2"/><file name="3columns.phtml" hash="db8784d37496a254b94f00778346db00"/><file name="empty.phtml" hash="7fde585927f37e76338ae967da54df70"/><dir name="html"><file name="bottomBlock1.phtml" hash="c8646a49bdc63dc716071da2799f1096"/><file name="bottomBlock2.phtml" hash="78156bbce495e7a95ae7a908c9b22086"/><file name="bottomBlock3.phtml" hash="ca310b11b285b0b66d7cd6edf20f5d30"/><file name="breadcrumbs.phtml" hash="0407c497e9027ed264365fcb45bc6db4"/><file name="footer.phtml" hash="1bd7d90ea786e095e7b05f626bc7ddaa"/><file name="footerBlock1.phtml" hash="72975dcccf4529d987ab401076f54875"/><file name="footerBlock2.phtml" hash="1c91e3b4e83ad8ed4e2d3cfa460e20ed"/><file name="head.phtml" hash="a50de7c3843a692c8035d9fc9966e6f8"/><file name="header.phtml" hash="906541959d5e74cb99a9a2ae0654189b"/><file name="maintopBlock1.phtml" hash="bf88d0d360b051a6d354ef782b0860bf"/><file name="maintopBlock2.phtml" hash="eed7a2860c52e3f6f57a3b7ec6862aa3"/><file name="maintopBlock3.phtml" hash="9020e83d73a0c2733822eb250cc685cb"/><file name="notices.phtml" hash="727736b58612fac30cef87552368f057"/><file name="pager.phtml" hash="929cf15ac7b16657673ad0b9c01fac7f"/><file name="presetstyles.phtml" hash="e9f344f2de50395e7ce7186fd8fb4ee0"/><file name="top.links.phtml" hash="156bf2c82e02940a392398b81df00d73"/><file name="topBlock1.phtml" hash="e6ed478d05dc839872b6f6c71799a36f"/><file name="topBlock2.phtml" hash="e6ed478d05dc839872b6f6c71799a36f"/><file name="topMenu.phtml" hash="a08bef71794fd1a797655d2bc9c9ff47"/><file name="wrapper.phtml" hash="c7f2c8566d851246535a80f108c865e6"/></dir><dir name="js"><file name="calendar.phtml" hash="96f726bb09b2c29177cb1c0d10997b1e"/><file name="cookie.phtml" hash="b6584923913a80e459124f73d0383779"/></dir><file name="popup.phtml" hash="fae1be35fbf71175f5394864792d2f12"/><file name="print.phtml" hash="208ada6325841aec23c08c29a1c60ea6"/><file name="redirect.phtml" hash="26f1c196a8cdf5d939434acf3886bc9b"/><dir name="switch"><file name="flags.phtml" hash="9c65d3837dfd3c7bb7ea81cad1177a20"/><file name="languages.phtml" hash="d67cb29ce01372828cbaa17d7415d3ad"/><file name="stores.phtml" hash="17cc715b034711f18982fd15c7a49285"/></dir><dir name="template"><file name="container.phtml" hash="5ddcc4abda0f7d063e6b60bdb9a46008"/><file name="links.phtml" hash="8ac82b00dd7537826a45285556981dd1"/><file name="linksblock.phtml" hash="ca9e3d358dce2158f8bcf3fc53e87bcd"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ma2_FeaturedProducts.xml" hash="16d387ab5054356fbd463c53f66ac517"/><file name="Ma2_Slideshow.xml" hash="ccfeb2fdba8e30dd731e28abdc0896b9"/><file name="Ma2_ThemeOptions.xml" hash="4af215fb95222a691c8dd6c8cab22da6"/><file name="Ma2_WidgetProductList.xml" hash="1c3b966da91cee3f278483bae9ee8984"/><file name="Ma2_WidgetTabsF.xml" hash="ea8a53c734cb9be2e984a4832e267eb5"/><file name="Ma2_All.xml" hash="1f6125faeadf108fc81b1a03b4574d59"/></dir></target><target name="mage"><dir name="js"><dir name="ma2_all"><file name="ma2all.css" hash="9c4db2cea69d0b7e2a03c149dc21749e"/><file name="ma2all.js" hash="a0e4d21d363f5b9cdfc4c6c0731f6b69"/></dir></dir><dir name="media"><dir name="ma2"><dir name="images"><dir name="default"><file name="logo.png" hash="d62bf4c492c4418ae48b6ee580443665"/><file name="logo_1.png" hash="d62bf4c492c4418ae48b6ee580443665"/><file name="logo_2.png" hash="d62bf4c492c4418ae48b6ee580443665"/></dir></dir></dir><dir name="ma2slideshow"><file name="1.jpg" hash="8120ce49f82f5eb2a046fb9d0ad4b234"/><file name="120130814070516.jpg" hash="8120ce49f82f5eb2a046fb9d0ad4b234"/><file name="2.jpg" hash="a06ba4cca122684cad7f4b9f56e2c6ea"/><file name="220130814070604.jpg" hash="a06ba4cca122684cad7f4b9f56e2c6ea"/><file name="3.jpg" hash="346c32f673c3031f650e4fd7be6d544a"/><file name="320130814070655.jpg" hash="346c32f673c3031f650e4fd7be6d544a"/><file name="4.jpg" hash="c05e4c73702b2876fa3acf57b5281775"/><file name="420130814070740.jpg" hash="c05e4c73702b2876fa3acf57b5281775"/><dir name="thumbnail"><file name="120130814070516.jpg" hash="9a8868e43e8aaee9ce8524359ea24d84"/><file name="220130814070604.jpg" hash="97f02ed1c5dbf3c6df119fa8947a3c63"/><file name="320130814070655.jpg" hash="d695d14cb7b1b3d99fd9e1eee77a5501"/><file name="420130814070740.jpg" hash="a8853e1975f121db329eaddd0709280d"/></dir></dir><dir name="wysiwyg"><dir name="demo"><file name="advertising.png" hash="211eed5918a05a07a311e308b8917c7e"/><file name="banner.jpg" hash="8120ce49f82f5eb2a046fb9d0ad4b234"/><file name="box-1.png" hash="0a7a1669ed56d2035efaa0971fc4ab0b"/><file name="box-2.png" hash="403732ce7ad47b7d0ade90c70423f24e"/><file name="box-3.png" hash="07936ab53d9bbee71446c4648301d705"/><file name="call.png" hash="cf6440604d438f44a9f665d00e256735"/><file name="cirrus.png" hash="adef5cebf5733c4cf7a742cb26cb3851"/><file name="discover.png" hash="c612087884381d51deb9ccbb2162e114"/><file name="dribbble.png" hash="e682df239cf7fe1a2ce9b189a5dcd4eb"/><file name="ebay.png" hash="31fee73757a869bbdde21a705b94aa5d"/><file name="email.png" hash="c87e0a1ce61413ece6f4abc151ebb4b9"/><file name="facebook.png" hash="e1b1229842f1aec0b5550387494e4248"/><file name="feed.png" hash="221cb0b5502df909568c0dc6ec6ba57a"/><file name="gplus.png" hash="99d267e3ec32d1103405b1324b19ffc6"/><file name="linked-in.png" hash="f2990c9266fd22c83bf23ba5a1090779"/><file name="mastercard.png" hash="69f8434ebccf958292209693992c626a"/><file name="money-back-guarantee.png" hash="9da4f1a22486cbb88f4892471f0e4dcf"/><file name="paypal.png" hash="eda51504f058d580c542c524353bd9e9"/><file name="pinterest.png" hash="0509720fbce05082f6e37fcf0d5c5048"/><file name="saleoff-first-order.png" hash="f4dee0eb036bb74fbb4b319ed83220d5"/><file name="saleoff-line.png" hash="7633f45740dce3eea22b2df8b4cd48ee"/><file name="secure-online-shoping.png" hash="3ded63cd55078aabdcdec36bdf234a94"/><file name="signup.png" hash="0732e3cede81b3f414dfc6749c1bc885"/><file name="solo.png" hash="4c92b3c00bd67f45cc7adfb346fcc739"/><file name="twitter.png" hash="551e0025c6cbfca1228593a6f714c93f"/><file name="visa.png" hash="6af019e429468d1e9da3001a5a630f78"/><file name="worldwide-shipping.png" hash="23776df1c357779465cc7aa6e7f8b2bb"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><dir name="ma2_widgettabsf"><dir name="images"><file name="add_btn_icon.gif" hash="7300097305b577ee564dc49102822d16"/><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="btn_over_bg.gif" hash="f91641168454c03d1fa72731ec97a2b3"/><file name="cancel_btn_icon.gif" hash="97e0cd94ed31d6f2a1181f627e60e9a3"/><file name="save_btn_icon.gif" hash="f5da95ac65efff5f5cf9c8830202764d"/></dir><file name="ma2_widgettabsf_adm.css" hash="e8f9443a3fc6b895acc60853d18ee8f3"/></dir></dir></dir><dir name="ma2"><dir name="js"><dir name="colorchooser"><file name="arrow.gif" hash="5034704a76cd55c1cbcbc58ea6bf523f"/><file name="cross.gif" hash="ba9a274b9323753cd95bc3b1eb2f4e5f"/><file name="hs.png" hash="fefa1a03d92ebad25c88dca94a0b63db"/><file name="hv.png" hash="990d71cada17da100653636cf8490884"/><file name="index.html" hash="1c7b413c3fa39d0fed40556d2658ac73"/><file name="jscolor.js" hash="619885c5c4e1051c891456349033838e"/></dir><dir name="webfonts"><file name="gwebfonts.json" hash="ad404c3742482d806be07d839a62528c"/><file name="gwebfonts.seri" hash="6b9de260ce8bfb8e91f2add5c7b07950"/><file name="index.html" hash="8a3edb0428f11a404535d9134c90063f"/><file name="webfont.js" hash="9e088b08f277b45164e0e10b79d6a99c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="ma2"><dir name="juno"><dir name="css"><file name="blue.css" hash="96bc4d2b586bc1e7e5a112eeced55921"/><file name="custom.css" hash="944640ef2351972ace8b227521cd2960"/><file name="green.css" hash="0823c9fb4fd808e7b810a36d08000c78"/><dir name="ma2_widgettabsf"><file name="ma2_widgettabsf.css" hash="6125118f257616cba946b6543652d8c5"/></dir><dir name="ma2slideshow"><dir name="images"><file name="desc-bg.png" hash="a8d7cb13b2dc537225c780ad5837c3d0"/><file name="next-prev.png" hash="a462e72c9445fe8c31bfbfde9943df80"/><file name="pix.gif" hash="7ad866406509775de63f33224decc101"/><file name="proto_controls_bg.png" hash="617e2194cfc44442c2fefabc6efe5399"/><file name="proto_controls_pause_play_bg.png" hash="d7b80e3375a34dd657e4b1eddf38b2e0"/></dir><file name="protoshow.css" hash="be581f5f55ea9037fbcd1457ed49ffa3"/><file name="styles.css" hash="2b5d37b239c82cec3fa11dcd8e2e78bb"/></dir><file name="navmain.css" hash="269fedd9f783e5e46894a4b288422f40"/><file name="oauth-simple.css" hash="bf193322afc4112a25ae99d1137053e1"/><file name="print.css" hash="aafa75a7a320ecf563e63b9098beba05"/><file name="producttabs.css" hash="bf58d842ca7606511fa02197d1a70e55"/><file name="red.css" hash="f7733fa63b1b089feba8a0236c22e686"/><file name="styles-ie.css" hash="4db74d06c973b8b89bec9177cd4d0344"/><file name="styles.css" hash="dfe8b4fe596b87598c9769d1985315ba"/><file name="template.css" hash="92ea1b8fbd5f8d831d1aaa0683db921e"/><file name="widgets.css" hash="99dea1d4a24097939011ea5c8d2be4cb"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="fronts"><file name="MonoSocialIconsFont-1.10.eot" hash="05d72bd616722f39afef30004839ce08"/><file name="MonoSocialIconsFont-1.10.otf" hash="bb587e5c486d57dfc51d5579c9ea4b49"/><file name="MonoSocialIconsFont-1.10.svg" hash="f9e431dc8d2ae45148edfc6f2ac6f961"/><file name="MonoSocialIconsFont-1.10.ttf" hash="d3b5827e4faf0b034d4b2bcaa6d43724"/><file name="MonoSocialIconsFont-1.10.woff" hash="6ef18e62928bfbe78057f6604702062a"/><file name="Oswald.eot" hash="275502844655171a889d7ce467d645e3"/><file name="Oswald.otf" hash="f99c8059f12421af51b0a9e674351739"/><file name="Oswald.ttf" hash="d40bbce8f4b00a569beac2454b69231e"/></dir><dir name="images"><file name="arrow-double.png" hash="86847813c3fbf21bd384e709018e96e8"/><file name="arrow-fragile-small.png" hash="f2faab1bec50f4984a96569047a3160c"/><file name="arrow-fragile-white.png" hash="b33dbf0b7a1bf7525738e9b3d374056b"/><file name="arrow-fragile.png" hash="7f7f13a405b864114f3df63aca6ce8cb"/><dir name="backup"><file name="best_selling_tr_even_bg.gif" hash="5022d648379090e306f00cd64738b146"/><file name="best_selling_tr_odd_bg.gif" hash="926622704f53796801bb5d097e116c8e"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="2ca36eb80ea705e063409153f3821f78"/><file name="bkg_grand-total.gif" hash="10f1c3d82d78170706fa3e9c4baa7e04"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="bkg_nav0.jpg" hash="f9ac3f31e293cf075471d2d3fe07353a"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="7078a7f2827156d5ae0a1cb59da3c418"/><file name="bkg_product_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="b0d17555dfc6060941e0c067718189df"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><dir name="centinel"><file name="sc_learn_62x34.gif" hash="059ec6c3eecea97b3f70a2e2d6ceb911"/><file name="v_activate_steps.gif" hash="005312b14c6aed41e8a47c4acaac7c1a"/><file name="vbv_ltbg_71x57.gif" hash="2b0bcd07251fcaafd46e7ce77ba821a9"/></dir><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="home_left_callout.jpg" hash="ee99a5586cf52e85c986d1275958a7da"/><file name="home_main_callout.jpg" hash="e6d1c119d5b24a5916fe394cb4b5cdc3"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="logo_email.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="logo_print.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><dir name="moneybookers"><file name="banner_120_de.gif" hash="74815117bf378543e5b3496bb5bc4e8a"/><file name="banner_120_de.png" hash="6c3f708fcb6dac92e53472d4c2246c68"/><file name="banner_120_dk.gif" hash="2106bd994d188d40474bf2a2e8d62a8d"/><file name="banner_120_fr.gif" hash="a84241eef7bc38fb38567e7aa8ca245a"/><file name="banner_120_fr.png" hash="8994d1dc3b4f5c9e5efc67ce3f9f55a9"/><file name="banner_120_int.gif" hash="e23ddcf71e15f0a9300062ef9cdea512"/><file name="banner_120_int.png" hash="f9dfbc26041e52b34eea65348707d64f"/><file name="banner_120_pl.gif" hash="44313c7d27cdcf59c2f66708c6c5abd5"/><file name="banner_120_pl.png" hash="67d3385f93bc9113880305ee7c7da9de"/><file name="banner_120_sp.gif" hash="a003ed8db63620672ae945682b1e1e39"/><file name="banner_120_sp.png" hash="f9c4a653d6814ab3f8c535da706f5f77"/><file name="moneybookers_acc.png" hash="a3e639a68fafdffaca81e91985127735"/><file name="moneybookers_csi.gif" hash="4eec4ed7c494d01d518a3c6c691128e9"/><file name="moneybookers_did.gif" hash="6a3a3365894e9cdb199647a5b74ba35b"/><file name="moneybookers_dnk.gif" hash="7d4b8d27784f8a6fa6ef81c4e911831b"/><file name="moneybookers_ebt.gif" hash="9911d8cc223e7f3d9ec12f50c280ec61"/><file name="moneybookers_ent.gif" hash="704e9551ed4aff82b67114242b9fba1a"/><file name="moneybookers_gcb.gif" hash="e2e7c0f501e5ab0136f859ca5f57abc2"/><file name="moneybookers_gir.gif" hash="f16e949bc60bbd812f803d5e377d47f6"/><file name="moneybookers_idl.gif" hash="fe0ad1efc12d43df6c9ff3ffdd9dd59b"/><file name="moneybookers_lsr.gif" hash="58cdadfa20b6d37aeaa19e50995e4baf"/><file name="moneybookers_mae.gif" hash="4d4b5f0cf3377939c7738fc7e416d25f"/><file name="moneybookers_npy.gif" hash="01242c5ad7bc667e7493b550b6397fab"/><file name="moneybookers_obt_de.png" hash="ce44fd2974b8d279401778292e2c4484"/><file name="moneybookers_obt_dk.png" hash="2985e8cb472d1886d584fa31d56bee92"/><file name="moneybookers_obt_ee.png" hash="cb186be1c7595544f61d3737c7bf85aa"/><file name="moneybookers_obt_en.png" hash="eee098a06e3ea34f33e276724b084774"/><file name="moneybookers_obt_fl.png" hash="6c3766df052d875ce399e62ad8a435f8"/><file name="moneybookers_obt_lt.png" hash="adf61f248fc6d5985840db3e0c23391e"/><file name="moneybookers_obt_lv.png" hash="4e7f16b4988ea30f049942d4dcdb5f78"/><file name="moneybookers_obt_pl.png" hash="fb2c43c18ba73d390e5b5f5261261f4a"/><file name="moneybookers_obt_se.png" hash="9028412e9c3f25d114bf40bb2049d225"/><file name="moneybookers_pli.gif" hash="93989e85caff760af7a61838db0300bf"/><file name="moneybookers_psp.gif" hash="7abffc2246f172625be2ce31f4315cb2"/><file name="moneybookers_pwy.gif" hash="b4a0b9db9a031855e6e3899592012fae"/><file name="moneybookers_sft.gif" hash="e9e774163c99a8ab4deb18d37feaf658"/><file name="moneybookers_so2.gif" hash="9911d8cc223e7f3d9ec12f50c280ec61"/><file name="moneybookers_wlt.gif" hash="4b9cbc5aa5c32f3015ce7bec98da2670"/></dir><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="ph_callout_left_rebel.jpg" hash="0ce8ad0026d8b8a83ed7acdf6209129b"/><file name="ph_callout_left_top.gif" hash="f17a036d75e5065eb76bafbb2c8ad7ff"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="reload.png" hash="84cc4883f78ef850814ea9b53989b2a7"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><dir name="blue"><file name="logo.png" hash="2a65f81f669bcfb2a19c9ed293837734"/><file name="saleoff-bg.png" hash="ac080eac9e6d55ba0602f456dbcc5152"/></dir><file name="body-bg.png" hash="4d926dfdc712c317191947b16d11cb25"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="category-view-active.png" hash="25238e2463571f6eaf6920f4a4660608"/><file name="category-view.png" hash="7b913e9c3ea2fc9c7e90a9e12da63b7f"/><dir name="centinel"><file name="sc_learn_62x34.gif" hash="059ec6c3eecea97b3f70a2e2d6ceb911"/><file name="v_activate_steps.gif" hash="005312b14c6aed41e8a47c4acaac7c1a"/><file name="vbv_ltbg_71x57.gif" hash="2b0bcd07251fcaafd46e7ce77ba821a9"/></dir><file name="check-out.png" hash="230a2a75b8a607d6d290934633cfb413"/><file name="circle-white.png" hash="2133d8d1288eb8cde56b0beab4bc6a38"/><file name="color-stars.png" hash="93c2c59c95b98a48730baf87be1e3c65"/><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><dir name="demo"><file name="advertising.png" hash="211eed5918a05a07a311e308b8917c7e"/><file name="banner.jpg" hash="8120ce49f82f5eb2a046fb9d0ad4b234"/><file name="box-1.png" hash="0a7a1669ed56d2035efaa0971fc4ab0b"/><file name="box-2.png" hash="403732ce7ad47b7d0ade90c70423f24e"/><file name="box-3.png" hash="07936ab53d9bbee71446c4648301d705"/><file name="call.png" hash="cf6440604d438f44a9f665d00e256735"/><file name="cirrus.png" hash="adef5cebf5733c4cf7a742cb26cb3851"/><file name="discover.png" hash="c612087884381d51deb9ccbb2162e114"/><file name="dribbble.png" hash="e682df239cf7fe1a2ce9b189a5dcd4eb"/><file name="ebay.png" hash="31fee73757a869bbdde21a705b94aa5d"/><file name="email.png" hash="c87e0a1ce61413ece6f4abc151ebb4b9"/><file name="facebook.png" hash="e1b1229842f1aec0b5550387494e4248"/><file name="feed.png" hash="221cb0b5502df909568c0dc6ec6ba57a"/><file name="gplus.png" hash="99d267e3ec32d1103405b1324b19ffc6"/><file name="linked-in.png" hash="f2990c9266fd22c83bf23ba5a1090779"/><file name="mastercard.png" hash="69f8434ebccf958292209693992c626a"/><file name="money-back-guarantee.png" hash="9da4f1a22486cbb88f4892471f0e4dcf"/><file name="paypal.png" hash="eda51504f058d580c542c524353bd9e9"/><file name="pinterest.png" hash="0509720fbce05082f6e37fcf0d5c5048"/><file name="saleoff-first-order.png" hash="f4dee0eb036bb74fbb4b319ed83220d5"/><file name="saleoff-line.png" hash="7633f45740dce3eea22b2df8b4cd48ee"/><file name="secure-online-shoping.png" hash="3ded63cd55078aabdcdec36bdf234a94"/><file name="signup.png" hash="0732e3cede81b3f414dfc6749c1bc885"/><file name="solo.png" hash="4c92b3c00bd67f45cc7adfb346fcc739"/><file name="twitter.png" hash="551e0025c6cbfca1228593a6f714c93f"/><file name="visa.png" hash="6af019e429468d1e9da3001a5a630f78"/><file name="worldwide-shipping.png" hash="23776df1c357779465cc7aa6e7f8b2bb"/></dir><dir name="green"><file name="logo.png" hash="9f1d54165aa18e5a0f572525ebcef1fe"/><file name="omgmenu-bg.png" hash="04d9d2cfdfd8e12ba3e159dc2093bf3a"/><file name="saleoff-bg.png" hash="55cf77f940507b4c7c643f842aa07cfe"/></dir><file name="header-bg.png" hash="d74032ed346313bb60e06419c05e48ca"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="icon_external_link.gif" hash="8ecf69be84c175a6949219e77d542bfa"/><file name="index.html" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="logo.png" hash="d62bf4c492c4418ae48b6ee580443665"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><dir name="moneybookers"><file name="banner_120_de.gif" hash="74815117bf378543e5b3496bb5bc4e8a"/><file name="banner_120_de.png" hash="6c3f708fcb6dac92e53472d4c2246c68"/><file name="banner_120_dk.gif" hash="2106bd994d188d40474bf2a2e8d62a8d"/><file name="banner_120_fr.gif" hash="a84241eef7bc38fb38567e7aa8ca245a"/><file name="banner_120_fr.png" hash="8994d1dc3b4f5c9e5efc67ce3f9f55a9"/><file name="banner_120_int.gif" hash="e23ddcf71e15f0a9300062ef9cdea512"/><file name="banner_120_int.png" hash="f9dfbc26041e52b34eea65348707d64f"/><file name="banner_120_pl.gif" hash="44313c7d27cdcf59c2f66708c6c5abd5"/><file name="banner_120_pl.png" hash="67d3385f93bc9113880305ee7c7da9de"/><file name="banner_120_sp.gif" hash="a003ed8db63620672ae945682b1e1e39"/><file name="banner_120_sp.png" hash="f9c4a653d6814ab3f8c535da706f5f77"/><file name="moneybookers_acc.png" hash="a3e639a68fafdffaca81e91985127735"/><file name="moneybookers_csi.gif" hash="4eec4ed7c494d01d518a3c6c691128e9"/><file name="moneybookers_did.gif" hash="6a3a3365894e9cdb199647a5b74ba35b"/><file name="moneybookers_dnk.gif" hash="7d4b8d27784f8a6fa6ef81c4e911831b"/><file name="moneybookers_ebt.gif" hash="9911d8cc223e7f3d9ec12f50c280ec61"/><file name="moneybookers_ent.gif" hash="704e9551ed4aff82b67114242b9fba1a"/><file name="moneybookers_gcb.gif" hash="e2e7c0f501e5ab0136f859ca5f57abc2"/><file name="moneybookers_gir.gif" hash="f16e949bc60bbd812f803d5e377d47f6"/><file name="moneybookers_idl.gif" hash="fe0ad1efc12d43df6c9ff3ffdd9dd59b"/><file name="moneybookers_lsr.gif" hash="58cdadfa20b6d37aeaa19e50995e4baf"/><file name="moneybookers_mae.gif" hash="4d4b5f0cf3377939c7738fc7e416d25f"/><file name="moneybookers_npy.gif" hash="01242c5ad7bc667e7493b550b6397fab"/><file name="moneybookers_obt_de.png" hash="ce44fd2974b8d279401778292e2c4484"/><file name="moneybookers_obt_dk.png" hash="2985e8cb472d1886d584fa31d56bee92"/><file name="moneybookers_obt_ee.png" hash="cb186be1c7595544f61d3737c7bf85aa"/><file name="moneybookers_obt_en.png" hash="eee098a06e3ea34f33e276724b084774"/><file name="moneybookers_obt_fl.png" hash="6c3766df052d875ce399e62ad8a435f8"/><file name="moneybookers_obt_lt.png" hash="adf61f248fc6d5985840db3e0c23391e"/><file name="moneybookers_obt_lv.png" hash="4e7f16b4988ea30f049942d4dcdb5f78"/><file name="moneybookers_obt_pl.png" hash="fb2c43c18ba73d390e5b5f5261261f4a"/><file name="moneybookers_obt_se.png" hash="9028412e9c3f25d114bf40bb2049d225"/><file name="moneybookers_pli.gif" hash="93989e85caff760af7a61838db0300bf"/><file name="moneybookers_psp.gif" hash="7abffc2246f172625be2ce31f4315cb2"/><file name="moneybookers_pwy.gif" hash="b4a0b9db9a031855e6e3899592012fae"/><file name="moneybookers_sft.gif" hash="e9e774163c99a8ab4deb18d37feaf658"/><file name="moneybookers_so2.gif" hash="9911d8cc223e7f3d9ec12f50c280ec61"/><file name="moneybookers_wlt.gif" hash="4b9cbc5aa5c32f3015ce7bec98da2670"/></dir><file name="next-prev.png" hash="a462e72c9445fe8c31bfbfde9943df80"/><file name="omgmenu-bg.png" hash="2a16fe65d56516380978556839699a93"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pagination-arrow.png" hash="427da3d51b55dacb865f18875b4439ed"/><file name="pagination-next.png" hash="621b43e0ddcf765ebe2b9ec48bc12acb"/><file name="pagination-prev.png" hash="765b5681c0d514bbf5a74e4f19df273e"/><file name="plus.png" hash="205107a74694a1224e4c7096150230e3"/><file name="presetstyles-btn.png" hash="cf44291afc5e350cb43e1434d646988e"/><file name="product-images-nav.png" hash="29b2dd56124a772702db10e6d910f435"/><file name="saleoff-bg.png" hash="a62847cbe0483dd992f6d75428e4679f"/><file name="searchButton.png" hash="d67967c710ed41b896cc987423499461"/><file name="slider_bg.gif" hash="3c50cb9af7d4819b8aa64d6258216413"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="submenu-bg.png" hash="7d351dc0365b05af72ebf8f90f72c754"/><file name="topblock-bottom.png" hash="5b475a77ee970afd4294b245f2556c8c"/><file name="vm2-sprite.png" hash="ff662afdb61b6ead41c1589dda8ff1ef"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="carousel-min.js" hash="cfd7a8d08a6dca87e4211a400877716e"/><dir name="ma2slideshow"><file name="protoshow.js" hash="4769c205951e10b7a7c8c9ff8bcfc773"/></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="Ma2"><dir name="All"><dir name="Helper"><file name="Data.php" hash="090f4bd5ef8f576332f30e6bfc007c5d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9e1f55ce0e5915b7b22d87e94d4da9ea"/><file name="config.xml" hash="4d746930c0b268e9f4553498807507fa"/><file name="system.xml" hash="1305d4780b1b3f9fabeeda54d5151896"/></dir></dir><dir name="Slideshow"><dir name="Block"><dir name="Adminhtml"><dir name="Slideshow"><dir name="Edit"><file name="Form.php" hash="cd0b5ca0e39128f8d3371651cc592f14"/><dir name="Tab"><file name="Form.php" hash="667d68776304b50881872180c0b106de"/></dir><file name="Tabs.php" hash="8c3ccbfa637e48d4cc749488052fa1d2"/></dir><file name="Edit.php" hash="729a0c28460d34358772a19fcbf8ea6f"/><file name="Grid.php" hash="b8fd3db185884e20f6113298c03db5ef"/></dir><file name="Slideshow.php" hash="1bf82969a164dff830ca3240641939e4"/></dir><file name="Slideshow.php" hash="5de0ac9cd374c9166462bbac11aee05c"/></dir><dir name="Helper"><file name="Data.php" hash="74509323fc6636121d058cfa73e9a02d"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Slideshow"><file name="Collection.php" hash="3da7232eee86fcb143a3bca4cff64ebf"/></dir><file name="Slideshow.php" hash="9728a2e4cb4fd69c4e0a27ad7b86631c"/></dir><file name="Slideshow.php" hash="3399d4acd255d5a9366747a7767896a3"/><file name="Slideshowselect.php" hash="e074e701b4e9f9aabbb1a35d152023da"/><file name="Status.php" hash="5db9a1b8601d53412d15dfe788c4fa96"/><file name="Transitiontype.php" hash="a4b586b06de2aabd07077eb86b73592d"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SlideshowController.php" hash="769a1e65dc77085c51ecb6206fee7889"/></dir><file name="IndexController.php" hash="fea0ae665351a324a5cfbcdf03d4d49a"/></dir><dir name="etc"><file name="config.xml" hash="66ba302c9a571d8450ecd7c2681cf202"/><file name="system.xml" hash="83ef374b9fc8d91f1f44642d53eff951"/><file name="widget.xml" hash="f03f4abac02333960b9d08feba78b6fe"/></dir><dir name="sql"><dir name="slideshow_setup"><file name="mysql4-install-0.1.0.php" hash="3480784d4e8e79f93e2728b438341601"/></dir></dir></dir><dir name="ThemeOptions"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Font_unused.php" hash="df1d62269f3896fcbfce5e3aa90979e8"/><file name="Fontpreview.php" hash="8bbd6a0695d30c87fdab91d528c9168e"/><file name="Fonts_unused.php" hash="1e6343060ac0f67dab966ad936eaa379"/><file name="Fontscript_unused.php" hash="492b56fd79790b99ef4a56983b12a153"/><file name="Heading.php" hash="2548a96c64d2a1fc2f399191d5e85bbd"/><file name="Images.php" hash="031eac3b127e2a466ca8c95dbf64ecaa"/><file name="Imagessmall.php" hash="6b1bd276341ee7e16f9a37c442812069"/><file name="OColor.php" hash="6151aa6e2f9788ebc324c5426c44ffa1"/><file name="Patern.php" hash="c1c92da2062c095d0b62dd6c32b918de"/></dir></dir></dir></dir></dir><file name="ThemeOptions.php" hash="1ae0732c727aa9d7e8e5b6872273eee7"/></dir><dir name="Controller"><file name="Observer.php" hash="ae713414d39e6ab08800ffe8d3da2060"/></dir><file name="Exception.php" hash="70915855d1b597d960e198c85d4d798d"/><dir name="Helper"><file name="Data.php" hash="aa7cf70a764649d2904cceedb8a269d7"/></dir><dir name="Model"><file name="Backgroundposition.php" hash="e6b8c34b133240ad83c09b6d19c406c3"/><file name="Backgroundrepeat.php" hash="09c675416194a506ccbc950f0f7267a6"/><file name="Fontreplacement.php" hash="c2bef8f9278ec9cfa78bf8e9a7c77fdf"/><file name="Fonts.php" hash="de956f49181a48b9db4c509ee84e95d3"/><file name="Gfont_unused.php" hash="3a91e431bcdf7e43fc11fed70bd163bd"/><file name="Presetstyles.php" hash="c749b067d5e3735356f8837738b61f8f"/><file name="Productpagelayout.php" hash="8895701053caf4b908935e1c7a9569ab"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1d4848c2af44b13a5c857cbe8b38711b"/><file name="config.xml" hash="c3c66bbf0b9cc6b8c89c4c8dca52a484"/><file name="system.xml" hash="377c0fb599d9bbd37383f16ce24a46b4"/></dir></dir><dir name="WidgetProductList"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Widget"><file name="Chooser.php" hash="679a9c746dd2aa4878aa00ef68eacb1c"/></dir></dir></dir><dir name="Edit"><file name="Form.php" hash="0e325d974b26311474b8e968c38ba682"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="EnableDisable.php" hash="37263ee538d5fe3f8597342f8b7141eb"/><file name="InputNumber.php" hash="ada855835a5dda5102add35a50a17248"/><file name="InputText.php" hash="e71045df2d18af58c5c95b8a58dcc919"/><file name="SortBy.php" hash="040b1e48fb473c8d780f1548b702ad3b"/><file name="TypeList.php" hash="a61be6604392f4f8e5611eff515f9ad0"/></dir></dir></dir></dir></dir><file name="BestSelling.php" hash="c351427618357e2b693a3187ea80ebb7"/><file name="Custom.php" hash="00af4e6ebd7f2e9b7105e1e926084bb5"/><file name="Featured.php" hash="23852cc7a9105ffca234f997897f7dd8"/><file name="New.php" hash="b1c94225e8bf589830ec6ea3e6b6ae60"/></dir><dir name="Helper"><file name="Data.php" hash="1b9fc733363c94cc6cc6008ba92ca399"/></dir><dir name="Model"><dir name="Source"><file name="TypeList.php" hash="b847fe801998c163f3c176b3149288e1"/></dir><file name="WidgetProductList.php" hash="d8af76dd9214336fa1c7034698663641"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="WidgetProductListController.php" hash="47073eb8be0258e3c216ab850486251c"/></dir></dir><dir name="etc"><file name="config.xml" hash="9b33ba4143313cb5f5249fbfb233fe60"/><file name="widget.xml" hash="286f88b548266127d1acaf8eb1d1a835"/></dir></dir><dir name="WidgetTabsF"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Tabitem.php" hash="5c9613d98015766ce710c1e56947e7fd"/></dir></dir></dir></dir></dir><file name="Widgettabs.php" hash="89a00b90aa7304c82602f0c0ea9b53ca"/></dir><dir name="Helper"><file name="Data.php" hash="4e0c2d34a2edc3fb063eeae0cb696b33"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="WidgettabsController.php" hash="cc79b497dbce76a5e9f6643366d980a4"/></dir><file name="IndexController.php" hash="629fa1406e62bb1007a26360027166fe"/></dir><dir name="etc"><file name="config.xml" hash="d17341248a2a5cf27a256c733428a6ff"/><file name="widget.xml" hash="4fc77fce163bd4cf3083edefb20878a0"/></dir></dir></dir><dir name="Mage"><dir name="Page"><dir name="Block"><dir name="Html"><file name="Bottomblock1.php" hash="ef645c4333443aa69238a3a0d96d0685"/><file name="Bottomblock2.php" hash="5039a415ea7551d9391e1f3f83c33404"/><file name="Bottomblock3.php" hash="1a8f78c7f471048f3a9f6da0723ad5d7"/><file name="Footerblock1.php" hash="116718ea0b775014f762d0cc25e3c560"/><file name="Footerblock2.php" hash="470acec31300f9604bb66529d4d62f95"/><file name="Maintopblock1.php" hash="94e4e2283fcfdd58d44ce9f490366cfe"/><file name="Maintopblock2.php" hash="06720fae3f654970f19e4daa4ad7a583"/><file name="Maintopblock3.php" hash="c6c4f0eb88201535556d094988867cd9"/><file name="Topblock1.php" hash="e8531e2c16f249ff53e7d2acea6222a4"/><file name="Topblock2.php" hash="329124886a421be422b8381adab9d9b3"/></dir></dir></dir></dir></target></contents>
23
  <compatible/>
24
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
25
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ma2_Juno_Theme</name>
4
+ <version>1.0.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>MA2 Juno for Magento is a nice theme for any kind of eCommerce store with modern and clean design.</summary>
10
  <description>MA2 Juno for Magento is a nice theme for any kind of eCommerce store with modern and clean design. This theme introduces many innovative features and offers tons of customizable options, giving you total control over your store's look and feel.</description>
11
+ <notes>Version number: 1.0.2&#xD;
12
  Stability: Stable &#xD;
13
+ Compatibility: 1.7, 1.8, 1.8.1&#xD;
14
  &#xD;
 
15
  + Update module Ma2 Featured Products&#xD;
 
16
  </notes>
17
  <authors><author><name>Magenmarket.com</name><user>Magen_Market</user><email>trungdt@omegatheme.com</email></author></authors>
18
+ <date>2013-12-30</date>
19
+ <time>08:10:03</time>
20
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="ma2_all.xml" hash="59880296e6923687e89609aed7b59c31"/><file name="ma2featuredproducts.xml" hash="267b42a6dd54ac108f9845f73f76dc9b"/><file name="ma2slideshow.xml" hash="4639f81b3c9940886de9728d1ca7fd0e"/><file name="ma2themeoptions.xml" hash="62c9f23947062d67650db077e8d7d61d"/><file name="ma2_widgettabsf.xml" hash="d4b57cac2dd7884e98e852e6b468e13f"/></dir></dir></dir></dir><dir name="frontend"><dir name="ma2"><dir name="juno"><dir name="etc"><file name="widget.xml" hash="8bb4cd4228dbb0678cff05ded6e906f8"/></dir><dir name="layout"><file name="local.xml" hash="5fe73b318ef4ee1ac713b4a773b7dde4"/><file name="ma2_all.xml" hash="60da2a96f1c431e35c409190c269af68"/><file name="ma2_widgettabsf.xml" hash="c6cb955cd0d1443d0fea638ac9da0d8b"/><file name="ma2slideshow.xml" hash="0420495aed74f371b83b2e38fd29ab85"/><file name="ma2widgettabs.xml" hash="3c7d0b5cf80330de94e2ee3815b02491"/></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="page.phtml" hash="be09d324903e74d8ab256d823b9136f4"/><file name="view.phtml" hash="030152e419ec78f7dddc7423ae3bcbe2"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="154d923655194660f3c6b040b7b8fcea"/><file name="link_inline.phtml" hash="1e0d919d42534acdaa61121829273f3c"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="18df31d346756388c2f1009c4fd39ca4"/><file name="state.phtml" hash="0291dab90fce001ca017e32e74f00411"/><file name="view.phtml" hash="cec3350b62a989406bd158e5b372805a"/></dir><dir name="msrp"><file name="popup.phtml" hash="70d9a11d560b13c1a1430a163a671e80"/></dir><dir name="navigation"><file name="left.phtml" hash="e287afeb46a84aa5c8c1e685f51bffaa"/><file name="right.phtml" hash="9012ab759e14b21fab69832776e0f133"/><file name="top.phtml" hash="8ddede3b4fd84a27d2ec3ca7dbdede25"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="4aac8eb1b1cd3caf55ff8bc3ca27084e"/><file name="sidebar.phtml" hash="46c987a848fa3bf0765bdfd11dc8c7df"/></dir><file name="gallery.phtml" hash="721ccac6c1617cb895a67e6c336738d7"/><dir name="list"><file name="related.phtml" hash="3cd9c6dd2850438b7c9451ba7ef585f8"/><file name="toolbar.phtml" hash="9280adbd941d2dcdd51f47098f06dd64"/><file name="upsell.phtml" hash="d2a4059f4947351afa6034a0078a1cff"/></dir><file name="list.phtml" hash="9dbe54f5b66ce2bfd6058b5f3af66e78"/><file name="new.phtml" hash="fe5256e59d993b3c6dc600db2ea6fe2a"/><file name="price.phtml" hash="afb997df5ae2b7253a96c22d269eeef3"/><file name="price_msrp.phtml" hash="e1ef8f9193047af8e2749b4e795ced5a"/><file name="price_msrp_item.phtml" hash="1a05db808b9e33b50ccac7fa88d14bc8"/><file name="price_msrp_noform.phtml" hash="e2728b9dfa6f0df5adf08ee3aa9531bb"/><file name="price_msrp_rss.phtml" hash="8a904953f8b74b4faf58902f9a46d43d"/><dir name="view"><file name="additional.phtml" hash="7bab9dbcc43d46b0aa057dd92547e49e"/><file name="addto.phtml" hash="b20f2d46fb5c64d47eca5a08c04f92bc"/><file name="addtocart.phtml" hash="c817ac504816c3c98cb88ece2d730cd9"/><file name="attributes.phtml" hash="a234143e664549fbca1d49c1e950efc5"/><file name="description.phtml" hash="a9ee13db96558372435034562dbdaa7a"/><file name="media.phtml" hash="ea3b00cffa64265030f7e9aec8caea3f"/><dir name="options"><file name="js.phtml" hash="9d5c5c4786c5b9fb7125f6f3cc8c7309"/><dir name="type"><file name="date.phtml" hash="5bdfd7dc4817a500095e076a21a2c467"/><file name="default.phtml" hash="f1acbd98563c6640c4a0b6cf5abc994f"/><file name="file.phtml" hash="b72f9363f049dd486ff0a3c8b667cbc9"/><file name="select.phtml" hash="5dbbe91d0581ccb291737992c5188121"/><file name="text.phtml" hash="1aaef71a9e81521aab601aa281fa0b8e"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="6a612992021e3e65ca7b5f6e897821d5"/></dir><file name="wrapper.phtml" hash="472e04ad6c1a35dfeaa54b3012884ed6"/></dir><file name="options.phtml" hash="c1227dcadb83af6708d78a032ffd8d6c"/><file name="price.phtml" hash="f2ae6daff42b8ee7074d27c8bf5f1e6c"/><file name="price_clone.phtml" hash="732daf46245f4ee7068d5ae26defc750"/><file name="tierprices.phtml" hash="0b7f122253b505c45772eff069203a5d"/><dir name="type"><file name="configurable.phtml" hash="1a0a77285960b4227f000855e8194ed7"/><file name="default.phtml" hash="dd5d4b8859956d79ec7d42522b4f42a8"/><file name="grouped.phtml" hash="f5d7db323383b19a80ab3c55a1736dd5"/><dir name="options"><file name="configurable.phtml" hash="c37919561a3cde0d9b92fd34d44c69c1"/></dir><file name="simple.phtml" hash="1a0a77285960b4227f000855e8194ed7"/><file name="virtual.phtml" hash="1a0a77285960b4227f000855e8194ed7"/></dir></dir><file name="view.phtml" hash="fa3aab9a284b9fe8e3154396acb3df13"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="d48d079cdbc11c340e527b27a5956434"/><file name="link_inline.phtml" hash="80a9c2cad3491605eebbe84f73ed6a81"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="e3bfe025786c3ad06ea7ab282c54004a"/><file name="new_images_list.phtml" hash="30299cf21fd0f2d203640875a68d3ea6"/><file name="new_names_list.phtml" hash="ea1d4cb042f6319b798d587bae7eff07"/></dir><dir name="content"><file name="new_grid.phtml" hash="b734ae1ca010b96179274741c653dd2d"/><file name="new_list.phtml" hash="427b323b0cbfc26aa4092343df5fa125"/></dir></dir></dir></dir><dir name="rss"><dir name="product"><file name="price.phtml" hash="b1b71983d3d8616116922d3b91dbcaba"/></dir></dir><dir name="seo"><dir name="sitemap"><file name="container.phtml" hash="ed20c43980bb321548837b821e400dd8"/></dir><file name="sitemap.phtml" hash="3572cdf4d9d3389d4fde1232bb027a0f"/><file name="tree.phtml" hash="de625774b149902edf5d451101491b52"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="d5a3b4cf51f3ffcc256eb451c32725ef"/><file name="result.phtml" hash="b1e4ce41e5e31f0e9295030aab77f2f1"/></dir><file name="form.mini.phtml" hash="669835d242aa7c57af71fa58d1b480d3"/><file name="result.phtml" hash="c2bdfc4b0599094a83456dd6f17d4c77"/><file name="term.phtml" hash="d5d0883f5f685228ad5e87ce294b5821"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="8a3f239d1f8afa5dfa3d45a1ca28baae"/><file name="crosssell.phtml" hash="186f8405ec7a86f7e48bfcb01adf7b2e"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="0fc6cc809c88704da74a915cf7e20918"/></dir><file name="default.phtml" hash="ef843033ce7057091a5eca85723f40be"/></dir><file name="noItems.phtml" hash="001f7d25b1c9468f532a13940fc8c7bb"/><dir name="render"><file name="default.phtml" hash="f5b6d21f8a80455daab898ea0f3f7c97"/><file name="simple.phtml" hash="15fb630f32aadbd48a892e8d90af3073"/></dir><file name="shipping.phtml" hash="6b774a841fc54c29a1f5d3a2af6a0944"/><dir name="sidebar"><file name="default.phtml" hash="b508e1e2007554fdd72570e9b1efbc92"/></dir><file name="sidebar.phtml" hash="1f76718ac277acb3d9e65f81620d6ee6"/><file name="totals.phtml" hash="5b69442fec9380e0e6d2afc6f95fd04a"/></dir><file name="cart.phtml" hash="34d41f366e05314baf7cbee9a37ad6bd"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="5298b1c3f448f03685fb8bd0df88d97b"/></dir><file name="addresses.phtml" hash="234be7957d9cdf739c06c714ba04c372"/><file name="agreements.phtml" hash="ff0beb153b284b2e3c58b4370a4b8401"/><dir name="billing"><file name="items.phtml" hash="cabfbfb5d33255a4750ccc3d55c358d6"/></dir><file name="billing.phtml" hash="281597e3e36ba83a13cdb4fb6bdbc3f8"/><dir name="item"><file name="default.phtml" hash="0ff34fc5d79d1bbe12fcf297b8280f08"/></dir><file name="link.phtml" hash="70249f4132c971ec5888690ffd092403"/><dir name="overview"><file name="item.phtml" hash="e83def5645dc64adef382b849c8fbdbb"/></dir><file name="overview.phtml" hash="bcdab97360c0938600c5a08249d81d17"/><file name="shipping.phtml" hash="568b9a00ba97c7db001cd894bae675a1"/><file name="state.phtml" hash="070912c23e8ff11f007e22306217f6d5"/><file name="success.phtml" hash="ae7f8dda179230945ace59db76f8b017"/></dir><dir name="onepage"><file name="agreements.phtml" hash="a8f762dd61914b2d9eab9fe9ada1945a"/><file name="billing.phtml" hash="3627f62972b124c21cbb08fd67458552"/><file name="failure.phtml" hash="0b95128399f2521bf12837aceaa31836"/><file name="link.phtml" hash="323dcf7f1acb91a186595b618592be86"/><file name="login.phtml" hash="ea2fbe290afcefdc0077ac42835899e7"/><dir name="payment"><file name="info.phtml" hash="e3d23f5d3e0b135ca38ec7ab5b41f851"/><file name="methods.phtml" hash="b88d2e4a2f375b5fb4a3983539b2e81e"/></dir><file name="payment.phtml" hash="0f2094bb3da954aa9405c1af7b66ae2a"/><dir name="progress"><file name="billing.phtml" hash="e0c20674a6831364b055424dac493acb"/><file name="payment.phtml" hash="2c5af1d7ea230faa3963781f85e9f610"/><file name="shipping.phtml" hash="b26f2b46e5c12cda8de4ecb37f98c355"/><file name="shipping_method.phtml" hash="1fbb3446280be2b2ce831e6b0b26fd80"/></dir><file name="progress.phtml" hash="3eab47ed120f6efd05f85294da825544"/><dir name="review"><file name="button.phtml" hash="d7a54917e7d0ceec6875760a3910452f"/><file name="info.phtml" hash="60c527a672dc8ed0afbe180c1105f65b"/><file name="item.phtml" hash="4ff6deeabbe76339f9914075e49cf798"/><file name="totals.phtml" hash="0acb66397e2d390de49dbdfca15d9804"/></dir><file name="review.phtml" hash="5ffdd3cc23815519462e3dcb1fc6b81a"/><file name="shipping.phtml" hash="0dd2ceb18da2763395701c6379cb9a77"/><dir name="shipping_method"><file name="additional.phtml" hash="7f8751c51089c14316694e2aa6c5357d"/><file name="available.phtml" hash="779142c301923119db60c08ad90d4e06"/></dir><file name="shipping_method.phtml" hash="ca5074b35e9a6167298a4a4433ecf98b"/></dir><file name="onepage.phtml" hash="b9c5a5a822652a0890be7e3e4f05d6b1"/><file name="success.phtml" hash="2e15bd609848f9da5edcece36b75ee45"/><dir name="total"><file name="default.phtml" hash="0ee253b9c15115a9db2cf53a67eeadf2"/><file name="nominal.phtml" hash="d377962c59bffbf7d21ced50f23c6d16"/><file name="tax.phtml" hash="df7b9274149d74ff7d6cc7fa356be35c"/></dir></dir><dir name="cms"><file name="content.phtml" hash="21fba66ee197b4e83c9f8292b98970e4"/><file name="content_heading.phtml" hash="9f7652c66d978f6c2946ba7bf419374e"/><dir name="default"><file name="home.phtml" hash="18d93ac152e47351b0039d8b3a67d59d"/><file name="no-route.phtml" hash="52106ead9e9ce41f82122f875caecfd7"/></dir><file name="meta.phtml" hash="2204e889eef9af73ca7ee62ac816b4e3"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="a68c6f5a81619916efb013711d4bcf2a"/><file name="link_inline.phtml" hash="d02b918997135ce60ee4a958d0721299"/></dir><dir name="static_block"><file name="default.phtml" hash="967e54d555e0f9bebc09a5e5b704e45b"/></dir></dir></dir><dir name="ma2_widgettabsf"><file name="default.phtml" hash="56db896833690f7f99331912f9c5bc0f"/></dir><dir name="ma2slideshow"><file name="slideshow.phtml" hash="5fb7920a13f63de30ff0ba382a9dc231"/></dir><dir name="ma2widgetproductlist"><dir name="bestselling"><file name="default.phtml" hash="b81fa264b9dfd8cb0660cf1623a06746"/><file name="template1.phtml" hash="7b71b5add0c36721b22362378ca4c95f"/><file name="template2.phtml" hash="873a93f1e856c4c9f6637b395948dc99"/></dir><dir name="custom"><file name="default.phtml" hash="234036bc31f7853d88a998820740d7ed"/><file name="template1.phtml" hash="234036bc31f7853d88a998820740d7ed"/><file name="template2.phtml" hash="234036bc31f7853d88a998820740d7ed"/></dir><dir name="featured"><file name="default.phtml" hash="ccc429cd4e9dcbb6d95782bc69c08237"/><file name="template1.phtml" hash="ccc429cd4e9dcbb6d95782bc69c08237"/><file name="template2.phtml" hash="009867217a6191b4e1911445a43614be"/></dir><dir name="new"><file name="default.phtml" hash="c1fe309c855bcbb24a16149036eea203"/><file name="template1.phtml" hash="c1fe309c855bcbb24a16149036eea203"/><file name="template2.phtml" hash="f5da32429b7e31427d75ccf59a85bdfa"/></dir></dir><dir name="page"><file name="1column.phtml" hash="d643cb73143d7d8e42be0a7d3467bef1"/><file name="2columns-left.phtml" hash="705dd615c4c4a44177d499765acccc90"/><file name="2columns-right.phtml" hash="154926cb4d881de88961028ab07088d2"/><file name="3columns.phtml" hash="db8784d37496a254b94f00778346db00"/><file name="empty.phtml" hash="7fde585927f37e76338ae967da54df70"/><dir name="html"><file name="bottomBlock1.phtml" hash="c8646a49bdc63dc716071da2799f1096"/><file name="bottomBlock2.phtml" hash="78156bbce495e7a95ae7a908c9b22086"/><file name="bottomBlock3.phtml" hash="ca310b11b285b0b66d7cd6edf20f5d30"/><file name="breadcrumbs.phtml" hash="0407c497e9027ed264365fcb45bc6db4"/><file name="footer.phtml" hash="1bd7d90ea786e095e7b05f626bc7ddaa"/><file name="footerBlock1.phtml" hash="72975dcccf4529d987ab401076f54875"/><file name="footerBlock2.phtml" hash="1c91e3b4e83ad8ed4e2d3cfa460e20ed"/><file name="head.phtml" hash="a50de7c3843a692c8035d9fc9966e6f8"/><file name="header.phtml" hash="906541959d5e74cb99a9a2ae0654189b"/><file name="maintopBlock1.phtml" hash="bf88d0d360b051a6d354ef782b0860bf"/><file name="maintopBlock2.phtml" hash="eed7a2860c52e3f6f57a3b7ec6862aa3"/><file name="maintopBlock3.phtml" hash="9020e83d73a0c2733822eb250cc685cb"/><file name="notices.phtml" hash="727736b58612fac30cef87552368f057"/><file name="pager.phtml" hash="929cf15ac7b16657673ad0b9c01fac7f"/><file name="presetstyles.phtml" hash="e9f344f2de50395e7ce7186fd8fb4ee0"/><file name="top.links.phtml" hash="156bf2c82e02940a392398b81df00d73"/><file name="topBlock1.phtml" hash="e6ed478d05dc839872b6f6c71799a36f"/><file name="topBlock2.phtml" hash="e6ed478d05dc839872b6f6c71799a36f"/><file name="topMenu.phtml" hash="a08bef71794fd1a797655d2bc9c9ff47"/><file name="wrapper.phtml" hash="c7f2c8566d851246535a80f108c865e6"/></dir><dir name="js"><file name="calendar.phtml" hash="96f726bb09b2c29177cb1c0d10997b1e"/><file name="cookie.phtml" hash="b6584923913a80e459124f73d0383779"/></dir><file name="popup.phtml" hash="fae1be35fbf71175f5394864792d2f12"/><file name="print.phtml" hash="208ada6325841aec23c08c29a1c60ea6"/><file name="redirect.phtml" hash="26f1c196a8cdf5d939434acf3886bc9b"/><dir name="switch"><file name="flags.phtml" hash="9c65d3837dfd3c7bb7ea81cad1177a20"/><file name="languages.phtml" hash="d67cb29ce01372828cbaa17d7415d3ad"/><file name="stores.phtml" hash="17cc715b034711f18982fd15c7a49285"/></dir><dir name="template"><file name="container.phtml" hash="5ddcc4abda0f7d063e6b60bdb9a46008"/><file name="links.phtml" hash="8ac82b00dd7537826a45285556981dd1"/><file name="linksblock.phtml" hash="ca9e3d358dce2158f8bcf3fc53e87bcd"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ma2_FeaturedProducts.xml" hash="16d387ab5054356fbd463c53f66ac517"/><file name="Ma2_Slideshow.xml" hash="ccfeb2fdba8e30dd731e28abdc0896b9"/><file name="Ma2_ThemeOptions.xml" hash="4af215fb95222a691c8dd6c8cab22da6"/><file name="Ma2_WidgetProductList.xml" hash="1c3b966da91cee3f278483bae9ee8984"/><file name="Ma2_WidgetTabsF.xml" hash="ea8a53c734cb9be2e984a4832e267eb5"/><file name="Ma2_All.xml" hash="1f6125faeadf108fc81b1a03b4574d59"/></dir></target><target name="mage"><dir name="js"><dir name="ma2_all"><file name="ma2all.css" hash="9c4db2cea69d0b7e2a03c149dc21749e"/><file name="ma2all.js" hash="a0e4d21d363f5b9cdfc4c6c0731f6b69"/></dir></dir><dir name="media"><dir name="ma2"><dir name="images"><dir name="default"><file name="logo.png" hash="d62bf4c492c4418ae48b6ee580443665"/><file name="logo_1.png" hash="d62bf4c492c4418ae48b6ee580443665"/><file name="logo_2.png" hash="d62bf4c492c4418ae48b6ee580443665"/><file name="ma2_juno_thumb.jpg" hash="4a87b6582c2bacc436c05e7dc4d7680f"/></dir></dir></dir><dir name="ma2slideshow"><file name="1.jpg" hash="8120ce49f82f5eb2a046fb9d0ad4b234"/><file name="120130814070516.jpg" hash="8120ce49f82f5eb2a046fb9d0ad4b234"/><file name="2.jpg" hash="a06ba4cca122684cad7f4b9f56e2c6ea"/><file name="220130814070604.jpg" hash="a06ba4cca122684cad7f4b9f56e2c6ea"/><file name="3.jpg" hash="346c32f673c3031f650e4fd7be6d544a"/><file name="320130814070655.jpg" hash="346c32f673c3031f650e4fd7be6d544a"/><file name="4.jpg" hash="c05e4c73702b2876fa3acf57b5281775"/><file name="420130814070740.jpg" hash="c05e4c73702b2876fa3acf57b5281775"/><dir name="thumbnail"><file name="120130814070516.jpg" hash="9a8868e43e8aaee9ce8524359ea24d84"/><file name="220130814070604.jpg" hash="97f02ed1c5dbf3c6df119fa8947a3c63"/><file name="320130814070655.jpg" hash="d695d14cb7b1b3d99fd9e1eee77a5501"/><file name="420130814070740.jpg" hash="a8853e1975f121db329eaddd0709280d"/></dir></dir><dir name="wysiwyg"><dir name="demo"><file name="advertising.png" hash="211eed5918a05a07a311e308b8917c7e"/><file name="banner.jpg" hash="8120ce49f82f5eb2a046fb9d0ad4b234"/><file name="box-1.png" hash="0a7a1669ed56d2035efaa0971fc4ab0b"/><file name="box-2.png" hash="403732ce7ad47b7d0ade90c70423f24e"/><file name="box-3.png" hash="07936ab53d9bbee71446c4648301d705"/><file name="call.png" hash="cf6440604d438f44a9f665d00e256735"/><file name="cirrus.png" hash="adef5cebf5733c4cf7a742cb26cb3851"/><file name="discover.png" hash="c612087884381d51deb9ccbb2162e114"/><file name="dribbble.png" hash="e682df239cf7fe1a2ce9b189a5dcd4eb"/><file name="ebay.png" hash="31fee73757a869bbdde21a705b94aa5d"/><file name="email.png" hash="c87e0a1ce61413ece6f4abc151ebb4b9"/><file name="facebook.png" hash="e1b1229842f1aec0b5550387494e4248"/><file name="feed.png" hash="221cb0b5502df909568c0dc6ec6ba57a"/><file name="gplus.png" hash="99d267e3ec32d1103405b1324b19ffc6"/><file name="linked-in.png" hash="f2990c9266fd22c83bf23ba5a1090779"/><file name="mastercard.png" hash="69f8434ebccf958292209693992c626a"/><file name="money-back-guarantee.png" hash="9da4f1a22486cbb88f4892471f0e4dcf"/><file name="paypal.png" hash="eda51504f058d580c542c524353bd9e9"/><file name="pinterest.png" hash="0509720fbce05082f6e37fcf0d5c5048"/><file name="saleoff-first-order.png" hash="f4dee0eb036bb74fbb4b319ed83220d5"/><file name="saleoff-line.png" hash="7633f45740dce3eea22b2df8b4cd48ee"/><file name="secure-online-shoping.png" hash="3ded63cd55078aabdcdec36bdf234a94"/><file name="signup.png" hash="0732e3cede81b3f414dfc6749c1bc885"/><file name="solo.png" hash="4c92b3c00bd67f45cc7adfb346fcc739"/><file name="twitter.png" hash="551e0025c6cbfca1228593a6f714c93f"/><file name="visa.png" hash="6af019e429468d1e9da3001a5a630f78"/><file name="worldwide-shipping.png" hash="23776df1c357779465cc7aa6e7f8b2bb"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><dir name="ma2_widgettabsf"><dir name="images"><file name="add_btn_icon.gif" hash="7300097305b577ee564dc49102822d16"/><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="btn_over_bg.gif" hash="f91641168454c03d1fa72731ec97a2b3"/><file name="cancel_btn_icon.gif" hash="97e0cd94ed31d6f2a1181f627e60e9a3"/><file name="save_btn_icon.gif" hash="f5da95ac65efff5f5cf9c8830202764d"/></dir><file name="ma2_widgettabsf_adm.css" hash="e8f9443a3fc6b895acc60853d18ee8f3"/></dir></dir></dir><dir name="ma2"><dir name="js"><dir name="colorchooser"><file name="arrow.gif" hash="5034704a76cd55c1cbcbc58ea6bf523f"/><file name="cross.gif" hash="ba9a274b9323753cd95bc3b1eb2f4e5f"/><file name="hs.png" hash="fefa1a03d92ebad25c88dca94a0b63db"/><file name="hv.png" hash="990d71cada17da100653636cf8490884"/><file name="index.html" hash="1c7b413c3fa39d0fed40556d2658ac73"/><file name="jscolor.js" hash="619885c5c4e1051c891456349033838e"/></dir><dir name="webfonts"><file name="gwebfonts.json" hash="ad404c3742482d806be07d839a62528c"/><file name="gwebfonts.seri" hash="6b9de260ce8bfb8e91f2add5c7b07950"/><file name="index.html" hash="8a3edb0428f11a404535d9134c90063f"/><file name="webfont.js" hash="9e088b08f277b45164e0e10b79d6a99c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="ma2"><dir name="juno"><dir name="css"><file name="blue.css" hash="96bc4d2b586bc1e7e5a112eeced55921"/><file name="custom.css" hash="944640ef2351972ace8b227521cd2960"/><file name="green.css" hash="0823c9fb4fd808e7b810a36d08000c78"/><dir name="ma2_widgettabsf"><file name="ma2_widgettabsf.css" hash="6125118f257616cba946b6543652d8c5"/></dir><dir name="ma2slideshow"><dir name="images"><file name="desc-bg.png" hash="a8d7cb13b2dc537225c780ad5837c3d0"/><file name="next-prev.png" hash="a462e72c9445fe8c31bfbfde9943df80"/><file name="pix.gif" hash="7ad866406509775de63f33224decc101"/><file name="proto_controls_bg.png" hash="617e2194cfc44442c2fefabc6efe5399"/><file name="proto_controls_pause_play_bg.png" hash="d7b80e3375a34dd657e4b1eddf38b2e0"/></dir><file name="protoshow.css" hash="be581f5f55ea9037fbcd1457ed49ffa3"/><file name="styles.css" hash="2b5d37b239c82cec3fa11dcd8e2e78bb"/></dir><file name="navmain.css" hash="269fedd9f783e5e46894a4b288422f40"/><file name="oauth-simple.css" hash="bf193322afc4112a25ae99d1137053e1"/><file name="print.css" hash="aafa75a7a320ecf563e63b9098beba05"/><file name="producttabs.css" hash="bf58d842ca7606511fa02197d1a70e55"/><file name="red.css" hash="f7733fa63b1b089feba8a0236c22e686"/><file name="styles-ie.css" hash="4db74d06c973b8b89bec9177cd4d0344"/><file name="styles.css" hash="dfe8b4fe596b87598c9769d1985315ba"/><file name="template.css" hash="92ea1b8fbd5f8d831d1aaa0683db921e"/><file name="widgets.css" hash="99dea1d4a24097939011ea5c8d2be4cb"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="fronts"><file name="MonoSocialIconsFont-1.10.eot" hash="05d72bd616722f39afef30004839ce08"/><file name="MonoSocialIconsFont-1.10.otf" hash="bb587e5c486d57dfc51d5579c9ea4b49"/><file name="MonoSocialIconsFont-1.10.svg" hash="f9e431dc8d2ae45148edfc6f2ac6f961"/><file name="MonoSocialIconsFont-1.10.ttf" hash="d3b5827e4faf0b034d4b2bcaa6d43724"/><file name="MonoSocialIconsFont-1.10.woff" hash="6ef18e62928bfbe78057f6604702062a"/><file name="Oswald.eot" hash="275502844655171a889d7ce467d645e3"/><file name="Oswald.otf" hash="f99c8059f12421af51b0a9e674351739"/><file name="Oswald.ttf" hash="d40bbce8f4b00a569beac2454b69231e"/></dir><dir name="images"><file name="arrow-double.png" hash="86847813c3fbf21bd384e709018e96e8"/><file name="arrow-fragile-small.png" hash="f2faab1bec50f4984a96569047a3160c"/><file name="arrow-fragile-white.png" hash="b33dbf0b7a1bf7525738e9b3d374056b"/><file name="arrow-fragile.png" hash="7f7f13a405b864114f3df63aca6ce8cb"/><dir name="backup"><file name="best_selling_tr_even_bg.gif" hash="5022d648379090e306f00cd64738b146"/><file name="best_selling_tr_odd_bg.gif" hash="926622704f53796801bb5d097e116c8e"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="2ca36eb80ea705e063409153f3821f78"/><file name="bkg_grand-total.gif" hash="10f1c3d82d78170706fa3e9c4baa7e04"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="bkg_nav0.jpg" hash="f9ac3f31e293cf075471d2d3fe07353a"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="7078a7f2827156d5ae0a1cb59da3c418"/><file name="bkg_product_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="b0d17555dfc6060941e0c067718189df"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><dir name="centinel"><file name="sc_learn_62x34.gif" hash="059ec6c3eecea97b3f70a2e2d6ceb911"/><file name="v_activate_steps.gif" hash="005312b14c6aed41e8a47c4acaac7c1a"/><file name="vbv_ltbg_71x57.gif" hash="2b0bcd07251fcaafd46e7ce77ba821a9"/></dir><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="home_left_callout.jpg" hash="ee99a5586cf52e85c986d1275958a7da"/><file name="home_main_callout.jpg" hash="e6d1c119d5b24a5916fe394cb4b5cdc3"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="logo_email.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="logo_print.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><dir name="moneybookers"><file name="banner_120_de.gif" hash="74815117bf378543e5b3496bb5bc4e8a"/><file name="banner_120_de.png" hash="6c3f708fcb6dac92e53472d4c2246c68"/><file name="banner_120_dk.gif" hash="2106bd994d188d40474bf2a2e8d62a8d"/><file name="banner_120_fr.gif" hash="a84241eef7bc38fb38567e7aa8ca245a"/><file name="banner_120_fr.png" hash="8994d1dc3b4f5c9e5efc67ce3f9f55a9"/><file name="banner_120_int.gif" hash="e23ddcf71e15f0a9300062ef9cdea512"/><file name="banner_120_int.png" hash="f9dfbc26041e52b34eea65348707d64f"/><file name="banner_120_pl.gif" hash="44313c7d27cdcf59c2f66708c6c5abd5"/><file name="banner_120_pl.png" hash="67d3385f93bc9113880305ee7c7da9de"/><file name="banner_120_sp.gif" hash="a003ed8db63620672ae945682b1e1e39"/><file name="banner_120_sp.png" hash="f9c4a653d6814ab3f8c535da706f5f77"/><file name="moneybookers_acc.png" hash="a3e639a68fafdffaca81e91985127735"/><file name="moneybookers_csi.gif" hash="4eec4ed7c494d01d518a3c6c691128e9"/><file name="moneybookers_did.gif" hash="6a3a3365894e9cdb199647a5b74ba35b"/><file name="moneybookers_dnk.gif" hash="7d4b8d27784f8a6fa6ef81c4e911831b"/><file name="moneybookers_ebt.gif" hash="9911d8cc223e7f3d9ec12f50c280ec61"/><file name="moneybookers_ent.gif" hash="704e9551ed4aff82b67114242b9fba1a"/><file name="moneybookers_gcb.gif" hash="e2e7c0f501e5ab0136f859ca5f57abc2"/><file name="moneybookers_gir.gif" hash="f16e949bc60bbd812f803d5e377d47f6"/><file name="moneybookers_idl.gif" hash="fe0ad1efc12d43df6c9ff3ffdd9dd59b"/><file name="moneybookers_lsr.gif" hash="58cdadfa20b6d37aeaa19e50995e4baf"/><file name="moneybookers_mae.gif" hash="4d4b5f0cf3377939c7738fc7e416d25f"/><file name="moneybookers_npy.gif" hash="01242c5ad7bc667e7493b550b6397fab"/><file name="moneybookers_obt_de.png" hash="ce44fd2974b8d279401778292e2c4484"/><file name="moneybookers_obt_dk.png" hash="2985e8cb472d1886d584fa31d56bee92"/><file name="moneybookers_obt_ee.png" hash="cb186be1c7595544f61d3737c7bf85aa"/><file name="moneybookers_obt_en.png" hash="eee098a06e3ea34f33e276724b084774"/><file name="moneybookers_obt_fl.png" hash="6c3766df052d875ce399e62ad8a435f8"/><file name="moneybookers_obt_lt.png" hash="adf61f248fc6d5985840db3e0c23391e"/><file name="moneybookers_obt_lv.png" hash="4e7f16b4988ea30f049942d4dcdb5f78"/><file name="moneybookers_obt_pl.png" hash="fb2c43c18ba73d390e5b5f5261261f4a"/><file name="moneybookers_obt_se.png" hash="9028412e9c3f25d114bf40bb2049d225"/><file name="moneybookers_pli.gif" hash="93989e85caff760af7a61838db0300bf"/><file name="moneybookers_psp.gif" hash="7abffc2246f172625be2ce31f4315cb2"/><file name="moneybookers_pwy.gif" hash="b4a0b9db9a031855e6e3899592012fae"/><file name="moneybookers_sft.gif" hash="e9e774163c99a8ab4deb18d37feaf658"/><file name="moneybookers_so2.gif" hash="9911d8cc223e7f3d9ec12f50c280ec61"/><file name="moneybookers_wlt.gif" hash="4b9cbc5aa5c32f3015ce7bec98da2670"/></dir><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="ph_callout_left_rebel.jpg" hash="0ce8ad0026d8b8a83ed7acdf6209129b"/><file name="ph_callout_left_top.gif" hash="f17a036d75e5065eb76bafbb2c8ad7ff"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="reload.png" hash="84cc4883f78ef850814ea9b53989b2a7"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><dir name="blue"><file name="logo.png" hash="2a65f81f669bcfb2a19c9ed293837734"/><file name="saleoff-bg.png" hash="ac080eac9e6d55ba0602f456dbcc5152"/></dir><file name="body-bg.png" hash="4d926dfdc712c317191947b16d11cb25"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="category-view-active.png" hash="25238e2463571f6eaf6920f4a4660608"/><file name="category-view.png" hash="7b913e9c3ea2fc9c7e90a9e12da63b7f"/><dir name="centinel"><file name="sc_learn_62x34.gif" hash="059ec6c3eecea97b3f70a2e2d6ceb911"/><file name="v_activate_steps.gif" hash="005312b14c6aed41e8a47c4acaac7c1a"/><file name="vbv_ltbg_71x57.gif" hash="2b0bcd07251fcaafd46e7ce77ba821a9"/></dir><file name="check-out.png" hash="230a2a75b8a607d6d290934633cfb413"/><file name="circle-white.png" hash="2133d8d1288eb8cde56b0beab4bc6a38"/><file name="color-stars.png" hash="93c2c59c95b98a48730baf87be1e3c65"/><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><dir name="demo"><file name="advertising.png" hash="211eed5918a05a07a311e308b8917c7e"/><file name="banner.jpg" hash="8120ce49f82f5eb2a046fb9d0ad4b234"/><file name="box-1.png" hash="0a7a1669ed56d2035efaa0971fc4ab0b"/><file name="box-2.png" hash="403732ce7ad47b7d0ade90c70423f24e"/><file name="box-3.png" hash="07936ab53d9bbee71446c4648301d705"/><file name="call.png" hash="cf6440604d438f44a9f665d00e256735"/><file name="cirrus.png" hash="adef5cebf5733c4cf7a742cb26cb3851"/><file name="discover.png" hash="c612087884381d51deb9ccbb2162e114"/><file name="dribbble.png" hash="e682df239cf7fe1a2ce9b189a5dcd4eb"/><file name="ebay.png" hash="31fee73757a869bbdde21a705b94aa5d"/><file name="email.png" hash="c87e0a1ce61413ece6f4abc151ebb4b9"/><file name="facebook.png" hash="e1b1229842f1aec0b5550387494e4248"/><file name="feed.png" hash="221cb0b5502df909568c0dc6ec6ba57a"/><file name="gplus.png" hash="99d267e3ec32d1103405b1324b19ffc6"/><file name="linked-in.png" hash="f2990c9266fd22c83bf23ba5a1090779"/><file name="mastercard.png" hash="69f8434ebccf958292209693992c626a"/><file name="money-back-guarantee.png" hash="9da4f1a22486cbb88f4892471f0e4dcf"/><file name="paypal.png" hash="eda51504f058d580c542c524353bd9e9"/><file name="pinterest.png" hash="0509720fbce05082f6e37fcf0d5c5048"/><file name="saleoff-first-order.png" hash="f4dee0eb036bb74fbb4b319ed83220d5"/><file name="saleoff-line.png" hash="7633f45740dce3eea22b2df8b4cd48ee"/><file name="secure-online-shoping.png" hash="3ded63cd55078aabdcdec36bdf234a94"/><file name="signup.png" hash="0732e3cede81b3f414dfc6749c1bc885"/><file name="solo.png" hash="4c92b3c00bd67f45cc7adfb346fcc739"/><file name="twitter.png" hash="551e0025c6cbfca1228593a6f714c93f"/><file name="visa.png" hash="6af019e429468d1e9da3001a5a630f78"/><file name="worldwide-shipping.png" hash="23776df1c357779465cc7aa6e7f8b2bb"/></dir><dir name="green"><file name="logo.png" hash="9f1d54165aa18e5a0f572525ebcef1fe"/><file name="omgmenu-bg.png" hash="04d9d2cfdfd8e12ba3e159dc2093bf3a"/><file name="saleoff-bg.png" hash="55cf77f940507b4c7c643f842aa07cfe"/></dir><file name="header-bg.png" hash="d74032ed346313bb60e06419c05e48ca"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="icon_external_link.gif" hash="8ecf69be84c175a6949219e77d542bfa"/><file name="index.html" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="logo.png" hash="d62bf4c492c4418ae48b6ee580443665"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><dir name="moneybookers"><file name="banner_120_de.gif" hash="74815117bf378543e5b3496bb5bc4e8a"/><file name="banner_120_de.png" hash="6c3f708fcb6dac92e53472d4c2246c68"/><file name="banner_120_dk.gif" hash="2106bd994d188d40474bf2a2e8d62a8d"/><file name="banner_120_fr.gif" hash="a84241eef7bc38fb38567e7aa8ca245a"/><file name="banner_120_fr.png" hash="8994d1dc3b4f5c9e5efc67ce3f9f55a9"/><file name="banner_120_int.gif" hash="e23ddcf71e15f0a9300062ef9cdea512"/><file name="banner_120_int.png" hash="f9dfbc26041e52b34eea65348707d64f"/><file name="banner_120_pl.gif" hash="44313c7d27cdcf59c2f66708c6c5abd5"/><file name="banner_120_pl.png" hash="67d3385f93bc9113880305ee7c7da9de"/><file name="banner_120_sp.gif" hash="a003ed8db63620672ae945682b1e1e39"/><file name="banner_120_sp.png" hash="f9c4a653d6814ab3f8c535da706f5f77"/><file name="moneybookers_acc.png" hash="a3e639a68fafdffaca81e91985127735"/><file name="moneybookers_csi.gif" hash="4eec4ed7c494d01d518a3c6c691128e9"/><file name="moneybookers_did.gif" hash="6a3a3365894e9cdb199647a5b74ba35b"/><file name="moneybookers_dnk.gif" hash="7d4b8d27784f8a6fa6ef81c4e911831b"/><file name="moneybookers_ebt.gif" hash="9911d8cc223e7f3d9ec12f50c280ec61"/><file name="moneybookers_ent.gif" hash="704e9551ed4aff82b67114242b9fba1a"/><file name="moneybookers_gcb.gif" hash="e2e7c0f501e5ab0136f859ca5f57abc2"/><file name="moneybookers_gir.gif" hash="f16e949bc60bbd812f803d5e377d47f6"/><file name="moneybookers_idl.gif" hash="fe0ad1efc12d43df6c9ff3ffdd9dd59b"/><file name="moneybookers_lsr.gif" hash="58cdadfa20b6d37aeaa19e50995e4baf"/><file name="moneybookers_mae.gif" hash="4d4b5f0cf3377939c7738fc7e416d25f"/><file name="moneybookers_npy.gif" hash="01242c5ad7bc667e7493b550b6397fab"/><file name="moneybookers_obt_de.png" hash="ce44fd2974b8d279401778292e2c4484"/><file name="moneybookers_obt_dk.png" hash="2985e8cb472d1886d584fa31d56bee92"/><file name="moneybookers_obt_ee.png" hash="cb186be1c7595544f61d3737c7bf85aa"/><file name="moneybookers_obt_en.png" hash="eee098a06e3ea34f33e276724b084774"/><file name="moneybookers_obt_fl.png" hash="6c3766df052d875ce399e62ad8a435f8"/><file name="moneybookers_obt_lt.png" hash="adf61f248fc6d5985840db3e0c23391e"/><file name="moneybookers_obt_lv.png" hash="4e7f16b4988ea30f049942d4dcdb5f78"/><file name="moneybookers_obt_pl.png" hash="fb2c43c18ba73d390e5b5f5261261f4a"/><file name="moneybookers_obt_se.png" hash="9028412e9c3f25d114bf40bb2049d225"/><file name="moneybookers_pli.gif" hash="93989e85caff760af7a61838db0300bf"/><file name="moneybookers_psp.gif" hash="7abffc2246f172625be2ce31f4315cb2"/><file name="moneybookers_pwy.gif" hash="b4a0b9db9a031855e6e3899592012fae"/><file name="moneybookers_sft.gif" hash="e9e774163c99a8ab4deb18d37feaf658"/><file name="moneybookers_so2.gif" hash="9911d8cc223e7f3d9ec12f50c280ec61"/><file name="moneybookers_wlt.gif" hash="4b9cbc5aa5c32f3015ce7bec98da2670"/></dir><file name="next-prev.png" hash="a462e72c9445fe8c31bfbfde9943df80"/><file name="omgmenu-bg.png" hash="2a16fe65d56516380978556839699a93"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pagination-arrow.png" hash="427da3d51b55dacb865f18875b4439ed"/><file name="pagination-next.png" hash="621b43e0ddcf765ebe2b9ec48bc12acb"/><file name="pagination-prev.png" hash="765b5681c0d514bbf5a74e4f19df273e"/><file name="plus.png" hash="205107a74694a1224e4c7096150230e3"/><file name="presetstyles-btn.png" hash="cf44291afc5e350cb43e1434d646988e"/><file name="product-images-nav.png" hash="29b2dd56124a772702db10e6d910f435"/><file name="saleoff-bg.png" hash="a62847cbe0483dd992f6d75428e4679f"/><file name="searchButton.png" hash="d67967c710ed41b896cc987423499461"/><file name="slider_bg.gif" hash="3c50cb9af7d4819b8aa64d6258216413"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="submenu-bg.png" hash="7d351dc0365b05af72ebf8f90f72c754"/><file name="topblock-bottom.png" hash="5b475a77ee970afd4294b245f2556c8c"/><file name="vm2-sprite.png" hash="ff662afdb61b6ead41c1589dda8ff1ef"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="carousel-min.js" hash="cfd7a8d08a6dca87e4211a400877716e"/><dir name="ma2slideshow"><file name="protoshow.js" hash="4769c205951e10b7a7c8c9ff8bcfc773"/></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="Ma2"><dir name="All"><dir name="Helper"><file name="Data.php" hash="090f4bd5ef8f576332f30e6bfc007c5d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9e1f55ce0e5915b7b22d87e94d4da9ea"/><file name="config.xml" hash="4d746930c0b268e9f4553498807507fa"/><file name="system.xml" hash="1305d4780b1b3f9fabeeda54d5151896"/></dir></dir><dir name="Slideshow"><dir name="Block"><dir name="Adminhtml"><dir name="Slideshow"><dir name="Edit"><file name="Form.php" hash="cd0b5ca0e39128f8d3371651cc592f14"/><dir name="Tab"><file name="Form.php" hash="667d68776304b50881872180c0b106de"/></dir><file name="Tabs.php" hash="8c3ccbfa637e48d4cc749488052fa1d2"/></dir><file name="Edit.php" hash="729a0c28460d34358772a19fcbf8ea6f"/><file name="Grid.php" hash="b8fd3db185884e20f6113298c03db5ef"/></dir><file name="Slideshow.php" hash="1bf82969a164dff830ca3240641939e4"/></dir><file name="Slideshow.php" hash="5de0ac9cd374c9166462bbac11aee05c"/></dir><dir name="Helper"><file name="Data.php" hash="74509323fc6636121d058cfa73e9a02d"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Slideshow"><file name="Collection.php" hash="3da7232eee86fcb143a3bca4cff64ebf"/></dir><file name="Slideshow.php" hash="9728a2e4cb4fd69c4e0a27ad7b86631c"/></dir><file name="Slideshow.php" hash="3399d4acd255d5a9366747a7767896a3"/><file name="Slideshowselect.php" hash="e074e701b4e9f9aabbb1a35d152023da"/><file name="Status.php" hash="5db9a1b8601d53412d15dfe788c4fa96"/><file name="Transitiontype.php" hash="a4b586b06de2aabd07077eb86b73592d"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SlideshowController.php" hash="769a1e65dc77085c51ecb6206fee7889"/></dir><file name="IndexController.php" hash="fea0ae665351a324a5cfbcdf03d4d49a"/></dir><dir name="etc"><file name="config.xml" hash="66ba302c9a571d8450ecd7c2681cf202"/><file name="system.xml" hash="83ef374b9fc8d91f1f44642d53eff951"/><file name="widget.xml" hash="f03f4abac02333960b9d08feba78b6fe"/></dir><dir name="sql"><dir name="slideshow_setup"><file name="mysql4-install-0.1.0.php" hash="3480784d4e8e79f93e2728b438341601"/></dir></dir></dir><dir name="ThemeOptions"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Font_unused.php" hash="df1d62269f3896fcbfce5e3aa90979e8"/><file name="Fontpreview.php" hash="8bbd6a0695d30c87fdab91d528c9168e"/><file name="Fonts_unused.php" hash="1e6343060ac0f67dab966ad936eaa379"/><file name="Fontscript_unused.php" hash="492b56fd79790b99ef4a56983b12a153"/><file name="Heading.php" hash="2548a96c64d2a1fc2f399191d5e85bbd"/><file name="Images.php" hash="031eac3b127e2a466ca8c95dbf64ecaa"/><file name="Imagessmall.php" hash="6b1bd276341ee7e16f9a37c442812069"/><file name="OColor.php" hash="6151aa6e2f9788ebc324c5426c44ffa1"/><file name="Patern.php" hash="c1c92da2062c095d0b62dd6c32b918de"/></dir></dir></dir></dir></dir><file name="ThemeOptions.php" hash="1ae0732c727aa9d7e8e5b6872273eee7"/></dir><dir name="Controller"><file name="Observer.php" hash="ae713414d39e6ab08800ffe8d3da2060"/></dir><file name="Exception.php" hash="70915855d1b597d960e198c85d4d798d"/><dir name="Helper"><file name="Data.php" hash="aa7cf70a764649d2904cceedb8a269d7"/></dir><dir name="Model"><file name="Backgroundposition.php" hash="e6b8c34b133240ad83c09b6d19c406c3"/><file name="Backgroundrepeat.php" hash="09c675416194a506ccbc950f0f7267a6"/><file name="Fontreplacement.php" hash="c2bef8f9278ec9cfa78bf8e9a7c77fdf"/><file name="Fonts.php" hash="de956f49181a48b9db4c509ee84e95d3"/><file name="Gfont_unused.php" hash="3a91e431bcdf7e43fc11fed70bd163bd"/><file name="Presetstyles.php" hash="c749b067d5e3735356f8837738b61f8f"/><file name="Productpagelayout.php" hash="8895701053caf4b908935e1c7a9569ab"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1d4848c2af44b13a5c857cbe8b38711b"/><file name="config.xml" hash="c3c66bbf0b9cc6b8c89c4c8dca52a484"/><file name="system.xml" hash="377c0fb599d9bbd37383f16ce24a46b4"/></dir></dir><dir name="WidgetProductList"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Widget"><file name="Chooser.php" hash="679a9c746dd2aa4878aa00ef68eacb1c"/></dir></dir></dir><dir name="Edit"><file name="Form.php" hash="0e325d974b26311474b8e968c38ba682"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="EnableDisable.php" hash="37263ee538d5fe3f8597342f8b7141eb"/><file name="InputNumber.php" hash="ada855835a5dda5102add35a50a17248"/><file name="InputText.php" hash="e71045df2d18af58c5c95b8a58dcc919"/><file name="SortBy.php" hash="040b1e48fb473c8d780f1548b702ad3b"/><file name="TypeList.php" hash="a61be6604392f4f8e5611eff515f9ad0"/></dir></dir></dir></dir></dir><file name="BestSelling.php" hash="c351427618357e2b693a3187ea80ebb7"/><file name="Custom.php" hash="00af4e6ebd7f2e9b7105e1e926084bb5"/><file name="Featured.php" hash="23852cc7a9105ffca234f997897f7dd8"/><file name="New.php" hash="b1c94225e8bf589830ec6ea3e6b6ae60"/></dir><dir name="Helper"><file name="Data.php" hash="1b9fc733363c94cc6cc6008ba92ca399"/></dir><dir name="Model"><dir name="Source"><file name="TypeList.php" hash="b847fe801998c163f3c176b3149288e1"/></dir><file name="WidgetProductList.php" hash="d8af76dd9214336fa1c7034698663641"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="WidgetProductListController.php" hash="47073eb8be0258e3c216ab850486251c"/></dir></dir><dir name="etc"><file name="config.xml" hash="9b33ba4143313cb5f5249fbfb233fe60"/><file name="widget.xml" hash="286f88b548266127d1acaf8eb1d1a835"/></dir></dir><dir name="WidgetTabsF"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Tabitem.php" hash="5c9613d98015766ce710c1e56947e7fd"/></dir></dir></dir></dir></dir><file name="Widgettabs.php" hash="89a00b90aa7304c82602f0c0ea9b53ca"/></dir><dir name="Helper"><file name="Data.php" hash="4e0c2d34a2edc3fb063eeae0cb696b33"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="WidgettabsController.php" hash="cc79b497dbce76a5e9f6643366d980a4"/></dir><file name="IndexController.php" hash="629fa1406e62bb1007a26360027166fe"/></dir><dir name="etc"><file name="config.xml" hash="d17341248a2a5cf27a256c733428a6ff"/><file name="widget.xml" hash="4fc77fce163bd4cf3083edefb20878a0"/></dir></dir></dir><dir name="Mage"><dir name="Page"><dir name="Block"><dir name="Html"><file name="Bottomblock1.php" hash="ef645c4333443aa69238a3a0d96d0685"/><file name="Bottomblock2.php" hash="5039a415ea7551d9391e1f3f83c33404"/><file name="Bottomblock3.php" hash="1a8f78c7f471048f3a9f6da0723ad5d7"/><file name="Footerblock1.php" hash="116718ea0b775014f762d0cc25e3c560"/><file name="Footerblock2.php" hash="470acec31300f9604bb66529d4d62f95"/><file name="Maintopblock1.php" hash="94e4e2283fcfdd58d44ce9f490366cfe"/><file name="Maintopblock2.php" hash="06720fae3f654970f19e4daa4ad7a583"/><file name="Maintopblock3.php" hash="c6c4f0eb88201535556d094988867cd9"/><file name="Topblock1.php" hash="e8531e2c16f249ff53e7d2acea6222a4"/><file name="Topblock2.php" hash="329124886a421be422b8381adab9d9b3"/></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Ma2"><dir name="FeaturedProducts"><dir name="Block"><dir name="Adminhtml"><dir name="Edit"><file name="Grid.php" hash="ae37f45312fd41c2d5843e5181037181"/><dir name="Renderer"><file name="Name.php" hash="b364c639fd67541f58511d11e128d898"/><file name="Thumbnail.php" hash="755157f8b86d20d43a0fbd023cdea935"/><file name="Visibility.php" hash="d62bcb50131cfdf7eed8ca0b23a1417e"/></dir></dir><file name="Edit.php" hash="601249772cb0d7380388b4c8b944898b"/></dir><file name="Block.php" hash="cee7eaa42ed2de8e9af9d0bf50b1a8ef"/><dir name="Standalone"><file name="List.php" hash="8c90d09df75da709d4428764fe4a820a"/></dir><file name="Widget.php" hash="8a87807d73180e1d6773ba20660f61fb"/></dir><dir name="Helper"><file name="Data.php" hash="9c30a8cd6b4fbba1bdeda4df047ef0e7"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Listtype.php" hash="c514edef11b62b3d87473db7c66c95a1"/><file name="Sortby.php" hash="177f9e2760c3fdb53061480b33160ed3"/><file name="Sortdir.php" hash="bc6ebbfbab6a38b114f7f5ae08fa78aa"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="FeaturedController.php" hash="4f942bb642e8a6c5a9b4d51c980746a6"/></dir><file name="IndexController.php" hash="3541706337d4d872e928bc8ca702e896"/></dir><dir name="etc"><file name="adminhtml.xml" hash="bc2752c6656df2f59228bf1b4282ce05"/><file name="config.xml" hash="759309e4a8ef710aac34344ffc23ebbc"/><file name="system.xml" hash="bd735f0377c40a316a1de65699b0bbf9"/><file name="widget.xml" hash="51be9caa9175d68586d1b7264bba44d5"/></dir><dir name="sql"><dir name="featuredproducts_setup"><file name="mysql4-install-1.0.0.php" hash="f7e8e84dec381087c97ef09cf9b2cca8"/></dir></dir></dir></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
23
  </package>