MagentoPassion_mp_toolshop_free - Version 1.0.4

Version Notes

Upgrade for Magento CE 1.8
Fix place order function.

Download this release

Release Info

Developer magpassion
Extension MagentoPassion_mp_toolshop_free
Version 1.0.4
Comparing to
See all releases


Code changes from version 1.0.3 to 1.0.4

app/design/frontend/default/mp_toolshop/.DS_Store CHANGED
Binary file
app/design/frontend/default/mp_toolshop/template/.DS_Store CHANGED
Binary file
app/design/frontend/default/mp_toolshop/template/checkout/.DS_Store CHANGED
Binary file
app/design/frontend/default/mp_toolshop/template/checkout/onepage/.DS_Store CHANGED
Binary file
app/design/frontend/default/mp_toolshop/template/checkout/onepage/review.phtml CHANGED
@@ -19,11 +19,11 @@
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category design
22
- * @package default_vnzarial
23
- * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
27
  <div class="order-review" id="checkout-review-load">
28
- <?php echo $this->getChildHtml('info') ?>
29
  </div>
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
27
  <div class="order-review" id="checkout-review-load">
28
+ <!-- Content loaded dynamically -->
29
  </div>
app/design/frontend/default/mp_toolshop/template/checkout/onepage/review/button.phtml CHANGED
@@ -19,8 +19,8 @@
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category design
22
- * @package default_vnzarial
23
- * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
app/design/frontend/default/mp_toolshop/template/checkout/onepage/review/info.phtml CHANGED
@@ -19,8 +19,8 @@
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category design
22
- * @package default_vnzarial
23
- * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
@@ -78,7 +78,7 @@
78
  </div>
79
  <script type="text/javascript">
80
  //<![CDATA[
81
- review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder') ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
82
  //]]>
83
  </script>
84
  </div>
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
78
  </div>
79
  <script type="text/javascript">
80
  //<![CDATA[
81
+ review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder', array('form_key' => Mage::getSingleton('core/session')->getFormKey())) ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
82
  //]]>
83
  </script>
84
  </div>
app/design/frontend/default/mp_toolshop/template/checkout/onepage/review/item.phtml CHANGED
@@ -19,24 +19,24 @@
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category design
22
- * @package default_vnzarial
23
- * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
27
  <?php $_item = $this->getItem()?>
28
  <tr>
29
- <td><h3 class="product-name"><?php echo $this->htmlEscape($this->getProductName()) ?></h3>
30
  <?php if ($_options = $this->getOptionList()):?>
31
  <dl class="item-options">
32
  <?php foreach ($_options as $_option) : ?>
33
  <?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
34
- <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
35
  <dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>><?php echo $_formatedOptionValue['value'] ?>
36
  <?php if (isset($_formatedOptionValue['full_view'])): ?>
37
  <div class="truncated_full_value">
38
  <dl class="item-options">
39
- <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
40
  <dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
41
  </dl>
42
  </div>
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
27
  <?php $_item = $this->getItem()?>
28
  <tr>
29
+ <td><h3 class="product-name"><?php echo $this->escapeHtml($this->getProductName()) ?></h3>
30
  <?php if ($_options = $this->getOptionList()):?>
31
  <dl class="item-options">
32
  <?php foreach ($_options as $_option) : ?>
33
  <?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
34
+ <dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
35
  <dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>><?php echo $_formatedOptionValue['value'] ?>
36
  <?php if (isset($_formatedOptionValue['full_view'])): ?>
37
  <div class="truncated_full_value">
38
  <dl class="item-options">
39
+ <dt><?php echo $this->escapeHtml($_option['label']) ?></dt>
40
  <dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
41
  </dl>
42
  </div>
app/design/frontend/default/mp_toolshop/template/checkout/onepage/review/totals.phtml CHANGED
@@ -19,8 +19,8 @@
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category design
22
- * @package default_vnzarial
23
- * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
 
19
  * needs please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
 
package.xml CHANGED
@@ -1,18 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MagentoPassion_mp_toolshop_free</name>
4
- <version>1.0.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Magento theme for a Power &amp; Hand Tools store is designed clean, friendly and high-tech.</summary>
10
  <description>Clean, elegant and high-tech in design. The theme is designed for selling Power &amp; Hand Tools. The amazing slideshow could show off the most powerful products, featured products, promotion banners or anything else you want.</description>
11
- <notes>Upgrade for Magento CE 1.8</notes>
 
12
  <authors><author><name>magpassion</name><user>magpassion</user><email>magentopassion@gmail.com</email></author></authors>
13
  <date>2013-12-23</date>
