MT_Giftcard - Version 1.0.8

Version Notes

Implemented on 1.9.x - 1.4.2.0

Download this release

Release Info

Developer Edvinas Stulpinas
Extension MT_Giftcard
Version 1.0.8
Comparing to
See all releases


Code changes from version 1.0.6 to 1.0.8

app/code/community/MT/Giftcard/Block/Checkout/Payment/Giftcard/Form.php CHANGED
@@ -24,7 +24,7 @@ class MT_Giftcard_Block_Checkout_Payment_Giftcard_Form
24
  return false;
25
 
26
  foreach ($items as $item) {
27
- if ($item->getProduct()->getTypeId() == MT_Giftcard_Model_Catalog_Product_Type::TYPE_GIFTCARD_PRODUCT)
28
  return false;
29
  }
30
 
24
  return false;
25
 
26
  foreach ($items as $item) {
27
+ if ($item->getProductType() == MT_Giftcard_Model_Catalog_Product_Type::TYPE_GIFTCARD_PRODUCT)
28
  return false;
29
  }
30
 
app/code/community/MT/Giftcard/Block/Sales/Order/Email/Items/Invoice/Giftcard.php CHANGED
@@ -6,9 +6,8 @@ class MT_Giftcard_Block_Sales_Order_Email_Items_Invoice_Giftcard
6
  public function getItemOptions()
