Mage_Core_Adminhtml - Version 1.6.2.0

Version Notes

1.6.2.0

Download this release

Release Info

Developer Magento Core Team
Extension Mage_Core_Adminhtml
Version 1.6.2.0
Comparing to
See all releases


Code changes from version 1.6.1.0 to 1.6.2.0

app/code/core/Mage/Adminhtml/Block/Sales/Items/Column/Name.php CHANGED
@@ -34,5 +34,22 @@
34
  */
35
  class Mage_Adminhtml_Block_Sales_Items_Column_Name extends Mage_Adminhtml_Block_Sales_Items_Column_Default
36
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  }
38
  ?>
34
  */
35
  class Mage_Adminhtml_Block_Sales_Items_Column_Name extends Mage_Adminhtml_Block_Sales_Items_Column_Default
36
  {
37
+ /**
38
+ * Add line breaks and truncate value
39
+ *
40
+ * @param string $value
41
+ * @return array
42
+ */
43
+ public function getFormattedOption($value)
44
+ {
45
+ $_remainder = '';
46
+ $value = Mage::helper('core/string')->truncate($value, 55, '', $_remainder);
47
+ $result = array(
48
+ 'value' => nl2br($value),
49
+ 'remainder' => nl2br($_remainder)
50
+ );
51
+
52
+ return $result;
53
+ }
54
  }
55
  ?>
app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Admin/Password/Link/Expirationperiod.php CHANGED
@@ -43,7 +43,8 @@ class Mage_Adminhtml_Model_System_Config_Backend_Admin_Password_Link_Expirationp
43
  {
44
  parent::_beforeSave();
45
  $resetPasswordLinkExpirationPeriod = (int) $this->getValue();
46
- if ($resetPasswordLinkExpirationPeriod < 0) {
 
47
  $resetPasswordLinkExpirationPeriod = (int) $this->getOldValue();
48
  }
49
  $this->setValue((string) $resetPasswordLinkExpirationPeriod);
43
  {
44
  parent::_beforeSave();
45
  $resetPasswordLinkExpirationPeriod = (int) $this->getValue();
46
+ // This value must be greater than 0
47
+ if ($resetPasswordLinkExpirationPeriod < 1) {
48
  $resetPasswordLinkExpirationPeriod = (int) $this->getOldValue();
49
  }
50
  $this->setValue((string) $resetPasswordLinkExpirationPeriod);
app/code/core/Mage/Adminhtml/Model/System/Config/Backend/Customer/Password/Link/Expirationperiod.php CHANGED
@@ -44,7 +44,8 @@ class Mage_Adminhtml_Model_System_Config_Backend_Customer_Password_Link_Expirati
44
  {
45
  parent::_beforeSave();
46
  $resetPasswordLinkExpirationPeriod = (int) $this->getValue();
47
- if ($resetPasswordLinkExpirationPeriod < 0) {
 
48
  $resetPasswordLinkExpirationPeriod = (int) $this->getOldValue();
49
  }
50
  $this->setValue((string) $resetPasswordLinkExpirationPeriod);
44
  {
45
  parent::_beforeSave();
46
  $resetPasswordLinkExpirationPeriod = (int) $this->getValue();
47
+ // This value must be greater than 0
48
+ if ($resetPasswordLinkExpirationPeriod < 1) {
49
  $resetPasswordLinkExpirationPeriod = (int) $this->getOldValue();
50
  }
51
  $this->setValue((string) $resetPasswordLinkExpirationPeriod);
app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php CHANGED
@@ -107,7 +107,10 @@ class Mage_Adminhtml_Catalog_Product_Action_AttributeController extends Mage_Adm
107
  ->updateAttributes($this->_getHelper()->getProductIds(), $attributesData, $storeId);
108
  }
109
  if ($inventoryData) {
 
110
  $stockItem = Mage::getModel('cataloginventory/stock_item');
 
 
111
 
112
  foreach ($this->_getHelper()->getProductIds() as $productId) {
113
  $stockItem->setData(array());
@@ -123,8 +126,16 @@ class Mage_Adminhtml_Catalog_Product_Action_AttributeController extends Mage_Adm
123
  }
124
  if ($stockDataChanged) {
125
  $stockItem->save();
 
126
  }
127
  }
 
 
 
 
 
 
 
128
  }
129
 
130
  if ($websiteAddData || $websiteRemoveData) {
107
  ->updateAttributes($this->_getHelper()->getProductIds(), $attributesData, $storeId);
108
  }
109
  if ($inventoryData) {
110
+ /** @var $stockItem Mage_CatalogInventory_Model_Stock_Item */
111
  $stockItem = Mage::getModel('cataloginventory/stock_item');
112
+ $stockItem->setProcessIndexEvents(false);
113
+ $stockItemSaved = false;
114
 
115
  foreach ($this->_getHelper()->getProductIds() as $productId) {
116
  $stockItem->setData(array());
126
  }
127
  if ($stockDataChanged) {
128
  $stockItem->save();
129
+ $stockItemSaved = true;
130
  }
131
  }
132
+
133
+ if ($stockItemSaved) {
134
+ Mage::getSingleton('index/indexer')->indexEvents(
135
+ Mage_CatalogInventory_Model_Stock_Item::ENTITY,
136
+ Mage_Index_Model_Event::TYPE_SAVE
137
+ );
138
+ }
139
  }
140
 
141
  if ($websiteAddData || $websiteRemoveData) {
app/code/core/Mage/Adminhtml/controllers/IndexController.php CHANGED
@@ -229,9 +229,16 @@ class Mage_Adminhtml_IndexController extends Mage_Adminhtml_Controller_Action
229
  */
230
  public function forgotpasswordAction()
231
  {
232
- $email = $this->getRequest()->getParam('email');
233
  $params = $this->getRequest()->getParams();
 
234
  if (!empty($email) && !empty($params)) {
 
 
 
 
 
 
235
  $collection = Mage::getResourceModel('admin/user_collection');
236
  /** @var $collection Mage_Admin_Model_Mysql4_User_Collection */
237
  $collection->addFieldToFilter('email', $email);
@@ -251,6 +258,8 @@ class Mage_Adminhtml_IndexController extends Mage_Adminhtml_Controller_Action
251
  }
252
  $this->_getSession()
253
  ->addSuccess(Mage::helper('adminhtml')->__('If there is an account associated with %s you will receive an email with a link to reset your password.', Mage::helper('adminhtml')->htmlEscape($email)));
 
 
254
  } elseif (!empty($params)) {
255
  $this->_getSession()->addError(Mage::helper('adminhtml')->__('The email address is empty.'));
256
  }
@@ -279,7 +288,7 @@ class Mage_Adminhtml_IndexController extends Mage_Adminhtml_Controller_Action
279
  $this->_outTemplate('resetforgottenpassword', $data);
280
  } catch (Exception $exception) {
281
  $this->_getSession()->addError(Mage::helper('adminhtml')->__('Your password reset link has expired.'));
282
- $this->_redirect('*/*/');
283
  }
284
  }
285
 
@@ -334,13 +343,11 @@ class Mage_Adminhtml_IndexController extends Mage_Adminhtml_Controller_Action
334
  $user->setRpToken(null);
335
  $user->setRpTokenCreatedAt(null);
336
  $user->setPasswordConfirmation(null);
337
- // Force password change
338
- $user->setForceNewPassword(true);
339
  $user->save();
340
  $this->_getSession()->addSuccess(Mage::helper('adminhtml')->__('Your password has been updated.'));
341
  $this->_redirect('*/*/login');
342
  } catch (Exception $exception) {
343
- $this->_getSession()->addException($exception, $this->__('Cannot save a new password.'));
344
  $data = array(
345
  'userId' => $userId,
346
  'resetPasswordLinkToken' => $resetPasswordLinkToken
229
  */
230
  public function forgotpasswordAction()
231
  {
232
+ $email = (string) $this->getRequest()->getParam('email');
233
  $params = $this->getRequest()->getParams();
234
+
235
  if (!empty($email) && !empty($params)) {
236
+ // Validate received data to be an email address
237
+ if (!Zend_Validate::is($email, 'EmailAddress')) {
238
+ $this->_getSession()->addError($this->__('Invalid email address.'));
239
+ $this->_outTemplate('forgotpassword');
240
+ return;
241
+ }
242
  $collection = Mage::getResourceModel('admin/user_collection');
243
  /** @var $collection Mage_Admin_Model_Mysql4_User_Collection */
244
  $collection->addFieldToFilter('email', $email);
258
  }
259
  $this->_getSession()
260
  ->addSuccess(Mage::helper('adminhtml')->__('If there is an account associated with %s you will receive an email with a link to reset your password.', Mage::helper('adminhtml')->htmlEscape($email)));
261
+ $this->_redirect('*/*/login');
262
+ return;
263
  } elseif (!empty($params)) {
264
  $this->_getSession()->addError(Mage::helper('adminhtml')->__('The email address is empty.'));
265
  }
288
  $this->_outTemplate('resetforgottenpassword', $data);
289
  } catch (Exception $exception) {
290
  $this->_getSession()->addError(Mage::helper('adminhtml')->__('Your password reset link has expired.'));
291
+ $this->_redirect('*/*/forgotpassword', array('_nosecret' => true));
292
  }
293
  }
294
 
343
  $user->setRpToken(null);
344
  $user->setRpTokenCreatedAt(null);
345
  $user->setPasswordConfirmation(null);
 
 
346
  $user->save();
347
  $this->_getSession()->addSuccess(Mage::helper('adminhtml')->__('Your password has been updated.'));
348
  $this->_redirect('*/*/login');
349
  } catch (Exception $exception) {
350
+ $this->_getSession()->addError($exception->getMessage());
351
  $data = array(
352
  'userId' => $userId,
353
  'resetPasswordLinkToken' => $resetPasswordLinkToken
app/code/core/Mage/Adminhtml/controllers/Permissions/RoleController.php CHANGED
@@ -124,7 +124,9 @@ class Mage_Adminhtml_Permissions_RoleController extends Mage_Adminhtml_Controlle
124
  ->setRoleInfo($role)
125
  ->setTemplate('permissions/roleinfo.phtml')
126
  );
127
- $this->_addJs($this->getLayout()->createBlock('adminhtml/template')->setTemplate('permissions/role_users_grid_js.phtml'));
 
 
128
  $this->renderLayout();
129
  }
130
 
@@ -183,10 +185,15 @@ class Mage_Adminhtml_Permissions_RoleController extends Mage_Adminhtml_Controlle
183
  }
184
 