14
- <time>09:03:51</time>
15
- <contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="mp_toolshop"><dir><dir name="etc"><file name="widget.xml" hash="88342553b5080c3856e9beb4a4a147e6"/></dir><dir name="layout"><file name="catalog.xml" hash="aa28e09491ad45b66e1eaf6d6014d074"/><file name="catalogsearch.xml" hash="dd82fbae32090b436011533dd6f65e7c"/><file name="checkout.xml" hash="4189da244a83a9679b552beb6b3f0aa6"/><file name="contacts.xml" hash="ef18e95f2c365596a2b8ec6f10b7db02"/><file name="customer.xml" hash="bc31e143908897ffbc498c23118e6e97"/><file name="googlecheckout.xml" hash="e8aa6e2d2e4ab72076191f9f3fa42ce8"/><file name="newsletter.xml" hash="e8c7467bb00e18afe0b9dbfa5c19f311"/><file name="page.xml" hash="cba4c80900ab76cc1f9395e7373b9ddb"/><file name="review.xml" hash="3d12ea637617f6f4ce56cbc465d1ee1f"/><file name="rss.xml" hash="ac42b9cfeee7b2bcf4ac93efb45c14c2"/><dir name="sales"><file name="billing_agreement.xml" hash="7ef3239d2ea1978bd6820b61a8f55215"/><file name="recurring_profile.xml" hash="e6c3e4ca7c15eabdba5158d1ce4c71b7"/></dir><file name="sendfriend.xml" hash="c95e88ad5db9fc980f125ddf7b2ba4f8"/><file name="tag.xml" hash="78e385d17c0f08dca7199d758863b266"/><file name="wishlist.xml" hash="c24ba64d3d4e8c31afe203a45c27623f"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="793e1ff86039f24caff6fad87a094fa1"/></dir></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="page.phtml" hash="0d1460ae38785541544ff977856c663c"/><file name="view.phtml" hash="0761e3402d87acaf3ee7abeca33b4034"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="ae9abc51b5a469fc9efeadf4f9d8c818"/><file name="link_inline.phtml" hash="342ba167c268054f5697e8cb258fa2b0"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="f04a867ccce2c04bbd8a1c1e39256cf3"/><file name="state.phtml" hash="f83b964f7a018e60afe50e42fca9391f"/><file name="view.phtml" hash="f8a4b9847df9db1190ea11bd14fc1d4b"/></dir><dir name="msrp"><file name="popup.phtml" hash="ff86f3f2664875d9e0aeef5893b22a38"/></dir><dir name="navigation"><file name="left.phtml" hash="1e8a90e8441371707efce27364be0432"/><file name="top.phtml" hash="bab3c7f3fb128c3bda5c0aed494451ad"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="3f7e5c7150b7bd71a66f865d952bf04e"/><file name="sidebar.phtml" hash="0f2d74052e5c95743c0b621d41691af7"/></dir><file name="gallery.phtml" hash="f648862902de550c41a54bd12eb356b7"/><dir name="list"><file name="related.phtml" hash="7a985dd27b6be6802cafcb3fa4ef10e8"/><file name="toolbar.phtml" hash="fbcb4bf6615e8be95ae170abb2620d10"/><file name="upsell.phtml" hash="02942e56ee57fbee0235a3d69f1fd16e"/></dir><file name="list.phtml" hash="fa513fa8c5d9c697bf66b5f0cb02bac2"/><file name="new.phtml" hash="af235ba400080346b586aa805edb9cb4"/><file name="price.phtml" hash="7008c91ed637cee99e69a25a63365504"/><file name="price_msrp.phtml" hash="e3aeb7c4f4746378335d1ca9720a8644"/><file name="price_msrp_item.phtml" hash="befabef2d7904c8f1167fdc1d9f7b4ef"/><file name="price_msrp_noform.phtml" hash="707a39d2e7e9154fbb52ac14cbfb684a"/><file name="price_msrp_rss.phtml" hash="628db48b1ebfe5a0dbae7e8936d919c7"/><dir name="view"><file name="additional.phtml" hash="0bef5626715b39ac61f34bebc21b7b45"/><file name="addto.phtml" hash="b1de98260dff271ee4dda09e93d10c6f"/><file name="addtocart.phtml" hash="a3045b849b8de27329938b63dc328bd9"/><file name="attributes.phtml" hash="d624f9f3a9fb367a61b530892da13954"/><file name="description.phtml" hash="4441e25ce8218127ad1f630d485f26ee"/><file name="media.phtml" hash="de07050fbb1933ccf112bfd973a2c99b"/><file name="media_old.phtml" hash="3b8e2481999eb8df5d7ba31a9b6e968a"/><dir name="options"><file name="js.phtml" hash="ab63d75206a4568a207bcf0333e24fb2"/><dir name="type"><file name="date.phtml" hash="60e4d2b6dfe4cef8ce3f0b34811e1d44"/><file name="default.phtml" hash="33b21bd7e62d762aa72d4ee69836e8a1"/><file name="file.phtml" hash="cd2d2506f327d72578cbacc792e05c2f"/><file name="select.phtml" hash="13a35dbbaa024c8e8221b3612243ff12"/><file name="text.phtml" hash="3ce0be51437d6e308014329c0fb085f2"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="325acf12c1cd7aff8f3cfa9255609c60"/></dir><file name="wrapper.phtml" hash="ae97390d0786f30cfc76faafb0af987d"/></dir><file name="options.phtml" hash="43c2c354da2381954d1793cfccccd443"/><file name="price.phtml" hash="09f6b72a6fb7a02a7c40b455cbb0914e"/><file name="price_clone.phtml" hash="4de3026811c2c2b47a1aebb56270c4d3"/><file name="tabs.phtml" hash="889e18ab30e9bf05b273ecfa8c5cdbb7"/><file name="tierprices.phtml" hash="20f49023afdfb3629577fd8e920bfe2e"/><dir name="type"><file name="configurable.phtml" hash="d9134bb27b88ba9f35609d51759e432a"/><file name="default.phtml" hash="2923a540fa5ab038553b26ca888da48e"/><file name="grouped.phtml" hash="1ad1afec22120d060bca450271716062"/><dir name="options"><file name="configurable.phtml" hash="67903077406b7e4c2ea118972c72dbfb"/></dir><file name="simple.phtml" hash="d9134bb27b88ba9f35609d51759e432a"/><file name="virtual.phtml" hash="d9134bb27b88ba9f35609d51759e432a"/></dir></dir><file name="view.phtml" hash="e43e37e112456d02ae72937c5f0ffd31"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="10d48ca54890d6f24b403e0c7e7e7eb3"/><file name="link_inline.phtml" hash="39ae8b65c7f298dcfb65f6902189f0b9"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="1852d3b8494888513bf58759613b6d24"/><file name="new_images_list.phtml" hash="a2a3a45920703dd66a56a0e1bfc7cdf1"/><file name="new_names_list.phtml" hash="e9171f28d97aa74df6bcc2038f1875fd"/></dir><dir name="content"><file name="new_grid.phtml" hash="d1a671c5408ef006e3b3bbbdf4b80a6a"/><file name="new_list.phtml" hash="1ab959c3111f777b455a091ef4f13261"/></dir></dir></dir></dir><dir name="rss"><dir name="product"><file name="price.phtml" hash="9e2da91f15d9bc7c4f9137a40adb655f"/></dir></dir><dir name="seo"><dir name="sitemap"><file name="container.phtml" hash="055bfe526e089da5084da610e9c9de05"/></dir><file name="sitemap.phtml" hash="9ac45235d6f58f50c3b8258da859d987"/><file name="tree.phtml" hash="9aa9ea44cb6c1425d5c4bb8b2a34d3fd"/></dir></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="cf8f751f327e03ffd5e6ff11c9cca045"/><file name="crosssell.phtml" hash="f846b6f6e4ee79420de84839cbfb6196"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="cce612babf4e1d6f66df134e0ec6cc7b"/></dir><file name="default.phtml" hash="b3230a3344422b69fe0527b206321cee"/></dir><file name="noItems.phtml" hash="e1d5660315f8b2abc5b8373b56545e7c"/><dir name="render"><file name="default.phtml" hash="cf9145f46461c9bbb719c877f56b6d97"/><file name="simple.phtml" hash="3e3f4b5d745ca4da7b4c7df976630032"/></dir><file name="shipping.phtml" hash="faeed9e9ee6fd12f1d2f490531c7e78d"/><dir name="sidebar"><file name="default.phtml" hash="5615dc4ca179bab6915e0aefb0ef0d71"/></dir><file name="sidebar.phtml" hash="0bb86a57046f40169f46dd4fbe48b950"/><file name="sidebar_header.phtml" hash="2087e8659568161c6fb14befbd3108f6"/><file name="totals.phtml" hash="25ad49ff5ba8f02d5df3f57bc7c00daa"/></dir><file name="cart.phtml" hash="d694f8873d474e6cd4289c4983636f21"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="8005bc1791e7a1ea8f59c6ba4b2e9267"/></dir><file name="addresses.phtml" hash="feb5e8ec57bc875b923c2ad52bdab7a6"/><file name="agreements.phtml" hash="220c0714dc256ca169ff0168aa16425d"/><dir name="billing"><file name="items.phtml" hash="2ab51a99adeab1b8f264b62118073d1b"/></dir><file name="billing.phtml" hash="51cfef68999dbc57e4e000b503c04bbb"/><dir name="item"><file name="default.phtml" hash="e4edf3e5bef85b4f1045bd5da60fd93d"/></dir><file name="link.phtml" hash="0776229ad7b61f1689c2d8b44e8eb118"/><dir name="overview"><file name="item.phtml" hash="c420be40ef6c72e8d1ecc83e40dcaf60"/></dir><file name="overview.phtml" hash="3dbf81e69642eb25b03b80484eb26e62"/><file name="shipping.phtml" hash="bdf2db8d29abc42d2d6e36169b5303f8"/><file name="state.phtml" hash="b47cb49f1492002d4e69128774e3fe8a"/><file name="success.phtml" hash="266a110f3f4fac29396a0115a40930a4"/></dir><dir name="onepage"><file name="agreements.phtml" hash="c21bc04d1420acbee0b2d64805e6875f"/><file name="billing.phtml" hash="5f4d59c489972f898aaf53322c74acee"/><file name="failure.phtml" hash="15b7a400d9cb354d67541eef4d518af4"/><file name="link.phtml" hash="5a34e095dfd173dd1f91a352e9f13d00"/><file name="login.phtml" hash="9b31699df376d0f02e0b44c7a4f97db6"/><dir name="payment"><file name="info.phtml" hash="e3d23f5d3e0b135ca38ec7ab5b41f851"/><file name="methods.phtml" hash="564b81f837527db02bff6197d222439b"/></dir><file name="payment.phtml" hash="a871ad331e0a51cbe5a2ca4a8a95aae9"/><file name="progress.phtml" hash="77892b4242d8f85b7e7cd40687cc3724"/><dir name="review"><file name="button.phtml" hash="7020de855e3172511a52d2026d0ee91e"/><file name="info.phtml" hash="0f3a0f1b5d2c404674433c743c27468f"/><file name="item.phtml" hash="918127e69e34acd1c8463def52ab4fe5"/><file name="totals.phtml" hash="e15353e3c8e7304cc534987169b47847"/></dir><file name="review.phtml" hash="ce4912353e9502a96e3134c7eb054d6f"/><file name="shipping.phtml" hash="22928d8ded3a48773649731f4c038ce4"/><dir name="shipping_method"><file name="additional.phtml" hash="5199730d3e5dc50bd9deb29c4d239b7e"/><file name="available.phtml" hash="e9b29674956b8ee7a96d879706451c31"/></dir><file name="shipping_method.phtml" hash="0de50bac1dc8dc5ced6c4ba7f9b38c76"/><file name=".DS_Store" hash="a1ff35848120a6abe0d70ad333dc01f0"/></dir><file name="onepage.phtml" hash="bbe18bd32577aadfd10152f75537fc8a"/><file name="success.phtml" hash="a337d5860c18f0082e25846ec6be0be3"/><dir name="total"><file name="default.phtml" hash="e5692fb2cc92e67776fe32017d33f7b4"/><file name="nominal.phtml" hash="69f66d9e00eb08cd48e296853317356d"/><file name="tax.phtml" hash="2221ba1f72426e4f476a7a69d409f56e"/></dir><file name=".DS_Store" hash="1df03e7b10bf9faba67145f8ec7591c0"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="f462a549c66b94ffbe65b88460e9f5ef"/></dir><dir name="page"><file name="1column.phtml" hash="c3f59c078648c181ccd54c2d4905ba67"/><file name="2columns-left.phtml" hash="112a94ced9a906844a7d9f0f1c8a7fdb"/><file name="2columns-right.phtml" hash="c3d991644efa448241c3e139abdc21c9"/><file name="3columns.phtml" hash="2db743290c48b9cb19e78de442a2dcc3"/><file name="empty.phtml" hash="e1cf980f5825434acd526965a26598b7"/><dir name="html"><file name="breadcrumbs.phtml" hash="e35d955ba21a54577638d6ba1d1b65ed"/><file name="footer.content.phtml" hash="523582554c574f2893e8012e06451ec6"/><file name="footer.phtml" hash="f99b9bc421b6d40d8ecb1f30df050368"/><file name="head.phtml" hash="6658657868e18f46602446418097f8e5"/><file name="header.phtml" hash="a550aeb2b93fda62766f6cefaed69c87"/><file name="homecontent.phtml" hash="2e99fd18d02250923995133d49fa4d96"/><file name="notices.phtml" hash="27ca9a908e784aef202f40a09aa07248"/><file name="pager.phtml" hash="89cccc64bc5a8919c3434471e0c0c2a7"/><file name="top.links.phtml" hash="c75f4b24fecf115b7fdd1bc7a7d7e3b1"/><file name="topmenu.phtml" hash="f8f1ab9418e82b65c3f69d2dbb10399c"/><file name="wrapper.phtml" hash="6ba5012143024ac317edeb9b9a817ae4"/></dir><dir name="js"><file name="calendar.phtml" hash="c2ffdedc3f288fd2aa2cdefedfa677e3"/><file name="cookie.phtml" hash="cbf8179d5c31aac3a56baf82d87a797c"/></dir><file name="popup.phtml" hash="af58cacace6aa3d9940f81f234d8ed17"/><file name="print.phtml" hash="961ae7304d163894a8a55fb333fb404b"/><file name="redirect.phtml" hash="57643bd7e8b12eb1350e109682a516a9"/><dir name="switch"><file name="flags.phtml" hash="cb4e4797c21857279dd3dd65c5c1a2a8"/><file name="languages.phtml" hash="9a55294b6520fcc942e5c06b9f62673b"/><file name="stores.phtml" hash="47a4241d9e5243e9fe44b3cc85ec4856"/></dir><dir name="template"><file name="container.phtml" hash="30bf0d92d814935cbd85d76bfb36a921"/><file name="links.phtml" hash="7f72659170e6c7497b330d1e74d8d43e"/><file name="linksblock.phtml" hash="a40d075fa6240d5a0b1a660a767f80b4"/></dir><file name=".DS_Store" hash="f7f6e568836066649505c621faa26c9b"/></dir><file name=".DS_Store" hash="9af7ed93d58c52d2a4a3e65d759cead3"/></dir></dir><file name=".DS_Store" hash="1a86485000e1b8d1249c40cece18853b"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="mp_toolshop"><dir><dir name="css"><file name="easytabs.css" hash="b38e0846620909529021252f087bc848"/><file name="oauth-simple.css" hash="441743c00cd53acda6b744d54a5d638a"/><file name="print.css" hash="84ce72223e34eaf05c5035088e386922"/><file name="styles-ie.css" hash="7df97bb87c1a30aa385fa914c6323348"/><file name="styles.css" hash="3e6996ffd3632c3aec95da7257d8fb16"/></dir><dir name="images"><file name="bg_search_icon.gif" hash="b5ff3436dd72b81cb2b900f73e67f7d8"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><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_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="breadcrum.gif" hash="6582c76118c50504aa8532d13ec69945"/><file name="btn-cart.png" hash="150014265b6fd056918e8bbb8d9f11cb"/><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><file name="check-out-icon-white.gif" hash="0b79ca0e51f232c5bd4e9427c352878c"/><file name="check-out-icon.gif" hash="4eacc04bc55ce9ff90f4394c13366e56"/><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><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-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><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_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.gif" hash="6fada77fbd47ee54c64c55ae58e5b2cb"/><file name="logo_arial.gif" hash="f415fed05674eced27ca4b9e852c774e"/><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><file name="nav-category.gif" hash="42c93e9fb3ba87737938b01dbe239757"/><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="pag-li.png" hash="e54ce655c88421fb587b8edb199bbcd5"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><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="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="jquery-1.7.2.min.js" hash="b11ced65f32fedbe9bf81ef9db0f3c94"/><file name="jquerynoconflict.js" hash="6932bbddf488374a70b55fbb62052fd2"/></dir><dir name="quickview"><dir name="css"><file name="cloud-zoom.css" hash="0521604f766ffd4877c7b56ffa46c272"/><file name="global.css" hash="b6adcb0640fe572355020ba6d8c13aaa"/><file name="jquery.fancybox-1.3.4.css" hash="086d93aea5a530a3b0a7bfd5777c7e3a"/><file name="jquery.thickbox.css" hash="d674281ed42861419ed9b3f9171f91fe"/><file name="stylefancy.css" hash="ab656afe8dd6bc8fc8c0e48cf48da459"/></dir><dir name="images"><file name="Thumbs.db" hash="ee01d41993d281f758ee8ca9b14afbcc"/><file name="arrow-next.gif" hash="c61dbe2ad601ebe18e6b1a0b50c10a4f"/><file name="arrow-next.png" hash="3364d07dbfdea5ecbc9c3ce680f05ebc"/><file name="arrow-prev.gif" hash="98bf1dddfa471275bd50486d3e3db225"/><file name="arrow-prev.png" hash="c2e833d6b87654b1ea07fc323e927965"/><file name="background.png" hash="96519dab3e5a2a09075632cca4a98141"/><file name="fancy_nav_left.png" hash="798edbcf3b9b8e4f4dc831d188593d2d"/><file name="fancy_nav_right.png" hash="37357762ba52e543e8e550ae02af8c30"/><dir name="fancybox"><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="6c9d925f49eac8653d81c1a53d533a0a"/></dir><file name="fancybox_loading.gif" hash="c6f1ad4957e50b83bb27691df8bc3f41"/><file name="fancybox_sprite.png" hash="61c66a5947e7bf772f7ec1c7985feec6"/><file name="loader_transparent.gif" hash="7c29a73cbc43bc9ab84a353005a12e61"/><file name="loadingAnimation.gif" hash="7c29a73cbc43bc9ab84a353005a12e61"/><file name="loading_background.png" hash="acf427e932fb9413700a4b8b58b41eec"/><file name="md_quickview_preview.png" hash="2717f47bdc9144bc7e3774e8b1aeb61d"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="quick_look.gif" hash="a97a2313657b668d6cac8e197ecc7eb5"/></dir></dir></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="magpassion"><dir name="quickview"><file name="cloud-zoom.1.0.2.min.js" hash="187c6bd5c7e1357b9cb50257edc8b4e9"/><file name="colorpicker.js" hash="9afb6169162cfd3834b6f836438f53d4"/><file name="configurable.js" hash="cf03517382aea8a55b4cafe10988dbea"/><dir name="fancy"><dir name="fancybox"><file name="jquery.fancybox-1.3.4.pack.js" hash="ebe607c948a447c11c4e017ecf1dde1c"/><file name="jquery.fancybox-1.3.4.pack.js-" hash="cc4dfcd4638507d8c53558426c70a2e9"/><file name="jquery.min.js" hash="c77d319252ddf43debb940d9e3717d3d"/></dir></dir><dir name="images"><file name="controls.png" hash="1881b565ed3ad05432ab5076eee5be0c"/><file name="left.png" hash="209569b438376ce7dd12c05334d81593"/><file name="loading.gif" hash="58c35cf5e9fcbe3914c839c6665794bd"/><file name="right.png" hash="3fde6ad092b250de130df3aaaea99c46"/><file name="wait.gif" hash="a51c5608d01acf32df728f299767f82b"/></dir><dir name="js"><file name="jquery-1.7.2.min.js" hash="09bf7cb5fd333ee8c1c6be7475f85026"/><file name="jquery.maskedinput.js" hash="e8011949ba3cbc4ab53ee95c8f018812"/><file name="md_quickview.js" hash="18511d3490d0e947783e2af905d4af77"/><file name="slides.min.jquery.js" hash="82b8df20ccb65773df2a4cc65f368be9"/></dir><file name="product.js" hash="e785f53c717fdb231c28a09e13bffa9e"/><dir name="thickbox"><file name="jquery.noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><file name="jquery.thickbox.js" hash="409ccdfddea3d126eeea78f615a8f987"/></dir></dir><dir name="slider"><file name="jquery-1.7.2.min.js" hash="09bf7cb5fd333ee8c1c6be7475f85026"/><file name="jquery.easing.1.3.js" hash="794e5e3691dc426b2b66b9e4f6c18798"/><file name="jquery.noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><file name="tms-0.3.js" hash="3c0e74cc326fc89f41b4595cc10fbd2b"/><file name="tms_presets.js" hash="1426268f9b851061bc0429b4999056c5"/></dir><file name=".DS_Store" hash="b27ab8f7c7071fb3a7e4b6e6db2f38a5"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.17</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MagentoPassion_mp_toolshop_free</name>
4
+ <version>1.0.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Magento theme for a Power &amp; Hand Tools store is designed clean, friendly and high-tech.</summary>
10
  <description>Clean, elegant and high-tech in design. The theme is designed for selling Power &amp; Hand Tools. The amazing slideshow could show off the most powerful products, featured products, promotion banners or anything else you want.</description>