7
  {
8
  $result = parent::getItemOptions();
9
- $product = Mage::getModel('catalog/product')->load($this->getItem()->getProductId());
10
 
11
- if ($product->getTypeId() == MT_Giftcard_Model_Catalog_Product_Type::TYPE_GIFTCARD_PRODUCT) {
12
  $giftCardValue = '';
13
  $giftCardCollection = Mage::getModel('giftcard/giftcard')->getCollection()
14
  ->addFieldToFilter('order_item_id', $this->getItem()->getOrderItemId());
6
  public function getItemOptions()
7
  {
8
  $result = parent::getItemOptions();
 
9
 
10
+ if ($this->getItem()->getProductType() == MT_Giftcard_Model_Catalog_Product_Type::TYPE_GIFTCARD_PRODUCT) {
11
  $giftCardValue = '';
12
  $giftCardCollection = Mage::getModel('giftcard/giftcard')->getCollection()
13
  ->addFieldToFilter('order_item_id', $this->getItem()->getOrderItemId());
app/code/community/MT/Giftcard/Block/Sales/Order/Print/Item/Renderer/Giftcard.php CHANGED
@@ -6,8 +6,7 @@ class MT_Giftcard_Block_Sales_Order_Print_Item_Renderer_Giftcard
6
  public function getItemOptions()
7
  {
8
  $result = parent::getItemOptions();
9
- $product = $this->getItem()->getProduct();
10
- if ($product->getTypeId() == MT_Giftcard_Model_Catalog_Product_Type::TYPE_GIFTCARD_PRODUCT) {
11
  $giftCardValue = '';
12
  $giftCardCollection = Mage::getModel('giftcard/giftcard')->getCollection()
13
  ->addFieldToFilter('order_item_id', $this->getItem()->getId());
6
  public function getItemOptions()
7
  {
8
  $result = parent::getItemOptions();
9
+ if ($this->getItem()->getProductType() == MT_Giftcard_Model_Catalog_Product_Type::TYPE_GIFTCARD_PRODUCT) {
 
10
  $giftCardValue = '';
11
  $giftCardCollection = Mage::getModel('giftcard/giftcard')->getCollection()
12
  ->addFieldToFilter('order_item_id', $this->getItem()->getId());
app/code/community/MT/Giftcard/Helper/Data.php CHANGED
@@ -132,4 +132,15 @@ class MT_Giftcard_Helper_Data extends Mage_Core_Helper_Abstract
132
  return Mage::getBaseDir('media') . DS.'mt'. DS .'giftcard'. DS.'template'. DS;
133
  }
134
 
 
 
 
 
 
 
 
 
 
 
 
135
  }
132
  return Mage::getBaseDir('media') . DS.'mt'. DS .'giftcard'. DS.'template'. DS;
133
  }
134
 
135
+ public function isAjax()
136
+ {
137
+ $request = Mage::app()->getRequest();
138
+ if ($request->isXmlHttpRequest()) {
139
+ return true;
140
+ }
141
+ if ($request->getParam('ajax') || $request->getParam('isAjax')) {
142
+ return true;
143
+ }
144
+ return false;
145
+ }
146
  }
app/code/community/MT/Giftcard/Model/Catalog/Product/Type/Giftcard.php CHANGED
@@ -4,6 +4,11 @@ class MT_Giftcard_Model_Catalog_Product_Type_Giftcard extends Mage_Catalog_Model
4
  {
5
  protected $_canConfigure = true;
6
 
 
 
 
 
 
7
  public function hasOptions($product = null)
8
  {
9
  return true;
@@ -81,7 +86,7 @@ class MT_Giftcard_Model_Catalog_Product_Type_Giftcard extends Mage_Catalog_Model
81
 
82
  $seriesCollection = Mage::getModel('giftcard/series')
83
  ->getCollectionByProduct($product->getId(), true);
84
- $seriesCollection->addFieldToSelect('entity_id');
85
 
86
  $in = array();
87
  if ($seriesCollection->count() > 0) {
4
  {
5
  protected $_canConfigure = true;
6
 
7
+ public function hasRequiredOptions($product = null)
8
+ {
9
+ return true;
10
+ }
11
+
12
  public function hasOptions($product = null)
13
  {
14
  return true;
86
 
87
  $seriesCollection = Mage::getModel('giftcard/series')
88
  ->getCollectionByProduct($product->getId(), true);
89
+
90
 
91
  $in = array();
92
  if ($seriesCollection->count() > 0) {
app/code/community/MT/Giftcard/Model/Core/Email/Template/Init.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- if (class_exists('Aschroder_SMTPPro_Model_Email_Template')) {
4
  class MT_Giftcard_Model_Core_Email_Template_Init extends Aschroder_SMTPPro_Model_Email_Template
5
  {}
6
  } else {
1
  <?php
2
 
3
+ if (@class_exists('Aschroder_SMTPPro_Model_Email_Template')) {
4
  class MT_Giftcard_Model_Core_Email_Template_Init extends Aschroder_SMTPPro_Model_Email_Template
5
  {}
6
  } else {
app/code/community/MT/Giftcard/Model/Giftcard.php CHANGED
@@ -35,7 +35,6 @@ class MT_Giftcard_Model_Giftcard extends Mage_Core_Model_Abstract
35
  public function codeExist($code)
36
  {
37
  $collection = $this->getCollection()
38
- ->addFieldToSelect('entity_id')
39
  ->addFieldToFilter('code', $code)
40
  ->setPageSize(1);
41
  return $collection->count() == 1;
@@ -74,7 +73,6 @@ class MT_Giftcard_Model_Giftcard extends Mage_Core_Model_Abstract
74
  return false;
75
 
76
  $collection = $this->getCollection()
77
- ->addFieldToSelect('entity_id')
78
  ->addFieldToFilter('code', $code)
79
  ->addFieldToFilter('status', self::STATUS_SOLD)
80
  ->setPageSize(1);
@@ -88,7 +86,6 @@ class MT_Giftcard_Model_Giftcard extends Mage_Core_Model_Abstract
88
  return $this;
89
 
90
  $collection = $this->getCollection()
91
- ->addFieldToSelect('entity_id')
92
  ->addFieldToFilter('code', $code)
93
  ->setPageSize(1);
94
  if ($collection->count() == 0)
35
  public function codeExist($code)
36
  {
37
  $collection = $this->getCollection()
 
38
  ->addFieldToFilter('code', $code)
39
  ->setPageSize(1);
40
  return $collection->count() == 1;
73
  return false;
74
 
75
  $collection = $this->getCollection()
 
76
  ->addFieldToFilter('code', $code)
77
  ->addFieldToFilter('status', self::STATUS_SOLD)
78
  ->setPageSize(1);
86
  return $this;
87
 
88
  $collection = $this->getCollection()
 
89
  ->addFieldToFilter('code', $code)
90
  ->setPageSize(1);
91
  if ($collection->count() == 0)
app/code/community/MT/Giftcard/Model/Giftcard/Action.php CHANGED
@@ -48,8 +48,7 @@ class MT_Giftcard_Model_Giftcard_Action
48
  public function exportGiftCardsCodes($giftCardIds, $format)
49
  {
50
  $collection = Mage::getModel('giftcard/giftcard')->getCollection()
51
- ->addFieldToFilter('entity_id', array('in' => $giftCardIds))
52
- ->addFieldToSelect('code');
53
 
54
  switch ($format) {
55
  case 'xlsx':
@@ -82,8 +81,7 @@ class MT_Giftcard_Model_Giftcard_Action
82
 
83
  foreach ($items as $item) {
84
 
85
- $product = $item->getProduct();
86
- if ($product->getTypeId() != MT_Giftcard_Model_Catalog_Product_Type::TYPE_GIFTCARD_PRODUCT)
87
  continue;
88
 
89
  $option = $item->getProductOptions();
48
  public function exportGiftCardsCodes($giftCardIds, $format)
49
  {
50
  $collection = Mage::getModel('giftcard/giftcard')->getCollection()
51
+ ->addFieldToFilter('entity_id', array('in' => $giftCardIds));
 
52
 
53
  switch ($format) {
54
  case 'xlsx':
81
 
82
  foreach ($items as $item) {
83
 
84
+ if ($item->getProductType() != MT_Giftcard_Model_Catalog_Product_Type::TYPE_GIFTCARD_PRODUCT)
 
85
  continue;
86
 
87
  $option = $item->getProductOptions();
app/code/community/MT/Giftcard/Model/Series.php CHANGED
@@ -141,8 +141,7 @@ class MT_Giftcard_Model_Series extends Mage_Core_Model_Abstract
141
 
142
  $giftCardCollection = Mage::getModel('giftcard/giftcard')->getCollection()
143
  ->addFieldToFilter('series_id', array('in' => $in))
144
- ->addFieldToFilter('status', MT_Giftcard_Model_Giftcard::STATUS_ACTIVE)
145
- ->addFieldToSelect('series_id');
146
  $giftCardCollection->getSelect()->group('series_id');
147
 
148
  $availableSeries = array();
141
 
142
  $giftCardCollection = Mage::getModel('giftcard/giftcard')->getCollection()
143
  ->addFieldToFilter('series_id', array('in' => $in))
144
+ ->addFieldToFilter('status', MT_Giftcard_Model_Giftcard::STATUS_ACTIVE);
 
145
  $giftCardCollection->getSelect()->group('series_id');
146
 
147
  $availableSeries = array();
app/code/community/MT/Giftcard/controllers/Adminhtml/Giftcard/SeriesController.php CHANGED
@@ -150,7 +150,7 @@ class MT_Giftcard_Adminhtml_Giftcard_SeriesController extends Mage_Adminhtml_Con
150
 
151
  public function gridAction()
152
  {
153
- if (!$this->getRequest()->isAjax()) {
154
  $this->_forward('noRoute');
155
  return;
156
  }
@@ -163,7 +163,7 @@ class MT_Giftcard_Adminhtml_Giftcard_SeriesController extends Mage_Adminhtml_Con
163
 
164
  public function gridGiftCardAction()
165
  {
166
- if (!$this->getRequest()->isAjax()) {
167
  $this->_forward('noRoute');
168
  return;
169
  }
@@ -172,5 +172,4 @@ class MT_Giftcard_Adminhtml_Giftcard_SeriesController extends Mage_Adminhtml_Con
172
 
173
  $this->getResponse()->setBody($this->getLayout()->createBlock('giftcard/adminhtml_giftcard_series_edit_tabs_generate_grid')->toHtml());
174
  }
175
-
176
  }
150
 
151
  public function gridAction()
152
  {
153
+ if (!Mage::helper('giftcard')->isAjax()) {
154
  $this->_forward('noRoute');
155
  return;
156
  }
163
 
164
  public function gridGiftCardAction()
165
  {
166
+ if (!Mage::helper('giftcard')->isAjax()) {
167
  $this->_forward('noRoute');
168
  return;
169
  }
172
 
173
  $this->getResponse()->setBody($this->getLayout()->createBlock('giftcard/adminhtml_giftcard_series_edit_tabs_generate_grid')->toHtml());
174
  }
 
175
  }
app/code/community/MT/Giftcard/controllers/Adminhtml/Giftcard/TemplateController.php CHANGED
@@ -14,7 +14,7 @@ class MT_Giftcard_Adminhtml_Giftcard_TemplateController extends Mage_Adminhtml_C
14
 
15
  public function gridAction()
16
  {
17
- if (!$this->getRequest()->isAjax()) {
18
  $this->_forward('noRoute');
19
  return;
20
  }
@@ -253,7 +253,7 @@ class MT_Giftcard_Adminhtml_Giftcard_TemplateController extends Mage_Adminhtml_C
253
  $fields = $design->getAdditionalFields();
254
  foreach ($fields as $field) {
255
  if (isset($params[$field[0]]))
256
- $template->setData($field[2]['index'], $params[$field[0]]);
257
  else
258
  $template->setData($field[2]['index'], '');
259
  }
14
 
15
  public function gridAction()
16
  {
17
+ if (!Mage::helper('giftcard')->isAjax()) {
18
  $this->_forward('noRoute');
19
  return;
20
  }
253
  $fields = $design->getAdditionalFields();
254
  foreach ($fields as $field) {
255
  if (isset($params[$field[0]]))
256
+ $template->setData($field[2]['index'], urldecode($params[$field[0]]));
257
  else
258
  $template->setData($field[2]['index'], '');
259
  }
app/code/community/MT/Giftcard/controllers/Checkout/CartController.php CHANGED
@@ -100,9 +100,9 @@ class MT_Giftcard_Checkout_CartController
100
 
101
  if ($codeLength) {
102
  if ($isCodeLengthValid && $helper->isGiftCardCodeAddedToQuote($this->_getQuote()->getMtGiftCard(), $giftCardCode)) {
103
- $success = $this->__('Gift card "%s" was added.', Mage::helper('core')->escapeHtml($giftCardCode));
104
  } else {
105
- $error = $this->__('Gift card "%s" is not valid.', Mage::helper('core')->escapeHtml($giftCardCode));
106
  }
107
  } else {
108
  $error = $this->__('Gift card was canceled.');
100
 
101
  if ($codeLength) {
102
  if ($isCodeLengthValid && $helper->isGiftCardCodeAddedToQuote($this->_getQuote()->getMtGiftCard(), $giftCardCode)) {
103
+ $success = $this->__('Gift card "%s" was applied.', $giftCardCode);
104
  } else {
105
+ $error = $this->__('Gift card "%s" is not valid.', $giftCardCode);
106
  }
107
  } else {
108
  $error = $this->__('Gift card was canceled.');
app/code/community/MT/Giftcard/controllers/GiftcardController.php CHANGED
@@ -15,7 +15,6 @@ class MT_Giftcard_GiftcardController
15
  $orderId = $params['id'];
16
 
17
  $orders = Mage::getResourceModel('sales/order_collection')
18
- ->addFieldToSelect('*')
19
  ->addFieldToFilter('customer_id', Mage::getSingleton('customer/session')->getCustomer()->getId())
20
  ->addFieldToFilter('state', array('in' => Mage::getSingleton('sales/order_config')->getVisibleOnFrontStates()))
21
  ->addFieldToFilter('entity_id', $orderId)
15
  $orderId = $params['id'];
16
 
17
  $orders = Mage::getResourceModel('sales/order_collection')
 
18
  ->addFieldToFilter('customer_id', Mage::getSingleton('customer/session')->getCustomer()->getId())
19
  ->addFieldToFilter('state', array('in' => Mage::getSingleton('sales/order_config')->getVisibleOnFrontStates()))
20
  ->addFieldToFilter('entity_id', $orderId)
app/code/community/MT/Giftcard/sql/giftcard_setup/mysql4-upgrade-1.0.0-1.0.1.php CHANGED
@@ -1,10 +1,7 @@
1
  <?php
2
- /* @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
3
- $installer = $this;
4
  $installer->startSetup();
5
 
6
- $installer = new Mage_Sales_Model_Resource_Setup('core_setup');
7
-
8
  $installer->addAttribute('order','mt_gift_card',array(
9
  'label' => 'Gift Cards',
10
  'type' => 'text',
1
  <?php
2
+ $installer = Mage::getResourceModel('sales/setup', 'default_setup');
 
3
  $installer->startSetup();
4
 
 
 
5
  $installer->addAttribute('order','mt_gift_card',array(
6
  'label' => 'Gift Cards',
7
  'type' => 'text',
app/code/community/MT/Giftcard/sql/giftcard_setup/mysql4-upgrade-1.0.1-1.0.2.php CHANGED
@@ -1,8 +1,5 @@
1
  <?php
2
- /* @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
3
-
4
  $installer = Mage::getResourceModel('sales/setup', 'default_setup');
5
-
6
  $installer->startSetup();
7
 
8
 
1
  <?php
 
 
2
  $installer = Mage::getResourceModel('sales/setup', 'default_setup');
 
3
  $installer->startSetup();
4
 
5
 
app/code/community/MT/Giftcard/sql/giftcard_setup/mysql4-upgrade-1.0.2-1.0.3.php CHANGED
@@ -1,8 +1,5 @@
1
  <?php
2
- /* @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
3
-
4
  $installer = Mage::getResourceModel('sales/setup', 'default_setup');
5
-
6
  $installer->startSetup();
7
 
8
  $installer->addAttribute('order', 'forced_can_creditmemo', array(
1
  <?php
 
 
2
  $installer = Mage::getResourceModel('sales/setup', 'default_setup');
 
3
  $installer->startSetup();
4
 
5
  $installer->addAttribute('order', 'forced_can_creditmemo', array(
app/code/community/MT/Giftcard/sql/giftcard_setup/mysql4-upgrade-1.0.3-1.0.4.php DELETED
@@ -1,7 +0,0 @@
1
- <?php
2
- /* @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
3
-
4
- $installer = $this;
5
- $installer->startSetup();
6
-
7
- $installer->endSetup();
 
 
 
 
 
 
 
app/design/frontend/base/default/layout/mt/giftcard.xml CHANGED
@@ -21,17 +21,20 @@
21
  <action method="addItem"><type>skin_js</type><name>js/mt/giftcard/giftcardcheckout.js</name><params/></action>
22
  <action method="addCss"><stylesheet>css/mt/giftcard/giftcard.css</stylesheet> </action>
23
  </reference>
24
- <reference name="checkout.onepage.payment.methods_additional">
25
  <block type="giftcard/checkout_payment_giftcard" name="checkout.onepage.payment.methods_additional.giftcard" as="methods_additional_giftcard" before="-">
26
  <block type="giftcard/checkout_payment_giftcard_form" name="checkout.onepage.payment.methods_additional.giftcard.form" as="methods_additional_giftcard_form"/>
27
  </block>
28
- </reference>
29
- <reference name="checkout.payment.methods">
 
 
 
30
  <block type="giftcard/checkout_payment_giftcard" name="checkout.payment.methods.giftcard" as="additional" before="-">
31
- <block type="giftcard/checkout_payment_giftcard_form" name="checkout.payment.methods.form" as="methods_additional_giftcard_form"/>
32
  </block>
33
  </reference>
34
- </checkout_onepage_index>
35
 
36
  <checkout_cart_index>
37
  <reference name="head">
21
  <action method="addItem"><type>skin_js</type><name>js/mt/giftcard/giftcardcheckout.js</name><params/></action>
22
  <action method="addCss"><stylesheet>css/mt/giftcard/giftcard.css</stylesheet> </action>
23
  </reference>
24
+ <!--reference name="checkout.onepage.payment.methods_additional">
25
  <block type="giftcard/checkout_payment_giftcard" name="checkout.onepage.payment.methods_additional.giftcard" as="methods_additional_giftcard" before="-">
26
  <block type="giftcard/checkout_payment_giftcard_form" name="checkout.onepage.payment.methods_additional.giftcard.form" as="methods_additional_giftcard_form"/>
27
  </block>
28
+ </reference-->
29
+ </checkout_onepage_index>
30
+
31
+ <checkout_onepage_paymentmethod>
32
+ <reference name="root">
33
  <block type="giftcard/checkout_payment_giftcard" name="checkout.payment.methods.giftcard" as="additional" before="-">
34
+ <block type="giftcard/checkout_payment_giftcard_form" name="checkout.payment.methods.form" as="additional"/>
35
  </block>
36
  </reference>
37
+ </checkout_onepage_paymentmethod>
38
 
39
  <checkout_cart_index>
40
  <reference name="head">
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MT_Giftcard</name>
4
- <version>1.0.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/copyleft/gpl.html">GPL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Summary </summary>
10
  <description>Free magento gift card extension</description>
11
- <notes>Fixed camelcase problem on linux servers</notes>
12
  <authors><author><name>Edvinas Stulpinas</name><user>edas1</user><email>edvinas.stulpinas@gmail.com</email></author></authors>
13
- <date>2015-02-06</date>
14
- <time>13:57:22</time>
15
- <contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="MT"><dir name="Giftcard"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tabs"><dir name="Giftcardseries"><file name="Form.php" hash="6ba57986e47de3810eb5432edd8cae13"/><file name="Grid.php" hash="d3af7e0412fc9b81543af8a58d9bb2c5"/></dir></dir><file name="Tabs.php" hash="7d8a2728a2c2b931381b0ef627160323"/></dir></dir></dir><dir name="Giftcard"><dir name="Giftcard"><dir name="List"><file name="Grid.php" hash="dcd306e00d75bd69f8251fe8b09798ed"/></dir><file name="List.php" hash="176da6866b6abb40cf2dc9d3cba7597c"/></dir><dir name="Series"><dir name="Edit"><file name="Form.php" hash="4d52c40a6e56e6851af652b006ab96d8"/><dir name="Tabs"><file name="Edit.php" hash="4ecf35ae08c7d659db770619979c7273"/></dir><file name="Tabs.php" hash="f284f9dc303bca6ae9f2f869993a0697"/></dir><file name="Edit.php" hash="4eadad4f86671831b5c0133a419775f3"/><dir name="List"><file name="Grid.php" hash="de02b111b41d9db067666adbe15c1c5a"/></dir><file name="List.php" hash="451587dd80ac40d5ec0b08e39d2029e6"/></dir><dir name="Template"><dir name="Edit"><file name="Edit.php" hash="1917934e01ce1d4b2a45132454a6e810"/><file name="Form.php" hash="722fb3b93b8c5a800462e8d62c228bb6"/><file name="Js.php" hash="33c7d8b6eee7cb36761bd82ea076ca5e"/><file name="Tabs.php" hash="73764b68cc7d9fdd83447c13a6db5787"/><dir name="Theme"><file name="One.php" hash="d70a1e4d19aa94ca972b69b376926bd3"/></dir></dir><file name="Edit.php" hash="afec06744ddfec3f8297ef8fbc959f04"/><dir name="List"><file name="Grid.php" hash="7c3e7a4303e1dd3b8da6d3e237cc54b3"/></dir><file name="List.php" hash="0345847adc717ce416c1d8d7679ed130"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><dir name="Create"><dir name="Total"><file name="Giftcard.php" hash="d8391b1b86be319b725debf16b901c7e"/></dir></dir><file name="Refund.php" hash="7f874138440cf23e2e8eb334ef471c62"/><dir name="Total"><file name="Giftcard.php" hash="5c883c7ecb44d32e9a3d7ce9536e5e84"/></dir><dir name="View"><dir name="Total"><file name="Giftcard.php" hash="b45537b5972ad058685254fdfe6f3127"/></dir></dir></dir><dir name="Items"><dir name="Column"><dir name="Name"><file name="Giftcard.php" hash="5daed6338457ae68894de91d3c061ce9"/></dir></dir></dir><dir name="Order"><file name="View.php" hash="c1b8d185d1b5066ab9b9b7ebcdf95f96"/></dir><dir name="Total"><file name="Giftcard.php" hash="c7e43f5fd38e7c8bca659ad0dcc87d7e"/></dir></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="DateTime.php" hash="7362458637165e5564d4a87abcaa9033"/><file name="Days.php" hash="2bfc2fb0491b77a962544d82cdb3c66d"/><file name="Empty.php" hash="de0d661ae7e8831bef15d57cb998632f"/><file name="Price.php" hash="56792c71abb74e153b35bf2a8c32ec6a"/><file name="Status.php" hash="504e0af3eee9c162aecaa9ad97527d08"/><file name="Store.php" hash="18e0987cf166c487206ddbeed70c58de"/><file name="Translate.php" hash="c8fd54ec81c5afda4102755d9f31cfa9"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Helper"><dir name="Form"><file name="Price.php" hash="3c7443352425f91916f9029248d8c08e"/></dir></dir><dir name="View"><dir name="Type"><file name="Giftcard.php" hash="fceb859207300158713008c2d7a9166b"/></dir></dir></dir></dir><dir name="Checkout"><dir name="Cart"><file name="Giftcard.php" hash="024083c88fb0f3cff24c1d982f346d33"/><dir name="Item"><file name="Renderer.php" hash="13f1c3a5e4cc9bc7d778b38b160d59e9"/></dir></dir><dir name="Payment"><dir name="Giftcard"><file name="Form.php" hash="79278f09f345acfc3e3ed910ad63667f"/></dir><file name="Giftcard.php" hash="34de567a7edeef6c4fe5be12acbedc5e"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Item"><dir name="Renderer"><file name="Giftcard.php" hash="b20c78f0df3e59a630f51db350bf4ac4"/></dir></dir></dir><dir name="Email"><dir name="Items"><dir name="Invoice"><file name="Giftcard.php" hash="a1d758b04589986493eae320b733711a"/></dir><dir name="Order"><file name="Giftcard.php" hash="a7ef6d04643fbd9c1c76cd1258ad1540"/></dir></dir></dir><dir name="Info"><file name="Buttons.php" hash="264eed43b6476d3b573c64763bae89f0"/></dir><dir name="Invoice"><dir name="Item"><dir name="Renderer"><file name="Giftcard.php" hash="18fe4aa679f67afee128d3268bd209ae"/></dir></dir><dir name="Totals"><file name="Giftcard.php" hash="bb7f13c1b38704c60b79045bee52ba67"/></dir></dir><dir name="Item"><dir name="Renderer"><file name="Giftcard.php" hash="2150aa2937bca87208f529041b4b4c60"/></dir></dir><dir name="Print"><dir name="Item"><dir name="Renderer"><file name="Giftcard.php" hash="24d44730d5a00475759eee0bf9ace0a2"/></dir></dir></dir><dir name="Shipment"><dir name="Item"><dir name="Renderer"><file name="Giftcard.php" hash="c83a1ea831ce08046cd09d50f0654580"/></dir></dir></dir><dir name="Totals"><file name="Giftcard.php" hash="783d7f72b9fd315ebac5db64431c5309"/></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="c5f821d6df23c647571cd97260aace53"/></dir></dir><file name="Data.php" hash="610411308591c5a3bad587afb36fe11f"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Giftcard"><file name="Design.php" hash="db768d5c518b8dfe233f6d5457b5b9c4"/><file name="Event.php" hash="9875a70a1581b3792f649f9b6092331f"/><file name="Format.php" hash="bc91cab62109d222de772bbba7aa6274"/><file name="Series.php" hash="aba6564547ffa61d8bef13869816a365"/><file name="State.php" hash="ca38a55cfd32a71379a572a949afd8f2"/><file name="Status.php" hash="d6ed0b91ac65615c72af6c5915519ec5"/><file name="Template.php" hash="870a1b61bf5a107aa766ec6446959cb2"/><file name="Type.php" hash="ef686e71f5e08b90d33731d31bc17539"/></dir><dir name="Locale"><file name="Currency.php" hash="212769c4b0ba792abcbf0764f0293495"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Option"><dir name="Type"><file name="GiftcardValue.php" hash="4358ccd736862f1869e7c13689cc4d69"/></dir></dir><file name="Option.php" hash="b5422bc85fda78a79601136979248aba"/><file name="Price.php" hash="10926b8121b069581716b2d722f50682"/><dir name="Type"><file name="Giftcard.php" hash="419a67ea8db4cfd6f5b85faf3a1c5118"/></dir><file name="Type.php" hash="f226aad02e2182c60211e4f3ec970a55"/></dir><file name="Product.php" hash="8d8ddd5e1f0433eca6fcfe1836aab9ca"/></dir><dir name="CatalogIndex"><dir name="Data"><file name="Giftcard.php" hash="802f244a7c7d446318cb164e206a51ff"/></dir></dir><dir name="Checkout"><file name="Giftcard.php" hash="1849f47f79a9a59c77673ef6ec523f3e"/></dir><dir name="Core"><dir name="Email"><dir name="Template"><file name="Init.php" hash="91df7b3a68d8a8f3ce8c5942edc84175"/></dir><file name="Template.php" hash="482a942bee454d2290849daec3039b85"/></dir></dir><dir name="Email"><dir name="Template"><file name="Mailer.php" hash="2aa63130aad78559aff57f3092330d5f"/></dir></dir><dir name="Export"><file name="Abstract.php" hash="09eb1f2591a952299faece886fe42ea4"/><dir name="Adapter"><file name="Csv.php" hash="4843c1e3c036e73a7ad8d14a38359075"/><file name="Excel.php" hash="9667e698055b0b933a0b00c4502ded09"/><file name="Interface.php" hash="7fa119032136a44eba0d88aa2f25c313"/><file name="Pdf.php" hash="4a84ddff48ee47baa5a1ea9c8b27df52"/><file name="Zip.php" hash="c2d4aee14e50ff7161b71fb05d9eff1b"/></dir><file name="Collection.php" hash="b2d1ac3db40c0b893814968c604a3c31"/><file name="Grid.php" hash="5adeab37fa0f8e81239a3c40143fef82"/><file name="Object.php" hash="a6e7a80e3eb76d44b40d97c8f3da7d89"/></dir><dir name="Giftcard"><file name="Action.php" hash="d339b84e2cc27b2c7913a9aa1787afe9"/><dir name="Design"><file name="Abstract.php" hash="055e70d444169989e7c2284e3150c46d"/><file name="Default.php" hash="0b2d0e7aaf7675216ce74a7c0870aae4"/></dir><file name="Draw.php" hash="8786b2d3f519c605c72c43fa9ebd5b0b"/><file name="Pdf.php" hash="a5bee72e4155cc5fbd960326bbc78ef5"/></dir><file name="Giftcard.php" hash="59ff473b3885fac1ef2e140fd591ad12"/><dir name="Import"><file name="Abstract.php" hash="a2b1b6b88a90fdbd8e63f5f836831148"/><dir name="Adapter"><file name="Csv.php" hash="4394752e4ff37fc5fa51fd558ea0e239"/><file name="Excel.php" hash="a99f838f56c4b97994ba757d245042d8"/><file name="Interface.php" hash="798076dd0df08e698bafb58ab7f0197e"/></dir><file name="Code.php" hash="6c2bdc65b2ac121f59abc4399388dc28"/><file name="Giftcard.php" hash="0de1f38b723e5ef89ed8235fad2104f0"/></dir><file name="Observer.php" hash="97af59612b758e34ec19702835765226"/><dir name="Option"><dir name="Source"><file name="Value.php" hash="8f3f7bc0fab0c5e045b30d3578643604"/></dir></dir><file name="Option.php" hash="12d6ca22d8d99a9b3c0ce8cf13375ad5"/><dir name="Resource"><dir name="Giftcard"><file name="Collection.php" hash="a2ec4830dee19e8bc67ca86f77e76acb"/></dir><file name="Giftcard.php" hash="f863a386d1b201ff4b0057dd8e758cd9"/><dir name="Option"><file name="Collection.php" hash="5c800e6bd3dae83adf2a23d7d9c69f4f"/></dir><file name="Option.php" hash="1094c6e088b63521d9bfc3a3096529ee"/><dir name="Series"><file name="Collection.php" hash="c0f63638b2d7cdddec16e0f4f6132e34"/></dir><file name="Series.php" hash="e15496b1d81dde4b22d81351c87aa99b"/><dir name="Template"><file name="Collection.php" hash="5ec7e0ac6cb5202add9a5a1a64b4acfa"/></dir><file name="Template.php" hash="105a1061a84fb39eaa584753625ac517"/></dir><dir name="Sales"><file name="Discount.php" hash="c2548baed309f9a82453414257822b1a"/><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Giftcard.php" hash="4d99a19372e954efb8012464e4704a17"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Giftcard.php" hash="3f9aaca0bcd5e02b48237a9227a433e0"/></dir></dir></dir><dir name="Quote"><dir name="Total"><file name="Giftcard.php" hash="46984ea355030f13e36120b5a7c530de"/></dir></dir></dir><dir name="Series"><file name="Action.php" hash="d89641d09eb6fe1c497026fd82859d60"/><file name="Generator.php" hash="0eb0a8ae65de74a809385f0114789f05"/></dir><file name="Series.php" hash="f7c85c167bbb3c197c5647dc8648ae23"/><dir name="Template"><file name="Action.php" hash="516c1eb7b63a8ab8d1bc6f9998b784ca"/></dir><file name="Template.php" hash="c55da9594342d746081dc68ff6b6de92"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Catalog"><file name="ProductController.php" hash="f331364419d5a59af4e3f8a628606d7f"/></dir><dir name="Giftcard"><file name="ExportController.php" hash="02c1c8d06865cb6848490cbbb41b653e"/><file name="GiftcardController.php" hash="001409911ad1e3c27b722cfac3218bd4"/><file name="SeriesController.php" hash="6947b1dea48e079a551f029185f27b07"/><file name="TemplateController.php" hash="749377db4b2705ce9c5cbbd5f29da17d"/></dir></dir><dir name="Checkout"><file name="CartController.php" hash="b05168759c51a21b49627c67e6900d17"/></dir><file name="GiftcardController.php" hash="6ada28792e445f22e3e9323b487dccd4"/></dir><dir name="etc"><file name="adminhtml.xml" hash="7f7e5385aeb9a43a5a528d130484147f"/><file name="config.xml" hash="6bacf53cf73fecf7644e9d296dc47f41"/><file name="system.xml" hash="28729a89701fcdf24a76535b345a1a82"/></dir><dir name="sql"><dir name="giftcard_setup"><file name="mysql4-install-1.0.0.php" hash="dbafa9bda0122cc8ba96781401800f68"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="0309346bf3b9ec79dc17827a81583ffe"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="e59d046317faebd8da7721f773b5464f"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="57e0b9b1b442feba078af0a22aa095dd"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="a03216b7b733ee8b49ba5e83b594b150"/></dir></dir></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="MT_Giftcard.xml" hash="419ffabff20df4fa3de1326ce003a240"/></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="mt"><file name="giftcard.xml" hash="5730e335542a7874741dc9e8a1495ac2"/></dir></dir><dir name="template"><dir name="mt"><dir name="giftcard"><dir><dir name="catalog"><dir name="product"><dir name="view"><dir name="type"><dir name="options"><file name="giftcard.phtml" hash="b5934afd5e7f93674402b25d63459e70"/></dir></dir></dir></dir></dir><dir name="checkout"><dir name="cart"><file name="giftcard.phtml" hash="75079565abc1788e0fd6da9e9dd9b056"/></dir><dir name="payment"><dir name="giftcard"><file name="form.phtml" hash="52fc1c84e1b6970c495cbc9d7303c93c"/></dir><file name="giftcard.phtml" hash="c2f7cbd52debc1aa29b071e02f3f2a47"/></dir></dir><dir name="sales"><dir name="order"><dir name="info"><file name="buttons.phtml" hash="12abbdcdbff241a3fb448c51493286fe"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="mt"><dir name="giftcard"><dir><dir name="catalog"><dir name="product"><dir name="edit"><dir name="tab"><dir name="options"><file name="option.phtml" hash="3f5885df27c65633a6c7a1f8ba18f4d7"/><dir name="type"><file name="giftcardvalue.phtml" hash="3f5885df27c65633a6c7a1f8ba18f4d7"/></dir></dir></dir></dir></dir></dir><dir name="giftcard"><dir name="series"><file name="js.phtml" hash="99defd275b4e0a674edafe2119c56309"/></dir><dir name="template"><dir name="edit"><file name="js.phtml" hash="3e399880a503d30c90c3acd16372e3e3"/></dir></dir></dir><dir name="sales"><dir name="creditmemo"><dir name="create"><dir name="total"><file name="giftcard.phtml" hash="f0de805a54be03f04c741d8685e7179d"/></dir></dir><file name="refund.phtml" hash="64fe05f67d988621092599b05d6cffe3"/><dir name="view"><dir name="total"><file name="giftcard.phtml" hash="8e055cf4f56e07805a7bb021121cb404"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="layout"><dir name="mt"><file name="giftcard.xml" hash="481646a8be417c7dde7a9c5bee42df1d"/></dir></dir></dir></dir></dir></dir><dir name="locale"><dir name="en_US"><file name="MT_Giftcard.csv" hash="030a023d4765a41861862d26e94a2a61"/><file name="MT_Giftcard_Adminhtml.csv" hash="a4030ebbce038f66d5de95836b07b3a9"/></dir></dir></dir><dir name="js"><dir name="mt"><dir name="giftcard"><dir><dir name="adminhtml"><file name="gift_card.js" hash="a077f36a4718a5ba27b11f33af163334"/><file name="gift_card_series.js" hash="34d968fa1668c4e9aec42803090a73ce"/><file name="gift_card_template.js" hash="f247e17ba83b638e336a440c1c4c4fb6"/><dir name="jscolor"><file name="arrow.gif" hash="5034704a76cd55c1cbcbc58ea6bf523f"/><file name="cross.gif" hash="ba9a274b9323753cd95bc3b1eb2f4e5f"/><file name="demo.html" hash="742abe680859d25a2052ac5be6b65203"/><file name="hs.png" hash="fefa1a03d92ebad25c88dca94a0b63db"/><file name="hv.png" hash="990d71cada17da100653636cf8490884"/><file name="jscolor.js" hash="a26701f49bf33da8dc48f3431e5f4f42"/></dir></dir></dir><file name="jquery-2.1.1.min.js" hash="9a094379d98c6458d480ad5a51c4aa27"/></dir></dir></dir><dir name="skin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="mt"><dir name="giftcard"><file name="giftcard.css" hash="d4a2aea8b140810df18b169326dce741"/></dir></dir></dir><dir name="images"><dir name="mt"><dir name="giftcard"><file name="opc-ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/></dir></dir></dir><dir name="mt"><dir name="giftcard"><dir><dir name="design"><dir name="default"><dir name="fonts"><file name="Chaparral-Pro-Regular.ttf" hash="6848adda9090c62208b75b8ad77cdd75"/><file name="Roboto-Black.ttf" hash="a77b7fc4cf040eb5bb26b0685893a9df"/><file name="Roboto-Light.ttf" hash="e22062b3188c8199283ef2aa835d4653"/><file name="Roboto-Medium.ttf" hash="99fc0816a09395454061301fefa42bf1"/><file name="myriad-web-pro.ttf" hash="ff71ffc3836541cf0071d0a47ae0c715"/></dir><dir name="img"><file name="bg.jpg" hash="46661fc213743bc87132e3aebb0ff00e"/><file name="price.png" hash="a4be48a4be4d8b6b3ddbca50457476c7"/><file name="price2.png" hash="4b857a754bdfc344cea059750de0333c"/><file name="shadow.png" hash="a24d8ce96c6ac0a411e93f77a9eb59fb"/><file name="shape.jpg" hash="e0dace3f47ba46091462fbacd466d453"/></dir></dir></dir></dir></dir></dir><dir name="js"><dir name="mt"><dir name="giftcard"><file name="giftcard.js" hash="30f94e3271d018b83e55c5a454ac0286"/><file name="giftcardcheckout.js" hash="a3951be185b1771a92eb9ab995eed469"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="mt"><dir name="giftcard"><file name="gift_card_style.css" hash="4da70f033c3873fd69cbecc3a3ab52ad"/><dir name="import"><file name="gift_card_codes_example.csv" hash="8c04e295be30a1a316c50c8781c13778"/><file name="gift_card_codes_example.xlsx" hash="974af675c981d592303d6332a3fbed9f"/></dir></dir></dir></dir></dir></dir></dir><dir><dir name="lib"><dir name="PHPExcel"><file name="Autoloader.php" hash="c0ac1b27ca0013f02b65abff156eb888"/><dir><dir name="CachedObjectStorage"><file name="APC.php" hash="060a6e5b1c7a0ea4d6d38bd7a637a40c"/><file name="CacheBase.php" hash="45ec0389643f44555f45b7f732fb9328"/><file name="DiscISAM.php" hash="792c27a7920a33100d082e3a1e863e0f"/><file name="ICache.php" hash="42b7649b7901073e4f3f4d1f1184da50"/><file name="Igbinary.php" hash="9caa0af653e56e5c3ad9f9ee6bcdf71c"/><file name="Memcache.php" hash="e9c9fd2dfa1ef0c7df194f32a55c584c"/><file name="Memory.php" hash="67d943f12ce373b554c44a8427950f5e"/><file name="MemoryGZip.php" hash="7cfc009c1634fbbbdf229e1ccf4b193f"/><file name="MemorySerialized.php" hash="b9498b0c52a0e9635557841db318ed79"/><file name="PHPTemp.php" hash="8cbab31264df67172d4753abaea3028f"/><file name="SQLite.php" hash="705f689486dee5e55cb54560a743e847"/><file name="SQLite3.php" hash="2be3feafefad4a501232156beff5ae94"/><file name="Wincache.php" hash="649b95ef8f1d8b9b1fce1c32d8e13670"/></dir><dir name="CalcEngine"><file name="CyclicReferenceStack.php" hash="8e0ccafd804a7c959e5fbc78cadee900"/><file name="Logger.php" hash="73bbe66af2e991b27011b60764e2bdac"/></dir><dir name="Calculation"><file name="Database.php" hash="fcc0d987b23c0a43a30a0cc444c9e42d"/><file name="DateTime.php" hash="74929cc98942540350877d4e045c1da1"/><file name="Engineering.php" hash="2f1ab671181d9496ee11118985d25d4f"/><file name="Exception.php" hash="652642e024783e23648d116fe6f0f2be"/><file name="ExceptionHandler.php" hash="af3157a0957577c2b56b2020faa6160f"/><file name="Financial.php" hash="ca890b073f75aa48c49fb01a8f1e15ee"/><file name="FormulaParser.php" hash="e60e4f77093cc60f73edbaf4be80695a"/><file name="FormulaToken.php" hash="8a2535134cdf044103f0ac88f9db6b93"/><file name="Function.php" hash="c5201782fcaf859c643323a2883e3f45"/><file name="Functions.php" hash="d8d80883dfe5de21b8f3807a7f254022"/><file name="Logical.php" hash="d35eec76ac850e468ffff5dba3dd6bd0"/><file name="LookupRef.php" hash="9d21e4f2dc9340e4c6936f476f931ecc"/><file name="MathTrig.php" hash="a4c6abb1892c3091e6677ca6a4fc2053"/><file name="Statistical.php" hash="200647a809afc11198fcb52d47718061"/><file name="TextData.php" hash="9e97f8cf0e2b644711bcb4ba812b62a1"/><dir name="Token"><file name="Stack.php" hash="fd7a697177f560320eb38960e252e89c"/></dir><file name="functionlist.txt" hash="0b49438e2daa296d8e00527b1914c558"/></dir><dir name="Cell"><file name="AdvancedValueBinder.php" hash="cf4892ed82cfb2ecd8eb7ee7b7a5e334"/><file name="DataType.php" hash="8ccc274284e31a4c07370955114c7d70"/><file name="DataValidation.php" hash="eb5c4fa4d7185356d2056332b09d8f09"/><file name="DefaultValueBinder.php" hash="8af25074b5bbbe4301ddf05ac1957dff"/><file name="Hyperlink.php" hash="32393f6556a0f5ca28935a8b5e2377bc"/><file name="IValueBinder.php" hash="901680ab3e1103a5f48871dc9cd381d6"/></dir><dir name="Chart"><file name="DataSeries.php" hash="e7076e005301be41adf52a58e0824be7"/><file name="DataSeriesValues.php" hash="6bae1ddb7670c6966aa650b736adc56e"/><file name="Exception.php" hash="a06db381aca20a233a2343fdb1b3984d"/><file name="Layout.php" hash="f372df2e9240733449ec13299e12a731"/><file name="Legend.php" hash="007d1fc43db17a7a714ac490d621d3a4"/><file name="PlotArea.php" hash="ebc3924021d32e09fbf6e191ea7c9169"/><dir name="Renderer"><file name="PHP Charting Libraries.txt" hash="6ce1c907ce7043d81288b98e1ffd8c35"/><file name="jpgraph.php" hash="279ce653db7b4177d1c378c421dd4ffe"/></dir><file name="Title.php" hash="02874bda68ff78da251e84c68fe61b3c"/></dir><dir name="Reader"><file name="Abstract.php" hash="5e936960b43fc0286ba3b6663222eeab"/><file name="CSV.php" hash="141e9bcc6c31323092927e5e0ca8f162"/><file name="DefaultReadFilter.php" hash="83e54f1b119a512e8d64cef6b258865f"/><file name="Excel2003XML.php" hash="9fafa9bb7e70b9063a4082598f1cc52a"/><dir name="Excel2007"><file name="Chart.php" hash="496a5edc2e1a2c9664459047481e44bf"/><file name="Theme.php" hash="503ca86087407ce4711cfdacbae846dd"/></dir><file name="Excel2007.php" hash="7367d998079874628d53827d415194f9"/><dir name="Excel5"><file name="Escher.php" hash="f4e8768b6bb41c6d95a3d443189f4dc3"/><file name="MD5.php" hash="2dc878b66882d023d8ae841f1e93138a"/><file name="RC4.php" hash="fba55a88fc22e075a6e2b6a6fdcfe5fa"/></dir><file name="Excel5.php" hash="0a440d3c5a6797eb0d3bebbcff230cf1"/><file name="Exception.php" hash="7125b5445841b29f219c175258c89ae8"/><file name="Gnumeric.php" hash="14eb4e868c3c117ca78b2ee1a8fbd5e7"/><file name="HTML.php" hash="96afd8420f5fedf86759e50e18c19ae4"/><file name="IReadFilter.php" hash="0736c334c496bf42d0e16d2dd0b9dbd2"/><file name="IReader.php" hash="8e6325d94957c3edd350d967cba66eda"/><file name="OOCalc.php" hash="f0787409765f1ebd3af78d0afa83ee6c"/><file name="SYLK.php" hash="5a68110f072be2987678b928e2a5b5dd"/></dir><dir name="RichText"><file name="ITextElement.php" hash="022e671cfd5fe5036f556aa3da0b5e13"/><file name="Run.php" hash="42e3a7e9b7e9dc2b4764cd7e9256e2dc"/><file name="TextElement.php" hash="312b6cc37fa1260236670384c445cdef"/></dir><dir name="Shared"><file name="CodePage.php" hash="f778196b9cfc0da13183b253057bec0b"/><file name="Date.php" hash="a26d5625d129579d9f524ab8d0531f30"/><file name="Drawing.php" hash="af1da980682f5c1f2731f94133b81567"/><dir name="Escher"><dir name="DgContainer"><dir name="SpgrContainer"><file name="SpContainer.php" hash="8194d9a9e6d02245fea8bc4f36f07c93"/></dir><file name="SpgrContainer.php" hash="32c66b6e42634db60322c5e23f60b82f"/></dir><file name="DgContainer.php" hash="0a999b2c39273240d5d0a9df52b660e4"/><dir name="DggContainer"><dir name="BstoreContainer"><dir name="BSE"><file name="Blip.php" hash="82e7eaa1811b7cfb946c047a92427c38"/></dir><file name="BSE.php" hash="dec31faefa86bcac6179fb64d2ec273b"/></dir><file name="BstoreContainer.php" hash="1da7d264aabc0acb3fa391ab5abeae02"/></dir><file name="DggContainer.php" hash="3cc63376df61d3de6cb3d0381b26e258"/></dir><file name="Escher.php" hash="814c9b01923def958017f1333eee2177"/><file name="Excel5.php" hash="86feffcfde61c12b6e6f013620599c27"/><file name="File.php" hash="a657b5cf8872cfe2107c9c01baba8cdd"/><file name="Font.php" hash="88d74f04f0b130c6c633d773cd37669d"/><dir name="JAMA"><file name="CHANGELOG.TXT" hash="81155b0ba4a4aee114047e7aa51e4043"/><file name="CholeskyDecomposition.php" hash="d34ecb13bcefd7c6f04139def3796b60"/><file name="EigenvalueDecomposition.php" hash="c17e11c6d3aa17ad5ed1987ca2782023"/><file name="LUDecomposition.php" hash="e17c4558ef2a3e1914f7b658cc44b93d"/><file name="Matrix.php" hash="53ad625ea79d17eedc3808d257e7bab5"/><file name="QRDecomposition.php" hash="99c31e87a163d45f8c6d940ebbc5e171"/><file name="SingularValueDecomposition.php" hash="d18aa1bcae41dac035353f25d3e77a31"/><dir name="utils"><file name="Error.php" hash="ee40ef699a75fcb33856a80f1b5862cb"/><file name="Maths.php" hash="44462be998ffabaa1530d804438ca521"/></dir></dir><dir name="OLE"><file name="ChainedBlockStream.php" hash="d4bb1993b2f702946acfa46e97aa4160"/><dir name="PPS"><file name="File.php" hash="0474f51f53afc5638edcc9a0b6c3fbc2"/><file name="Root.php" hash="208d81258c79750799dbab04c81ff1f0"/></dir><file name="PPS.php" hash="9d8e405cd746bc5689b6dbfd9bd3a75f"/></dir><file name="OLE.php" hash="855929ae8f887d2cc1881176f0cc5698"/><file name="OLERead.php" hash="446ec9ee4bdd7cc7e025197033b425e9"/><dir name="PCLZip"><file name="gnu-lgpl.txt" hash="f14599a2f089f6ff8c97e2baa4e3d575"/><file name="pclzip.lib.php" hash="3ee0a4d8a06cedc0a56f29e8f351ef72"/><file name="readme.txt" hash="0d82536577908a1f78e1b5c6220f5810"/></dir><file name="PasswordHasher.php" hash="7e9dbb123da6ebf684d78d59dc55aae6"/><file name="String.php" hash="a33e20a7869cb76cfedea8168aeb144e"/><file name="TimeZone.php" hash="d65f43b613e065f013eef6803c56f0bc"/><file name="XMLWriter.php" hash="2c7ef964e936d08dc0a2a100665702e0"/><file name="ZipArchive.php" hash="e2fa9952bbefd2d81507e458d539ded4"/><file name="ZipStreamWrapper.php" hash="ad14dcb8fbd5222b7806e39122b1661c"/><dir name="trend"><file name="bestFitClass.php" hash="b59ad65a9b95d6bfa72cbdb3416ffc6b"/><file name="exponentialBestFitClass.php" hash="021fe1a3f2453c26c40b2692bf3e13d5"/><file name="linearBestFitClass.php" hash="1c56b0b6062a02ad58eb48fe77f1eff1"/><file name="logarithmicBestFitClass.php" hash="4000e8e6ee228a63a6712448d3689df0"/><file name="polynomialBestFitClass.php" hash="48e12ca22a05fb7fdb6cb66b9d996b02"/><file name="powerBestFitClass.php" hash="e76a3317b4c761b45107b160689286b2"/><file name="trendClass.php" hash="4f826ac73685676b87076de95a17ff1e"/></dir></dir><dir name="Style"><file name="Alignment.php" hash="6629881d62ec07d2bee03625ba8343a0"/><file name="Border.php" hash="5e707af05b1dcbe3cc069532cfb1a49c"/><file name="Borders.php" hash="55ab49a60cc4731aaf87bb8471d5eb99"/><file name="Color.php" hash="f70870d3d4c4a238636e775c6c489185"/><file name="Conditional.php" hash="70eaa6d58e2b64689afba07ac916137f"/><file name="Fill.php" hash="44daa400dc0b6bde70d917b8c349fe4e"/><file name="Font.php" hash="2de4834bb4b11444e4995a91517f91e3"/><file name="NumberFormat.php" hash="053298f5a8a54cdf0581f3e393014817"/><file name="Protection.php" hash="52d3d0e540fc22af4df901c9dae23cd6"/><file name="Supervisor.php" hash="9c06b8d9c19e79344fe667264bcf4104"/></dir><dir name="Worksheet"><dir name="AutoFilter"><dir name="Column"><file name="Rule.php" hash="006d912960d4c2ba3dafff71ef693a19"/></dir><file name="Column.php" hash="92ee57544a767280c79e7e0551087e7a"/></dir><file name="AutoFilter.php" hash="b729e61a53f2a3889f0d9282543b81ff"/><file name="BaseDrawing.php" hash="ca57c82c46c78c7e8b349eafa9a88593"/><file name="CellIterator.php" hash="d4bc618bbc586249c1e5dc7df1d993ac"/><file name="ColumnDimension.php" hash="3b9ec591295530beb15cd8237c7cc70d"/><dir name="Drawing"><file name="Shadow.php" hash="d630b34c395209b07d4dd804ee18dc73"/></dir><file name="Drawing.php" hash="cbf3a833861eeaaf3701787357450294"/><file name="HeaderFooter.php" hash="98de723123be2d2a249f367c570b9c29"/><file name="HeaderFooterDrawing.php" hash="c7c6f9b3505e4371f55108ff03d24d16"/><file name="MemoryDrawing.php" hash="333c41a96934a40789bb756955837fce"/><file name="PageMargins.php" hash="513f4fd898a3c7a753e6a5fd314ad662"/><file name="PageSetup.php" hash="ad4d560edf7688ed37ab304139d84f79"/><file name="Protection.php" hash="a8009085ec12f6e99f163df7946d610c"/><file name="Row.php" hash="c7240acf83a4bb1d5d867d7a0cc77f5a"/><file name="RowDimension.php" hash="b2fb45b94bb56d896d09a5d561082676"/><file name="RowIterator.php" hash="6984179f0409f6fc83db123b4b3a6e3d"/><file name="SheetView.php" hash="643122447438c7b65a12d044d8eba413"/></dir><dir name="Writer"><file name="Abstract.php" hash="71881e3c107b9e9ed8d38192b5d83700"/><file name="CSV.php" hash="641fa5f7d7b5805ef77566699631a2ff"/><dir name="Excel2007"><file name="Chart.php" hash="64ef1552a4726a0bd1e017027a529662"/><file name="Comments.php" hash="37f5f882ad0bb555d05b6996008d8662"/><file name="ContentTypes.php" hash="6e0a91955bbe0c65e517ec3a0755c7f8"/><file name="DocProps.php" hash="857de2845f5baa04e4496faa19da5d0b"/><file name="Drawing.php" hash="6b9f0004b35622ab59a613bd81f33b6d"/><file name="Rels.php" hash="4477e66d75e9f48468bf9b086159ae09"/><file name="RelsRibbon.php" hash="3f66b74fb31784ca8ce4bd5bc7291ee3"/><file name="RelsVBA.php" hash="880686bbfa3e472554291b46adcbdf7a"/><file name="StringTable.php" hash="9a4274e4c1b5b2c3fe470cf4a13d5c6b"/><file name="Style.php" hash="e3e5723d4360af64a18d30c0b93a942a"/><file name="Theme.php" hash="eac4b2103b90d25979a60f64179cb7bc"/><file name="Workbook.php" hash="018aabcb96afc1c7dd397fe5b05a6eb9"/><file name="Worksheet.php" hash="88b5cc0fde4a95b2cb89e63b7abcd46c"/><file name="WriterPart.php" hash="b57a9a922bf85e0c55b9fb3e25e7914d"/></dir><file name="Excel2007.php" hash="9747cbee3a0c7e82a77b658203c661a3"/><dir name="Excel5"><file name="BIFFwriter.php" hash="718654fec54a551f016a37ca804b42de"/><file name="Escher.php" hash="0d416af1873a7fe13017c0f53a70da16"/><file name="Font.php" hash="7f2445071c18c6b1c2c1795eae0b7c12"/><file name="Parser.php" hash="ac6ba6bf3cbdcfe7c270a5eff8d8d768"/><file name="Workbook.php" hash="fe2d6f409f6141004c784478160112ef"/><file name="Worksheet.php" hash="2eb04d70106f0635944c7d793eb124e0"/><file name="Xf.php" hash="aebe288abce9d204dee832a1b2522e3a"/></dir><file name="Excel5.php" hash="44c5bbf4edae0f164f18c6816a76f98d"/><file name="Exception.php" hash="7bab6538d9b1b384046054de54e96f42"/><file name="HTML.php" hash="00865972340ff901b501935814385eaa"/><file name="IWriter.php" hash="f09b0dc69e45f2ffa0ac9b5ab502fb82"/><dir name="PDF"><file name="Core.php" hash="e2a46d6c77a74863f81a5842d6a9ebca"/><file name="DomPDF.php" hash="90810f3edb94624db9675e903b00471c"/><file name="mPDF.php" hash="0be83c393289fe4fa01d71757beb7c1f"/><file name="tcPDF.php" hash="3ed2de3ea0628b6dddd7deae4c4b5846"/></dir><file name="PDF.php" hash="389cbece6563cd263debef97ec425957"/></dir><dir name="locale"><dir name="bg"><file name="config" hash="bd48b1342028433c0e8b1405f63681b6"/></dir><dir name="cs"><file name="config" hash="5bec343ec684797f504042520ee2d770"/><file name="functions" hash="dd9b6a53208a2d9128a0dbed5a192c61"/></dir><dir name="da"><file name="config" hash="3c9e6275eeb4e3e8b0227e6fa1cc7e99"/><file name="functions" hash="2be89aab61a219f5102367274eb6ebbd"/></dir><dir name="de"><file name="config" hash="eb1de3a4a017502843d25740d42f0a2c"/><file name="functions" hash="000406260d68b33e72ea78dfeb00b5ff"/></dir><dir name="en"><dir name="uk"><file name="config" hash="24025d0951937faf37cf1c6e0f3dc126"/></dir></dir><dir name="es"><file name="config" hash="65290b4e3b67ebb9a97a90b9222c7e15"/><file name="functions" hash="a703deb701efd97e00291db5333afb3c"/></dir><dir name="fi"><file name="config" hash="14d9c9df4ce03460ea96c3d80399ae57"/><file name="functions" hash="b5e2892f1b2a3a4961e1afcc3a6ee640"/></dir><dir name="fr"><file name="config" hash="027f624b5a6e245629eb0c61e3885e32"/><file name="functions" hash="a77aca7f185e1d209515a4496bafee4e"/></dir><dir name="hu"><file name="config" hash="5fa5ca22943755f450c54c677cdc9746"/><file name="functions" hash="1fb62789d3bac98fa779cd4b41b586ae"/></dir><dir name="it"><file name="config" hash="150afe868eb2c018cf6821f24e4cbd61"/><file name="functions" hash="33abdfe7001d4fdbe302900074323b0e"/></dir><dir name="nl"><file name="config" hash="491f94c0f2bfb810f70ad2318163cd4d"/><file name="functions" hash="0c67a37f97efc98f45722cc2f4fcc35b"/></dir><dir name="no"><file name="config" hash="279bbcda77bc7f0730e22a4bea7e3802"/><file name="functions" hash="5028d6a07e300f28f5ee32bb5aae7133"/></dir><dir name="pl"><file name="config" hash="6a58549706b2da7200b5d78f4ab41f92"/><file name="functions" hash="38738374816955fbdff6f86f6fa8a94a"/></dir><dir name="pt"><dir name="br"><file name="config" hash="f43c1e73bb43432e18d724b8f5b478c5"/><file name="functions" hash="c4790f115b3abc4a12c66b943c1902a9"/></dir><file name="config" hash="da578667203b7cda77565744077e7841"/><file name="functions" hash="d7cd17cfee5fddc681e19f9e59ddd133"/></dir><dir name="ru"><file name="config" hash="567fc66512232e26a7fb27f953190805"/><file name="functions" hash="3ee40439feab895f7b43021bc3ee0d74"/></dir><dir name="sv"><file name="config" hash="e1db96fd21891c616ba3ea744fea210d"/><file name="functions" hash="c61ab2dbccc729b8587a118debbce06b"/></dir><dir name="tr"><file name="config" hash="579938059c4a3c5114e398229ca5d081"/><file name="functions" hash="f1d72a47a1efcefe2979d5c12db88a6c"/></dir></dir></dir><file name="CachedObjectStorageFactory.php" hash="fcddd34477297d387012571e8968ca45"/><file name="Calculation.php" hash="8a4cc594019490aa21c601176209de88"/><file name="Cell.php" hash="30e0d3851122f2335149ece30169ec24"/><file name="Chart.php" hash="d19d8b127aec43520416aa9488e893bf"/><file name="Comment.php" hash="2b1e37cf0e1504b9ba0d13473ff743fa"/><file name="DocumentProperties.php" hash="a310128c6ef8686c6858b14518baa680"/><file name="DocumentSecurity.php" hash="f01bb7af3b6b4d775e99ffa49316b2c8"/><file name="Exception.php" hash="f85f0fa5025dd2a43b2f271efb7068e8"/><file name="HashTable.php" hash="4347b83f91a7f036526b3d9efa7a14f9"/><file name="IComparable.php" hash="ccb0435d62a54236d7afe9c1aed08ad3"/><file name="IOFactory.php" hash="f6e2a8c261cf66ccd1042433e66a1901"/><file name="NamedRange.php" hash="676daa1d2dfd5bd61c4e065aabf8cb84"/><file name="ReferenceHelper.php" hash="c1c7bac86d13f19ca6134c7d95256177"/><file name="RichText.php" hash="a3ecee59068d011fc751ddcd449e014c"/><file name="Settings.php" hash="eaa649e68369e3c01e30ab72429ce311"/><file name="Style.php" hash="250eacd8a8060a76903a7e5a81519ead"/><file name="Worksheet.php" hash="c3eb607361f574fe777cdc0178de7b32"/><file name="WorksheetIterator.php" hash="73d5db8e6d1c331a6f25b0bc0204946c"/></dir><file name="PHPExcel.php" hash="144f3dcdc193f98e7e63f6909190f0f5"/><dir name="phpqrcode"><file name="1419976901png-errors.txt" hash="5c0bdada27335acf976037e64f053d69"/><file name="CHANGELOG" hash="8a872fe193a26678351bfcd30ce762bf"/><file name="INSTALL" hash="4b8cd3c0df34ccdf9eda43633db9ef2a"/><file name="LICENSE" hash="01a2438b1b13b50bedf2778fc1678265"/><file name="README" hash="f541b0b72589a7d3383eface763af72b"/><file name="VERSION" hash="1be049d58921c68c0ce38169a785ac20"/><dir><dir name="bindings"><dir name="tcpdf"><file name="qrcode.php" hash="5b713d84ab4d0fc710a147a0e3848335"/></dir></dir><dir name="cache"><file name="frame_1.dat" hash="9966a137ae5c422c423c64664a6e7525"/><file name="frame_1.png" hash="411b1640bd31fb729f2133abcd06147c"/><file name="frame_10.dat" hash="5322d931be649e5ccec61461d67dd321"/><file name="frame_10.png" hash="94e6c5ecb12f212f27dcff20e82a795b"/><file name="frame_11.dat" hash="79e3ee85484b12fcc4fdc1907510dd90"/><file name="frame_11.png" hash="f6ef45cec274ec241a873ef22df7f45e"/><file name="frame_12.dat" hash="37ccf648fe2fc810ec81fa0f8c3820f1"/><file name="frame_12.png" hash="76152b897afbf40707bf238b5c6dd172"/><file name="frame_13.dat" hash="b04711a3b19ec79c84549843c5557ac9"/><file name="frame_13.png" hash="d6ed6af6d34cf2e8a8d24ae08400fae4"/><file name="frame_14.dat" hash="250770c3d53b29c438f8c0882e1d56d0"/><file name="frame_14.png" hash="d681e5d008e03ef3b2a174da3b77067a"/><file name="frame_15.dat" hash="8e37257a86d3bb454dc2568d94673f6c"/><file name="frame_15.png" hash="ef5b3f6e8fc23ebc14a8929a5300da95"/><file name="frame_16.dat" hash="7032d38df7b8225e306c6940b9380e2b"/><file name="frame_16.png" hash="3e55f66956d8035aa8d3bc1e7fc160f7"/><file name="frame_17.dat" hash="f492c83b8c1c940ee37f41407d0a6c23"/><file name="frame_17.png" hash="03db7f215625032749e912f2aab2a701"/><file name="frame_18.dat" hash="0780fa437cde6b605d86ba1a2234f19e"/><file name="frame_18.png" hash="b52277f3cd98a8f46663f5091b0a9681"/><file name="frame_19.dat" hash="dd0bf43626ee9dc7694382311d94df7f"/><file name="frame_19.png" hash="aaa7c06298eac23c24c41372b13e99ad"/><file name="frame_2.dat" hash="d2063daff8eada7d4a22cedae30f5d04"/><file name="frame_2.png" hash="1ae37415f42c6dbfed330acee0e488d6"/><file name="frame_20.dat" hash="a3a1eb820b13832a3cfceb8af8fb2ee5"/><file name="frame_20.png" hash="a674ebc38712054a376b181db975e02b"/><file name="frame_21.dat" hash="f35be2f92c1f6546b5896916e76c9b34"/><file name="frame_21.png" hash="e29a7e7e2516dfec6cf283c12e83224b"/><file name="frame_22.dat" hash="080bb29f0d4fb1c04f2973ef87b91f5a"/><file name="frame_22.png" hash="4faa3626cb02b8c824247b7f8cec0ee1"/><file name="frame_23.dat" hash="009203ec77f7fd1e19b495c3f1b08a44"/><file name="frame_23.png" hash="3c9cc974afe24e8d7750c72d3bbc298f"/><file name="frame_24.dat" hash="c1b69627f5e2705025d7db7b523e4892"/><file name="frame_24.png" hash="6722efb1632fc9a23f687d67060514cd"/><file name="frame_25.dat" hash="85f80a8a72dd8ecfe50b73dd04c03428"/><file name="frame_25.png" hash="d33e136b0ef7cbdd31857d395219efa1"/><file name="frame_26.dat" hash="00a2327c48e4e8019e4f1bf1173ea6a7"/><file name="frame_26.png" hash="bfba16b8705888625f6a1efa26008f8e"/><file name="frame_27.dat" hash="f74a3e9017abb34cf10d9161db6944a6"/><file name="frame_27.png" hash="4201dc61a80d2cdbc5180abdbf3cb09f"/><file name="frame_28.dat" hash="76acbf4f5b5214113a329585a43e4c88"/><file name="frame_28.png" hash="ba1fa3b05d4e0ce79711857b845a0d8a"/><file name="frame_29.dat" hash="8571093499a6bdb0ecb179f4ba2420ea"/><file name="frame_29.png" hash="2adea50109f78d7341993b2195a715c3"/><file name="frame_3.dat" hash="2699cfca6a5e65aacd0c7fbb6c9084d1"/><file name="frame_3.png" hash="2aed9e9c0e87bbee7443546ba55c3cf6"/><file name="frame_30.dat" hash="255e0419353a95fd6ed075683ebee392"/><file name="frame_30.png" hash="ed732e8b8a612389b31544b8b6a460b5"/><file name="frame_31.dat" hash="69e65a7e068f7743b31a33f1faad9bac"/><file name="frame_31.png" hash="6642919250856e737f3fdf2db8073178"/><file name="frame_32.dat" hash="eba1b97fa1d0a8b28d2374323848534d"/><file name="frame_32.png" hash="51231a4d0f1d7520c3faf374b95153f0"/><file name="frame_33.dat" hash="166082e4520386ae368ece323cb96e16"/><file name="frame_33.png" hash="c281e359d10cfca77e6c9d24bbacb86f"/><file name="frame_34.dat" hash="f7fcf8d02665cbcf07e97b2492b58be9"/><file name="frame_34.png" hash="72698abce1e633a798c1e4778f2f1b93"/><file name="frame_35.dat" hash="5b5ecdbf418448b208b402f73afcc1d7"/><file name="frame_35.png" hash="c87869bf4bf45da1c7127c6de2a0f11c"/><file name="frame_36.dat" hash="03912dc10e6c9548be0475a3d1a8bd36"/><file name="frame_36.png" hash="e5dd2ab9dcb0ebfcc208cab72482fd15"/><file name="frame_37.dat" hash="ac1584560973137f64a713b1cf135d95"/><file name="frame_37.png" hash="085b9a14931e24612d5a31d68dcb23ff"/><file name="frame_38.dat" hash="b45ceadcace8ab29ae23f1187827ee81"/><file name="frame_38.png" hash="a5b05f453ec538e590f8d89587a23611"/><file name="frame_39.dat" hash="1d62f529bdb36150d01a50edec41274b"/><file name="frame_39.png" hash="c83d4b2895ef4131002922efbab49a28"/><file name="frame_4.dat" hash="8f7cc1859eb9a53b5632292e3a130294"/><file name="frame_4.png" hash="b358fec2b171d3f48ed37760f2e43b4a"/><file name="frame_40.dat" hash="49e85960945738760a4657d66c955ec6"/><file name="frame_40.png" hash="4dbb42edd5532958d0a3373292ba907f"/><file name="frame_5.dat" hash="3163d7510e346dc920d4cb54a531c39d"/><file name="frame_5.png" hash="8fc575dc94ac96e59935a760eae530bc"/><file name="frame_6.dat" hash="8e295fa8a97640d442e0a0eb2071dbff"/><file name="frame_6.png" hash="e570a56ccb27e1123efa4f32875ebce0"/><file name="frame_7.dat" hash="daeda73b2271bc29305de751e93def4a"/><file name="frame_7.png" hash="f1f1f510346c6011a0a9db54a6ce1600"/><file name="frame_8.dat" hash="7fa3ac63497597e55d211749e725e1fb"/><file name="frame_8.png" hash="8da14e672ece3b8e6a87f6e730baf480"/><file name="frame_9.dat" hash="25c5097cb158d1871441f7c47dc39ee1"/><file name="frame_9.png" hash="e9c335a41a1ace41f43f096e488a4987"/><dir name="mask_0"><file name="mask_101_0.dat" hash="6c4fdf704de27629d87b83d880801c64"/><file name="mask_105_0.dat" hash="202eb068c963ec45eba3eb97d2870ce3"/><file name="mask_109_0.dat" hash="d2a05381fcf529d73d253162ba809d74"/><file name="mask_113_0.dat" hash="8a507f639e0b0556b6d92277cb5f392d"/><file name="mask_117_0.dat" hash="a5a9ad0b479b2b21e5e20f313766f86f"/><file name="mask_121_0.dat" hash="bccba8f234c62c4ab2f44ae44ab54cb9"/><file name="mask_125_0.dat" hash="f4701c9eb001f32bacb2084bfa3e985a"/><file name="mask_129_0.dat" hash="a1ebe9f05b055f64f558a6244e6c7890"/><file name="mask_133_0.dat" hash="d2929cb58d6e9cd60e8a119be822d309"/><file name="mask_137_0.dat" hash="dcd93d58f4072469967980ba59574f40"/><file name="mask_141_0.dat" hash="5ffc654902a36e2b332fda9d59091fff"/><file name="mask_145_0.dat" hash="9efe56fe464d4502494a1cf626fe9dec"/><file name="mask_149_0.dat" hash="b4e966f8336481fe22747556591cd120"/><file name="mask_153_0.dat" hash="f4e6a1e8b8d358caf45684afdff31294"/><file name="mask_157_0.dat" hash="f6ffbde0114c9697566688b47a6711d6"/><file name="mask_161_0.dat" hash="62f427d65bb9b4443d2e7ade8d459eb7"/><file name="mask_165_0.dat" hash="0e55dfeac94cd03d80ac3beadf229be2"/><file name="mask_169_0.dat" hash="e9d7cf1075155e841397c34439cb7727"/><file name="mask_173_0.dat" hash="5e921e75199ac8624f0bda6b7c8a0ca5"/><file name="mask_177_0.dat" hash="ddb00baf98441c85e41289c22725c176"/><file name="mask_21_0.dat" hash="0718577fa2c550f18c1ada43073686c3"/><file name="mask_25_0.dat" hash="86dff5e28a8686795053144e8e1a1468"/><file name="mask_29_0.dat" hash="0e10a1d9372b0d19001975e9cfae0283"/><file name="mask_33_0.dat" hash="f80d9b95cdc71d8569289bdf50461c0f"/><file name="mask_37_0.dat" hash="a29b43128de8475414f71c138a48ff39"/><file name="mask_41_0.dat" hash="994bd068e5e27de60ab2c80f741a3305"/><file name="mask_45_0.dat" hash="081b0e72ce1c7c98b19a9569ac3a44dd"/><file name="mask_49_0.dat" hash="f50d98727bbdb9f8550cc9170f2ec5f9"/><file name="mask_53_0.dat" hash="4f116fa5476c96c493d9fa39144f3e0b"/><file name="mask_57_0.dat" hash="63842c6c6382a6e9ad6ad9a5d260e10f"/><file name="mask_61_0.dat" hash="a8c349ae832d6ecf6393bab781285d43"/><file name="mask_65_0.dat" hash="e025e048393a0ef230ecfca730627d67"/><file name="mask_69_0.dat" hash="03b969d8d5cc667b9db6d30435ed0465"/><file name="mask_73_0.dat" hash="b4ddb6571dfa5e097778529e515aa991"/><file name="mask_77_0.dat" hash="c958cba6bf9169ed0b5e5e812bde8407"/><file name="mask_81_0.dat" hash="59352f5a91fdda1c299839c388b31094"/><file name="mask_85_0.dat" hash="27d360595156bca380e0882db865d97f"/><file name="mask_89_0.dat" hash="340efa3d23812287232ab47d46acc7f4"/><file name="mask_93_0.dat" hash="071afbef25ba4ce443fe371d286d3f4b"/><file name="mask_97_0.dat" hash="89b20fb88a32644757ee346306a23203"/></dir><dir name="mask_1"><file name="mask_101_1.dat" hash="bf6ab6978bd3e4ddece1c510e84e286d"/><file name="mask_105_1.dat" hash="9d953276346ed743a173ea8ca0e8cd2b"/><file name="mask_109_1.dat" hash="e0b18b6aae70d01b424bcf2f37f76f92"/><file name="mask_113_1.dat" hash="ad0a4162bb87fc14323e8fc95da0f491"/><file name="mask_117_1.dat" hash="cd26e07902b23b0c743505a2732b2498"/><file name="mask_121_1.dat" hash="3755b5cde7076711cb29fbb86e8a0e7f"/><file name="mask_125_1.dat" hash="ca310b53c8ec27d0718e3ef9211d723c"/><file name="mask_129_1.dat" hash="56d78d56fd0bd490a806a9d0a418b93c"/><file name="mask_133_1.dat" hash="25d97fb00854adb525107f41f3178204"/><file name="mask_137_1.dat" hash="c46aabe94b0f98709e634f4722bdb5cf"/><file name="mask_141_1.dat" hash="261a83e7dcf606694332c6c9e04b2b2e"/><file name="mask_145_1.dat" hash="38d5d0690e4603854cc05d315f1dd9c5"/><file name="mask_149_1.dat" hash="aa2eca119e10ec7b9b68a0114ac564ad"/><file name="mask_153_1.dat" hash="7afe60df62eed29834a72c7a0fa036b1"/><file name="mask_157_1.dat" hash="5d9825afa01b120972f1078079d94fd1"/><file name="mask_161_1.dat" hash="226022ea7568c6713f7ced33d58cd0c3"/><file name="mask_165_1.dat" hash="84ae6b587247749c38c4f95eb13db733"/><file name="mask_169_1.dat" hash="7e6db5dc520265a7c2e1b5f840b1aac0"/><file name="mask_173_1.dat" hash="3ce3d555e49b7cb1598b571cd9c39d11"/><file name="mask_177_1.dat" hash="82e07b24b1381c1f679c9ee6dfadccf7"/><file name="mask_21_1.dat" hash="bee4cdaef688947610b10b469c563994"/><file name="mask_25_1.dat" hash="4290a56446ca90443215f2fb4c1959aa"/><file name="mask_29_1.dat" hash="2456b09ddffa9f6c024d0146b2de747b"/><file name="mask_33_1.dat" hash="9d41f80f181d65bb09c4fac192180588"/><file name="mask_37_1.dat" hash="188e3cdd055dba53f9e428491adafe77"/><file name="mask_41_1.dat" hash="0dd7fad119dc0f8d64027c8cb7b87b8d"/><file name="mask_45_1.dat" hash="c0a3c6ed3d6c9e87235f3118c529e20d"/><file name="mask_49_1.dat" hash="2d78d9b0d2ca5f8c2f70a0aee7c91c72"/><file name="mask_53_1.dat" hash="5335af744066a31f48d6e3cab2b40dbe"/><file name="mask_57_1.dat" hash="df0543a3e8403ccfbadc87e1f711c006"/><file name="mask_61_1.dat" hash="87976040b3e1c0f0ef6ce09a100e8a6f"/><file name="mask_65_1.dat" hash="63efa207af9229d00444dc5ffbd0554f"/><file name="mask_69_1.dat" hash="aae34841ca735ca390f8542ee03afdf2"/><file name="mask_73_1.dat" hash="8493bba42242fb0a464247675a7a35c1"/><file name="mask_77_1.dat" hash="3e8c67e245d2d273cb14e773d6a9dfaa"/><file name="mask_81_1.dat" hash="0340c9c4ccd8a3840523a734655afa3f"/><file name="mask_85_1.dat" hash="b0743efcadd883a6597eca6c32cf1f66"/><file name="mask_89_1.dat" hash="f68463319238c992e1672fb74874096e"/><file name="mask_93_1.dat" hash="ea4adb79715c58e337a875b4e4a3956c"/><file name="mask_97_1.dat" hash="e8c8a30ab35215bdd8dbf715ed1cda6a"/></dir><dir name="mask_2"><file name="mask_101_2.dat" hash="c19bd200710ef2a60c5758db76df1202"/><file name="mask_105_2.dat" hash="1bf1c38f25b93af043bacc05798748ac"/><file name="mask_109_2.dat" hash="bffead7278a51efb89b94e6d267f13f0"/><file name="mask_113_2.dat" hash="84cbf90c73ba9a78c0a283b7e70c4ca6"/><file name="mask_117_2.dat" hash="f9fa108e550908a5a1f1087b92bf2154"/><file name="mask_121_2.dat" hash="0b6414fb6f76bfe0381c6cb2aacd34ba"/><file name="mask_125_2.dat" hash="aca184e91ebb60548c7118e17c10de73"/><file name="mask_129_2.dat" hash="0e929552e878974a3951d1eabb31a694"/><file name="mask_133_2.dat" hash="2fe6a8bd3fbe0805d5247952d398d8e9"/><file name="mask_137_2.dat" hash="563bfe8ba15383804f83ca96d39a8896"/><file name="mask_141_2.dat" hash="0f554119e613553d0e290496578d827b"/><file name="mask_145_2.dat" hash="ef3c2eae15e4726bb8803ad2c41dd635"/><file name="mask_149_2.dat" hash="24353d418076add713c045cbd20570a6"/><file name="mask_153_2.dat" hash="3d413b652cfe3d99374e30688053b90c"/><file name="mask_157_2.dat" hash="6e1c88422eb13dd8489d464e3281ee82"/><file name="mask_161_2.dat" hash="53b23561c00e1d00b8f575b3cac30ab8"/><file name="mask_165_2.dat" hash="8e84496c645a09f23cd18bdbb725c31f"/><file name="mask_169_2.dat" hash="990a5c2ece92d9d0e07228b7fbf898de"/><file name="mask_173_2.dat" hash="9749985009d535e753d29ea300456be6"/><file name="mask_177_2.dat" hash="c3c527e46e0dd6909193a06e30cc5f9a"/><file name="mask_21_2.dat" hash="ef7fd6a1deb6cc2e393ace6dd84d5a36"/><file name="mask_25_2.dat" hash="eabdf7cb85e1cf0bdb7952438a24e1cd"/><file name="mask_29_2.dat" hash="e39952d54f008e8d39ad61172d7a6fcd"/><file name="mask_33_2.dat" hash="ceb77e491c9ab253730ba4e72fd948ba"/><file name="mask_37_2.dat" hash="85edba0353ded1e99ef4f7a962cbac1f"/><file name="mask_41_2.dat" hash="7760ee0c6c86087fcde96e2eae9cb90d"/><file name="mask_45_2.dat" hash="3e38a0052f6badc68191d3ee3069e3d9"/><file name="mask_49_2.dat" hash="47ca1f72a8d43d06211b16cc98349abd"/><file name="mask_53_2.dat" hash="419e2b85764065370e791d4602b3d6cd"/><file name="mask_57_2.dat" hash="3c1fa898079586f5338aff22ad3e5e1c"/><file name="mask_61_2.dat" hash="d6e4a7bd67c891d213e2f4e79188fa87"/><file name="mask_65_2.dat" hash="6eddee56c23be857e881eed534e36bc3"/><file name="mask_69_2.dat" hash="e68f0f694c8c9a5f3f86a2906cdbe67a"/><file name="mask_73_2.dat" hash="54c839fcf1bf0a5251ea3d6458f75623"/><file name="mask_77_2.dat" hash="622903170480ae4ba0a41549544cf47b"/><file name="mask_81_2.dat" hash="3c55f79ff8ea70dd8a0862f351b2f3d0"/><file name="mask_85_2.dat" hash="3adfad79aca1860f53b719d3d6d48190"/><file name="mask_89_2.dat" hash="272d60997a9a1691cbe3091733e29162"/><file name="mask_93_2.dat" hash="f17848e3c1aa7981607d62355e36f2d5"/><file name="mask_97_2.dat" hash="85effa425682735086394a0c7bbafbb0"/></dir><dir name="mask_3"><file name="mask_101_3.dat" hash="ae198375944bf5e5db80ed22e67b68b6"/><file name="mask_105_3.dat" hash="6015c6e5f50aa989e01dd58097533ac3"/><file name="mask_109_3.dat" hash="0aff2d331afacd144a9358b0d74facc0"/><file name="mask_113_3.dat" hash="8f19e9effc6dd1c0fc6479bd67c48bf9"/><file name="mask_117_3.dat" hash="a2b2164b64aa246005688ff289cf1a4e"/><file name="mask_121_3.dat" hash="5c2f2642b172d9fe4b65fff2f1dadd62"/><file name="mask_125_3.dat" hash="9f3ad8403cb0e4dee43b6d1120704c42"/><file name="mask_129_3.dat" hash="b2849c22daa0217d68aa604856b9a78d"/><file name="mask_133_3.dat" hash="e81d804c6c49187029b6570262984b81"/><file name="mask_137_3.dat" hash="a59f1c0e5ad80120c501911dc9ef2145"/><file name="mask_141_3.dat" hash="037a2695936927ee7a1707b4811124b7"/><file name="mask_145_3.dat" hash="be939feee94f6d6d6ccc81ae1f600dbd"/><file name="mask_149_3.dat" hash="3196a80f19d3569d2f46ca1c30b8a24b"/><file name="mask_153_3.dat" hash="546b11d703368abb4c0d32a8d9c37982"/><file name="mask_157_3.dat" hash="8470a13e8aacd293d2553bdd313c0f3d"/><file name="mask_161_3.dat" hash="d094c5c953718c9f00cffb2e0d71c2f6"/><file name="mask_165_3.dat" hash="aa34451d98a131743df4bb1d5fd260f1"/><file name="mask_169_3.dat" hash="08548e5d2e1bdad75f9ed1b97b6c8152"/><file name="mask_173_3.dat" hash="7e7cb6489490d6e668a85b812b0b2612"/><file name="mask_177_3.dat" hash="7f21c6fbc48b877e5b31caac71633886"/><file name="mask_21_3.dat" hash="986c775b20f9bc975c3a83faee76329c"/><file name="mask_25_3.dat" hash="d62b82857c88be6ef18f4afb4cf09d56"/><file name="mask_29_3.dat" hash="9f8058257aa8b76d8445b9bb22b9c05a"/><file name="mask_33_3.dat" hash="4f1e8177a0c749ac3931d81c983ffa40"/><file name="mask_37_3.dat" hash="88c26716f6735be2fb4131eed5058051"/><file name="mask_41_3.dat" hash="7d652cb4b36012bc9ba5a7e1d035159c"/><file name="mask_45_3.dat" hash="3714071caccd1e070a2346b919d5f37b"/><file name="mask_49_3.dat" hash="2e2242a88660982e6667bb7ef0fea8de"/><file name="mask_53_3.dat" hash="87169242d83d8a40022bc9d4060798ae"/><file name="mask_57_3.dat" hash="7c6f98cf3629b427436375da98857ac5"/><file name="mask_61_3.dat" hash="6d1b20de6f2805cf18ef98970a7498ee"/><file name="mask_65_3.dat" hash="e0e64afa29e61db165dfc2638cacea41"/><file name="mask_69_3.dat" hash="68e564748c41b81d08e1a34a78a68296"/><file name="mask_73_3.dat" hash="449a36d7abd76c05e25444c8a1d7db82"/><file name="mask_77_3.dat" hash="446c00259878f35d8b468e640ad2ae51"/><file name="mask_81_3.dat" hash="5e55ada7d9fc5f5237e7ef505ba703de"/><file name="mask_85_3.dat" hash="b46ebcdc0121b1a3bedbd184495cfb88"/><file name="mask_89_3.dat" hash="14f648b97ed382c545c8632ac4e1b6f5"/><file name="mask_93_3.dat" hash="b2705428db6f3df45f0bf54bf7f7ebcf"/><file name="mask_97_3.dat" hash="b0103bf0ceaa6d15e13c1ddf314837c7"/></dir><dir name="mask_4"><file name="mask_101_4.dat" hash="ca45a07682fbb6bc77a32e9a15314494"/><file name="mask_105_4.dat" hash="7b74b40294afa78a889105b236e5a3cf"/><file name="mask_109_4.dat" hash="2f88c8ed36981f3080a6f1e035173635"/><file name="mask_113_4.dat" hash="d9a50ab9759fe8a037f4157e478d49ec"/><file name="mask_117_4.dat" hash="df85ef67e5c4cf3267aedc9055ff9a2b"/><file name="mask_121_4.dat" hash="7a66881619731b961dcfac808e2f6be0"/><file name="mask_125_4.dat" hash="409a1bcff906697dfa1f4a2b83aa7f72"/><file name="mask_129_4.dat" hash="c43f5c311576c0ce3537fcdc0aa9baaf"/><file name="mask_133_4.dat" hash="1b0d84cfdbd3520dae9cea6779e6102e"/><file name="mask_137_4.dat" hash="afad876a701bc44207b76b159cc624c4"/><file name="mask_141_4.dat" hash="ff707a8bfc3a08df2715dace4eeee2c9"/><file name="mask_145_4.dat" hash="e08158360699d664f225befb46faafae"/><file name="mask_149_4.dat" hash="16b0984a56f48cb56afb82acd67671a8"/><file name="mask_153_4.dat" hash="730cc2b3e3e12832a3d135dccec1985b"/><file name="mask_157_4.dat" hash="9c80740894d87ac138659dd817cfd326"/><file name="mask_161_4.dat" hash="4e5210091ec433c5c527d1f0585f73f7"/><file name="mask_165_4.dat" hash="a6dbdfb0999db134cca08f7e30cfa7de"/><file name="mask_169_4.dat" hash="9089622362230a309a438d6b3b552c1c"/><file name="mask_173_4.dat" hash="56ea5b38d276af919f2c6544c9ca0c69"/><file name="mask_177_4.dat" hash="87e64a44a0adf6eaeaff9dd68e771ad1"/><file name="mask_21_4.dat" hash="c1328902261a4b750bffd6a322a69e43"/><file name="mask_25_4.dat" hash="128cdfcfa192fb806a5d81f91ebc05dd"/><file name="mask_29_4.dat" hash="1afb863e3bd5f551724cd5e0eaaa659f"/><file name="mask_33_4.dat" hash="b60bbea04379a5edd6765ce656ec235f"/><file name="mask_37_4.dat" hash="fdb59b9945c57ac798ce7f56b436d061"/><file name="mask_41_4.dat" hash="6086f8d8e5e07367d4639ae9cb0ed432"/><file name="mask_45_4.dat" hash="7c39a588c3a02a9f2df71bbb451185f6"/><file name="mask_49_4.dat" hash="be9fe9f94ae480bec52518c31e252259"/><file name="mask_53_4.dat" hash="db6c8031329065e5bcb48d6dc0f53d53"/><file name="mask_57_4.dat" hash="b9d06f6aa6b2398637f04933cdbcd517"/><file name="mask_61_4.dat" hash="f7bb6ffa6ccabbc9fa44aaceb8d50561"/><file name="mask_65_4.dat" hash="04603c3e8d97ef14e2dad753e6eb93c3"/><file name="mask_69_4.dat" hash="36df758133b3febd68156ab37d01a511"/><file name="mask_73_4.dat" hash="51dd4eb76dff0927be98beedf05eaba7"/><file name="mask_77_4.dat" hash="dd103faf186586280ffe0641e2b7978f"/><file name="mask_81_4.dat" hash="90a9312e91e290c7391df673683fd487"/><file name="mask_85_4.dat" hash="d8216a889322d1935a3e7d26fefa473d"/><file name="mask_89_4.dat" hash="6396c3787c999f1d409da28ec4e0e7ee"/><file name="mask_93_4.dat" hash="e9d3369fdd1d79792395646f5923e1fc"/><file name="mask_97_4.dat" hash="77535b91df7f053f8931260141afe6b7"/></dir><dir name="mask_5"><file name="mask_101_5.dat" hash="63e4303918909723ece25197688b8ba7"/><file name="mask_105_5.dat" hash="ee01fae3b22b508e1adb3f47dc99c941"/><file name="mask_109_5.dat" hash="1325823b4e7600739d46c64d4212a5d1"/><file name="mask_113_5.dat" hash="c01d8795c46106917095511b9930c0a0"/><file name="mask_117_5.dat" hash="fbd2cd3349eb860d77369d4b0b944537"/><file name="mask_121_5.dat" hash="156bb97e4e652111cc8969c8c2c15e8e"/><file name="mask_125_5.dat" hash="0cb7294228c178cdd823b6a644967f1e"/><file name="mask_129_5.dat" hash="05635b96e33640886e90b4b8d56171a4"/><file name="mask_133_5.dat" hash="afb77cc82a0b754c7e8c896484430fdd"/><file name="mask_137_5.dat" hash="5dd206b6f8cef84943004dd46473e209"/><file name="mask_141_5.dat" hash="de316b74fdb13d4e2dd231db258e5b10"/><file name="mask_145_5.dat" hash="9db1a1f7ff00930a3a942ce19e5229f8"/><file name="mask_149_5.dat" hash="616f4baac1ccb75cebae890ca66cc639"/><file name="mask_153_5.dat" hash="6a244fbd16d99c00d881e7229626d838"/><file name="mask_157_5.dat" hash="fe12067a1b756e60b55402cd8ecd24d6"/><file name="mask_161_5.dat" hash="6447ad594af51dcfa9f972e82a21e54e"/><file name="mask_165_5.dat" hash="9301e05832397fd35cda0704d5a64e85"/><file name="mask_169_5.dat" hash="7ce18389a7d8a4eddd78e837665fa379"/><file name="mask_173_5.dat" hash="3e39ad33f5a469258e348dd7dbb83b1e"/><file name="mask_177_5.dat" hash="a5a8a619dba0f1ff547e228fc05696aa"/><file name="mask_21_5.dat" hash="7ea675316e14102a14ae2cc70897fd7f"/><file name="mask_25_5.dat" hash="d850e1d1e779dae8073761378b6ce671"/><file name="mask_29_5.dat" hash="150bfabd079b92aa70ab30a7e9368dfe"/><file name="mask_33_5.dat" hash="213369f74b18f08edea17c351d141103"/><file name="mask_37_5.dat" hash="b41c0f5323c4fa71a305521ba452b09d"/><file name="mask_41_5.dat" hash="6dea7e67b63ea326f85517d1c4c56d69"/><file name="mask_45_5.dat" hash="829091dac90854289ec9bcf351774a9d"/><file name="mask_49_5.dat" hash="9c3e06caa2d4917b7b5450ce0a27a7cf"/><file name="mask_53_5.dat" hash="4a81ede5d9554feb48b079e76a895fd1"/><file name="mask_57_5.dat" hash="5194ce0c45d7d9676abaf2fa2cef99fc"/><file name="mask_61_5.dat" hash="863bf39b5bcda2ad4767fb9027770695"/><file name="mask_65_5.dat" hash="9c7fc509da9e5df7e5edbc2a1ae55fd0"/><file name="mask_69_5.dat" hash="1d9d0d5c8c2c9d3e1f47e43d7a4d0869"/><file name="mask_73_5.dat" hash="21200ef88b501d6d22dfe931100fd4c8"/><file name="mask_77_5.dat" hash="517ed455f5eec7593ea201a2ed4cee5f"/><file name="mask_81_5.dat" hash="b3e6de4ae3f3ee7c22e9731e8f951c97"/><file name="mask_85_5.dat" hash="cbe89ebc95a4c3a1ef3eeb9cb81f89e2"/><file name="mask_89_5.dat" hash="8c2bc4a7da237a03224e2301d3895e33"/><file name="mask_93_5.dat" hash="513cb1d0cab1c36d1eca4484340c5e66"/><file name="mask_97_5.dat" hash="c9940067833f5e8e6a29eeb04f99a705"/></dir><dir name="mask_6"><file name="mask_101_6.dat" hash="fe3409bab63a28fd156562843368940b"/><file name="mask_105_6.dat" hash="34efa23c98039ef903960e7fa0592653"/><file name="mask_109_6.dat" hash="36ea76ef2e46af972407d49ff8da9387"/><file name="mask_113_6.dat" hash="03c97aec73f929287857fe364305c984"/><file name="mask_117_6.dat" hash="a9db9006460b267fdd008ee6d7961930"/><file name="mask_121_6.dat" hash="c252620b89e84448b2503203387b4cb9"/><file name="mask_125_6.dat" hash="b2163f500e8c2dc3e14442bbcf1ae2d4"/><file name="mask_129_6.dat" hash="0aecf6a2b535e1036bd64c688b65191e"/><file name="mask_133_6.dat" hash="fe8e9a6d458264eb66ad124528bc47cb"/><file name="mask_137_6.dat" hash="09421a3a805e387e6250cb1c87afcb5b"/><file name="mask_141_6.dat" hash="9910802e214f42ae2abdcee85116c2e3"/><file name="mask_145_6.dat" hash="aef30014661d9963c9617938bda7e2d3"/><file name="mask_149_6.dat" hash="2f9da67a9504c0deca5121d321b200e8"/><file name="mask_153_6.dat" hash="3c6c97c86dc381a338e67917478f3855"/><file name="mask_157_6.dat" hash="51b4b3cf7dddb9debe256fd8911a05f6"/><file name="mask_161_6.dat" hash="e3f360c52072bbfa68ef4d7f68c1970b"/><file name="mask_165_6.dat" hash="b5a9a0a0b8a48e2e193f941535c6484b"/><file name="mask_169_6.dat" hash="2b32a6d292ed03b746cd73f8f5d59f02"/><file name="mask_173_6.dat" hash="54f997312cdc4ef751491cfaf3308c66"/><file name="mask_177_6.dat" hash="92cacc6329349c5effbddeb9a2e559fa"/><file name="mask_21_6.dat" hash="1e2c0fc394840848946b2879a8ea0e58"/><file name="mask_25_6.dat" hash="67ededb602cd3eea65bd7cd15b3b8aba"/><file name="mask_29_6.dat" hash="ae9e79b8d717906f2cee4ac758ed5768"/><file name="mask_33_6.dat" hash="ca09e953f305a38d9e82b1a566c6c856"/><file name="mask_37_6.dat" hash="f1174b18aeeacd12b2efe0d1d9316c99"/><file name="mask_41_6.dat" hash="eb25abab0eccbe9b50e0727f65ddfb3e"/><file name="mask_45_6.dat" hash="e9df8dc1d0d56c4187a0081323998076"/><file name="mask_49_6.dat" hash="3fe09ab83277240614e315932f768afa"/><file name="mask_53_6.dat" hash="83c85d40e678c9b37c2d37f401bc14ee"/><file name="mask_57_6.dat" hash="4e807ebe4413aa11b14af7a0a9d42a50"/><file name="mask_61_6.dat" hash="10b367e0da3f5d0b5fe0b91e830f5653"/><file name="mask_65_6.dat" hash="c0b3bba3387d20f796672ffe9d0e38f9"/><file name="mask_69_6.dat" hash="a37fef158283319557bd0bf3ebe4846d"/><file name="mask_73_6.dat" hash="d9b39a4a9a1a7da544faba4a74c23d04"/><file name="mask_77_6.dat" hash="3268bdbf71bfcd6eca66a6e3dbed48b9"/><file name="mask_81_6.dat" hash="74955ed39c6185272affaeb81090919b"/><file name="mask_85_6.dat" hash="26e0c67dd75a268b3efc628d38d932da"/><file name="mask_89_6.dat" hash="a37653e6a06e2c536a8f585a005ef7f0"/><file name="mask_93_6.dat" hash="3ac10716db6cdd2859a807b9f95a18a2"/><file name="mask_97_6.dat" hash="7d9e1ddc9553878f2931db40fc6ed0e0"/></dir><dir name="mask_7"><file name="mask_101_7.dat" hash="e83d50dcfeddecf35f5bed16b54bbba8"/><file name="mask_105_7.dat" hash="e3bb1535f7075601e2cbb165173421f4"/><file name="mask_109_7.dat" hash="fe7590ee146b69ad00b7169c08a6ab58"/><file name="mask_113_7.dat" hash="84b1badf25a7a5cc4407b2174404821e"/><file name="mask_117_7.dat" hash="4e4233f2b6a3e9b1fa28e68ed52b037f"/><file name="mask_121_7.dat" hash="c9996c9461742edfab6dda88b613585a"/><file name="mask_125_7.dat" hash="f4553613c89cf07e4561ad2aae92e0cc"/><file name="mask_129_7.dat" hash="b4edc59c5e1f790379f71351f196e6bc"/><file name="mask_133_7.dat" hash="e6a4f6fa0a88402cdc0255ca95f5d199"/><file name="mask_137_7.dat" hash="fd33075985f60259af6b7dfd2ae189e5"/><file name="mask_141_7.dat" hash="ec73544083abf6bad1669d781bf09437"/><file name="mask_145_7.dat" hash="75a6237d00e616ca916d977602c0cb7a"/><file name="mask_149_7.dat" hash="a2d5667629afc9ea067e1839eacc8f68"/><file name="mask_153_7.dat" hash="a01eb9a63c1920b705ff4d8b717f4ce7"/><file name="mask_157_7.dat" hash="fad2e537867b26a49f29d60265c0fb40"/><file name="mask_161_7.dat" hash="5d88f58b291f5bb88a0406cfa29012c8"/><file name="mask_165_7.dat" hash="41a900ae9693e5c27d980fdbbd1cc439"/><file name="mask_169_7.dat" hash="365708854b5a146db2b5580225d8048f"/><file name="mask_173_7.dat" hash="13683d9f282668ed475bf707ee53e201"/><file name="mask_177_7.dat" hash="8149d01010cee85d1849a9dca0e102a5"/><file name="mask_21_7.dat" hash="7c80f76fd015f19e48b7a570d55bc262"/><file name="mask_25_7.dat" hash="ea54a40e79f32877e02d1ea8791cb471"/><file name="mask_29_7.dat" hash="a6f4995de8e329204ee3410b22d8da4d"/><file name="mask_33_7.dat" hash="51273577e33506f83d00d7971fc38dc8"/><file name="mask_37_7.dat" hash="8c0fbb3e5121299816be076ce6a356c4"/><file name="mask_41_7.dat" hash="b97a30c39540b5160c652b5324ae9a08"/><file name="mask_45_7.dat" hash="18166274b73ca16a2c5a145076b990dc"/><file name="mask_49_7.dat" hash="270bfbf77a14569a5fc88925beb39189"/><file name="mask_53_7.dat" hash="84e0be977afc54746e41e28f47de1ad9"/><file name="mask_57_7.dat" hash="a37a26bece7e816a87ccdfcef7e96b71"/><file name="mask_61_7.dat" hash="a108bbc684fb0ad8f59228f410d4124d"/><file name="mask_65_7.dat" hash="647767fd83beeec449ef18e04ae12af7"/><file name="mask_69_7.dat" hash="577baae8a8809899b6763719cf5bfa8d"/><file name="mask_73_7.dat" hash="b2bf60ae1da1ce4bb7db15129e99d58b"/><file name="mask_77_7.dat" hash="ab9a75a46a851ad80f0e57b6dd5c64da"/><file name="mask_81_7.dat" hash="fcfaf88379459ac068236827681d9e43"/><file name="mask_85_7.dat" hash="525c8b876f509a127d3dfd80d81aad3f"/><file name="mask_89_7.dat" hash="7c7a821cb5e7d65e7b6e020bd6351f35"/><file name="mask_93_7.dat" hash="c906b28ae62d8866a0eb35ae87db567f"/><file name="mask_97_7.dat" hash="c04cea679212bda3930b3534565a6fd2"/></dir></dir><dir name="tools"><file name="merge.bat" hash="86e934a4304536ad09b2f7b9e814241d"/><file name="merge.php" hash="0b113c70589ac6cc76291087b3f3dff9"/><file name="merge.sh" hash="d2b77c3493b2ffe3d76d4fb9330e72a1"/><file name="merged_config.php" hash="8c4be9477ea9c372b3d2796df9d9d867"/><file name="merged_header.php" hash="3fc51eef6239691f523be743fde28470"/></dir></dir><file name="index.php" hash="15632fb7fff24ae10781a87bc1a5a9bf"/><file name="phpqrcode.php" hash="6e4949ac97acce06de82b2b09988926f"/><file name="qrbitstream.php" hash="7b95645db7e06aba3b55af7dd249663b"/><file name="qrconfig.php" hash="15c58fed3d55a98cda8abeed8c336fa6"/><file name="qrconst.php" hash="4cd7d63ff0b638020e6b0c6d11133d09"/><file name="qrencode.php" hash="dda263c8a9742aaa71cc302820308541"/><file name="qrimage.php" hash="2d1588686abe320c3bf003c94e967ce0"/><file name="qrinput.php" hash="07ee5315fb6c319dc208de59a9de95c0"/><file name="qrlib.php" hash="4d2b63e34326b0df5153be6d928ec960"/><file name="qrmask.php" hash="12ce875d67e242532e2b0da9f0a334ee"/><file name="qrrscode.php" hash="17af6b8769e70c132f227b089152a47f"/><file name="qrspec.php" hash="7d276c5a768c04d62ae0afde8abaad2d"/><file name="qrsplit.php" hash="206c8468e0089be5f58453cbbd003ec0"/><file name="qrtools.php" hash="27aea0ee5d1395d80ef4b9ce7d08fa40"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.0.0</min><max>5.6.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MT_Giftcard</name>
4
+ <version>1.0.8</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.gnu.org/copyleft/gpl.html">GPL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Summary </summary>
10
  <description>Free magento gift card extension</description>
11
+ <notes>Implemented on 1.9.x - 1.4.2.0</notes>
12
  <authors><author><name>Edvinas Stulpinas</name><user>edas1</user><email>edvinas.stulpinas@gmail.com</email></author></authors>
13
+ <date>2015-02-08</date>
14
+ <time>16:23:36</time>
15
+ <contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="MT"><dir name="Giftcard"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tabs"><dir name="Giftcardseries"><file name="Form.php" hash="6ba57986e47de3810eb5432edd8cae13"/><file name="Grid.php" hash="d3af7e0412fc9b81543af8a58d9bb2c5"/></dir></dir><file name="Tabs.php" hash="7d8a2728a2c2b931381b0ef627160323"/></dir></dir></dir><dir name="Giftcard"><dir name="Giftcard"><dir name="List"><file name="Grid.php" hash="dcd306e00d75bd69f8251fe8b09798ed"/></dir><file name="List.php" hash="176da6866b6abb40cf2dc9d3cba7597c"/></dir><dir name="Series"><dir name="Edit"><file name="Form.php" hash="4d52c40a6e56e6851af652b006ab96d8"/><dir name="Tabs"><file name="Edit.php" hash="4ecf35ae08c7d659db770619979c7273"/></dir><file name="Tabs.php" hash="f284f9dc303bca6ae9f2f869993a0697"/></dir><file name="Edit.php" hash="4eadad4f86671831b5c0133a419775f3"/><dir name="List"><file name="Grid.php" hash="de02b111b41d9db067666adbe15c1c5a"/></dir><file name="List.php" hash="451587dd80ac40d5ec0b08e39d2029e6"/></dir><dir name="Template"><dir name="Edit"><file name="Edit.php" hash="1917934e01ce1d4b2a45132454a6e810"/><file name="Form.php" hash="722fb3b93b8c5a800462e8d62c228bb6"/><file name="Js.php" hash="33c7d8b6eee7cb36761bd82ea076ca5e"/><file name="Tabs.php" hash="73764b68cc7d9fdd83447c13a6db5787"/><dir name="Theme"><file name="One.php" hash="d70a1e4d19aa94ca972b69b376926bd3"/></dir></dir><file name="Edit.php" hash="afec06744ddfec3f8297ef8fbc959f04"/><dir name="List"><file name="Grid.php" hash="7c3e7a4303e1dd3b8da6d3e237cc54b3"/></dir><file name="List.php" hash="0345847adc717ce416c1d8d7679ed130"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><dir name="Create"><dir name="Total"><file name="Giftcard.php" hash="d8391b1b86be319b725debf16b901c7e"/></dir></dir><file name="Refund.php" hash="7f874138440cf23e2e8eb334ef471c62"/><dir name="Total"><file name="Giftcard.php" hash="5c883c7ecb44d32e9a3d7ce9536e5e84"/></dir><dir name="View"><dir name="Total"><file name="Giftcard.php" hash="b45537b5972ad058685254fdfe6f3127"/></dir></dir></dir><dir name="Items"><dir name="Column"><dir name="Name"><file name="Giftcard.php" hash="5daed6338457ae68894de91d3c061ce9"/></dir></dir></dir><dir name="Order"><file name="View.php" hash="c1b8d185d1b5066ab9b9b7ebcdf95f96"/></dir><dir name="Total"><file name="Giftcard.php" hash="c7e43f5fd38e7c8bca659ad0dcc87d7e"/></dir></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="DateTime.php" hash="7362458637165e5564d4a87abcaa9033"/><file name="Days.php" hash="2bfc2fb0491b77a962544d82cdb3c66d"/><file name="Empty.php" hash="de0d661ae7e8831bef15d57cb998632f"/><file name="Price.php" hash="56792c71abb74e153b35bf2a8c32ec6a"/><file name="Status.php" hash="504e0af3eee9c162aecaa9ad97527d08"/><file name="Store.php" hash="18e0987cf166c487206ddbeed70c58de"/><file name="Translate.php" hash="c8fd54ec81c5afda4102755d9f31cfa9"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Helper"><dir name="Form"><file name="Price.php" hash="3c7443352425f91916f9029248d8c08e"/></dir></dir><dir name="View"><dir name="Type"><file name="Giftcard.php" hash="fceb859207300158713008c2d7a9166b"/></dir></dir></dir></dir><dir name="Checkout"><dir name="Cart"><file name="Giftcard.php" hash="024083c88fb0f3cff24c1d982f346d33"/><dir name="Item"><file name="Renderer.php" hash="13f1c3a5e4cc9bc7d778b38b160d59e9"/></dir></dir><dir name="Payment"><dir name="Giftcard"><file name="Form.php" hash="e6dbfe093571b84d378e1d57ddcfaa43"/></dir><file name="Giftcard.php" hash="34de567a7edeef6c4fe5be12acbedc5e"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><dir name="Item"><dir name="Renderer"><file name="Giftcard.php" hash="b20c78f0df3e59a630f51db350bf4ac4"/></dir></dir></dir><dir name="Email"><dir name="Items"><dir name="Invoice"><file name="Giftcard.php" hash="3c7d29d038abb099643b690d023f29e5"/></dir><dir name="Order"><file name="Giftcard.php" hash="a7ef6d04643fbd9c1c76cd1258ad1540"/></dir></dir></dir><dir name="Info"><file name="Buttons.php" hash="264eed43b6476d3b573c64763bae89f0"/></dir><dir name="Invoice"><dir name="Item"><dir name="Renderer"><file name="Giftcard.php" hash="18fe4aa679f67afee128d3268bd209ae"/></dir></dir><dir name="Totals"><file name="Giftcard.php" hash="bb7f13c1b38704c60b79045bee52ba67"/></dir></dir><dir name="Item"><dir name="Renderer"><file name="Giftcard.php" hash="2150aa2937bca87208f529041b4b4c60"/></dir></dir><dir name="Print"><dir name="Item"><dir name="Renderer"><file name="Giftcard.php" hash="2f8217aab2813f2628fccf94c40e0b88"/></dir></dir></dir><dir name="Shipment"><dir name="Item"><dir name="Renderer"><file name="Giftcard.php" hash="c83a1ea831ce08046cd09d50f0654580"/></dir></dir></dir><dir name="Totals"><file name="Giftcard.php" hash="783d7f72b9fd315ebac5db64431c5309"/></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="c5f821d6df23c647571cd97260aace53"/></dir></dir><file name="Data.php" hash="befcfe455ed6e852371e56152dcff284"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Giftcard"><file name="Design.php" hash="db768d5c518b8dfe233f6d5457b5b9c4"/><file name="Event.php" hash="9875a70a1581b3792f649f9b6092331f"/><file name="Format.php" hash="bc91cab62109d222de772bbba7aa6274"/><file name="Series.php" hash="aba6564547ffa61d8bef13869816a365"/><file name="State.php" hash="ca38a55cfd32a71379a572a949afd8f2"/><file name="Status.php" hash="d6ed0b91ac65615c72af6c5915519ec5"/><file name="Template.php" hash="870a1b61bf5a107aa766ec6446959cb2"/><file name="Type.php" hash="ef686e71f5e08b90d33731d31bc17539"/></dir><dir name="Locale"><file name="Currency.php" hash="212769c4b0ba792abcbf0764f0293495"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Option"><dir name="Type"><file name="GiftcardValue.php" hash="4358ccd736862f1869e7c13689cc4d69"/></dir></dir><file name="Option.php" hash="b5422bc85fda78a79601136979248aba"/><file name="Price.php" hash="10926b8121b069581716b2d722f50682"/><dir name="Type"><file name="Giftcard.php" hash="04185bb851822766d7465a61314fbd5b"/></dir><file name="Type.php" hash="f226aad02e2182c60211e4f3ec970a55"/></dir><file name="Product.php" hash="8d8ddd5e1f0433eca6fcfe1836aab9ca"/></dir><dir name="CatalogIndex"><dir name="Data"><file name="Giftcard.php" hash="802f244a7c7d446318cb164e206a51ff"/></dir></dir><dir name="Checkout"><file name="Giftcard.php" hash="1849f47f79a9a59c77673ef6ec523f3e"/></dir><dir name="Core"><dir name="Email"><dir name="Template"><file name="Init.php" hash="8e073a69ea49ba49b2e393c3e5704c6b"/></dir><file name="Template.php" hash="482a942bee454d2290849daec3039b85"/></dir></dir><dir name="Email"><dir name="Template"><file name="Mailer.php" hash="2aa63130aad78559aff57f3092330d5f"/></dir></dir><dir name="Export"><file name="Abstract.php" hash="09eb1f2591a952299faece886fe42ea4"/><dir name="Adapter"><file name="Csv.php" hash="4843c1e3c036e73a7ad8d14a38359075"/><file name="Excel.php" hash="9667e698055b0b933a0b00c4502ded09"/><file name="Interface.php" hash="7fa119032136a44eba0d88aa2f25c313"/><file name="Pdf.php" hash="4a84ddff48ee47baa5a1ea9c8b27df52"/><file name="Zip.php" hash="c2d4aee14e50ff7161b71fb05d9eff1b"/></dir><file name="Collection.php" hash="b2d1ac3db40c0b893814968c604a3c31"/><file name="Grid.php" hash="5adeab37fa0f8e81239a3c40143fef82"/><file name="Object.php" hash="a6e7a80e3eb76d44b40d97c8f3da7d89"/></dir><dir name="Giftcard"><file name="Action.php" hash="6b9b615a80986e6272a2eec56bef4e0a"/><dir name="Design"><file name="Abstract.php" hash="055e70d444169989e7c2284e3150c46d"/><file name="Default.php" hash="0b2d0e7aaf7675216ce74a7c0870aae4"/></dir><file name="Draw.php" hash="8786b2d3f519c605c72c43fa9ebd5b0b"/><file name="Pdf.php" hash="a5bee72e4155cc5fbd960326bbc78ef5"/></dir><file name="Giftcard.php" hash="1f9bed7588bea4b58fb5c774ed5ffb72"/><dir name="Import"><file name="Abstract.php" hash="a2b1b6b88a90fdbd8e63f5f836831148"/><dir name="Adapter"><file name="Csv.php" hash="4394752e4ff37fc5fa51fd558ea0e239"/><file name="Excel.php" hash="a99f838f56c4b97994ba757d245042d8"/><file name="Interface.php" hash="798076dd0df08e698bafb58ab7f0197e"/></dir><file name="Code.php" hash="6c2bdc65b2ac121f59abc4399388dc28"/><file name="Giftcard.php" hash="0de1f38b723e5ef89ed8235fad2104f0"/></dir><file name="Observer.php" hash="97af59612b758e34ec19702835765226"/><dir name="Option"><dir name="Source"><file name="Value.php" hash="8f3f7bc0fab0c5e045b30d3578643604"/></dir></dir><file name="Option.php" hash="12d6ca22d8d99a9b3c0ce8cf13375ad5"/><dir name="Resource"><dir name="Giftcard"><file name="Collection.php" hash="a2ec4830dee19e8bc67ca86f77e76acb"/></dir><file name="Giftcard.php" hash="f863a386d1b201ff4b0057dd8e758cd9"/><dir name="Option"><file name="Collection.php" hash="5c800e6bd3dae83adf2a23d7d9c69f4f"/></dir><file name="Option.php" hash="1094c6e088b63521d9bfc3a3096529ee"/><dir name="Series"><file name="Collection.php" hash="c0f63638b2d7cdddec16e0f4f6132e34"/></dir><file name="Series.php" hash="e15496b1d81dde4b22d81351c87aa99b"/><dir name="Template"><file name="Collection.php" hash="5ec7e0ac6cb5202add9a5a1a64b4acfa"/></dir><file name="Template.php" hash="105a1061a84fb39eaa584753625ac517"/></dir><dir name="Sales"><file name="Discount.php" hash="c2548baed309f9a82453414257822b1a"/><dir name="Order"><dir name="Creditmemo"><dir name="Total"><file name="Giftcard.php" hash="4d99a19372e954efb8012464e4704a17"/></dir></dir><dir name="Invoice"><dir name="Total"><file name="Giftcard.php" hash="3f9aaca0bcd5e02b48237a9227a433e0"/></dir></dir></dir><dir name="Quote"><dir name="Total"><file name="Giftcard.php" hash="46984ea355030f13e36120b5a7c530de"/></dir></dir></dir><dir name="Series"><file name="Action.php" hash="d89641d09eb6fe1c497026fd82859d60"/><file name="Generator.php" hash="0eb0a8ae65de74a809385f0114789f05"/></dir><file name="Series.php" hash="d59b86da6a1998ae6aec08adef704429"/><dir name="Template"><file name="Action.php" hash="516c1eb7b63a8ab8d1bc6f9998b784ca"/></dir><file name="Template.php" hash="c55da9594342d746081dc68ff6b6de92"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Catalog"><file name="ProductController.php" hash="f331364419d5a59af4e3f8a628606d7f"/></dir><dir name="Giftcard"><file name="ExportController.php" hash="02c1c8d06865cb6848490cbbb41b653e"/><file name="GiftcardController.php" hash="001409911ad1e3c27b722cfac3218bd4"/><file name="SeriesController.php" hash="f34af93d647791618b9c33c27278a769"/><file name="TemplateController.php" hash="ed9038df5eaedf14c375234f7dc2bcdb"/></dir></dir><dir name="Checkout"><file name="CartController.php" hash="3272c807f96b1abd35af0e077e8b391f"/></dir><file name="GiftcardController.php" hash="46235437fd9fbdf7fe5e27258cfb6180"/></dir><dir name="etc"><file name="adminhtml.xml" hash="7f7e5385aeb9a43a5a528d130484147f"/><file name="config.xml" hash="6bacf53cf73fecf7644e9d296dc47f41"/><file name="system.xml" hash="28729a89701fcdf24a76535b345a1a82"/></dir><dir name="sql"><dir name="giftcard_setup"><file name="mysql4-install-1.0.0.php" hash="dbafa9bda0122cc8ba96781401800f68"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="d5599ed44143cbf47422f2885727c2b1"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="fd2d784cfa3af5f17f6e29997d7b7705"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="d48218a0040c98a644981d158b6891ee"/></dir></dir></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="MT_Giftcard.xml" hash="419ffabff20df4fa3de1326ce003a240"/></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="mt"><file name="giftcard.xml" hash="fbc508355e05ce7f292e99b351b2dcb6"/></dir></dir><dir name="template"><dir name="mt"><dir name="giftcard"><dir><dir name="catalog"><dir name="product"><dir name="view"><dir name="type"><dir name="options"><file name="giftcard.phtml" hash="b5934afd5e7f93674402b25d63459e70"/></dir></dir></dir></dir></dir><dir name="checkout"><dir name="cart"><file name="giftcard.phtml" hash="75079565abc1788e0fd6da9e9dd9b056"/></dir><dir name="payment"><dir name="giftcard"><file name="form.phtml" hash="52fc1c84e1b6970c495cbc9d7303c93c"/></dir><file name="giftcard.phtml" hash="c2f7cbd52debc1aa29b071e02f3f2a47"/></dir></dir><dir name="sales"><dir name="order"><dir name="info"><file name="buttons.phtml" hash="12abbdcdbff241a3fb448c51493286fe"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="mt"><dir name="giftcard"><dir><dir name="catalog"><dir name="product"><dir name="edit"><dir name="tab"><dir name="options"><file name="option.phtml" hash="3f5885df27c65633a6c7a1f8ba18f4d7"/><dir name="type"><file name="giftcardvalue.phtml" hash="3f5885df27c65633a6c7a1f8ba18f4d7"/></dir></dir></dir></dir></dir></dir><dir name="giftcard"><dir name="series"><file name="js.phtml" hash="99defd275b4e0a674edafe2119c56309"/></dir><dir name="template"><dir name="edit"><file name="js.phtml" hash="3e399880a503d30c90c3acd16372e3e3"/></dir></dir></dir><dir name="sales"><dir name="creditmemo"><dir name="create"><dir name="total"><file name="giftcard.phtml" hash="f0de805a54be03f04c741d8685e7179d"/></dir></dir><file name="refund.phtml" hash="64fe05f67d988621092599b05d6cffe3"/><dir name="view"><dir name="total"><file name="giftcard.phtml" hash="8e055cf4f56e07805a7bb021121cb404"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="layout"><dir name="mt"><file name="giftcard.xml" hash="481646a8be417c7dde7a9c5bee42df1d"/></dir></dir></dir></dir></dir></dir><dir name="locale"><dir name="en_US"><file name="MT_Giftcard.csv" hash="030a023d4765a41861862d26e94a2a61"/><file name="MT_Giftcard_Adminhtml.csv" hash="a4030ebbce038f66d5de95836b07b3a9"/></dir></dir></dir><dir name="js"><dir name="mt"><dir name="giftcard"><dir><dir name="adminhtml"><file name="gift_card.js" hash="a077f36a4718a5ba27b11f33af163334"/><file name="gift_card_series.js" hash="34d968fa1668c4e9aec42803090a73ce"/><file name="gift_card_template.js" hash="f247e17ba83b638e336a440c1c4c4fb6"/><dir name="jscolor"><file name="arrow.gif" hash="5034704a76cd55c1cbcbc58ea6bf523f"/><file name="cross.gif" hash="ba9a274b9323753cd95bc3b1eb2f4e5f"/><file name="demo.html" hash="742abe680859d25a2052ac5be6b65203"/><file name="hs.png" hash="fefa1a03d92ebad25c88dca94a0b63db"/><file name="hv.png" hash="990d71cada17da100653636cf8490884"/><file name="jscolor.js" hash="a26701f49bf33da8dc48f3431e5f4f42"/></dir></dir></dir><file name="jquery-2.1.1.min.js" hash="9a094379d98c6458d480ad5a51c4aa27"/></dir></dir></dir><dir name="skin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="mt"><dir name="giftcard"><file name="giftcard.css" hash="acf19b6c0935ae22f827280fbe04af39"/></dir></dir></dir><dir name="images"><dir name="mt"><dir name="giftcard"><file name="opc-ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/></dir></dir></dir><dir name="mt"><dir name="giftcard"><dir><dir name="design"><dir name="default"><dir name="fonts"><file name="Chaparral-Pro-Regular.ttf" hash="6848adda9090c62208b75b8ad77cdd75"/><file name="Roboto-Black.ttf" hash="a77b7fc4cf040eb5bb26b0685893a9df"/><file name="Roboto-Light.ttf" hash="e22062b3188c8199283ef2aa835d4653"/><file name="Roboto-Medium.ttf" hash="99fc0816a09395454061301fefa42bf1"/><file name="myriad-web-pro.ttf" hash="ff71ffc3836541cf0071d0a47ae0c715"/></dir><dir name="img"><file name="bg.jpg" hash="46661fc213743bc87132e3aebb0ff00e"/><file name="price.png" hash="a4be48a4be4d8b6b3ddbca50457476c7"/><file name="price2.png" hash="4b857a754bdfc344cea059750de0333c"/><file name="shadow.png" hash="a24d8ce96c6ac0a411e93f77a9eb59fb"/><file name="shape.jpg" hash="e0dace3f47ba46091462fbacd466d453"/></dir></dir></dir></dir></dir></dir><dir name="js"><dir name="mt"><dir name="giftcard"><file name="giftcard.js" hash="30f94e3271d018b83e55c5a454ac0286"/><file name="giftcardcheckout.js" hash="a3951be185b1771a92eb9ab995eed469"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="mt"><dir name="giftcard"><file name="gift_card_style.css" hash="4da70f033c3873fd69cbecc3a3ab52ad"/><dir name="import"><file name="gift_card_codes_example.csv" hash="8c04e295be30a1a316c50c8781c13778"/><file name="gift_card_codes_example.xlsx" hash="974af675c981d592303d6332a3fbed9f"/></dir></dir></dir></dir></dir></dir></dir><dir><dir name="lib"><dir name="PHPExcel"><file name="Autoloader.php" hash="c0ac1b27ca0013f02b65abff156eb888"/><dir><dir name="CachedObjectStorage"><file name="APC.php" hash="060a6e5b1c7a0ea4d6d38bd7a637a40c"/><file name="CacheBase.php" hash="45ec0389643f44555f45b7f732fb9328"/><file name="DiscISAM.php" hash="792c27a7920a33100d082e3a1e863e0f"/><file name="ICache.php" hash="42b7649b7901073e4f3f4d1f1184da50"/><file name="Igbinary.php" hash="9caa0af653e56e5c3ad9f9ee6bcdf71c"/><file name="Memcache.php" hash="e9c9fd2dfa1ef0c7df194f32a55c584c"/><file name="Memory.php" hash="67d943f12ce373b554c44a8427950f5e"/><file name="MemoryGZip.php" hash="7cfc009c1634fbbbdf229e1ccf4b193f"/><file name="MemorySerialized.php" hash="b9498b0c52a0e9635557841db318ed79"/><file name="PHPTemp.php" hash="8cbab31264df67172d4753abaea3028f"/><file name="SQLite.php" hash="705f689486dee5e55cb54560a743e847"/><file name="SQLite3.php" hash="2be3feafefad4a501232156beff5ae94"/><file name="Wincache.php" hash="649b95ef8f1d8b9b1fce1c32d8e13670"/></dir><dir name="CalcEngine"><file name="CyclicReferenceStack.php" hash="8e0ccafd804a7c959e5fbc78cadee900"/><file name="Logger.php" hash="73bbe66af2e991b27011b60764e2bdac"/></dir><dir name="Calculation"><file name="Database.php" hash="fcc0d987b23c0a43a30a0cc444c9e42d"/><file name="DateTime.php" hash="74929cc98942540350877d4e045c1da1"/><file name="Engineering.php" hash="2f1ab671181d9496ee11118985d25d4f"/><file name="Exception.php" hash="652642e024783e23648d116fe6f0f2be"/><file name="ExceptionHandler.php" hash="af3157a0957577c2b56b2020faa6160f"/><file name="Financial.php" hash="ca890b073f75aa48c49fb01a8f1e15ee"/><file name="FormulaParser.php" hash="e60e4f77093cc60f73edbaf4be80695a"/><file name="FormulaToken.php" hash="8a2535134cdf044103f0ac88f9db6b93"/><file name="Function.php" hash="c5201782fcaf859c643323a2883e3f45"/><file name="Functions.php" hash="d8d80883dfe5de21b8f3807a7f254022"/><file name="Logical.php" hash="d35eec76ac850e468ffff5dba3dd6bd0"/><file name="LookupRef.php" hash="9d21e4f2dc9340e4c6936f476f931ecc"/><file name="MathTrig.php" hash="a4c6abb1892c3091e6677ca6a4fc2053"/><file name="Statistical.php" hash="200647a809afc11198fcb52d47718061"/><file name="TextData.php" hash="9e97f8cf0e2b644711bcb4ba812b62a1"/><dir name="Token"><file name="Stack.php" hash="fd7a697177f560320eb38960e252e89c"/></dir><file name="functionlist.txt" hash="0b49438e2daa296d8e00527b1914c558"/></dir><dir name="Cell"><file name="AdvancedValueBinder.php" hash="cf4892ed82cfb2ecd8eb7ee7b7a5e334"/><file name="DataType.php" hash="8ccc274284e31a4c07370955114c7d70"/><file name="DataValidation.php" hash="eb5c4fa4d7185356d2056332b09d8f09"/><file name="DefaultValueBinder.php" hash="8af25074b5bbbe4301ddf05ac1957dff"/><file name="Hyperlink.php" hash="32393f6556a0f5ca28935a8b5e2377bc"/><file name="IValueBinder.php" hash="901680ab3e1103a5f48871dc9cd381d6"/></dir><dir name="Chart"><file name="DataSeries.php" hash="e7076e005301be41adf52a58e0824be7"/><file name="DataSeriesValues.php" hash="6bae1ddb7670c6966aa650b736adc56e"/><file name="Exception.php" hash="a06db381aca20a233a2343fdb1b3984d"/><file name="Layout.php" hash="f372df2e9240733449ec13299e12a731"/><file name="Legend.php" hash="007d1fc43db17a7a714ac490d621d3a4"/><file name="PlotArea.php" hash="ebc3924021d32e09fbf6e191ea7c9169"/><dir name="Renderer"><file name="PHP Charting Libraries.txt" hash="6ce1c907ce7043d81288b98e1ffd8c35"/><file name="jpgraph.php" hash="279ce653db7b4177d1c378c421dd4ffe"/></dir><file name="Title.php" hash="02874bda68ff78da251e84c68fe61b3c"/></dir><dir name="Reader"><file name="Abstract.php" hash="5e936960b43fc0286ba3b6663222eeab"/><file name="CSV.php" hash="141e9bcc6c31323092927e5e0ca8f162"/><file name="DefaultReadFilter.php" hash="83e54f1b119a512e8d64cef6b258865f"/><file name="Excel2003XML.php" hash="9fafa9bb7e70b9063a4082598f1cc52a"/><dir name="Excel2007"><file name="Chart.php" hash="496a5edc2e1a2c9664459047481e44bf"/><file name="Theme.php" hash="503ca86087407ce4711cfdacbae846dd"/></dir><file name="Excel2007.php" hash="7367d998079874628d53827d415194f9"/><dir name="Excel5"><file name="Escher.php" hash="f4e8768b6bb41c6d95a3d443189f4dc3"/><file name="MD5.php" hash="2dc878b66882d023d8ae841f1e93138a"/><file name="RC4.php" hash="fba55a88fc22e075a6e2b6a6fdcfe5fa"/></dir><file name="Excel5.php" hash="0a440d3c5a6797eb0d3bebbcff230cf1"/><file name="Exception.php" hash="7125b5445841b29f219c175258c89ae8"/><file name="Gnumeric.php" hash="14eb4e868c3c117ca78b2ee1a8fbd5e7"/><file name="HTML.php" hash="96afd8420f5fedf86759e50e18c19ae4"/><file name="IReadFilter.php" hash="0736c334c496bf42d0e16d2dd0b9dbd2"/><file name="IReader.php" hash="8e6325d94957c3edd350d967cba66eda"/><file name="OOCalc.php" hash="f0787409765f1ebd3af78d0afa83ee6c"/><file name="SYLK.php" hash="5a68110f072be2987678b928e2a5b5dd"/></dir><dir name="RichText"><file name="ITextElement.php" hash="022e671cfd5fe5036f556aa3da0b5e13"/><file name="Run.php" hash="42e3a7e9b7e9dc2b4764cd7e9256e2dc"/><file name="TextElement.php" hash="312b6cc37fa1260236670384c445cdef"/></dir><dir name="Shared"><file name="CodePage.php" hash="f778196b9cfc0da13183b253057bec0b"/><file name="Date.php" hash="a26d5625d129579d9f524ab8d0531f30"/><file name="Drawing.php" hash="af1da980682f5c1f2731f94133b81567"/><dir name="Escher"><dir name="DgContainer"><dir name="SpgrContainer"><file name="SpContainer.php" hash="8194d9a9e6d02245fea8bc4f36f07c93"/></dir><file name="SpgrContainer.php" hash="32c66b6e42634db60322c5e23f60b82f"/></dir><file name="DgContainer.php" hash="0a999b2c39273240d5d0a9df52b660e4"/><dir name="DggContainer"><dir name="BstoreContainer"><dir name="BSE"><file name="Blip.php" hash="82e7eaa1811b7cfb946c047a92427c38"/></dir><file name="BSE.php" hash="dec31faefa86bcac6179fb64d2ec273b"/></dir><file name="BstoreContainer.php" hash="1da7d264aabc0acb3fa391ab5abeae02"/></dir><file name="DggContainer.php" hash="3cc63376df61d3de6cb3d0381b26e258"/></dir><file name="Escher.php" hash="814c9b01923def958017f1333eee2177"/><file name="Excel5.php" hash="86feffcfde61c12b6e6f013620599c27"/><file name="File.php" hash="a657b5cf8872cfe2107c9c01baba8cdd"/><file name="Font.php" hash="88d74f04f0b130c6c633d773cd37669d"/><dir name="JAMA"><file name="CHANGELOG.TXT" hash="81155b0ba4a4aee114047e7aa51e4043"/><file name="CholeskyDecomposition.php" hash="d34ecb13bcefd7c6f04139def3796b60"/><file name="EigenvalueDecomposition.php" hash="c17e11c6d3aa17ad5ed1987ca2782023"/><file name="LUDecomposition.php" hash="e17c4558ef2a3e1914f7b658cc44b93d"/><file name="Matrix.php" hash="53ad625ea79d17eedc3808d257e7bab5"/><file name="QRDecomposition.php" hash="99c31e87a163d45f8c6d940ebbc5e171"/><file name="SingularValueDecomposition.php" hash="d18aa1bcae41dac035353f25d3e77a31"/><dir name="utils"><file name="Error.php" hash="ee40ef699a75fcb33856a80f1b5862cb"/><file name="Maths.php" hash="44462be998ffabaa1530d804438ca521"/></dir></dir><dir name="OLE"><file name="ChainedBlockStream.php" hash="d4bb1993b2f702946acfa46e97aa4160"/><dir name="PPS"><file name="File.php" hash="0474f51f53afc5638edcc9a0b6c3fbc2"/><file name="Root.php" hash="208d81258c79750799dbab04c81ff1f0"/></dir><file name="PPS.php" hash="9d8e405cd746bc5689b6dbfd9bd3a75f"/></dir><file name="OLE.php" hash="855929ae8f887d2cc1881176f0cc5698"/><file name="OLERead.php" hash="446ec9ee4bdd7cc7e025197033b425e9"/><dir name="PCLZip"><file name="gnu-lgpl.txt" hash="f14599a2f089f6ff8c97e2baa4e3d575"/><file name="pclzip.lib.php" hash="3ee0a4d8a06cedc0a56f29e8f351ef72"/><file name="readme.txt" hash="0d82536577908a1f78e1b5c6220f5810"/></dir><file name="PasswordHasher.php" hash="7e9dbb123da6ebf684d78d59dc55aae6"/><file name="String.php" hash="a33e20a7869cb76cfedea8168aeb144e"/><file name="TimeZone.php" hash="d65f43b613e065f013eef6803c56f0bc"/><file name="XMLWriter.php" hash="2c7ef964e936d08dc0a2a100665702e0"/><file name="ZipArchive.php" hash="e2fa9952bbefd2d81507e458d539ded4"/><file name="ZipStreamWrapper.php" hash="ad14dcb8fbd5222b7806e39122b1661c"/><dir name="trend"><file name="bestFitClass.php" hash="b59ad65a9b95d6bfa72cbdb3416ffc6b"/><file name="exponentialBestFitClass.php" hash="021fe1a3f2453c26c40b2692bf3e13d5"/><file name="linearBestFitClass.php" hash="1c56b0b6062a02ad58eb48fe77f1eff1"/><file name="logarithmicBestFitClass.php" hash="4000e8e6ee228a63a6712448d3689df0"/><file name="polynomialBestFitClass.php" hash="48e12ca22a05fb7fdb6cb66b9d996b02"/><file name="powerBestFitClass.php" hash="e76a3317b4c761b45107b160689286b2"/><file name="trendClass.php" hash="4f826ac73685676b87076de95a17ff1e"/></dir></dir><dir name="Style"><file name="Alignment.php" hash="6629881d62ec07d2bee03625ba8343a0"/><file name="Border.php" hash="5e707af05b1dcbe3cc069532cfb1a49c"/><file name="Borders.php" hash="55ab49a60cc4731aaf87bb8471d5eb99"/><file name="Color.php" hash="f70870d3d4c4a238636e775c6c489185"/><file name="Conditional.php" hash="70eaa6d58e2b64689afba07ac916137f"/><file name="Fill.php" hash="44daa400dc0b6bde70d917b8c349fe4e"/><file name="Font.php" hash="2de4834bb4b11444e4995a91517f91e3"/><file name="NumberFormat.php" hash="053298f5a8a54cdf0581f3e393014817"/><file name="Protection.php" hash="52d3d0e540fc22af4df901c9dae23cd6"/><file name="Supervisor.php" hash="9c06b8d9c19e79344fe667264bcf4104"/></dir><dir name="Worksheet"><dir name="AutoFilter"><dir name="Column"><file name="Rule.php" hash="006d912960d4c2ba3dafff71ef693a19"/></dir><file name="Column.php" hash="92ee57544a767280c79e7e0551087e7a"/></dir><file name="AutoFilter.php" hash="b729e61a53f2a3889f0d9282543b81ff"/><file name="BaseDrawing.php" hash="ca57c82c46c78c7e8b349eafa9a88593"/><file name="CellIterator.php" hash="d4bc618bbc586249c1e5dc7df1d993ac"/><file name="ColumnDimension.php" hash="3b9ec591295530beb15cd8237c7cc70d"/><dir name="Drawing"><file name="Shadow.php" hash="d630b34c395209b07d4dd804ee18dc73"/></dir><file name="Drawing.php" hash="cbf3a833861eeaaf3701787357450294"/><file name="HeaderFooter.php" hash="98de723123be2d2a249f367c570b9c29"/><file name="HeaderFooterDrawing.php" hash="c7c6f9b3505e4371f55108ff03d24d16"/><file name="MemoryDrawing.php" hash="333c41a96934a40789bb756955837fce"/><file name="PageMargins.php" hash="513f4fd898a3c7a753e6a5fd314ad662"/><file name="PageSetup.php" hash="ad4d560edf7688ed37ab304139d84f79"/><file name="Protection.php" hash="a8009085ec12f6e99f163df7946d610c"/><file name="Row.php" hash="c7240acf83a4bb1d5d867d7a0cc77f5a"/><file name="RowDimension.php" hash="b2fb45b94bb56d896d09a5d561082676"/><file name="RowIterator.php" hash="6984179f0409f6fc83db123b4b3a6e3d"/><file name="SheetView.php" hash="643122447438c7b65a12d044d8eba413"/></dir><dir name="Writer"><file name="Abstract.php" hash="71881e3c107b9e9ed8d38192b5d83700"/><file name="CSV.php" hash="641fa5f7d7b5805ef77566699631a2ff"/><dir name="Excel2007"><file name="Chart.php" hash="64ef1552a4726a0bd1e017027a529662"/><file name="Comments.php" hash="37f5f882ad0bb555d05b6996008d8662"/><file name="ContentTypes.php" hash="6e0a91955bbe0c65e517ec3a0755c7f8"/><file name="DocProps.php" hash="857de2845f5baa04e4496faa19da5d0b"/><file name="Drawing.php" hash="6b9f0004b35622ab59a613bd81f33b6d"/><file name="Rels.php" hash="4477e66d75e9f48468bf9b086159ae09"/><file name="RelsRibbon.php" hash="3f66b74fb31784ca8ce4bd5bc7291ee3"/><file name="RelsVBA.php" hash="880686bbfa3e472554291b46adcbdf7a"/><file name="StringTable.php" hash="9a4274e4c1b5b2c3fe470cf4a13d5c6b"/><file name="Style.php" hash="e3e5723d4360af64a18d30c0b93a942a"/><file name="Theme.php" hash="eac4b2103b90d25979a60f64179cb7bc"/><file name="Workbook.php" hash="018aabcb96afc1c7dd397fe5b05a6eb9"/><file name="Worksheet.php" hash="88b5cc0fde4a95b2cb89e63b7abcd46c"/><file name="WriterPart.php" hash="b57a9a922bf85e0c55b9fb3e25e7914d"/></dir><file name="Excel2007.php" hash="9747cbee3a0c7e82a77b658203c661a3"/><dir name="Excel5"><file name="BIFFwriter.php" hash="718654fec54a551f016a37ca804b42de"/><file name="Escher.php" hash="0d416af1873a7fe13017c0f53a70da16"/><file name="Font.php" hash="7f2445071c18c6b1c2c1795eae0b7c12"/><file name="Parser.php" hash="ac6ba6bf3cbdcfe7c270a5eff8d8d768"/><file name="Workbook.php" hash="fe2d6f409f6141004c784478160112ef"/><file name="Worksheet.php" hash="2eb04d70106f0635944c7d793eb124e0"/><file name="Xf.php" hash="aebe288abce9d204dee832a1b2522e3a"/></dir><file name="Excel5.php" hash="44c5bbf4edae0f164f18c6816a76f98d"/><file name="Exception.php" hash="7bab6538d9b1b384046054de54e96f42"/><file name="HTML.php" hash="00865972340ff901b501935814385eaa"/><file name="IWriter.php" hash="f09b0dc69e45f2ffa0ac9b5ab502fb82"/><dir name="PDF"><file name="Core.php" hash="e2a46d6c77a74863f81a5842d6a9ebca"/><file name="DomPDF.php" hash="90810f3edb94624db9675e903b00471c"/><file name="mPDF.php" hash="0be83c393289fe4fa01d71757beb7c1f"/><file name="tcPDF.php" hash="3ed2de3ea0628b6dddd7deae4c4b5846"/></dir><file name="PDF.php" hash="389cbece6563cd263debef97ec425957"/></dir><dir name="locale"><dir name="bg"><file name="config" hash="bd48b1342028433c0e8b1405f63681b6"/></dir><dir name="cs"><file name="config" hash="5bec343ec684797f504042520ee2d770"/><file name="functions" hash="dd9b6a53208a2d9128a0dbed5a192c61"/></dir><dir name="da"><file name="config" hash="3c9e6275eeb4e3e8b0227e6fa1cc7e99"/><file name="functions" hash="2be89aab61a219f5102367274eb6ebbd"/></dir><dir name="de"><file name="config" hash="eb1de3a4a017502843d25740d42f0a2c"/><file name="functions" hash="000406260d68b33e72ea78dfeb00b5ff"/></dir><dir name="en"><dir name="uk"><file name="config" hash="24025d0951937faf37cf1c6e0f3dc126"/></dir></dir><dir name="es"><file name="config" hash="65290b4e3b67ebb9a97a90b9222c7e15"/><file name="functions" hash="a703deb701efd97e00291db5333afb3c"/></dir><dir name="fi"><file name="config" hash="14d9c9df4ce03460ea96c3d80399ae57"/><file name="functions" hash="b5e2892f1b2a3a4961e1afcc3a6ee640"/></dir><dir name="fr"><file name="config" hash="027f624b5a6e245629eb0c61e3885e32"/><file name="functions" hash="a77aca7f185e1d209515a4496bafee4e"/></dir><dir name="hu"><file name="config" hash="5fa5ca22943755f450c54c677cdc9746"/><file name="functions" hash="1fb62789d3bac98fa779cd4b41b586ae"/></dir><dir name="it"><file name="config" hash="150afe868eb2c018cf6821f24e4cbd61"/><file name="functions" hash="33abdfe7001d4fdbe302900074323b0e"/></dir><dir name="nl"><file name="config" hash="491f94c0f2bfb810f70ad2318163cd4d"/><file name="functions" hash="0c67a37f97efc98f45722cc2f4fcc35b"/></dir><dir name="no"><file name="config" hash="279bbcda77bc7f0730e22a4bea7e3802"/><file name="functions" hash="5028d6a07e300f28f5ee32bb5aae7133"/></dir><dir name="pl"><file name="config" hash="6a58549706b2da7200b5d78f4ab41f92"/><file name="functions" hash="38738374816955fbdff6f86f6fa8a94a"/></dir><dir name="pt"><dir name="br"><file name="config" hash="f43c1e73bb43432e18d724b8f5b478c5"/><file name="functions" hash="c4790f115b3abc4a12c66b943c1902a9"/></dir><file name="config" hash="da578667203b7cda77565744077e7841"/><file name="functions" hash="d7cd17cfee5fddc681e19f9e59ddd133"/></dir><dir name="ru"><file name="config" hash="567fc66512232e26a7fb27f953190805"/><file name="functions" hash="3ee40439feab895f7b43021bc3ee0d74"/></dir><dir name="sv"><file name="config" hash="e1db96fd21891c616ba3ea744fea210d"/><file name="functions" hash="c61ab2dbccc729b8587a118debbce06b"/></dir><dir name="tr"><file name="config" hash="579938059c4a3c5114e398229ca5d081"/><file name="functions" hash="f1d72a47a1efcefe2979d5c12db88a6c"/></dir></dir></dir><file name="CachedObjectStorageFactory.php" hash="fcddd34477297d387012571e8968ca45"/><file name="Calculation.php" hash="8a4cc594019490aa21c601176209de88"/><file name="Cell.php" hash="30e0d3851122f2335149ece30169ec24"/><file name="Chart.php" hash="d19d8b127aec43520416aa9488e893bf"/><file name="Comment.php" hash="2b1e37cf0e1504b9ba0d13473ff743fa"/><file name="DocumentProperties.php" hash="a310128c6ef8686c6858b14518baa680"/><file name="DocumentSecurity.php" hash="f01bb7af3b6b4d775e99ffa49316b2c8"/><file name="Exception.php" hash="f85f0fa5025dd2a43b2f271efb7068e8"/><file name="HashTable.php" hash="4347b83f91a7f036526b3d9efa7a14f9"/><file name="IComparable.php" hash="ccb0435d62a54236d7afe9c1aed08ad3"/><file name="IOFactory.php" hash="f6e2a8c261cf66ccd1042433e66a1901"/><file name="NamedRange.php" hash="676daa1d2dfd5bd61c4e065aabf8cb84"/><file name="ReferenceHelper.php" hash="c1c7bac86d13f19ca6134c7d95256177"/><file name="RichText.php" hash="a3ecee59068d011fc751ddcd449e014c"/><file name="Settings.php" hash="eaa649e68369e3c01e30ab72429ce311"/><file name="Style.php" hash="250eacd8a8060a76903a7e5a81519ead"/><file name="Worksheet.php" hash="c3eb607361f574fe777cdc0178de7b32"/><file name="WorksheetIterator.php" hash="73d5db8e6d1c331a6f25b0bc0204946c"/></dir><file name="PHPExcel.php" hash="144f3dcdc193f98e7e63f6909190f0f5"/><dir name="phpqrcode"><file name="1419976901png-errors.txt" hash="5c0bdada27335acf976037e64f053d69"/><file name="CHANGELOG" hash="8a872fe193a26678351bfcd30ce762bf"/><file name="INSTALL" hash="4b8cd3c0df34ccdf9eda43633db9ef2a"/><file name="LICENSE" hash="01a2438b1b13b50bedf2778fc1678265"/><file name="README" hash="f541b0b72589a7d3383eface763af72b"/><file name="VERSION" hash="1be049d58921c68c0ce38169a785ac20"/><dir><dir name="bindings"><dir name="tcpdf"><file name="qrcode.php" hash="5b713d84ab4d0fc710a147a0e3848335"/></dir></dir><dir name="cache"><file name="frame_1.dat" hash="9966a137ae5c422c423c64664a6e7525"/><file name="frame_1.png" hash="411b1640bd31fb729f2133abcd06147c"/><file name="frame_10.dat" hash="5322d931be649e5ccec61461d67dd321"/><file name="frame_10.png" hash="94e6c5ecb12f212f27dcff20e82a795b"/><file name="frame_11.dat" hash="79e3ee85484b12fcc4fdc1907510dd90"/><file name="frame_11.png" hash="f6ef45cec274ec241a873ef22df7f45e"/><file name="frame_12.dat" hash="37ccf648fe2fc810ec81fa0f8c3820f1"/><file name="frame_12.png" hash="76152b897afbf40707bf238b5c6dd172"/><file name="frame_13.dat" hash="b04711a3b19ec79c84549843c5557ac9"/><file name="frame_13.png" hash="d6ed6af6d34cf2e8a8d24ae08400fae4"/><file name="frame_14.dat" hash="250770c3d53b29c438f8c0882e1d56d0"/><file name="frame_14.png" hash="d681e5d008e03ef3b2a174da3b77067a"/><file name="frame_15.dat" hash="8e37257a86d3bb454dc2568d94673f6c"/><file name="frame_15.png" hash="ef5b3f6e8fc23ebc14a8929a5300da95"/><file name="frame_16.dat" hash="7032d38df7b8225e306c6940b9380e2b"/><file name="frame_16.png" hash="3e55f66956d8035aa8d3bc1e7fc160f7"/><file name="frame_17.dat" hash="f492c83b8c1c940ee37f41407d0a6c23"/><file name="frame_17.png" hash="03db7f215625032749e912f2aab2a701"/><file name="frame_18.dat" hash="0780fa437cde6b605d86ba1a2234f19e"/><file name="frame_18.png" hash="b52277f3cd98a8f46663f5091b0a9681"/><file name="frame_19.dat" hash="dd0bf43626ee9dc7694382311d94df7f"/><file name="frame_19.png" hash="aaa7c06298eac23c24c41372b13e99ad"/><file name="frame_2.dat" hash="d2063daff8eada7d4a22cedae30f5d04"/><file name="frame_2.png" hash="1ae37415f42c6dbfed330acee0e488d6"/><file name="frame_20.dat" hash="a3a1eb820b13832a3cfceb8af8fb2ee5"/><file name="frame_20.png" hash="a674ebc38712054a376b181db975e02b"/><file name="frame_21.dat" hash="f35be2f92c1f6546b5896916e76c9b34"/><file name="frame_21.png" hash="e29a7e7e2516dfec6cf283c12e83224b"/><file name="frame_22.dat" hash="080bb29f0d4fb1c04f2973ef87b91f5a"/><file name="frame_22.png" hash="4faa3626cb02b8c824247b7f8cec0ee1"/><file name="frame_23.dat" hash="009203ec77f7fd1e19b495c3f1b08a44"/><file name="frame_23.png" hash="3c9cc974afe24e8d7750c72d3bbc298f"/><file name="frame_24.dat" hash="c1b69627f5e2705025d7db7b523e4892"/><file name="frame_24.png" hash="6722efb1632fc9a23f687d67060514cd"/><file name="frame_25.dat" hash="85f80a8a72dd8ecfe50b73dd04c03428"/><file name="frame_25.png" hash="d33e136b0ef7cbdd31857d395219efa1"/><file name="frame_26.dat" hash="00a2327c48e4e8019e4f1bf1173ea6a7"/><file name="frame_26.png" hash="bfba16b8705888625f6a1efa26008f8e"/><file name="frame_27.dat" hash="f74a3e9017abb34cf10d9161db6944a6"/><file name="frame_27.png" hash="4201dc61a80d2cdbc5180abdbf3cb09f"/><file name="frame_28.dat" hash="76acbf4f5b5214113a329585a43e4c88"/><file name="frame_28.png" hash="ba1fa3b05d4e0ce79711857b845a0d8a"/><file name="frame_29.dat" hash="8571093499a6bdb0ecb179f4ba2420ea"/><file name="frame_29.png" hash="2adea50109f78d7341993b2195a715c3"/><file name="frame_3.dat" hash="2699cfca6a5e65aacd0c7fbb6c9084d1"/><file name="frame_3.png" hash="2aed9e9c0e87bbee7443546ba55c3cf6"/><file name="frame_30.dat" hash="255e0419353a95fd6ed075683ebee392"/><file name="frame_30.png" hash="ed732e8b8a612389b31544b8b6a460b5"/><file name="frame_31.dat" hash="69e65a7e068f7743b31a33f1faad9bac"/><file name="frame_31.png" hash="6642919250856e737f3fdf2db8073178"/><file name="frame_32.dat" hash="eba1b97fa1d0a8b28d2374323848534d"/><file name="frame_32.png" hash="51231a4d0f1d7520c3faf374b95153f0"/><file name="frame_33.dat" hash="166082e4520386ae368ece323cb96e16"/><file name="frame_33.png" hash="c281e359d10cfca77e6c9d24bbacb86f"/><file name="frame_34.dat" hash="f7fcf8d02665cbcf07e97b2492b58be9"/><file name="frame_34.png" hash="72698abce1e633a798c1e4778f2f1b93"/><file name="frame_35.dat" hash="5b5ecdbf418448b208b402f73afcc1d7"/><file name="frame_35.png" hash="c87869bf4bf45da1c7127c6de2a0f11c"/><file name="frame_36.dat" hash="03912dc10e6c9548be0475a3d1a8bd36"/><file name="frame_36.png" hash="e5dd2ab9dcb0ebfcc208cab72482fd15"/><file name="frame_37.dat" hash="ac1584560973137f64a713b1cf135d95"/><file name="frame_37.png" hash="085b9a14931e24612d5a31d68dcb23ff"/><file name="frame_38.dat" hash="b45ceadcace8ab29ae23f1187827ee81"/><file name="frame_38.png" hash="a5b05f453ec538e590f8d89587a23611"/><file name="frame_39.dat" hash="1d62f529bdb36150d01a50edec41274b"/><file name="frame_39.png" hash="c83d4b2895ef4131002922efbab49a28"/><file name="frame_4.dat" hash="8f7cc1859eb9a53b5632292e3a130294"/><file name="frame_4.png" hash="b358fec2b171d3f48ed37760f2e43b4a"/><file name="frame_40.dat" hash="49e85960945738760a4657d66c955ec6"/><file name="frame_40.png" hash="4dbb42edd5532958d0a3373292ba907f"/><file name="frame_5.dat" hash="3163d7510e346dc920d4cb54a531c39d"/><file name="frame_5.png" hash="8fc575dc94ac96e59935a760eae530bc"/><file name="frame_6.dat" hash="8e295fa8a97640d442e0a0eb2071dbff"/><file name="frame_6.png" hash="e570a56ccb27e1123efa4f32875ebce0"/><file name="frame_7.dat" hash="daeda73b2271bc29305de751e93def4a"/><file name="frame_7.png" hash="f1f1f510346c6011a0a9db54a6ce1600"/><file name="frame_8.dat" hash="7fa3ac63497597e55d211749e725e1fb"/><file name="frame_8.png" hash="8da14e672ece3b8e6a87f6e730baf480"/><file name="frame_9.dat" hash="25c5097cb158d1871441f7c47dc39ee1"/><file name="frame_9.png" hash="e9c335a41a1ace41f43f096e488a4987"/><dir name="mask_0"><file name="mask_101_0.dat" hash="6c4fdf704de27629d87b83d880801c64"/><file name="mask_105_0.dat" hash="202eb068c963ec45eba3eb97d2870ce3"/><file name="mask_109_0.dat" hash="d2a05381fcf529d73d253162ba809d74"/><file name="mask_113_0.dat" hash="8a507f639e0b0556b6d92277cb5f392d"/><file name="mask_117_0.dat" hash="a5a9ad0b479b2b21e5e20f313766f86f"/><file name="mask_121_0.dat" hash="bccba8f234c62c4ab2f44ae44ab54cb9"/><file name="mask_125_0.dat" hash="f4701c9eb001f32bacb2084bfa3e985a"/><file name="mask_129_0.dat" hash="a1ebe9f05b055f64f558a6244e6c7890"/><file name="mask_133_0.dat" hash="d2929cb58d6e9cd60e8a119be822d309"/><file name="mask_137_0.dat" hash="dcd93d58f4072469967980ba59574f40"/><file name="mask_141_0.dat" hash="5ffc654902a36e2b332fda9d59091fff"/><file name="mask_145_0.dat" hash="9efe56fe464d4502494a1cf626fe9dec"/><file name="mask_149_0.dat" hash="b4e966f8336481fe22747556591cd120"/><file name="mask_153_0.dat" hash="f4e6a1e8b8d358caf45684afdff31294"/><file name="mask_157_0.dat" hash="f6ffbde0114c9697566688b47a6711d6"/><file name="mask_161_0.dat" hash="62f427d65bb9b4443d2e7ade8d459eb7"/><file name="mask_165_0.dat" hash="0e55dfeac94cd03d80ac3beadf229be2"/><file name="mask_169_0.dat" hash="e9d7cf1075155e841397c34439cb7727"/><file name="mask_173_0.dat" hash="5e921e75199ac8624f0bda6b7c8a0ca5"/><file name="mask_177_0.dat" hash="ddb00baf98441c85e41289c22725c176"/><file name="mask_21_0.dat" hash="0718577fa2c550f18c1ada43073686c3"/><file name="mask_25_0.dat" hash="86dff5e28a8686795053144e8e1a1468"/><file name="mask_29_0.dat" hash="0e10a1d9372b0d19001975e9cfae0283"/><file name="mask_33_0.dat" hash="f80d9b95cdc71d8569289bdf50461c0f"/><file name="mask_37_0.dat" hash="a29b43128de8475414f71c138a48ff39"/><file name="mask_41_0.dat" hash="994bd068e5e27de60ab2c80f741a3305"/><file name="mask_45_0.dat" hash="081b0e72ce1c7c98b19a9569ac3a44dd"/><file name="mask_49_0.dat" hash="f50d98727bbdb9f8550cc9170f2ec5f9"/><file name="mask_53_0.dat" hash="4f116fa5476c96c493d9fa39144f3e0b"/><file name="mask_57_0.dat" hash="63842c6c6382a6e9ad6ad9a5d260e10f"/><file name="mask_61_0.dat" hash="a8c349ae832d6ecf6393bab781285d43"/><file name="mask_65_0.dat" hash="e025e048393a0ef230ecfca730627d67"/><file name="mask_69_0.dat" hash="03b969d8d5cc667b9db6d30435ed0465"/><file name="mask_73_0.dat" hash="b4ddb6571dfa5e097778529e515aa991"/><file name="mask_77_0.dat" hash="c958cba6bf9169ed0b5e5e812bde8407"/><file name="mask_81_0.dat" hash="59352f5a91fdda1c299839c388b31094"/><file name="mask_85_0.dat" hash="27d360595156bca380e0882db865d97f"/><file name="mask_89_0.dat" hash="340efa3d23812287232ab47d46acc7f4"/><file name="mask_93_0.dat" hash="071afbef25ba4ce443fe371d286d3f4b"/><file name="mask_97_0.dat" hash="89b20fb88a32644757ee346306a23203"/></dir><dir name="mask_1"><file name="mask_101_1.dat" hash="bf6ab6978bd3e4ddece1c510e84e286d"/><file name="mask_105_1.dat" hash="9d953276346ed743a173ea8ca0e8cd2b"/><file name="mask_109_1.dat" hash="e0b18b6aae70d01b424bcf2f37f76f92"/><file name="mask_113_1.dat" hash="ad0a4162bb87fc14323e8fc95da0f491"/><file name="mask_117_1.dat" hash="cd26e07902b23b0c743505a2732b2498"/><file name="mask_121_1.dat" hash="3755b5cde7076711cb29fbb86e8a0e7f"/><file name="mask_125_1.dat" hash="ca310b53c8ec27d0718e3ef9211d723c"/><file name="mask_129_1.dat" hash="56d78d56fd0bd490a806a9d0a418b93c"/><file name="mask_133_1.dat" hash="25d97fb00854adb525107f41f3178204"/><file name="mask_137_1.dat" hash="c46aabe94b0f98709e634f4722bdb5cf"/><file name="mask_141_1.dat" hash="261a83e7dcf606694332c6c9e04b2b2e"/><file name="mask_145_1.dat" hash="38d5d0690e4603854cc05d315f1dd9c5"/><file name="mask_149_1.dat" hash="aa2eca119e10ec7b9b68a0114ac564ad"/><file name="mask_153_1.dat" hash="7afe60df62eed29834a72c7a0fa036b1"/><file name="mask_157_1.dat" hash="5d9825afa01b120972f1078079d94fd1"/><file name="mask_161_1.dat" hash="226022ea7568c6713f7ced33d58cd0c3"/><file name="mask_165_1.dat" hash="84ae6b587247749c38c4f95eb13db733"/><file name="mask_169_1.dat" hash="7e6db5dc520265a7c2e1b5f840b1aac0"/><file name="mask_173_1.dat" hash="3ce3d555e49b7cb1598b571cd9c39d11"/><file name="mask_177_1.dat" hash="82e07b24b1381c1f679c9ee6dfadccf7"/><file name="mask_21_1.dat" hash="bee4cdaef688947610b10b469c563994"/><file name="mask_25_1.dat" hash="4290a56446ca90443215f2fb4c1959aa"/><file name="mask_29_1.dat" hash="2456b09ddffa9f6c024d0146b2de747b"/><file name="mask_33_1.dat" hash="9d41f80f181d65bb09c4fac192180588"/><file name="mask_37_1.dat" hash="188e3cdd055dba53f9e428491adafe77"/><file name="mask_41_1.dat" hash="0dd7fad119dc0f8d64027c8cb7b87b8d"/><file name="mask_45_1.dat" hash="c0a3c6ed3d6c9e87235f3118c529e20d"/><file name="mask_49_1.dat" hash="2d78d9b0d2ca5f8c2f70a0aee7c91c72"/><file name="mask_53_1.dat" hash="5335af744066a31f48d6e3cab2b40dbe"/><file name="mask_57_1.dat" hash="df0543a3e8403ccfbadc87e1f711c006"/><file name="mask_61_1.dat" hash="87976040b3e1c0f0ef6ce09a100e8a6f"/><file name="mask_65_1.dat" hash="63efa207af9229d00444dc5ffbd0554f"/><file name="mask_69_1.dat" hash="aae34841ca735ca390f8542ee03afdf2"/><file name="mask_73_1.dat" hash="8493bba42242fb0a464247675a7a35c1"/><file name="mask_77_1.dat" hash="3e8c67e245d2d273cb14e773d6a9dfaa"/><file name="mask_81_1.dat" hash="0340c9c4ccd8a3840523a734655afa3f"/><file name="mask_85_1.dat" hash="b0743efcadd883a6597eca6c32cf1f66"/><file name="mask_89_1.dat" hash="f68463319238c992e1672fb74874096e"/><file name="mask_93_1.dat" hash="ea4adb79715c58e337a875b4e4a3956c"/><file name="mask_97_1.dat" hash="e8c8a30ab35215bdd8dbf715ed1cda6a"/></dir><dir name="mask_2"><file name="mask_101_2.dat" hash="c19bd200710ef2a60c5758db76df1202"/><file name="mask_105_2.dat" hash="1bf1c38f25b93af043bacc05798748ac"/><file name="mask_109_2.dat" hash="bffead7278a51efb89b94e6d267f13f0"/><file name="mask_113_2.dat" hash="84cbf90c73ba9a78c0a283b7e70c4ca6"/><file name="mask_117_2.dat" hash="f9fa108e550908a5a1f1087b92bf2154"/><file name="mask_121_2.dat" hash="0b6414fb6f76bfe0381c6cb2aacd34ba"/><file name="mask_125_2.dat" hash="aca184e91ebb60548c7118e17c10de73"/><file name="mask_129_2.dat" hash="0e929552e878974a3951d1eabb31a694"/><file name="mask_133_2.dat" hash="2fe6a8bd3fbe0805d5247952d398d8e9"/><file name="mask_137_2.dat" hash="563bfe8ba15383804f83ca96d39a8896"/><file name="mask_141_2.dat" hash="0f554119e613553d0e290496578d827b"/><file name="mask_145_2.dat" hash="ef3c2eae15e4726bb8803ad2c41dd635"/><file name="mask_149_2.dat" hash="24353d418076add713c045cbd20570a6"/><file name="mask_153_2.dat" hash="3d413b652cfe3d99374e30688053b90c"/><file name="mask_157_2.dat" hash="6e1c88422eb13dd8489d464e3281ee82"/><file name="mask_161_2.dat" hash="53b23561c00e1d00b8f575b3cac30ab8"/><file name="mask_165_2.dat" hash="8e84496c645a09f23cd18bdbb725c31f"/><file name="mask_169_2.dat" hash="990a5c2ece92d9d0e07228b7fbf898de"/><file name="mask_173_2.dat" hash="9749985009d535e753d29ea300456be6"/><file name="mask_177_2.dat" hash="c3c527e46e0dd6909193a06e30cc5f9a"/><file name="mask_21_2.dat" hash="ef7fd6a1deb6cc2e393ace6dd84d5a36"/><file name="mask_25_2.dat" hash="eabdf7cb85e1cf0bdb7952438a24e1cd"/><file name="mask_29_2.dat" hash="e39952d54f008e8d39ad61172d7a6fcd"/><file name="mask_33_2.dat" hash="ceb77e491c9ab253730ba4e72fd948ba"/><file name="mask_37_2.dat" hash="85edba0353ded1e99ef4f7a962cbac1f"/><file name="mask_41_2.dat" hash="7760ee0c6c86087fcde96e2eae9cb90d"/><file name="mask_45_2.dat" hash="3e38a0052f6badc68191d3ee3069e3d9"/><file name="mask_49_2.dat" hash="47ca1f72a8d43d06211b16cc98349abd"/><file name="mask_53_2.dat" hash="419e2b85764065370e791d4602b3d6cd"/><file name="mask_57_2.dat" hash="3c1fa898079586f5338aff22ad3e5e1c"/><file name="mask_61_2.dat" hash="d6e4a7bd67c891d213e2f4e79188fa87"/><file name="mask_65_2.dat" hash="6eddee56c23be857e881eed534e36bc3"/><file name="mask_69_2.dat" hash="e68f0f694c8c9a5f3f86a2906cdbe67a"/><file name="mask_73_2.dat" hash="54c839fcf1bf0a5251ea3d6458f75623"/><file name="mask_77_2.dat" hash="622903170480ae4ba0a41549544cf47b"/><file name="mask_81_2.dat" hash="3c55f79ff8ea70dd8a0862f351b2f3d0"/><file name="mask_85_2.dat" hash="3adfad79aca1860f53b719d3d6d48190"/><file name="mask_89_2.dat" hash="272d60997a9a1691cbe3091733e29162"/><file name="mask_93_2.dat" hash="f17848e3c1aa7981607d62355e36f2d5"/><file name="mask_97_2.dat" hash="85effa425682735086394a0c7bbafbb0"/></dir><dir name="mask_3"><file name="mask_101_3.dat" hash="ae198375944bf5e5db80ed22e67b68b6"/><file name="mask_105_3.dat" hash="6015c6e5f50aa989e01dd58097533ac3"/><file name="mask_109_3.dat" hash="0aff2d331afacd144a9358b0d74facc0"/><file name="mask_113_3.dat" hash="8f19e9effc6dd1c0fc6479bd67c48bf9"/><file name="mask_117_3.dat" hash="a2b2164b64aa246005688ff289cf1a4e"/><file name="mask_121_3.dat" hash="5c2f2642b172d9fe4b65fff2f1dadd62"/><file name="mask_125_3.dat" hash="9f3ad8403cb0e4dee43b6d1120704c42"/><file name="mask_129_3.dat" hash="b2849c22daa0217d68aa604856b9a78d"/><file name="mask_133_3.dat" hash="e81d804c6c49187029b6570262984b81"/><file name="mask_137_3.dat" hash="a59f1c0e5ad80120c501911dc9ef2145"/><file name="mask_141_3.dat" hash="037a2695936927ee7a1707b4811124b7"/><file name="mask_145_3.dat" hash="be939feee94f6d6d6ccc81ae1f600dbd"/><file name="mask_149_3.dat" hash="3196a80f19d3569d2f46ca1c30b8a24b"/><file name="mask_153_3.dat" hash="546b11d703368abb4c0d32a8d9c37982"/><file name="mask_157_3.dat" hash="8470a13e8aacd293d2553bdd313c0f3d"/><file name="mask_161_3.dat" hash="d094c5c953718c9f00cffb2e0d71c2f6"/><file name="mask_165_3.dat" hash="aa34451d98a131743df4bb1d5fd260f1"/><file name="mask_169_3.dat" hash="08548e5d2e1bdad75f9ed1b97b6c8152"/><file name="mask_173_3.dat" hash="7e7cb6489490d6e668a85b812b0b2612"/><file name="mask_177_3.dat" hash="7f21c6fbc48b877e5b31caac71633886"/><file name="mask_21_3.dat" hash="986c775b20f9bc975c3a83faee76329c"/><file name="mask_25_3.dat" hash="d62b82857c88be6ef18f4afb4cf09d56"/><file name="mask_29_3.dat" hash="9f8058257aa8b76d8445b9bb22b9c05a"/><file name="mask_33_3.dat" hash="4f1e8177a0c749ac3931d81c983ffa40"/><file name="mask_37_3.dat" hash="88c26716f6735be2fb4131eed5058051"/><file name="mask_41_3.dat" hash="7d652cb4b36012bc9ba5a7e1d035159c"/><file name="mask_45_3.dat" hash="3714071caccd1e070a2346b919d5f37b"/><file name="mask_49_3.dat" hash="2e2242a88660982e6667bb7ef0fea8de"/><file name="mask_53_3.dat" hash="87169242d83d8a40022bc9d4060798ae"/><file name="mask_57_3.dat" hash="7c6f98cf3629b427436375da98857ac5"/><file name="mask_61_3.dat" hash="6d1b20de6f2805cf18ef98970a7498ee"/><file name="mask_65_3.dat" hash="e0e64afa29e61db165dfc2638cacea41"/><file name="mask_69_3.dat" hash="68e564748c41b81d08e1a34a78a68296"/><file name="mask_73_3.dat" hash="449a36d7abd76c05e25444c8a1d7db82"/><file name="mask_77_3.dat" hash="446c00259878f35d8b468e640ad2ae51"/><file name="mask_81_3.dat" hash="5e55ada7d9fc5f5237e7ef505ba703de"/><file name="mask_85_3.dat" hash="b46ebcdc0121b1a3bedbd184495cfb88"/><file name="mask_89_3.dat" hash="14f648b97ed382c545c8632ac4e1b6f5"/><file name="mask_93_3.dat" hash="b2705428db6f3df45f0bf54bf7f7ebcf"/><file name="mask_97_3.dat" hash="b0103bf0ceaa6d15e13c1ddf314837c7"/></dir><dir name="mask_4"><file name="mask_101_4.dat" hash="ca45a07682fbb6bc77a32e9a15314494"/><file name="mask_105_4.dat" hash="7b74b40294afa78a889105b236e5a3cf"/><file name="mask_109_4.dat" hash="2f88c8ed36981f3080a6f1e035173635"/><file name="mask_113_4.dat" hash="d9a50ab9759fe8a037f4157e478d49ec"/><file name="mask_117_4.dat" hash="df85ef67e5c4cf3267aedc9055ff9a2b"/><file name="mask_121_4.dat" hash="7a66881619731b961dcfac808e2f6be0"/><file name="mask_125_4.dat" hash="409a1bcff906697dfa1f4a2b83aa7f72"/><file name="mask_129_4.dat" hash="c43f5c311576c0ce3537fcdc0aa9baaf"/><file name="mask_133_4.dat" hash="1b0d84cfdbd3520dae9cea6779e6102e"/><file name="mask_137_4.dat" hash="afad876a701bc44207b76b159cc624c4"/><file name="mask_141_4.dat" hash="ff707a8bfc3a08df2715dace4eeee2c9"/><file name="mask_145_4.dat" hash="e08158360699d664f225befb46faafae"/><file name="mask_149_4.dat" hash="16b0984a56f48cb56afb82acd67671a8"/><file name="mask_153_4.dat" hash="730cc2b3e3e12832a3d135dccec1985b"/><file name="mask_157_4.dat" hash="9c80740894d87ac138659dd817cfd326"/><file name="mask_161_4.dat" hash="4e5210091ec433c5c527d1f0585f73f7"/><file name="mask_165_4.dat" hash="a6dbdfb0999db134cca08f7e30cfa7de"/><file name="mask_169_4.dat" hash="9089622362230a309a438d6b3b552c1c"/><file name="mask_173_4.dat" hash="56ea5b38d276af919f2c6544c9ca0c69"/><file name="mask_177_4.dat" hash="87e64a44a0adf6eaeaff9dd68e771ad1"/><file name="mask_21_4.dat" hash="c1328902261a4b750bffd6a322a69e43"/><file name="mask_25_4.dat" hash="128cdfcfa192fb806a5d81f91ebc05dd"/><file name="mask_29_4.dat" hash="1afb863e3bd5f551724cd5e0eaaa659f"/><file name="mask_33_4.dat" hash="b60bbea04379a5edd6765ce656ec235f"/><file name="mask_37_4.dat" hash="fdb59b9945c57ac798ce7f56b436d061"/><file name="mask_41_4.dat" hash="6086f8d8e5e07367d4639ae9cb0ed432"/><file name="mask_45_4.dat" hash="7c39a588c3a02a9f2df71bbb451185f6"/><file name="mask_49_4.dat" hash="be9fe9f94ae480bec52518c31e252259"/><file name="mask_53_4.dat" hash="db6c8031329065e5bcb48d6dc0f53d53"/><file name="mask_57_4.dat" hash="b9d06f6aa6b2398637f04933cdbcd517"/><file name="mask_61_4.dat" hash="f7bb6ffa6ccabbc9fa44aaceb8d50561"/><file name="mask_65_4.dat" hash="04603c3e8d97ef14e2dad753e6eb93c3"/><file name="mask_69_4.dat" hash="36df758133b3febd68156ab37d01a511"/><file name="mask_73_4.dat" hash="51dd4eb76dff0927be98beedf05eaba7"/><file name="mask_77_4.dat" hash="dd103faf186586280ffe0641e2b7978f"/><file name="mask_81_4.dat" hash="90a9312e91e290c7391df673683fd487"/><file name="mask_85_4.dat" hash="d8216a889322d1935a3e7d26fefa473d"/><file name="mask_89_4.dat" hash="6396c3787c999f1d409da28ec4e0e7ee"/><file name="mask_93_4.dat" hash="e9d3369fdd1d79792395646f5923e1fc"/><file name="mask_97_4.dat" hash="77535b91df7f053f8931260141afe6b7"/></dir><dir name="mask_5"><file name="mask_101_5.dat" hash="63e4303918909723ece25197688b8ba7"/><file name="mask_105_5.dat" hash="ee01fae3b22b508e1adb3f47dc99c941"/><file name="mask_109_5.dat" hash="1325823b4e7600739d46c64d4212a5d1"/><file name="mask_113_5.dat" hash="c01d8795c46106917095511b9930c0a0"/><file name="mask_117_5.dat" hash="fbd2cd3349eb860d77369d4b0b944537"/><file name="mask_121_5.dat" hash="156bb97e4e652111cc8969c8c2c15e8e"/><file name="mask_125_5.dat" hash="0cb7294228c178cdd823b6a644967f1e"/><file name="mask_129_5.dat" hash="05635b96e33640886e90b4b8d56171a4"/><file name="mask_133_5.dat" hash="afb77cc82a0b754c7e8c896484430fdd"/><file name="mask_137_5.dat" hash="5dd206b6f8cef84943004dd46473e209"/><file name="mask_141_5.dat" hash="de316b74fdb13d4e2dd231db258e5b10"/><file name="mask_145_5.dat" hash="9db1a1f7ff00930a3a942ce19e5229f8"/><file name="mask_149_5.dat" hash="616f4baac1ccb75cebae890ca66cc639"/><file name="mask_153_5.dat" hash="6a244fbd16d99c00d881e7229626d838"/><file name="mask_157_5.dat" hash="fe12067a1b756e60b55402cd8ecd24d6"/><file name="mask_161_5.dat" hash="6447ad594af51dcfa9f972e82a21e54e"/><file name="mask_165_5.dat" hash="9301e05832397fd35cda0704d5a64e85"/><file name="mask_169_5.dat" hash="7ce18389a7d8a4eddd78e837665fa379"/><file name="mask_173_5.dat" hash="3e39ad33f5a469258e348dd7dbb83b1e"/><file name="mask_177_5.dat" hash="a5a8a619dba0f1ff547e228fc05696aa"/><file name="mask_21_5.dat" hash="7ea675316e14102a14ae2cc70897fd7f"/><file name="mask_25_5.dat" hash="d850e1d1e779dae8073761378b6ce671"/><file name="mask_29_5.dat" hash="150bfabd079b92aa70ab30a7e9368dfe"/><file name="mask_33_5.dat" hash="213369f74b18f08edea17c351d141103"/><file name="mask_37_5.dat" hash="b41c0f5323c4fa71a305521ba452b09d"/><file name="mask_41_5.dat" hash="6dea7e67b63ea326f85517d1c4c56d69"/><file name="mask_45_5.dat" hash="829091dac90854289ec9bcf351774a9d"/><file name="mask_49_5.dat" hash="9c3e06caa2d4917b7b5450ce0a27a7cf"/><file name="mask_53_5.dat" hash="4a81ede5d9554feb48b079e76a895fd1"/><file name="mask_57_5.dat" hash="5194ce0c45d7d9676abaf2fa2cef99fc"/><file name="mask_61_5.dat" hash="863bf39b5bcda2ad4767fb9027770695"/><file name="mask_65_5.dat" hash="9c7fc509da9e5df7e5edbc2a1ae55fd0"/><file name="mask_69_5.dat" hash="1d9d0d5c8c2c9d3e1f47e43d7a4d0869"/><file name="mask_73_5.dat" hash="21200ef88b501d6d22dfe931100fd4c8"/><file name="mask_77_5.dat" hash="517ed455f5eec7593ea201a2ed4cee5f"/><file name="mask_81_5.dat" hash="b3e6de4ae3f3ee7c22e9731e8f951c97"/><file name="mask_85_5.dat" hash="cbe89ebc95a4c3a1ef3eeb9cb81f89e2"/><file name="mask_89_5.dat" hash="8c2bc4a7da237a03224e2301d3895e33"/><file name="mask_93_5.dat" hash="513cb1d0cab1c36d1eca4484340c5e66"/><file name="mask_97_5.dat" hash="c9940067833f5e8e6a29eeb04f99a705"/></dir><dir name="mask_6"><file name="mask_101_6.dat" hash="fe3409bab63a28fd156562843368940b"/><file name="mask_105_6.dat" hash="34efa23c98039ef903960e7fa0592653"/><file name="mask_109_6.dat" hash="36ea76ef2e46af972407d49ff8da9387"/><file name="mask_113_6.dat" hash="03c97aec73f929287857fe364305c984"/><file name="mask_117_6.dat" hash="a9db9006460b267fdd008ee6d7961930"/><file name="mask_121_6.dat" hash="c252620b89e84448b2503203387b4cb9"/><file name="mask_125_6.dat" hash="b2163f500e8c2dc3e14442bbcf1ae2d4"/><file name="mask_129_6.dat" hash="0aecf6a2b535e1036bd64c688b65191e"/><file name="mask_133_6.dat" hash="fe8e9a6d458264eb66ad124528bc47cb"/><file name="mask_137_6.dat" hash="09421a3a805e387e6250cb1c87afcb5b"/><file name="mask_141_6.dat" hash="9910802e214f42ae2abdcee85116c2e3"/><file name="mask_145_6.dat" hash="aef30014661d9963c9617938bda7e2d3"/><file name="mask_149_6.dat" hash="2f9da67a9504c0deca5121d321b200e8"/><file name="mask_153_6.dat" hash="3c6c97c86dc381a338e67917478f3855"/><file name="mask_157_6.dat" hash="51b4b3cf7dddb9debe256fd8911a05f6"/><file name="mask_161_6.dat" hash="e3f360c52072bbfa68ef4d7f68c1970b"/><file name="mask_165_6.dat" hash="b5a9a0a0b8a48e2e193f941535c6484b"/><file name="mask_169_6.dat" hash="2b32a6d292ed03b746cd73f8f5d59f02"/><file name="mask_173_6.dat" hash="54f997312cdc4ef751491cfaf3308c66"/><file name="mask_177_6.dat" hash="92cacc6329349c5effbddeb9a2e559fa"/><file name="mask_21_6.dat" hash="1e2c0fc394840848946b2879a8ea0e58"/><file name="mask_25_6.dat" hash="67ededb602cd3eea65bd7cd15b3b8aba"/><file name="mask_29_6.dat" hash="ae9e79b8d717906f2cee4ac758ed5768"/><file name="mask_33_6.dat" hash="ca09e953f305a38d9e82b1a566c6c856"/><file name="mask_37_6.dat" hash="f1174b18aeeacd12b2efe0d1d9316c99"/><file name="mask_41_6.dat" hash="eb25abab0eccbe9b50e0727f65ddfb3e"/><file name="mask_45_6.dat" hash="e9df8dc1d0d56c4187a0081323998076"/><file name="mask_49_6.dat" hash="3fe09ab83277240614e315932f768afa"/><file name="mask_53_6.dat" hash="83c85d40e678c9b37c2d37f401bc14ee"/><file name="mask_57_6.dat" hash="4e807ebe4413aa11b14af7a0a9d42a50"/><file name="mask_61_6.dat" hash="10b367e0da3f5d0b5fe0b91e830f5653"/><file name="mask_65_6.dat" hash="c0b3bba3387d20f796672ffe9d0e38f9"/><file name="mask_69_6.dat" hash="a37fef158283319557bd0bf3ebe4846d"/><file name="mask_73_6.dat" hash="d9b39a4a9a1a7da544faba4a74c23d04"/><file name="mask_77_6.dat" hash="3268bdbf71bfcd6eca66a6e3dbed48b9"/><file name="mask_81_6.dat" hash="74955ed39c6185272affaeb81090919b"/><file name="mask_85_6.dat" hash="26e0c67dd75a268b3efc628d38d932da"/><file name="mask_89_6.dat" hash="a37653e6a06e2c536a8f585a005ef7f0"/><file name="mask_93_6.dat" hash="3ac10716db6cdd2859a807b9f95a18a2"/><file name="mask_97_6.dat" hash="7d9e1ddc9553878f2931db40fc6ed0e0"/></dir><dir name="mask_7"><file name="mask_101_7.dat" hash="e83d50dcfeddecf35f5bed16b54bbba8"/><file name="mask_105_7.dat" hash="e3bb1535f7075601e2cbb165173421f4"/><file name="mask_109_7.dat" hash="fe7590ee146b69ad00b7169c08a6ab58"/><file name="mask_113_7.dat" hash="84b1badf25a7a5cc4407b2174404821e"/><file name="mask_117_7.dat" hash="4e4233f2b6a3e9b1fa28e68ed52b037f"/><file name="mask_121_7.dat" hash="c9996c9461742edfab6dda88b613585a"/><file name="mask_125_7.dat" hash="f4553613c89cf07e4561ad2aae92e0cc"/><file name="mask_129_7.dat" hash="b4edc59c5e1f790379f71351f196e6bc"/><file name="mask_133_7.dat" hash="e6a4f6fa0a88402cdc0255ca95f5d199"/><file name="mask_137_7.dat" hash="fd33075985f60259af6b7dfd2ae189e5"/><file name="mask_141_7.dat" hash="ec73544083abf6bad1669d781bf09437"/><file name="mask_145_7.dat" hash="75a6237d00e616ca916d977602c0cb7a"/><file name="mask_149_7.dat" hash="a2d5667629afc9ea067e1839eacc8f68"/><file name="mask_153_7.dat" hash="a01eb9a63c1920b705ff4d8b717f4ce7"/><file name="mask_157_7.dat" hash="fad2e537867b26a49f29d60265c0fb40"/><file name="mask_161_7.dat" hash="5d88f58b291f5bb88a0406cfa29012c8"/><file name="mask_165_7.dat" hash="41a900ae9693e5c27d980fdbbd1cc439"/><file name="mask_169_7.dat" hash="365708854b5a146db2b5580225d8048f"/><file name="mask_173_7.dat" hash="13683d9f282668ed475bf707ee53e201"/><file name="mask_177_7.dat" hash="8149d01010cee85d1849a9dca0e102a5"/><file name="mask_21_7.dat" hash="7c80f76fd015f19e48b7a570d55bc262"/><file name="mask_25_7.dat" hash="ea54a40e79f32877e02d1ea8791cb471"/><file name="mask_29_7.dat" hash="a6f4995de8e329204ee3410b22d8da4d"/><file name="mask_33_7.dat" hash="51273577e33506f83d00d7971fc38dc8"/><file name="mask_37_7.dat" hash="8c0fbb3e5121299816be076ce6a356c4"/><file name="mask_41_7.dat" hash="b97a30c39540b5160c652b5324ae9a08"/><file name="mask_45_7.dat" hash="18166274b73ca16a2c5a145076b990dc"/><file name="mask_49_7.dat" hash="270bfbf77a14569a5fc88925beb39189"/><file name="mask_53_7.dat" hash="84e0be977afc54746e41e28f47de1ad9"/><file name="mask_57_7.dat" hash="a37a26bece7e816a87ccdfcef7e96b71"/><file name="mask_61_7.dat" hash="a108bbc684fb0ad8f59228f410d4124d"/><file name="mask_65_7.dat" hash="647767fd83beeec449ef18e04ae12af7"/><file name="mask_69_7.dat" hash="577baae8a8809899b6763719cf5bfa8d"/><file name="mask_73_7.dat" hash="b2bf60ae1da1ce4bb7db15129e99d58b"/><file name="mask_77_7.dat" hash="ab9a75a46a851ad80f0e57b6dd5c64da"/><file name="mask_81_7.dat" hash="fcfaf88379459ac068236827681d9e43"/><file name="mask_85_7.dat" hash="525c8b876f509a127d3dfd80d81aad3f"/><file name="mask_89_7.dat" hash="7c7a821cb5e7d65e7b6e020bd6351f35"/><file name="mask_93_7.dat" hash="c906b28ae62d8866a0eb35ae87db567f"/><file name="mask_97_7.dat" hash="c04cea679212bda3930b3534565a6fd2"/></dir></dir><dir name="tools"><file name="merge.bat" hash="86e934a4304536ad09b2f7b9e814241d"/><file name="merge.php" hash="0b113c70589ac6cc76291087b3f3dff9"/><file name="merge.sh" hash="d2b77c3493b2ffe3d76d4fb9330e72a1"/><file name="merged_config.php" hash="8c4be9477ea9c372b3d2796df9d9d867"/><file name="merged_header.php" hash="3fc51eef6239691f523be743fde28470"/></dir></dir><file name="index.php" hash="15632fb7fff24ae10781a87bc1a5a9bf"/><file name="phpqrcode.php" hash="6e4949ac97acce06de82b2b09988926f"/><file name="qrbitstream.php" hash="7b95645db7e06aba3b55af7dd249663b"/><file name="qrconfig.php" hash="15c58fed3d55a98cda8abeed8c336fa6"/><file name="qrconst.php" hash="4cd7d63ff0b638020e6b0c6d11133d09"/><file name="qrencode.php" hash="dda263c8a9742aaa71cc302820308541"/><file name="qrimage.php" hash="2d1588686abe320c3bf003c94e967ce0"/><file name="qrinput.php" hash="07ee5315fb6c319dc208de59a9de95c0"/><file name="qrlib.php" hash="4d2b63e34326b0df5153be6d928ec960"/><file name="qrmask.php" hash="12ce875d67e242532e2b0da9f0a334ee"/><file name="qrrscode.php" hash="17af6b8769e70c132f227b089152a47f"/><file name="qrspec.php" hash="7d276c5a768c04d62ae0afde8abaad2d"/><file name="qrsplit.php" hash="206c8468e0089be5f58453cbbd003ec0"/><file name="qrtools.php" hash="27aea0ee5d1395d80ef4b9ce7d08fa40"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.0.0</min><max>5.6.0</max></php></required></dependencies>
18
  </package>
skin/frontend/base/default/css/mt/giftcard/giftcard.css CHANGED
@@ -27,6 +27,11 @@
27
  }
28
 
29
  /*checkout*/
 
 
 
 
 
30
  .gc-cart-action {
31
  padding: 5px 0 10px;
32
  height: auto;
27
  }
28
 
29
  /*checkout*/
30
+
31
+ .sp-methods #checkout-payment-method-gift-card ul.form-list {
32
+ padding-left: 0;
33
+ }
34
+
35
  .gc-cart-action {
36
  padding: 5px 0 10px;
37
  height: auto;