185
  try {
186
- $role->setName($this->getRequest()->getParam('rolename', false))
 
 
187
  ->setPid($this->getRequest()->getParam('parent_id', false))
188
  ->setRoleType('G');
189
- Mage::dispatchEvent('admin_permissions_role_prepare_save', array('object' => $role, 'request' => $this->getRequest()));
 
 
 
190
  $role->save();
191
 
192
  Mage::getModel("admin/rules")
@@ -221,7 +228,9 @@ class Mage_Adminhtml_Permissions_RoleController extends Mage_Adminhtml_Controlle
221
  */
222
  public function editrolegridAction()
223
  {
224
- $this->getResponse()->setBody($this->getLayout()->createBlock('adminhtml/permissions_role_grid_user')->toHtml());
 
 
225
  }
226
 
227
  /**
124
  ->setRoleInfo($role)
125
  ->setTemplate('permissions/roleinfo.phtml')
126
  );
127
+ $this->_addJs(
128
+ $this->getLayout()->createBlock('adminhtml/template')->setTemplate('permissions/role_users_grid_js.phtml')
129
+ );
130
  $this->renderLayout();
131
  }
132
 
185
  }
186
 
187
  try {
188
+ $roleName = Mage::helper('adminhtml')->stripTags($this->getRequest()->getParam('rolename', false));
189
+
190
+ $role->setName($roleName)
191
  ->setPid($this->getRequest()->getParam('parent_id', false))
192
  ->setRoleType('G');
193
+ Mage::dispatchEvent(
194
+ 'admin_permissions_role_prepare_save',
195
+ array('object' => $role, 'request' => $this->getRequest())
196
+ );
197
  $role->save();
198
 
199
  Mage::getModel("admin/rules")
228
  */
229
  public function editrolegridAction()
230
  {
231
+ $this->getResponse()->setBody(
232
+ $this->getLayout()->createBlock('adminhtml/permissions_role_grid_user')->toHtml()
233
+ );
234
  }
235
 
236
  /**
app/code/core/Mage/Adminhtml/controllers/Promo/CatalogController.php CHANGED
@@ -283,17 +283,15 @@ class Mage_Adminhtml_Promo_CatalogController extends Mage_Adminhtml_Controller_A
283
  */
284
  public function applyRulesAction()
285
  {
 
286
  try {
287
  Mage::getModel('catalogrule/rule')->applyAll();
288
  Mage::app()->removeCache('catalog_rules_dirty');
289
- Mage::getSingleton('adminhtml/session')->addSuccess(
290
- Mage::helper('catalogrule')->__('The rules have been applied.')
291
- );
292
  } catch (Exception $e) {
293
- Mage::getSingleton('adminhtml/session')->addError(
294
- Mage::helper('catalogrule')->__('Unable to apply rules.')
295
- );
296
- throw $e;
297
  }
298
  $this->_redirect('*/*');
299
  }
283
  */
284
  public function applyRulesAction()
285
  {
286
+ $errorMessage = Mage::helper('catalogrule')->__('Unable to apply rules.');
287
  try {
288
  Mage::getModel('catalogrule/rule')->applyAll();
289
  Mage::app()->removeCache('catalog_rules_dirty');
290
+ $this->_getSession()->addSuccess(Mage::helper('catalogrule')->__('The rules have been applied.'));
291
+ } catch (Mage_Core_Exception $e) {
292
+ $this->_getSession()->addError($errorMessage . ' ' . $e->getMessage());
293
  } catch (Exception $e) {
294
+ $this->_getSession()->addError($errorMessage);
 
 
 
295
  }
296
  $this->_redirect('*/*');
297
  }
app/locale/en_US/Mage_Adminhtml.csv CHANGED
@@ -1,7 +1,9 @@
1
  " The customer does not exist in the system anymore."," The customer does not exist in the system anymore."
 
2
  " [deleted]"," [deleted]"
3
  " and "," and "
4
- " note that the URLs provided below are the correct values for your current website): "," note that the URLs provided below are the correct values for your current website): "
 
5
  "%s (Default Template from Locale)","%s (Default Template from Locale)"
6
  "%s cache type(s) disabled.","%s cache type(s) disabled."
7
  "%s cache type(s) enabled.","%s cache type(s) enabled."
@@ -30,9 +32,11 @@
30
  "-- Please select --","-- Please select --"
31
  "--Please Select--","--Please Select--"
32
  "1 Hour","1 Hour"
 
33
  "12 Hours","12 Hours"
34
  "12h AM/PM","12h AM/PM"
35
  "2 Hours","2 Hours"
 
36
  "24 Hours","24 Hours"
37
  "24h","24h"
38
  "2YTD","2YTD"
@@ -180,7 +184,6 @@
180
  "Cannot initialize shipment for delete tracking number.","Cannot initialize shipment for delete tracking number."
181
  "Cannot load track with retrieving identifier.","Cannot load track with retrieving identifier."
182
  "Cannot retrieve tracking number detail.","Cannot retrieve tracking number detail."
183
- "Cannot save a new password.","Cannot save a new password."
184
  "Cannot save shipment.","Cannot save shipment."
185
  "Cannot save the credit memo.","Cannot save the credit memo."
186
  "Cannot send shipment information.","Cannot send shipment information."
@@ -294,8 +297,6 @@
294
  "Display %s first","Display %s first"
295
  "Display default currency","Display default currency"
296
  "Distributed under GNU LGPL. See %s for details.","Distributed under GNU LGPL. See %s for details."
297
- "Do not enable AVS or CSC options. The do not work when using Payflow Link Silent Mode.","Do not enable AVS or CSC options. The do not work when using Payflow Link Silent Mode."
298
- "Do not set any fields in the Billing and Shipping Information block as editable in your Payflow account.","Do not set any fields in the Billing and Shipping Information block as editable in your Payflow account."
299
  "Do you really want to KILL parallel process and start new indexing process?","Do you really want to KILL parallel process and start new indexing process?"
300
  "Download","Download"
301
  "Downloads","Downloads"
@@ -321,14 +322,12 @@
321
  "Email to a Friend","Email to a Friend"
322
  "Email:","Email:"
323
  "Enable","Enable"
324
- "Enable Secure Token:","Enable Secure Token:"
325
  "Enabled","Enabled"
326
  "Enclose Values In:","Enclose Values In:"
327
  "Entity Attributes","Entity Attributes"
328
  "Entity Type","Entity Type"
329
  "Entity type:","Entity type:"
330
  "Error","Error"
331
- "Error URL: ","Error URL: "
332
  "Excel XML","Excel XML"
333
  "Excl. Tax","Excl. Tax"
334
  "Expiration Date","Expiration Date"
@@ -399,7 +398,6 @@
399
  "IPN (Instant Payment Notification) Only","IPN (Instant Payment Notification) Only"
400
  "If there is an account associated with %s you will receive an email with a link to reset your password.","If there is an account associated with %s you will receive an email with a link to reset your password."
401
  "If this message persists, please contact the store owner.","If this message persists, please contact the store owner."
402
- "If your Magento instance is used for multiple websites, you must configure a separate Payflow Link account for each website.","If your Magento instance is used for multiple websites, you must configure a separate Payflow Link account for each website."
403
  "Images (.gif, .jpg, .png)","Images (.gif, .jpg, .png)"
404
  "Images Cache","Images Cache"
405
  "Import","Import"
@@ -427,6 +425,7 @@
427
  "Invalid Username or Password.","Invalid Username or Password."
428
  "Invalid directory: %s","Invalid directory: %s"
429
  "Invalid email address ""%s"".","Invalid email address ""%s""."
 
430
  "Invalid file: %s","Invalid file: %s"
431
  "Invalid input data for %s => %s rate","Invalid input data for %s => %s rate"
432
  "Invalid parent block for this block","Invalid parent block for this block"
@@ -592,8 +591,6 @@
592
  "Number of Uses","Number of Uses"
593
  "Number of records:","Number of records:"
594
  "Old rate:","Old rate:"
595
- "On my website","On my website"
596
- "Once you log into your Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Once you log into your Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below"
597
  "One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details.","One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details."
598
  "One or more of the Cache Types are invalidated:","One or more of the Cache Types are invalidated:"
599
  "Online Customers","Online Customers"
@@ -625,6 +622,7 @@
625
  "Password must include both numeric and alphabetic characters.","Password must include both numeric and alphabetic characters."
626
  "Password:","Password:"
627
  "Path:","Path:"
 
628
  "Payment method instance is not available.","Payment method instance is not available."
629
  "Payment method is not available.","Payment method is not available."
630
  "Payment method must be specified.","Payment method must be specified."
@@ -662,7 +660,6 @@
662
  "Please make sure that all global admin search modules are installed and activated.","Please make sure that all global admin search modules are installed and activated."
663
  "Please make sure that your changes were saved before running the profile.","Please make sure that your changes were saved before running the profile."
664
  "Please make sure your passwords match.","Please make sure your passwords match."
665
- "Please navigate to <strong>Hosted Checkout Pages - Customize</strong> menu and select Layout C.","Please navigate to <strong>Hosted Checkout Pages - Customize</strong> menu and select Layout C."
666
  "Please select State/Province.","Please select State/Province."
667
  "Please select a customer.","Please select a customer."
668
  "Please select a store.","Please select a store."
@@ -753,7 +750,6 @@
753
  "Reports","Reports"
754
  "Request Path","Request Path"
755
  "Required","Required"
756
- "Required settings","Required settings"
757
  "Reset","Reset"
758
  "Reset Filter","Reset Filter"
759
  "Reset Password","Reset Password"
@@ -764,7 +760,6 @@
764
  "Results","Results"
765
  "Retrieve Password","Retrieve Password"
766
  "Return Html Version","Return Html Version"
767
- "Return URL: ","Return URL: "
768
  "Revenue","Revenue"
769
  "Reviews","Reviews"
770
  "Reviews and Ratings","Reviews and Ratings"
@@ -806,12 +801,9 @@
806
  "Search Term","Search Term"
807
  "Search Terms","Search Terms"
808
  "Select","Select"
809
- "Select $0 Auth if your credit card processor supports $0 Auth capability and Reference Transactions, or if you are unsure what to select. This setting provides the best experience for shoppers.","Select $0 Auth if your credit card processor supports $0 Auth capability and Reference Transactions, or if you are unsure what to select. This setting provides the best experience for shoppers."
810
- "Select $1 Auth if your credit card processor does not support $0 Auth, but does support Reference Transactions. This will provide a very good shopper experience, but might require you to pay a small additional authorization fee from your merchant account provider for any cart abandoned after payment details are entered. If you select $0 Auth, but your credit card processor does not support $0 Auth, your transaction will run as a $1 Auth instead.","Select $1 Auth if your credit card processor does not support $0 Auth, but does support Reference Transactions. This will provide a very good shopper experience, but might require you to pay a small additional authorization fee from your merchant account provider for any cart abandoned after payment details are entered. If you select $0 Auth, but your credit card processor does not support $0 Auth, your transaction will run as a $1 Auth instead."
811
  "Select All","Select All"
812
  "Select Category","Select Category"
813
  "Select Date","Select Date"
814
- "Select Full Auth if you want to minimize your credit card processing fees, or if your credit card processor does not permit reference transactions. Please note that in some cases, shoppers who abandon your cart late in the process may find that there is a payment authorization outstanding from your company, which will go away on its own in a few days/weeks. This authorization can be reversal by voiding it, however, there is no guarantee the card-issuing bank will accept this request.","Select Full Auth if you want to minimize your credit card processing fees, or if your credit card processor does not permit reference transactions. Please note that in some cases, shoppers who abandon your cart late in the process may find that there is a payment authorization outstanding from your company, which will go away on its own in a few days/weeks. This authorization can be reversal by voiding it, however, there is no guarantee the card-issuing bank will accept this request."
815
  "Select Range","Select Range"
816
  "Select date","Select date"
817
  "Selected allowed currency ""%s"" is not available in installed currencies.","Selected allowed currency ""%s"" is not available in installed currencies."
@@ -821,6 +813,8 @@
821
  "Self-assigned roles cannot be deleted.","Self-assigned roles cannot be deleted."
822
  "Sender","Sender"
823
  "Separate Email","Separate Email"
 
 
824
  "Shipment #%s comment added","Shipment #%s comment added"
825
  "Shipment #%s created","Shipment #%s created"
826
  "Shipment Comments","Shipment Comments"
@@ -840,8 +834,6 @@
840
  "Show By","Show By"
841
  "Show Report For","Show Report For"
842
  "Show Reviews","Show Reviews"
843
- "Show confirmation page: ","Show confirmation page: "
844
- "Silent Post URL:","Silent Post URL:"
845
  "Sitemap Information","Sitemap Information"
846
  "Size for %s","Size for %s"
847
  "Skip Category Selection","Skip Category Selection"
@@ -989,7 +981,8 @@
989
  "Timeout limit for response from synchronize process was reached.","Timeout limit for response from synchronize process was reached."
990
  "To","To"
991
  "To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel.","To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel."
992
- "To use Payflow Link, you must configure your Payflow Link account on the Paypal website.","To use Payflow Link, you must configure your Payflow Link account on the Paypal website."
 
993
  "Toggle Editor","Toggle Editor"
994
  "Tools","Tools"
995
  "Top 5 Search Terms","Top 5 Search Terms"
@@ -1045,7 +1038,6 @@
1045
  "Use Default","Use Default"
1046
  "Use Default Value","Use Default Value"
1047
  "Use Default Variable Values","Use Default Variable Values"
1048
- "Use Silent Post:","Use Silent Post:"
1049
  "Use Website","Use Website"
1050
  "Used Currently For","Used Currently For"
1051
  "Used as Default For","Used as Default For"
@@ -1090,7 +1082,6 @@
1090
  "Web services","Web services"
1091
  "Website","Website"
1092
  "What is this?","What is this?"
1093
- "When using Payflow Link in Magento, a payment authorization transaction must be performed after the shopper enters their credit card information on the Payment page of checkout. If a full authorization is performed for the entire dollar amount of the transaction, then in some cases, the transaction amount might be reserved on the shopper\'s credit card for up to 30 days, even if they abandon their cart. This is not an ideal customer experience. Using this advanced setting in Magento, you can configure key details of this authorization.","When using Payflow Link in Magento, a payment authorization transaction must be performed after the shopper enters their credit card information on the Payment page of checkout. If a full authorization is performed for the entire dollar amount of the transaction, then in some cases, the transaction amount might be reserved on the shopper\'s credit card for up to 30 days, even if they abandon their cart. This is not an ideal customer experience. Using this advanced setting in Magento, you can configure key details of this authorization."
1094
  "Wishlist Report","Wishlist Report"
1095
  "Wishlist item is not loaded.","Wishlist item is not loaded."
1096
  "Wrong account specified.","Wrong account specified."
1
  " The customer does not exist in the system anymore."," The customer does not exist in the system anymore."
2
+ " You will need to navigate to your "," You will need to navigate to your "
3
  " [deleted]"," [deleted]"
4
  " and "," and "
5
+ " and go to the "," and go to the "
6
+ " sections for your Hosted Checkout Pages."," sections for your Hosted Checkout Pages."
7
  "%s (Default Template from Locale)","%s (Default Template from Locale)"
8
  "%s cache type(s) disabled.","%s cache type(s) disabled."
9
  "%s cache type(s) enabled.","%s cache type(s) enabled."
32
  "-- Please select --","-- Please select --"
33
  "--Please Select--","--Please Select--"
34
  "1 Hour","1 Hour"
35
+ "1. set up","1. set up"
36
  "12 Hours","12 Hours"
37
  "12h AM/PM","12h AM/PM"
38
  "2 Hours","2 Hours"
39
+ "2. customize","2. customize"
40
  "24 Hours","24 Hours"
41
  "24h","24h"
42
  "2YTD","2YTD"
184
  "Cannot initialize shipment for delete tracking number.","Cannot initialize shipment for delete tracking number."
185
  "Cannot load track with retrieving identifier.","Cannot load track with retrieving identifier."
186
  "Cannot retrieve tracking number detail.","Cannot retrieve tracking number detail."
 
187
  "Cannot save shipment.","Cannot save shipment."
188
  "Cannot save the credit memo.","Cannot save the credit memo."
189
  "Cannot send shipment information.","Cannot send shipment information."
297
  "Display %s first","Display %s first"
298
  "Display default currency","Display default currency"
299
  "Distributed under GNU LGPL. See %s for details.","Distributed under GNU LGPL. See %s for details."
 
 
300
  "Do you really want to KILL parallel process and start new indexing process?","Do you really want to KILL parallel process and start new indexing process?"
301
  "Download","Download"
302
  "Downloads","Downloads"
322
  "Email to a Friend","Email to a Friend"
323
  "Email:","Email:"
324
  "Enable","Enable"
 
325
  "Enabled","Enabled"
326
  "Enclose Values In:","Enclose Values In:"
327
  "Entity Attributes","Entity Attributes"
328
  "Entity Type","Entity Type"
329
  "Entity type:","Entity type:"
330
  "Error","Error"
 
331
  "Excel XML","Excel XML"
332
  "Excl. Tax","Excl. Tax"
333
  "Expiration Date","Expiration Date"
398
  "IPN (Instant Payment Notification) Only","IPN (Instant Payment Notification) Only"
399
  "If there is an account associated with %s you will receive an email with a link to reset your password.","If there is an account associated with %s you will receive an email with a link to reset your password."
400
  "If this message persists, please contact the store owner.","If this message persists, please contact the store owner."
 
401
  "Images (.gif, .jpg, .png)","Images (.gif, .jpg, .png)"
402
  "Images Cache","Images Cache"
403
  "Import","Import"
425
  "Invalid Username or Password.","Invalid Username or Password."
426
  "Invalid directory: %s","Invalid directory: %s"
427
  "Invalid email address ""%s"".","Invalid email address ""%s""."
428
+ "Invalid email address.","Invalid email address."
429
  "Invalid file: %s","Invalid file: %s"
430
  "Invalid input data for %s => %s rate","Invalid input data for %s => %s rate"
431
  "Invalid parent block for this block","Invalid parent block for this block"
591
  "Number of Uses","Number of Uses"
592
  "Number of records:","Number of records:"
593
  "Old rate:","Old rate:"
 
 
594
  "One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details.","One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details."
595
  "One or more of the Cache Types are invalidated:","One or more of the Cache Types are invalidated:"
596
  "Online Customers","Online Customers"
622
  "Password must include both numeric and alphabetic characters.","Password must include both numeric and alphabetic characters."
623
  "Password:","Password:"
624
  "Path:","Path:"
625
+ "PayPal Manager","PayPal Manager"
626
  "Payment method instance is not available.","Payment method instance is not available."
627
  "Payment method is not available.","Payment method is not available."
628
  "Payment method must be specified.","Payment method must be specified."
660
  "Please make sure that all global admin search modules are installed and activated.","Please make sure that all global admin search modules are installed and activated."
661
  "Please make sure that your changes were saved before running the profile.","Please make sure that your changes were saved before running the profile."
662
  "Please make sure your passwords match.","Please make sure your passwords match."
 
663
  "Please select State/Province.","Please select State/Province."
664
  "Please select a customer.","Please select a customer."
665
  "Please select a store.","Please select a store."
750
  "Reports","Reports"
751
  "Request Path","Request Path"
752
  "Required","Required"
 
753
  "Reset","Reset"
754
  "Reset Filter","Reset Filter"
755
  "Reset Password","Reset Password"
760
  "Results","Results"
761
  "Retrieve Password","Retrieve Password"
762
  "Return Html Version","Return Html Version"
 
763
  "Revenue","Revenue"
764
  "Reviews","Reviews"
765
  "Reviews and Ratings","Reviews and Ratings"
801
  "Search Term","Search Term"
802
  "Search Terms","Search Terms"
803
  "Select","Select"
 
 
804
  "Select All","Select All"
805
  "Select Category","Select Category"
806
  "Select Date","Select Date"
 
807
  "Select Range","Select Range"
808
  "Select date","Select date"
809
  "Selected allowed currency ""%s"" is not available in installed currencies.","Selected allowed currency ""%s"" is not available in installed currencies."
813
  "Self-assigned roles cannot be deleted.","Self-assigned roles cannot be deleted."
814
  "Sender","Sender"
815
  "Separate Email","Separate Email"
816
+ "Service Settings","Service Settings"
817
+ "Set up & Customize","Set up & Customize"
818
  "Shipment #%s comment added","Shipment #%s comment added"
819
  "Shipment #%s created","Shipment #%s created"
820
  "Shipment Comments","Shipment Comments"
834
  "Show By","Show By"
835
  "Show Report For","Show Report For"
836
  "Show Reviews","Show Reviews"
 
 
837
  "Sitemap Information","Sitemap Information"
838
  "Size for %s","Size for %s"
839
  "Skip Category Selection","Skip Category Selection"
981
  "Timeout limit for response from synchronize process was reached.","Timeout limit for response from synchronize process was reached."
982
  "To","To"
983
  "To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel.","To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel."
984
+ "To use PayPal Payflow Link you must configure some settings in your Payflow account by logging into","To use PayPal Payflow Link you must configure some settings in your Payflow account by logging into"
985
+ "To use PayPal Payments Advanced you must configure some settings in your PayPal Payments Advanced account by logging into","To use PayPal Payments Advanced you must configure some settings in your PayPal Payments Advanced account by logging into"
986
  "Toggle Editor","Toggle Editor"
987
  "Tools","Tools"
988
  "Top 5 Search Terms","Top 5 Search Terms"
1038
  "Use Default","Use Default"
1039
  "Use Default Value","Use Default Value"
1040
  "Use Default Variable Values","Use Default Variable Values"
 
1041
  "Use Website","Use Website"
1042
  "Used Currently For","Used Currently For"
1043
  "Used as Default For","Used as Default For"
1082
  "Web services","Web services"
1083
  "Website","Website"
1084
  "What is this?","What is this?"
 
1085
  "Wishlist Report","Wishlist Report"
1086
  "Wishlist item is not loaded.","Wishlist item is not loaded."
1087
  "Wrong account specified.","Wrong account specified."
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Adminhtml</name>
4
- <version>1.6.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Magento Administration Panel</summary>
10
  <description>Magento Administration Panel</description>
11
- <notes>1.6.1.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2011-10-19</date>
14
- <time>12:11:25</time>
15
- <contents><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><file name="Abstract.php" hash="959d5450a89703174f8534e1142346ff"/><dir name="Api"><file name="Buttons.php" hash="9803f746c5dffc14b7d6fcbdfd53441a"/><file name="Editroles.php" hash="0313f2dba7884b7463ad9652e95af5b5"/><file name="Edituser.php" hash="95a065f05486e7fa7a18d70a1d5060e9"/><dir name="Grid"><file name="Role.php" hash="c82eeace2e32a274b662fdd3d48c3aec"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="ca4523101f25c7385c2d85b3680b60f4"/></dir></dir><file name="Role.php" hash="e6bfe26ca29919e452f8a43e61beef4f"/><file name="Roles.php" hash="e32f3a829c68d03b4f361c5b07c69312"/><dir name="Tab"><file name="Roleinfo.php" hash="984aedd94121d84c913a4714832d81d2"/><file name="Rolesedit.php" hash="adb7c38fb9e689e17ca62e8789c70c57"/><file name="Rolesusers.php" hash="ea6ca741125bea1ad54c14d273725f86"/><file name="Userroles.php" hash="6ab27c7e4d088dc4385c0cb5e1bb9a0c"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="dee912351dd7ef5cfa652bcd4affe850"/><dir name="Tab"><file name="Main.php" hash="a65c570ea780b0631dd3aa10da98ff48"/><file name="Roles.php" hash="ab27c3a8090e9e041de6f11efc19dcb1"/></dir><file name="Tabs.php" hash="c326793a17ef382904f215f7f87bcd29"/></dir><file name="Edit.php" hash="660f300cc476835bc2b3ba8c7681edce"/><file name="Grid.php" hash="2ffaa3ac56591819e82f7a6730ebaf95"/></dir><file name="User.php" hash="78d7e36eb3364e3cdc5fe177f4cd10ad"/><file name="Users.php" hash="b1f08b6ecb90694a465efcc7429f11f0"/></dir><dir name="Backup"><file name="Grid.php" hash="48096f362c6ddbb4b868f1e7119b7aaf"/></dir><file name="Backup.php" hash="7c92eb24507b426d76b6d6b11b33a98e"/><dir name="Cache"><file name="Additional.php" hash="8df37e6b65f7a1652ee5d4a34f409dc1"/><file name="Grid.php" hash="6bdcec783371c0d4acc227ac1ccf0890"/><file name="Notifications.php" hash="1c0e3a854b94b6e0dc8274dea7ace851"/></dir><file name="Cache.php" hash="3246cda4df318fe7fb16bd819d30b48d"/><dir name="Catalog"><dir name="Category"><file name="Abstract.php" hash="bbb16940dbd42e3f8420f9c69e5f89fa"/><dir name="Checkboxes"><file name="Tree.php" hash="416d40bbc521153d4bd6ef070cea7289"/></dir><dir name="Edit"><file name="Form.php" hash="9ffda5fad574bd11cb88b5f1fd08bb98"/></dir><file name="Edit.php" hash="613718ca975b89e73e054400a43803fc"/><dir name="Helper"><file name="Image.php" hash="74edd044d6daaee23ade795b511a4a84"/><file name="Pricestep.php" hash="de4f7215eea8b6e4798229c0ed567817"/><dir name="Sortby"><file name="Available.php" hash="b665aa44d983c4b043eae65f7bf3459b"/><file name="Default.php" hash="672be91268f783442628328f67602460"/></dir></dir><dir name="Tab"><file name="Attributes.php" hash="acd7e56d734aa5ee7f26d19c7fa7c95c"/><file name="Design.php" hash="7b446156789f64b6c0628c909db6b728"/><file name="General.php" hash="83efdcf3d7176c02e1c1483eed6a73d1"/><file name="Product.php" hash="c62984bddfe4c0c4b61bf6819dabb692"/></dir><file name="Tabs.php" hash="757df5ff5f8f33b4120a6ccb97e188bf"/><file name="Tree.php" hash="d6d235307f38694ecda33a86d895fc3d"/><dir name="Widget"><file name="Chooser.php" hash="0cfc443a10af33aedf9deed2c4adffc5"/></dir></dir><dir name="Form"><dir name="Renderer"><dir name="Attribute"><file name="Urlkey.php" hash="c52b3584a5ea337db6f48f4fa984c72e"/></dir><dir name="Config"><file name="DateFieldsOrder.php" hash="51ba2edf2928fcf58e4cb890ecb03acf"/><file name="YearRange.php" hash="1438b20f92cc708e45aa895a9c3125d8"/></dir><dir name="Fieldset"><file name="Element.php" hash="39fb78eb3695cbe6f47154261241487d"/></dir></dir></dir><file name="Form.php" hash="fa260baead5a98f813b8e76e81fa9ec6"/><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="f0027f32c453a490caab8ec4beb9ab40"/></dir><file name="Wysiwyg.php" hash="b29aaa097a6dea67cc35c93cf3da8331"/></dir></dir><dir name="Product"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="0c60c2ad6493a81e7c9f10d944e1e7a8"/><dir name="Tab"><file name="Front.php" hash="30c8a877895e5c8d05c568b529e95ffe"/><file name="Main.php" hash="7e9a826d238089193b739635659966a9"/><file name="Options.php" hash="2a70d107ff8fc5257db6827bc47d021a"/><file name="System.php" hash="b4898651690e60dea0ff61ae2e71df4f"/></dir><file name="Tabs.php" hash="a1e3717dae0330aba0025424c6605718"/></dir><file name="Edit.php" hash="21f9bef47aff976ceda6aa3a8a088047"/><file name="Grid.php" hash="965ce7a5a30b5525261332a20fe8dd83"/><dir name="New"><dir name="Product"><file name="Attributes.php" hash="f96c03e38a77529edc3715de98afbb84"/><file name="Created.php" hash="ed389a52d71c4e6088d122e24c2a695b"/></dir></dir><dir name="Set"><file name="Grid.php" hash="f7dbfb0361d66005396216297c1d0cf2"/><dir name="Main"><file name="Formattribute.php" hash="ddd2578cd02ee55adb61daa4e0158f55"/><file name="Formgroup.php" hash="bfbe881c8d9c64eea0bcdb8e422f155b"/><file name="Formset.php" hash="f80e5ee8ae79dff644a526114ed07b08"/><dir name="Tree"><file name="Attribute.php" hash="cd2807917a151d3e3acdb9c8bbabf3ae"/><file name="Group.php" hash="507773f8e977cfeb09b9a958a5af4795"/></dir></dir><file name="Main.php" hash="e682310337a0549f60f5c03249c70816"/><dir name="Toolbar"><file name="Add.php" hash="07e258a22e38b9ff90ed7164f6d9c403"/><dir name="Main"><file name="Filter.php" hash="44b2dc73f51a40ac70b1ce113aacc978"/></dir><file name="Main.php" hash="58fcd72d5a95e8ad61477312a4e24cd8"/></dir></dir></dir><file name="Attribute.php" hash="3d762c3ceb2a79b27f82e27e4376f489"/><dir name="Composite"><file name="Configure.php" hash="573ecd72d5fbadd64ce987e575ba697b"/><file name="Error.php" hash="f0471d13ee4bca05d6faa4af441f1f7a"/><dir name="Fieldset"><file name="Configurable.php" hash="5156d57750f4c24f100baa784615e96e"/><file name="Grouped.php" hash="8b2796ad9c6c96e55b8043c51c119b13"/><file name="Options.php" hash="f7aca489187e86ce549d3bb84cdb6653"/><file name="Qty.php" hash="fabf7294aed88da47f822de69de98305"/></dir><file name="Fieldset.php" hash="f5d5668d8766c4026d896272da17b22a"/><dir name="Update"><file name="Result.php" hash="75dbc142bd1c6475e3472588e8b26c0d"/></dir></dir><file name="Created.php" hash="6a915a5ec07996e7f8949e1d9a969bb6"/><dir name="Edit"><dir name="Action"><dir name="Attribute"><dir name="Tab"><file name="Attributes.php" hash="0061414afc4057ebaf206c17b67a6037"/><file name="Inventory.php" hash="cf859b71088c79308485c9a610d14558"/><file name="Websites.php" hash="d4306eaba23a8da97de22a77801126d0"/></dir><file name="Tabs.php" hash="34493b75029bf6767078a956f0198196"/></dir><file name="Attribute.php" hash="145a8a6c9992d845c8d317e2b56eddbc"/></dir><file name="Js.php" hash="8f33bbfe099caa26e0743203b106e464"/><dir name="Tab"><dir name="Ajax"><file name="Serializer.php" hash="89b3d87718f3de0696545b05695f4131"/></dir><dir name="Alerts"><file name="Price.php" hash="608e34c203667ec25b67093926f02af7"/><file name="Stock.php" hash="e3e2bf9b21dd18209ef1c9f7c13ab8d7"/></dir><file name="Alerts.php" hash="598904c0feb4c29d1d526ecb82ba397c"/><dir name="Attributes"><file name="Create.php" hash="3b7e412b57239feadafe896f8db7df6d"/></dir><file name="Attributes.php" hash="299ca718af18387e2e07c12b52854cd6"/><file name="Categories.php" hash="dab132f6bd4ff94bccb5807bd56bcca1"/><file name="Crosssell.php" hash="fabe65c55f729c39df252d71df624af3"/><file name="Inventory.php" hash="aa0292f960cb763a2263d467e3223b8f"/><dir name="Options"><file name="Option.php" hash="e514062507954d7363709d202b0ed4fb"/><dir name="Type"><file name="Abstract.php" hash="31ef146c3ee91e644ea1bb05375aff68"/><file name="Date.php" hash="6e7b072f1ac6d38744b5d89486de51f5"/><file name="File.php" hash="a4208e45f0c028bc7054291dd00de0b5"/><file name="Select.php" hash="3781a1e4d19f477699a2d3d7f4e1e0c1"/><file name="Text.php" hash="ecc901524c59d723681cd99cf16c36f7"/></dir></dir><file name="Options.php" hash="b221f9ee92ab984f9b234f2b675d1402"/><dir name="Price"><file name="Recurring.php" hash="91dd731a33db45c4cdae7614e19f7e59"/><file name="Tier.php" hash="7dc8f76720c67510d201927ae73e96f6"/></dir><file name="Price.php" hash="28d475cde013f99f1fd9c0a6a9d21b0d"/><file name="Related.php" hash="240c1561067320887de0d4812f71830e"/><file name="Reviews.php" hash="d1a9f8a53d9013e0081e8077177b83cc"/><file name="Settings.php" hash="6bb23229fd9a4b5376c0449e90f4ae78"/><dir name="Super"><dir name="Config"><dir name="Grid"><dir name="Filter"><file name="Inventory.php" hash="d63ddd314c0e782b09b0918ede2b5afb"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="e651737dfc02cdfe10a9a5bf5feb51dd"/><file name="Inventory.php" hash="d84957630e46f692a6d529acc936f8bf"/></dir></dir><file name="Grid.php" hash="4bcdb33fc77e836c834736f84c39968f"/><file name="Simple.php" hash="4423c9f434f0cb9a96800e6f7f4f4fbb"/></dir><file name="Config.php" hash="3be00cf3f3d6f5ea75d03dde8dded58f"/><file name="Group.php" hash="31d8f2892ad77c126bcdd0f42c4ddb2c"/><file name="Settings.php" hash="a54910224422e743659ef1ba5275e51b"/></dir><dir name="Tag"><file name="Customer.php" hash="f69d4f89d3ea6f3806e5ac832fb6fcfe"/></dir><file name="Tag.php" hash="fdb2a54bda0c5012cec78f458989441d"/><file name="Upsell.php" hash="03f7a2e05fd62474c6cd2b3a593e730a"/><file name="Websites.php" hash="19e8f24f0fd654d79b84666702572ff6"/></dir><dir name="Tabs"><file name="Configurable.php" hash="e0f4c7ca6bf1f2f5358c034cf3ef7897"/><file name="Grouped.php" hash="09bce3ca3ee4049bc7f84681b6c95af7"/></dir><file name="Tabs.php" hash="99c15bb1d1e13562cc5b4abda4461258"/></dir><file name="Edit.php" hash="e40973afab12ef780dd763d6cdbc94f6"/><dir name="Frontend"><dir name="Product"><file name="Watermark.php" hash="ba4ebc2847131cb522f8478d9dc39120"/></dir></dir><file name="Grid.php" hash="411c62ca3f757893eb57d9487c0f5697"/><dir name="Helper"><dir name="Form"><file name="Apply.php" hash="5abd9f76a4d0f06784e82bd03ad5a5bf"/><file name="Boolean.php" hash="b4d6db257f494482117c712204e292c6"/><file name="Config.php" hash="2f6ab03ecec5ea6b7e2e3ac551d42cd1"/><dir name="Gallery"><file name="Content.php" hash="19cde7358f265fb3e27dd1cda450ebae"/></dir><file name="Gallery.php" hash="fd046d5be8fd098db761dd4b11e6a4f1"/><file name="Image.php" hash="50b1064ed0fbbf07b36f7c9e3abde2a8"/><dir name="Msrp"><file name="Enabled.php" hash="319fe814e98ebe15476c1dcd95508bb1"/><file name="Price.php" hash="947ceb8a8815727301f923183a46aa10"/></dir><file name="Price.php" hash="bc53fcfa475e8078c7265d795f6271d5"/></dir></dir><file name="Price.php" hash="03a94b2618d02df97aa24a4f889f440e"/><dir name="Widget"><dir name="Chooser"><file name="Container.php" hash="6b0803bcdd2428aed02f9f5f6b847180"/></dir><file name="Chooser.php" hash="7e004c727b68b1d14f56fe13f55cf4f8"/></dir></dir><file name="Product.php" hash="bd6b58b1aa2cb6ecad827fd8e504cb9c"/><dir name="Search"><dir name="Edit"><file name="Form.php" hash="295dde02e516e3fb09379b5d6d949ba3"/></dir><file name="Edit.php" hash="3af9e8c2969c1da0c1e5b6c56d3d3fa4"/><file name="Grid.php" hash="7c7391fcf3f61dbea6100a1fa4092d37"/></dir><file name="Search.php" hash="bba43a3f2794920723723ce99dd29098"/></dir><file name="Catalog.php" hash="751faa106e82bf083537229834fb9964"/><dir name="Checkout"><dir name="Agreement"><dir name="Edit"><file name="Form.php" hash="4c894e87cf97fc92544af52513d578ed"/></dir><file name="Edit.php" hash="0ca37a170c2d43e45bdfdf7849825fc3"/><file name="Grid.php" hash="bcc30afb1d18e47fa503b6afa6aa5f36"/></dir><file name="Agreement.php" hash="613326c92f5ea6a3c61d444dbfe64c9d"/></dir><dir name="Cms"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="5a5ee1e82555c30ae572bbe59f933fb0"/></dir><file name="Edit.php" hash="d5a50d1139e2a729e85577b95294106c"/><file name="Grid.php" hash="3931004fd26b6dd0eb26c7c353be8d6c"/><dir name="Widget"><file name="Chooser.php" hash="8801566412947b9fee08628080006e84"/></dir></dir><file name="Block.php" hash="5daaa6290f524919903d54d1f8fc2453"/><dir name="Page"><dir name="Edit"><file name="Form.php" hash="1a60a92ebf34a2f223b8fd0373d1f5ac"/><dir name="Tab"><file name="Content.php" hash="fc9e393c9656b90186fbaf074ed314bd"/><file name="Design.php" hash="56fe2e9fa574b0fa074452793154d9f6"/><file name="Main.php" hash="17ea1bbff0fd2d06dd83e31c61a96aac"/><file name="Meta.php" hash="08e6e3ea0e6a193aeaa69c28d2658c12"/></dir><file name="Tabs.php" hash="19150d990df5d6c66628dfb8abb692d9"/></dir><file name="Edit.php" hash="4bf6fdceb4d1c40af8e3061ca335b3b0"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="01bf30a87a7c945423dcff27995264eb"/></dir></dir><file name="Grid.php" hash="5eb876f870b8dac338dc61e5f3293f09"/><dir name="Widget"><file name="Chooser.php" hash="f3502b5c8be0a5eed40475776d654c79"/></dir></dir><file name="Page.php" hash="8d88976fed2fba5a2e79fc30a8265fb3"/><dir name="Wysiwyg"><dir name="Images"><dir name="Content"><file name="Files.php" hash="2a9f276070b12d3b6bfae84ff2bf18e7"/><file name="Newfolder.php" hash="b3ddc270c472615a09a28814163161ee"/><file name="Uploader.php" hash="c79278de0034db8ba84a75a511e32127"/></dir><file name="Content.php" hash="4f33310c22d47435254e8c666fa9d747"/><file name="Tree.php" hash="9ec1a093f9924d1f3a9ff95f04168862"/></dir></dir></dir><dir name="Customer"><dir name="Edit"><file name="Form.php" hash="7946a19e0900cba768daa2f18a1223af"/><dir name="Renderer"><file name="Newpass.php" hash="37a04208b591a4223df51ce8b1418bab"/><file name="Region.php" hash="80b5f71516077150c9ca78f163205347"/></dir><dir name="Tab"><file name="Account.php" hash="2dfc10363d666e31f986a34959d7af6b"/><file name="Addresses.php" hash="a400802f8da37a3183324defa72b411c"/><file name="Cart.php" hash="da607ca3f458c2f9744512ee054a0a4c"/><file name="Carts.php" hash="3f7d7794c95c44c1d855698094f5e7ec"/><dir name="Newsletter"><dir name="Grid"><dir name="Filter"><file name="Status.php" hash="dfa1c2c548a63e647fe6b2f3a51b73a6"/></dir><dir name="Renderer"><file name="Action.php" hash="5350a04235e34fdda005ed4d77eb59dc"/><file name="Status.php" hash="b4bcd547fbee256952e8a517d5efebfa"/></dir></dir><file name="Grid.php" hash="a303934b062ef34d5cfd33f4df213016"/></dir><file name="Newsletter.php" hash="51ec0adefdd252591bf5e904c0f70442"/><file name="Orders.php" hash="0201bfb0e7c93fa43cfde73ed2416ea7"/><file name="Reviews.php" hash="52490619b7a350f7b5b1edaa90f9643a"/><file name="Tag.php" hash="8a916df3f6c8f71961dbcc913adcd9a8"/><file name="Tags.php" hash="28007ddc203b930a384933ee9c455783"/><dir name="View"><file name="Accordion.php" hash="387935daa87698a1659ad576932f30bd"/><file name="Cart.php" hash="ff046b431c0b5177f9fbb1b635397c11"/><dir name="Grid"><dir name="Renderer"><file name="Item.php" hash="e17d9df2b3051f7877dc393456f15a1d"/></dir></dir><file name="Orders.php" hash="9a5be4d75aa5c2d45b5ba23f073a535e"/><file name="Sales.php" hash="d48de88da7a88178ca51568c23037a54"/><file name="Wishlist.php" hash="755e5b09fb911b98d2adf3bc3b20585b"/></dir><file name="View.php" hash="eb2f2fcf9603e1dc18e7430048d23c74"/><dir name="Wishlist"><dir name="Grid"><dir name="Renderer"><file name="Description.php" hash="cd7275401507d750fdcf703d9b57df70"/></dir></dir></dir><file name="Wishlist.php" hash="ed453fc9e322055bb1e79b7ddfd08cc5"/></dir><file name="Tabs.php" hash="03f79ab107a7ecdbdbbc35a86d64110a"/></dir><file name="Edit.php" hash="949d37a74474c332709e2a6dba03dcda"/><dir name="Form"><dir name="Element"><file name="Boolean.php" hash="c5fff9bcf58db153d227a7dbc6c37c6f"/><file name="File.php" hash="532694620f5233117231c97499bf837d"/><file name="Image.php" hash="c8d9c39f2ceb72af6be7dd3dd06f583a"/></dir></dir><dir name="Grid"><dir name="Filter"><file name="Country.php" hash="9ab92ffd771c427d2092e0b5e01ccbe4"/></dir><dir name="Renderer"><file name="Multiaction.php" hash="e311e516fc8ee5cd22da2315414a7ca5"/></dir></dir><file name="Grid.php" hash="c70dea5f12a0ca0694ac4f3513bd07a9"/><dir name="Group"><dir name="Edit"><file name="Form.php" hash="f34800895686a4979d5fc5fb8a2a6f02"/></dir><file name="Edit.php" hash="70173dcdb73898c117908cd7c288be49"/><file name="Grid.php" hash="dc91a319b14f3a4e7022d5b653f6c37c"/></dir><file name="Group.php" hash="d04ade2348cec3682938238e41ce080a"/><dir name="Online"><file name="Filter.php" hash="67aac90543308a5604e34fb3a0b21194"/><dir name="Grid"><dir name="Renderer"><file name="Ip.php" hash="722842b9a7dd08e92b3a12ddd87df908"/><file name="Type.php" hash="9244d256cdf8420be847a53b62c0bb51"/><file name="Url.php" hash="df4443f7ea12bb8510bb14c0092a9a55"/></dir></dir><file name="Grid.php" hash="cdda020511873b9226f9e8779fc68941"/></dir><file name="Online.php" hash="41b3e8633defe060e4dd5db0c5560549"/></dir><file name="Customer.php" hash="25da883c3a15db8ae70cb57a40581e79"/><dir name="Dashboard"><file name="Abstract.php" hash="ec4c7fff0fd026f083ffdff8988b60f1"/><file name="Bar.php" hash="dda990bf7abeedce4bc0e002506e3c79"/><file name="Diagrams.php" hash="9e9d8c656930f3fd90fb381889a25eee"/><file name="Graph.php" hash="4ac225346da28091ed157b1e4ed5b897"/><file name="Grid.php" hash="4bcadd2a91784eb5b71a1e46f104539d"/><file name="Grids.php" hash="893a3bba5d7c7e738e6cecc3267a536b"/><dir name="Orders"><file name="Grid.php" hash="df37292dd1fef5e887c3363ba2fc3ee7"/></dir><file name="Sales.php" hash="15682c157b039d24b9cb1fccfec27871"/><dir name="Searches"><file name="Last.php" hash="f0ffe2374f0a168114092aed9094cecc"/><dir name="Renderer"><file name="Searchquery.php" hash="9a8e83051d56c35c02f1e3ca90eb9ae9"/></dir><file name="Top.php" hash="2062271298d8490609c3602b5558ea11"/></dir><dir name="Tab"><file name="Amounts.php" hash="1c78a563bc5fbd0e6c57892160a179d4"/><dir name="Customers"><file name="Most.php" hash="3093d14b5f6aaf836c94d0f41d8bb0b7"/><file name="Newest.php" hash="143c40d567e4a8d6183f63fb03c7400a"/></dir><file name="Orders.php" hash="7015298805e214afc063bf8a3ce58ff6"/><dir name="Products"><file name="Ordered.php" hash="81b4ef224c84896821c5c9e995e2341d"/><file name="Viewed.php" hash="279b99b2a7f80dd86a65cf976ef8ada7"/></dir></dir><file name="Totals.php" hash="dc08936e5fb27a0cab490d8575bb6485"/></dir><file name="Dashboard.php" hash="910272fb883563b854de9f5e875baa00"/><file name="Denied.php" hash="71e69a53a63f79a3d3d46329dd9af80b"/><dir name="Html"><file name="Date.php" hash="1d5ccd5c1b68f4e0456224de6c38b9be"/><file name="Select.php" hash="fb11db7cb5fc1daa2405c0e265b26eb6"/></dir><dir name="Media"><file name="Editor.php" hash="a9d99ba9866946aad9d12aa74b8d31fe"/><file name="Uploader.php" hash="29e5faee98a4862af7a8d0c2544712ba"/></dir><file name="Messages.php" hash="796ed3838a874121f6270f81246709b3"/><dir name="Newsletter"><dir name="Problem"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="06f642b38c0031e03e354caf30c452c3"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="9e49bbcd44f1cc4d9b5c5f0cb5855ac9"/></dir></dir><file name="Grid.php" hash="ef51b5f6ed1b45c5c5807974e2503bff"/></dir><file name="Problem.php" hash="afb72c1ac41d28e04f80cb8612359ac1"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="248405c149e1e9565f72b8bb7bf1454f"/></dir><file name="Edit.php" hash="1c0e77878cabe80b57e6822e15ada874"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="38f50fa6181fee4d51eb7942f64412b5"/></dir></dir><file name="Grid.php" hash="254c39e66541fc1a9427d78719c25721"/><dir name="Preview"><file name="Form.php" hash="b0b1fc24d0aa62c8ca209b7e63e75cf3"/></dir><file name="Preview.php" hash="8cd282b30abe3d65f4cf734a5b368cdc"/></dir><file name="Queue.php" hash="572ea06d384e7033823edb43ef79226b"/><dir name="Subscriber"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="c28a76fcc7a0d6987ce74b71dde65613"/><file name="Website.php" hash="90bade8c014dd2bcab48eeb7977c5570"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="f1c736850234e943a26713d1579c9e6d"/></dir></dir><file name="Grid.php" hash="c3052298101b0bba21b3aab231379502"/></dir><file name="Subscriber.php" hash="61c0009d180f94a37ac19f2d60814779"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="812d340fbe114c7167afe7f77403581f"/></dir><file name="Edit.php" hash="aaf36bb38d23a94c949c9d4e2f1b01b5"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="3d54ba9b5eb1397070f1e198a1662d9b"/><file name="Sender.php" hash="b0e37e6371073d7491a61eaf944698b1"/></dir></dir><file name="Grid.php" hash="1de4e93fdc432d9cfb3ee13ff50412a3"/><dir name="Preview"><file name="Form.php" hash="d1912fd60a8ed8b47436efe0be374a46"/></dir><file name="Preview.php" hash="88fa0a132605eaf15d90ae08db3bc290"/></dir><file name="Template.php" hash="35602dee6622a2c2b16a4054d5b7156d"/></dir><dir name="Notification"><file name="Baseurl.php" hash="54fa97b123e66e821195010aab70a7d1"/><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="281d146623c963f97078c9b20f4124fd"/><file name="Notice.php" hash="f72341b5a0e23e230fb50d73cc256707"/><file name="Severity.php" hash="a6ce49a89ceb2ec3f3a4a1c1bc7a3f44"/></dir></dir><file name="Grid.php" hash="77b0a942ef51a8ce54c218dac7f43359"/><file name="Inbox.php" hash="fae62ac2b2dafe73293a2a03ad5ec4b5"/><file name="Security.php" hash="4c31d6cc7a1e7954489fc9de95c905ac"/><file name="Survey.php" hash="cd67440dd09f6f22525322acc6183cf7"/><file name="Toolbar.php" hash="680c245c1659d9c403caad233e6359e6"/><file name="Window.php" hash="45214936295b3afc8341c20c85e73c99"/></dir><dir name="Page"><file name="Footer.php" hash="681dc656228f5b30b195946ed8283e9c"/><file name="Head.php" hash="94241bdbdb2a08d065d26aafa506b290"/><file name="Header.php" hash="9b11f230941c7aec5f6a37f9358b611f"/><file name="Menu.php" hash="bb1d750a01fd2805915ca297fb7fd754"/><file name="Notices.php" hash="ba54bad3750bd3b2ad11e4cd90cc0b17"/></dir><file name="Page.php" hash="666f884b2afb249fb59eceee548a2ee9"/><dir name="Permissions"><file name="Buttons.php" hash="a1dcc83ecc9e792a32001cb4d9f09663"/><file name="Editroles.php" hash="57deb0a20340b6c0f2cf9056513a1663"/><file name="Edituser.php" hash="16bbd6ab48ce0b2324e4d0386dd8370a"/><dir name="Grid"><file name="Role.php" hash="a0b562342a4247d2ee04a4104a411d15"/><file name="User.php" hash="0298a789bef86edc1d609716cca4a373"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="f64ceeccd080c9dba397072d4bdf9881"/></dir></dir><file name="Role.php" hash="068a210a5260ea8c403d0418c7b94683"/><file name="Roles.php" hash="1aa859580066f83500eb31100904795a"/><dir name="Tab"><file name="Roleinfo.php" hash="865c60892ade609a8132c5cbf9200d37"/><file name="Rolesedit.php" hash="de25b45cbb0bb49ad730d4cc8c6e1eb9"/><file name="Rolesusers.php" hash="0c46d6b2c7f5a9c082df1de204408a60"/><file name="Useredit.php" hash="920cfe32fea522fcf37b4d9b0640edad"/><file name="Userroles.php" hash="2b248de02644bfe94f22427e337ee21e"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="d664e36f5a815c352cfc684d6de7d4e2"/><dir name="Tab"><file name="Main.php" hash="a2a37efa9ba96b1bb34d4660e952c5bb"/><file name="Roles.php" hash="d73710b40f3c478828d6307570f1fc96"/></dir><file name="Tabs.php" hash="c6a5fd645a9c70cc07d02b69ee765c4d"/></dir><file name="Edit.php" hash="c1056ba52f46a269f000ed286f43d519"/><file name="Grid.php" hash="2ad141c04f79d3e54bcdf53f956e1b08"/></dir><file name="User.php" hash="32bfdac90c604007e88087d21f9b1a86"/><file name="Usernroles.php" hash="b22da9edba5522d8536d4bd95852291a"/><file name="Users.php" hash="86531e0b5be8a89747f4725acdb0da3d"/></dir><dir name="Poll"><dir name="Answer"><dir name="Edit"><file name="Form.php" hash="ea48255bc733f66cc49fc9608259e4fe"/></dir><file name="Edit.php" hash="4a8c47fe46f1fffe4766b006b1a67b3e"/></dir><dir name="Edit"><file name="Form.php" hash="9f1aef1a95dca23bc058b4e673204303"/><dir name="Tab"><dir name="Answers"><file name="Form.php" hash="29bc462fc3ebf6426e0e3828ab2d45c0"/><file name="Grid.php" hash="f3e035991a3babe6ca93a640b7b29563"/><file name="List.php" hash="7866133bab2bcf7106f0295624e80b8c"/></dir><file name="Answers.php" hash="8bf553b819a4b084bb7f233090334ccf"/><file name="Form.php" hash="2bbb0010c587137ebb8dc6b7e0c6a284"/></dir><file name="Tabs.php" hash="b955340cc96a75e5039b6242b2e2e7e0"/></dir><file name="Edit.php" hash="ddba7a7d2126a0c3380a43f0f5ef9e17"/><file name="Grid.php" hash="4842ecd9bef63b5d000f6093366cac91"/><file name="Poll.php" hash="8b327195b0c6a4b05680d3c651846d9a"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><file name="Form.php" hash="d81e6d8b0cf3cd81c689aa9aae21b076"/><file name="Js.php" hash="e63d4881052eb49b6fe5f9fc3fc12206"/><dir name="Tab"><file name="Actions.php" hash="14f5b8f1370a1299a3fcb80076158b98"/><file name="Conditions.php" hash="bb5ef26450fe8635d91b9ccc9196c579"/><file name="Main.php" hash="618ab5c0c5e50a752c29b6d3f0757a58"/></dir><file name="Tabs.php" hash="05fc6fda15f1d96c58134c7e1041481c"/></dir><file name="Edit.php" hash="a1ee0eac3fd9781407e11b2f64ed78aa"/><file name="Grid.php" hash="c9643030c5313725429921b02f6f8d32"/></dir><file name="Catalog.php" hash="b5ff4b9e3c2235d6eb61c08cbca58a3b"/><dir name="Quote"><dir name="Edit"><file name="Form.php" hash="75495e0a90c3c15b81cab39ce4c0f7b5"/><dir name="Tab"><file name="Actions.php" hash="eedc965a34c3e1d826f1742a7f61758a"/><file name="Conditions.php" hash="70bd6c28e24f384ca64a4b14d98cb2d5"/><file name="Labels.php" hash="932bb5a071724bb08d3c3d6ee9c65d0f"/><file name="Main.php" hash="f498b4ba3330c8c02f242a2749aea6c2"/></dir><file name="Tabs.php" hash="485290d29bb408e962eb66dd09b2bc27"/></dir><file name="Edit.php" hash="5453315f8619e8c55eb362473844fd31"/><file name="Grid.php" hash="fa1dfd696d3e86730fb7f27d56a7c50a"/></dir><file name="Quote.php" hash="4e8dc11f442a66671a892ab1b32daa9d"/><dir name="Widget"><dir name="Chooser"><file name="Daterange.php" hash="d31c7ecf101e8baaca992b4e4a91a20f"/><file name="Sku.php" hash="491ae18c9d16d4d72b66e00dde257049"/></dir><file name="Chooser.php" hash="e46f2a721b8fa8749bb44e5d403f8180"/></dir></dir><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="0a12a16ed4b95ca6f973a480f7172bdd"/><dir name="Tab"><file name="Form.php" hash="3bdef6718a3b055b762e6f278897ca34"/><file name="Options.php" hash="85e6e14cd66d08e956cd6640e7cfd879"/></dir><file name="Tabs.php" hash="c2275930f3acfd6d028e485d3107f476"/></dir><file name="Edit.php" hash="e7e0417b851a92c7d08e8d4b19be0f89"/><file name="Grid.php" hash="fcc7e60641bfdce003703195ce4c0f5e"/><file name="Rating.php" hash="7c6fff4cbc76f6a6398675c54044cd48"/></dir><dir name="Report"><dir name="Config"><dir name="Form"><dir name="Field"><file name="MtdStart.php" hash="539f9cb645068d1cab1e950db731858b"/><file name="YtdStart.php" hash="63c5e9f0abf3923f03baf431511e9403"/></dir></dir></dir><dir name="Customer"><dir name="Accounts"><file name="Grid.php" hash="510963eeb485e2e68f6d45aa5022a4c2"/></dir><file name="Accounts.php" hash="2c96e480bfd59e44ec5df21305b93fb3"/><dir name="Orders"><file name="Grid.php" hash="9ce3de9319709862c7336b12c438accc"/></dir><file name="Orders.php" hash="e381ffa881f946656356f2c9694408e1"/><dir name="Totals"><file name="Grid.php" hash="73570083a199c088c636e037baaabf01"/></dir><file name="Totals.php" hash="dabc18f86a4206f12122dee242cfd3bc"/></dir><dir name="Filter"><file name="Form.php" hash="0aad68003aaa0ff6e412931ec698b05f"/></dir><dir name="Grid"><file name="Abstract.php" hash="d92bb11e5dc2249b822e186b199b3bd6"/><dir name="Column"><dir name="Renderer"><file name="Blanknumber.php" hash="528b2404237ec734c6d848e999a7113d"/><file name="Currency.php" hash="21f989180199976b80c32d6c6de1f0b5"/><file name="Customer.php" hash="ec9d2ffd3a1323f480495a9bfe3f9cdf"/><file name="Product.php" hash="066c96cffedc2149e6625335fb713b5c"/></dir></dir></dir><file name="Grid.php" hash="39cac20e065903b998f11854f6590758"/><dir name="Product"><dir name="Downloads"><file name="Grid.php" hash="aa799265e8902c87889e6e75cb87d00e"/><dir name="Renderer"><file name="Purchases.php" hash="15a6b2d2d03bbac50c38c1d5d7cfe4b3"/></dir></dir><file name="Downloads.php" hash="b894c30d399a2919edae0094a3671043"/><file name="Grid.php" hash="5838230694360a0a26740ad575ff6a64"/><dir name="Lowstock"><file name="Grid.php" hash="5d428333a2bb224902da7e97940b588a"/></dir><file name="Lowstock.php" hash="0e8d1ff2667c37b81e064e27a27771d6"/><dir name="Ordered"><file name="Grid.php" hash="9c8651b4c67a039353ee243e06ec5fb2"/></dir><file name="Ordered.php" hash="1feb12819cd00225726cd01bbbd9054c"/><dir name="Sold"><file name="Grid.php" hash="bad9f083fe47afd543e5701fb0eb1832"/></dir><file name="Sold.php" hash="058b56ac9bf2d89cd8c1a359d87fd968"/><dir name="Viewed"><file name="Grid.php" hash="6f7b78bea8b4bccce38eb296f70535db"/></dir><file name="Viewed.php" hash="97100bb2bad12daac35a9ae0c880f2cb"/></dir><file name="Product.php" hash="4f1acdd60151aa1a028870da1b6852a0"/><dir name="Refresh"><dir name="Statistics"><file name="Grid.php" hash="6d0e8ac8cdc242dad4acbd810d63f837"/></dir><file name="Statistics.php" hash="41706f62f40d1355a6bd47a56c38f91f"/></dir><dir name="Review"><dir name="Customer"><file name="Grid.php" hash="e4e5a547177561d14d44cfd3ee367652"/></dir><file name="Customer.php" hash="bf6e8566dfad41c5958c38f532e52049"/><dir name="Detail"><file name="Grid.php" hash="c79525535f39e9cb8755b50840bf7b8d"/></dir><file name="Detail.php" hash="48692724434a28e1052226edd4f35302"/><dir name="Product"><file name="Grid.php" hash="5ebe2abac8429d1fbe3a665d27c36708"/></dir><file name="Product.php" hash="f661ad81e1383774d45eb464a06d3ec2"/></dir><dir name="Sales"><dir name="Bestsellers"><file name="Grid.php" hash="ce55f4e49615a0d10caa516bf5c40d61"/></dir><file name="Bestsellers.php" hash="f7339e6a07862b4834fedb5092f39796"/><dir name="Coupons"><file name="Grid.php" hash="483c7005c6987986f92122102f985785"/></dir><file name="Coupons.php" hash="f33413388d2cf59873dc9db648678c0a"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Date.php" hash="12194428b1a2ad973f420755254a10d6"/></dir></dir></dir><dir name="Invoiced"><file name="Grid.php" hash="a26b7e50eccdb53221acf736f889c282"/></dir><file name="Invoiced.php" hash="f93ec7c3178e3def4a31de186d2df9f8"/><dir name="Refunded"><file name="Grid.php" hash="2a360c53c5dd9367d4255a3b1dedc71d"/></dir><file name="Refunded.php" hash="4575e409f2a0c827f8f097b11dcadc18"/><dir name="Sales"><file name="Grid.php" hash="7bbf0310f3f0b95460bda58025325017"/></dir><file name="Sales.php" hash="ea2b338e8dcc1c7131c9426e245741f9"/><dir name="Shipping"><file name="Grid.php" hash="81ea980dd94f534262cc32aeb090c1b1"/></dir><file name="Shipping.php" hash="1685e15e149daef4bb7a885297d5d1ea"/><dir name="Tax"><file name="Grid.php" hash="dae5bd41e812f0dc00d8b1580df127af"/></dir><file name="Tax.php" hash="f8569d4e847792f872407dd806555f61"/></dir><dir name="Search"><file name="Grid.php" hash="3ce3c460989c6733cad99d6460b3010c"/></dir><file name="Search.php" hash="3d166c8176543e39e6e9530cfb5765bb"/><dir name="Shopcart"><dir name="Abandoned"><file name="Grid.php" hash="8e0e66bae4e5dea1842edeb49434e7ca"/></dir><file name="Abandoned.php" hash="fb146532e62ba39f1986290fe9e10f0b"/><dir name="Customer"><file name="Grid.php" hash="8b3e96cacae0d31545c66f34894c1b8d"/></dir><file name="Customer.php" hash="9cbad1ee16e470d706b64b45d71121a2"/><dir name="Product"><file name="Grid.php" hash="9c5dd434ec30b2ea78823c8f6cbfffb8"/></dir><file name="Product.php" hash="76b242ec124a886d1bef13a3108fc850"/></dir><dir name="Tag"><dir name="Customer"><dir name="Detail"><file name="Grid.php" hash="18d7ad4bb079b53d07191611d854de79"/></dir><file name="Detail.php" hash="195ad7dc5523867a2b2c67e49bdfaea1"/><file name="Grid.php" hash="54971d6bd043a951cd2fbe6cb6391b79"/></dir><file name="Customer.php" hash="4d2334d3cacf04cccb41792079b80311"/><dir name="Popular"><dir name="Detail"><file name="Grid.php" hash="893871eb5bb004fd635dd9f249092112"/></dir><file name="Detail.php" hash="5e159901c44b2ffcf68ce4c3a39fd0e1"/><file name="Grid.php" hash="90f8d44a4fa012b471c864eda3a464d3"/></dir><file name="Popular.php" hash="14460340c4e6f67c9b3c475289eda1e3"/><dir name="Product"><dir name="Detail"><file name="Grid.php" hash="0e7447bc283efd7eb62dfa11f6f93b47"/></dir><file name="Detail.php" hash="ed372e4cec9af33f1712125b9c249d60"/><file name="Grid.php" hash="d21e8649783758ea7c67459ebe9881a7"/></dir><file name="Product.php" hash="f5adf140bcb351fb8a84bca0db54f183"/></dir><dir name="Wishlist"><file name="Grid.php" hash="1b640610bbd083f2c03440433fa44f2e"/></dir><file name="Wishlist.php" hash="535b84484dbf890c9298daacaeb25d30"/></dir><dir name="Review"><dir name="Add"><file name="Form.php" hash="fbc1b119749de2d4fbcfda8cab4e9192"/></dir><file name="Add.php" hash="d9b7ecc1e05bcbc63c0307edb0ba79fa"/><dir name="Edit"><file name="Form.php" hash="c69d62b6adaa4c78c4e546c75be9451e"/></dir><file name="Edit.php" hash="fa38f3f797509419af861429a22ef39b"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="bcc0c3308e6123642651f91b2a7f9f3b"/></dir><dir name="Renderer"><file name="Type.php" hash="5af20a44ce74a0a20e570c83f4ce49d9"/></dir></dir><file name="Grid.php" hash="6e9d1cca06f83aca01bd548ac7f78ea3"/><file name="Main.php" hash="b9d4cfbf0b2d7e502ecde0003a354bdb"/><dir name="Product"><file name="Grid.php" hash="fbeaf98513182743a81cb1b428363359"/></dir><dir name="Rating"><file name="Detailed.php" hash="34525a6d45b6505e80b97d2733510ba5"/><file name="Summary.php" hash="96bba77082f28b844e0cbe5dcb72e227"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="9b1ee8e0bb4f911f1a02d9cde7ca588d"/></dir><file name="Creditmemo.php" hash="0c59f20c72713a4b069a718b245b3229"/><dir name="Invoice"><file name="Grid.php" hash="3d9b5c0788a61666308cd4d6272b3e82"/></dir><file name="Invoice.php" hash="a3bef431c2c25deb27ec3217c3c996a1"/><dir name="Items"><file name="Abstract.php" hash="5600f017d3dfbcad63bc9dde170f1a01"/><dir name="Column"><file name="Default.php" hash="5f44f59f2fe5f50308b3e1ceb8def76a"/><dir name="Name"><file name="Grouped.php" hash="4764134348354644aa623c416ef2d276"/></dir><file name="Name.php" hash="10e53478f28a7f8e223b641b933516e9"/><file name="Qty.php" hash="b07bec5aa1ccd06678f4e24229b577aa"/></dir><dir name="Renderer"><file name="Configurable.php" hash="69d9ea92ec0f08546ae7a11bd15aebbe"/><file name="Default.php" hash="cb5082319cc02d72d72271ed33c92e89"/></dir></dir><dir name="Order"><file name="Abstract.php" hash="f21e7a4b9b42d52267af178a3922a739"/><dir name="Address"><file name="Form.php" hash="07be79a7120ae513717c3405c9b18ce5"/></dir><file name="Address.php" hash="b99eef5e3a41678453dbf6cad5c99959"/><dir name="Comments"><file name="View.php" hash="eb7cedf218541b4a2399770b0b6d518a"/></dir><dir name="Create"><file name="Abstract.php" hash="56dc3e704f7452bd034957c7d3389dc2"/><dir name="Billing"><file name="Address.php" hash="6a067c267a6da7083698c3cd56c2db95"/><dir name="Method"><file name="Form.php" hash="9c4d676a1686a57669e9a00235b85795"/></dir><file name="Method.php" hash="d5e2019a00eb530d4da0b200cce22f49"/></dir><file name="Comment.php" hash="cb6d4bb4e2c13448ae6040a4739a1ad1"/><dir name="Coupons"><file name="Form.php" hash="701fbef24890562e3ca15c7e8fd1aabc"/></dir><file name="Coupons.php" hash="c761a4dc6e36748264efef881e52f1a9"/><dir name="Customer"><file name="Grid.php" hash="b8b8e981a2ebd2821c0732bf6cd86afc"/></dir><file name="Customer.php" hash="df842ea7701ecdaeecadeffd6e98f6f7"/><file name="Data.php" hash="13f973c5ab673d3d5a4b6026c7fde696"/><dir name="Form"><file name="Abstract.php" hash="57697c1a88ee87237736121b969c8649"/><file name="Account.php" hash="03d6918a3bb83844a5d2361e8a5865b1"/><file name="Address.php" hash="ee3cb2ca3935727715b7504636aff9b2"/></dir><file name="Form.php" hash="04110ee3e30cbb0c1a6b811805c841ed"/><dir name="Giftmessage"><file name="Form.php" hash="6f3b4318ce8bc77430407a6073bac959"/></dir><file name="Giftmessage.php" hash="2cd0870b1afd0f29c8ec60d215cdfbc8"/><file name="Header.php" hash="1c4aa1ee93cfb3661ccf21406c118da6"/><dir name="Items"><file name="Grid.php" hash="c4a52779d2e923892d82897c2e6308d7"/></dir><file name="Items.php" hash="5b19a862d6350f7c2334b7a2533fa1f8"/><file name="Load.php" hash="1990bae5fd8c6bf125ea86586d47c2f0"/><file name="Messages.php" hash="fb1e296d95653518a3aa45102399e190"/><dir name="Newsletter"><file name="Form.php" hash="dd58a4bc2f02adce0a16d88f716c160a"/></dir><file name="Newsletter.php" hash="b10a65e8fbf66feca99337d95ae24144"/><dir name="Search"><dir name="Grid"><dir name="Renderer"><file name="Giftmessage.php" hash="cdea3aec494f3030e2181c2728c3d9eb"/><file name="Price.php" hash="39ca87c518b20b1d83361a923bc06d8f"/><file name="Product.php" hash="ecc91e2f0cd9bc33074ba1f95cb5d536"/><file name="Qty.php" hash="ea9eb166bbe52d1ed3932f9dc9b3a224"/></dir></dir><file name="Grid.php" hash="04682a8f5d5eb3047fa1d31341689c41"/></dir><file name="Search.php" hash="0be8d554a1f6425be684a6c5d361d9be"/><dir name="Shipping"><file name="Address.php" hash="70d2e03b0514af629814b7f8efd14a89"/><dir name="Method"><file name="Form.php" hash="5fe9b46d1cc525313162090fcecc0b94"/></dir><file name="Method.php" hash="43e94f2e3c8cf3e7b276a7fe4aa217c6"/></dir><dir name="Sidebar"><file name="Abstract.php" hash="e67eb9966abc3fd2c423aaa9c250e1dc"/><file name="Cart.php" hash="d8233b4b156b54658c5f98e90b01933c"/><file name="Compared.php" hash="d433ceaf0dc6d32e9ddf1d31c525deaa"/><file name="Pcompared.php" hash="8def4550e8b89c1ff350230ca67f8612"/><file name="Pviewed.php" hash="63bffb53bc130c5579f6182c15b0fe2d"/><file name="Reorder.php" hash="4ace4011ce7a753486780a8ec9a2fb64"/><file name="Viewed.php" hash="57d9b73fb01e9b0b03abd1c0e6de3f7c"/><file name="Wishlist.php" hash="1613ad79f842999ea849bdf286fb365d"/></dir><file name="Sidebar.php" hash="08e346622a05c23a235aa28f03f3b24e"/><dir name="Store"><file name="Select.php" hash="88b22f00e69cb37637c02ddeb9a2e0d0"/></dir><file name="Store.php" hash="92a9e0408f8ab4b8f58317cf1fa5ca11"/><dir name="Totals"><file name="Default.php" hash="11ec971b0b0dff817b3a1f5f8f94ddac"/><file name="Discount.php" hash="36ada3fbaafa2a06d8ba1a051ba66aaa"/><file name="Grandtotal.php" hash="f9cf010cbd2abb2663c81b0ff96a066e"/><file name="Shipping.php" hash="868ed877149e87e47253e127da618b43"/><file name="Subtotal.php" hash="054a7af743db97f340eafd5dc09edd53"/><file name="Table.php" hash="8824b49db9b4eefedacfe4af51c8509f"/><file name="Tax.php" hash="36dad6ba1cadde5ebafa709ef87c7f96"/></dir><file name="Totals.php" hash="ad3777c492b27a382197682e392a1999"/></dir><file name="Create.php" hash="3162e058f47fc89b1d1eeddd61a51091"/><dir name="Creditmemo"><dir name="Create"><file name="Adjustments.php" hash="9adaf515efa6fce12c7e08961b6f1dde"/><file name="Form.php" hash="5a9c8e184c6733d777590a5df2988f62"/><file name="Items.php" hash="cf6d11c84d321ef6c9b7f184e79485e8"/></dir><file name="Create.php" hash="83d80abf5c508c68afb278464508bfb9"/><file name="Totals.php" hash="1e70b91dbe71730f40e61ff55c6ac6bd"/><dir name="View"><file name="Comments.php" hash="8277371b5f2c6d5751c816382daa80bf"/><file name="Form.php" hash="cb8dcf5c1d937daf221fb65d4e1d9a1a"/><file name="Items.php" hash="023601735dbc58c40eceb7b754dfe56f"/></dir><file name="View.php" hash="7eb72a25fed12ec2c76b5327a43b2669"/></dir><file name="Grid.php" hash="1e451120ac13436800f8a23a9045c240"/><dir name="Invoice"><dir name="Create"><file name="Form.php" hash="e20424543a967ad0319edd21fa5a1012"/><file name="Items.php" hash="4d40b0687595fc2d2186fbd0dec387cf"/><file name="Tracking.php" hash="d87d8fd4a7e09f6cf65711d6de0ae4b4"/></dir><file name="Create.php" hash="301c3bb45ca99d272a075bcee65235bc"/><file name="Totals.php" hash="25b755fde87ec7291417a92c6a23c67d"/><dir name="View"><file name="Comments.php" hash="014b1a872155f59cf672583ac8c0368e"/><file name="Form.php" hash="f50fee69d70b825621cb6448ccd7d688"/><file name="Items.php" hash="5e4ff6654477b2b6a86c0c257215267e"/></dir><file name="View.php" hash="ad4490f1e541595fc1052365b4086839"/></dir><file name="Payment.php" hash="73b25d6cd194da745b07bfa20349b45f"/><dir name="Shipment"><dir name="Create"><file name="Form.php" hash="dcac76e2b35d383486d5bce3e3e3708a"/><file name="Items.php" hash="ff60f0572bc936fc2c977b0d1c7a0e9f"/><file name="Tracking.php" hash="8f624f052e87c8b35ee83a5b3f3fcd2c"/></dir><file name="Create.php" hash="898db2812160fa259f6b1692fe5e0a77"/><dir name="Packaging"><file name="Grid.php" hash="8f2a4c57ea26cd9f5d0c1b2da0a42d58"/></dir><file name="Packaging.php" hash="cdec5d3620543e0f39b3ef93f3d55d63"/><dir name="Tracking"><file name="Info.php" hash="512a040f2a9b7afdb85716439b4720d9"/></dir><dir name="View"><file name="Comments.php" hash="3abc75723652e34174987454d7613509"/><file name="Form.php" hash="5d2389d23c306e5eb3f548a9c888b1cd"/><file name="Items.php" hash="ee05fc75e09d409e5327f99215daa874"/><file name="Tracking.php" hash="35ba4874aaa544fff918f099ebf4e636"/></dir><file name="View.php" hash="a0ff2315e0c7a097620ce3c6f23f98f0"/></dir><dir name="Status"><dir name="Assign"><file name="Form.php" hash="876fb0bcfd2fb3cad3ea1b4b71d675ac"/></dir><file name="Assign.php" hash="58b03a6011eff918be0b360e58f94714"/><dir name="Edit"><file name="Form.php" hash="ae74fa61faa1067db974f52ae5218f73"/></dir><file name="Edit.php" hash="772273eaf9bbb3d1bbb9173034b4ba40"/><file name="Grid.php" hash="bfb3a3cc8d3fb6df88ec78d426026573"/><dir name="New"><file name="Form.php" hash="9cd3409510849c6f5245aa8dbb17338b"/></dir><file name="New.php" hash="c54fabe816cde74429c49c89a30433ac"/></dir><file name="Status.php" hash="5116f4ac880e92fccbead54ca5527a64"/><file name="Totalbar.php" hash="b96b3079fdcf8d78aaacb4c650cc02bc"/><dir name="Totals"><file name="Item.php" hash="084f2d87393bd66bec770e4bfaaeb3f2"/><file name="Tax.php" hash="afd1cbd2c992348f993b871d6c9039eb"/></dir><file name="Totals.php" hash="19b96f97467d6be3c90a51b61aceec12"/><dir name="View"><file name="Form.php" hash="fe8c3582f6d379291d41193e1f2b90ec"/><file name="Giftmessage.php" hash="43d9f07d181546915d684baa43cd6d24"/><file name="History.php" hash="a20ba0ca65e4a5ce85231748f4650138"/><file name="Info.php" hash="4417daa3e243873ba54e8b6b194dc8f7"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="c298a0484093f4e6de84ca010a957530"/></dir></dir><file name="Items.php" hash="8928d8d20fbef021f0c0e14a35bb9b00"/><file name="Messages.php" hash="dae67e0365bfc2bde7d54aea79ca6b1d"/><dir name="Tab"><file name="Creditmemos.php" hash="5bb2817bbf0d828ff4db96bfe2d386d9"/><file name="History.php" hash="f75f6b65ecbeed24edd8edb31fb76ee0"/><file name="Info.php" hash="5e64d919207fd2384a00a2f382ef9a76"/><file name="Invoices.php" hash="35526fbe1c0b80c5686c914d9725bf3f"/><file name="Shipments.php" hash="38e0828abcf79fc7f1897a1e447cb61d"/><file name="Transactions.php" hash="8c4aee342e99b28730dbb946d56812ce"/></dir><file name="Tabs.php" hash="b777a7979591c7bbfccbbc7d07b5545f"/></dir><file name="View.php" hash="276b4b5f2e64b228002f35d53d9e66fb"/></dir><file name="Order.php" hash="8035253a4605f74793ee7ab5955559c5"/><dir name="Reorder"><dir name="Renderer"><file name="Action.php" hash="7257026216804ec66d4f2a92e9b3599e"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="dcffe3abdbb5aef53b5e8f51d7435662"/></dir><file name="Shipment.php" hash="586288a628639cd06144f9c545aa0c31"/><file name="Totals.php" hash="be2cdcf30e4b767d1fe884fdb5578721"/><dir name="Transactions"><dir name="Child"><file name="Grid.php" hash="7bcbecb0ddf32beeac85c9212b567d86"/></dir><dir name="Detail"><file name="Grid.php" hash="7880e7d113166155fc5b450647fb9daa"/></dir><file name="Detail.php" hash="20ed6b086992e0da8922dcffd560b58a"/><file name="Grid.php" hash="22aff0ac91bc4a1d722eb473a1ca25de"/></dir><file name="Transactions.php" hash="3531493dba2bc513719b894c0a2f53ab"/></dir><file name="Sales.php" hash="7388146399a18744ba65960d08cba1a3"/><dir name="Shipping"><dir name="Carrier"><dir name="Tablerate"><file name="Grid.php" hash="17666e50fe5866f7e37e0baa99b2eb81"/></dir></dir></dir><dir name="Sitemap"><dir name="Edit"><file name="Form.php" hash="1e108356defdaa957516dc91b8e96643"/></dir><file name="Edit.php" hash="8a157599f86b2b79cb723d7e29c34483"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="922d017ccf3b40b4db4047ebc33b47f3"/><file name="Link.php" hash="2afbe7b06c70610e7655b49b0e15949f"/><file name="Time.php" hash="285014e64cea28d738a426d3dcd6bb90"/></dir></dir><file name="Grid.php" hash="4c169f1aeaee902c331070a72667f411"/></dir><file name="Sitemap.php" hash="f08d1da80d43f26909ba0485eeaba412"/><dir name="Store"><file name="Switcher.php" hash="c0f68f604bfb6ef53cc2d7adc8d4e6e8"/></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="039bf1e0a5893db3acee77b3840e8fc4"/></dir><file name="Edit.php" hash="16dfa004a4cd807d5c125fd52da7eb95"/></dir><dir name="Cache"><file name="Edit.php" hash="fcb3deb549932ded2b169979339c828d"/><file name="Form.php" hash="8b1865dda7a644a519348e45751cecb4"/></dir><dir name="Config"><file name="Dwstree.php" hash="2f98efc34dd7f473371a4ddad5f3b38b"/><file name="Edit.php" hash="e6208e9268d9b2cd4f49d237d42d6255"/><dir name="Form"><dir name="Field"><dir name="Array"><file name="Abstract.php" hash="a7f2846a179483dd18f26e548bb9a65c"/></dir><file name="Datetime.php" hash="95ea473f5420dae5ade413f098b883d6"/><file name="Export.php" hash="a44012ed6a7850596353295915fa227d"/><file name="File.php" hash="5d220fa857d8c9e0efc3789961a8d4ee"/><file name="Heading.php" hash="d1060a22e6740eba42126ba22ed1f016"/><file name="Image.php" hash="3910d687c6f58e3eb08a70f16180b94f"/><file name="Import.php" hash="354797b9a704fa05d7dad6ef9de3afc1"/><file name="Notification.php" hash="6fcf08c0d73d0a6a99d272c726c0b0e2"/><file name="Regexceptions.php" hash="948d21879f06c6b8ba49351f82f3693a"/><dir name="Select"><file name="Allowspecific.php" hash="27e3aab9606afd450e5e32ba2c9cea8e"/><file name="Flatcatalog.php" hash="ab658402d388e12317d32e92e640ab1e"/><file name="Flatproduct.php" hash="e1bcbbd3fd1db8def49aaed9afebc59f"/></dir></dir><file name="Field.php" hash="ae77a69a8b4e7733668e12510311662b"/><dir name="Fieldset"><dir name="Modules"><file name="DisableOutput.php" hash="12f70cc5af8e878124b1ca52396e5efb"/></dir><dir name="Order"><file name="Statuses.php" hash="d2270de2ada4da66b522cbdf01014e52"/></dir></dir><file name="Fieldset.php" hash="99583c5393de237bd6bea9aa984ab15a"/></dir><file name="Form.php" hash="c844b3c8562fa55f3a731f914ef07baf"/><file name="Switcher.php" hash="edc49977c8e656416bd7592c548f2552"/><dir name="System"><dir name="Storage"><dir name="Media"><file name="Synchronize.php" hash="20652db027e906d110e2e78d53ac4f4c"/></dir></dir></dir><file name="Tabs.php" hash="0ca93fd171fee5e2018cf5cf7f5db71f"/></dir><dir name="Convert"><dir name="Gui"><dir name="Edit"><file name="Form.php" hash="6197289e0ba1f50eac10cd04cc2c80b7"/><dir name="Tab"><file name="Upload.php" hash="af75671627c7e1d801a7c7d4bcbfb068"/><file name="View.php" hash="242197a671338083e893f79f2a73123f"/><file name="Wizard.php" hash="6e17142cb17ef1ac744254dc9e3cf20b"/></dir><file name="Tabs.php" hash="abae8445c92352a4e7e50a0178e47a8b"/></dir><file name="Edit.php" hash="730b777f01c18e941e9835c9fbc29781"/><file name="Grid.php" hash="e5b296b2cff01d241df5cd8773a47b86"/></dir><file name="Gui.php" hash="3267ebdfa458c02d9972b1f4edbe57b7"/><dir name="Profile"><dir name="Edit"><dir name="Filter"><file name="Action.php" hash="df57c00eca1a9f0833d05f24e372e43b"/></dir><file name="Form.php" hash="a4b54b2c31fd5e66b7934048ff3e5cb0"/><dir name="Renderer"><file name="Action.php" hash="179e05106de6bad3b7fcc837449e90c8"/></dir><dir name="Tab"><file name="Edit.php" hash="71f3a4d8694ffc8d26f639eb4f3f11a8"/><file name="History.php" hash="3cb2c5951f56e1980fcb42ee1c413b04"/><file name="Run.php" hash="680ecd6c07e9b11d90f3e6b25fa4eea7"/></dir><file name="Tabs.php" hash="7fc720bd4fd5b6b0eb686fb7c73ad407"/></dir><file name="Edit.php" hash="d11c8a5545b7707ebfe80e27b9d42b44"/><file name="Grid.php" hash="c67f34459a7764835e684beeaa793078"/><file name="Run.php" hash="2e2bfa7183322dd24436265a5e435fb6"/></dir><file name="Profile.php" hash="1cb5e68b2e157ce5f23ad5ec24c5b85d"/></dir><dir name="Currency"><dir name="Edit"><file name="Form.php" hash="82f730aaa93188e2f0c87c10a141716c"/><dir name="Tab"><file name="Main.php" hash="154cb82dca478e5d4023625f23f5757e"/><file name="Rates.php" hash="848e37ac4deb2950e7a8662e1e2ec972"/></dir><file name="Tabs.php" hash="49082be0b8d0b90d85008a5c5ed457ea"/></dir><dir name="Rate"><file name="Matrix.php" hash="2388cdd1134b328147144a3967c0ba3a"/><file name="Services.php" hash="e2d1c1b435c1e06ae27b7c3eed57f5ad"/></dir></dir><file name="Currency.php" hash="1812b32ac422e8f40c3131a8ad3d343f"/><dir name="Design"><dir name="Edit"><dir name="Tab"><file name="General.php" hash="d771026e93f706eb5efaefa5fb7ee81a"/></dir><file name="Tabs.php" hash="e065762a1d98ffc4270ed1cdcee0e2a0"/></dir><file name="Edit.php" hash="2889ec16e2e4ec80593e5e2c4faf4020"/><file name="Grid.php" hash="04e553cee2a2afa60e2613ec39510ebd"/></dir><file name="Design.php" hash="ec2c5f85ae18f626da1df74c5258456f"/><dir name="Email"><dir name="Template"><dir name="Edit"><file name="Form.php" hash="237a8dc2f11a925ad76f3536415ed498"/></dir><file name="Edit.php" hash="e8820cc3959e15b502514f80b8bc99e9"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="ff6a4d1f08602fb930c2e00b0a4441ec"/></dir><dir name="Renderer"><file name="Action.php" hash="ee2d145ed9efaf6b7524499f2bf3be81"/><file name="Sender.php" hash="ab50b6d1c91bd0ac4bf6743dd6084687"/><file name="Type.php" hash="87cdad47b1cbe02c4c638f96190c4727"/></dir></dir><file name="Grid.php" hash="c0723e33d973a75662805c7324d98402"/><file name="Preview.php" hash="d561ab28e50060a61c52abdf42684531"/></dir><file name="Template.php" hash="e3873f5b77c89b761be21175dc197db4"/></dir><dir name="Store"><dir name="Delete"><file name="Form.php" hash="728adddb11db8fadc261972dfa229462"/><file name="Group.php" hash="0fd794993314c61f25661b0605c029c7"/><file name="Website.php" hash="fb15a5e68d4390263a0b64d5099a9e1d"/></dir><file name="Delete.php" hash="fd42256743d99444a5c9058dffeff9e8"/><dir name="Edit"><file name="Form.php" hash="1734719dae02cfd9f3d3268d7968159b"/></dir><file name="Edit.php" hash="f696115dd5332efdcf09345d6bd9a49d"/><dir name="Grid"><dir name="Render"><file name="Group.php" hash="0aae0c0bd2e7cb98aff8e2f937d70ae6"/><file name="Store.php" hash="2a82e03f8049547954bdfb84fef1b563"/><file name="Website.php" hash="48b88ada481703585cd4e8148d30392f"/></dir></dir><file name="Grid.php" hash="52be97ce0d4fa05a1267d7a9c7dc8031"/><file name="Store.php" hash="e1517024801877272156b83758105de6"/></dir><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="11da9c11ab8ab67e66b037da18a0ed92"/></dir><file name="Edit.php" hash="2f3f8d84e7b4371cd2627e9402a02517"/><file name="Grid.php" hash="fbe5f9cee32b956b33136427d6807dd4"/></dir><file name="Variable.php" hash="745a5dd38aa348c975cc44d690fe734f"/></dir><dir name="Tag"><dir name="Assigned"><file name="Grid.php" hash="1026381f0e69572caead88ce1e9d6fc7"/></dir><dir name="Customer"><file name="Grid.php" hash="588ad0dc9cf4eba0a408dd73f4218600"/></dir><file name="Customer.php" hash="ef359374e6013c42ce272b1e19953d03"/><dir name="Edit"><file name="Accordion.php" hash="0bc5250ab13faef8037b5d7cf7789d34"/><file name="Assigned.php" hash="9f6144ad1e3395fc6ccaeaf76c601e76"/><file name="Form.php" hash="1a35e37a37fbbe6eb06823e5750c1ea5"/></dir><file name="Edit.php" hash="fcfc724aa679bac0dc081305a23e4335"/><dir name="Grid"><file name="All.php" hash="1f13507b546883ba0a7b42d81d12b9bb"/><file name="Customers.php" hash="30b8771f4123a00a72fea2e18a24d7b8"/><file name="Pending.php" hash="6dfa68d5dd40eed22c7247217be40a67"/><file name="Products.php" hash="6273fa6c034b3673de3f418df9a182a2"/></dir><file name="Pending.php" hash="038f0c1a54765d94aa009f83db081011"/><dir name="Product"><file name="Grid.php" hash="bd89b0a072e3e704cda2cbf1cdcb58d9"/></dir><file name="Product.php" hash="4f9ef6f900a5756bc8811a3d7b7fd3e1"/><dir name="Store"><file name="Switcher.php" hash="15d46c96403178311f5a91ca0c658ab1"/></dir><dir name="Tag"><dir name="Edit"><file name="Form.php" hash="40f89510cf6c0870e2266180aabdda92"/></dir><file name="Edit.php" hash="06197dc68a0fc584694a6d0567c3b518"/><file name="Grid.php" hash="364248b14b1bc05a9c7e896c48e58471"/></dir><file name="Tag.php" hash="a2719e4c5479ed48a73109ba0c3db888"/></dir><file name="Tag.php" hash="d3d2ce816590a033e2aa44d9e5bdf97c"/><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="6e50e186d47a6ef5637a47e738e35540"/></dir><file name="Edit.php" hash="bc5877cfc6fa3dafa55ddbced3bd4948"/><file name="Grid.php" hash="50cb096fb5fd514855deda021bd4573d"/></dir><file name="Class.php" hash="b88d17e5d41868ef2fa796676b3164d5"/><dir name="Rate"><file name="Form.php" hash="5840a8faccd033bee49142cd174bae4e"/><dir name="Grid"><dir name="Renderer"><file name="Country.php" hash="61becc51a95d99b2b206c01080f7953d"/><file name="Data.php" hash="9be5a0c0b6f4d1039251c2ae5fe3b383"/></dir></dir><file name="Grid.php" hash="e117cca9c044870c0c822b7da88d4287"/><file name="ImportExport.php" hash="2163514ddf08eda9cad92ff5eacdc611"/><dir name="Title"><file name="Fieldset.php" hash="55574d9ff1949ad42d000844e49794a6"/></dir><file name="Title.php" hash="a362d2af3cb6440c93f81e458fe95265"/><dir name="Toolbar"><file name="Add.php" hash="5c8ac18f9f3697a52aebe3eb22ce7b88"/><file name="Save.php" hash="3e47cabded9388a198a213ce14bf61b5"/></dir></dir><dir name="Rule"><dir name="Edit"><file name="Form.php" hash="7d64372d3cde3c11e336f3b3e6419479"/></dir><file name="Edit.php" hash="534d7c332c865c853d942b8e5c9c4721"/><file name="Grid.php" hash="32bfcf469f9b83942387eba47e884b88"/></dir><file name="Rule.php" hash="ebe6e4610501aeaa1c490da0e829ce74"/></dir><file name="Template.php" hash="036457a099960d13854505556d34e0d6"/><dir name="Text"><file name="List.php" hash="36c098e765f78a49ff3e6c9b86566582"/></dir><dir name="Urlrewrite"><dir name="Category"><file name="Tree.php" hash="9a12de426f8978fe94ea6485d31f0220"/></dir><dir name="Edit"><file name="Form.php" hash="c9b0114871c5d747ca1d47cb617e2377"/></dir><file name="Edit.php" hash="65e10c48d5fbd4ac7bee40772dc6ca09"/><file name="Grid.php" hash="002f28cf07e3d742296f37b787bda9ad"/><file name="Link.php" hash="2b6fc0e959f43083c82885e2c270d2b5"/><dir name="Product"><file name="Grid.php" hash="be117ee28a39cf2261e58aab5847bca9"/></dir><file name="Selector.php" hash="0fa081f5d50d056754167ef4e96800fe"/></dir><file name="Urlrewrite.php" hash="23fde6bc9b2cd1eb6ef4647cd39fa579"/><dir name="Widget"><dir name="Accordion"><file name="Item.php" hash="8e6e79b6f38ccb87c59433bcc5ee7e38"/></dir><file name="Accordion.php" hash="6d6e24c0aa4e682d7b39d34bd561329d"/><file name="Breadcrumbs.php" hash="c78d9c0c8a47cca0ebd9c751ef4d5c40"/><file name="Button.php" hash="90ad6c5d2604dbb6edbaa5c6091f436d"/><file name="Container.php" hash="55c6029cab6a4b7ef4fb800c8d07e0e6"/><dir name="Form"><file name="Container.php" hash="501067c8eac53d38b1e2b4eaa06fc268"/><dir name="Element"><file name="Dependence.php" hash="df7259a52291483d5ffaf2cb91a4ab57"/><file name="Gallery.php" hash="706e58e55fe2045ab978200876a5d58a"/></dir><file name="Element.php" hash="aa4f125fc17d711c89eacccf96b50ba9"/><dir name="Renderer"><file name="Element.php" hash="59f6398555e7aa51e6fe3e9cb90bc86a"/><dir name="Fieldset"><file name="Element.php" hash="f56298a311698c46629d26ba2d0f30f3"/></dir><file name="Fieldset.php" hash="fe9a1af8232be1e1acf77b50f6afd6f7"/></dir></dir><file name="Form.php" hash="737b356ee46983c20a825ab52a530fa1"/><dir name="Grid"><file name="Block.php" hash="dce3427f4dfac746a827430716da4996"/><dir name="Column"><dir name="Filter"><file name="Abstract.php" hash="7d094b51178b6aaf12a7261e8c3a88dd"/><file name="Checkbox.php" hash="da28a20ad4a61e588d7343613bcaec2b"/><file name="Country.php" hash="05e687dac506f0e778318efae6b71e71"/><file name="Date.php" hash="0d9d20b5031aac3f5466c634a2e1cb7c"/><file name="Datetime.php" hash="9b2b54d762568c187e5fd6a61bfda941"/><file name="Interface.php" hash="cd5436595e45a80836fad94bd22f8fd3"/><file name="Massaction.php" hash="6b7fae98c75d4bea9c4195f73120efa2"/><file name="Price.php" hash="3ffc1aa91ffe5e4b0de893e719d63858"/><file name="Radio.php" hash="832027d37bf0d7b30f68ac254b922b66"/><file name="Range.php" hash="ececa5c29d955d9fbff15836497f961e"/><file name="Select.php" hash="1d5df7916f21340b45e3f2aa3e24c9bb"/><file name="Store.php" hash="2b4d988c578e70addf8744ef5889d23e"/><file name="Text.php" hash="db4bf5093561d1224780f4fa07e38e01"/><file name="Theme.php" hash="1ffbe8f19f3a3a6ea6fc78cc5abbd6c2"/></dir><dir name="Renderer"><file name="Abstract.php" hash="0592c5b607ed43d21b016361cb3cc749"/><file name="Action.php" hash="d9bc41f1c35f488937f9336b19c5d434"/><file name="Checkbox.php" hash="6d0b6dd45df9b8bab02ef90de76c77db"/><file name="Concat.php" hash="9446d661c6267c99da1f86813e62332f"/><file name="Country.php" hash="24636c52eb59a21a1cd984e843f5a249"/><file name="Currency.php" hash="09f8d059ea09831cf8eed35aaa6b1eb9"/><file name="Date.php" hash="c466047408a33fff6abc46f576dde230"/><file name="Datetime.php" hash="8f41cb7c4fa33063a8b4934912858619"/><file name="Input.php" hash="8376e8e28221538499503be511dd819f"/><file name="Interface.php" hash="9c2c26085e0bb4a8ac86a9c9d10500ac"/><file name="Ip.php" hash="58dc9eebdf891be362f69a274c93ac75"/><file name="Longtext.php" hash="2e25a442e0b245c0f5a7158dba9d548e"/><file name="Massaction.php" hash="daced54e85e5616c1d068c754a1ff84b"/><file name="Number.php" hash="9ce9b562206747aa294809665b4c5f1c"/><file name="Options.php" hash="83623c6e35260d3b56f27685a1536098"/><file name="Price.php" hash="c2ac2c773f7ad22d0051acdc723786f9"/><file name="Radio.php" hash="e5c1a90665aa717595d31f3eefc401e0"/><file name="Select.php" hash="35662c546cdf93905217c58d03762663"/><file name="Store.php" hash="fdc473a86ba6be462d508e199569a6ef"/><file name="Text.php" hash="077bbea5a23e4ad09023136638488d33"/><file name="Theme.php" hash="11cc8b46b07a98daa249693a68848eba"/><file name="Wrapline.php" hash="87fa26dbba758f1ea5ef3ac81ce7dfbb"/></dir></dir><file name="Column.php" hash="abce175273a1943618d67618a126b392"/><file name="Container.php" hash="0b462cd161dfe8f2aff6a676a9817af8"/><dir name="Massaction"><file name="Abstract.php" hash="529d5e523274566a1102cdcfe9cdcc9a"/><dir name="Item"><dir name="Additional"><file name="Default.php" hash="3c13c3b0ee3aee671cd38eec0ad1b39f"/><file name="Interface.php" hash="f96a98366894d870632c3b9e9b75318f"/></dir></dir><file name="Item.php" hash="85209e8e69b17a7a89b8e07cd233bb9f"/></dir><file name="Massaction.php" hash="538960e7ea74894095c2aa94a7663b09"/><file name="Serializer.php" hash="176244e967ba10546023fbf27ddd85d1"/></dir><file name="Grid.php" hash="c9914d8ad60a735589b609844c16f675"/><dir name="Tab"><file name="Interface.php" hash="4116098617f2528a10f6c92af1a7bc05"/></dir><file name="Tabs.php" hash="7013f671f3eb3affec2900c8aa651074"/><file name="Tree.php" hash="91638656f61128ea399e53723c229ba7"/><dir name="View"><file name="Container.php" hash="41b4a90d2df4d1328f0dc30a7b35884d"/></dir></dir><file name="Widget.php" hash="e2c0d80eab5e482c845e5c228a6b0c79"/></dir><dir name="Controller"><file name="Action.php" hash="5addc4a42ad8f6b3cdd283d19664600f"/><dir name="Sales"><file name="Creditmemo.php" hash="b59d6bd489454c13135851971a65f906"/><file name="Invoice.php" hash="5deab6e892db823150c5c5c3b9fa7ed1"/><file name="Shipment.php" hash="ecca9e206e98e456c7f9befe6279813e"/></dir></dir><file name="Exception.php" hash="cef182509c0d9721c00421a2d093323a"/><dir name="Helper"><file name="Addresses.php" hash="25f7503f4b5abd033c5ff2653cb78693"/><dir name="Catalog"><dir name="Product"><file name="Composite.php" hash="33ff461e6a5857ca5038c64e202ffee4"/><dir name="Edit"><dir name="Action"><file name="Attribute.php" hash="895be3121683a4145467efee1a46e2c7"/></dir></dir></dir></dir><file name="Catalog.php" hash="16e66432d349ad916864e32dda748476"/><dir name="Dashboard"><file name="Abstract.php" hash="c9776db89e955ce7385288a6ef0899fa"/><file name="Data.php" hash="8f40d02b37d3c238516ec922b2d29761"/><file name="Order.php" hash="363d5c4e89173ecf1112ecbd624e3642"/></dir><file name="Data.php" hash="5eff1ebdaa2d671f1f8e0e9bca667b76"/><file name="Js.php" hash="b954c0dafa4fb9a093bba31de703bfd5"/><dir name="Media"><file name="Js.php" hash="cd04830b38517c6f3571348f0f6df485"/></dir><file name="Rss.php" hash="9c979d2eb490f4bd1c4ac49e6877aa98"/><file name="Sales.php" hash="73a95d272d7991aeefbec052ded37baa"/></dir><dir name="Model"><dir name="Config"><file name="Data.php" hash="1951e851b0ffc079b369dee176ee32ff"/></dir><file name="Config.php" hash="253c0be8fb9025a9ce7417389276fdd6"/><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="49983c4b0c0e9b0a4769d4ea051dbf6f"/></dir></dir><dir name="Email"><file name="Template.php" hash="1c7e5ee644201e06439b8a20dc10b7ff"/></dir><file name="Extension.php" hash="2e552cbbc891d8c4add4a3ba1feedebc"/><dir name="Giftmessage"><file name="Save.php" hash="691dd6dbe21b35f42e41e6131d297abf"/></dir><dir name="LayoutUpdate"><file name="Validator.php" hash="46b76d1e0b78dba75953dba981f20f16"/></dir><dir name="Newsletter"><dir name="Renderer"><file name="Text.php" hash="97be29e577f1322de166b31d16cab95f"/></dir></dir><file name="Observer.php" hash="f20f820216803fb97c053240a33208f7"/><dir name="Report"><file name="Item.php" hash="55aeff271c4f99c8379d287c43353682"/></dir><dir name="Sales"><dir name="Order"><file name="Create.php" hash="4022d84f70f0d8b3ec419acf6396820b"/><file name="Random.php" hash="df1421580a77b391be14114549f371f6"/></dir><file name="Order.php" hash="ffbfa99e481ff2261ba98d4de3358997"/></dir><dir name="Search"><file name="Catalog.php" hash="cd9391357c69769a1d2fee4396d67bc1"/><file name="Customer.php" hash="747bce5fe155c87411e29019026d26b1"/><file name="Order.php" hash="17ad643645632d4be6d1148060af35be"/></dir><dir name="Session"><file name="Quote.php" hash="0f9fb1030e676a3073be5441c4a83316"/></dir><file name="Session.php" hash="82e2ce0a85b7aa3e51d31f7f77669622"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Admin"><file name="Custom.php" hash="a3deb1e6906938bab76d6cb7d5cb1427"/><file name="Custompath.php" hash="5bcddfea873c3e16aa6ec353c9da1f2c"/><file name="Observer.php" hash="c8cb0945688a8608e02ad60eb25dec9a"/><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="936d3205744444149fa553799cf0d223"/></dir></dir><file name="Usecustom.php" hash="3fab2b4e80e6e3ac4472604ca9df25a8"/><file name="Usecustompath.php" hash="d083e514646d281f28123ab4be3dd4ad"/><file name="Usesecretkey.php" hash="95b11c963fa4f40c1cbfef8e0a37a88a"/></dir><file name="Baseurl.php" hash="b8b3404fbc22c288bedf66b0bae7b190"/><file name="Cache.php" hash="1867a5f5930456672ef7a12bfcd8e736"/><dir name="Catalog"><dir name="Inventory"><file name="Managestock.php" hash="c5e42ecf4a889c9837875f54164b9b70"/></dir><dir name="Search"><file name="Type.php" hash="aae25d5fd7a3e782248311064ae03c41"/></dir></dir><file name="Category.php" hash="82e006eb24f43b53d693867a1d3b48ff"/><dir name="Currency"><file name="Abstract.php" hash="de19250a810bc283823596ccc0922a3e"/><file name="Allow.php" hash="a64e5e8b9d7ef05951acfb1ea653b85a"/><file name="Base.php" hash="3a373cf75a184c1b8e29b55902bc8942"/><file name="Cron.php" hash="fc3779a5741a464bedf9aa6520039f9e"/><file name="Default.php" hash="1d2642cb4b1043e51e20e332ef83843b"/></dir><dir name="Customer"><dir name="Address"><file name="Street.php" hash="a8bc6493036ff5cc6ab3090011a4311e"/></dir><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="6b63d6857f76ddeb577feeabafdf9338"/></dir></dir><dir name="Show"><file name="Address.php" hash="77b2467a9db3c1b1e28a1eb5fa1c7371"/><file name="Customer.php" hash="13f52866cc86202ca5a615015f7a80b9"/></dir></dir><file name="Datashare.php" hash="dde6b8aa54f3c189883bba0fd4bb14df"/><dir name="Design"><file name="Exception.php" hash="5367abc0622e0d90fc0803d53c47987a"/><file name="Package.php" hash="3828020f7f75d65afc8d1f2ed014b6c7"/></dir><dir name="Email"><file name="Address.php" hash="55c8bba9b7c5c52b01837b816c9086c3"/><file name="Sender.php" hash="a1aae86d3bdd57e9eb6ed18dda800b82"/></dir><file name="Encrypted.php" hash="9fd1c53434678aa086a00c388beedcb7"/><file name="File.php" hash="c1b92557b0bc871e2f7eaa6a32d8c2b8"/><dir name="Image"><file name="Favicon.php" hash="e598b3b2df71fe801d5e459909e3cfff"/><file name="Pdf.php" hash="d8cbeac076baa65f79f9d8065737eaf4"/></dir><file name="Image.php" hash="56519bc80ee3de93ceb9da2f4b8903f1"/><dir name="Layer"><file name="Children.php" hash="6cce4117156fb587f026f367093393f9"/></dir><dir name="Locale"><file name="Timezone.php" hash="bd6e6b20ed9d61a784751deb6b7b83c3"/></dir><file name="Locale.php" hash="fd99110d3453929c0d443331d9a1b7b4"/><dir name="Log"><file name="Cron.php" hash="f371ce8b70f26012524ec40e6a77050e"/></dir><dir name="Price"><file name="Scope.php" hash="f1cd98dcaa31e438f742e09e4d4147c4"/></dir><dir name="Product"><dir name="Alert"><file name="Cron.php" hash="71e41bdea1a62aadb6523d9084d11ba5"/></dir></dir><file name="Secure.php" hash="19939aa5fffc77d9cc1b6dccb82cbac3"/><dir name="Seo"><file name="Product.php" hash="dceffb2178fad4125973ff8b0121a266"/></dir><dir name="Serialized"><file name="Array.php" hash="525a39c99013f5b39c997ed132efdfd8"/></dir><file name="Serialized.php" hash="f4be934a317c632812a056c554e013a9"/><dir name="Shipping"><file name="Tablerate.php" hash="c9b65d2c453133d39298d0a633b6723c"/></dir><dir name="Sitemap"><file name="Cron.php" hash="c1f020d04a3c009c6232dfb648bb93d9"/></dir><file name="Sitemap.php" hash="3d4311e59eb3a91681237de4fa834cf7"/><dir name="Storage"><dir name="Media"><file name="Database.php" hash="89c4d02e50dfa47635b827a4c5651ae0"/></dir></dir><file name="Store.php" hash="056b62d5932d2cb9a486686adf730875"/><file name="Translate.php" hash="fb3c4a14e3bd93e7a02c2bb72f6c1bc5"/></dir><dir name="Clone"><dir name="Media"><file name="Image.php" hash="895f7213cb681fabcb20cc220e66b0fb"/></dir></dir><dir name="Source"><dir name="Admin"><file name="Page.php" hash="63df6f7cd19aeb345109bef0fce3bf7f"/></dir><file name="Allregion.php" hash="7f2b986530d47785279ad129e077843f"/><dir name="Catalog"><file name="GridPerPage.php" hash="01793f7379ffc6a314d8248f01a399ef"/><file name="ListMode.php" hash="330aa6e30cc6af0ae967eb002866139d"/><file name="ListPerPage.php" hash="7c25f5f9161d98092e5a0338b86136c1"/><file name="ListSort.php" hash="90fd7dd5098a5fd7500655968319cd89"/><dir name="Search"><file name="Type.php" hash="cd7460a9a8fe24feae14509cb7e14ff9"/></dir><file name="TimeFormat.php" hash="4407f5204af170d5a5526de3be93cdc2"/></dir><file name="Category.php" hash="75a351752e02359a3ddd613a7d1d0cef"/><file name="Checktype.php" hash="9bbf6539969939a7a14f51b126819470"/><dir name="Cms"><file name="Page.php" hash="8e8ad9a99b034eb2dbfcf1030dd3fefa"/><dir name="Wysiwyg"><file name="Enabled.php" hash="ed4b99abc86f68f33446a63d317410df"/></dir></dir><dir name="Country"><file name="Full.php" hash="2e08c40adc6ee81e48de0be04dbf74c7"/></dir><file name="Country.php" hash="f4b3bc235393a137a6abe67d0f1e7dc5"/><dir name="Cron"><file name="Frequency.php" hash="2eed324a1fd779016c26bc446bc20339"/></dir><dir name="Currency"><file name="Service.php" hash="f5774fbe5b20f4c9380d472d91ed65a6"/></dir><file name="Currency.php" hash="e39ec52c5a2f9c535d6fbd438277ecbe"/><dir name="Customer"><file name="Group.php" hash="f6cefc71bf8bb7f47415b22698ab2c50"/></dir><dir name="Date"><file name="Short.php" hash="abafd784c5e0974e82b424d11e90849c"/></dir><dir name="Design"><file name="Package.php" hash="9b6e317ce89269a4d67de1071052ac6c"/><file name="Robots.php" hash="47a66a2854d7bad96dbe42dfd9d00bf0"/></dir><dir name="Dev"><file name="Dbautoup.php" hash="4c5f337b42628504d1c50973c034f4ed"/></dir><dir name="Email"><file name="Identity.php" hash="908037afb65b5066d380b03a80f7748a"/><file name="Method.php" hash="d4b0738a17e9c770f0c5435fe59bbc7e"/><file name="Smtpauth.php" hash="bef983d226b9c0e470ef9f0d23ba5e3d"/><file name="Template.php" hash="9cc5ca8efe618348b449ff4a42c3cce4"/></dir><file name="Enabledisable.php" hash="6d50a7da1c6c6c55f66fe4ceab7fd4b2"/><file name="Frequency.php" hash="cfc3c90613f333143f5488b53f040bfb"/><file name="Language.php" hash="bf540f4cc480f5a478ea7d16fc2510ca"/><dir name="Locale"><file name="Country.php" hash="6cc27e0b99ad2d100335ed8ff220179f"/><dir name="Currency"><file name="All.php" hash="c621e9537421ad3a5986170b542f287a"/></dir><file name="Currency.php" hash="2c590992e6658d27c4c746dff4c55e83"/><file name="Timezone.php" hash="137d0b8dc9d57d76a487495b0f4697f0"/><file name="Weekdays.php" hash="49db3e79084f308e6cbaed760d45c40a"/></dir><file name="Locale.php" hash="80718aa78c14fa9ce605153d8893ced5"/><file name="Nooptreq.php" hash="78d9fe03e9c99afb90ddb481fad78d5e"/><dir name="Notification"><file name="Frequency.php" hash="5d6577adb5697fe99061c8fe3b3273b3"/></dir><dir name="Order"><dir name="Status"><file name="New.php" hash="74376ff01c95a8bb7ecf721deea10a60"/><file name="Newprocessing.php" hash="672a7868bcbc5a374e206988d63ddfc9"/><file name="Processing.php" hash="17d0b06593aa33938588d31de24611a9"/></dir><file name="Status.php" hash="ff2083858afe2217d74e4da59a7a4052"/></dir><dir name="Payment"><file name="Allmethods.php" hash="5cc1c4529c8a7c617978dad30c289ca6"/><file name="Allowedmethods.php" hash="e95e388cfc4083b07ea0b9b734044da3"/><file name="Allspecificcountries.php" hash="4a6a639bee9ba65c103497600db23ff2"/><file name="Cctype.php" hash="7770a1826df8bd61e841784fcfaf1584"/></dir><dir name="Price"><file name="Scope.php" hash="de2557988cf846c7ba2fa602ddd6069f"/><file name="Step.php" hash="19b48ef8e77e639879c0e98508b27275"/></dir><dir name="Product"><dir name="Options"><file name="Price.php" hash="2e2754d0156d1c3fcb6fb20e57bf5609"/><file name="Type.php" hash="ad164ed35076119a996f2eaac66d4deb"/></dir><file name="Thumbnail.php" hash="91b322da2dcf44ce44732f034c984f06"/></dir><dir name="Reports"><file name="Scope.php" hash="316309dccaab073a575463ff1cb44d2d"/></dir><dir name="Shipping"><file name="Allmethods.php" hash="b49967f8b37980f6706c43df22efe0f5"/><file name="Allowedmethods.php" hash="7c0c1eebc3150da9585427b983775800"/><file name="Allspecificcountries.php" hash="1771a395c88cf9e973984982f3fc4eae"/><file name="Flatrate.php" hash="b190103f6d43b497c8dc3bed1141e81e"/><file name="Tablerate.php" hash="e2151559b95a465b063664150474f27e"/><file name="Taxclass.php" hash="5112839da106e99597c171d91e3da2ce"/></dir><dir name="Storage"><dir name="Media"><file name="Database.php" hash="860e8d3a9dfed69093731539c21bfe88"/><file name="Storage.php" hash="e215f418e6cdb7605a748a2f13342a29"/></dir></dir><file name="Store.php" hash="426cd6aa256d1becbfab128271e4cafb"/><dir name="Tax"><dir name="Apply"><file name="On.php" hash="462a71eb6c665b4cf7c25da770108ba0"/></dir><file name="Basedon.php" hash="1613d41443fe2d0cb1c996ebb6fde470"/><file name="Catalog.php" hash="d3045129852b80cb8623274d31032033"/></dir><dir name="Watermark"><file name="Position.php" hash="27a12717f5ba4ec1647f8cf1758da296"/></dir><dir name="Web"><file name="Protocol.php" hash="ecf49c52ccd1cfbedc05cbd000e53efa"/><file name="Redirect.php" hash="94bbb4b1aaeccd56f47ebb51acc8c514"/></dir><file name="Website.php" hash="cc946a86d91497e24501ac5a6fd17d47"/><file name="Yesno.php" hash="14e69c69f476500e44570d083943fcb2"/><file name="Yesnocustom.php" hash="cc558ef442cbfcff1026719a6a12648a"/></dir></dir><file name="Store.php" hash="1bab88b7774d7f4f61645783757fb164"/></dir><file name="Url.php" hash="268e0cebf0a12b9e156dad6a6ab04222"/></dir><dir name="controllers"><file name="AjaxController.php" hash="c97c24218c0693a8ec6b14b026c32513"/><dir name="Api"><file name="RoleController.php" hash="ee00787ce083dec93f014e700b0a9eda"/><file name="UserController.php" hash="91bfe8d17833e5ad73aa2db0fcfea82f"/></dir><file name="CacheController.php" hash="6356f29ef22492dd9ba2640cd6443fd4"/><dir name="Catalog"><dir name="Category"><file name="WidgetController.php" hash="4afd9f8676521b3402e850da7a3b9fbd"/></dir><file name="CategoryController.php" hash="0f852810d8785a62868f8aee31ce31ff"/><dir name="Product"><dir name="Action"><file name="AttributeController.php" hash="1848ec4f7af90a29b0d2ea83b58257fc"/></dir><file name="AttributeController.php" hash="3ef712380e2c713ac288e6d2ffa08de0"/><file name="DatafeedsController.php" hash="bd606c78f4bd4f1ab990c7960852e1d4"/><file name="GalleryController.php" hash="6abb7351b4881646985dcc46a51c2078"/><file name="GroupController.php" hash="a53273007a70478bb4611a89955bb7a4"/><file name="ReviewController.php" hash="83058cacf209f0fcead8847004de0e15"/><file name="SetController.php" hash="ea870a00b8331a70b241b9cd09449936"/><file name="WidgetController.php" hash="771d37e91f87b3343b41858ae705ee3a"/></dir><file name="ProductController.php" hash="ab56c7201c08434ab701d3de70790c48"/><file name="SearchController.php" hash="278f477d544a14426d62ca6a6ccbf160"/></dir><file name="CatalogController.php" hash="f1329fb4fa54c1577a81886cb6b8f000"/><dir name="Checkout"><file name="AgreementController.php" hash="9b4894ac536d158bcb027cbaa5974ec1"/></dir><dir name="Cms"><dir name="Block"><file name="WidgetController.php" hash="8589afede5d5f1add112bc5d12afa2c5"/></dir><file name="BlockController.php" hash="3108e04140fd44e92ed66c43b0e13329"/><dir name="Page"><file name="WidgetController.php" hash="a917e6c174517c65f126fbd1d2cbdfaa"/></dir><file name="PageController.php" hash="7c23a8b3fbf5e5e687a439ff5dbb9bc2"/><dir name="Wysiwyg"><file name="ImagesController.php" hash="af6576af29aacfed41faab40e539f798"/></dir><file name="WysiwygController.php" hash="8a3a4f3b63494fa6e60561e27c5eca94"/></dir><dir name="Customer"><dir name="Cart"><dir name="Product"><dir name="Composite"><file name="CartController.php" hash="3542ac711e4697355680f5082f78eb59"/></dir></dir></dir><file name="ConfigController.php" hash="abada385b1049a6de89a51a7d942abd7"/><file name="GroupController.php" hash="c70d70a3201802fac9b987df38de284b"/><file name="OnlineController.php" hash="5b8d63050a9233e82f278c9c3273c9e4"/><dir name="Wishlist"><dir name="Product"><dir name="Composite"><file name="WishlistController.php" hash="bd76cdd817cf5902af6080ba1a7dce00"/></dir></dir></dir></dir><file name="CustomerController.php" hash="882014461c5427dff81eb12c69adfd30"/><file name="DashboardController.php" hash="ab591a2944a8edf8fc3c53e90a44ee91"/><file name="IndexController.php" hash="72293d70e753d2d9b9f2d03ef1103e81"/><file name="JsonController.php" hash="d47f5af35d581e0ec3fe07010da06e96"/><dir name="Media"><file name="EditorController.php" hash="3bc17d2ceef67acb1630ade45b0b4a9d"/><file name="UploaderController.php" hash="98273d5ae3c5121658e55235f09d5346"/></dir><dir name="Newsletter"><file name="ProblemController.php" hash="9bd5ee48c4c9231937501a1a1b93feb2"/><file name="QueueController.php" hash="cd0aa3234cf0e815f7020ac4477e8c8c"/><file name="SubscriberController.php" hash="485662ddbf90ba172250b50d7dd5cfa2"/><file name="TemplateController.php" hash="f001a04bf7d018bcba96704c9351b044"/></dir><file name="NotificationController.php" hash="8eac077b5b274ab2f7a2f86867d4052f"/><dir name="Permissions"><file name="RoleController.php" hash="b7837dcf88a839a6aec6d7a358f1fc3a"/><file name="UserController.php" hash="e3aec3d2c8415a3673b4382a2c271498"/></dir><dir name="Poll"><file name="AnswerController.php" hash="420a1b7fb7077c8832dd7140139e23bc"/></dir><file name="PollController.php" hash="4a92a7291eb88f0af7b64e4bdf54a849"/><dir name="Promo"><file name="CatalogController.php" hash="640cf817708691b2c0984c416d0a147e"/><file name="QuoteController.php" hash="3d854c6e78bd7ebecdb2c755e73c0465"/><file name="WidgetController.php" hash="0951eb37fb6d103b100eec2805490f10"/></dir><file name="PromoController.php" hash="9bdbcb30f83c54fbb23d51a9a3efd992"/><file name="RatingController.php" hash="43635925aaa3b23d774250e67f889687"/><dir name="Report"><file name="CustomerController.php" hash="8415dd94dba840c55039b47871108505"/><file name="ProductController.php" hash="cf07c4fc1e77d67cdeee562ce55646a1"/><file name="ReviewController.php" hash="4ec9c4f1b79ba4aa27f33214ffe4c39b"/><file name="SalesController.php" hash="fd238e1ab42b7465108597628ec49c35"/><file name="ShopcartController.php" hash="3a00a057320b2b2702d559c6c9ffbcf2"/><file name="StatisticsController.php" hash="13c17f74c3c1af1b4da9957f34ebb35e"/><file name="TagController.php" hash="98b7579e022082038b9d3d0fc24f2090"/></dir><file name="ReportController.php" hash="ba9be2559533aca019de844c60f8f444"/><dir name="Rss"><file name="CatalogController.php" hash="d96762a0d60415a78b2ed221b1b12d84"/><file name="OrderController.php" hash="3238141ab1a010221252dd782178c54b"/></dir><dir name="Sales"><dir name="Billing"><file name="AgreementController.php" hash="6af5bdf5f1001dcfb1e107f629e2b4e1"/></dir><file name="CreditmemoController.php" hash="97c73525a7b6db2c141aeffc5f82c633"/><file name="InvoiceController.php" hash="12b9bc5e0e248052f65b8d66cc178ee1"/><dir name="Order"><file name="CreateController.php" hash="76a01aaecf5cbd742fdf5c81ec424324"/><file name="CreditmemoController.php" hash="800adc7f7f0bec9b394bb3decdb6a660"/><file name="EditController.php" hash="905d1ddf247dbc77f279dc018a91c1d7"/><file name="InvoiceController.php" hash="79b31f2adf67c38c5f0fc0e4883b0554"/><file name="ShipmentController.php" hash="0b1213170ee4418d631d32722cf990f3"/><file name="StatusController.php" hash="26c2c30cef92b173d889351fcdfb6371"/><dir name="View"><file name="GiftmessageController.php" hash="0bcda2b58e1a4d8e4974a248685b9356"/></dir></dir><file name="OrderController.php" hash="e7a85adf515d06739eca7dc430756723"/><dir name="Recurring"><file name="ProfileController.php" hash="f00832de963380b9536d1e9b2c5cc396"/></dir><file name="ShipmentController.php" hash="9d651f012ada8f2419f7eb2b209da5eb"/><file name="TransactionsController.php" hash="a4aa9cf9267962337ba3ab076d9056eb"/></dir><file name="SalesController.php" hash="0a62f7c0f973cbdd49536d88e863a0a6"/><file name="SitemapController.php" hash="ff25fecd6479b518ee28c8f2b0ada0dc"/><file name="SurveyController.php" hash="0464dc07f74185162c664014e621be1e"/><dir name="System"><file name="AccountController.php" hash="5c7b8384d78aadfd4e5b5a3e823bed4b"/><file name="BackupController.php" hash="f7beda3c1fe1aad1e6ed72ccd8862f92"/><file name="CacheController.php" hash="a424633376f6c588ce195277abe44d74"/><dir name="Config"><dir name="System"><file name="StorageController.php" hash="17824c2fb28239d70e0f8b2ec039927d"/></dir></dir><file name="ConfigController.php" hash="479b11235f410dde7d6a1b3e68bb59cb"/><dir name="Convert"><file name="GuiController.php" hash="cc7245b6a6ccecfe4cfaafd3a3cc3049"/><file name="ProfileController.php" hash="fde3d8fd6fca84ae9111b273402be5c0"/></dir><file name="CurrencyController.php" hash="00053f1c29f77d85dfcc37615f91a57a"/><file name="DesignController.php" hash="60d921d11cc4ea88c59ebe2c071f4aff"/><dir name="Email"><file name="TemplateController.php" hash="d5dac2bf1feede9be0915d91dc3dc6e3"/></dir><file name="StoreController.php" hash="a520738f1e9b97b1febfae271ed31b72"/><file name="VariableController.php" hash="25a62fd72d1445d05528871e273e6880"/></dir><file name="SystemController.php" hash="2ae418c11d6c331f50cb99cc930e18d8"/><file name="TagController.php" hash="f67f8a6abfc2af144cfcd720f0f36fe3"/><dir name="Tax"><dir name="Class"><file name="CustomerController.php" hash="b8bec24cd35862b0f33389ff29d73f20"/><file name="ProductController.php" hash="7fa9ba7c464c48a387ea0c273d3aa82a"/></dir><file name="ClassController.php" hash="cfac77635d3b312659afda61445a3fec"/><file name="RateController.php" hash="b70c9298279afbeadb9f654304649595"/><file name="RuleController.php" hash="7cf0cc2eacb5415f196b78882ea367fa"/></dir><file name="UrlrewriteController.php" hash="397ed85c4f64b7c117094cfcaa65e705"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0d7919f1ffba84ba2ad012fe71894094"/><file name="config.xml" hash="cee0ec81557488c665e7758fa73eb3aa"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Adminhtml.csv" hash="92e9cfaee5140c807e6397ef7b3f4090"/></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.1.0</min><max>1.7.0.0</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1</min><max>1.52</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.6.0.0</min><max>1.7.0.0</max></package><package><name>Lib_LinLibertineFont</name><channel>community</channel><min>2.8.14.0</min><max>2.9.0.0</max></package><package><name>Lib_Js_TinyMCE</name><channel>community</channel><min>3.3.7.0</min><max>3.3.8.0</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Adminhtml</name>
4
+ <version>1.6.2.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Magento Administration Panel</summary>
10
  <description>Magento Administration Panel</description>
11
+ <notes>1.6.2.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2012-01-11</date>
14
+ <time>11:50:31</time>
15
+ <contents><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><file name="Abstract.php" hash="959d5450a89703174f8534e1142346ff"/><dir name="Api"><file name="Buttons.php" hash="9803f746c5dffc14b7d6fcbdfd53441a"/><file name="Editroles.php" hash="0313f2dba7884b7463ad9652e95af5b5"/><file name="Edituser.php" hash="95a065f05486e7fa7a18d70a1d5060e9"/><dir name="Grid"><file name="Role.php" hash="c82eeace2e32a274b662fdd3d48c3aec"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="ca4523101f25c7385c2d85b3680b60f4"/></dir></dir><file name="Role.php" hash="e6bfe26ca29919e452f8a43e61beef4f"/><file name="Roles.php" hash="e32f3a829c68d03b4f361c5b07c69312"/><dir name="Tab"><file name="Roleinfo.php" hash="984aedd94121d84c913a4714832d81d2"/><file name="Rolesedit.php" hash="adb7c38fb9e689e17ca62e8789c70c57"/><file name="Rolesusers.php" hash="ea6ca741125bea1ad54c14d273725f86"/><file name="Userroles.php" hash="6ab27c7e4d088dc4385c0cb5e1bb9a0c"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="dee912351dd7ef5cfa652bcd4affe850"/><dir name="Tab"><file name="Main.php" hash="a65c570ea780b0631dd3aa10da98ff48"/><file name="Roles.php" hash="ab27c3a8090e9e041de6f11efc19dcb1"/></dir><file name="Tabs.php" hash="c326793a17ef382904f215f7f87bcd29"/></dir><file name="Edit.php" hash="660f300cc476835bc2b3ba8c7681edce"/><file name="Grid.php" hash="2ffaa3ac56591819e82f7a6730ebaf95"/></dir><file name="User.php" hash="78d7e36eb3364e3cdc5fe177f4cd10ad"/><file name="Users.php" hash="b1f08b6ecb90694a465efcc7429f11f0"/></dir><dir name="Backup"><file name="Grid.php" hash="48096f362c6ddbb4b868f1e7119b7aaf"/></dir><file name="Backup.php" hash="7c92eb24507b426d76b6d6b11b33a98e"/><dir name="Cache"><file name="Additional.php" hash="8df37e6b65f7a1652ee5d4a34f409dc1"/><file name="Grid.php" hash="6bdcec783371c0d4acc227ac1ccf0890"/><file name="Notifications.php" hash="1c0e3a854b94b6e0dc8274dea7ace851"/></dir><file name="Cache.php" hash="3246cda4df318fe7fb16bd819d30b48d"/><dir name="Catalog"><dir name="Category"><file name="Abstract.php" hash="bbb16940dbd42e3f8420f9c69e5f89fa"/><dir name="Checkboxes"><file name="Tree.php" hash="416d40bbc521153d4bd6ef070cea7289"/></dir><dir name="Edit"><file name="Form.php" hash="9ffda5fad574bd11cb88b5f1fd08bb98"/></dir><file name="Edit.php" hash="613718ca975b89e73e054400a43803fc"/><dir name="Helper"><file name="Image.php" hash="74edd044d6daaee23ade795b511a4a84"/><file name="Pricestep.php" hash="de4f7215eea8b6e4798229c0ed567817"/><dir name="Sortby"><file name="Available.php" hash="b665aa44d983c4b043eae65f7bf3459b"/><file name="Default.php" hash="672be91268f783442628328f67602460"/></dir></dir><dir name="Tab"><file name="Attributes.php" hash="acd7e56d734aa5ee7f26d19c7fa7c95c"/><file name="Design.php" hash="7b446156789f64b6c0628c909db6b728"/><file name="General.php" hash="83efdcf3d7176c02e1c1483eed6a73d1"/><file name="Product.php" hash="c62984bddfe4c0c4b61bf6819dabb692"/></dir><file name="Tabs.php" hash="757df5ff5f8f33b4120a6ccb97e188bf"/><file name="Tree.php" hash="d6d235307f38694ecda33a86d895fc3d"/><dir name="Widget"><file name="Chooser.php" hash="0cfc443a10af33aedf9deed2c4adffc5"/></dir></dir><dir name="Form"><dir name="Renderer"><dir name="Attribute"><file name="Urlkey.php" hash="c52b3584a5ea337db6f48f4fa984c72e"/></dir><dir name="Config"><file name="DateFieldsOrder.php" hash="51ba2edf2928fcf58e4cb890ecb03acf"/><file name="YearRange.php" hash="1438b20f92cc708e45aa895a9c3125d8"/></dir><dir name="Fieldset"><file name="Element.php" hash="39fb78eb3695cbe6f47154261241487d"/></dir></dir></dir><file name="Form.php" hash="fa260baead5a98f813b8e76e81fa9ec6"/><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="f0027f32c453a490caab8ec4beb9ab40"/></dir><file name="Wysiwyg.php" hash="b29aaa097a6dea67cc35c93cf3da8331"/></dir></dir><dir name="Product"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="0c60c2ad6493a81e7c9f10d944e1e7a8"/><dir name="Tab"><file name="Front.php" hash="30c8a877895e5c8d05c568b529e95ffe"/><file name="Main.php" hash="7e9a826d238089193b739635659966a9"/><file name="Options.php" hash="2a70d107ff8fc5257db6827bc47d021a"/><file name="System.php" hash="b4898651690e60dea0ff61ae2e71df4f"/></dir><file name="Tabs.php" hash="a1e3717dae0330aba0025424c6605718"/></dir><file name="Edit.php" hash="21f9bef47aff976ceda6aa3a8a088047"/><file name="Grid.php" hash="965ce7a5a30b5525261332a20fe8dd83"/><dir name="New"><dir name="Product"><file name="Attributes.php" hash="f96c03e38a77529edc3715de98afbb84"/><file name="Created.php" hash="ed389a52d71c4e6088d122e24c2a695b"/></dir></dir><dir name="Set"><file name="Grid.php" hash="f7dbfb0361d66005396216297c1d0cf2"/><dir name="Main"><file name="Formattribute.php" hash="ddd2578cd02ee55adb61daa4e0158f55"/><file name="Formgroup.php" hash="bfbe881c8d9c64eea0bcdb8e422f155b"/><file name="Formset.php" hash="f80e5ee8ae79dff644a526114ed07b08"/><dir name="Tree"><file name="Attribute.php" hash="cd2807917a151d3e3acdb9c8bbabf3ae"/><file name="Group.php" hash="507773f8e977cfeb09b9a958a5af4795"/></dir></dir><file name="Main.php" hash="e682310337a0549f60f5c03249c70816"/><dir name="Toolbar"><file name="Add.php" hash="07e258a22e38b9ff90ed7164f6d9c403"/><dir name="Main"><file name="Filter.php" hash="44b2dc73f51a40ac70b1ce113aacc978"/></dir><file name="Main.php" hash="58fcd72d5a95e8ad61477312a4e24cd8"/></dir></dir></dir><file name="Attribute.php" hash="3d762c3ceb2a79b27f82e27e4376f489"/><dir name="Composite"><file name="Configure.php" hash="573ecd72d5fbadd64ce987e575ba697b"/><file name="Error.php" hash="f0471d13ee4bca05d6faa4af441f1f7a"/><dir name="Fieldset"><file name="Configurable.php" hash="5156d57750f4c24f100baa784615e96e"/><file name="Grouped.php" hash="8b2796ad9c6c96e55b8043c51c119b13"/><file name="Options.php" hash="f7aca489187e86ce549d3bb84cdb6653"/><file name="Qty.php" hash="fabf7294aed88da47f822de69de98305"/></dir><file name="Fieldset.php" hash="f5d5668d8766c4026d896272da17b22a"/><dir name="Update"><file name="Result.php" hash="75dbc142bd1c6475e3472588e8b26c0d"/></dir></dir><file name="Created.php" hash="6a915a5ec07996e7f8949e1d9a969bb6"/><dir name="Edit"><dir name="Action"><dir name="Attribute"><dir name="Tab"><file name="Attributes.php" hash="0061414afc4057ebaf206c17b67a6037"/><file name="Inventory.php" hash="cf859b71088c79308485c9a610d14558"/><file name="Websites.php" hash="d4306eaba23a8da97de22a77801126d0"/></dir><file name="Tabs.php" hash="34493b75029bf6767078a956f0198196"/></dir><file name="Attribute.php" hash="145a8a6c9992d845c8d317e2b56eddbc"/></dir><file name="Js.php" hash="8f33bbfe099caa26e0743203b106e464"/><dir name="Tab"><dir name="Ajax"><file name="Serializer.php" hash="89b3d87718f3de0696545b05695f4131"/></dir><dir name="Alerts"><file name="Price.php" hash="608e34c203667ec25b67093926f02af7"/><file name="Stock.php" hash="e3e2bf9b21dd18209ef1c9f7c13ab8d7"/></dir><file name="Alerts.php" hash="598904c0feb4c29d1d526ecb82ba397c"/><dir name="Attributes"><file name="Create.php" hash="3b7e412b57239feadafe896f8db7df6d"/></dir><file name="Attributes.php" hash="299ca718af18387e2e07c12b52854cd6"/><file name="Categories.php" hash="dab132f6bd4ff94bccb5807bd56bcca1"/><file name="Crosssell.php" hash="fabe65c55f729c39df252d71df624af3"/><file name="Inventory.php" hash="aa0292f960cb763a2263d467e3223b8f"/><dir name="Options"><file name="Option.php" hash="e514062507954d7363709d202b0ed4fb"/><dir name="Type"><file name="Abstract.php" hash="31ef146c3ee91e644ea1bb05375aff68"/><file name="Date.php" hash="6e7b072f1ac6d38744b5d89486de51f5"/><file name="File.php" hash="a4208e45f0c028bc7054291dd00de0b5"/><file name="Select.php" hash="3781a1e4d19f477699a2d3d7f4e1e0c1"/><file name="Text.php" hash="ecc901524c59d723681cd99cf16c36f7"/></dir></dir><file name="Options.php" hash="b221f9ee92ab984f9b234f2b675d1402"/><dir name="Price"><file name="Recurring.php" hash="91dd731a33db45c4cdae7614e19f7e59"/><file name="Tier.php" hash="7dc8f76720c67510d201927ae73e96f6"/></dir><file name="Price.php" hash="28d475cde013f99f1fd9c0a6a9d21b0d"/><file name="Related.php" hash="240c1561067320887de0d4812f71830e"/><file name="Reviews.php" hash="d1a9f8a53d9013e0081e8077177b83cc"/><file name="Settings.php" hash="6bb23229fd9a4b5376c0449e90f4ae78"/><dir name="Super"><dir name="Config"><dir name="Grid"><dir name="Filter"><file name="Inventory.php" hash="d63ddd314c0e782b09b0918ede2b5afb"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="e651737dfc02cdfe10a9a5bf5feb51dd"/><file name="Inventory.php" hash="d84957630e46f692a6d529acc936f8bf"/></dir></dir><file name="Grid.php" hash="4bcdb33fc77e836c834736f84c39968f"/><file name="Simple.php" hash="4423c9f434f0cb9a96800e6f7f4f4fbb"/></dir><file name="Config.php" hash="3be00cf3f3d6f5ea75d03dde8dded58f"/><file name="Group.php" hash="31d8f2892ad77c126bcdd0f42c4ddb2c"/><file name="Settings.php" hash="a54910224422e743659ef1ba5275e51b"/></dir><dir name="Tag"><file name="Customer.php" hash="f69d4f89d3ea6f3806e5ac832fb6fcfe"/></dir><file name="Tag.php" hash="fdb2a54bda0c5012cec78f458989441d"/><file name="Upsell.php" hash="03f7a2e05fd62474c6cd2b3a593e730a"/><file name="Websites.php" hash="19e8f24f0fd654d79b84666702572ff6"/></dir><dir name="Tabs"><file name="Configurable.php" hash="e0f4c7ca6bf1f2f5358c034cf3ef7897"/><file name="Grouped.php" hash="09bce3ca3ee4049bc7f84681b6c95af7"/></dir><file name="Tabs.php" hash="99c15bb1d1e13562cc5b4abda4461258"/></dir><file name="Edit.php" hash="e40973afab12ef780dd763d6cdbc94f6"/><dir name="Frontend"><dir name="Product"><file name="Watermark.php" hash="ba4ebc2847131cb522f8478d9dc39120"/></dir></dir><file name="Grid.php" hash="411c62ca3f757893eb57d9487c0f5697"/><dir name="Helper"><dir name="Form"><file name="Apply.php" hash="5abd9f76a4d0f06784e82bd03ad5a5bf"/><file name="Boolean.php" hash="b4d6db257f494482117c712204e292c6"/><file name="Config.php" hash="2f6ab03ecec5ea6b7e2e3ac551d42cd1"/><dir name="Gallery"><file name="Content.php" hash="19cde7358f265fb3e27dd1cda450ebae"/></dir><file name="Gallery.php" hash="fd046d5be8fd098db761dd4b11e6a4f1"/><file name="Image.php" hash="50b1064ed0fbbf07b36f7c9e3abde2a8"/><dir name="Msrp"><file name="Enabled.php" hash="319fe814e98ebe15476c1dcd95508bb1"/><file name="Price.php" hash="947ceb8a8815727301f923183a46aa10"/></dir><file name="Price.php" hash="bc53fcfa475e8078c7265d795f6271d5"/></dir></dir><file name="Price.php" hash="03a94b2618d02df97aa24a4f889f440e"/><dir name="Widget"><dir name="Chooser"><file name="Container.php" hash="6b0803bcdd2428aed02f9f5f6b847180"/></dir><file name="Chooser.php" hash="7e004c727b68b1d14f56fe13f55cf4f8"/></dir></dir><file name="Product.php" hash="bd6b58b1aa2cb6ecad827fd8e504cb9c"/><dir name="Search"><dir name="Edit"><file name="Form.php" hash="295dde02e516e3fb09379b5d6d949ba3"/></dir><file name="Edit.php" hash="3af9e8c2969c1da0c1e5b6c56d3d3fa4"/><file name="Grid.php" hash="7c7391fcf3f61dbea6100a1fa4092d37"/></dir><file name="Search.php" hash="bba43a3f2794920723723ce99dd29098"/></dir><file name="Catalog.php" hash="751faa106e82bf083537229834fb9964"/><dir name="Checkout"><dir name="Agreement"><dir name="Edit"><file name="Form.php" hash="4c894e87cf97fc92544af52513d578ed"/></dir><file name="Edit.php" hash="0ca37a170c2d43e45bdfdf7849825fc3"/><file name="Grid.php" hash="bcc30afb1d18e47fa503b6afa6aa5f36"/></dir><file name="Agreement.php" hash="613326c92f5ea6a3c61d444dbfe64c9d"/></dir><dir name="Cms"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="5a5ee1e82555c30ae572bbe59f933fb0"/></dir><file name="Edit.php" hash="d5a50d1139e2a729e85577b95294106c"/><file name="Grid.php" hash="3931004fd26b6dd0eb26c7c353be8d6c"/><dir name="Widget"><file name="Chooser.php" hash="8801566412947b9fee08628080006e84"/></dir></dir><file name="Block.php" hash="5daaa6290f524919903d54d1f8fc2453"/><dir name="Page"><dir name="Edit"><file name="Form.php" hash="1a60a92ebf34a2f223b8fd0373d1f5ac"/><dir name="Tab"><file name="Content.php" hash="fc9e393c9656b90186fbaf074ed314bd"/><file name="Design.php" hash="56fe2e9fa574b0fa074452793154d9f6"/><file name="Main.php" hash="17ea1bbff0fd2d06dd83e31c61a96aac"/><file name="Meta.php" hash="08e6e3ea0e6a193aeaa69c28d2658c12"/></dir><file name="Tabs.php" hash="19150d990df5d6c66628dfb8abb692d9"/></dir><file name="Edit.php" hash="4bf6fdceb4d1c40af8e3061ca335b3b0"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="01bf30a87a7c945423dcff27995264eb"/></dir></dir><file name="Grid.php" hash="5eb876f870b8dac338dc61e5f3293f09"/><dir name="Widget"><file name="Chooser.php" hash="f3502b5c8be0a5eed40475776d654c79"/></dir></dir><file name="Page.php" hash="8d88976fed2fba5a2e79fc30a8265fb3"/><dir name="Wysiwyg"><dir name="Images"><dir name="Content"><file name="Files.php" hash="2a9f276070b12d3b6bfae84ff2bf18e7"/><file name="Newfolder.php" hash="b3ddc270c472615a09a28814163161ee"/><file name="Uploader.php" hash="c79278de0034db8ba84a75a511e32127"/></dir><file name="Content.php" hash="4f33310c22d47435254e8c666fa9d747"/><file name="Tree.php" hash="9ec1a093f9924d1f3a9ff95f04168862"/></dir></dir></dir><dir name="Customer"><dir name="Edit"><file name="Form.php" hash="7946a19e0900cba768daa2f18a1223af"/><dir name="Renderer"><file name="Newpass.php" hash="37a04208b591a4223df51ce8b1418bab"/><file name="Region.php" hash="80b5f71516077150c9ca78f163205347"/></dir><dir name="Tab"><file name="Account.php" hash="2dfc10363d666e31f986a34959d7af6b"/><file name="Addresses.php" hash="a400802f8da37a3183324defa72b411c"/><file name="Cart.php" hash="da607ca3f458c2f9744512ee054a0a4c"/><file name="Carts.php" hash="3f7d7794c95c44c1d855698094f5e7ec"/><dir name="Newsletter"><dir name="Grid"><dir name="Filter"><file name="Status.php" hash="dfa1c2c548a63e647fe6b2f3a51b73a6"/></dir><dir name="Renderer"><file name="Action.php" hash="5350a04235e34fdda005ed4d77eb59dc"/><file name="Status.php" hash="b4bcd547fbee256952e8a517d5efebfa"/></dir></dir><file name="Grid.php" hash="a303934b062ef34d5cfd33f4df213016"/></dir><file name="Newsletter.php" hash="51ec0adefdd252591bf5e904c0f70442"/><file name="Orders.php" hash="0201bfb0e7c93fa43cfde73ed2416ea7"/><file name="Reviews.php" hash="52490619b7a350f7b5b1edaa90f9643a"/><file name="Tag.php" hash="8a916df3f6c8f71961dbcc913adcd9a8"/><file name="Tags.php" hash="28007ddc203b930a384933ee9c455783"/><dir name="View"><file name="Accordion.php" hash="387935daa87698a1659ad576932f30bd"/><file name="Cart.php" hash="ff046b431c0b5177f9fbb1b635397c11"/><dir name="Grid"><dir name="Renderer"><file name="Item.php" hash="e17d9df2b3051f7877dc393456f15a1d"/></dir></dir><file name="Orders.php" hash="9a5be4d75aa5c2d45b5ba23f073a535e"/><file name="Sales.php" hash="d48de88da7a88178ca51568c23037a54"/><file name="Wishlist.php" hash="755e5b09fb911b98d2adf3bc3b20585b"/></dir><file name="View.php" hash="eb2f2fcf9603e1dc18e7430048d23c74"/><dir name="Wishlist"><dir name="Grid"><dir name="Renderer"><file name="Description.php" hash="cd7275401507d750fdcf703d9b57df70"/></dir></dir></dir><file name="Wishlist.php" hash="ed453fc9e322055bb1e79b7ddfd08cc5"/></dir><file name="Tabs.php" hash="03f79ab107a7ecdbdbbc35a86d64110a"/></dir><file name="Edit.php" hash="949d37a74474c332709e2a6dba03dcda"/><dir name="Form"><dir name="Element"><file name="Boolean.php" hash="c5fff9bcf58db153d227a7dbc6c37c6f"/><file name="File.php" hash="532694620f5233117231c97499bf837d"/><file name="Image.php" hash="c8d9c39f2ceb72af6be7dd3dd06f583a"/></dir></dir><dir name="Grid"><dir name="Filter"><file name="Country.php" hash="9ab92ffd771c427d2092e0b5e01ccbe4"/></dir><dir name="Renderer"><file name="Multiaction.php" hash="e311e516fc8ee5cd22da2315414a7ca5"/></dir></dir><file name="Grid.php" hash="c70dea5f12a0ca0694ac4f3513bd07a9"/><dir name="Group"><dir name="Edit"><file name="Form.php" hash="f34800895686a4979d5fc5fb8a2a6f02"/></dir><file name="Edit.php" hash="70173dcdb73898c117908cd7c288be49"/><file name="Grid.php" hash="dc91a319b14f3a4e7022d5b653f6c37c"/></dir><file name="Group.php" hash="d04ade2348cec3682938238e41ce080a"/><dir name="Online"><file name="Filter.php" hash="67aac90543308a5604e34fb3a0b21194"/><dir name="Grid"><dir name="Renderer"><file name="Ip.php" hash="722842b9a7dd08e92b3a12ddd87df908"/><file name="Type.php" hash="9244d256cdf8420be847a53b62c0bb51"/><file name="Url.php" hash="df4443f7ea12bb8510bb14c0092a9a55"/></dir></dir><file name="Grid.php" hash="cdda020511873b9226f9e8779fc68941"/></dir><file name="Online.php" hash="41b3e8633defe060e4dd5db0c5560549"/></dir><file name="Customer.php" hash="25da883c3a15db8ae70cb57a40581e79"/><dir name="Dashboard"><file name="Abstract.php" hash="ec4c7fff0fd026f083ffdff8988b60f1"/><file name="Bar.php" hash="dda990bf7abeedce4bc0e002506e3c79"/><file name="Diagrams.php" hash="9e9d8c656930f3fd90fb381889a25eee"/><file name="Graph.php" hash="4ac225346da28091ed157b1e4ed5b897"/><file name="Grid.php" hash="4bcadd2a91784eb5b71a1e46f104539d"/><file name="Grids.php" hash="893a3bba5d7c7e738e6cecc3267a536b"/><dir name="Orders"><file name="Grid.php" hash="df37292dd1fef5e887c3363ba2fc3ee7"/></dir><file name="Sales.php" hash="15682c157b039d24b9cb1fccfec27871"/><dir name="Searches"><file name="Last.php" hash="f0ffe2374f0a168114092aed9094cecc"/><dir name="Renderer"><file name="Searchquery.php" hash="9a8e83051d56c35c02f1e3ca90eb9ae9"/></dir><file name="Top.php" hash="2062271298d8490609c3602b5558ea11"/></dir><dir name="Tab"><file name="Amounts.php" hash="1c78a563bc5fbd0e6c57892160a179d4"/><dir name="Customers"><file name="Most.php" hash="3093d14b5f6aaf836c94d0f41d8bb0b7"/><file name="Newest.php" hash="143c40d567e4a8d6183f63fb03c7400a"/></dir><file name="Orders.php" hash="7015298805e214afc063bf8a3ce58ff6"/><dir name="Products"><file name="Ordered.php" hash="81b4ef224c84896821c5c9e995e2341d"/><file name="Viewed.php" hash="279b99b2a7f80dd86a65cf976ef8ada7"/></dir></dir><file name="Totals.php" hash="dc08936e5fb27a0cab490d8575bb6485"/></dir><file name="Dashboard.php" hash="910272fb883563b854de9f5e875baa00"/><file name="Denied.php" hash="71e69a53a63f79a3d3d46329dd9af80b"/><dir name="Html"><file name="Date.php" hash="1d5ccd5c1b68f4e0456224de6c38b9be"/><file name="Select.php" hash="fb11db7cb5fc1daa2405c0e265b26eb6"/></dir><dir name="Media"><file name="Editor.php" hash="a9d99ba9866946aad9d12aa74b8d31fe"/><file name="Uploader.php" hash="29e5faee98a4862af7a8d0c2544712ba"/></dir><file name="Messages.php" hash="796ed3838a874121f6270f81246709b3"/><dir name="Newsletter"><dir name="Problem"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="06f642b38c0031e03e354caf30c452c3"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="9e49bbcd44f1cc4d9b5c5f0cb5855ac9"/></dir></dir><file name="Grid.php" hash="ef51b5f6ed1b45c5c5807974e2503bff"/></dir><file name="Problem.php" hash="afb72c1ac41d28e04f80cb8612359ac1"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="248405c149e1e9565f72b8bb7bf1454f"/></dir><file name="Edit.php" hash="1c0e77878cabe80b57e6822e15ada874"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="38f50fa6181fee4d51eb7942f64412b5"/></dir></dir><file name="Grid.php" hash="254c39e66541fc1a9427d78719c25721"/><dir name="Preview"><file name="Form.php" hash="b0b1fc24d0aa62c8ca209b7e63e75cf3"/></dir><file name="Preview.php" hash="8cd282b30abe3d65f4cf734a5b368cdc"/></dir><file name="Queue.php" hash="572ea06d384e7033823edb43ef79226b"/><dir name="Subscriber"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="c28a76fcc7a0d6987ce74b71dde65613"/><file name="Website.php" hash="90bade8c014dd2bcab48eeb7977c5570"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="f1c736850234e943a26713d1579c9e6d"/></dir></dir><file name="Grid.php" hash="c3052298101b0bba21b3aab231379502"/></dir><file name="Subscriber.php" hash="61c0009d180f94a37ac19f2d60814779"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="812d340fbe114c7167afe7f77403581f"/></dir><file name="Edit.php" hash="aaf36bb38d23a94c949c9d4e2f1b01b5"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="3d54ba9b5eb1397070f1e198a1662d9b"/><file name="Sender.php" hash="b0e37e6371073d7491a61eaf944698b1"/></dir></dir><file name="Grid.php" hash="1de4e93fdc432d9cfb3ee13ff50412a3"/><dir name="Preview"><file name="Form.php" hash="d1912fd60a8ed8b47436efe0be374a46"/></dir><file name="Preview.php" hash="88fa0a132605eaf15d90ae08db3bc290"/></dir><file name="Template.php" hash="35602dee6622a2c2b16a4054d5b7156d"/></dir><dir name="Notification"><file name="Baseurl.php" hash="54fa97b123e66e821195010aab70a7d1"/><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="281d146623c963f97078c9b20f4124fd"/><file name="Notice.php" hash="f72341b5a0e23e230fb50d73cc256707"/><file name="Severity.php" hash="a6ce49a89ceb2ec3f3a4a1c1bc7a3f44"/></dir></dir><file name="Grid.php" hash="77b0a942ef51a8ce54c218dac7f43359"/><file name="Inbox.php" hash="fae62ac2b2dafe73293a2a03ad5ec4b5"/><file name="Security.php" hash="4c31d6cc7a1e7954489fc9de95c905ac"/><file name="Survey.php" hash="cd67440dd09f6f22525322acc6183cf7"/><file name="Toolbar.php" hash="680c245c1659d9c403caad233e6359e6"/><file name="Window.php" hash="45214936295b3afc8341c20c85e73c99"/></dir><dir name="Page"><file name="Footer.php" hash="681dc656228f5b30b195946ed8283e9c"/><file name="Head.php" hash="94241bdbdb2a08d065d26aafa506b290"/><file name="Header.php" hash="9b11f230941c7aec5f6a37f9358b611f"/><file name="Menu.php" hash="bb1d750a01fd2805915ca297fb7fd754"/><file name="Notices.php" hash="ba54bad3750bd3b2ad11e4cd90cc0b17"/></dir><file name="Page.php" hash="666f884b2afb249fb59eceee548a2ee9"/><dir name="Permissions"><file name="Buttons.php" hash="a1dcc83ecc9e792a32001cb4d9f09663"/><file name="Editroles.php" hash="57deb0a20340b6c0f2cf9056513a1663"/><file name="Edituser.php" hash="16bbd6ab48ce0b2324e4d0386dd8370a"/><dir name="Grid"><file name="Role.php" hash="a0b562342a4247d2ee04a4104a411d15"/><file name="User.php" hash="0298a789bef86edc1d609716cca4a373"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="f64ceeccd080c9dba397072d4bdf9881"/></dir></dir><file name="Role.php" hash="068a210a5260ea8c403d0418c7b94683"/><file name="Roles.php" hash="1aa859580066f83500eb31100904795a"/><dir name="Tab"><file name="Roleinfo.php" hash="865c60892ade609a8132c5cbf9200d37"/><file name="Rolesedit.php" hash="de25b45cbb0bb49ad730d4cc8c6e1eb9"/><file name="Rolesusers.php" hash="0c46d6b2c7f5a9c082df1de204408a60"/><file name="Useredit.php" hash="920cfe32fea522fcf37b4d9b0640edad"/><file name="Userroles.php" hash="2b248de02644bfe94f22427e337ee21e"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="d664e36f5a815c352cfc684d6de7d4e2"/><dir name="Tab"><file name="Main.php" hash="a2a37efa9ba96b1bb34d4660e952c5bb"/><file name="Roles.php" hash="d73710b40f3c478828d6307570f1fc96"/></dir><file name="Tabs.php" hash="c6a5fd645a9c70cc07d02b69ee765c4d"/></dir><file name="Edit.php" hash="c1056ba52f46a269f000ed286f43d519"/><file name="Grid.php" hash="2ad141c04f79d3e54bcdf53f956e1b08"/></dir><file name="User.php" hash="32bfdac90c604007e88087d21f9b1a86"/><file name="Usernroles.php" hash="b22da9edba5522d8536d4bd95852291a"/><file name="Users.php" hash="86531e0b5be8a89747f4725acdb0da3d"/></dir><dir name="Poll"><dir name="Answer"><dir name="Edit"><file name="Form.php" hash="ea48255bc733f66cc49fc9608259e4fe"/></dir><file name="Edit.php" hash="4a8c47fe46f1fffe4766b006b1a67b3e"/></dir><dir name="Edit"><file name="Form.php" hash="9f1aef1a95dca23bc058b4e673204303"/><dir name="Tab"><dir name="Answers"><file name="Form.php" hash="29bc462fc3ebf6426e0e3828ab2d45c0"/><file name="Grid.php" hash="f3e035991a3babe6ca93a640b7b29563"/><file name="List.php" hash="7866133bab2bcf7106f0295624e80b8c"/></dir><file name="Answers.php" hash="8bf553b819a4b084bb7f233090334ccf"/><file name="Form.php" hash="2bbb0010c587137ebb8dc6b7e0c6a284"/></dir><file name="Tabs.php" hash="b955340cc96a75e5039b6242b2e2e7e0"/></dir><file name="Edit.php" hash="ddba7a7d2126a0c3380a43f0f5ef9e17"/><file name="Grid.php" hash="4842ecd9bef63b5d000f6093366cac91"/><file name="Poll.php" hash="8b327195b0c6a4b05680d3c651846d9a"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><file name="Form.php" hash="d81e6d8b0cf3cd81c689aa9aae21b076"/><file name="Js.php" hash="e63d4881052eb49b6fe5f9fc3fc12206"/><dir name="Tab"><file name="Actions.php" hash="14f5b8f1370a1299a3fcb80076158b98"/><file name="Conditions.php" hash="bb5ef26450fe8635d91b9ccc9196c579"/><file name="Main.php" hash="618ab5c0c5e50a752c29b6d3f0757a58"/></dir><file name="Tabs.php" hash="05fc6fda15f1d96c58134c7e1041481c"/></dir><file name="Edit.php" hash="a1ee0eac3fd9781407e11b2f64ed78aa"/><file name="Grid.php" hash="c9643030c5313725429921b02f6f8d32"/></dir><file name="Catalog.php" hash="b5ff4b9e3c2235d6eb61c08cbca58a3b"/><dir name="Quote"><dir name="Edit"><file name="Form.php" hash="75495e0a90c3c15b81cab39ce4c0f7b5"/><dir name="Tab"><file name="Actions.php" hash="eedc965a34c3e1d826f1742a7f61758a"/><file name="Conditions.php" hash="70bd6c28e24f384ca64a4b14d98cb2d5"/><file name="Labels.php" hash="932bb5a071724bb08d3c3d6ee9c65d0f"/><file name="Main.php" hash="f498b4ba3330c8c02f242a2749aea6c2"/></dir><file name="Tabs.php" hash="485290d29bb408e962eb66dd09b2bc27"/></dir><file name="Edit.php" hash="5453315f8619e8c55eb362473844fd31"/><file name="Grid.php" hash="fa1dfd696d3e86730fb7f27d56a7c50a"/></dir><file name="Quote.php" hash="4e8dc11f442a66671a892ab1b32daa9d"/><dir name="Widget"><dir name="Chooser"><file name="Daterange.php" hash="d31c7ecf101e8baaca992b4e4a91a20f"/><file name="Sku.php" hash="491ae18c9d16d4d72b66e00dde257049"/></dir><file name="Chooser.php" hash="e46f2a721b8fa8749bb44e5d403f8180"/></dir></dir><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="0a12a16ed4b95ca6f973a480f7172bdd"/><dir name="Tab"><file name="Form.php" hash="3bdef6718a3b055b762e6f278897ca34"/><file name="Options.php" hash="85e6e14cd66d08e956cd6640e7cfd879"/></dir><file name="Tabs.php" hash="c2275930f3acfd6d028e485d3107f476"/></dir><file name="Edit.php" hash="e7e0417b851a92c7d08e8d4b19be0f89"/><file name="Grid.php" hash="fcc7e60641bfdce003703195ce4c0f5e"/><file name="Rating.php" hash="7c6fff4cbc76f6a6398675c54044cd48"/></dir><dir name="Report"><dir name="Config"><dir name="Form"><dir name="Field"><file name="MtdStart.php" hash="539f9cb645068d1cab1e950db731858b"/><file name="YtdStart.php" hash="63c5e9f0abf3923f03baf431511e9403"/></dir></dir></dir><dir name="Customer"><dir name="Accounts"><file name="Grid.php" hash="510963eeb485e2e68f6d45aa5022a4c2"/></dir><file name="Accounts.php" hash="2c96e480bfd59e44ec5df21305b93fb3"/><dir name="Orders"><file name="Grid.php" hash="9ce3de9319709862c7336b12c438accc"/></dir><file name="Orders.php" hash="e381ffa881f946656356f2c9694408e1"/><dir name="Totals"><file name="Grid.php" hash="73570083a199c088c636e037baaabf01"/></dir><file name="Totals.php" hash="dabc18f86a4206f12122dee242cfd3bc"/></dir><dir name="Filter"><file name="Form.php" hash="0aad68003aaa0ff6e412931ec698b05f"/></dir><dir name="Grid"><file name="Abstract.php" hash="d92bb11e5dc2249b822e186b199b3bd6"/><dir name="Column"><dir name="Renderer"><file name="Blanknumber.php" hash="528b2404237ec734c6d848e999a7113d"/><file name="Currency.php" hash="21f989180199976b80c32d6c6de1f0b5"/><file name="Customer.php" hash="ec9d2ffd3a1323f480495a9bfe3f9cdf"/><file name="Product.php" hash="066c96cffedc2149e6625335fb713b5c"/></dir></dir></dir><file name="Grid.php" hash="39cac20e065903b998f11854f6590758"/><dir name="Product"><dir name="Downloads"><file name="Grid.php" hash="aa799265e8902c87889e6e75cb87d00e"/><dir name="Renderer"><file name="Purchases.php" hash="15a6b2d2d03bbac50c38c1d5d7cfe4b3"/></dir></dir><file name="Downloads.php" hash="b894c30d399a2919edae0094a3671043"/><file name="Grid.php" hash="5838230694360a0a26740ad575ff6a64"/><dir name="Lowstock"><file name="Grid.php" hash="5d428333a2bb224902da7e97940b588a"/></dir><file name="Lowstock.php" hash="0e8d1ff2667c37b81e064e27a27771d6"/><dir name="Ordered"><file name="Grid.php" hash="9c8651b4c67a039353ee243e06ec5fb2"/></dir><file name="Ordered.php" hash="1feb12819cd00225726cd01bbbd9054c"/><dir name="Sold"><file name="Grid.php" hash="bad9f083fe47afd543e5701fb0eb1832"/></dir><file name="Sold.php" hash="058b56ac9bf2d89cd8c1a359d87fd968"/><dir name="Viewed"><file name="Grid.php" hash="6f7b78bea8b4bccce38eb296f70535db"/></dir><file name="Viewed.php" hash="97100bb2bad12daac35a9ae0c880f2cb"/></dir><file name="Product.php" hash="4f1acdd60151aa1a028870da1b6852a0"/><dir name="Refresh"><dir name="Statistics"><file name="Grid.php" hash="6d0e8ac8cdc242dad4acbd810d63f837"/></dir><file name="Statistics.php" hash="41706f62f40d1355a6bd47a56c38f91f"/></dir><dir name="Review"><dir name="Customer"><file name="Grid.php" hash="e4e5a547177561d14d44cfd3ee367652"/></dir><file name="Customer.php" hash="bf6e8566dfad41c5958c38f532e52049"/><dir name="Detail"><file name="Grid.php" hash="c79525535f39e9cb8755b50840bf7b8d"/></dir><file name="Detail.php" hash="48692724434a28e1052226edd4f35302"/><dir name="Product"><file name="Grid.php" hash="5ebe2abac8429d1fbe3a665d27c36708"/></dir><file name="Product.php" hash="f661ad81e1383774d45eb464a06d3ec2"/></dir><dir name="Sales"><dir name="Bestsellers"><file name="Grid.php" hash="ce55f4e49615a0d10caa516bf5c40d61"/></dir><file name="Bestsellers.php" hash="f7339e6a07862b4834fedb5092f39796"/><dir name="Coupons"><file name="Grid.php" hash="483c7005c6987986f92122102f985785"/></dir><file name="Coupons.php" hash="f33413388d2cf59873dc9db648678c0a"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Date.php" hash="12194428b1a2ad973f420755254a10d6"/></dir></dir></dir><dir name="Invoiced"><file name="Grid.php" hash="a26b7e50eccdb53221acf736f889c282"/></dir><file name="Invoiced.php" hash="f93ec7c3178e3def4a31de186d2df9f8"/><dir name="Refunded"><file name="Grid.php" hash="2a360c53c5dd9367d4255a3b1dedc71d"/></dir><file name="Refunded.php" hash="4575e409f2a0c827f8f097b11dcadc18"/><dir name="Sales"><file name="Grid.php" hash="7bbf0310f3f0b95460bda58025325017"/></dir><file name="Sales.php" hash="ea2b338e8dcc1c7131c9426e245741f9"/><dir name="Shipping"><file name="Grid.php" hash="81ea980dd94f534262cc32aeb090c1b1"/></dir><file name="Shipping.php" hash="1685e15e149daef4bb7a885297d5d1ea"/><dir name="Tax"><file name="Grid.php" hash="dae5bd41e812f0dc00d8b1580df127af"/></dir><file name="Tax.php" hash="f8569d4e847792f872407dd806555f61"/></dir><dir name="Search"><file name="Grid.php" hash="3ce3c460989c6733cad99d6460b3010c"/></dir><file name="Search.php" hash="3d166c8176543e39e6e9530cfb5765bb"/><dir name="Shopcart"><dir name="Abandoned"><file name="Grid.php" hash="8e0e66bae4e5dea1842edeb49434e7ca"/></dir><file name="Abandoned.php" hash="fb146532e62ba39f1986290fe9e10f0b"/><dir name="Customer"><file name="Grid.php" hash="8b3e96cacae0d31545c66f34894c1b8d"/></dir><file name="Customer.php" hash="9cbad1ee16e470d706b64b45d71121a2"/><dir name="Product"><file name="Grid.php" hash="9c5dd434ec30b2ea78823c8f6cbfffb8"/></dir><file name="Product.php" hash="76b242ec124a886d1bef13a3108fc850"/></dir><dir name="Tag"><dir name="Customer"><dir name="Detail"><file name="Grid.php" hash="18d7ad4bb079b53d07191611d854de79"/></dir><file name="Detail.php" hash="195ad7dc5523867a2b2c67e49bdfaea1"/><file name="Grid.php" hash="54971d6bd043a951cd2fbe6cb6391b79"/></dir><file name="Customer.php" hash="4d2334d3cacf04cccb41792079b80311"/><dir name="Popular"><dir name="Detail"><file name="Grid.php" hash="893871eb5bb004fd635dd9f249092112"/></dir><file name="Detail.php" hash="5e159901c44b2ffcf68ce4c3a39fd0e1"/><file name="Grid.php" hash="90f8d44a4fa012b471c864eda3a464d3"/></dir><file name="Popular.php" hash="14460340c4e6f67c9b3c475289eda1e3"/><dir name="Product"><dir name="Detail"><file name="Grid.php" hash="0e7447bc283efd7eb62dfa11f6f93b47"/></dir><file name="Detail.php" hash="ed372e4cec9af33f1712125b9c249d60"/><file name="Grid.php" hash="d21e8649783758ea7c67459ebe9881a7"/></dir><file name="Product.php" hash="f5adf140bcb351fb8a84bca0db54f183"/></dir><dir name="Wishlist"><file name="Grid.php" hash="1b640610bbd083f2c03440433fa44f2e"/></dir><file name="Wishlist.php" hash="535b84484dbf890c9298daacaeb25d30"/></dir><dir name="Review"><dir name="Add"><file name="Form.php" hash="fbc1b119749de2d4fbcfda8cab4e9192"/></dir><file name="Add.php" hash="d9b7ecc1e05bcbc63c0307edb0ba79fa"/><dir name="Edit"><file name="Form.php" hash="c69d62b6adaa4c78c4e546c75be9451e"/></dir><file name="Edit.php" hash="fa38f3f797509419af861429a22ef39b"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="bcc0c3308e6123642651f91b2a7f9f3b"/></dir><dir name="Renderer"><file name="Type.php" hash="5af20a44ce74a0a20e570c83f4ce49d9"/></dir></dir><file name="Grid.php" hash="6e9d1cca06f83aca01bd548ac7f78ea3"/><file name="Main.php" hash="b9d4cfbf0b2d7e502ecde0003a354bdb"/><dir name="Product"><file name="Grid.php" hash="fbeaf98513182743a81cb1b428363359"/></dir><dir name="Rating"><file name="Detailed.php" hash="34525a6d45b6505e80b97d2733510ba5"/><file name="Summary.php" hash="96bba77082f28b844e0cbe5dcb72e227"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="9b1ee8e0bb4f911f1a02d9cde7ca588d"/></dir><file name="Creditmemo.php" hash="0c59f20c72713a4b069a718b245b3229"/><dir name="Invoice"><file name="Grid.php" hash="3d9b5c0788a61666308cd4d6272b3e82"/></dir><file name="Invoice.php" hash="a3bef431c2c25deb27ec3217c3c996a1"/><dir name="Items"><file name="Abstract.php" hash="5600f017d3dfbcad63bc9dde170f1a01"/><dir name="Column"><file name="Default.php" hash="5f44f59f2fe5f50308b3e1ceb8def76a"/><dir name="Name"><file name="Grouped.php" hash="4764134348354644aa623c416ef2d276"/></dir><file name="Name.php" hash="4e484d2555b1e1d8ae3a4d4317a4d049"/><file name="Qty.php" hash="b07bec5aa1ccd06678f4e24229b577aa"/></dir><dir name="Renderer"><file name="Configurable.php" hash="69d9ea92ec0f08546ae7a11bd15aebbe"/><file name="Default.php" hash="cb5082319cc02d72d72271ed33c92e89"/></dir></dir><dir name="Order"><file name="Abstract.php" hash="f21e7a4b9b42d52267af178a3922a739"/><dir name="Address"><file name="Form.php" hash="07be79a7120ae513717c3405c9b18ce5"/></dir><file name="Address.php" hash="b99eef5e3a41678453dbf6cad5c99959"/><dir name="Comments"><file name="View.php" hash="eb7cedf218541b4a2399770b0b6d518a"/></dir><dir name="Create"><file name="Abstract.php" hash="56dc3e704f7452bd034957c7d3389dc2"/><dir name="Billing"><file name="Address.php" hash="6a067c267a6da7083698c3cd56c2db95"/><dir name="Method"><file name="Form.php" hash="9c4d676a1686a57669e9a00235b85795"/></dir><file name="Method.php" hash="d5e2019a00eb530d4da0b200cce22f49"/></dir><file name="Comment.php" hash="cb6d4bb4e2c13448ae6040a4739a1ad1"/><dir name="Coupons"><file name="Form.php" hash="701fbef24890562e3ca15c7e8fd1aabc"/></dir><file name="Coupons.php" hash="c761a4dc6e36748264efef881e52f1a9"/><dir name="Customer"><file name="Grid.php" hash="b8b8e981a2ebd2821c0732bf6cd86afc"/></dir><file name="Customer.php" hash="df842ea7701ecdaeecadeffd6e98f6f7"/><file name="Data.php" hash="13f973c5ab673d3d5a4b6026c7fde696"/><dir name="Form"><file name="Abstract.php" hash="57697c1a88ee87237736121b969c8649"/><file name="Account.php" hash="03d6918a3bb83844a5d2361e8a5865b1"/><file name="Address.php" hash="ee3cb2ca3935727715b7504636aff9b2"/></dir><file name="Form.php" hash="04110ee3e30cbb0c1a6b811805c841ed"/><dir name="Giftmessage"><file name="Form.php" hash="6f3b4318ce8bc77430407a6073bac959"/></dir><file name="Giftmessage.php" hash="2cd0870b1afd0f29c8ec60d215cdfbc8"/><file name="Header.php" hash="1c4aa1ee93cfb3661ccf21406c118da6"/><dir name="Items"><file name="Grid.php" hash="c4a52779d2e923892d82897c2e6308d7"/></dir><file name="Items.php" hash="5b19a862d6350f7c2334b7a2533fa1f8"/><file name="Load.php" hash="1990bae5fd8c6bf125ea86586d47c2f0"/><file name="Messages.php" hash="fb1e296d95653518a3aa45102399e190"/><dir name="Newsletter"><file name="Form.php" hash="dd58a4bc2f02adce0a16d88f716c160a"/></dir><file name="Newsletter.php" hash="b10a65e8fbf66feca99337d95ae24144"/><dir name="Search"><dir name="Grid"><dir name="Renderer"><file name="Giftmessage.php" hash="cdea3aec494f3030e2181c2728c3d9eb"/><file name="Price.php" hash="39ca87c518b20b1d83361a923bc06d8f"/><file name="Product.php" hash="ecc91e2f0cd9bc33074ba1f95cb5d536"/><file name="Qty.php" hash="ea9eb166bbe52d1ed3932f9dc9b3a224"/></dir></dir><file name="Grid.php" hash="04682a8f5d5eb3047fa1d31341689c41"/></dir><file name="Search.php" hash="0be8d554a1f6425be684a6c5d361d9be"/><dir name="Shipping"><file name="Address.php" hash="70d2e03b0514af629814b7f8efd14a89"/><dir name="Method"><file name="Form.php" hash="5fe9b46d1cc525313162090fcecc0b94"/></dir><file name="Method.php" hash="43e94f2e3c8cf3e7b276a7fe4aa217c6"/></dir><dir name="Sidebar"><file name="Abstract.php" hash="e67eb9966abc3fd2c423aaa9c250e1dc"/><file name="Cart.php" hash="d8233b4b156b54658c5f98e90b01933c"/><file name="Compared.php" hash="d433ceaf0dc6d32e9ddf1d31c525deaa"/><file name="Pcompared.php" hash="8def4550e8b89c1ff350230ca67f8612"/><file name="Pviewed.php" hash="63bffb53bc130c5579f6182c15b0fe2d"/><file name="Reorder.php" hash="4ace4011ce7a753486780a8ec9a2fb64"/><file name="Viewed.php" hash="57d9b73fb01e9b0b03abd1c0e6de3f7c"/><file name="Wishlist.php" hash="1613ad79f842999ea849bdf286fb365d"/></dir><file name="Sidebar.php" hash="08e346622a05c23a235aa28f03f3b24e"/><dir name="Store"><file name="Select.php" hash="88b22f00e69cb37637c02ddeb9a2e0d0"/></dir><file name="Store.php" hash="92a9e0408f8ab4b8f58317cf1fa5ca11"/><dir name="Totals"><file name="Default.php" hash="11ec971b0b0dff817b3a1f5f8f94ddac"/><file name="Discount.php" hash="36ada3fbaafa2a06d8ba1a051ba66aaa"/><file name="Grandtotal.php" hash="f9cf010cbd2abb2663c81b0ff96a066e"/><file name="Shipping.php" hash="868ed877149e87e47253e127da618b43"/><file name="Subtotal.php" hash="054a7af743db97f340eafd5dc09edd53"/><file name="Table.php" hash="8824b49db9b4eefedacfe4af51c8509f"/><file name="Tax.php" hash="36dad6ba1cadde5ebafa709ef87c7f96"/></dir><file name="Totals.php" hash="ad3777c492b27a382197682e392a1999"/></dir><file name="Create.php" hash="3162e058f47fc89b1d1eeddd61a51091"/><dir name="Creditmemo"><dir name="Create"><file name="Adjustments.php" hash="9adaf515efa6fce12c7e08961b6f1dde"/><file name="Form.php" hash="5a9c8e184c6733d777590a5df2988f62"/><file name="Items.php" hash="cf6d11c84d321ef6c9b7f184e79485e8"/></dir><file name="Create.php" hash="83d80abf5c508c68afb278464508bfb9"/><file name="Totals.php" hash="1e70b91dbe71730f40e61ff55c6ac6bd"/><dir name="View"><file name="Comments.php" hash="8277371b5f2c6d5751c816382daa80bf"/><file name="Form.php" hash="cb8dcf5c1d937daf221fb65d4e1d9a1a"/><file name="Items.php" hash="023601735dbc58c40eceb7b754dfe56f"/></dir><file name="View.php" hash="7eb72a25fed12ec2c76b5327a43b2669"/></dir><file name="Grid.php" hash="1e451120ac13436800f8a23a9045c240"/><dir name="Invoice"><dir name="Create"><file name="Form.php" hash="e20424543a967ad0319edd21fa5a1012"/><file name="Items.php" hash="4d40b0687595fc2d2186fbd0dec387cf"/><file name="Tracking.php" hash="d87d8fd4a7e09f6cf65711d6de0ae4b4"/></dir><file name="Create.php" hash="301c3bb45ca99d272a075bcee65235bc"/><file name="Totals.php" hash="25b755fde87ec7291417a92c6a23c67d"/><dir name="View"><file name="Comments.php" hash="014b1a872155f59cf672583ac8c0368e"/><file name="Form.php" hash="f50fee69d70b825621cb6448ccd7d688"/><file name="Items.php" hash="5e4ff6654477b2b6a86c0c257215267e"/></dir><file name="View.php" hash="ad4490f1e541595fc1052365b4086839"/></dir><file name="Payment.php" hash="73b25d6cd194da745b07bfa20349b45f"/><dir name="Shipment"><dir name="Create"><file name="Form.php" hash="dcac76e2b35d383486d5bce3e3e3708a"/><file name="Items.php" hash="ff60f0572bc936fc2c977b0d1c7a0e9f"/><file name="Tracking.php" hash="8f624f052e87c8b35ee83a5b3f3fcd2c"/></dir><file name="Create.php" hash="898db2812160fa259f6b1692fe5e0a77"/><dir name="Packaging"><file name="Grid.php" hash="8f2a4c57ea26cd9f5d0c1b2da0a42d58"/></dir><file name="Packaging.php" hash="cdec5d3620543e0f39b3ef93f3d55d63"/><dir name="Tracking"><file name="Info.php" hash="512a040f2a9b7afdb85716439b4720d9"/></dir><dir name="View"><file name="Comments.php" hash="3abc75723652e34174987454d7613509"/><file name="Form.php" hash="5d2389d23c306e5eb3f548a9c888b1cd"/><file name="Items.php" hash="ee05fc75e09d409e5327f99215daa874"/><file name="Tracking.php" hash="35ba4874aaa544fff918f099ebf4e636"/></dir><file name="View.php" hash="a0ff2315e0c7a097620ce3c6f23f98f0"/></dir><dir name="Status"><dir name="Assign"><file name="Form.php" hash="876fb0bcfd2fb3cad3ea1b4b71d675ac"/></dir><file name="Assign.php" hash="58b03a6011eff918be0b360e58f94714"/><dir name="Edit"><file name="Form.php" hash="ae74fa61faa1067db974f52ae5218f73"/></dir><file name="Edit.php" hash="772273eaf9bbb3d1bbb9173034b4ba40"/><file name="Grid.php" hash="bfb3a3cc8d3fb6df88ec78d426026573"/><dir name="New"><file name="Form.php" hash="9cd3409510849c6f5245aa8dbb17338b"/></dir><file name="New.php" hash="c54fabe816cde74429c49c89a30433ac"/></dir><file name="Status.php" hash="5116f4ac880e92fccbead54ca5527a64"/><file name="Totalbar.php" hash="b96b3079fdcf8d78aaacb4c650cc02bc"/><dir name="Totals"><file name="Item.php" hash="084f2d87393bd66bec770e4bfaaeb3f2"/><file name="Tax.php" hash="afd1cbd2c992348f993b871d6c9039eb"/></dir><file name="Totals.php" hash="19b96f97467d6be3c90a51b61aceec12"/><dir name="View"><file name="Form.php" hash="fe8c3582f6d379291d41193e1f2b90ec"/><file name="Giftmessage.php" hash="43d9f07d181546915d684baa43cd6d24"/><file name="History.php" hash="a20ba0ca65e4a5ce85231748f4650138"/><file name="Info.php" hash="4417daa3e243873ba54e8b6b194dc8f7"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="c298a0484093f4e6de84ca010a957530"/></dir></dir><file name="Items.php" hash="8928d8d20fbef021f0c0e14a35bb9b00"/><file name="Messages.php" hash="dae67e0365bfc2bde7d54aea79ca6b1d"/><dir name="Tab"><file name="Creditmemos.php" hash="5bb2817bbf0d828ff4db96bfe2d386d9"/><file name="History.php" hash="f75f6b65ecbeed24edd8edb31fb76ee0"/><file name="Info.php" hash="5e64d919207fd2384a00a2f382ef9a76"/><file name="Invoices.php" hash="35526fbe1c0b80c5686c914d9725bf3f"/><file name="Shipments.php" hash="38e0828abcf79fc7f1897a1e447cb61d"/><file name="Transactions.php" hash="8c4aee342e99b28730dbb946d56812ce"/></dir><file name="Tabs.php" hash="b777a7979591c7bbfccbbc7d07b5545f"/></dir><file name="View.php" hash="276b4b5f2e64b228002f35d53d9e66fb"/></dir><file name="Order.php" hash="8035253a4605f74793ee7ab5955559c5"/><dir name="Reorder"><dir name="Renderer"><file name="Action.php" hash="7257026216804ec66d4f2a92e9b3599e"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="dcffe3abdbb5aef53b5e8f51d7435662"/></dir><file name="Shipment.php" hash="586288a628639cd06144f9c545aa0c31"/><file name="Totals.php" hash="be2cdcf30e4b767d1fe884fdb5578721"/><dir name="Transactions"><dir name="Child"><file name="Grid.php" hash="7bcbecb0ddf32beeac85c9212b567d86"/></dir><dir name="Detail"><file name="Grid.php" hash="7880e7d113166155fc5b450647fb9daa"/></dir><file name="Detail.php" hash="20ed6b086992e0da8922dcffd560b58a"/><file name="Grid.php" hash="22aff0ac91bc4a1d722eb473a1ca25de"/></dir><file name="Transactions.php" hash="3531493dba2bc513719b894c0a2f53ab"/></dir><file name="Sales.php" hash="7388146399a18744ba65960d08cba1a3"/><dir name="Shipping"><dir name="Carrier"><dir name="Tablerate"><file name="Grid.php" hash="17666e50fe5866f7e37e0baa99b2eb81"/></dir></dir></dir><dir name="Sitemap"><dir name="Edit"><file name="Form.php" hash="1e108356defdaa957516dc91b8e96643"/></dir><file name="Edit.php" hash="8a157599f86b2b79cb723d7e29c34483"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="922d017ccf3b40b4db4047ebc33b47f3"/><file name="Link.php" hash="2afbe7b06c70610e7655b49b0e15949f"/><file name="Time.php" hash="285014e64cea28d738a426d3dcd6bb90"/></dir></dir><file name="Grid.php" hash="4c169f1aeaee902c331070a72667f411"/></dir><file name="Sitemap.php" hash="f08d1da80d43f26909ba0485eeaba412"/><dir name="Store"><file name="Switcher.php" hash="c0f68f604bfb6ef53cc2d7adc8d4e6e8"/></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="039bf1e0a5893db3acee77b3840e8fc4"/></dir><file name="Edit.php" hash="16dfa004a4cd807d5c125fd52da7eb95"/></dir><dir name="Cache"><file name="Edit.php" hash="fcb3deb549932ded2b169979339c828d"/><file name="Form.php" hash="8b1865dda7a644a519348e45751cecb4"/></dir><dir name="Config"><file name="Dwstree.php" hash="2f98efc34dd7f473371a4ddad5f3b38b"/><file name="Edit.php" hash="e6208e9268d9b2cd4f49d237d42d6255"/><dir name="Form"><dir name="Field"><dir name="Array"><file name="Abstract.php" hash="a7f2846a179483dd18f26e548bb9a65c"/></dir><file name="Datetime.php" hash="95ea473f5420dae5ade413f098b883d6"/><file name="Export.php" hash="a44012ed6a7850596353295915fa227d"/><file name="File.php" hash="5d220fa857d8c9e0efc3789961a8d4ee"/><file name="Heading.php" hash="d1060a22e6740eba42126ba22ed1f016"/><file name="Image.php" hash="3910d687c6f58e3eb08a70f16180b94f"/><file name="Import.php" hash="354797b9a704fa05d7dad6ef9de3afc1"/><file name="Notification.php" hash="6fcf08c0d73d0a6a99d272c726c0b0e2"/><file name="Regexceptions.php" hash="948d21879f06c6b8ba49351f82f3693a"/><dir name="Select"><file name="Allowspecific.php" hash="27e3aab9606afd450e5e32ba2c9cea8e"/><file name="Flatcatalog.php" hash="ab658402d388e12317d32e92e640ab1e"/><file name="Flatproduct.php" hash="e1bcbbd3fd1db8def49aaed9afebc59f"/></dir></dir><file name="Field.php" hash="ae77a69a8b4e7733668e12510311662b"/><dir name="Fieldset"><dir name="Modules"><file name="DisableOutput.php" hash="12f70cc5af8e878124b1ca52396e5efb"/></dir><dir name="Order"><file name="Statuses.php" hash="d2270de2ada4da66b522cbdf01014e52"/></dir></dir><file name="Fieldset.php" hash="99583c5393de237bd6bea9aa984ab15a"/></dir><file name="Form.php" hash="c844b3c8562fa55f3a731f914ef07baf"/><file name="Switcher.php" hash="edc49977c8e656416bd7592c548f2552"/><dir name="System"><dir name="Storage"><dir name="Media"><file name="Synchronize.php" hash="20652db027e906d110e2e78d53ac4f4c"/></dir></dir></dir><file name="Tabs.php" hash="0ca93fd171fee5e2018cf5cf7f5db71f"/></dir><dir name="Convert"><dir name="Gui"><dir name="Edit"><file name="Form.php" hash="6197289e0ba1f50eac10cd04cc2c80b7"/><dir name="Tab"><file name="Upload.php" hash="af75671627c7e1d801a7c7d4bcbfb068"/><file name="View.php" hash="242197a671338083e893f79f2a73123f"/><file name="Wizard.php" hash="6e17142cb17ef1ac744254dc9e3cf20b"/></dir><file name="Tabs.php" hash="abae8445c92352a4e7e50a0178e47a8b"/></dir><file name="Edit.php" hash="730b777f01c18e941e9835c9fbc29781"/><file name="Grid.php" hash="e5b296b2cff01d241df5cd8773a47b86"/></dir><file name="Gui.php" hash="3267ebdfa458c02d9972b1f4edbe57b7"/><dir name="Profile"><dir name="Edit"><dir name="Filter"><file name="Action.php" hash="df57c00eca1a9f0833d05f24e372e43b"/></dir><file name="Form.php" hash="a4b54b2c31fd5e66b7934048ff3e5cb0"/><dir name="Renderer"><file name="Action.php" hash="179e05106de6bad3b7fcc837449e90c8"/></dir><dir name="Tab"><file name="Edit.php" hash="71f3a4d8694ffc8d26f639eb4f3f11a8"/><file name="History.php" hash="3cb2c5951f56e1980fcb42ee1c413b04"/><file name="Run.php" hash="680ecd6c07e9b11d90f3e6b25fa4eea7"/></dir><file name="Tabs.php" hash="7fc720bd4fd5b6b0eb686fb7c73ad407"/></dir><file name="Edit.php" hash="d11c8a5545b7707ebfe80e27b9d42b44"/><file name="Grid.php" hash="c67f34459a7764835e684beeaa793078"/><file name="Run.php" hash="2e2bfa7183322dd24436265a5e435fb6"/></dir><file name="Profile.php" hash="1cb5e68b2e157ce5f23ad5ec24c5b85d"/></dir><dir name="Currency"><dir name="Edit"><file name="Form.php" hash="82f730aaa93188e2f0c87c10a141716c"/><dir name="Tab"><file name="Main.php" hash="154cb82dca478e5d4023625f23f5757e"/><file name="Rates.php" hash="848e37ac4deb2950e7a8662e1e2ec972"/></dir><file name="Tabs.php" hash="49082be0b8d0b90d85008a5c5ed457ea"/></dir><dir name="Rate"><file name="Matrix.php" hash="2388cdd1134b328147144a3967c0ba3a"/><file name="Services.php" hash="e2d1c1b435c1e06ae27b7c3eed57f5ad"/></dir></dir><file name="Currency.php" hash="1812b32ac422e8f40c3131a8ad3d343f"/><dir name="Design"><dir name="Edit"><dir name="Tab"><file name="General.php" hash="d771026e93f706eb5efaefa5fb7ee81a"/></dir><file name="Tabs.php" hash="e065762a1d98ffc4270ed1cdcee0e2a0"/></dir><file name="Edit.php" hash="2889ec16e2e4ec80593e5e2c4faf4020"/><file name="Grid.php" hash="04e553cee2a2afa60e2613ec39510ebd"/></dir><file name="Design.php" hash="ec2c5f85ae18f626da1df74c5258456f"/><dir name="Email"><dir name="Template"><dir name="Edit"><file name="Form.php" hash="237a8dc2f11a925ad76f3536415ed498"/></dir><file name="Edit.php" hash="e8820cc3959e15b502514f80b8bc99e9"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="ff6a4d1f08602fb930c2e00b0a4441ec"/></dir><dir name="Renderer"><file name="Action.php" hash="ee2d145ed9efaf6b7524499f2bf3be81"/><file name="Sender.php" hash="ab50b6d1c91bd0ac4bf6743dd6084687"/><file name="Type.php" hash="87cdad47b1cbe02c4c638f96190c4727"/></dir></dir><file name="Grid.php" hash="c0723e33d973a75662805c7324d98402"/><file name="Preview.php" hash="d561ab28e50060a61c52abdf42684531"/></dir><file name="Template.php" hash="e3873f5b77c89b761be21175dc197db4"/></dir><dir name="Store"><dir name="Delete"><file name="Form.php" hash="728adddb11db8fadc261972dfa229462"/><file name="Group.php" hash="0fd794993314c61f25661b0605c029c7"/><file name="Website.php" hash="fb15a5e68d4390263a0b64d5099a9e1d"/></dir><file name="Delete.php" hash="fd42256743d99444a5c9058dffeff9e8"/><dir name="Edit"><file name="Form.php" hash="1734719dae02cfd9f3d3268d7968159b"/></dir><file name="Edit.php" hash="f696115dd5332efdcf09345d6bd9a49d"/><dir name="Grid"><dir name="Render"><file name="Group.php" hash="0aae0c0bd2e7cb98aff8e2f937d70ae6"/><file name="Store.php" hash="2a82e03f8049547954bdfb84fef1b563"/><file name="Website.php" hash="48b88ada481703585cd4e8148d30392f"/></dir></dir><file name="Grid.php" hash="52be97ce0d4fa05a1267d7a9c7dc8031"/><file name="Store.php" hash="e1517024801877272156b83758105de6"/></dir><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="11da9c11ab8ab67e66b037da18a0ed92"/></dir><file name="Edit.php" hash="2f3f8d84e7b4371cd2627e9402a02517"/><file name="Grid.php" hash="fbe5f9cee32b956b33136427d6807dd4"/></dir><file name="Variable.php" hash="745a5dd38aa348c975cc44d690fe734f"/></dir><dir name="Tag"><dir name="Assigned"><file name="Grid.php" hash="1026381f0e69572caead88ce1e9d6fc7"/></dir><dir name="Customer"><file name="Grid.php" hash="588ad0dc9cf4eba0a408dd73f4218600"/></dir><file name="Customer.php" hash="ef359374e6013c42ce272b1e19953d03"/><dir name="Edit"><file name="Accordion.php" hash="0bc5250ab13faef8037b5d7cf7789d34"/><file name="Assigned.php" hash="9f6144ad1e3395fc6ccaeaf76c601e76"/><file name="Form.php" hash="1a35e37a37fbbe6eb06823e5750c1ea5"/></dir><file name="Edit.php" hash="fcfc724aa679bac0dc081305a23e4335"/><dir name="Grid"><file name="All.php" hash="1f13507b546883ba0a7b42d81d12b9bb"/><file name="Customers.php" hash="30b8771f4123a00a72fea2e18a24d7b8"/><file name="Pending.php" hash="6dfa68d5dd40eed22c7247217be40a67"/><file name="Products.php" hash="6273fa6c034b3673de3f418df9a182a2"/></dir><file name="Pending.php" hash="038f0c1a54765d94aa009f83db081011"/><dir name="Product"><file name="Grid.php" hash="bd89b0a072e3e704cda2cbf1cdcb58d9"/></dir><file name="Product.php" hash="4f9ef6f900a5756bc8811a3d7b7fd3e1"/><dir name="Store"><file name="Switcher.php" hash="15d46c96403178311f5a91ca0c658ab1"/></dir><dir name="Tag"><dir name="Edit"><file name="Form.php" hash="40f89510cf6c0870e2266180aabdda92"/></dir><file name="Edit.php" hash="06197dc68a0fc584694a6d0567c3b518"/><file name="Grid.php" hash="364248b14b1bc05a9c7e896c48e58471"/></dir><file name="Tag.php" hash="a2719e4c5479ed48a73109ba0c3db888"/></dir><file name="Tag.php" hash="d3d2ce816590a033e2aa44d9e5bdf97c"/><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="6e50e186d47a6ef5637a47e738e35540"/></dir><file name="Edit.php" hash="bc5877cfc6fa3dafa55ddbced3bd4948"/><file name="Grid.php" hash="50cb096fb5fd514855deda021bd4573d"/></dir><file name="Class.php" hash="b88d17e5d41868ef2fa796676b3164d5"/><dir name="Rate"><file name="Form.php" hash="5840a8faccd033bee49142cd174bae4e"/><dir name="Grid"><dir name="Renderer"><file name="Country.php" hash="61becc51a95d99b2b206c01080f7953d"/><file name="Data.php" hash="9be5a0c0b6f4d1039251c2ae5fe3b383"/></dir></dir><file name="Grid.php" hash="e117cca9c044870c0c822b7da88d4287"/><file name="ImportExport.php" hash="2163514ddf08eda9cad92ff5eacdc611"/><dir name="Title"><file name="Fieldset.php" hash="55574d9ff1949ad42d000844e49794a6"/></dir><file name="Title.php" hash="a362d2af3cb6440c93f81e458fe95265"/><dir name="Toolbar"><file name="Add.php" hash="5c8ac18f9f3697a52aebe3eb22ce7b88"/><file name="Save.php" hash="3e47cabded9388a198a213ce14bf61b5"/></dir></dir><dir name="Rule"><dir name="Edit"><file name="Form.php" hash="7d64372d3cde3c11e336f3b3e6419479"/></dir><file name="Edit.php" hash="534d7c332c865c853d942b8e5c9c4721"/><file name="Grid.php" hash="32bfcf469f9b83942387eba47e884b88"/></dir><file name="Rule.php" hash="ebe6e4610501aeaa1c490da0e829ce74"/></dir><file name="Template.php" hash="036457a099960d13854505556d34e0d6"/><dir name="Text"><file name="List.php" hash="36c098e765f78a49ff3e6c9b86566582"/></dir><dir name="Urlrewrite"><dir name="Category"><file name="Tree.php" hash="9a12de426f8978fe94ea6485d31f0220"/></dir><dir name="Edit"><file name="Form.php" hash="c9b0114871c5d747ca1d47cb617e2377"/></dir><file name="Edit.php" hash="65e10c48d5fbd4ac7bee40772dc6ca09"/><file name="Grid.php" hash="002f28cf07e3d742296f37b787bda9ad"/><file name="Link.php" hash="2b6fc0e959f43083c82885e2c270d2b5"/><dir name="Product"><file name="Grid.php" hash="be117ee28a39cf2261e58aab5847bca9"/></dir><file name="Selector.php" hash="0fa081f5d50d056754167ef4e96800fe"/></dir><file name="Urlrewrite.php" hash="23fde6bc9b2cd1eb6ef4647cd39fa579"/><dir name="Widget"><dir name="Accordion"><file name="Item.php" hash="8e6e79b6f38ccb87c59433bcc5ee7e38"/></dir><file name="Accordion.php" hash="6d6e24c0aa4e682d7b39d34bd561329d"/><file name="Breadcrumbs.php" hash="c78d9c0c8a47cca0ebd9c751ef4d5c40"/><file name="Button.php" hash="90ad6c5d2604dbb6edbaa5c6091f436d"/><file name="Container.php" hash="55c6029cab6a4b7ef4fb800c8d07e0e6"/><dir name="Form"><file name="Container.php" hash="501067c8eac53d38b1e2b4eaa06fc268"/><dir name="Element"><file name="Dependence.php" hash="df7259a52291483d5ffaf2cb91a4ab57"/><file name="Gallery.php" hash="706e58e55fe2045ab978200876a5d58a"/></dir><file name="Element.php" hash="aa4f125fc17d711c89eacccf96b50ba9"/><dir name="Renderer"><file name="Element.php" hash="59f6398555e7aa51e6fe3e9cb90bc86a"/><dir name="Fieldset"><file name="Element.php" hash="f56298a311698c46629d26ba2d0f30f3"/></dir><file name="Fieldset.php" hash="fe9a1af8232be1e1acf77b50f6afd6f7"/></dir></dir><file name="Form.php" hash="737b356ee46983c20a825ab52a530fa1"/><dir name="Grid"><file name="Block.php" hash="dce3427f4dfac746a827430716da4996"/><dir name="Column"><dir name="Filter"><file name="Abstract.php" hash="7d094b51178b6aaf12a7261e8c3a88dd"/><file name="Checkbox.php" hash="da28a20ad4a61e588d7343613bcaec2b"/><file name="Country.php" hash="05e687dac506f0e778318efae6b71e71"/><file name="Date.php" hash="0d9d20b5031aac3f5466c634a2e1cb7c"/><file name="Datetime.php" hash="9b2b54d762568c187e5fd6a61bfda941"/><file name="Interface.php" hash="cd5436595e45a80836fad94bd22f8fd3"/><file name="Massaction.php" hash="6b7fae98c75d4bea9c4195f73120efa2"/><file name="Price.php" hash="3ffc1aa91ffe5e4b0de893e719d63858"/><file name="Radio.php" hash="832027d37bf0d7b30f68ac254b922b66"/><file name="Range.php" hash="ececa5c29d955d9fbff15836497f961e"/><file name="Select.php" hash="1d5df7916f21340b45e3f2aa3e24c9bb"/><file name="Store.php" hash="2b4d988c578e70addf8744ef5889d23e"/><file name="Text.php" hash="db4bf5093561d1224780f4fa07e38e01"/><file name="Theme.php" hash="1ffbe8f19f3a3a6ea6fc78cc5abbd6c2"/></dir><dir name="Renderer"><file name="Abstract.php" hash="0592c5b607ed43d21b016361cb3cc749"/><file name="Action.php" hash="d9bc41f1c35f488937f9336b19c5d434"/><file name="Checkbox.php" hash="6d0b6dd45df9b8bab02ef90de76c77db"/><file name="Concat.php" hash="9446d661c6267c99da1f86813e62332f"/><file name="Country.php" hash="24636c52eb59a21a1cd984e843f5a249"/><file name="Currency.php" hash="09f8d059ea09831cf8eed35aaa6b1eb9"/><file name="Date.php" hash="c466047408a33fff6abc46f576dde230"/><file name="Datetime.php" hash="8f41cb7c4fa33063a8b4934912858619"/><file name="Input.php" hash="8376e8e28221538499503be511dd819f"/><file name="Interface.php" hash="9c2c26085e0bb4a8ac86a9c9d10500ac"/><file name="Ip.php" hash="58dc9eebdf891be362f69a274c93ac75"/><file name="Longtext.php" hash="2e25a442e0b245c0f5a7158dba9d548e"/><file name="Massaction.php" hash="daced54e85e5616c1d068c754a1ff84b"/><file name="Number.php" hash="9ce9b562206747aa294809665b4c5f1c"/><file name="Options.php" hash="83623c6e35260d3b56f27685a1536098"/><file name="Price.php" hash="c2ac2c773f7ad22d0051acdc723786f9"/><file name="Radio.php" hash="e5c1a90665aa717595d31f3eefc401e0"/><file name="Select.php" hash="35662c546cdf93905217c58d03762663"/><file name="Store.php" hash="fdc473a86ba6be462d508e199569a6ef"/><file name="Text.php" hash="077bbea5a23e4ad09023136638488d33"/><file name="Theme.php" hash="11cc8b46b07a98daa249693a68848eba"/><file name="Wrapline.php" hash="87fa26dbba758f1ea5ef3ac81ce7dfbb"/></dir></dir><file name="Column.php" hash="abce175273a1943618d67618a126b392"/><file name="Container.php" hash="0b462cd161dfe8f2aff6a676a9817af8"/><dir name="Massaction"><file name="Abstract.php" hash="529d5e523274566a1102cdcfe9cdcc9a"/><dir name="Item"><dir name="Additional"><file name="Default.php" hash="3c13c3b0ee3aee671cd38eec0ad1b39f"/><file name="Interface.php" hash="f96a98366894d870632c3b9e9b75318f"/></dir></dir><file name="Item.php" hash="85209e8e69b17a7a89b8e07cd233bb9f"/></dir><file name="Massaction.php" hash="538960e7ea74894095c2aa94a7663b09"/><file name="Serializer.php" hash="176244e967ba10546023fbf27ddd85d1"/></dir><file name="Grid.php" hash="c9914d8ad60a735589b609844c16f675"/><dir name="Tab"><file name="Interface.php" hash="4116098617f2528a10f6c92af1a7bc05"/></dir><file name="Tabs.php" hash="7013f671f3eb3affec2900c8aa651074"/><file name="Tree.php" hash="91638656f61128ea399e53723c229ba7"/><dir name="View"><file name="Container.php" hash="41b4a90d2df4d1328f0dc30a7b35884d"/></dir></dir><file name="Widget.php" hash="e2c0d80eab5e482c845e5c228a6b0c79"/></dir><dir name="Controller"><file name="Action.php" hash="5addc4a42ad8f6b3cdd283d19664600f"/><dir name="Sales"><file name="Creditmemo.php" hash="b59d6bd489454c13135851971a65f906"/><file name="Invoice.php" hash="5deab6e892db823150c5c5c3b9fa7ed1"/><file name="Shipment.php" hash="ecca9e206e98e456c7f9befe6279813e"/></dir></dir><file name="Exception.php" hash="cef182509c0d9721c00421a2d093323a"/><dir name="Helper"><file name="Addresses.php" hash="25f7503f4b5abd033c5ff2653cb78693"/><dir name="Catalog"><dir name="Product"><file name="Composite.php" hash="33ff461e6a5857ca5038c64e202ffee4"/><dir name="Edit"><dir name="Action"><file name="Attribute.php" hash="895be3121683a4145467efee1a46e2c7"/></dir></dir></dir></dir><file name="Catalog.php" hash="16e66432d349ad916864e32dda748476"/><dir name="Dashboard"><file name="Abstract.php" hash="c9776db89e955ce7385288a6ef0899fa"/><file name="Data.php" hash="8f40d02b37d3c238516ec922b2d29761"/><file name="Order.php" hash="363d5c4e89173ecf1112ecbd624e3642"/></dir><file name="Data.php" hash="5eff1ebdaa2d671f1f8e0e9bca667b76"/><file name="Js.php" hash="b954c0dafa4fb9a093bba31de703bfd5"/><dir name="Media"><file name="Js.php" hash="cd04830b38517c6f3571348f0f6df485"/></dir><file name="Rss.php" hash="9c979d2eb490f4bd1c4ac49e6877aa98"/><file name="Sales.php" hash="73a95d272d7991aeefbec052ded37baa"/></dir><dir name="Model"><dir name="Config"><file name="Data.php" hash="1951e851b0ffc079b369dee176ee32ff"/></dir><file name="Config.php" hash="253c0be8fb9025a9ce7417389276fdd6"/><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="49983c4b0c0e9b0a4769d4ea051dbf6f"/></dir></dir><dir name="Email"><file name="Template.php" hash="1c7e5ee644201e06439b8a20dc10b7ff"/></dir><file name="Extension.php" hash="2e552cbbc891d8c4add4a3ba1feedebc"/><dir name="Giftmessage"><file name="Save.php" hash="691dd6dbe21b35f42e41e6131d297abf"/></dir><dir name="LayoutUpdate"><file name="Validator.php" hash="46b76d1e0b78dba75953dba981f20f16"/></dir><dir name="Newsletter"><dir name="Renderer"><file name="Text.php" hash="97be29e577f1322de166b31d16cab95f"/></dir></dir><file name="Observer.php" hash="f20f820216803fb97c053240a33208f7"/><dir name="Report"><file name="Item.php" hash="55aeff271c4f99c8379d287c43353682"/></dir><dir name="Sales"><dir name="Order"><file name="Create.php" hash="4022d84f70f0d8b3ec419acf6396820b"/><file name="Random.php" hash="df1421580a77b391be14114549f371f6"/></dir><file name="Order.php" hash="ffbfa99e481ff2261ba98d4de3358997"/></dir><dir name="Search"><file name="Catalog.php" hash="cd9391357c69769a1d2fee4396d67bc1"/><file name="Customer.php" hash="747bce5fe155c87411e29019026d26b1"/><file name="Order.php" hash="17ad643645632d4be6d1148060af35be"/></dir><dir name="Session"><file name="Quote.php" hash="0f9fb1030e676a3073be5441c4a83316"/></dir><file name="Session.php" hash="82e2ce0a85b7aa3e51d31f7f77669622"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Admin"><file name="Custom.php" hash="a3deb1e6906938bab76d6cb7d5cb1427"/><file name="Custompath.php" hash="5bcddfea873c3e16aa6ec353c9da1f2c"/><file name="Observer.php" hash="c8cb0945688a8608e02ad60eb25dec9a"/><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="f4a77bd3c5337b4c0beaae642339e453"/></dir></dir><file name="Usecustom.php" hash="3fab2b4e80e6e3ac4472604ca9df25a8"/><file name="Usecustompath.php" hash="d083e514646d281f28123ab4be3dd4ad"/><file name="Usesecretkey.php" hash="95b11c963fa4f40c1cbfef8e0a37a88a"/></dir><file name="Baseurl.php" hash="b8b3404fbc22c288bedf66b0bae7b190"/><file name="Cache.php" hash="1867a5f5930456672ef7a12bfcd8e736"/><dir name="Catalog"><dir name="Inventory"><file name="Managestock.php" hash="c5e42ecf4a889c9837875f54164b9b70"/></dir><dir name="Search"><file name="Type.php" hash="aae25d5fd7a3e782248311064ae03c41"/></dir></dir><file name="Category.php" hash="82e006eb24f43b53d693867a1d3b48ff"/><dir name="Currency"><file name="Abstract.php" hash="de19250a810bc283823596ccc0922a3e"/><file name="Allow.php" hash="a64e5e8b9d7ef05951acfb1ea653b85a"/><file name="Base.php" hash="3a373cf75a184c1b8e29b55902bc8942"/><file name="Cron.php" hash="fc3779a5741a464bedf9aa6520039f9e"/><file name="Default.php" hash="1d2642cb4b1043e51e20e332ef83843b"/></dir><dir name="Customer"><dir name="Address"><file name="Street.php" hash="a8bc6493036ff5cc6ab3090011a4311e"/></dir><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="19ef2bc09e09cddcc40038599e5f848a"/></dir></dir><dir name="Show"><file name="Address.php" hash="77b2467a9db3c1b1e28a1eb5fa1c7371"/><file name="Customer.php" hash="13f52866cc86202ca5a615015f7a80b9"/></dir></dir><file name="Datashare.php" hash="dde6b8aa54f3c189883bba0fd4bb14df"/><dir name="Design"><file name="Exception.php" hash="5367abc0622e0d90fc0803d53c47987a"/><file name="Package.php" hash="3828020f7f75d65afc8d1f2ed014b6c7"/></dir><dir name="Email"><file name="Address.php" hash="55c8bba9b7c5c52b01837b816c9086c3"/><file name="Sender.php" hash="a1aae86d3bdd57e9eb6ed18dda800b82"/></dir><file name="Encrypted.php" hash="9fd1c53434678aa086a00c388beedcb7"/><file name="File.php" hash="c1b92557b0bc871e2f7eaa6a32d8c2b8"/><dir name="Image"><file name="Favicon.php" hash="e598b3b2df71fe801d5e459909e3cfff"/><file name="Pdf.php" hash="d8cbeac076baa65f79f9d8065737eaf4"/></dir><file name="Image.php" hash="56519bc80ee3de93ceb9da2f4b8903f1"/><dir name="Layer"><file name="Children.php" hash="6cce4117156fb587f026f367093393f9"/></dir><dir name="Locale"><file name="Timezone.php" hash="bd6e6b20ed9d61a784751deb6b7b83c3"/></dir><file name="Locale.php" hash="fd99110d3453929c0d443331d9a1b7b4"/><dir name="Log"><file name="Cron.php" hash="f371ce8b70f26012524ec40e6a77050e"/></dir><dir name="Price"><file name="Scope.php" hash="f1cd98dcaa31e438f742e09e4d4147c4"/></dir><dir name="Product"><dir name="Alert"><file name="Cron.php" hash="71e41bdea1a62aadb6523d9084d11ba5"/></dir></dir><file name="Secure.php" hash="19939aa5fffc77d9cc1b6dccb82cbac3"/><dir name="Seo"><file name="Product.php" hash="dceffb2178fad4125973ff8b0121a266"/></dir><dir name="Serialized"><file name="Array.php" hash="525a39c99013f5b39c997ed132efdfd8"/></dir><file name="Serialized.php" hash="f4be934a317c632812a056c554e013a9"/><dir name="Shipping"><file name="Tablerate.php" hash="c9b65d2c453133d39298d0a633b6723c"/></dir><dir name="Sitemap"><file name="Cron.php" hash="c1f020d04a3c009c6232dfb648bb93d9"/></dir><file name="Sitemap.php" hash="3d4311e59eb3a91681237de4fa834cf7"/><dir name="Storage"><dir name="Media"><file name="Database.php" hash="89c4d02e50dfa47635b827a4c5651ae0"/></dir></dir><file name="Store.php" hash="056b62d5932d2cb9a486686adf730875"/><file name="Translate.php" hash="fb3c4a14e3bd93e7a02c2bb72f6c1bc5"/></dir><dir name="Clone"><dir name="Media"><file name="Image.php" hash="895f7213cb681fabcb20cc220e66b0fb"/></dir></dir><dir name="Source"><dir name="Admin"><file name="Page.php" hash="63df6f7cd19aeb345109bef0fce3bf7f"/></dir><file name="Allregion.php" hash="7f2b986530d47785279ad129e077843f"/><dir name="Catalog"><file name="GridPerPage.php" hash="01793f7379ffc6a314d8248f01a399ef"/><file name="ListMode.php" hash="330aa6e30cc6af0ae967eb002866139d"/><file name="ListPerPage.php" hash="7c25f5f9161d98092e5a0338b86136c1"/><file name="ListSort.php" hash="90fd7dd5098a5fd7500655968319cd89"/><dir name="Search"><file name="Type.php" hash="cd7460a9a8fe24feae14509cb7e14ff9"/></dir><file name="TimeFormat.php" hash="4407f5204af170d5a5526de3be93cdc2"/></dir><file name="Category.php" hash="75a351752e02359a3ddd613a7d1d0cef"/><file name="Checktype.php" hash="9bbf6539969939a7a14f51b126819470"/><dir name="Cms"><file name="Page.php" hash="8e8ad9a99b034eb2dbfcf1030dd3fefa"/><dir name="Wysiwyg"><file name="Enabled.php" hash="ed4b99abc86f68f33446a63d317410df"/></dir></dir><dir name="Country"><file name="Full.php" hash="2e08c40adc6ee81e48de0be04dbf74c7"/></dir><file name="Country.php" hash="f4b3bc235393a137a6abe67d0f1e7dc5"/><dir name="Cron"><file name="Frequency.php" hash="2eed324a1fd779016c26bc446bc20339"/></dir><dir name="Currency"><file name="Service.php" hash="f5774fbe5b20f4c9380d472d91ed65a6"/></dir><file name="Currency.php" hash="e39ec52c5a2f9c535d6fbd438277ecbe"/><dir name="Customer"><file name="Group.php" hash="f6cefc71bf8bb7f47415b22698ab2c50"/></dir><dir name="Date"><file name="Short.php" hash="abafd784c5e0974e82b424d11e90849c"/></dir><dir name="Design"><file name="Package.php" hash="9b6e317ce89269a4d67de1071052ac6c"/><file name="Robots.php" hash="47a66a2854d7bad96dbe42dfd9d00bf0"/></dir><dir name="Dev"><file name="Dbautoup.php" hash="4c5f337b42628504d1c50973c034f4ed"/></dir><dir name="Email"><file name="Identity.php" hash="908037afb65b5066d380b03a80f7748a"/><file name="Method.php" hash="d4b0738a17e9c770f0c5435fe59bbc7e"/><file name="Smtpauth.php" hash="bef983d226b9c0e470ef9f0d23ba5e3d"/><file name="Template.php" hash="9cc5ca8efe618348b449ff4a42c3cce4"/></dir><file name="Enabledisable.php" hash="6d50a7da1c6c6c55f66fe4ceab7fd4b2"/><file name="Frequency.php" hash="cfc3c90613f333143f5488b53f040bfb"/><file name="Language.php" hash="bf540f4cc480f5a478ea7d16fc2510ca"/><dir name="Locale"><file name="Country.php" hash="6cc27e0b99ad2d100335ed8ff220179f"/><dir name="Currency"><file name="All.php" hash="c621e9537421ad3a5986170b542f287a"/></dir><file name="Currency.php" hash="2c590992e6658d27c4c746dff4c55e83"/><file name="Timezone.php" hash="137d0b8dc9d57d76a487495b0f4697f0"/><file name="Weekdays.php" hash="49db3e79084f308e6cbaed760d45c40a"/></dir><file name="Locale.php" hash="80718aa78c14fa9ce605153d8893ced5"/><file name="Nooptreq.php" hash="78d9fe03e9c99afb90ddb481fad78d5e"/><dir name="Notification"><file name="Frequency.php" hash="5d6577adb5697fe99061c8fe3b3273b3"/></dir><dir name="Order"><dir name="Status"><file name="New.php" hash="74376ff01c95a8bb7ecf721deea10a60"/><file name="Newprocessing.php" hash="672a7868bcbc5a374e206988d63ddfc9"/><file name="Processing.php" hash="17d0b06593aa33938588d31de24611a9"/></dir><file name="Status.php" hash="ff2083858afe2217d74e4da59a7a4052"/></dir><dir name="Payment"><file name="Allmethods.php" hash="5cc1c4529c8a7c617978dad30c289ca6"/><file name="Allowedmethods.php" hash="e95e388cfc4083b07ea0b9b734044da3"/><file name="Allspecificcountries.php" hash="4a6a639bee9ba65c103497600db23ff2"/><file name="Cctype.php" hash="7770a1826df8bd61e841784fcfaf1584"/></dir><dir name="Price"><file name="Scope.php" hash="de2557988cf846c7ba2fa602ddd6069f"/><file name="Step.php" hash="19b48ef8e77e639879c0e98508b27275"/></dir><dir name="Product"><dir name="Options"><file name="Price.php" hash="2e2754d0156d1c3fcb6fb20e57bf5609"/><file name="Type.php" hash="ad164ed35076119a996f2eaac66d4deb"/></dir><file name="Thumbnail.php" hash="91b322da2dcf44ce44732f034c984f06"/></dir><dir name="Reports"><file name="Scope.php" hash="316309dccaab073a575463ff1cb44d2d"/></dir><dir name="Shipping"><file name="Allmethods.php" hash="b49967f8b37980f6706c43df22efe0f5"/><file name="Allowedmethods.php" hash="7c0c1eebc3150da9585427b983775800"/><file name="Allspecificcountries.php" hash="1771a395c88cf9e973984982f3fc4eae"/><file name="Flatrate.php" hash="b190103f6d43b497c8dc3bed1141e81e"/><file name="Tablerate.php" hash="e2151559b95a465b063664150474f27e"/><file name="Taxclass.php" hash="5112839da106e99597c171d91e3da2ce"/></dir><dir name="Storage"><dir name="Media"><file name="Database.php" hash="860e8d3a9dfed69093731539c21bfe88"/><file name="Storage.php" hash="e215f418e6cdb7605a748a2f13342a29"/></dir></dir><file name="Store.php" hash="426cd6aa256d1becbfab128271e4cafb"/><dir name="Tax"><dir name="Apply"><file name="On.php" hash="462a71eb6c665b4cf7c25da770108ba0"/></dir><file name="Basedon.php" hash="1613d41443fe2d0cb1c996ebb6fde470"/><file name="Catalog.php" hash="d3045129852b80cb8623274d31032033"/></dir><dir name="Watermark"><file name="Position.php" hash="27a12717f5ba4ec1647f8cf1758da296"/></dir><dir name="Web"><file name="Protocol.php" hash="ecf49c52ccd1cfbedc05cbd000e53efa"/><file name="Redirect.php" hash="94bbb4b1aaeccd56f47ebb51acc8c514"/></dir><file name="Website.php" hash="cc946a86d91497e24501ac5a6fd17d47"/><file name="Yesno.php" hash="14e69c69f476500e44570d083943fcb2"/><file name="Yesnocustom.php" hash="cc558ef442cbfcff1026719a6a12648a"/></dir></dir><file name="Store.php" hash="1bab88b7774d7f4f61645783757fb164"/></dir><file name="Url.php" hash="268e0cebf0a12b9e156dad6a6ab04222"/></dir><dir name="controllers"><file name="AjaxController.php" hash="c97c24218c0693a8ec6b14b026c32513"/><dir name="Api"><file name="RoleController.php" hash="ee00787ce083dec93f014e700b0a9eda"/><file name="UserController.php" hash="91bfe8d17833e5ad73aa2db0fcfea82f"/></dir><file name="CacheController.php" hash="6356f29ef22492dd9ba2640cd6443fd4"/><dir name="Catalog"><dir name="Category"><file name="WidgetController.php" hash="4afd9f8676521b3402e850da7a3b9fbd"/></dir><file name="CategoryController.php" hash="0f852810d8785a62868f8aee31ce31ff"/><dir name="Product"><dir name="Action"><file name="AttributeController.php" hash="a7528ba89a13f1c2de1a5828e7420e84"/></dir><file name="AttributeController.php" hash="3ef712380e2c713ac288e6d2ffa08de0"/><file name="DatafeedsController.php" hash="bd606c78f4bd4f1ab990c7960852e1d4"/><file name="GalleryController.php" hash="6abb7351b4881646985dcc46a51c2078"/><file name="GroupController.php" hash="a53273007a70478bb4611a89955bb7a4"/><file name="ReviewController.php" hash="83058cacf209f0fcead8847004de0e15"/><file name="SetController.php" hash="ea870a00b8331a70b241b9cd09449936"/><file name="WidgetController.php" hash="771d37e91f87b3343b41858ae705ee3a"/></dir><file name="ProductController.php" hash="ab56c7201c08434ab701d3de70790c48"/><file name="SearchController.php" hash="278f477d544a14426d62ca6a6ccbf160"/></dir><file name="CatalogController.php" hash="f1329fb4fa54c1577a81886cb6b8f000"/><dir name="Checkout"><file name="AgreementController.php" hash="9b4894ac536d158bcb027cbaa5974ec1"/></dir><dir name="Cms"><dir name="Block"><file name="WidgetController.php" hash="8589afede5d5f1add112bc5d12afa2c5"/></dir><file name="BlockController.php" hash="3108e04140fd44e92ed66c43b0e13329"/><dir name="Page"><file name="WidgetController.php" hash="a917e6c174517c65f126fbd1d2cbdfaa"/></dir><file name="PageController.php" hash="7c23a8b3fbf5e5e687a439ff5dbb9bc2"/><dir name="Wysiwyg"><file name="ImagesController.php" hash="af6576af29aacfed41faab40e539f798"/></dir><file name="WysiwygController.php" hash="8a3a4f3b63494fa6e60561e27c5eca94"/></dir><dir name="Customer"><dir name="Cart"><dir name="Product"><dir name="Composite"><file name="CartController.php" hash="3542ac711e4697355680f5082f78eb59"/></dir></dir></dir><file name="ConfigController.php" hash="abada385b1049a6de89a51a7d942abd7"/><file name="GroupController.php" hash="c70d70a3201802fac9b987df38de284b"/><file name="OnlineController.php" hash="5b8d63050a9233e82f278c9c3273c9e4"/><dir name="Wishlist"><dir name="Product"><dir name="Composite"><file name="WishlistController.php" hash="bd76cdd817cf5902af6080ba1a7dce00"/></dir></dir></dir></dir><file name="CustomerController.php" hash="882014461c5427dff81eb12c69adfd30"/><file name="DashboardController.php" hash="ab591a2944a8edf8fc3c53e90a44ee91"/><file name="IndexController.php" hash="6890ef69de32d66bb7c46b18cf640869"/><file name="JsonController.php" hash="d47f5af35d581e0ec3fe07010da06e96"/><dir name="Media"><file name="EditorController.php" hash="3bc17d2ceef67acb1630ade45b0b4a9d"/><file name="UploaderController.php" hash="98273d5ae3c5121658e55235f09d5346"/></dir><dir name="Newsletter"><file name="ProblemController.php" hash="9bd5ee48c4c9231937501a1a1b93feb2"/><file name="QueueController.php" hash="cd0aa3234cf0e815f7020ac4477e8c8c"/><file name="SubscriberController.php" hash="485662ddbf90ba172250b50d7dd5cfa2"/><file name="TemplateController.php" hash="f001a04bf7d018bcba96704c9351b044"/></dir><file name="NotificationController.php" hash="8eac077b5b274ab2f7a2f86867d4052f"/><dir name="Permissions"><file name="RoleController.php" hash="d081ce45a976381ff37a180851124b37"/><file name="UserController.php" hash="e3aec3d2c8415a3673b4382a2c271498"/></dir><dir name="Poll"><file name="AnswerController.php" hash="420a1b7fb7077c8832dd7140139e23bc"/></dir><file name="PollController.php" hash="4a92a7291eb88f0af7b64e4bdf54a849"/><dir name="Promo"><file name="CatalogController.php" hash="3ae606872a5ea73dea199f101cc5e8ab"/><file name="QuoteController.php" hash="3d854c6e78bd7ebecdb2c755e73c0465"/><file name="WidgetController.php" hash="0951eb37fb6d103b100eec2805490f10"/></dir><file name="PromoController.php" hash="9bdbcb30f83c54fbb23d51a9a3efd992"/><file name="RatingController.php" hash="43635925aaa3b23d774250e67f889687"/><dir name="Report"><file name="CustomerController.php" hash="8415dd94dba840c55039b47871108505"/><file name="ProductController.php" hash="cf07c4fc1e77d67cdeee562ce55646a1"/><file name="ReviewController.php" hash="4ec9c4f1b79ba4aa27f33214ffe4c39b"/><file name="SalesController.php" hash="fd238e1ab42b7465108597628ec49c35"/><file name="ShopcartController.php" hash="3a00a057320b2b2702d559c6c9ffbcf2"/><file name="StatisticsController.php" hash="13c17f74c3c1af1b4da9957f34ebb35e"/><file name="TagController.php" hash="98b7579e022082038b9d3d0fc24f2090"/></dir><file name="ReportController.php" hash="ba9be2559533aca019de844c60f8f444"/><dir name="Rss"><file name="CatalogController.php" hash="d96762a0d60415a78b2ed221b1b12d84"/><file name="OrderController.php" hash="3238141ab1a010221252dd782178c54b"/></dir><dir name="Sales"><dir name="Billing"><file name="AgreementController.php" hash="6af5bdf5f1001dcfb1e107f629e2b4e1"/></dir><file name="CreditmemoController.php" hash="97c73525a7b6db2c141aeffc5f82c633"/><file name="InvoiceController.php" hash="12b9bc5e0e248052f65b8d66cc178ee1"/><dir name="Order"><file name="CreateController.php" hash="76a01aaecf5cbd742fdf5c81ec424324"/><file name="CreditmemoController.php" hash="800adc7f7f0bec9b394bb3decdb6a660"/><file name="EditController.php" hash="905d1ddf247dbc77f279dc018a91c1d7"/><file name="InvoiceController.php" hash="79b31f2adf67c38c5f0fc0e4883b0554"/><file name="ShipmentController.php" hash="0b1213170ee4418d631d32722cf990f3"/><file name="StatusController.php" hash="26c2c30cef92b173d889351fcdfb6371"/><dir name="View"><file name="GiftmessageController.php" hash="0bcda2b58e1a4d8e4974a248685b9356"/></dir></dir><file name="OrderController.php" hash="e7a85adf515d06739eca7dc430756723"/><dir name="Recurring"><file name="ProfileController.php" hash="f00832de963380b9536d1e9b2c5cc396"/></dir><file name="ShipmentController.php" hash="9d651f012ada8f2419f7eb2b209da5eb"/><file name="TransactionsController.php" hash="a4aa9cf9267962337ba3ab076d9056eb"/></dir><file name="SalesController.php" hash="0a62f7c0f973cbdd49536d88e863a0a6"/><file name="SitemapController.php" hash="ff25fecd6479b518ee28c8f2b0ada0dc"/><file name="SurveyController.php" hash="0464dc07f74185162c664014e621be1e"/><dir name="System"><file name="AccountController.php" hash="5c7b8384d78aadfd4e5b5a3e823bed4b"/><file name="BackupController.php" hash="f7beda3c1fe1aad1e6ed72ccd8862f92"/><file name="CacheController.php" hash="a424633376f6c588ce195277abe44d74"/><dir name="Config"><dir name="System"><file name="StorageController.php" hash="17824c2fb28239d70e0f8b2ec039927d"/></dir></dir><file name="ConfigController.php" hash="479b11235f410dde7d6a1b3e68bb59cb"/><dir name="Convert"><file name="GuiController.php" hash="cc7245b6a6ccecfe4cfaafd3a3cc3049"/><file name="ProfileController.php" hash="fde3d8fd6fca84ae9111b273402be5c0"/></dir><file name="CurrencyController.php" hash="00053f1c29f77d85dfcc37615f91a57a"/><file name="DesignController.php" hash="60d921d11cc4ea88c59ebe2c071f4aff"/><dir name="Email"><file name="TemplateController.php" hash="d5dac2bf1feede9be0915d91dc3dc6e3"/></dir><file name="StoreController.php" hash="a520738f1e9b97b1febfae271ed31b72"/><file name="VariableController.php" hash="25a62fd72d1445d05528871e273e6880"/></dir><file name="SystemController.php" hash="2ae418c11d6c331f50cb99cc930e18d8"/><file name="TagController.php" hash="f67f8a6abfc2af144cfcd720f0f36fe3"/><dir name="Tax"><dir name="Class"><file name="CustomerController.php" hash="b8bec24cd35862b0f33389ff29d73f20"/><file name="ProductController.php" hash="7fa9ba7c464c48a387ea0c273d3aa82a"/></dir><file name="ClassController.php" hash="cfac77635d3b312659afda61445a3fec"/><file name="RateController.php" hash="b70c9298279afbeadb9f654304649595"/><file name="RuleController.php" hash="7cf0cc2eacb5415f196b78882ea367fa"/></dir><file name="UrlrewriteController.php" hash="397ed85c4f64b7c117094cfcaa65e705"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0d7919f1ffba84ba2ad012fe71894094"/><file name="config.xml" hash="cee0ec81557488c665e7758fa73eb3aa"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Adminhtml.csv" hash="bdd9bf8419100b4ccae936f79a363cf8"/></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.2.0</min><max>1.7.0.0</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1</min><max>1.52</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.6.0.0</min><max>1.7.0.0</max></package><package><name>Lib_LinLibertineFont</name><channel>community</channel><min>2.8.14.0</min><max>2.9.0.0</max></package><package><name>Lib_Js_TinyMCE</name><channel>community</channel><min>3.3.7.0</min><max>3.3.8.0</max></package></required></dependencies>
18
  </package>