11
+ <notes>Upgrade for Magento CE 1.8&#xD;
12
+ Fix place order function.</notes>
13
  <authors><author><name>magpassion</name><user>magpassion</user><email>magentopassion@gmail.com</email></author></authors>
14
  <date>2013-12-23</date>
15
+ <time>15:46:07</time>
16
+ <contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="mp_toolshop"><dir><dir name="etc"><file name="widget.xml" hash="88342553b5080c3856e9beb4a4a147e6"/></dir><dir name="layout"><file name="catalog.xml" hash="aa28e09491ad45b66e1eaf6d6014d074"/><file name="catalogsearch.xml" hash="dd82fbae32090b436011533dd6f65e7c"/><file name="checkout.xml" hash="4189da244a83a9679b552beb6b3f0aa6"/><file name="contacts.xml" hash="ef18e95f2c365596a2b8ec6f10b7db02"/><file name="customer.xml" hash="bc31e143908897ffbc498c23118e6e97"/><file name="googlecheckout.xml" hash="e8aa6e2d2e4ab72076191f9f3fa42ce8"/><file name="newsletter.xml" hash="e8c7467bb00e18afe0b9dbfa5c19f311"/><file name="page.xml" hash="cba4c80900ab76cc1f9395e7373b9ddb"/><file name="review.xml" hash="3d12ea637617f6f4ce56cbc465d1ee1f"/><file name="rss.xml" hash="ac42b9cfeee7b2bcf4ac93efb45c14c2"/><dir name="sales"><file name="billing_agreement.xml" hash="7ef3239d2ea1978bd6820b61a8f55215"/><file name="recurring_profile.xml" hash="e6c3e4ca7c15eabdba5158d1ce4c71b7"/></dir><file name="sendfriend.xml" hash="c95e88ad5db9fc980f125ddf7b2ba4f8"/><file name="tag.xml" hash="78e385d17c0f08dca7199d758863b266"/><file name="wishlist.xml" hash="c24ba64d3d4e8c31afe203a45c27623f"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="793e1ff86039f24caff6fad87a094fa1"/></dir></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="page.phtml" hash="0d1460ae38785541544ff977856c663c"/><file name="view.phtml" hash="0761e3402d87acaf3ee7abeca33b4034"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="ae9abc51b5a469fc9efeadf4f9d8c818"/><file name="link_inline.phtml" hash="342ba167c268054f5697e8cb258fa2b0"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="f04a867ccce2c04bbd8a1c1e39256cf3"/><file name="state.phtml" hash="f83b964f7a018e60afe50e42fca9391f"/><file name="view.phtml" hash="f8a4b9847df9db1190ea11bd14fc1d4b"/></dir><dir name="msrp"><file name="popup.phtml" hash="ff86f3f2664875d9e0aeef5893b22a38"/></dir><dir name="navigation"><file name="left.phtml" hash="1e8a90e8441371707efce27364be0432"/><file name="top.phtml" hash="bab3c7f3fb128c3bda5c0aed494451ad"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="3f7e5c7150b7bd71a66f865d952bf04e"/><file name="sidebar.phtml" hash="0f2d74052e5c95743c0b621d41691af7"/></dir><file name="gallery.phtml" hash="f648862902de550c41a54bd12eb356b7"/><dir name="list"><file name="related.phtml" hash="7a985dd27b6be6802cafcb3fa4ef10e8"/><file name="toolbar.phtml" hash="fbcb4bf6615e8be95ae170abb2620d10"/><file name="upsell.phtml" hash="02942e56ee57fbee0235a3d69f1fd16e"/></dir><file name="list.phtml" hash="fa513fa8c5d9c697bf66b5f0cb02bac2"/><file name="new.phtml" hash="af235ba400080346b586aa805edb9cb4"/><file name="price.phtml" hash="7008c91ed637cee99e69a25a63365504"/><file name="price_msrp.phtml" hash="e3aeb7c4f4746378335d1ca9720a8644"/><file name="price_msrp_item.phtml" hash="befabef2d7904c8f1167fdc1d9f7b4ef"/><file name="price_msrp_noform.phtml" hash="707a39d2e7e9154fbb52ac14cbfb684a"/><file name="price_msrp_rss.phtml" hash="628db48b1ebfe5a0dbae7e8936d919c7"/><dir name="view"><file name="additional.phtml" hash="0bef5626715b39ac61f34bebc21b7b45"/><file name="addto.phtml" hash="b1de98260dff271ee4dda09e93d10c6f"/><file name="addtocart.phtml" hash="a3045b849b8de27329938b63dc328bd9"/><file name="attributes.phtml" hash="d624f9f3a9fb367a61b530892da13954"/><file name="description.phtml" hash="4441e25ce8218127ad1f630d485f26ee"/><file name="media.phtml" hash="de07050fbb1933ccf112bfd973a2c99b"/><file name="media_old.phtml" hash="3b8e2481999eb8df5d7ba31a9b6e968a"/><dir name="options"><file name="js.phtml" hash="ab63d75206a4568a207bcf0333e24fb2"/><dir name="type"><file name="date.phtml" hash="60e4d2b6dfe4cef8ce3f0b34811e1d44"/><file name="default.phtml" hash="33b21bd7e62d762aa72d4ee69836e8a1"/><file name="file.phtml" hash="cd2d2506f327d72578cbacc792e05c2f"/><file name="select.phtml" hash="13a35dbbaa024c8e8221b3612243ff12"/><file name="text.phtml" hash="3ce0be51437d6e308014329c0fb085f2"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="325acf12c1cd7aff8f3cfa9255609c60"/></dir><file name="wrapper.phtml" hash="ae97390d0786f30cfc76faafb0af987d"/></dir><file name="options.phtml" hash="43c2c354da2381954d1793cfccccd443"/><file name="price.phtml" hash="09f6b72a6fb7a02a7c40b455cbb0914e"/><file name="price_clone.phtml" hash="4de3026811c2c2b47a1aebb56270c4d3"/><file name="tabs.phtml" hash="889e18ab30e9bf05b273ecfa8c5cdbb7"/><file name="tierprices.phtml" hash="20f49023afdfb3629577fd8e920bfe2e"/><dir name="type"><file name="configurable.phtml" hash="d9134bb27b88ba9f35609d51759e432a"/><file name="default.phtml" hash="2923a540fa5ab038553b26ca888da48e"/><file name="grouped.phtml" hash="1ad1afec22120d060bca450271716062"/><dir name="options"><file name="configurable.phtml" hash="67903077406b7e4c2ea118972c72dbfb"/></dir><file name="simple.phtml" hash="d9134bb27b88ba9f35609d51759e432a"/><file name="virtual.phtml" hash="d9134bb27b88ba9f35609d51759e432a"/></dir></dir><file name="view.phtml" hash="e43e37e112456d02ae72937c5f0ffd31"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="10d48ca54890d6f24b403e0c7e7e7eb3"/><file name="link_inline.phtml" hash="39ae8b65c7f298dcfb65f6902189f0b9"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="1852d3b8494888513bf58759613b6d24"/><file name="new_images_list.phtml" hash="a2a3a45920703dd66a56a0e1bfc7cdf1"/><file name="new_names_list.phtml" hash="e9171f28d97aa74df6bcc2038f1875fd"/></dir><dir name="content"><file name="new_grid.phtml" hash="d1a671c5408ef006e3b3bbbdf4b80a6a"/><file name="new_list.phtml" hash="1ab959c3111f777b455a091ef4f13261"/></dir></dir></dir></dir><dir name="rss"><dir name="product"><file name="price.phtml" hash="9e2da91f15d9bc7c4f9137a40adb655f"/></dir></dir><dir name="seo"><dir name="sitemap"><file name="container.phtml" hash="055bfe526e089da5084da610e9c9de05"/></dir><file name="sitemap.phtml" hash="9ac45235d6f58f50c3b8258da859d987"/><file name="tree.phtml" hash="9aa9ea44cb6c1425d5c4bb8b2a34d3fd"/></dir></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="cf8f751f327e03ffd5e6ff11c9cca045"/><file name="crosssell.phtml" hash="f846b6f6e4ee79420de84839cbfb6196"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="cce612babf4e1d6f66df134e0ec6cc7b"/></dir><file name="default.phtml" hash="b3230a3344422b69fe0527b206321cee"/></dir><file name="noItems.phtml" hash="e1d5660315f8b2abc5b8373b56545e7c"/><dir name="render"><file name="default.phtml" hash="cf9145f46461c9bbb719c877f56b6d97"/><file name="simple.phtml" hash="3e3f4b5d745ca4da7b4c7df976630032"/></dir><file name="shipping.phtml" hash="faeed9e9ee6fd12f1d2f490531c7e78d"/><dir name="sidebar"><file name="default.phtml" hash="5615dc4ca179bab6915e0aefb0ef0d71"/></dir><file name="sidebar.phtml" hash="0bb86a57046f40169f46dd4fbe48b950"/><file name="sidebar_header.phtml" hash="2087e8659568161c6fb14befbd3108f6"/><file name="totals.phtml" hash="25ad49ff5ba8f02d5df3f57bc7c00daa"/></dir><file name="cart.phtml" hash="d694f8873d474e6cd4289c4983636f21"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="8005bc1791e7a1ea8f59c6ba4b2e9267"/></dir><file name="addresses.phtml" hash="feb5e8ec57bc875b923c2ad52bdab7a6"/><file name="agreements.phtml" hash="220c0714dc256ca169ff0168aa16425d"/><dir name="billing"><file name="items.phtml" hash="2ab51a99adeab1b8f264b62118073d1b"/></dir><file name="billing.phtml" hash="51cfef68999dbc57e4e000b503c04bbb"/><dir name="item"><file name="default.phtml" hash="e4edf3e5bef85b4f1045bd5da60fd93d"/></dir><file name="link.phtml" hash="0776229ad7b61f1689c2d8b44e8eb118"/><dir name="overview"><file name="item.phtml" hash="c420be40ef6c72e8d1ecc83e40dcaf60"/></dir><file name="overview.phtml" hash="3dbf81e69642eb25b03b80484eb26e62"/><file name="shipping.phtml" hash="bdf2db8d29abc42d2d6e36169b5303f8"/><file name="state.phtml" hash="b47cb49f1492002d4e69128774e3fe8a"/><file name="success.phtml" hash="266a110f3f4fac29396a0115a40930a4"/></dir><dir name="onepage"><file name="agreements.phtml" hash="c21bc04d1420acbee0b2d64805e6875f"/><file name="billing.phtml" hash="5f4d59c489972f898aaf53322c74acee"/><file name="failure.phtml" hash="15b7a400d9cb354d67541eef4d518af4"/><file name="link.phtml" hash="5a34e095dfd173dd1f91a352e9f13d00"/><file name="login.phtml" hash="9b31699df376d0f02e0b44c7a4f97db6"/><dir name="payment"><file name="info.phtml" hash="e3d23f5d3e0b135ca38ec7ab5b41f851"/><file name="methods.phtml" hash="564b81f837527db02bff6197d222439b"/></dir><file name="payment.phtml" hash="a871ad331e0a51cbe5a2ca4a8a95aae9"/><file name="progress.phtml" hash="77892b4242d8f85b7e7cd40687cc3724"/><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="22928d8ded3a48773649731f4c038ce4"/><dir name="shipping_method"><file name="additional.phtml" hash="5199730d3e5dc50bd9deb29c4d239b7e"/><file name="available.phtml" hash="e9b29674956b8ee7a96d879706451c31"/></dir><file name="shipping_method.phtml" hash="0de50bac1dc8dc5ced6c4ba7f9b38c76"/><file name=".DS_Store" hash="50362efa9df8b7b5e40df61718f986df"/></dir><file name="onepage.phtml" hash="bbe18bd32577aadfd10152f75537fc8a"/><file name="success.phtml" hash="a337d5860c18f0082e25846ec6be0be3"/><dir name="total"><file name="default.phtml" hash="e5692fb2cc92e67776fe32017d33f7b4"/><file name="nominal.phtml" hash="69f66d9e00eb08cd48e296853317356d"/><file name="tax.phtml" hash="2221ba1f72426e4f476a7a69d409f56e"/></dir><file name=".DS_Store" hash="d3e1be868625ae3874dc7a91cfd85d5c"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="f462a549c66b94ffbe65b88460e9f5ef"/></dir><dir name="page"><file name="1column.phtml" hash="c3f59c078648c181ccd54c2d4905ba67"/><file name="2columns-left.phtml" hash="112a94ced9a906844a7d9f0f1c8a7fdb"/><file name="2columns-right.phtml" hash="c3d991644efa448241c3e139abdc21c9"/><file name="3columns.phtml" hash="2db743290c48b9cb19e78de442a2dcc3"/><file name="empty.phtml" hash="e1cf980f5825434acd526965a26598b7"/><dir name="html"><file name="breadcrumbs.phtml" hash="e35d955ba21a54577638d6ba1d1b65ed"/><file name="footer.content.phtml" hash="523582554c574f2893e8012e06451ec6"/><file name="footer.phtml" hash="f99b9bc421b6d40d8ecb1f30df050368"/><file name="head.phtml" hash="6658657868e18f46602446418097f8e5"/><file name="header.phtml" hash="a550aeb2b93fda62766f6cefaed69c87"/><file name="homecontent.phtml" hash="2e99fd18d02250923995133d49fa4d96"/><file name="notices.phtml" hash="27ca9a908e784aef202f40a09aa07248"/><file name="pager.phtml" hash="89cccc64bc5a8919c3434471e0c0c2a7"/><file name="top.links.phtml" hash="c75f4b24fecf115b7fdd1bc7a7d7e3b1"/><file name="topmenu.phtml" hash="f8f1ab9418e82b65c3f69d2dbb10399c"/><file name="wrapper.phtml" hash="6ba5012143024ac317edeb9b9a817ae4"/></dir><dir name="js"><file name="calendar.phtml" hash="c2ffdedc3f288fd2aa2cdefedfa677e3"/><file name="cookie.phtml" hash="cbf8179d5c31aac3a56baf82d87a797c"/></dir><file name="popup.phtml" hash="af58cacace6aa3d9940f81f234d8ed17"/><file name="print.phtml" hash="961ae7304d163894a8a55fb333fb404b"/><file name="redirect.phtml" hash="57643bd7e8b12eb1350e109682a516a9"/><dir name="switch"><file name="flags.phtml" hash="cb4e4797c21857279dd3dd65c5c1a2a8"/><file name="languages.phtml" hash="9a55294b6520fcc942e5c06b9f62673b"/><file name="stores.phtml" hash="47a4241d9e5243e9fe44b3cc85ec4856"/></dir><dir name="template"><file name="container.phtml" hash="30bf0d92d814935cbd85d76bfb36a921"/><file name="links.phtml" hash="7f72659170e6c7497b330d1e74d8d43e"/><file name="linksblock.phtml" hash="a40d075fa6240d5a0b1a660a767f80b4"/></dir><file name=".DS_Store" hash="f7f6e568836066649505c621faa26c9b"/></dir><file name=".DS_Store" hash="efef079facbe9e47cb199a597bcff2f2"/></dir></dir><file name=".DS_Store" hash="121325bae38010303f5e55b6e1db743a"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="mp_toolshop"><dir><dir name="css"><file name="easytabs.css" hash="b38e0846620909529021252f087bc848"/><file name="oauth-simple.css" hash="441743c00cd53acda6b744d54a5d638a"/><file name="print.css" hash="84ce72223e34eaf05c5035088e386922"/><file name="styles-ie.css" hash="7df97bb87c1a30aa385fa914c6323348"/><file name="styles.css" hash="3e6996ffd3632c3aec95da7257d8fb16"/></dir><dir name="images"><file name="bg_search_icon.gif" hash="b5ff3436dd72b81cb2b900f73e67f7d8"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><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_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="breadcrum.gif" hash="6582c76118c50504aa8532d13ec69945"/><file name="btn-cart.png" hash="150014265b6fd056918e8bbb8d9f11cb"/><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><file name="check-out-icon-white.gif" hash="0b79ca0e51f232c5bd4e9427c352878c"/><file name="check-out-icon.gif" hash="4eacc04bc55ce9ff90f4394c13366e56"/><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><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-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><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_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.gif" hash="6fada77fbd47ee54c64c55ae58e5b2cb"/><file name="logo_arial.gif" hash="f415fed05674eced27ca4b9e852c774e"/><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><file name="nav-category.gif" hash="42c93e9fb3ba87737938b01dbe239757"/><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="pag-li.png" hash="e54ce655c88421fb587b8edb199bbcd5"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><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="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="jquery-1.7.2.min.js" hash="b11ced65f32fedbe9bf81ef9db0f3c94"/><file name="jquerynoconflict.js" hash="6932bbddf488374a70b55fbb62052fd2"/></dir><dir name="quickview"><dir name="css"><file name="cloud-zoom.css" hash="0521604f766ffd4877c7b56ffa46c272"/><file name="global.css" hash="b6adcb0640fe572355020ba6d8c13aaa"/><file name="jquery.fancybox-1.3.4.css" hash="086d93aea5a530a3b0a7bfd5777c7e3a"/><file name="jquery.thickbox.css" hash="d674281ed42861419ed9b3f9171f91fe"/><file name="stylefancy.css" hash="ab656afe8dd6bc8fc8c0e48cf48da459"/></dir><dir name="images"><file name="Thumbs.db" hash="ee01d41993d281f758ee8ca9b14afbcc"/><file name="arrow-next.gif" hash="c61dbe2ad601ebe18e6b1a0b50c10a4f"/><file name="arrow-next.png" hash="3364d07dbfdea5ecbc9c3ce680f05ebc"/><file name="arrow-prev.gif" hash="98bf1dddfa471275bd50486d3e3db225"/><file name="arrow-prev.png" hash="c2e833d6b87654b1ea07fc323e927965"/><file name="background.png" hash="96519dab3e5a2a09075632cca4a98141"/><file name="fancy_nav_left.png" hash="798edbcf3b9b8e4f4dc831d188593d2d"/><file name="fancy_nav_right.png" hash="37357762ba52e543e8e550ae02af8c30"/><dir name="fancybox"><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="6c9d925f49eac8653d81c1a53d533a0a"/></dir><file name="fancybox_loading.gif" hash="c6f1ad4957e50b83bb27691df8bc3f41"/><file name="fancybox_sprite.png" hash="61c66a5947e7bf772f7ec1c7985feec6"/><file name="loader_transparent.gif" hash="7c29a73cbc43bc9ab84a353005a12e61"/><file name="loadingAnimation.gif" hash="7c29a73cbc43bc9ab84a353005a12e61"/><file name="loading_background.png" hash="acf427e932fb9413700a4b8b58b41eec"/><file name="md_quickview_preview.png" hash="2717f47bdc9144bc7e3774e8b1aeb61d"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="quick_look.gif" hash="a97a2313657b668d6cac8e197ecc7eb5"/></dir></dir></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="magpassion"><dir name="quickview"><file name="cloud-zoom.1.0.2.min.js" hash="187c6bd5c7e1357b9cb50257edc8b4e9"/><file name="colorpicker.js" hash="9afb6169162cfd3834b6f836438f53d4"/><file name="configurable.js" hash="cf03517382aea8a55b4cafe10988dbea"/><dir name="fancy"><dir name="fancybox"><file name="jquery.fancybox-1.3.4.pack.js" hash="ebe607c948a447c11c4e017ecf1dde1c"/><file name="jquery.fancybox-1.3.4.pack.js-" hash="cc4dfcd4638507d8c53558426c70a2e9"/><file name="jquery.min.js" hash="c77d319252ddf43debb940d9e3717d3d"/></dir></dir><dir name="images"><file name="controls.png" hash="1881b565ed3ad05432ab5076eee5be0c"/><file name="left.png" hash="209569b438376ce7dd12c05334d81593"/><file name="loading.gif" hash="58c35cf5e9fcbe3914c839c6665794bd"/><file name="right.png" hash="3fde6ad092b250de130df3aaaea99c46"/><file name="wait.gif" hash="a51c5608d01acf32df728f299767f82b"/></dir><dir name="js"><file name="jquery-1.7.2.min.js" hash="09bf7cb5fd333ee8c1c6be7475f85026"/><file name="jquery.maskedinput.js" hash="e8011949ba3cbc4ab53ee95c8f018812"/><file name="md_quickview.js" hash="18511d3490d0e947783e2af905d4af77"/><file name="slides.min.jquery.js" hash="82b8df20ccb65773df2a4cc65f368be9"/></dir><file name="product.js" hash="e785f53c717fdb231c28a09e13bffa9e"/><dir name="thickbox"><file name="jquery.noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><file name="jquery.thickbox.js" hash="409ccdfddea3d126eeea78f615a8f987"/></dir></dir><dir name="slider"><file name="jquery-1.7.2.min.js" hash="09bf7cb5fd333ee8c1c6be7475f85026"/><file name="jquery.easing.1.3.js" hash="794e5e3691dc426b2b66b9e4f6c18798"/><file name="jquery.noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><file name="tms-0.3.js" hash="3c0e74cc326fc89f41b4595cc10fbd2b"/><file name="tms_presets.js" hash="1426268f9b851061bc0429b4999056c5"/></dir><file name=".DS_Store" hash="b27ab8f7c7071fb3a7e4b6e6db2f38a5"/></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.2.17</min><max>6.0.0</max></php></required></dependencies>
19
  </package>