Mage_Core_Adminhtml - Version 1.9.3.5

Version Notes

1.9.3.5

Download this release

Release Info

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


Code changes from version 1.9.3.4 to 1.9.3.5

app/code/core/Mage/Adminhtml/Block/Notification/Grid/Renderer/Notice.php CHANGED
@@ -43,7 +43,7 @@ class Mage_Adminhtml_Block_Notification_Grid_Renderer_Notice
43
  */
44
  public function render(Varien_Object $row)
45
  {
46
- return '<span class="grid-row-title">' . $row->getTitle() . '</span>'
47
- . ($row->getDescription() ? '<br />' . $row->getDescription() : '');
48
  }
49
  }
43
  */
44
  public function render(Varien_Object $row)
45
  {
46
+ return '<span class="grid-row-title">' . $this->escapeHtml($row->getTitle()) . '</span>'
47
+ . ($row->getDescription() ? '<br />' . $this->escapeHtml($row->getDescription()) : '');
48
  }
49
  }
app/code/core/Mage/Adminhtml/Block/Widget/Form/Container.php CHANGED
@@ -108,7 +108,10 @@ class Mage_Adminhtml_Block_Widget_Form_Container extends Mage_Adminhtml_Block_Wi
108
 
109
  public function getDeleteUrl()
110
  {
111
- return $this->getUrl('*/*/delete', array($this->_objectId => $this->getRequest()->getParam($this->_objectId)));
 
 
 
112
  }
113
 
114
  /**
108
 
109
  public function getDeleteUrl()
110
  {
111
+ return $this->getUrl('*/*/delete', array(
112
+ $this->_objectId => $this->getRequest()->getParam($this->_objectId),
113
+ Mage_Core_Model_Url::FORM_KEY => $this->getFormKey()
114
+ ));
115
  }
116
 
117
  /**
app/code/core/Mage/Adminhtml/Controller/Action.php CHANGED
@@ -50,6 +50,13 @@ class Mage_Adminhtml_Controller_Action extends Mage_Core_Controller_Varien_Actio
50
  */
51
  protected $_publicActions = array();
52
 
 
 
 
 
 
 
 
53
  /**
54
  * Used module name in current adminhtml controller
55
  */
@@ -162,7 +169,7 @@ class Mage_Adminhtml_Controller_Action extends Mage_Core_Controller_Varien_Actio
162
  $_isValidSecretKey = true;
163
  $_keyErrorMsg = '';
164
  if (Mage::getSingleton('admin/session')->isLoggedIn()) {
165
- if ($this->getRequest()->isPost()) {
166
  $_isValidFormKey = $this->_validateFormKey();
167
  $_keyErrorMsg = Mage::helper('adminhtml')->__('Invalid Form Key. Please refresh the page.');
168
  } elseif (Mage::getSingleton('adminhtml/url')->useSecretKey()) {
@@ -179,6 +186,9 @@ class Mage_Adminhtml_Controller_Action extends Mage_Core_Controller_Varien_Actio
179
  'message' => $_keyErrorMsg
180
  )));
181
  } else {
 
 
 
182
  $this->_redirect( Mage::getSingleton('admin/session')->getUser()->getStartupPageUrl() );
183
  }
184
  return $this;
@@ -397,4 +407,27 @@ class Mage_Adminhtml_Controller_Action extends Mage_Core_Controller_Varien_Actio
397
  $user = Mage::getSingleton('admin/session')->getUser();
398
  return $user->validateCurrentPassword($password);
399
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400
  }
50
  */
51
  protected $_publicActions = array();
52
 
53
+ /**
54
+ *Array of actions which can't be processed without form key validation
55
+ *
56
+ * @var array
57
+ */
58
+ protected $_forcedFormKeyActions = array();
59
+
60
  /**
61
  * Used module name in current adminhtml controller
62
  */
169
  $_isValidSecretKey = true;
170
  $_keyErrorMsg = '';
171
  if (Mage::getSingleton('admin/session')->isLoggedIn()) {
172
+ if ($this->getRequest()->isPost() || $this->_checkIsForcedFormKeyAction()) {
173
  $_isValidFormKey = $this->_validateFormKey();
174
  $_keyErrorMsg = Mage::helper('adminhtml')->__('Invalid Form Key. Please refresh the page.');
175
  } elseif (Mage::getSingleton('adminhtml/url')->useSecretKey()) {
186
  'message' => $_keyErrorMsg
187
  )));
188
  } else {
189
+ if ($_keyErrorMsg != ''){
190
+ Mage::getSingleton('adminhtml/session')->addError($_keyErrorMsg);
191
+ }
192
  $this->_redirect( Mage::getSingleton('admin/session')->getUser()->getStartupPageUrl() );
193
  }
194
  return $this;
407
  $user = Mage::getSingleton('admin/session')->getUser();
408
  return $user->validateCurrentPassword($password);
409
  }
410
+
411
+ /**
412
+ * Check forced use form key for action
413
+ *
414
+ * @return bool
415
+ */
416
+ protected function _checkIsForcedFormKeyAction()
417
+ {
418
+ return in_array($this->getRequest()->getActionName(), $this->_forcedFormKeyActions);
419
+ }
420
+
421
+ /**
422
+ * Set actions name for forced use form key
423
+ *
424
+ * @param array | string $actionNames - action names for forced use form key
425
+ */
426
+ protected function _setForcedFormKeyActions($actionNames)
427
+ {
428
+ $actionNames = (is_array($actionNames)) ? $actionNames: (array)$actionNames;
429
+ $actionNames = array_merge($this->_forcedFormKeyActions, $actionNames);
430
+ $actionNames = array_unique($actionNames);
431
+ $this->_forcedFormKeyActions = $actionNames;
432
+ }
433
  }
app/code/core/Mage/Adminhtml/Model/LayoutUpdate/Validator.php CHANGED
@@ -37,6 +37,7 @@
37
  class Mage_Adminhtml_Model_LayoutUpdate_Validator extends Zend_Validate_Abstract
38
  {
39
  const XML_INVALID = 'invalidXml';
 
40
  const PROTECTED_ATTR_HELPER_IN_TAG_ACTION_VAR = 'protectedAttrHelperInActionVar';
41
 
42
  /**
@@ -75,6 +76,9 @@ class Mage_Adminhtml_Model_LayoutUpdate_Validator extends Zend_Validate_Abstract
75
  self::PROTECTED_ATTR_HELPER_IN_TAG_ACTION_VAR =>
76
  Mage::helper('adminhtml')->__('Helper attributes should not be used in custom layout updates.'),
77
  self::XML_INVALID => Mage::helper('adminhtml')->__('XML data is invalid.'),
 
 
 
78
  );
79
  }
80
  return $this;
@@ -109,6 +113,15 @@ class Mage_Adminhtml_Model_LayoutUpdate_Validator extends Zend_Validate_Abstract
109
  Mage::helper('adminhtml')->__('XML object is not instance of "Varien_Simplexml_Element".'));
110
  }
111
 
 
 
 
 
 
 
 
 
 
112
  $this->_setValue($value);
113
 
114
  foreach ($this->_protectedExpressions as $key => $xpr) {
@@ -119,4 +132,19 @@ class Mage_Adminhtml_Model_LayoutUpdate_Validator extends Zend_Validate_Abstract
119
  }
120
  return true;
121
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  }
37
  class Mage_Adminhtml_Model_LayoutUpdate_Validator extends Zend_Validate_Abstract
38
  {
39
  const XML_INVALID = 'invalidXml';
40
+ const INVALID_TEMPLATE_PATH = 'invalidTemplatePath';
41
  const PROTECTED_ATTR_HELPER_IN_TAG_ACTION_VAR = 'protectedAttrHelperInActionVar';
42
 
43
  /**
76
  self::PROTECTED_ATTR_HELPER_IN_TAG_ACTION_VAR =>
77
  Mage::helper('adminhtml')->__('Helper attributes should not be used in custom layout updates.'),
78
  self::XML_INVALID => Mage::helper('adminhtml')->__('XML data is invalid.'),
79
+ self::INVALID_TEMPLATE_PATH => Mage::helper('adminhtml')->__(
80
+ 'Invalid template path used in layout update.'
81
+ ),
82
  );
83
  }
84
  return $this;
113
  Mage::helper('adminhtml')->__('XML object is not instance of "Varien_Simplexml_Element".'));
114
  }
115
 
116
+ // if layout update declare custom templates then validate their paths
117
+ if ($templatePaths = $value->xpath('*//template | *//@template | //*[@method=\'setTemplate\']/*')) {
118
+ try {
119
+ $this->_validateTemplatePath($templatePaths);
120
+ } catch (Exception $e) {
121
+ $this->_error(self::INVALID_TEMPLATE_PATH);
122
+ return false;
123
+ }
124
+ }
125
  $this->_setValue($value);
126
 
127
  foreach ($this->_protectedExpressions as $key => $xpr) {
132
  }
133
  return true;
134
  }
135
+
136
+ /**
137
+ * Validate template path for preventing access to the directory above
138
+ * If template path value has "../" @throws Exception
139
+ *
140
+ * @param $templatePaths | array
141
+ */
142
+ protected function _validateTemplatePath(array $templatePaths)
143
+ {
144
+ foreach ($templatePaths as $path) {
145
+ if (strpos($path, '../') !== false) {
146
+ throw new Exception();
147
+ }
148
+ }
149
+ }
150
  }
app/code/core/Mage/Adminhtml/controllers/CustomerController.php CHANGED
@@ -33,6 +33,16 @@
33
  */
34
  class Mage_Adminhtml_CustomerController extends Mage_Adminhtml_Controller_Action
35
  {
 
 
 
 
 
 
 
 
 
 
36
 
37
  protected function _initCustomer($idFieldName = 'id')
38
  {
33
  */
34
  class Mage_Adminhtml_CustomerController extends Mage_Adminhtml_Controller_Action
35
  {
36
+ /**
37
+ * Controller predispatch method
38
+ *
39
+ * @return Mage_Adminhtml_Controller_Action
40
+ */
41
+ public function preDispatch()
42
+ {
43
+ $this->_setForcedFormKeyActions('delete');
44
+ return parent::preDispatch();
45
+ }
46
 
47
  protected function _initCustomer($idFieldName = 'id')
48
  {
app/code/core/Mage/Adminhtml/controllers/Newsletter/QueueController.php CHANGED
@@ -63,6 +63,10 @@ class Mage_Adminhtml_Newsletter_QueueController extends Mage_Adminhtml_Controlle
63
  */
64
  public function dropAction ()
65
  {
 
 
 
 
66
  $this->loadLayout('newsletter_queue_preview');
67
  $this->renderLayout();
68
  }
63
  */
64
  public function dropAction ()
65
  {
66
+ $request = $this->getRequest();
67
+ if ($request->getParam('text') && !$request->getPost('text')) {
68
+ $this->getResponse()->setRedirect($this->getUrl('*/newsletter_queue'));
69
+ }
70
  $this->loadLayout('newsletter_queue_preview');
71
  $this->renderLayout();
72
  }
app/code/core/Mage/Adminhtml/controllers/Newsletter/TemplateController.php CHANGED
@@ -142,6 +142,10 @@ class Mage_Adminhtml_Newsletter_TemplateController extends Mage_Adminhtml_Contro
142
  */
143
  public function dropAction ()
144
  {
 
 
 
 
145
  $this->loadLayout('newsletter_template_preview');
146
  $this->renderLayout();
147
  }
142
  */
143
  public function dropAction ()
144
  {
145
+ $request = $this->getRequest();
146
+ if ($request->getParam('text') && !$request->getPost('text')) {
147
+ $this->getResponse()->setRedirect($this->getUrl('*/newsletter_template'));
148
+ }
149
  $this->loadLayout('newsletter_template_preview');
150
  $this->renderLayout();
151
  }
app/locale/en_US/Mage_Adminhtml.csv CHANGED
@@ -494,6 +494,7 @@
494
  "Invalid password reset token.","Invalid password reset token."
495
  "Invalid response","Invalid response"
496
  "Invalid sender name ""%s"". Please use only visible characters and spaces.","Invalid sender name ""%s"". Please use only visible characters and spaces."
 
497
  "Invalid timezone","Invalid timezone"
498
  "Invalidated","Invalidated"
499
  "Inventory Stock Status","Inventory Stock Status"
494
  "Invalid password reset token.","Invalid password reset token."
495
  "Invalid response","Invalid response"
496
  "Invalid sender name ""%s"". Please use only visible characters and spaces.","Invalid sender name ""%s"". Please use only visible characters and spaces."
497
+ "Invalid template path used in layout update.","Invalid template path used in layout update."
498
  "Invalid timezone","Invalid timezone"
499
  "Invalidated","Invalidated"
500
  "Inventory Stock Status","Inventory Stock Status"
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Adminhtml</name>
4
- <version>1.9.3.4</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.9.3.4</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2017-07-07</date>
14
- <time>13:01:38</time>
15
- <contents><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><file name="Abstract.php" hash="a0774e0df8216d1631fe2f4428ffdc38"/><dir name="Api"><file name="Buttons.php" hash="7b65a0d74c88025cb2024a967a278266"/><file name="Editroles.php" hash="a19cce95a5dea1510c2d7ee6a8c20dc1"/><file name="Edituser.php" hash="4544fe3f91ba29c3ef4bb972c2b9c6ed"/><dir name="Grid"><file name="Role.php" hash="890f0f1fddc0487dadeb2701215967ad"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="9fe490ca6d241719c77cb7f329584152"/></dir></dir><file name="Role.php" hash="dec91e13bf9a9574cdb08e969aba3d5f"/><file name="Roles.php" hash="485b25c20270792a2b4c99910a94d7b0"/><dir name="Tab"><file name="Roleinfo.php" hash="730e9caf4ed842b5d71f344ef17fa123"/><file name="Rolesedit.php" hash="d526b760b88cc6c6810ce96fec773bbe"/><file name="Rolesusers.php" hash="6a40ef9870095cced0fc087898a55706"/><file name="Userroles.php" hash="e5908914f2680faa96bbb5b4f7282a86"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="f88ec31ae5c723ead6a7e7d9e905e873"/><dir name="Tab"><file name="Main.php" hash="4061f3cd8227eab9fa16bf99433618d7"/><file name="Roles.php" hash="66579ebc160a55a02f221b20001e9be5"/></dir><file name="Tabs.php" hash="bab543f959ec9907b0b6bd71c1baabb5"/></dir><file name="Edit.php" hash="e6eaa797ff9a60514de9b6f24cdf4443"/><file name="Grid.php" hash="d1e5e46f74dbbfd386d7700e8ee1c422"/></dir><file name="User.php" hash="449c8f8ed95930d5a5476fbac03062c4"/><file name="Users.php" hash="a0418c7c52dbe42d2ebf3c6b9b3a5481"/></dir><dir name="Backup"><file name="Dialogs.php" hash="09ffe99ff067c5b14355133b6a517cc5"/><file name="Grid.php" hash="e9be9bd13785cecf645e2dee3e7fe80d"/></dir><file name="Backup.php" hash="dae60084f687e446989c5e6e5877a221"/><dir name="Cache"><file name="Additional.php" hash="60bd1f486a711299a648c083c200a49a"/><file name="Grid.php" hash="33c6e54c2d4c5b2f475d1d2f442e81ee"/><file name="Notifications.php" hash="9660ffd8b195cc73a5d02c41678a34e3"/></dir><file name="Cache.php" hash="4c2ecf5f5129f6d4c0c185a491a6ea1f"/><dir name="Catalog"><dir name="Category"><file name="Abstract.php" hash="35c4924741fb73a4e718ba31d30eacf4"/><dir name="Checkboxes"><file name="Tree.php" hash="b2d087820c32ef9d4fb819dfc20ca11c"/></dir><dir name="Edit"><file name="Form.php" hash="d32ef06d09732f315398f9475b07e07e"/></dir><file name="Edit.php" hash="6dcdfbadde697b9136064a763ae8945a"/><dir name="Helper"><file name="Image.php" hash="f5dcc2f8b43a57d733b4436747def107"/><file name="Pricestep.php" hash="70cac01a0fedbd899b950ff9ac579003"/><dir name="Sortby"><file name="Available.php" hash="6bcad3ca55509f141045e6c7bb09979e"/><file name="Default.php" hash="d27f2b23c43345ce49cd9b61fb6ebf8f"/></dir></dir><dir name="Tab"><file name="Attributes.php" hash="93dfb873bf0ca67ef6ec067cda806b2b"/><file name="Design.php" hash="a3c74ec474f87c642fc034943fbc0a4d"/><file name="General.php" hash="556d192a08a2685ec457bdb159726cae"/><file name="Product.php" hash="4c7eb45465135b06f1c3520abde72a08"/></dir><file name="Tabs.php" hash="6e289f1e7c8f662e7890f52c3fedf2eb"/><file name="Tree.php" hash="4789ad812f9b8c0396baa40ac4b6ce6e"/><dir name="Widget"><file name="Chooser.php" hash="36683c271486db6f2366d626aeb8c40a"/></dir></dir><dir name="Form"><dir name="Renderer"><dir name="Attribute"><file name="Urlkey.php" hash="b51bf8c6399b47e8643670a1b8812e32"/></dir><dir name="Config"><file name="DateFieldsOrder.php" hash="53c9ab8a3281f98b5a90fd9a22791f85"/><file name="YearRange.php" hash="517e9c263bcc62fab3b673a020b0d9e7"/></dir><dir name="Fieldset"><file name="Element.php" hash="ddf65a02e2c92b2425cf797a1e27dc09"/></dir></dir></dir><file name="Form.php" hash="229a3c16dd8c1d7f45bb3ab003a3b733"/><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="1e8532dd45ca8b2c2ba2158147268126"/></dir><file name="Wysiwyg.php" hash="54b9274daeabc46ba863c295234f56e2"/></dir></dir><dir name="Product"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="be4e1ea39be954ca0bd5f61d4813267c"/><dir name="Tab"><file name="Front.php" hash="1b3d1efb81c2f24639f459ad9847d0f2"/><file name="Main.php" hash="2fc2c3c76fd2d63e9a210d790e300ee8"/><file name="Options.php" hash="3468ab399d39d7c4e54b467736102393"/><file name="System.php" hash="8fb21a5c8a169c0b29f576e45a4f3244"/></dir><file name="Tabs.php" hash="2ed2b6b6d74ce5a6e34a16882951f747"/></dir><file name="Edit.php" hash="adeeca630d01e8c0d206ddd87a0db8bd"/><file name="Grid.php" hash="ae1d64ccafd116306a59f94c0125e252"/><dir name="New"><dir name="Product"><file name="Attributes.php" hash="2a372079b99b3f78725f2db2232327c3"/><file name="Created.php" hash="de7aadc3c750fa174d4f710c7e7154c6"/></dir></dir><dir name="Set"><file name="Grid.php" hash="21bd1adfdeca56a58f5f5f3f77fa19c7"/><dir name="Main"><file name="Formattribute.php" hash="1e3a87fc41c95bbe630717fac6b9849c"/><file name="Formgroup.php" hash="cc45dcc01dfbf82c5580828365442e63"/><file name="Formset.php" hash="da93cca431b9a67208eb169cef4b1390"/><dir name="Tree"><file name="Attribute.php" hash="ce4b683ee3d52f04e18cf931658ee03b"/><file name="Group.php" hash="e8607f5d3e9a5ea691d1f11ae5bfba8d"/></dir></dir><file name="Main.php" hash="63caeb7337db0d1b67c713fbe092259a"/><dir name="Toolbar"><file name="Add.php" hash="109d505f4e72f4559fb372e2dca37211"/><dir name="Main"><file name="Filter.php" hash="1420b1c8f4ee170578299108f021cea3"/></dir><file name="Main.php" hash="2c4f4c19902fb9dcc0c5a72298653267"/></dir></dir></dir><file name="Attribute.php" hash="ac5de9bae1715cd1f4ec0005c2bed9a8"/><dir name="Composite"><file name="Configure.php" hash="58d232736fade8b83628bdff70e98f64"/><file name="Error.php" hash="3d82bff4ea9f32dbb9805d612e4e58a3"/><dir name="Fieldset"><file name="Configurable.php" hash="8fbd4a55366ea2fde1d51c1b4cc37d09"/><file name="Grouped.php" hash="4e98c73220b4e7cfacb717a2e0867a95"/><file name="Options.php" hash="5bc993482eaa29be0155440a137d1b2d"/><file name="Qty.php" hash="99aafe0da8a25c6765c533bf2a6df6a3"/></dir><file name="Fieldset.php" hash="b373ef7a34dc33b9fc5da9caf6660d1d"/><dir name="Update"><file name="Result.php" hash="84f650eb0cbbc5417bbc061e9b98f247"/></dir></dir><file name="Created.php" hash="778bc7544e0db8128629055227e1d249"/><dir name="Edit"><dir name="Action"><dir name="Attribute"><dir name="Tab"><file name="Attributes.php" hash="079cc9dc70bd41bc82ac56f30d741328"/><file name="Inventory.php" hash="30ddff9e9cf321cfcc279a8e94a95655"/><file name="Websites.php" hash="8439bcfd0aecc0f65e6048f3addc7f78"/></dir><file name="Tabs.php" hash="c87d30037eeb22295975724f2dc27612"/></dir><file name="Attribute.php" hash="517f58103223236358a3e652d914af38"/></dir><file name="Js.php" hash="8d1cb0c48917736927350aea021e0340"/><dir name="Tab"><dir name="Ajax"><file name="Serializer.php" hash="bfccfd2b8b21061b6d4b8b6ef0636ea8"/></dir><dir name="Alerts"><file name="Price.php" hash="a8a83aab6af2bea7a7f19c800b6b8274"/><file name="Stock.php" hash="806311a84cb7c2097271dda84c31ab11"/></dir><file name="Alerts.php" hash="3b96a5bbb4c4a7c3acdc4b9180b405ae"/><dir name="Attributes"><file name="Create.php" hash="b5780228433c8d788718b7db7cec90dd"/></dir><file name="Attributes.php" hash="5a7af90af1ba85dca75961a729ad39c1"/><file name="Categories.php" hash="093d803a312ea37c24b881fa16df2880"/><file name="Crosssell.php" hash="eb9e4f9027de4a64aed02fc7f50ef964"/><file name="Inventory.php" hash="9dca7668cbb72ab5dbacef87eb3340b6"/><dir name="Options"><file name="Option.php" hash="21272fbfdf814665837f3be2024adad9"/><dir name="Type"><file name="Abstract.php" hash="4d159463827fe9dbbc87b07730ee8778"/><file name="Date.php" hash="c6a0da4875100cc6b18329f5751f69ea"/><file name="File.php" hash="5777294a34b09e93f818e8011319e741"/><file name="Select.php" hash="7d9f4ed8f1c973e0a6ddd8d69a6309b5"/><file name="Text.php" hash="e4b21e633b53fe6802e530b38ccbdd82"/></dir></dir><file name="Options.php" hash="e3e14591448b493609aca4bc7b297c67"/><dir name="Price"><dir name="Group"><file name="Abstract.php" hash="4fdcac5cd99d519c022d378de247fe31"/></dir><file name="Group.php" hash="93a4c298c2d7b3b299e489a4f83d8c33"/><file name="Recurring.php" hash="455ca797d2da60ec12bcbf5f2dd2c6d4"/><file name="Tier.php" hash="da13f42ee3e34e14337cc306c20a7dec"/></dir><file name="Price.php" hash="d3e1e28d020db7485e8c17faa0c21c1c"/><file name="Related.php" hash="9d187fbcc5746dab75144f4d6daae22e"/><file name="Reviews.php" hash="dd70ef46a65c6c697dd78642b6e2e6cd"/><file name="Settings.php" hash="c040bfc417ce68f4613032e3488e7394"/><dir name="Super"><dir name="Config"><dir name="Grid"><dir name="Filter"><file name="Inventory.php" hash="560faefd512b017eecc4fa1db7159088"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="74173abb01bcc4b34f7a6edf0248962d"/><file name="Inventory.php" hash="95fe4e6db8d06e698787164e1ca721ad"/></dir></dir><file name="Grid.php" hash="d6fde5650cbe1fdb2b7e989db3c86e9c"/><file name="Simple.php" hash="57c0c9b8da8b8fe6b825d58bb6bc9e4b"/></dir><file name="Config.php" hash="21b11ac87934cb9f810e7cf3b4984070"/><file name="Group.php" hash="6978a1d57485a215ff59a39c812383d8"/><file name="Settings.php" hash="decb3f1e71a1af80eaa4744a858a2f4c"/></dir><dir name="Tag"><file name="Customer.php" hash="9b2791d6863c26d07922d00e61b1998f"/></dir><file name="Tag.php" hash="b6b03c4412b36cce23e2b87cf4c5f1f4"/><file name="Upsell.php" hash="45bca3745f612629ef0a0786ba71bf52"/><file name="Websites.php" hash="c61c330b940960b33d1ff167f27cd2e5"/></dir><dir name="Tabs"><file name="Configurable.php" hash="bbc985cf60e1575ad44d706bf6968672"/><file name="Grouped.php" hash="4be592c2b02f4b69157e05d9b86cff14"/></dir><file name="Tabs.php" hash="d69dd0e502d25ff260fde500d998a042"/></dir><file name="Edit.php" hash="32fd13eb99c207d627bbd1ed06075d90"/><dir name="Frontend"><dir name="Product"><file name="Watermark.php" hash="a93a8fdc819557b2491904a761eba4af"/></dir></dir><file name="Grid.php" hash="0349498c0aa4b0f34e86de3a16755ca9"/><dir name="Helper"><dir name="Form"><file name="Apply.php" hash="64bd1d588103cf59cbfb04a1ad8a524c"/><file name="Boolean.php" hash="6487a565b1e7897af2cc7dd6a56260eb"/><file name="Config.php" hash="ce5fd5104c1039feac68ca51b6e582b0"/><dir name="Gallery"><file name="Content.php" hash="5fe620043f4eba544e4668973e606f4c"/></dir><file name="Gallery.php" hash="6275dfdf2962ed917c6cb9563ba980de"/><file name="Image.php" hash="e68483cce55c288bc665e69f5084fda1"/><dir name="Msrp"><file name="Enabled.php" hash="288404328d137bc3a06fec900b5c1a80"/><file name="Price.php" hash="7580db84cc94c35b7e63c1350d31a5ac"/></dir><file name="Price.php" hash="0c0295a4e3a32535f2dcc05a7bd513b4"/><file name="Weight.php" hash="63827e040b18f79f58993c425eaa6810"/></dir></dir><file name="Price.php" hash="0fbac7592bfac1b9e5d0ad89ac72da0a"/><dir name="Widget"><dir name="Chooser"><file name="Container.php" hash="35f1fe88eb7cd1355c1fce77db4bfcac"/></dir><file name="Chooser.php" hash="345b0eaa58eb134cf90e1bffb0f8eaf7"/></dir></dir><file name="Product.php" hash="1d5f21737d6463bfdef7b2ff836457ef"/><dir name="Search"><dir name="Edit"><file name="Form.php" hash="ef7ac93031738cb1743a8676e2b2c403"/></dir><file name="Edit.php" hash="b5959b2514ef1ecd7e92afc379ac928b"/><file name="Grid.php" hash="6ded40b48bda95cf4c3c4293316ef42e"/></dir><file name="Search.php" hash="f67c71ec634a306be80a0b4e428559d7"/></dir><file name="Catalog.php" hash="0c9cfd68ded77813eeebce23eee18a9c"/><dir name="Checkout"><dir name="Agreement"><dir name="Edit"><file name="Form.php" hash="b65a105d2bb822fe3e06b31837bf9181"/></dir><file name="Edit.php" hash="5aabbee6dad64a9c7a95e51c0db22044"/><file name="Grid.php" hash="0c1f4dccf1c4a308e19a645eef7d47b2"/></dir><file name="Agreement.php" hash="aa1eae3f0d3abf84666dadc705ff733e"/><file name="Formkey.php" hash="a8f091bfa081dae41b785105e4026621"/></dir><dir name="Cms"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="b5b69caf4700bf74109488f2b2707722"/></dir><file name="Edit.php" hash="1c1e6330e5a07e5fe1be265c225bbf57"/><file name="Grid.php" hash="01e685c6acd379dbc890064673890982"/><dir name="Widget"><file name="Chooser.php" hash="926595fee7e905f5ef3cb274598ca6d3"/></dir></dir><file name="Block.php" hash="fcb303817c3bf5ad10b5038dcef09a6b"/><dir name="Page"><dir name="Edit"><file name="Form.php" hash="29d674b9e1e99d0e705f41c31a0273e8"/><dir name="Tab"><file name="Content.php" hash="ea72f7b00693ae602c6b28c54a40c251"/><file name="Design.php" hash="f6fb1a7e86118bb8f5213435281b706a"/><file name="Main.php" hash="2131c972e82ffb4455058ad4465f3ff2"/><file name="Meta.php" hash="0950e9f3d977e94cf055c992c5e3e9b2"/></dir><file name="Tabs.php" hash="3d473c30bbea5357e4eb1e86ab5933ac"/></dir><file name="Edit.php" hash="dbbac9de68926afb6cebe6eeb6ac4b66"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="2327b824e40b49d7a9e430d6bb1a9d0b"/></dir></dir><file name="Grid.php" hash="933c6087a27f3a08c3534726c784b262"/><dir name="Widget"><file name="Chooser.php" hash="2ecf17c87771d80da442fe93c793dc25"/></dir></dir><file name="Page.php" hash="60ee680ba83fc69082d269966801cba5"/><dir name="Wysiwyg"><dir name="Images"><dir name="Content"><file name="Files.php" hash="ac85c80c81cfbf79ac91f3ce41387077"/><file name="Newfolder.php" hash="2b536216a12d42bd20e87a52b0e4c77c"/><file name="Uploader.php" hash="95e179e244516b45b56e63d39d8a9caa"/></dir><file name="Content.php" hash="27de9059054fa1714d606cf399ddec95"/><file name="Tree.php" hash="260e595265977ee039618f79d9ded8ab"/></dir></dir></dir><dir name="Customer"><dir name="Edit"><file name="Form.php" hash="49ac0a52d6724f4a5888d8cd227a5aa5"/><dir name="Renderer"><file name="Adminpass.php" hash="52824ddc4c2aac49ae1c16e69e790f14"/><dir name="Attribute"><file name="Group.php" hash="c190e382f7677dc77336fc07edd79982"/></dir><file name="Newpass.php" hash="9a7dd648cdb06f67ba996aa232eb15d6"/><file name="Region.php" hash="99f522193ce1e682776d5a7b44f958c5"/></dir><dir name="Tab"><file name="Account.php" hash="be1fc49b82190e98111ee099c0de3431"/><file name="Addresses.php" hash="0ddc0a6780797d790eb536efa72fbc89"/><file name="Cart.php" hash="34835f9c9ec4b514f0e848153d1d94fc"/><file name="Carts.php" hash="ef6ef08eaa53b82424eeac2a2737140c"/><dir name="Newsletter"><dir name="Grid"><dir name="Filter"><file name="Status.php" hash="0e0714b271ff4f7c5f8879a72e62ca19"/></dir><dir name="Renderer"><file name="Action.php" hash="65b75e8f97ce1be04fcfe6af218d411f"/><file name="Status.php" hash="d1ec2d1dfeb5b93cef95675a31c548f7"/></dir></dir><file name="Grid.php" hash="1b9df08949de8d74182971d4a07d025a"/></dir><file name="Newsletter.php" hash="7783c6895e86209c9e6b090c3e216155"/><file name="Orders.php" hash="11221dac1ba40ee283516625fcf3a0db"/><file name="Reviews.php" hash="47779e7b18d75035952142edc042a6c5"/><file name="Tag.php" hash="9dfa6cbe899d1c52f2310e63c9e820c3"/><file name="Tags.php" hash="09fe20e20b4ecbcdbc02c6dace425975"/><dir name="View"><file name="Accordion.php" hash="4c16f965c5b5a1f7a51ea6bd468d4455"/><file name="Cart.php" hash="0584886190f1c73c34257456e6dab0ae"/><dir name="Grid"><dir name="Renderer"><file name="Item.php" hash="8518944e0aabf464898c5492173e98ac"/></dir></dir><file name="Orders.php" hash="bc049d9850d668d491f7ca55bc9b3435"/><file name="Sales.php" hash="02c1200f809fbc0edcd0dfcac2e8eb9a"/><file name="Wishlist.php" hash="ea4a3e270b46f97c09400e9179bccf59"/></dir><file name="View.php" hash="6482a200235c2f1abafb72e63e0ea239"/><dir name="Wishlist"><dir name="Grid"><dir name="Renderer"><file name="Description.php" hash="01d3f43cc48bce12538c5897ac531a37"/></dir></dir></dir><file name="Wishlist.php" hash="ec5dcb8c3d28a0093fee5ee7f7cbe82f"/></dir><file name="Tabs.php" hash="7b0030f0b934dd9dccde111bde060897"/></dir><file name="Edit.php" hash="259fb04722aeb0066ad7ccfd5992a128"/><dir name="Form"><dir name="Element"><file name="Boolean.php" hash="4035889038eb850f2eaaf486aa17c5ea"/><file name="File.php" hash="22104c838237b98919382431ceccfec0"/><file name="Image.php" hash="acdafea8a583687c55bce484bf0ae586"/></dir></dir><dir name="Grid"><dir name="Filter"><file name="Country.php" hash="83d85789fa4b4b6a9b76d29de2124d2b"/></dir><dir name="Renderer"><file name="Multiaction.php" hash="7d589a87e88a991bd75696f049c74167"/></dir></dir><file name="Grid.php" hash="94c36f1146b812b5774a7d544ea86707"/><dir name="Group"><dir name="Edit"><file name="Form.php" hash="7ee57a62a8c1d61c7195b5518a0f2e9b"/></dir><file name="Edit.php" hash="7417fdf5dcf07badf746313de9cd746e"/><file name="Grid.php" hash="a489beb9f79f62cb76d3a0b09c10120d"/></dir><file name="Group.php" hash="24dc71b88d15440b03419cd23b1f4b1e"/><dir name="Online"><file name="Filter.php" hash="281969acc081f1e762e17e04a523e0d5"/><dir name="Grid"><dir name="Renderer"><file name="Ip.php" hash="3a2a0c3f8c628266033bd783240d4e12"/><file name="Type.php" hash="e7f15e42ef7719698d120e10d845446b"/><file name="Url.php" hash="378caf15cea56de85f438103bc375bdf"/></dir></dir><file name="Grid.php" hash="702925c236090e57daf9fe4e7829ecb7"/></dir><file name="Online.php" hash="9e63a6e5102e097d24f92f82d44193a3"/><dir name="Sales"><dir name="Order"><dir name="Address"><dir name="Form"><dir name="Renderer"><file name="Vat.php" hash="1125ab68940d991221ea54eca21e0f29"/></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Validatevat.php" hash="97bfaad2f54839eb791f3508a454422d"/></dir></dir></dir><file name="Customer.php" hash="160c01494a58a4f4215b95050601ec74"/><dir name="Dashboard"><file name="Abstract.php" hash="04b33afe19663c3f7638e7e619a4fc3d"/><file name="Bar.php" hash="c8b2d6017d5f2082b9b7cc8039687f1b"/><file name="Diagrams.php" hash="f532d85a38f733b559a249955debf8a8"/><file name="Graph.php" hash="285a7f59cd26d9b567025897ada5c20f"/><file name="Grid.php" hash="52e0f391a56808cb3ddfbf669dd4a617"/><file name="Grids.php" hash="9a51f7c0342c412191e3e875b54c1be4"/><dir name="Orders"><file name="Grid.php" hash="c438c5620df24bcf11a5e0e32809867f"/></dir><file name="Sales.php" hash="e9c4913774dbf54fd23dc6fed47e25a6"/><dir name="Searches"><file name="Last.php" hash="dc94da48dbecdbb86034ebec92e712bb"/><dir name="Renderer"><file name="Searchquery.php" hash="bbe6104661f63d6c1887169cd347b1db"/></dir><file name="Top.php" hash="64fe74200a3d1d298694f62702366fa4"/></dir><dir name="Tab"><file name="Amounts.php" hash="94375d9abc831e9bdc71afb28d4408a3"/><dir name="Customers"><file name="Most.php" hash="15833e01bbf1d8df85d7467d77b85c04"/><file name="Newest.php" hash="1fe0eb3fbd3f5ebc1e37650a6a846f1f"/></dir><file name="Orders.php" hash="2e6b5c3dbe7e91b6fe0a83cea5a3f8c1"/><dir name="Products"><file name="Ordered.php" hash="fc8b1d95ae089a5c7fbb18316cc5d9fa"/><file name="Viewed.php" hash="a75b4ec54c403574e21e06fd02419f58"/></dir></dir><file name="Totals.php" hash="ee3da9c4f8735528feeb9e904f4445d0"/></dir><file name="Dashboard.php" hash="e3eff5f0ace04c75080d7e4285850b08"/><file name="Denied.php" hash="2544f2e56188e638c4ebef659c210d1b"/><dir name="Html"><file name="Date.php" hash="5ed6ad7e64505737fdc26926780e59c4"/><file name="Select.php" hash="4fea9f2984b970fd7e5c4269e00c1e30"/></dir><dir name="Media"><file name="Editor.php" hash="482b4e07e114dd3e0ec51aa384659def"/><file name="Uploader.php" hash="b4bf6544983571c41a04246c857ea581"/></dir><file name="Messages.php" hash="05b605e6f96ebd4438a4e6138ea003b2"/><dir name="Newsletter"><dir name="Problem"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="dcf0b70251a8f13d2d339b22b8bcf222"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="785019541b1f0bde8fd4292330da6a0c"/></dir></dir><file name="Grid.php" hash="53cbbd3e1f301fcd14df3a3399b94215"/></dir><file name="Problem.php" hash="eaf3c0fe03be3f04f6a20b42be71e099"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="104c534e251579db3af779ba0b3cf221"/></dir><file name="Edit.php" hash="122075bb4fa921d54690d02d2544b729"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="971433e4a2d6febbc299231204a5192d"/></dir></dir><file name="Grid.php" hash="49729774b36367719ca8e5bdc96d0fd8"/><dir name="Preview"><file name="Form.php" hash="95bf53ad04204e3df275ac773687dc99"/></dir><file name="Preview.php" hash="67996d9e281e22abca9e57c21b5c20f7"/></dir><file name="Queue.php" hash="babe2ab6945534bc93811e69cb2410b7"/><dir name="Subscriber"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="55561194335df4dc0f38a3279f7197d7"/><file name="Website.php" hash="61f215ed663e7329d2b33ab24c035807"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="1333348cf2ab0015168c1e814384af4e"/></dir></dir><file name="Grid.php" hash="29c83488780bed1f1b3407c68021b43a"/></dir><file name="Subscriber.php" hash="929fd845ece72622cc7bc4d0ea9ea9ca"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="603017eba90acaaca525f9feea1f67d7"/></dir><file name="Edit.php" hash="cb6e33de7d1c91cbc7c6574cbb5478f7"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="c8e23fb64472942288123e12d75fb269"/><file name="Sender.php" hash="63e2e8b100140403e8229c4dff5a75f1"/></dir></dir><file name="Grid.php" hash="b711f263e8b86ee53107305195788610"/><dir name="Preview"><file name="Form.php" hash="bac1c3366080c578e3c8506db1f8293a"/></dir><file name="Preview.php" hash="511cadb2a83b08cd75c89a2d41dd11fa"/></dir><file name="Template.php" hash="341186126c4405cbbf2a0ec4a00ccd28"/></dir><dir name="Notification"><file name="Baseurl.php" hash="5aec946a2e77e87056aaea956315b670"/><file name="Curl.php" hash="5318edb4973c3db262100297ce01c6e7"/><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="e40c7bae91381d4fb3864b7232399fdf"/><file name="Notice.php" hash="67fe7e8b386a7039c1060fff489c8e6a"/><file name="Severity.php" hash="73fe988909b41d1d9ef9985a71335a38"/></dir></dir><file name="Grid.php" hash="12008ce221de78cedbc5506e9e0a919a"/><file name="Inbox.php" hash="e7047a33091156c568d758d67abc1263"/><file name="Security.php" hash="b429f8b474f335f8b096dca4f4aa8224"/><file name="Survey.php" hash="1f9e26f084deaef848b48ad8cefa6677"/><file name="Symlink.php" hash="a984617471b9b517cd03ff950858b92b"/><file name="Toolbar.php" hash="a4373cbfe007d3ac87e378156a16a8fc"/><file name="Window.php" hash="befff4b2a7a9fd37106fc9f6ee9e313d"/></dir><dir name="Page"><file name="Footer.php" hash="13091b07cfcfd29290649ad859e8573e"/><file name="Head.php" hash="9b58291b2bf8259b5d890a01ed38ab65"/><file name="Header.php" hash="4cd8f71d26884bb3e5bf8e96499326d9"/><file name="Menu.php" hash="7823fc361ec7c6e1e1319248252c4966"/><file name="Notices.php" hash="44317cffc7e9a21b5028f3778614f7e9"/></dir><file name="Page.php" hash="a9be028a9da3a52fdace562c0a7606e9"/><dir name="Permissions"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="438c2e3073d2fd88901fc6513c2004df"/></dir><file name="Edit.php" hash="83ca1370c33e358a980d12e972ec78ad"/><file name="Grid.php" hash="4acf525f566ff12b1d1845f021083e28"/></dir><file name="Block.php" hash="614481a47005ff630142dcf1e9e5d80c"/><file name="Buttons.php" hash="749b937b5af645e79d81db493afba2e9"/><file name="Editroles.php" hash="dab140ee8b5c0b4ca8f2311637c5e85a"/><file name="Edituser.php" hash="448b729d13305721d8d6aeff143e590c"/><dir name="Grid"><file name="Role.php" hash="c277b2dda376b175ffbea71ed8b134ba"/><file name="User.php" hash="382472521bb38d0a3a3a546ecbb3ad00"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="7fe2b949915e01111ff7437bedd4d814"/></dir></dir><file name="Role.php" hash="4ace00f8e61836fb5b3f5686885442ba"/><file name="Roles.php" hash="fe2bce55aa6150948ee1a8f4801e430a"/><dir name="Tab"><file name="Roleinfo.php" hash="d6c9da087f0163318b3e34f786b1c4dc"/><file name="Rolesedit.php" hash="ade89ca7c7f474395c5a79b8b7789a00"/><file name="Rolesusers.php" hash="58309a5ff5b919fdc9d9085955892084"/><file name="Useredit.php" hash="f466ea0d19487df34146b2c0fb2926f6"/><file name="Userroles.php" hash="dca81b2a1b0b7150dd27bbb5290ef4b1"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="d96f53c24349fb7b5bd764cd8f3d175d"/><dir name="Tab"><file name="Main.php" hash="ad64079b514381ca8b11fd91b516bf5c"/><file name="Roles.php" hash="f41519325aa5654d1f791c57670ec92e"/></dir><file name="Tabs.php" hash="7b60d3bb6f1b6a5aee2130ccab8b7cfe"/></dir><file name="Edit.php" hash="5943168fa9ac34b2373e1dfb96d95e98"/><file name="Grid.php" hash="9e91f52c0217ad886fb0f1435c9d6777"/></dir><file name="User.php" hash="30ff8fc45f5fac86dea762c255ed0037"/><file name="Usernroles.php" hash="db11e880c8fb0f39d41efc2f91102569"/><file name="Users.php" hash="ad0e8079ac091780802754cc08f48346"/><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="14cdb2969d62fd0e476df37018705b3f"/></dir><file name="Edit.php" hash="1221d3e1226044ab53066ed4df954002"/><file name="Grid.php" hash="291a32424ceeb78d4c25795d2dfcd50a"/></dir><file name="Variable.php" hash="131b7e5625fec4458ba48105fd9a244d"/></dir><dir name="Poll"><dir name="Answer"><dir name="Edit"><file name="Form.php" hash="fb638b9afad342ae667cee9b3831cad7"/></dir><file name="Edit.php" hash="5a72086f06ad00e1b320d06371b28f94"/></dir><dir name="Edit"><file name="Form.php" hash="50c9311f3430a4c9f1e91a3795ffe5f3"/><dir name="Tab"><dir name="Answers"><file name="Form.php" hash="177856444e2018921e1c59d29703311c"/><file name="Grid.php" hash="e370e762c58937a4039b4eb3554a50a0"/><file name="List.php" hash="f01b64776154a26b7380cefe592c6f94"/></dir><file name="Answers.php" hash="af567d9671976038f79836c3c0d7d25d"/><file name="Form.php" hash="c57cc8b7d966751492a00e9a6b3fed59"/></dir><file name="Tabs.php" hash="9ef91784fa1723ca5f8af1d90eb81d10"/></dir><file name="Edit.php" hash="6629e1e14e653da703884b299f048ef6"/><file name="Grid.php" hash="22ee4a31eaf22598b8a26ea6d6aec10b"/><file name="Poll.php" hash="513b3f5b861f039579f4a2c778b94778"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><file name="Form.php" hash="ce7e781b6df0dcd01eb05b7c05db45bb"/><file name="Js.php" hash="e8420f59155da56f0e049a8a02f597e5"/><dir name="Tab"><file name="Actions.php" hash="bc90198a1e428406fb678a17427e97df"/><file name="Conditions.php" hash="33cbb1cd2de313db0596839c2b910d41"/><file name="Main.php" hash="093fe4d628053e986c7f8a1d3dd28e46"/></dir><file name="Tabs.php" hash="c1a3f608b61ff9256c66fe97ae15a556"/></dir><file name="Edit.php" hash="712419905ef2f3528b470f459ba240ea"/><file name="Grid.php" hash="8bbde3bd4cd5c8430720a8216fa0683b"/></dir><file name="Catalog.php" hash="04ea815f052f740b621619566f6ae6c5"/><dir name="Quote"><dir name="Edit"><file name="Form.php" hash="77cd19168159d23f6f01cc5a0f58b8df"/><dir name="Tab"><file name="Actions.php" hash="c27a86b9af71facf294e1270cfd54cbb"/><file name="Conditions.php" hash="51451f1dbf35eeefdc8daa2c339ba19b"/><dir name="Coupons"><file name="Form.php" hash="b3833c59632e6d932d5fe7ac7666c377"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Used.php" hash="5ced5eff6f3a8d11d06d52a4fc0e3c81"/></dir></dir></dir><file name="Grid.php" hash="ab6c389513dc839d12da82f711d1f7d8"/></dir><file name="Coupons.php" hash="9146a97d8d43e7163b6eb7b86da61778"/><file name="Labels.php" hash="cabc14fef4855cf54d289d98fa42ddb1"/><dir name="Main"><dir name="Renderer"><file name="Checkbox.php" hash="817b27e78c36027617b90aea0385763b"/></dir></dir><file name="Main.php" hash="6a8b8cd3c10ac469cf5d043c121c9856"/></dir><file name="Tabs.php" hash="b8b84aff23831376438093d0ab6ddd05"/></dir><file name="Edit.php" hash="6cdb69cccd921224a744ef8d466e85bb"/><file name="Grid.php" hash="82bc063067ce133e9734629b2d5b6800"/></dir><file name="Quote.php" hash="3693db87bb6fbebb7ad3df04f1ea1f63"/><dir name="Widget"><dir name="Chooser"><file name="Daterange.php" hash="b9e5ac80e72d041d5775f8b737e0c2da"/><file name="Sku.php" hash="e6c53db33ecb8f455afc153573e69fef"/></dir><file name="Chooser.php" hash="ef8a17a3ffb1c9fd7a6b7c52cc8fd8a1"/></dir></dir><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="53f1c8ac7b82c99d9d0d9d7c060a7760"/><dir name="Tab"><file name="Form.php" hash="0516fcc5622280305fcdecef43bd90ae"/><file name="Options.php" hash="fa252cfbaef3eac3fa625d70a8161fdd"/></dir><file name="Tabs.php" hash="15b43f441dd8664bc49e53cc68cb18ec"/></dir><file name="Edit.php" hash="a54cc1b546364ad52209e4f0c6f525df"/><file name="Grid.php" hash="1d552135e389f0cb67edc4fa3800847e"/><file name="Rating.php" hash="5d8ff951eb5d7909ad2ae8e5ac1b0291"/></dir><dir name="Report"><dir name="Config"><dir name="Form"><dir name="Field"><file name="MtdStart.php" hash="5d8b157ce44c63faf40855c597a1b4af"/><file name="YtdStart.php" hash="8cf735bf6eedb5c034e32aafd4caae16"/></dir></dir></dir><dir name="Customer"><dir name="Accounts"><file name="Grid.php" hash="876785a17cac6f7be270ed826c85873b"/></dir><file name="Accounts.php" hash="480c7e36f055b23eb5826b8a72d89ed0"/><dir name="Orders"><file name="Grid.php" hash="6f38b01d6b4e78b474106d237de99652"/></dir><file name="Orders.php" hash="ebee2aeb8b87ecff040b748b49537df1"/><dir name="Totals"><file name="Grid.php" hash="975071e2187ec1d3f90004a9042b5b41"/></dir><file name="Totals.php" hash="4b658c233cf6732b2aefa18270b1d4c2"/></dir><dir name="Filter"><file name="Form.php" hash="2c740fb0b92ef44ce9521df6101ad27c"/></dir><dir name="Grid"><file name="Abstract.php" hash="6921ab3338de4a188f0027a169780375"/><dir name="Column"><dir name="Renderer"><file name="Blanknumber.php" hash="7a7602ef1b82f27794d8bbe71f9b3daf"/><file name="Currency.php" hash="9a20cc3494cb15723da27b1d31c530c0"/><file name="Customer.php" hash="f884de4c1b212609cdcb62a8dbf62693"/><file name="Product.php" hash="814b4387ecdc12127d9e48eacd8dd8ca"/></dir></dir><file name="Shopcart.php" hash="01beaf769ccf324bfdf28d0c028b4199"/></dir><file name="Grid.php" hash="c826286a8d0a4603178ca94699fb27f3"/><dir name="Product"><dir name="Downloads"><file name="Grid.php" hash="9b88b3b5c867cbfe96b43305296e3cd3"/><dir name="Renderer"><file name="Purchases.php" hash="b1c88b7e409c9081df084aaacd204e16"/></dir></dir><file name="Downloads.php" hash="9d4f3fe2cb548941327e6a78f9ca7f09"/><file name="Grid.php" hash="76f0ef2626226d591c32e0029ced8245"/><dir name="Lowstock"><file name="Grid.php" hash="a251d6ce2b7b8638d37b127c6088b342"/></dir><file name="Lowstock.php" hash="a1cdd013e1e69645b8540d88b4b380ab"/><dir name="Ordered"><file name="Grid.php" hash="93da2aa1ed188ca5e0d21d43c2423f59"/></dir><file name="Ordered.php" hash="b91d248cc02266ae12f4021f0b049e94"/><dir name="Sold"><file name="Grid.php" hash="253cd38cd5900c169f0e8d978035fa56"/></dir><file name="Sold.php" hash="5b9569287e90e608708d4e61f1b08374"/><dir name="Viewed"><file name="Grid.php" hash="8b88b2ab48d99984ed2f2b77cb622178"/></dir><file name="Viewed.php" hash="869a2a9d318cfb4cb95fbe9039918aa4"/></dir><file name="Product.php" hash="3db02136fa4d9134b71db4f1c025a456"/><dir name="Refresh"><dir name="Statistics"><file name="Grid.php" hash="0b817fcfc48d85581936d66913fe48ed"/></dir><file name="Statistics.php" hash="eedc8c1d097a9990deb8c417a973c159"/></dir><dir name="Review"><dir name="Customer"><file name="Grid.php" hash="6a9751a3e259c181d7de3db045b67dff"/></dir><file name="Customer.php" hash="9d1780b3d52462a146569b0061003e7e"/><dir name="Detail"><file name="Grid.php" hash="d78eafeaa91034ae5ae9238d23d9e293"/></dir><file name="Detail.php" hash="9b6c49800aeb58e66ea01fb0028069fe"/><dir name="Product"><file name="Grid.php" hash="6e10e6822008a37a89b5622e2ec6a0e4"/></dir><file name="Product.php" hash="c542a3ce8e2dd456f5cf14f895ac017d"/></dir><dir name="Sales"><dir name="Bestsellers"><file name="Grid.php" hash="14d850df6cf0fd8f8cb63dd7e6111998"/></dir><file name="Bestsellers.php" hash="fb1ca6b6309121b224d7b063d44e799b"/><dir name="Coupons"><file name="Grid.php" hash="fb016245286d78d2638cd28d2ad5b0f1"/></dir><file name="Coupons.php" hash="4323b2f5e401896db59f176db5341183"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Date.php" hash="1c9569cda2994e8745b850d61ab72169"/></dir></dir></dir><dir name="Invoiced"><file name="Grid.php" hash="9a355c790d2e019e30300a2507ce0ba7"/></dir><file name="Invoiced.php" hash="f7aff8ae4c1e0c9f0c3be47976aae5ac"/><dir name="Refunded"><file name="Grid.php" hash="940534d65753649de3de6238494aa7bd"/></dir><file name="Refunded.php" hash="b6b6c6c59fdf9bf395348304f04c5b27"/><dir name="Sales"><file name="Grid.php" hash="18467bb88997dfe61cd9a1a01a34d197"/></dir><file name="Sales.php" hash="6e066c283cb979f812b23bcbf91ef523"/><dir name="Shipping"><file name="Grid.php" hash="28ab1a912126437e8fda3ac68b1f0e85"/></dir><file name="Shipping.php" hash="204cd2b1db4e5871c80eb86aee461d7f"/><dir name="Tax"><file name="Grid.php" hash="6796b67421d068b9e63cf8efa0734991"/></dir><file name="Tax.php" hash="83cdd45d1b1355e95db554b9a7ce7de5"/></dir><dir name="Search"><file name="Grid.php" hash="98b7dc7e5c1d7a615aba028a359031cc"/></dir><file name="Search.php" hash="d181caec9d07af8a613cfddd414bd52f"/><dir name="Shopcart"><dir name="Abandoned"><file name="Grid.php" hash="8f34cfb594f5aa32f00c081499ea0560"/></dir><file name="Abandoned.php" hash="5b3aa7f81951955de4a618e5b0c8f2a2"/><dir name="Customer"><file name="Grid.php" hash="47c36550853de4606e613626804609ab"/></dir><file name="Customer.php" hash="d090acdce4fb882c23e6ce4fc00f1c49"/><dir name="Product"><file name="Grid.php" hash="bafd2eb1041c7fc72207a4b4e9e1f39d"/></dir><file name="Product.php" hash="6ba5f86e573141407fe02274b16dd988"/></dir><dir name="Tag"><dir name="Customer"><dir name="Detail"><file name="Grid.php" hash="b45407b87f6ebfde603459807cae0166"/></dir><file name="Detail.php" hash="98a056f73336c1776dd111860f80003f"/><file name="Grid.php" hash="7687ea96a7f95097b8a6f214da7c9004"/></dir><file name="Customer.php" hash="78adf21dea52e09f2f22ce87c403a3cb"/><dir name="Popular"><dir name="Detail"><file name="Grid.php" hash="b6c86e10214fddbaa1d68d7dff4aae92"/></dir><file name="Detail.php" hash="eff78b4951d7648d1d81addfc175a738"/><file name="Grid.php" hash="929967661d2cbedd1f58b359d0fc9ac7"/></dir><file name="Popular.php" hash="ac16dc6103cbed14da449902598f8da8"/><dir name="Product"><dir name="Detail"><file name="Grid.php" hash="2c135ae9282364724b20983072115f55"/></dir><file name="Detail.php" hash="40124f039465d5b93d05d054e9a46d12"/><file name="Grid.php" hash="702b24710b2dc84b3598deedea5c3a46"/></dir><file name="Product.php" hash="e752eda0d414d4c4aafde442b1938421"/></dir><dir name="Wishlist"><file name="Grid.php" hash="ec4d7242c006f3c27c15017aea8dab97"/></dir><file name="Wishlist.php" hash="c5ea07211bf5d33c6985ef83e4fa3675"/></dir><dir name="Review"><dir name="Add"><file name="Form.php" hash="1221b806c17a7d9a9ab4c61992950e33"/></dir><file name="Add.php" hash="afc49fbdc79bb15c4802b26871c2420e"/><dir name="Edit"><file name="Form.php" hash="6f38eb8c69b7e7d2ed334b3f99757a61"/></dir><file name="Edit.php" hash="4caf964ad3323a1e190d68bf1a6247aa"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="0f33f70fe6aa00d6a88b782f9bd6fe81"/></dir><dir name="Renderer"><file name="Type.php" hash="5cb734435d93cfa02afbea34022ea52f"/></dir></dir><file name="Grid.php" hash="e7570bddc2826cc383edd02b99c4eeae"/><file name="Main.php" hash="2b670dcb6cf9a2440d95612a42b1cf95"/><dir name="Product"><file name="Grid.php" hash="5e70550b71cf9e30ae7589e78c5015fc"/></dir><dir name="Rating"><file name="Detailed.php" hash="0414132bef05a0ddceacee99691d2259"/><file name="Summary.php" hash="e0d2102e4684f375e2b497d0562c728a"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="8eaef0228f4cf2f570c4f2b4eaf8b8fa"/></dir><file name="Creditmemo.php" hash="42217b6203cc501eaf43c180ebf49aca"/><dir name="Invoice"><file name="Grid.php" hash="50cb622a285ea7cb34c7130f0fada4d8"/></dir><file name="Invoice.php" hash="3e9ac715a1fd97fbfbdb78a6dd0a23e6"/><dir name="Items"><file name="Abstract.php" hash="eec443a092bc21e86be68596630a61e2"/><dir name="Column"><file name="Default.php" hash="4ccead2ab8989a15c167c65fa0a431a7"/><dir name="Name"><file name="Grouped.php" hash="c0330069b38cc02d95279352998034d3"/></dir><file name="Name.php" hash="ca285131931fb18d9ab8f31cc51e5dc6"/><file name="Qty.php" hash="9c1e126b97b2d2ad141667ffdc59fd1c"/></dir><dir name="Renderer"><file name="Configurable.php" hash="beae18cf07489c1d797a55afe7b6e4a1"/><file name="Default.php" hash="8dfb0ad92fe2fd96cb7de7c75154a0cb"/></dir></dir><dir name="Order"><file name="Abstract.php" hash="611441d2af3e1a8d69c4a34f98218159"/><dir name="Address"><file name="Form.php" hash="39c691ddd081b2751e29bd5f33022058"/></dir><file name="Address.php" hash="ab66d13cd95a3bd181fc2e0a4aaf36b1"/><dir name="Comments"><file name="View.php" hash="34520d2d3704ae0974fdd717e32b69df"/></dir><dir name="Create"><file name="Abstract.php" hash="07a4821940fbdfa00d2c49742e339330"/><dir name="Billing"><file name="Address.php" hash="2cdb4a9a1bf62b1e88e094887f95d353"/><dir name="Method"><file name="Form.php" hash="efd4efbf9d7a0f0ecb94f4250ca4347b"/></dir><file name="Method.php" hash="0d15deae8c8f8c0981e7d001673a2042"/></dir><file name="Comment.php" hash="64bc654a1883736edd55f348bda97d3b"/><dir name="Coupons"><file name="Form.php" hash="e60af447a9d46daa66fe18741130c69d"/></dir><file name="Coupons.php" hash="1d60841287ccdf9a3c685622037eabed"/><dir name="Customer"><file name="Grid.php" hash="eb6492f7b5a1fce60f83307b06b17298"/></dir><file name="Customer.php" hash="c193420e9a2ee48e24b06a8c47072ce9"/><file name="Data.php" hash="aa6351d779812b39de8db5679e58b209"/><dir name="Form"><file name="Abstract.php" hash="61a43cc34b80a50f33b3e0c026f26395"/><file name="Account.php" hash="67269dea94f0b9706bafc94884c6e5eb"/><file name="Address.php" hash="d78ea2ddee6e813b20480f54916898b1"/></dir><file name="Form.php" hash="61b6a5bd494aba099bec6f64f451043f"/><dir name="Giftmessage"><file name="Form.php" hash="f838a32b9d840c10fec9e39f60a998f5"/></dir><file name="Giftmessage.php" hash="59b8e0043288b458ef64801e952377c9"/><file name="Header.php" hash="c71bbb10d646b63d82e23c804d88c594"/><dir name="Items"><file name="Grid.php" hash="70960468d51642b57a68b98d296702e2"/></dir><file name="Items.php" hash="e7d06dac544075ef6c4ad73f2aa60992"/><file name="Load.php" hash="7053cd42716c9a6ddf25a0b67bd7e528"/><file name="Messages.php" hash="1f129d27afdd8c56fcc5956016dfd5e0"/><dir name="Newsletter"><file name="Form.php" hash="81ea6098e01ca5fc676cbd6ada09dc62"/></dir><file name="Newsletter.php" hash="e5870c7997cdd91d8f190a6c107f04e5"/><dir name="Search"><dir name="Grid"><dir name="Renderer"><file name="Giftmessage.php" hash="7129a757509e4e02596da61573486d1a"/><file name="Price.php" hash="3eb19915cb234e078ebc577f50cedeb7"/><file name="Product.php" hash="b42b079bb03456a73260e4c5437e2b97"/><file name="Qty.php" hash="ebd46b369edc917bc0e9097efd4419f6"/></dir></dir><file name="Grid.php" hash="dfa4a377c30a08e4a22bc3590039ac2f"/></dir><file name="Search.php" hash="98eb313e9afac50f8e33f3fd3b2564e5"/><dir name="Shipping"><file name="Address.php" hash="4dbb89b1004bf991b15ce003ea881291"/><dir name="Method"><file name="Form.php" hash="9dceee7d4da37ace1f7647e25d381aad"/></dir><file name="Method.php" hash="366f58ab57eacf8daa643cf1a33bfe0c"/></dir><dir name="Sidebar"><file name="Abstract.php" hash="62d5d1d94fee4c62a847637800c0f84e"/><file name="Cart.php" hash="49ab0efc46f84aada5690fe47d17f8ac"/><file name="Compared.php" hash="31d88bfa8ac1689440a9146a94756802"/><file name="Pcompared.php" hash="f179a95db2d5c6246a77c782c9fa79fd"/><file name="Pviewed.php" hash="3274fe50638594d1ebf39e15455ff972"/><file name="Reorder.php" hash="7334944281dd31f9d26e2d5d98a1b854"/><file name="Viewed.php" hash="70e22efd895f0ac9aa094eb4d57ec61c"/><file name="Wishlist.php" hash="b5e4e3d80e1a861035154114b09931f0"/></dir><file name="Sidebar.php" hash="da0e5080812333ef171c7149ba651ae9"/><dir name="Store"><file name="Select.php" hash="9a742d2d414f11ed36c3c31d557a1548"/></dir><file name="Store.php" hash="c441c7943807d7d062aaf7922405a49d"/><dir name="Totals"><file name="Default.php" hash="cdc6b4ef35447405da9db92bdc0efd67"/><file name="Discount.php" hash="c8ca85f8dad1c71e592c64a02f79eaad"/><file name="Grandtotal.php" hash="f8dc16f1ee798e7fd85486508efa8ad7"/><file name="Shipping.php" hash="e01addd3bbee439716e415d6a94a0787"/><file name="Subtotal.php" hash="77ca4acbe76e9699f3c6fbe19d42ccbc"/><file name="Table.php" hash="3ba29da9c8d86f512743a735acafab7d"/><file name="Tax.php" hash="8a27e879fe434e032ff75b3b1ea3a873"/></dir><file name="Totals.php" hash="efea9fe44e17cabb7d336cbc43f4c6ab"/></dir><file name="Create.php" hash="d0ddf49d76fd3a93188441ec12e1a316"/><dir name="Creditmemo"><dir name="Create"><file name="Adjustments.php" hash="7613e527138324cbd018ba2381fe25e2"/><file name="Form.php" hash="9a3c38c56c95728786bafcd420b74f17"/><file name="Items.php" hash="1ed1651ce3377ff4945c66dcf144243e"/></dir><file name="Create.php" hash="0daab14e31ca4ce0aff1663130fab6d2"/><file name="Totals.php" hash="89e085c957241a1df0fe8e038d95591b"/><dir name="View"><file name="Comments.php" hash="df3b4c15c3fa36e07a0f54674c4d92a7"/><file name="Form.php" hash="fcd9d512c737dad03149af393aa96139"/><file name="Items.php" hash="3a7cddb79d1a8ad3c72001abce92df12"/></dir><file name="View.php" hash="395096f18ede9d4751d7d24cd0a119de"/></dir><file name="Grid.php" hash="e1ec75184631159ad9170f6df994e4b1"/><dir name="Invoice"><dir name="Create"><file name="Form.php" hash="43d9b24dd88abddc50f60f51b6726ead"/><file name="Items.php" hash="a230ab25b974663bb1329b08846fbf4d"/><file name="Tracking.php" hash="6d0d1a84e5c622247ccbd343aacf3fc2"/></dir><file name="Create.php" hash="1874ce37a8506e7a49a2de582a1ea55f"/><file name="Totals.php" hash="b64d5fee53573517cf51ce5314d1ee64"/><dir name="View"><file name="Comments.php" hash="8b01bfb045b007404527770de98df3f1"/><file name="Form.php" hash="73fd99e96acb7c1151af4a66f8e1e74f"/><file name="Items.php" hash="681ed0078cffa9803a9685d5ad2d095a"/></dir><file name="View.php" hash="3243addb251f80fd4842465b787f2c92"/></dir><file name="Payment.php" hash="eab8e6555a98ab10adb9710d01bfb312"/><dir name="Shipment"><dir name="Create"><file name="Form.php" hash="785df8e0e67ebc2e6f8565be2d7fbdaa"/><file name="Items.php" hash="7385e90c89a6e98c60b97f79e0c9990f"/><file name="Tracking.php" hash="017cc849e761c80bcb9b190583ca98b4"/></dir><file name="Create.php" hash="a28b1b4c2bdae8c5d0ae1994f29a0639"/><dir name="Packaging"><file name="Grid.php" hash="e98a2ab4a5168ddece35a0b3e5c039e7"/></dir><file name="Packaging.php" hash="30d91bfb13aad2bc11ed62567f22fef9"/><dir name="Tracking"><file name="Info.php" hash="3b25cdba06f7af66a451925f80a8e80f"/></dir><dir name="View"><file name="Comments.php" hash="95d47e188da23bb91f0b17508f4d5b90"/><file name="Form.php" hash="55dea57398ae92c1364cda655c662855"/><file name="Items.php" hash="4989af526477076673a55675ae86a5db"/><file name="Tracking.php" hash="1c39065b8c29a54e250b15ad2a3656c2"/></dir><file name="View.php" hash="7f5e5990f4b0e4e98bd870ac9fa7c1a5"/></dir><dir name="Status"><dir name="Assign"><file name="Form.php" hash="fef31b633d9153da319a9547aeb6ce31"/></dir><file name="Assign.php" hash="fc4e43395da6f51e1cf1fa2e76bb7a71"/><dir name="Edit"><file name="Form.php" hash="62acd254d63e8d60209cc5bd5b275686"/></dir><file name="Edit.php" hash="d37ca9ed1ab1463154ba5aec5f2029fd"/><file name="Grid.php" hash="3e8b7348afd6a8a660cef481f6589593"/><dir name="New"><file name="Form.php" hash="d62d8afcfe02579b8bdb06c8857e102d"/></dir><file name="New.php" hash="df117a869aa1309c58da8ee73c8f404f"/></dir><file name="Status.php" hash="efcc0dcfbc8e31ae9ada9aeaf4120b36"/><file name="Totalbar.php" hash="4ac701fb8e6fded0f48eb44b90cb398e"/><dir name="Totals"><file name="Item.php" hash="60abccd6d48c3d1d5c3e7fa9be19182f"/><file name="Tax.php" hash="718d6f1eee60de6564549d36f00db15b"/></dir><file name="Totals.php" hash="0b1d06061ca19adda71a71700dd4c13b"/><dir name="View"><file name="Form.php" hash="7a248a32d515efe4d687ebb0ddddd84e"/><file name="Giftmessage.php" hash="c2a20d05db363b83ef1084167809b311"/><file name="History.php" hash="379425b8ca73e1a729d55cdf4f407efa"/><file name="Info.php" hash="6240eea3351a91b22422e966afb68a1d"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="5ef05606a1eb821d709bbb669a552187"/></dir></dir><file name="Items.php" hash="0e06ab27625167d88229e7367332caca"/><file name="Messages.php" hash="3de3759032567a2b1489f6460a274289"/><dir name="Tab"><file name="Creditmemos.php" hash="677e4aec0e11db6b750b7aaddae605de"/><file name="History.php" hash="d8d18fef8b2f3b8d34a642a215337a27"/><file name="Info.php" hash="07e9dac3bc492a4956d39f21c30a3529"/><file name="Invoices.php" hash="585d52e0432b103d8f053d5f2799f787"/><file name="Shipments.php" hash="4459e348c4574ff5cce98dc33101ec6b"/><file name="Transactions.php" hash="b17b8236150b589260d141f422f262b3"/></dir><file name="Tabs.php" hash="5df6448d9dc69bfc54de77a0a4c3a184"/></dir><file name="View.php" hash="d60e8b30c5c2b608f3e0526e0506a0b5"/></dir><file name="Order.php" hash="162653822c923bcb00bf242feb45af80"/><dir name="Reorder"><dir name="Renderer"><file name="Action.php" hash="1176fd68179649deb71521595a984be5"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="39d41317369d419519e24f6e03d3cbd1"/></dir><file name="Shipment.php" hash="13e435e4027e027ba003822de1acc8a8"/><file name="Totals.php" hash="68f7bd81e272c3cbd24613e2311fdec5"/><dir name="Transactions"><dir name="Child"><file name="Grid.php" hash="d452c047b6a12b2ba1262efe8df6cfca"/></dir><dir name="Detail"><file name="Grid.php" hash="284ac68af06ceeac38d3de45a7b8ea4e"/></dir><file name="Detail.php" hash="6aea3454780ae198f5bb970b7cf82bf3"/><file name="Grid.php" hash="44d799a50456dc9bfd7564001b0e75d8"/></dir><file name="Transactions.php" hash="0f9337122a3334c3625efd36dd5b6061"/></dir><file name="Sales.php" hash="b4948dda3bbd074ac0dfd1f310e6efac"/><dir name="Shipping"><dir name="Carrier"><dir name="Tablerate"><file name="Grid.php" hash="79bee255c3a48191ffcd309f2e943fd3"/></dir></dir></dir><dir name="Sitemap"><dir name="Edit"><file name="Form.php" hash="537b98b6a63f2a063e58a664a62b0a41"/></dir><file name="Edit.php" hash="f47df78d66d7266c48e526fa72f6ba0a"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="1b09b27f76cf2daa5aa01977e7c57999"/><file name="Link.php" hash="d3fdf750b2aa88ec03a574dcfbf07a37"/><file name="Time.php" hash="0fdc94bd36ced6634dd39bd6bb50e8ca"/></dir></dir><file name="Grid.php" hash="16cf567b7ad46b70b6d486947cab9ec3"/></dir><file name="Sitemap.php" hash="cf6c24ce3e8ab99b96a2f21c8cafce1f"/><dir name="Store"><dir name="Switcher"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="03a817d34e14d20fb0aee38fde5ee5d0"/></dir><file name="Fieldset.php" hash="d4abb6bc187374f0ec782f9da9b92631"/></dir></dir></dir><file name="Switcher.php" hash="cd76917b3f00369b6c85f41fa3db1c9a"/></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="8f493a6a9d3f3f85e8c8b6655591b1b7"/></dir><file name="Edit.php" hash="b13689c0f431a6f448b48f0a86fe665d"/></dir><dir name="Cache"><file name="Edit.php" hash="43376c44611a3f8a09af945f3a953cdd"/><file name="Form.php" hash="5cc515296919ba43dc82e42e67c91338"/></dir><dir name="Config"><file name="Dwstree.php" hash="de64c964c7feeb8b0e56361b105a10ad"/><file name="Edit.php" hash="631af3955e830702dda8b72dcffdbf81"/><dir name="Form"><dir name="Field"><dir name="Array"><file name="Abstract.php" hash="f79c23d49f9e5c56409f39615146618e"/></dir><file name="Datetime.php" hash="544ec57b9811148154aaf4bac01a71ab"/><file name="Export.php" hash="3a0aef3e3ce01659eccf2cc91396e939"/><file name="File.php" hash="04a1ab2f9e1638b2c293061eb93fec6a"/><file name="Heading.php" hash="c1ae5012236597308ec3959f2612a5b4"/><file name="Image.php" hash="081691cb4e9f6cbe2204fd8fd14944ce"/><file name="Import.php" hash="25f3a8e8962c20bfafc214f44d807e0e"/><file name="Notification.php" hash="89b9d556766816fa794cd1a26f38d7d1"/><file name="Regexceptions.php" hash="02918fa2e7c048e78666c8d91da18540"/><dir name="Select"><file name="Allowspecific.php" hash="5a20646375e88742642fd8661bad002e"/><file name="Flatcatalog.php" hash="188a129f682851c2675c04a331e944a1"/><file name="Flatproduct.php" hash="113e03602d71611249bf21506d2ff32a"/></dir></dir><file name="Field.php" hash="4ae5e27dc32706708249a6d728ab893d"/><dir name="Fieldset"><dir name="Modules"><file name="DisableOutput.php" hash="35e3b807c0fd1efd6595a4119f34e2d5"/></dir><dir name="Order"><file name="Statuses.php" hash="abd17f8aa430495babe2779242064b19"/></dir></dir><file name="Fieldset.php" hash="e987e01c7ed70faba517438f06a21c84"/></dir><file name="Form.php" hash="1c045b14c96e0201c81576e127532360"/><file name="Switcher.php" hash="255474db890aceea7788ab097cb814b3"/><dir name="System"><dir name="Storage"><dir name="Media"><file name="Synchronize.php" hash="530ad293df67db736b77734dca52b6ec"/></dir></dir></dir><file name="Tabs.php" hash="dabf26b8d63043e6051dbd5590101f71"/></dir><dir name="Convert"><dir name="Gui"><dir name="Edit"><file name="Form.php" hash="be3e8c34906817fc2ffe9f199c2b9ede"/><dir name="Tab"><file name="Upload.php" hash="4bd49df48c9bf33d0514d575c8265399"/><file name="View.php" hash="b7d420747dc560b7bcd4f7502ddc7ba5"/><file name="Wizard.php" hash="5b7cccb56371954d274ab4edae28abf9"/></dir><file name="Tabs.php" hash="eccc52afd57c7a7fdf67fb3f46c6d3d3"/></dir><file name="Edit.php" hash="2ffc6f84a84d27466e99e4616c504f7d"/><file name="Grid.php" hash="ad69c190bcdcc7d15a47371beff20f5c"/></dir><file name="Gui.php" hash="7e1eef11db28e2308a37c42091a98f3f"/><dir name="Profile"><dir name="Edit"><dir name="Filter"><file name="Action.php" hash="fc2bdfcf29b7b59b71f67dd535f18e55"/></dir><file name="Form.php" hash="8154ec42a631e9da7f61505f565a17ea"/><dir name="Renderer"><file name="Action.php" hash="15f63122b0d5b5a7f98b68cf9e90cd99"/></dir><dir name="Tab"><file name="Edit.php" hash="b911d2e59de254b638bea8538b422c1d"/><file name="History.php" hash="a50cd10336d45d310a696466716fda81"/><file name="Run.php" hash="f26cf834cd0de2edd50d77d29684edd6"/></dir><file name="Tabs.php" hash="3d978afe39d9e18c11e2baca4a215ee5"/></dir><file name="Edit.php" hash="617606b5c19e33c188df33b079779f38"/><file name="Grid.php" hash="c6aff08541b0327af68c3942eed2d5ee"/><file name="Run.php" hash="df3a41bb85d5073874eb65077c2dcc55"/></dir><file name="Profile.php" hash="b85def18d2172e3d04029e4bf3a5103d"/></dir><dir name="Currency"><dir name="Edit"><file name="Form.php" hash="5256c32b1a949bb453328388a86d48d9"/><dir name="Tab"><file name="Main.php" hash="917c9a77f3d66dcbfade655c32777d70"/><file name="Rates.php" hash="012ff66a2046da22ff7ba92f5eb5b245"/></dir><file name="Tabs.php" hash="3b872c197c816a7edd9b195721c07177"/></dir><dir name="Rate"><file name="Matrix.php" hash="5fd280833a12d8d00925afe0b3e10331"/><file name="Services.php" hash="c29fa7a2f74dbef492037f1531587a0c"/></dir></dir><file name="Currency.php" hash="84e80eac6cc34add6ebc39af36e93dd8"/><dir name="Design"><dir name="Edit"><dir name="Tab"><file name="General.php" hash="d47118d46d385e79686fbf227809d203"/></dir><file name="Tabs.php" hash="f31788617c46457fda8b66ca802df543"/></dir><file name="Edit.php" hash="28ff3b8feff58116ecb5ec90835cb448"/><file name="Grid.php" hash="d7c2526f457ef8acd4fdbf80f31f3245"/></dir><file name="Design.php" hash="dd4061c39d5e50c4c3d685a188e36e2d"/><dir name="Email"><dir name="Template"><dir name="Edit"><file name="Form.php" hash="43a80755570464fb90aafaf15b5148b8"/></dir><file name="Edit.php" hash="20b191ddc31732628719b08ee716ee0e"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="f23178f2b2327d60ebcc82239d84bc3d"/></dir><dir name="Renderer"><file name="Action.php" hash="2877e269d1c4aa7e3aff96d777819338"/><file name="Sender.php" hash="7abe727b63a11c5721301bc447d7efbc"/><file name="Type.php" hash="09e6d40ee27f60b0a8b6583f848d7c9e"/></dir></dir><file name="Grid.php" hash="c5296ebbfc4760ffe7e32d226bcf1fc4"/><file name="Preview.php" hash="df61b1eda6a29baf5b97cb39c322e37e"/></dir><file name="Template.php" hash="73c34587fca2e992c7c93d4cac9fdd66"/></dir><dir name="Store"><dir name="Delete"><file name="Form.php" hash="205d5513f0f9ad09556dde92aaabb6b3"/><file name="Group.php" hash="a85e45e40ff06c3221ad28ea57e02288"/><file name="Website.php" hash="86a8c60be0c404171af3ead96f4bad3f"/></dir><file name="Delete.php" hash="6f25851ab0d5903cdaea4544ad1ee2fb"/><dir name="Edit"><file name="Form.php" hash="1c4a00e93a976f06135ad720ff62be84"/></dir><file name="Edit.php" hash="b887414026cbd610061c14d96cebd1ef"/><dir name="Grid"><dir name="Render"><file name="Group.php" hash="a7ec7675bfb170555c76dde95551896c"/><file name="Store.php" hash="41fed932082b9a90f73d0b4847617b08"/><file name="Website.php" hash="dd7051818500354618ee3dda022cb76a"/></dir></dir><file name="Grid.php" hash="04dd49dbae6029772d9b5486bfd78fbc"/><file name="Store.php" hash="7c82688ef8ce58f7107985649ffe23d9"/><file name="Tree.php" hash="fb063b67133437d131edd1113180743e"/></dir><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="fd8b94e92ff3fb76d50da58c7d5ebbc1"/></dir><file name="Edit.php" hash="919f801b8437c4646d67b93e08e6a5c3"/><file name="Grid.php" hash="a54fe6c69801b77b27bdf1360094afad"/></dir><file name="Variable.php" hash="108b4727c465fd7f22132027a7f3cdad"/></dir><dir name="Tag"><dir name="Assigned"><file name="Grid.php" hash="79f9654e336cf27a596bda443a2720dd"/></dir><dir name="Customer"><file name="Grid.php" hash="0897071b02c50a22f65bda8aedd25abd"/></dir><file name="Customer.php" hash="5106b4a9ac0b0f4b71dfd0c3d07f8d9a"/><dir name="Edit"><file name="Accordion.php" hash="cfcaf4c26d819c5f32eb3dd4ac1d79cb"/><file name="Assigned.php" hash="a0d9d15ebd4cd7f875d81a0706a617e6"/><file name="Form.php" hash="050e97f22167ced4ad81654b664d3dd4"/></dir><file name="Edit.php" hash="93611bda6daf3378835c989cbca46ccb"/><dir name="Grid"><file name="All.php" hash="f423f44f435767dd96f062b25cc4ed85"/><file name="Customers.php" hash="24a18c44fef47d01500bbc39903a2195"/><file name="Pending.php" hash="70a92cf5befb5296b89e629573e976f2"/><file name="Products.php" hash="c149997a6c038d94cad45c779b359572"/></dir><file name="Pending.php" hash="cb548a56e6b86ba689ad54c7b8bb2430"/><dir name="Product"><file name="Grid.php" hash="8d9df615d52318973ce2599861f66ffc"/></dir><file name="Product.php" hash="8c6e7f41084498c1596b513070b6ac80"/><dir name="Store"><file name="Switcher.php" hash="6bc14d80bffb3f49b7759764a4ed88df"/></dir><dir name="Tag"><dir name="Edit"><file name="Form.php" hash="90451674a5a6e8b2ade29da9e7067a0f"/></dir><file name="Edit.php" hash="54e911b8b60ad93a027ca44c72c74f13"/><file name="Grid.php" hash="3b9333415e01808d09af5ba0df62b698"/></dir><file name="Tag.php" hash="a9dadfaf4fba9260302712d1620a57e6"/></dir><file name="Tag.php" hash="759919a923dd46a791cc7f3e04688d98"/><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="738f3563c7c0fbe8d1c4a84b9d12e15b"/></dir><file name="Edit.php" hash="df53d4ae5d5df600fb8866a1d3362bad"/><file name="Grid.php" hash="66f001b3368e8004c94e54eac80aeb66"/></dir><file name="Class.php" hash="9a1f47eb978a97ed5136db0b07c13f9c"/><dir name="Rate"><file name="Form.php" hash="7816ce4ab9c09ecd8f356f17d9ef9f16"/><dir name="Grid"><dir name="Renderer"><file name="Country.php" hash="6a5b9584e7218b4bee09da89a93965b3"/><file name="Data.php" hash="9c5c8ab1baba6b44f29a8a78ca954ad3"/></dir></dir><file name="Grid.php" hash="6ecc40b7cee46feea5368a0c2a09cf2b"/><file name="ImportExport.php" hash="a0a9f93bc711bb180cb0f17ed47e9690"/><dir name="Title"><file name="Fieldset.php" hash="7469a61c0649763cd10912f8de9d5977"/></dir><file name="Title.php" hash="269c2a7341a463f584a5287021e683e8"/><dir name="Toolbar"><file name="Add.php" hash="7f595a61464579ab5db8d9eee1b97581"/><file name="Save.php" hash="131346c1dd70bd79858a7193307f55a4"/></dir></dir><dir name="Rule"><dir name="Edit"><file name="Form.php" hash="7cc4a20fd13942b1a825ea056cf38bc3"/></dir><file name="Edit.php" hash="a3b6840832f73cead46c1c2f677ea3ae"/><file name="Grid.php" hash="c38a086444e5e89b8c59684c2396820b"/></dir><file name="Rule.php" hash="b98039c3f166068adf4e076f0f04bc51"/></dir><file name="Template.php" hash="6f26131ff4dfd4729113282b13a843ed"/><dir name="Text"><file name="List.php" hash="5587c224f52ba52419a5fbad48caeff7"/></dir><dir name="Urlrewrite"><dir name="Category"><file name="Tree.php" hash="81a98f81b793bb6ad0bb711314b91fa9"/></dir><dir name="Edit"><file name="Form.php" hash="b8756dd7f9c61ea143c6336d1df5c2c9"/></dir><file name="Edit.php" hash="9ae3643b86ad21cdb933d59ea11b194c"/><file name="Grid.php" hash="7c859376ae481d32eaa56c1a7ab28e06"/><file name="Link.php" hash="f78c80231e9ce524be3ce0bce72ea207"/><dir name="Product"><file name="Grid.php" hash="55080a18188d74ea1979b4708d07bee3"/></dir><file name="Selector.php" hash="cfd236febb9995a5a775a32eb483a628"/></dir><file name="Urlrewrite.php" hash="3db4a7440c65f621f490243ed76a21cf"/><dir name="Widget"><dir name="Accordion"><file name="Item.php" hash="9963db0180662c8c796316ba1c1b4452"/></dir><file name="Accordion.php" hash="da391f1b277360310bcfd1e433c38430"/><file name="Breadcrumbs.php" hash="6f0fb626f3ad97775bff66b1141b7c0a"/><file name="Button.php" hash="41c3f314d690048c7bc02bfb44213ac3"/><file name="Container.php" hash="57d98d24135c76b0b867483da46f51e1"/><dir name="Form"><file name="Container.php" hash="2828da1ed841cce0d75c68a9d84cbde3"/><dir name="Element"><file name="Dependence.php" hash="e0f6f88de3573db90da3fc165ab51d21"/><file name="Gallery.php" hash="9e385452c4a403c5bd41048cd5b496d3"/></dir><file name="Element.php" hash="325acd16669960f151229694bd8cb5c6"/><dir name="Renderer"><file name="Element.php" hash="9606b4832eb5ed705c66aabb15c32f11"/><dir name="Fieldset"><file name="Element.php" hash="1a2ca35761e69c4623821037c49039e6"/></dir><file name="Fieldset.php" hash="f283d0a5e83c4d175f1df001ad0cfcc1"/></dir></dir><file name="Form.php" hash="4276c86bfdd01e8e7328ac48d05f816d"/><dir name="Grid"><file name="Block.php" hash="6ed77bb180b0b48239dea45e68055a89"/><dir name="Column"><dir name="Filter"><file name="Abstract.php" hash="11aaee3d56049e64ba326f4c55d3927f"/><file name="Checkbox.php" hash="f4bd0719f8fe75dd1518d5a3777d3901"/><file name="Country.php" hash="66f6636e5118d732d6b136e369abe387"/><file name="Date.php" hash="3235e89c52ec332d2012df6369845342"/><file name="Datetime.php" hash="fcd8319b66fcb51481212ff85c46beac"/><file name="Interface.php" hash="9508013e4ddd26c84d5f48c5799c70cf"/><file name="Massaction.php" hash="1a8bf6a52aa9a8195d3d746b35196e20"/><file name="Price.php" hash="580e37ddaba0db732698a103bced2e12"/><file name="Radio.php" hash="f9dcb9f3890ff62104608148919da36a"/><file name="Range.php" hash="6089b0e07f94f044494e710d68c56300"/><file name="Select.php" hash="132af57951e0c91ab7dc01821fb536ff"/><file name="Store.php" hash="508860215b1a19fa54cf1ce280bd709c"/><file name="Text.php" hash="e100c04f03f737c81529debdabc20286"/><file name="Theme.php" hash="2a1339cbcf4579ff03108794cbc17fa6"/></dir><dir name="Renderer"><file name="Abstract.php" hash="f03d13d892146e066cd06e86506937a9"/><file name="Action.php" hash="01f2aa30d6b64b991ddd9b472a4ce005"/><file name="Checkbox.php" hash="b2df9566a4c1aaf7f77f7c7a8a956b8b"/><file name="Concat.php" hash="3077e68e61ad33ad155f110648c22fea"/><file name="Country.php" hash="07fc6f314d624fe89ead0902e4d190a6"/><file name="Currency.php" hash="5d938d4b4d9fb1f839621549ba98ccba"/><file name="Date.php" hash="bf5fbeee7c618a739ce69eb70c76f6be"/><file name="Datetime.php" hash="565e9d68dd120d64851074464716c897"/><file name="Input.php" hash="5ac2de1302d94a0e30d2d73effe8d8ea"/><file name="Interface.php" hash="3a7d98a7a256fe628cde2dd1ad911d60"/><file name="Ip.php" hash="a4a4af4514db2ef927986f12a3f29cf0"/><file name="Longtext.php" hash="3807286900b634bf0ef74fcbdaec3d9b"/><file name="Massaction.php" hash="ad2742a2cb04efc11b41e8f3050905f5"/><file name="Number.php" hash="f22836ca2b3731d00b3bd6c98662b755"/><file name="Options.php" hash="8fcf66e4f690054472f72223330393ca"/><file name="Price.php" hash="d2768108c7d47117435a36519cdb3776"/><file name="Radio.php" hash="0a48f77fea9bb3b2bddf22b6293ee630"/><file name="Select.php" hash="eeb0e37b815f952c1cc44bd1bf471e5e"/><file name="Store.php" hash="a9934209293aabfc89de9577d4ccb3ec"/><file name="Text.php" hash="11b4f6483e114544110408ebc4960222"/><file name="Theme.php" hash="5c8ba50adf9283ffcc8411b7cddf5d44"/><file name="Wrapline.php" hash="d2feb0797c3dff5b848908cb3b4147d0"/></dir></dir><file name="Column.php" hash="3abebc63f6ccc0c7a0b8ef5dc044174c"/><file name="Container.php" hash="a5442240aa5b685b7c003494e77a0afb"/><dir name="Massaction"><file name="Abstract.php" hash="639003d72d932a8f8740ac32b717b7a5"/><dir name="Item"><dir name="Additional"><file name="Default.php" hash="da4949a004104c0efd59ecd559756e7a"/><file name="Interface.php" hash="8c416b7727ddf6cea33eddad0fa4faff"/></dir></dir><file name="Item.php" hash="813045f3befd90791efaecca05dfc6a2"/></dir><file name="Massaction.php" hash="655a8911ff868a73947c9ded8fbfbe70"/><file name="Serializer.php" hash="2828e14d10f28239ca29a4f27616f923"/></dir><file name="Grid.php" hash="ded47ecf5cf5b4f79181a1d125e63095"/><dir name="Tab"><file name="Interface.php" hash="c6eca9feb0f1882c5367b95048e66c64"/></dir><file name="Tabs.php" hash="2d606253c76f18d0b4198b32ec4b9574"/><file name="Tree.php" hash="6fc40be912b828f3b5de65c6a7e46cda"/><dir name="View"><file name="Container.php" hash="ccf35517045978defed86182facc005e"/></dir></dir><file name="Widget.php" hash="fc7707b9b506c3d59d47a8be2b806f86"/></dir><dir name="Controller"><file name="Action.php" hash="c82395d3190f8b36e26954431c8f5e71"/><dir name="Report"><file name="Abstract.php" hash="39411593b35c6d764493dcf07d653c29"/></dir><dir name="Rss"><file name="Abstract.php" hash="4381ce9ca264894fc260e8db95334349"/></dir><dir name="Sales"><file name="Creditmemo.php" hash="660502a706a198926126f1275f98db0c"/><file name="Invoice.php" hash="6e3b478a5535d5eb9d8ab50d20494738"/><file name="Shipment.php" hash="93bed23eb67f1991ced3f7562eb6a880"/></dir></dir><file name="Exception.php" hash="492092b52f7f150ad367e4b3772a67a1"/><dir name="Helper"><file name="Addresses.php" hash="6bd96194c88392da84bb8d1b5da79577"/><dir name="Catalog"><dir name="Product"><file name="Composite.php" hash="5ab7c631e23fd3dab4be1ae6ec4da6a8"/><dir name="Edit"><dir name="Action"><file name="Attribute.php" hash="16f99bb86999e9383792446848e8ba99"/></dir></dir></dir></dir><file name="Catalog.php" hash="fb4b707c73756286843b41ca5f94353c"/><dir name="Dashboard"><file name="Abstract.php" hash="f24a74fc4c5324c83677a0656344776d"/><file name="Data.php" hash="19c86273adb4971031508b4dd634f53d"/><file name="Order.php" hash="a9f2663b54aeda7ba20ba7b4cf1b505e"/></dir><file name="Data.php" hash="4bbc866cebdf5c6c18a8c0b80367c6d2"/><dir name="Help"><file name="Mapping.php" hash="e190e5b77c9f006ab00f1fc6a4d29595"/></dir><file name="Js.php" hash="e4d84ccf4986868c523cef17768f45e0"/><dir name="Media"><file name="Js.php" hash="d1de807a757b42cf152240f7435ebe8a"/></dir><file name="Rss.php" hash="d9660db600a8ccff6cf31c8170d4f387"/><file name="Sales.php" hash="514dd84d86c15aac8e79df6b49f82f4e"/></dir><dir name="Model"><dir name="Config"><file name="Data.php" hash="20b6c3725914b23efb96baa36d84b29f"/></dir><file name="Config.php" hash="cd316b8f97b3d9a06f22a0fe9748ed14"/><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="3ca624f01f68104ec4551e0413ee6e45"/></dir></dir><dir name="Email"><file name="Template.php" hash="aa1208ec3872a2b4e80c938ae393cdac"/></dir><file name="Extension.php" hash="d05e85bd759ee15df0f564e66dc9a110"/><dir name="Giftmessage"><file name="Save.php" hash="051daf32c12f5a50e80fedae839f12d1"/></dir><dir name="LayoutUpdate"><file name="Validator.php" hash="b175b1217a4c24a53f55b7f7042fea94"/></dir><dir name="Newsletter"><dir name="Renderer"><file name="Text.php" hash="40e5e8948ff669dbe33418813787910b"/></dir></dir><file name="Observer.php" hash="aab98abc9921bbb3076d8254a3e68fe2"/><dir name="Report"><file name="Item.php" hash="399bf8e19037aa1c1cf98ad2aee0c0cc"/></dir><dir name="Sales"><dir name="Order"><file name="Create.php" hash="c8e5597957b0d1372f4e776e9e80b8b5"/><file name="Random.php" hash="f587faaa79edccdf9f4372c3ae39b9eb"/></dir><file name="Order.php" hash="7415e987557325a4743c13512ca92ef4"/></dir><dir name="Search"><file name="Catalog.php" hash="3b2a470ca6a79d04bd1fa1db67ac59d3"/><file name="Customer.php" hash="502360ccce3d20548716eecd27ce530b"/><file name="Order.php" hash="ec3ff210f4d3f0739d1cf6c87e943a05"/></dir><dir name="Session"><file name="Quote.php" hash="9a6a954339497a62fcfb2b2c7d9d4f6c"/></dir><file name="Session.php" hash="51cb79cc18d6b42410a0d6842cd4d959"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Admin"><file name="Custom.php" hash="2c5666b555abd9c03ff6ef9fc5013540"/><file name="Custompath.php" hash="d5737f4b5775229b2c2813916501647e"/><file name="Observer.php" hash="892a8d168d84463484d5d7d1306f2b3c"/><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="cf09ab0944db26b55e9177fcbbab3cd5"/></dir></dir><file name="Usecustom.php" hash="1b86eb94045fb9689875500f57a61f17"/><file name="Usecustompath.php" hash="c6f3126a5cd06cb16a7dd726bc40f737"/><file name="Usesecretkey.php" hash="ac27a438f4f821f0e0923ffdd9b7fc5c"/></dir><file name="Baseurl.php" hash="9acb5e1d0ed1079346360687dd72c6f9"/><file name="Cache.php" hash="7ec361d4e01fc0764d8ce64f44eef486"/><dir name="Catalog"><dir name="Inventory"><file name="Managestock.php" hash="0a9a05e402ac2c33bd175f3fde2dedf3"/></dir><dir name="Search"><file name="Type.php" hash="6e471060cc4ab8806b8fa0127fd1b12a"/></dir></dir><file name="Category.php" hash="d60ecefd01f2117ac332e643a86f003e"/><file name="Cookie.php" hash="95d3ebe1ace8f7f8866386241dce1990"/><dir name="Currency"><file name="Abstract.php" hash="d12482b114b5b00ef0566b1fc8ecc046"/><file name="Allow.php" hash="2a6e6e72c7ca596bd68d54437eacd542"/><file name="Base.php" hash="15232a9cd5bf2bdad17020197b051bb2"/><file name="Cron.php" hash="6cc1e541da68929ed1e5e48ef0d6eff9"/><file name="Default.php" hash="4cac77f5e7179c894e09ce62a841fd88"/></dir><dir name="Customer"><dir name="Address"><file name="Street.php" hash="0802a38f4231f21f50761eb2681870a5"/></dir><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="f7d772e3426bea993fca6e1a2412e6d6"/></dir></dir><dir name="Show"><file name="Address.php" hash="84eec1235bbc1eb64bae76c09bfa4d22"/><file name="Customer.php" hash="929b8295dbfe3107825d10eb8c5b18f8"/></dir></dir><file name="Datashare.php" hash="14db2bc869de3a8b9e96beb25c7b6807"/><dir name="Design"><file name="Exception.php" hash="4e35d73b40a74f338b549d31006cdeff"/><file name="Package.php" hash="744541ad3227592d0e277ca26f79b924"/></dir><dir name="Email"><file name="Address.php" hash="b7ae49706ba307009fb7014e490842b2"/><file name="Logo.php" hash="490869120f5980995eaa50d12c8afb33"/><file name="Sender.php" hash="f60327e5b6e76ddced9a9ef97f4138eb"/></dir><file name="Encrypted.php" hash="0c1ff15368ed0bc34ab5ed8ff45a1176"/><file name="File.php" hash="a438e9d1f635d3e6d773cd9b478c6a38"/><file name="Filename.php" hash="1ae3da616765e139f463322910c9948c"/><dir name="Image"><file name="Favicon.php" hash="4cd22c671cec7bb2ffe05e8ee1e4e776"/><file name="Pdf.php" hash="20355d2d402d681d850de881ef2361b9"/></dir><file name="Image.php" hash="9431465bc83b1daede8669325b9664d2"/><dir name="Layer"><file name="Children.php" hash="555fb0942763f1017b66381b6d1e92fa"/></dir><dir name="Locale"><file name="Timezone.php" hash="9ee4785bc7529a0babc28ed05306d6d0"/></dir><file name="Locale.php" hash="1d904bcf6274d7b1249113e9c0362b0b"/><dir name="Log"><file name="Cron.php" hash="04de276e0fbef64346b9677a479a8fe2"/></dir><dir name="Price"><file name="Scope.php" hash="b0c2b81d5fca231d562f85e51e1b9483"/></dir><dir name="Product"><dir name="Alert"><file name="Cron.php" hash="4259753023caf2f11b3e115b42fd3e60"/></dir></dir><file name="Secure.php" hash="3e5d09621e514c6fb41333df0af508de"/><dir name="Seo"><file name="Product.php" hash="05234d32f3e6dc837b2ba9b1bcc90729"/></dir><dir name="Serialized"><file name="Array.php" hash="093602922dd9fdb8d851fc1195cd5b29"/></dir><file name="Serialized.php" hash="1e97e725595c0d0742b45bcbf18004ed"/><dir name="Shipping"><file name="Tablerate.php" hash="ea54a32e1e3468c0ef5efbd96f9737ad"/></dir><dir name="Sitemap"><file name="Cron.php" hash="109975e92c2592924594887734ca750a"/></dir><file name="Sitemap.php" hash="8fb7d71bf5ba8abde15fd7eb7f3609f2"/><dir name="Storage"><dir name="Media"><file name="Database.php" hash="b9cdcc830271f01fc4841fa1276e0b2a"/></dir></dir><file name="Store.php" hash="6df764d2b71d964a2eb728b94ef875bd"/><file name="Symlink.php" hash="579255cea3be201bb020608453924d24"/><file name="Translate.php" hash="b8ab58a6e82b15b3d63831cfb5400c89"/><dir name="Web"><dir name="Secure"><file name="Offloaderheader.php" hash="409123f7cf4e37357845c14debc112da"/></dir></dir></dir><dir name="Clone"><dir name="Media"><file name="Image.php" hash="f306ddd5756ece9d692c34f9d1d43289"/></dir></dir><dir name="Source"><dir name="Admin"><file name="Page.php" hash="07ea92257f77ed9b99e98e6394af02e9"/></dir><file name="Allregion.php" hash="61dea0e4db289fc2caf59db18626a2cd"/><dir name="Catalog"><file name="GridPerPage.php" hash="ed28c5e9b96466e9a77005af1545bc98"/><file name="ListMode.php" hash="d06c3c9e6872739901aae95a5b7f6844"/><file name="ListPerPage.php" hash="054f67f15da21255b7c72600b745f4af"/><file name="ListSort.php" hash="d1bd911ee054a24d328f7e43d85784e3"/><dir name="Search"><file name="Type.php" hash="78d42abd37aa2213f71109425e26356b"/></dir><file name="TimeFormat.php" hash="18e9f55f3a54ba28e16b5094e461995a"/></dir><file name="Category.php" hash="c1323751281ad071b9fe5510c20c79ab"/><file name="Checktype.php" hash="b66904e4be16dc0057f81c933a70cc4c"/><dir name="Cms"><file name="Page.php" hash="e746560cfb4b5433f380df5487d0becd"/><dir name="Wysiwyg"><file name="Enabled.php" hash="e560838a04d4cb33edfcffa7e31f6b55"/></dir></dir><dir name="Country"><file name="Full.php" hash="c61ab1b2b28608f511dedb28c1e64be2"/></dir><file name="Country.php" hash="428952ac0a60019c397e2cd4a6620542"/><dir name="Cron"><file name="Frequency.php" hash="19e48f7a858eaf9d069bd77b22641680"/></dir><dir name="Currency"><file name="Service.php" hash="1c9d3cc05d88594601843dfb1f2128a3"/></dir><file name="Currency.php" hash="f5adf5d1762abaadb93a7889f32a9fb1"/><dir name="Customer"><dir name="Address"><file name="Type.php" hash="0cad25f9931835f7de60b09d925a6c12"/></dir><file name="Forgotpassword.php" hash="51a97dc80d5c4f0d171d42ab7a9b9563"/><dir name="Group"><file name="Multiselect.php" hash="614c108c066821916bfd8b798b3a8514"/></dir><file name="Group.php" hash="f36bb4c0050c3ae64afa4e72af620fe7"/></dir><dir name="Date"><file name="Short.php" hash="9066c5defae302673f869bf780cb36ee"/></dir><dir name="Design"><file name="Package.php" hash="86e05ba956bc9b25579a75da521e9445"/><file name="Robots.php" hash="c6eac69c9f9bdc6f527f7f8cc8d10513"/></dir><dir name="Dev"><file name="Dbautoup.php" hash="650c67b2667005b01f609659e152e0fc"/></dir><dir name="Email"><file name="Identity.php" hash="718c5958bb3c22bca7fa332a010c7dc0"/><file name="Method.php" hash="bbc28af99f920366e62ee128da9832a9"/><file name="Smtpauth.php" hash="caa349b5110be332fffdaea33572e41a"/><file name="Template.php" hash="53b7bca8aae2a751dc17a9802bd8b76e"/></dir><file name="Enabledisable.php" hash="d60de150328b7788eb0b62062f7f28c7"/><file name="Frequency.php" hash="52f105e591fbca3657913f5ad4d0c466"/><file name="Language.php" hash="201cd16113b823930b68507fbedf901d"/><dir name="Locale"><file name="Country.php" hash="9b8a64007f3901633986a4e966e17cce"/><dir name="Currency"><file name="All.php" hash="4baa4cd30bb25068542a9c28bc0e8ab8"/></dir><file name="Currency.php" hash="96b91fbdf85c5a36a46c723b33bbb434"/><file name="Timezone.php" hash="9a185fb1041b0d191a4f81857629e1e9"/><file name="Weekdaycodes.php" hash="9587ebc99e4a4f8c0e17337e2613ba4f"/><file name="Weekdays.php" hash="08600f64be620c2b5ee86b0dddb394e9"/></dir><file name="Locale.php" hash="4b0bc201e473144ed1d4a6f51bc1eea4"/><file name="Nooptreq.php" hash="bb4d40af3002efb88cb2f8c889e8fc11"/><dir name="Notification"><file name="Frequency.php" hash="8ad9cb56d6e653510ec06f0d6e6f049a"/></dir><dir name="Order"><dir name="Status"><file name="New.php" hash="cfe507d4c133065a8a120c9c4251aa4d"/><file name="Newprocessing.php" hash="d7d4b80ebbc47d29bb0b2be5ea93cef7"/><file name="Processing.php" hash="e75bfc8565c3650a50aa2ef5a3ecb34b"/></dir><file name="Status.php" hash="b664b4209585313ccde7a0a0f06310c0"/></dir><dir name="Payment"><file name="Allmethods.php" hash="7c9f846bc2576a405dd4d933841b03d9"/><file name="Allowedmethods.php" hash="3029cda991bcab373140c5e5396d6775"/><file name="Allspecificcountries.php" hash="82ee5d5c57b5e17ca272e0402023be3b"/><file name="Cctype.php" hash="f973d2997373738b6ff05bcea3b9733d"/></dir><dir name="Price"><file name="Scope.php" hash="082be99bce33b87338683eebdcf107ba"/><file name="Step.php" hash="0ebcae1ec080294aa813bbd06d1bd77e"/></dir><dir name="Product"><dir name="Options"><file name="Price.php" hash="741cb8f5830a944ccc7fa584ac746966"/><file name="Type.php" hash="5890cd095b3d4d03c103fd8b2da7b9f9"/></dir><file name="Thumbnail.php" hash="c5e7044a2578410185a18c4a59da7fae"/></dir><dir name="Reports"><file name="Scope.php" hash="050ceb4cb8eb53afaa4043092c1bf061"/></dir><dir name="Security"><file name="Domainpolicy.php" hash="66af9f43fb951203382eb026f5b386a7"/></dir><dir name="Shipping"><file name="Allmethods.php" hash="261b2e2eed143fc09763c4134f76ac53"/><file name="Allowedmethods.php" hash="08cd1fbcb9b2dcc8fafd1fbbd77ca42c"/><file name="Allspecificcountries.php" hash="8b0680c67bffe2f5f368a45289a1dbd2"/><file name="Flatrate.php" hash="0eed70f87ec267efe2c1319734f55033"/><file name="Tablerate.php" hash="a7d1b82d0cd24b32bb79695dadd4f167"/><file name="Taxclass.php" hash="a7aab6b10cfa318d4c1afcfdc2299b57"/></dir><dir name="Storage"><dir name="Media"><file name="Database.php" hash="feb8b4a599b0cb0c4816e8d424236ac0"/><file name="Storage.php" hash="92c1cb07e86aa0e7b1e352f6c73e61d9"/></dir></dir><file name="Store.php" hash="908b5d6637da193e9851312c3961eaee"/><dir name="Tax"><dir name="Apply"><file name="On.php" hash="e8f20c82b9c8dfde173526f8ac52a62a"/></dir><file name="Basedon.php" hash="6e9b6c9853568c1c2715422e7a5c22ed"/><file name="Catalog.php" hash="f9e22bf355deacccfd112b6b7ef5137d"/></dir><dir name="Watermark"><file name="Position.php" hash="1660f8d16efa85d0b0e8e8ca8c32e0ef"/></dir><dir name="Web"><file name="Protocol.php" hash="5bbdb71054da0a2b21a6ec414434eb59"/><file name="Redirect.php" hash="70cd12583e8774a0f9af033a7a16f3b0"/></dir><file name="Website.php" hash="7dea31f99e19f13bafa8ca1134f6cca8"/><file name="Yesno.php" hash="9e342496a7337dabb63403d2a67ad9d3"/><file name="Yesnocustom.php" hash="8b4f1f9a773bf7280ac3cbd88621dd3c"/></dir></dir><file name="Store.php" hash="3f7c2cb97827b41692fcbcc074f03710"/></dir><file name="Url.php" hash="20f77e72bfb83f0b71b34ae3bd269cfe"/></dir><dir name="controllers"><file name="AjaxController.php" hash="4a3b333cb01a891e6d143fd6076f0687"/><dir name="Api"><file name="RoleController.php" hash="2cb844672988443b1cf9365146b2c74c"/><file name="UserController.php" hash="e4ca9f4d3da11196e84170294c043a27"/></dir><file name="CacheController.php" hash="c8d326f4cd7121ac4ef359d2e537583a"/><dir name="Catalog"><dir name="Category"><file name="WidgetController.php" hash="13aba031322ce4a03731e84dcc5b4893"/></dir><file name="CategoryController.php" hash="875c0ad4b4204bbf61e4f1bc4c730cf9"/><dir name="Product"><dir name="Action"><file name="AttributeController.php" hash="cac811bf433ac778ceb92659b0b4fe57"/></dir><file name="AttributeController.php" hash="24fc6ea8a7b1b066ef4572dd9dc40b8e"/><file name="DatafeedsController.php" hash="5e4375bf61146051c472f00289a53878"/><file name="GalleryController.php" hash="c85cac9fc2010ecd5dec2ae31cb7f2bd"/><file name="GroupController.php" hash="1e9806afce13423b0bdb622b94213ce1"/><file name="ReviewController.php" hash="a8fb62bda266dbbc87b9b2c64a525020"/><file name="SetController.php" hash="9031dbd76279edf6917ac1379f8ae12d"/><file name="WidgetController.php" hash="dcf37f89a054c70e7ae090f01799c558"/></dir><file name="ProductController.php" hash="945d071fc7a69df4fd0b1dd65e847b7f"/><file name="SearchController.php" hash="2c9ef11193a19d5db884e99608846f16"/></dir><file name="CatalogController.php" hash="2d7423492dbb3bda4cecb19024c09ae5"/><dir name="Checkout"><file name="AgreementController.php" hash="15d6e303b61408e90e3deec4765119bc"/></dir><dir name="Cms"><dir name="Block"><file name="WidgetController.php" hash="c3a05a659d8736631a5eb3a888cd4f9d"/></dir><file name="BlockController.php" hash="5a85ee07e0e531e029cae9c048b40fca"/><dir name="Page"><file name="WidgetController.php" hash="eec6205a9f42b30ce470dcd693c575a7"/></dir><file name="PageController.php" hash="e56e329cf0dbf0a74c05a2cb9f8f7874"/><dir name="Wysiwyg"><file name="ImagesController.php" hash="0ddb9b49c7ab5dd875881554304037c2"/></dir><file name="WysiwygController.php" hash="e952390207013f76ac997c446415daa3"/></dir><dir name="Customer"><dir name="Cart"><dir name="Product"><dir name="Composite"><file name="CartController.php" hash="aa29ec323bfa1da6ee83f60202cea768"/></dir></dir></dir><file name="ConfigController.php" hash="3cebd8a5a06f515b201213de63a42301"/><file name="GroupController.php" hash="88cbd4b0a3e966a3dbc478c4cccabd26"/><file name="OnlineController.php" hash="284423912762c3901a3d88a2f152ab49"/><dir name="System"><dir name="Config"><file name="ValidatevatController.php" hash="c2f13c6a3a577d5e9a7e2300ab5129b4"/></dir></dir><dir name="Wishlist"><dir name="Product"><dir name="Composite"><file name="WishlistController.php" hash="51d3c5a82a21db7095fe82ac73bf091e"/></dir></dir></dir></dir><file name="CustomerController.php" hash="cbf390f3fc34ad4697cba319899f6f95"/><file name="DashboardController.php" hash="5d4ab73f955bc70d6b19def9a98296f2"/><file name="IndexController.php" hash="31ecce0a0aabea0bc30b4c5ec02ffb39"/><file name="JsonController.php" hash="99e0ce016512b3eb1917b730cdf6d712"/><dir name="Media"><file name="EditorController.php" hash="f523d8445665a42af43c3042c54058a7"/><file name="UploaderController.php" hash="c6f2c5739d38daa86c0848fe61ba7258"/></dir><dir name="Newsletter"><file name="ProblemController.php" hash="0063601a49fdc914707d789b05a17042"/><file name="QueueController.php" hash="66d04ec9ee056156791a32572560e7cf"/><file name="SubscriberController.php" hash="6ae453eac0c633d625f9093ce3f837f2"/><file name="TemplateController.php" hash="8fe025831fa4850bd531b2083691abc3"/></dir><file name="NotificationController.php" hash="761d19dc912e502c652261d1deb548bf"/><dir name="Permissions"><file name="BlockController.php" hash="e6ba082842b88611db1d0946c0315ef6"/><file name="RoleController.php" hash="a7eb386736aa7516ce1d3d93fab1e4cd"/><file name="UserController.php" hash="50614594c19864649fea8fb11dad385d"/><file name="VariableController.php" hash="7318ce9dafa071cdb848e61f95f9deba"/></dir><dir name="Poll"><file name="AnswerController.php" hash="c52decb47b9eb7f7e998597fe737f260"/></dir><file name="PollController.php" hash="cd1af4024635fdaa363490e8ed39fa73"/><dir name="Promo"><file name="CatalogController.php" hash="4caf32daf9d3922e456b671bd5d62bc0"/><file name="QuoteController.php" hash="4870d2393a5a379a558d081801bf9d56"/><file name="WidgetController.php" hash="32e7d3feb44b9d6b4eea0b8295962d6f"/></dir><file name="PromoController.php" hash="15febb0a2fcf990a71149995715cfd21"/><file name="RatingController.php" hash="e96fda9ac407e3eb0617b3788e0364fa"/><dir name="Report"><file name="CustomerController.php" hash="119442675595a473ad3f4d19e85d7d8e"/><file name="ProductController.php" hash="2622fae888d767646d0e137d309ade92"/><file name="ReviewController.php" hash="3f06d0453213a7927baf2782f589e140"/><file name="SalesController.php" hash="b7b843ee6f027b7dbf05f50f9ce19055"/><file name="ShopcartController.php" hash="03fc38fb4ab7129f85ac1c5683137028"/><file name="StatisticsController.php" hash="3062322c4b83c2f395d7b3d99ab4c7db"/><file name="TagController.php" hash="5b0461395c73edb55a371f70e5e21e96"/></dir><file name="ReportController.php" hash="647977810971dcfcc26d2209d0796608"/><dir name="Rss"><file name="CatalogController.php" hash="bcf01d5662e37969f77732051851901f"/><file name="OrderController.php" hash="a1cc80524411592c59495098a03832b3"/></dir><dir name="Sales"><dir name="Billing"><file name="AgreementController.php" hash="e1a98f30f42e8163fe22be39427a46eb"/></dir><file name="CreditmemoController.php" hash="bb521206beadb2522adb4202eb3dc0fa"/><file name="InvoiceController.php" hash="dd7aa697973092f3090102cf18e4c39e"/><dir name="Order"><file name="CreateController.php" hash="007b0464c0c28eff1d22c0c2f485d4df"/><file name="CreditmemoController.php" hash="8c42d690a39b9fcf74aa070e8d710292"/><file name="EditController.php" hash="7fa483e279a11bb3022e35c2935986cf"/><file name="InvoiceController.php" hash="de36f79d963342a4e10cd0caf048cd43"/><file name="ShipmentController.php" hash="0af14730559aa6e861264efd3bc8b0d1"/><file name="StatusController.php" hash="6ae192bfb3929f5202eb951e0737ae68"/><dir name="View"><file name="GiftmessageController.php" hash="3d9f9c81840d6989ecf9f6f1bdc931e7"/></dir></dir><file name="OrderController.php" hash="2669105016408166ebd145751429183d"/><dir name="Recurring"><file name="ProfileController.php" hash="f72efa409b661b1d915434e3c875008b"/></dir><file name="ShipmentController.php" hash="0e3e063a883234200ba49555c859c051"/><file name="TransactionsController.php" hash="6226eb065b4ed2aefacbe29bfda928a2"/></dir><file name="SalesController.php" hash="5da8825de3713488b413f4a38708f504"/><file name="SitemapController.php" hash="2ddb974b347e558c83aab5356d2736f6"/><file name="SurveyController.php" hash="17f9900c2c31823654ee4c3cf9d729d2"/><dir name="System"><file name="AccountController.php" hash="19b024780b21fea50f660c780a44cc77"/><file name="BackupController.php" hash="8d8fdc64d16d86dd920d4f0aa6690cfd"/><file name="CacheController.php" hash="b8b6115eda61ce326a06e4b4e07e357b"/><dir name="Config"><dir name="System"><file name="StorageController.php" hash="b28d44749bb7faddc095f7e8aee5caae"/></dir></dir><file name="ConfigController.php" hash="66d120fa468a8fb92d111372ea03c371"/><dir name="Convert"><file name="GuiController.php" hash="6f77eb0491fc1534a03a3e6a5e0eec02"/><file name="ProfileController.php" hash="1fa175d876232dcbf60412886aa7e10a"/></dir><file name="CurrencyController.php" hash="b8ff1126bae27e827ab9aff569a1b929"/><file name="DesignController.php" hash="69a8469e73a35c153996c39d9fee7ff9"/><dir name="Email"><file name="TemplateController.php" hash="174d18e23c8dca53a2e922d1f422bf52"/></dir><file name="StoreController.php" hash="4bcc3d6bc98610fe70d9fd969b9d6713"/><file name="VariableController.php" hash="7b01eed6355526f1d6516dc666fab493"/></dir><file name="SystemController.php" hash="71be9469a12cf6521f298798f8115048"/><file name="TagController.php" hash="15fc21a36107ea1b5608695a7e05b399"/><dir name="Tax"><dir name="Class"><file name="CustomerController.php" hash="33aa7a02f42d623ee1d7e895acf5e6b3"/><file name="ProductController.php" hash="250bcb4e0829442ebcb608be4aa03506"/></dir><file name="ClassController.php" hash="3d088eecb99a92973079cc380a85a4c0"/><file name="RateController.php" hash="6a2a85dd3fa1273c4e722be916b34756"/><file name="RuleController.php" hash="9092a005abd9f80d362d95f4771880cf"/></dir><file name="TaxController.php" hash="03a8806acc5e5544b6fe4c20effa7ab3"/><file name="UrlrewriteController.php" hash="f9571e54ad360f8ee074704e4f0f9458"/></dir><dir name="etc"><file name="adminhtml.xml" hash="e79d957b0e169cb969f60ad060f60b11"/><file name="config.xml" hash="2fbec9349a3211e2d32db223662552d0"/><file name="jstranslator.xml" hash="69fa2812576935434fd9de1dcd0e28a2"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Adminhtml.csv" hash="12b8065b39d71d576a920712ee1cf2d3"/></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.9.3.4</min><max>1.9.3.4</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1.10</min><max>1.51.1.10</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.9.3.4</min><max>1.9.3.4</max></package><package><name>Lib_LinLibertineFont</name><channel>community</channel><min>2.8.14.10</min><max>2.8.14.10</max></package><package><name>Lib_Js_TinyMCE</name><channel>community</channel><min>3.5.11.9</min><max>3.5.11.9</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Adminhtml</name>
4
+ <version>1.9.3.5</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.9.3.5</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2017-09-11</date>
14
+ <time>10:24:38</time>
15
+ <contents><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><file name="Abstract.php" hash="a0774e0df8216d1631fe2f4428ffdc38"/><dir name="Api"><file name="Buttons.php" hash="7b65a0d74c88025cb2024a967a278266"/><file name="Editroles.php" hash="a19cce95a5dea1510c2d7ee6a8c20dc1"/><file name="Edituser.php" hash="4544fe3f91ba29c3ef4bb972c2b9c6ed"/><dir name="Grid"><file name="Role.php" hash="890f0f1fddc0487dadeb2701215967ad"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="9fe490ca6d241719c77cb7f329584152"/></dir></dir><file name="Role.php" hash="dec91e13bf9a9574cdb08e969aba3d5f"/><file name="Roles.php" hash="485b25c20270792a2b4c99910a94d7b0"/><dir name="Tab"><file name="Roleinfo.php" hash="730e9caf4ed842b5d71f344ef17fa123"/><file name="Rolesedit.php" hash="d526b760b88cc6c6810ce96fec773bbe"/><file name="Rolesusers.php" hash="6a40ef9870095cced0fc087898a55706"/><file name="Userroles.php" hash="e5908914f2680faa96bbb5b4f7282a86"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="f88ec31ae5c723ead6a7e7d9e905e873"/><dir name="Tab"><file name="Main.php" hash="4061f3cd8227eab9fa16bf99433618d7"/><file name="Roles.php" hash="66579ebc160a55a02f221b20001e9be5"/></dir><file name="Tabs.php" hash="bab543f959ec9907b0b6bd71c1baabb5"/></dir><file name="Edit.php" hash="e6eaa797ff9a60514de9b6f24cdf4443"/><file name="Grid.php" hash="d1e5e46f74dbbfd386d7700e8ee1c422"/></dir><file name="User.php" hash="449c8f8ed95930d5a5476fbac03062c4"/><file name="Users.php" hash="a0418c7c52dbe42d2ebf3c6b9b3a5481"/></dir><dir name="Backup"><file name="Dialogs.php" hash="09ffe99ff067c5b14355133b6a517cc5"/><file name="Grid.php" hash="e9be9bd13785cecf645e2dee3e7fe80d"/></dir><file name="Backup.php" hash="dae60084f687e446989c5e6e5877a221"/><dir name="Cache"><file name="Additional.php" hash="60bd1f486a711299a648c083c200a49a"/><file name="Grid.php" hash="33c6e54c2d4c5b2f475d1d2f442e81ee"/><file name="Notifications.php" hash="9660ffd8b195cc73a5d02c41678a34e3"/></dir><file name="Cache.php" hash="4c2ecf5f5129f6d4c0c185a491a6ea1f"/><dir name="Catalog"><dir name="Category"><file name="Abstract.php" hash="35c4924741fb73a4e718ba31d30eacf4"/><dir name="Checkboxes"><file name="Tree.php" hash="b2d087820c32ef9d4fb819dfc20ca11c"/></dir><dir name="Edit"><file name="Form.php" hash="d32ef06d09732f315398f9475b07e07e"/></dir><file name="Edit.php" hash="6dcdfbadde697b9136064a763ae8945a"/><dir name="Helper"><file name="Image.php" hash="f5dcc2f8b43a57d733b4436747def107"/><file name="Pricestep.php" hash="70cac01a0fedbd899b950ff9ac579003"/><dir name="Sortby"><file name="Available.php" hash="6bcad3ca55509f141045e6c7bb09979e"/><file name="Default.php" hash="d27f2b23c43345ce49cd9b61fb6ebf8f"/></dir></dir><dir name="Tab"><file name="Attributes.php" hash="93dfb873bf0ca67ef6ec067cda806b2b"/><file name="Design.php" hash="a3c74ec474f87c642fc034943fbc0a4d"/><file name="General.php" hash="556d192a08a2685ec457bdb159726cae"/><file name="Product.php" hash="4c7eb45465135b06f1c3520abde72a08"/></dir><file name="Tabs.php" hash="6e289f1e7c8f662e7890f52c3fedf2eb"/><file name="Tree.php" hash="4789ad812f9b8c0396baa40ac4b6ce6e"/><dir name="Widget"><file name="Chooser.php" hash="36683c271486db6f2366d626aeb8c40a"/></dir></dir><dir name="Form"><dir name="Renderer"><dir name="Attribute"><file name="Urlkey.php" hash="b51bf8c6399b47e8643670a1b8812e32"/></dir><dir name="Config"><file name="DateFieldsOrder.php" hash="53c9ab8a3281f98b5a90fd9a22791f85"/><file name="YearRange.php" hash="517e9c263bcc62fab3b673a020b0d9e7"/></dir><dir name="Fieldset"><file name="Element.php" hash="ddf65a02e2c92b2425cf797a1e27dc09"/></dir></dir></dir><file name="Form.php" hash="229a3c16dd8c1d7f45bb3ab003a3b733"/><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="1e8532dd45ca8b2c2ba2158147268126"/></dir><file name="Wysiwyg.php" hash="54b9274daeabc46ba863c295234f56e2"/></dir></dir><dir name="Product"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="be4e1ea39be954ca0bd5f61d4813267c"/><dir name="Tab"><file name="Front.php" hash="1b3d1efb81c2f24639f459ad9847d0f2"/><file name="Main.php" hash="2fc2c3c76fd2d63e9a210d790e300ee8"/><file name="Options.php" hash="3468ab399d39d7c4e54b467736102393"/><file name="System.php" hash="8fb21a5c8a169c0b29f576e45a4f3244"/></dir><file name="Tabs.php" hash="2ed2b6b6d74ce5a6e34a16882951f747"/></dir><file name="Edit.php" hash="adeeca630d01e8c0d206ddd87a0db8bd"/><file name="Grid.php" hash="ae1d64ccafd116306a59f94c0125e252"/><dir name="New"><dir name="Product"><file name="Attributes.php" hash="2a372079b99b3f78725f2db2232327c3"/><file name="Created.php" hash="de7aadc3c750fa174d4f710c7e7154c6"/></dir></dir><dir name="Set"><file name="Grid.php" hash="21bd1adfdeca56a58f5f5f3f77fa19c7"/><dir name="Main"><file name="Formattribute.php" hash="1e3a87fc41c95bbe630717fac6b9849c"/><file name="Formgroup.php" hash="cc45dcc01dfbf82c5580828365442e63"/><file name="Formset.php" hash="da93cca431b9a67208eb169cef4b1390"/><dir name="Tree"><file name="Attribute.php" hash="ce4b683ee3d52f04e18cf931658ee03b"/><file name="Group.php" hash="e8607f5d3e9a5ea691d1f11ae5bfba8d"/></dir></dir><file name="Main.php" hash="63caeb7337db0d1b67c713fbe092259a"/><dir name="Toolbar"><file name="Add.php" hash="109d505f4e72f4559fb372e2dca37211"/><dir name="Main"><file name="Filter.php" hash="1420b1c8f4ee170578299108f021cea3"/></dir><file name="Main.php" hash="2c4f4c19902fb9dcc0c5a72298653267"/></dir></dir></dir><file name="Attribute.php" hash="ac5de9bae1715cd1f4ec0005c2bed9a8"/><dir name="Composite"><file name="Configure.php" hash="58d232736fade8b83628bdff70e98f64"/><file name="Error.php" hash="3d82bff4ea9f32dbb9805d612e4e58a3"/><dir name="Fieldset"><file name="Configurable.php" hash="8fbd4a55366ea2fde1d51c1b4cc37d09"/><file name="Grouped.php" hash="4e98c73220b4e7cfacb717a2e0867a95"/><file name="Options.php" hash="5bc993482eaa29be0155440a137d1b2d"/><file name="Qty.php" hash="99aafe0da8a25c6765c533bf2a6df6a3"/></dir><file name="Fieldset.php" hash="b373ef7a34dc33b9fc5da9caf6660d1d"/><dir name="Update"><file name="Result.php" hash="84f650eb0cbbc5417bbc061e9b98f247"/></dir></dir><file name="Created.php" hash="778bc7544e0db8128629055227e1d249"/><dir name="Edit"><dir name="Action"><dir name="Attribute"><dir name="Tab"><file name="Attributes.php" hash="079cc9dc70bd41bc82ac56f30d741328"/><file name="Inventory.php" hash="30ddff9e9cf321cfcc279a8e94a95655"/><file name="Websites.php" hash="8439bcfd0aecc0f65e6048f3addc7f78"/></dir><file name="Tabs.php" hash="c87d30037eeb22295975724f2dc27612"/></dir><file name="Attribute.php" hash="517f58103223236358a3e652d914af38"/></dir><file name="Js.php" hash="8d1cb0c48917736927350aea021e0340"/><dir name="Tab"><dir name="Ajax"><file name="Serializer.php" hash="bfccfd2b8b21061b6d4b8b6ef0636ea8"/></dir><dir name="Alerts"><file name="Price.php" hash="a8a83aab6af2bea7a7f19c800b6b8274"/><file name="Stock.php" hash="806311a84cb7c2097271dda84c31ab11"/></dir><file name="Alerts.php" hash="3b96a5bbb4c4a7c3acdc4b9180b405ae"/><dir name="Attributes"><file name="Create.php" hash="b5780228433c8d788718b7db7cec90dd"/></dir><file name="Attributes.php" hash="5a7af90af1ba85dca75961a729ad39c1"/><file name="Categories.php" hash="093d803a312ea37c24b881fa16df2880"/><file name="Crosssell.php" hash="eb9e4f9027de4a64aed02fc7f50ef964"/><file name="Inventory.php" hash="9dca7668cbb72ab5dbacef87eb3340b6"/><dir name="Options"><file name="Option.php" hash="21272fbfdf814665837f3be2024adad9"/><dir name="Type"><file name="Abstract.php" hash="4d159463827fe9dbbc87b07730ee8778"/><file name="Date.php" hash="c6a0da4875100cc6b18329f5751f69ea"/><file name="File.php" hash="5777294a34b09e93f818e8011319e741"/><file name="Select.php" hash="7d9f4ed8f1c973e0a6ddd8d69a6309b5"/><file name="Text.php" hash="e4b21e633b53fe6802e530b38ccbdd82"/></dir></dir><file name="Options.php" hash="e3e14591448b493609aca4bc7b297c67"/><dir name="Price"><dir name="Group"><file name="Abstract.php" hash="4fdcac5cd99d519c022d378de247fe31"/></dir><file name="Group.php" hash="93a4c298c2d7b3b299e489a4f83d8c33"/><file name="Recurring.php" hash="455ca797d2da60ec12bcbf5f2dd2c6d4"/><file name="Tier.php" hash="da13f42ee3e34e14337cc306c20a7dec"/></dir><file name="Price.php" hash="d3e1e28d020db7485e8c17faa0c21c1c"/><file name="Related.php" hash="9d187fbcc5746dab75144f4d6daae22e"/><file name="Reviews.php" hash="dd70ef46a65c6c697dd78642b6e2e6cd"/><file name="Settings.php" hash="c040bfc417ce68f4613032e3488e7394"/><dir name="Super"><dir name="Config"><dir name="Grid"><dir name="Filter"><file name="Inventory.php" hash="560faefd512b017eecc4fa1db7159088"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="74173abb01bcc4b34f7a6edf0248962d"/><file name="Inventory.php" hash="95fe4e6db8d06e698787164e1ca721ad"/></dir></dir><file name="Grid.php" hash="d6fde5650cbe1fdb2b7e989db3c86e9c"/><file name="Simple.php" hash="57c0c9b8da8b8fe6b825d58bb6bc9e4b"/></dir><file name="Config.php" hash="21b11ac87934cb9f810e7cf3b4984070"/><file name="Group.php" hash="6978a1d57485a215ff59a39c812383d8"/><file name="Settings.php" hash="decb3f1e71a1af80eaa4744a858a2f4c"/></dir><dir name="Tag"><file name="Customer.php" hash="9b2791d6863c26d07922d00e61b1998f"/></dir><file name="Tag.php" hash="b6b03c4412b36cce23e2b87cf4c5f1f4"/><file name="Upsell.php" hash="45bca3745f612629ef0a0786ba71bf52"/><file name="Websites.php" hash="c61c330b940960b33d1ff167f27cd2e5"/></dir><dir name="Tabs"><file name="Configurable.php" hash="bbc985cf60e1575ad44d706bf6968672"/><file name="Grouped.php" hash="4be592c2b02f4b69157e05d9b86cff14"/></dir><file name="Tabs.php" hash="d69dd0e502d25ff260fde500d998a042"/></dir><file name="Edit.php" hash="32fd13eb99c207d627bbd1ed06075d90"/><dir name="Frontend"><dir name="Product"><file name="Watermark.php" hash="a93a8fdc819557b2491904a761eba4af"/></dir></dir><file name="Grid.php" hash="0349498c0aa4b0f34e86de3a16755ca9"/><dir name="Helper"><dir name="Form"><file name="Apply.php" hash="64bd1d588103cf59cbfb04a1ad8a524c"/><file name="Boolean.php" hash="6487a565b1e7897af2cc7dd6a56260eb"/><file name="Config.php" hash="ce5fd5104c1039feac68ca51b6e582b0"/><dir name="Gallery"><file name="Content.php" hash="5fe620043f4eba544e4668973e606f4c"/></dir><file name="Gallery.php" hash="6275dfdf2962ed917c6cb9563ba980de"/><file name="Image.php" hash="e68483cce55c288bc665e69f5084fda1"/><dir name="Msrp"><file name="Enabled.php" hash="288404328d137bc3a06fec900b5c1a80"/><file name="Price.php" hash="7580db84cc94c35b7e63c1350d31a5ac"/></dir><file name="Price.php" hash="0c0295a4e3a32535f2dcc05a7bd513b4"/><file name="Weight.php" hash="63827e040b18f79f58993c425eaa6810"/></dir></dir><file name="Price.php" hash="0fbac7592bfac1b9e5d0ad89ac72da0a"/><dir name="Widget"><dir name="Chooser"><file name="Container.php" hash="35f1fe88eb7cd1355c1fce77db4bfcac"/></dir><file name="Chooser.php" hash="345b0eaa58eb134cf90e1bffb0f8eaf7"/></dir></dir><file name="Product.php" hash="1d5f21737d6463bfdef7b2ff836457ef"/><dir name="Search"><dir name="Edit"><file name="Form.php" hash="ef7ac93031738cb1743a8676e2b2c403"/></dir><file name="Edit.php" hash="b5959b2514ef1ecd7e92afc379ac928b"/><file name="Grid.php" hash="6ded40b48bda95cf4c3c4293316ef42e"/></dir><file name="Search.php" hash="f67c71ec634a306be80a0b4e428559d7"/></dir><file name="Catalog.php" hash="0c9cfd68ded77813eeebce23eee18a9c"/><dir name="Checkout"><dir name="Agreement"><dir name="Edit"><file name="Form.php" hash="b65a105d2bb822fe3e06b31837bf9181"/></dir><file name="Edit.php" hash="5aabbee6dad64a9c7a95e51c0db22044"/><file name="Grid.php" hash="0c1f4dccf1c4a308e19a645eef7d47b2"/></dir><file name="Agreement.php" hash="aa1eae3f0d3abf84666dadc705ff733e"/><file name="Formkey.php" hash="a8f091bfa081dae41b785105e4026621"/></dir><dir name="Cms"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="b5b69caf4700bf74109488f2b2707722"/></dir><file name="Edit.php" hash="1c1e6330e5a07e5fe1be265c225bbf57"/><file name="Grid.php" hash="01e685c6acd379dbc890064673890982"/><dir name="Widget"><file name="Chooser.php" hash="926595fee7e905f5ef3cb274598ca6d3"/></dir></dir><file name="Block.php" hash="fcb303817c3bf5ad10b5038dcef09a6b"/><dir name="Page"><dir name="Edit"><file name="Form.php" hash="29d674b9e1e99d0e705f41c31a0273e8"/><dir name="Tab"><file name="Content.php" hash="ea72f7b00693ae602c6b28c54a40c251"/><file name="Design.php" hash="f6fb1a7e86118bb8f5213435281b706a"/><file name="Main.php" hash="2131c972e82ffb4455058ad4465f3ff2"/><file name="Meta.php" hash="0950e9f3d977e94cf055c992c5e3e9b2"/></dir><file name="Tabs.php" hash="3d473c30bbea5357e4eb1e86ab5933ac"/></dir><file name="Edit.php" hash="dbbac9de68926afb6cebe6eeb6ac4b66"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="2327b824e40b49d7a9e430d6bb1a9d0b"/></dir></dir><file name="Grid.php" hash="933c6087a27f3a08c3534726c784b262"/><dir name="Widget"><file name="Chooser.php" hash="2ecf17c87771d80da442fe93c793dc25"/></dir></dir><file name="Page.php" hash="60ee680ba83fc69082d269966801cba5"/><dir name="Wysiwyg"><dir name="Images"><dir name="Content"><file name="Files.php" hash="ac85c80c81cfbf79ac91f3ce41387077"/><file name="Newfolder.php" hash="2b536216a12d42bd20e87a52b0e4c77c"/><file name="Uploader.php" hash="95e179e244516b45b56e63d39d8a9caa"/></dir><file name="Content.php" hash="27de9059054fa1714d606cf399ddec95"/><file name="Tree.php" hash="260e595265977ee039618f79d9ded8ab"/></dir></dir></dir><dir name="Customer"><dir name="Edit"><file name="Form.php" hash="49ac0a52d6724f4a5888d8cd227a5aa5"/><dir name="Renderer"><file name="Adminpass.php" hash="52824ddc4c2aac49ae1c16e69e790f14"/><dir name="Attribute"><file name="Group.php" hash="c190e382f7677dc77336fc07edd79982"/></dir><file name="Newpass.php" hash="9a7dd648cdb06f67ba996aa232eb15d6"/><file name="Region.php" hash="99f522193ce1e682776d5a7b44f958c5"/></dir><dir name="Tab"><file name="Account.php" hash="be1fc49b82190e98111ee099c0de3431"/><file name="Addresses.php" hash="0ddc0a6780797d790eb536efa72fbc89"/><file name="Cart.php" hash="34835f9c9ec4b514f0e848153d1d94fc"/><file name="Carts.php" hash="ef6ef08eaa53b82424eeac2a2737140c"/><dir name="Newsletter"><dir name="Grid"><dir name="Filter"><file name="Status.php" hash="0e0714b271ff4f7c5f8879a72e62ca19"/></dir><dir name="Renderer"><file name="Action.php" hash="65b75e8f97ce1be04fcfe6af218d411f"/><file name="Status.php" hash="d1ec2d1dfeb5b93cef95675a31c548f7"/></dir></dir><file name="Grid.php" hash="1b9df08949de8d74182971d4a07d025a"/></dir><file name="Newsletter.php" hash="7783c6895e86209c9e6b090c3e216155"/><file name="Orders.php" hash="11221dac1ba40ee283516625fcf3a0db"/><file name="Reviews.php" hash="47779e7b18d75035952142edc042a6c5"/><file name="Tag.php" hash="9dfa6cbe899d1c52f2310e63c9e820c3"/><file name="Tags.php" hash="09fe20e20b4ecbcdbc02c6dace425975"/><dir name="View"><file name="Accordion.php" hash="4c16f965c5b5a1f7a51ea6bd468d4455"/><file name="Cart.php" hash="0584886190f1c73c34257456e6dab0ae"/><dir name="Grid"><dir name="Renderer"><file name="Item.php" hash="8518944e0aabf464898c5492173e98ac"/></dir></dir><file name="Orders.php" hash="bc049d9850d668d491f7ca55bc9b3435"/><file name="Sales.php" hash="02c1200f809fbc0edcd0dfcac2e8eb9a"/><file name="Wishlist.php" hash="ea4a3e270b46f97c09400e9179bccf59"/></dir><file name="View.php" hash="6482a200235c2f1abafb72e63e0ea239"/><dir name="Wishlist"><dir name="Grid"><dir name="Renderer"><file name="Description.php" hash="01d3f43cc48bce12538c5897ac531a37"/></dir></dir></dir><file name="Wishlist.php" hash="ec5dcb8c3d28a0093fee5ee7f7cbe82f"/></dir><file name="Tabs.php" hash="7b0030f0b934dd9dccde111bde060897"/></dir><file name="Edit.php" hash="259fb04722aeb0066ad7ccfd5992a128"/><dir name="Form"><dir name="Element"><file name="Boolean.php" hash="4035889038eb850f2eaaf486aa17c5ea"/><file name="File.php" hash="22104c838237b98919382431ceccfec0"/><file name="Image.php" hash="acdafea8a583687c55bce484bf0ae586"/></dir></dir><dir name="Grid"><dir name="Filter"><file name="Country.php" hash="83d85789fa4b4b6a9b76d29de2124d2b"/></dir><dir name="Renderer"><file name="Multiaction.php" hash="7d589a87e88a991bd75696f049c74167"/></dir></dir><file name="Grid.php" hash="94c36f1146b812b5774a7d544ea86707"/><dir name="Group"><dir name="Edit"><file name="Form.php" hash="7ee57a62a8c1d61c7195b5518a0f2e9b"/></dir><file name="Edit.php" hash="7417fdf5dcf07badf746313de9cd746e"/><file name="Grid.php" hash="a489beb9f79f62cb76d3a0b09c10120d"/></dir><file name="Group.php" hash="24dc71b88d15440b03419cd23b1f4b1e"/><dir name="Online"><file name="Filter.php" hash="281969acc081f1e762e17e04a523e0d5"/><dir name="Grid"><dir name="Renderer"><file name="Ip.php" hash="3a2a0c3f8c628266033bd783240d4e12"/><file name="Type.php" hash="e7f15e42ef7719698d120e10d845446b"/><file name="Url.php" hash="378caf15cea56de85f438103bc375bdf"/></dir></dir><file name="Grid.php" hash="702925c236090e57daf9fe4e7829ecb7"/></dir><file name="Online.php" hash="9e63a6e5102e097d24f92f82d44193a3"/><dir name="Sales"><dir name="Order"><dir name="Address"><dir name="Form"><dir name="Renderer"><file name="Vat.php" hash="1125ab68940d991221ea54eca21e0f29"/></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Validatevat.php" hash="97bfaad2f54839eb791f3508a454422d"/></dir></dir></dir><file name="Customer.php" hash="160c01494a58a4f4215b95050601ec74"/><dir name="Dashboard"><file name="Abstract.php" hash="04b33afe19663c3f7638e7e619a4fc3d"/><file name="Bar.php" hash="c8b2d6017d5f2082b9b7cc8039687f1b"/><file name="Diagrams.php" hash="f532d85a38f733b559a249955debf8a8"/><file name="Graph.php" hash="285a7f59cd26d9b567025897ada5c20f"/><file name="Grid.php" hash="52e0f391a56808cb3ddfbf669dd4a617"/><file name="Grids.php" hash="9a51f7c0342c412191e3e875b54c1be4"/><dir name="Orders"><file name="Grid.php" hash="c438c5620df24bcf11a5e0e32809867f"/></dir><file name="Sales.php" hash="e9c4913774dbf54fd23dc6fed47e25a6"/><dir name="Searches"><file name="Last.php" hash="dc94da48dbecdbb86034ebec92e712bb"/><dir name="Renderer"><file name="Searchquery.php" hash="bbe6104661f63d6c1887169cd347b1db"/></dir><file name="Top.php" hash="64fe74200a3d1d298694f62702366fa4"/></dir><dir name="Tab"><file name="Amounts.php" hash="94375d9abc831e9bdc71afb28d4408a3"/><dir name="Customers"><file name="Most.php" hash="15833e01bbf1d8df85d7467d77b85c04"/><file name="Newest.php" hash="1fe0eb3fbd3f5ebc1e37650a6a846f1f"/></dir><file name="Orders.php" hash="2e6b5c3dbe7e91b6fe0a83cea5a3f8c1"/><dir name="Products"><file name="Ordered.php" hash="fc8b1d95ae089a5c7fbb18316cc5d9fa"/><file name="Viewed.php" hash="a75b4ec54c403574e21e06fd02419f58"/></dir></dir><file name="Totals.php" hash="ee3da9c4f8735528feeb9e904f4445d0"/></dir><file name="Dashboard.php" hash="e3eff5f0ace04c75080d7e4285850b08"/><file name="Denied.php" hash="2544f2e56188e638c4ebef659c210d1b"/><dir name="Html"><file name="Date.php" hash="5ed6ad7e64505737fdc26926780e59c4"/><file name="Select.php" hash="4fea9f2984b970fd7e5c4269e00c1e30"/></dir><dir name="Media"><file name="Editor.php" hash="482b4e07e114dd3e0ec51aa384659def"/><file name="Uploader.php" hash="b4bf6544983571c41a04246c857ea581"/></dir><file name="Messages.php" hash="05b605e6f96ebd4438a4e6138ea003b2"/><dir name="Newsletter"><dir name="Problem"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="dcf0b70251a8f13d2d339b22b8bcf222"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="785019541b1f0bde8fd4292330da6a0c"/></dir></dir><file name="Grid.php" hash="53cbbd3e1f301fcd14df3a3399b94215"/></dir><file name="Problem.php" hash="eaf3c0fe03be3f04f6a20b42be71e099"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="104c534e251579db3af779ba0b3cf221"/></dir><file name="Edit.php" hash="122075bb4fa921d54690d02d2544b729"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="971433e4a2d6febbc299231204a5192d"/></dir></dir><file name="Grid.php" hash="49729774b36367719ca8e5bdc96d0fd8"/><dir name="Preview"><file name="Form.php" hash="95bf53ad04204e3df275ac773687dc99"/></dir><file name="Preview.php" hash="67996d9e281e22abca9e57c21b5c20f7"/></dir><file name="Queue.php" hash="babe2ab6945534bc93811e69cb2410b7"/><dir name="Subscriber"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="55561194335df4dc0f38a3279f7197d7"/><file name="Website.php" hash="61f215ed663e7329d2b33ab24c035807"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="1333348cf2ab0015168c1e814384af4e"/></dir></dir><file name="Grid.php" hash="29c83488780bed1f1b3407c68021b43a"/></dir><file name="Subscriber.php" hash="929fd845ece72622cc7bc4d0ea9ea9ca"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="603017eba90acaaca525f9feea1f67d7"/></dir><file name="Edit.php" hash="cb6e33de7d1c91cbc7c6574cbb5478f7"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="c8e23fb64472942288123e12d75fb269"/><file name="Sender.php" hash="63e2e8b100140403e8229c4dff5a75f1"/></dir></dir><file name="Grid.php" hash="b711f263e8b86ee53107305195788610"/><dir name="Preview"><file name="Form.php" hash="bac1c3366080c578e3c8506db1f8293a"/></dir><file name="Preview.php" hash="511cadb2a83b08cd75c89a2d41dd11fa"/></dir><file name="Template.php" hash="341186126c4405cbbf2a0ec4a00ccd28"/></dir><dir name="Notification"><file name="Baseurl.php" hash="5aec946a2e77e87056aaea956315b670"/><file name="Curl.php" hash="5318edb4973c3db262100297ce01c6e7"/><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="e40c7bae91381d4fb3864b7232399fdf"/><file name="Notice.php" hash="5355a73468c8faacb92d329d01d15a10"/><file name="Severity.php" hash="73fe988909b41d1d9ef9985a71335a38"/></dir></dir><file name="Grid.php" hash="12008ce221de78cedbc5506e9e0a919a"/><file name="Inbox.php" hash="e7047a33091156c568d758d67abc1263"/><file name="Security.php" hash="b429f8b474f335f8b096dca4f4aa8224"/><file name="Survey.php" hash="1f9e26f084deaef848b48ad8cefa6677"/><file name="Symlink.php" hash="a984617471b9b517cd03ff950858b92b"/><file name="Toolbar.php" hash="a4373cbfe007d3ac87e378156a16a8fc"/><file name="Window.php" hash="befff4b2a7a9fd37106fc9f6ee9e313d"/></dir><dir name="Page"><file name="Footer.php" hash="13091b07cfcfd29290649ad859e8573e"/><file name="Head.php" hash="9b58291b2bf8259b5d890a01ed38ab65"/><file name="Header.php" hash="4cd8f71d26884bb3e5bf8e96499326d9"/><file name="Menu.php" hash="7823fc361ec7c6e1e1319248252c4966"/><file name="Notices.php" hash="44317cffc7e9a21b5028f3778614f7e9"/></dir><file name="Page.php" hash="a9be028a9da3a52fdace562c0a7606e9"/><dir name="Permissions"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="438c2e3073d2fd88901fc6513c2004df"/></dir><file name="Edit.php" hash="83ca1370c33e358a980d12e972ec78ad"/><file name="Grid.php" hash="4acf525f566ff12b1d1845f021083e28"/></dir><file name="Block.php" hash="614481a47005ff630142dcf1e9e5d80c"/><file name="Buttons.php" hash="749b937b5af645e79d81db493afba2e9"/><file name="Editroles.php" hash="dab140ee8b5c0b4ca8f2311637c5e85a"/><file name="Edituser.php" hash="448b729d13305721d8d6aeff143e590c"/><dir name="Grid"><file name="Role.php" hash="c277b2dda376b175ffbea71ed8b134ba"/><file name="User.php" hash="382472521bb38d0a3a3a546ecbb3ad00"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="7fe2b949915e01111ff7437bedd4d814"/></dir></dir><file name="Role.php" hash="4ace00f8e61836fb5b3f5686885442ba"/><file name="Roles.php" hash="fe2bce55aa6150948ee1a8f4801e430a"/><dir name="Tab"><file name="Roleinfo.php" hash="d6c9da087f0163318b3e34f786b1c4dc"/><file name="Rolesedit.php" hash="ade89ca7c7f474395c5a79b8b7789a00"/><file name="Rolesusers.php" hash="58309a5ff5b919fdc9d9085955892084"/><file name="Useredit.php" hash="f466ea0d19487df34146b2c0fb2926f6"/><file name="Userroles.php" hash="dca81b2a1b0b7150dd27bbb5290ef4b1"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="d96f53c24349fb7b5bd764cd8f3d175d"/><dir name="Tab"><file name="Main.php" hash="ad64079b514381ca8b11fd91b516bf5c"/><file name="Roles.php" hash="f41519325aa5654d1f791c57670ec92e"/></dir><file name="Tabs.php" hash="7b60d3bb6f1b6a5aee2130ccab8b7cfe"/></dir><file name="Edit.php" hash="5943168fa9ac34b2373e1dfb96d95e98"/><file name="Grid.php" hash="9e91f52c0217ad886fb0f1435c9d6777"/></dir><file name="User.php" hash="30ff8fc45f5fac86dea762c255ed0037"/><file name="Usernroles.php" hash="db11e880c8fb0f39d41efc2f91102569"/><file name="Users.php" hash="ad0e8079ac091780802754cc08f48346"/><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="14cdb2969d62fd0e476df37018705b3f"/></dir><file name="Edit.php" hash="1221d3e1226044ab53066ed4df954002"/><file name="Grid.php" hash="291a32424ceeb78d4c25795d2dfcd50a"/></dir><file name="Variable.php" hash="131b7e5625fec4458ba48105fd9a244d"/></dir><dir name="Poll"><dir name="Answer"><dir name="Edit"><file name="Form.php" hash="fb638b9afad342ae667cee9b3831cad7"/></dir><file name="Edit.php" hash="5a72086f06ad00e1b320d06371b28f94"/></dir><dir name="Edit"><file name="Form.php" hash="50c9311f3430a4c9f1e91a3795ffe5f3"/><dir name="Tab"><dir name="Answers"><file name="Form.php" hash="177856444e2018921e1c59d29703311c"/><file name="Grid.php" hash="e370e762c58937a4039b4eb3554a50a0"/><file name="List.php" hash="f01b64776154a26b7380cefe592c6f94"/></dir><file name="Answers.php" hash="af567d9671976038f79836c3c0d7d25d"/><file name="Form.php" hash="c57cc8b7d966751492a00e9a6b3fed59"/></dir><file name="Tabs.php" hash="9ef91784fa1723ca5f8af1d90eb81d10"/></dir><file name="Edit.php" hash="6629e1e14e653da703884b299f048ef6"/><file name="Grid.php" hash="22ee4a31eaf22598b8a26ea6d6aec10b"/><file name="Poll.php" hash="513b3f5b861f039579f4a2c778b94778"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><file name="Form.php" hash="ce7e781b6df0dcd01eb05b7c05db45bb"/><file name="Js.php" hash="e8420f59155da56f0e049a8a02f597e5"/><dir name="Tab"><file name="Actions.php" hash="bc90198a1e428406fb678a17427e97df"/><file name="Conditions.php" hash="33cbb1cd2de313db0596839c2b910d41"/><file name="Main.php" hash="093fe4d628053e986c7f8a1d3dd28e46"/></dir><file name="Tabs.php" hash="c1a3f608b61ff9256c66fe97ae15a556"/></dir><file name="Edit.php" hash="712419905ef2f3528b470f459ba240ea"/><file name="Grid.php" hash="8bbde3bd4cd5c8430720a8216fa0683b"/></dir><file name="Catalog.php" hash="04ea815f052f740b621619566f6ae6c5"/><dir name="Quote"><dir name="Edit"><file name="Form.php" hash="77cd19168159d23f6f01cc5a0f58b8df"/><dir name="Tab"><file name="Actions.php" hash="c27a86b9af71facf294e1270cfd54cbb"/><file name="Conditions.php" hash="51451f1dbf35eeefdc8daa2c339ba19b"/><dir name="Coupons"><file name="Form.php" hash="b3833c59632e6d932d5fe7ac7666c377"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Used.php" hash="5ced5eff6f3a8d11d06d52a4fc0e3c81"/></dir></dir></dir><file name="Grid.php" hash="ab6c389513dc839d12da82f711d1f7d8"/></dir><file name="Coupons.php" hash="9146a97d8d43e7163b6eb7b86da61778"/><file name="Labels.php" hash="cabc14fef4855cf54d289d98fa42ddb1"/><dir name="Main"><dir name="Renderer"><file name="Checkbox.php" hash="817b27e78c36027617b90aea0385763b"/></dir></dir><file name="Main.php" hash="6a8b8cd3c10ac469cf5d043c121c9856"/></dir><file name="Tabs.php" hash="b8b84aff23831376438093d0ab6ddd05"/></dir><file name="Edit.php" hash="6cdb69cccd921224a744ef8d466e85bb"/><file name="Grid.php" hash="82bc063067ce133e9734629b2d5b6800"/></dir><file name="Quote.php" hash="3693db87bb6fbebb7ad3df04f1ea1f63"/><dir name="Widget"><dir name="Chooser"><file name="Daterange.php" hash="b9e5ac80e72d041d5775f8b737e0c2da"/><file name="Sku.php" hash="e6c53db33ecb8f455afc153573e69fef"/></dir><file name="Chooser.php" hash="ef8a17a3ffb1c9fd7a6b7c52cc8fd8a1"/></dir></dir><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="53f1c8ac7b82c99d9d0d9d7c060a7760"/><dir name="Tab"><file name="Form.php" hash="0516fcc5622280305fcdecef43bd90ae"/><file name="Options.php" hash="fa252cfbaef3eac3fa625d70a8161fdd"/></dir><file name="Tabs.php" hash="15b43f441dd8664bc49e53cc68cb18ec"/></dir><file name="Edit.php" hash="a54cc1b546364ad52209e4f0c6f525df"/><file name="Grid.php" hash="1d552135e389f0cb67edc4fa3800847e"/><file name="Rating.php" hash="5d8ff951eb5d7909ad2ae8e5ac1b0291"/></dir><dir name="Report"><dir name="Config"><dir name="Form"><dir name="Field"><file name="MtdStart.php" hash="5d8b157ce44c63faf40855c597a1b4af"/><file name="YtdStart.php" hash="8cf735bf6eedb5c034e32aafd4caae16"/></dir></dir></dir><dir name="Customer"><dir name="Accounts"><file name="Grid.php" hash="876785a17cac6f7be270ed826c85873b"/></dir><file name="Accounts.php" hash="480c7e36f055b23eb5826b8a72d89ed0"/><dir name="Orders"><file name="Grid.php" hash="6f38b01d6b4e78b474106d237de99652"/></dir><file name="Orders.php" hash="ebee2aeb8b87ecff040b748b49537df1"/><dir name="Totals"><file name="Grid.php" hash="975071e2187ec1d3f90004a9042b5b41"/></dir><file name="Totals.php" hash="4b658c233cf6732b2aefa18270b1d4c2"/></dir><dir name="Filter"><file name="Form.php" hash="2c740fb0b92ef44ce9521df6101ad27c"/></dir><dir name="Grid"><file name="Abstract.php" hash="6921ab3338de4a188f0027a169780375"/><dir name="Column"><dir name="Renderer"><file name="Blanknumber.php" hash="7a7602ef1b82f27794d8bbe71f9b3daf"/><file name="Currency.php" hash="9a20cc3494cb15723da27b1d31c530c0"/><file name="Customer.php" hash="f884de4c1b212609cdcb62a8dbf62693"/><file name="Product.php" hash="814b4387ecdc12127d9e48eacd8dd8ca"/></dir></dir><file name="Shopcart.php" hash="01beaf769ccf324bfdf28d0c028b4199"/></dir><file name="Grid.php" hash="c826286a8d0a4603178ca94699fb27f3"/><dir name="Product"><dir name="Downloads"><file name="Grid.php" hash="9b88b3b5c867cbfe96b43305296e3cd3"/><dir name="Renderer"><file name="Purchases.php" hash="b1c88b7e409c9081df084aaacd204e16"/></dir></dir><file name="Downloads.php" hash="9d4f3fe2cb548941327e6a78f9ca7f09"/><file name="Grid.php" hash="76f0ef2626226d591c32e0029ced8245"/><dir name="Lowstock"><file name="Grid.php" hash="a251d6ce2b7b8638d37b127c6088b342"/></dir><file name="Lowstock.php" hash="a1cdd013e1e69645b8540d88b4b380ab"/><dir name="Ordered"><file name="Grid.php" hash="93da2aa1ed188ca5e0d21d43c2423f59"/></dir><file name="Ordered.php" hash="b91d248cc02266ae12f4021f0b049e94"/><dir name="Sold"><file name="Grid.php" hash="253cd38cd5900c169f0e8d978035fa56"/></dir><file name="Sold.php" hash="5b9569287e90e608708d4e61f1b08374"/><dir name="Viewed"><file name="Grid.php" hash="8b88b2ab48d99984ed2f2b77cb622178"/></dir><file name="Viewed.php" hash="869a2a9d318cfb4cb95fbe9039918aa4"/></dir><file name="Product.php" hash="3db02136fa4d9134b71db4f1c025a456"/><dir name="Refresh"><dir name="Statistics"><file name="Grid.php" hash="0b817fcfc48d85581936d66913fe48ed"/></dir><file name="Statistics.php" hash="eedc8c1d097a9990deb8c417a973c159"/></dir><dir name="Review"><dir name="Customer"><file name="Grid.php" hash="6a9751a3e259c181d7de3db045b67dff"/></dir><file name="Customer.php" hash="9d1780b3d52462a146569b0061003e7e"/><dir name="Detail"><file name="Grid.php" hash="d78eafeaa91034ae5ae9238d23d9e293"/></dir><file name="Detail.php" hash="9b6c49800aeb58e66ea01fb0028069fe"/><dir name="Product"><file name="Grid.php" hash="6e10e6822008a37a89b5622e2ec6a0e4"/></dir><file name="Product.php" hash="c542a3ce8e2dd456f5cf14f895ac017d"/></dir><dir name="Sales"><dir name="Bestsellers"><file name="Grid.php" hash="14d850df6cf0fd8f8cb63dd7e6111998"/></dir><file name="Bestsellers.php" hash="fb1ca6b6309121b224d7b063d44e799b"/><dir name="Coupons"><file name="Grid.php" hash="fb016245286d78d2638cd28d2ad5b0f1"/></dir><file name="Coupons.php" hash="4323b2f5e401896db59f176db5341183"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Date.php" hash="1c9569cda2994e8745b850d61ab72169"/></dir></dir></dir><dir name="Invoiced"><file name="Grid.php" hash="9a355c790d2e019e30300a2507ce0ba7"/></dir><file name="Invoiced.php" hash="f7aff8ae4c1e0c9f0c3be47976aae5ac"/><dir name="Refunded"><file name="Grid.php" hash="940534d65753649de3de6238494aa7bd"/></dir><file name="Refunded.php" hash="b6b6c6c59fdf9bf395348304f04c5b27"/><dir name="Sales"><file name="Grid.php" hash="18467bb88997dfe61cd9a1a01a34d197"/></dir><file name="Sales.php" hash="6e066c283cb979f812b23bcbf91ef523"/><dir name="Shipping"><file name="Grid.php" hash="28ab1a912126437e8fda3ac68b1f0e85"/></dir><file name="Shipping.php" hash="204cd2b1db4e5871c80eb86aee461d7f"/><dir name="Tax"><file name="Grid.php" hash="6796b67421d068b9e63cf8efa0734991"/></dir><file name="Tax.php" hash="83cdd45d1b1355e95db554b9a7ce7de5"/></dir><dir name="Search"><file name="Grid.php" hash="98b7dc7e5c1d7a615aba028a359031cc"/></dir><file name="Search.php" hash="d181caec9d07af8a613cfddd414bd52f"/><dir name="Shopcart"><dir name="Abandoned"><file name="Grid.php" hash="8f34cfb594f5aa32f00c081499ea0560"/></dir><file name="Abandoned.php" hash="5b3aa7f81951955de4a618e5b0c8f2a2"/><dir name="Customer"><file name="Grid.php" hash="47c36550853de4606e613626804609ab"/></dir><file name="Customer.php" hash="d090acdce4fb882c23e6ce4fc00f1c49"/><dir name="Product"><file name="Grid.php" hash="bafd2eb1041c7fc72207a4b4e9e1f39d"/></dir><file name="Product.php" hash="6ba5f86e573141407fe02274b16dd988"/></dir><dir name="Tag"><dir name="Customer"><dir name="Detail"><file name="Grid.php" hash="b45407b87f6ebfde603459807cae0166"/></dir><file name="Detail.php" hash="98a056f73336c1776dd111860f80003f"/><file name="Grid.php" hash="7687ea96a7f95097b8a6f214da7c9004"/></dir><file name="Customer.php" hash="78adf21dea52e09f2f22ce87c403a3cb"/><dir name="Popular"><dir name="Detail"><file name="Grid.php" hash="b6c86e10214fddbaa1d68d7dff4aae92"/></dir><file name="Detail.php" hash="eff78b4951d7648d1d81addfc175a738"/><file name="Grid.php" hash="929967661d2cbedd1f58b359d0fc9ac7"/></dir><file name="Popular.php" hash="ac16dc6103cbed14da449902598f8da8"/><dir name="Product"><dir name="Detail"><file name="Grid.php" hash="2c135ae9282364724b20983072115f55"/></dir><file name="Detail.php" hash="40124f039465d5b93d05d054e9a46d12"/><file name="Grid.php" hash="702b24710b2dc84b3598deedea5c3a46"/></dir><file name="Product.php" hash="e752eda0d414d4c4aafde442b1938421"/></dir><dir name="Wishlist"><file name="Grid.php" hash="ec4d7242c006f3c27c15017aea8dab97"/></dir><file name="Wishlist.php" hash="c5ea07211bf5d33c6985ef83e4fa3675"/></dir><dir name="Review"><dir name="Add"><file name="Form.php" hash="1221b806c17a7d9a9ab4c61992950e33"/></dir><file name="Add.php" hash="afc49fbdc79bb15c4802b26871c2420e"/><dir name="Edit"><file name="Form.php" hash="6f38eb8c69b7e7d2ed334b3f99757a61"/></dir><file name="Edit.php" hash="4caf964ad3323a1e190d68bf1a6247aa"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="0f33f70fe6aa00d6a88b782f9bd6fe81"/></dir><dir name="Renderer"><file name="Type.php" hash="5cb734435d93cfa02afbea34022ea52f"/></dir></dir><file name="Grid.php" hash="e7570bddc2826cc383edd02b99c4eeae"/><file name="Main.php" hash="2b670dcb6cf9a2440d95612a42b1cf95"/><dir name="Product"><file name="Grid.php" hash="5e70550b71cf9e30ae7589e78c5015fc"/></dir><dir name="Rating"><file name="Detailed.php" hash="0414132bef05a0ddceacee99691d2259"/><file name="Summary.php" hash="e0d2102e4684f375e2b497d0562c728a"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="8eaef0228f4cf2f570c4f2b4eaf8b8fa"/></dir><file name="Creditmemo.php" hash="42217b6203cc501eaf43c180ebf49aca"/><dir name="Invoice"><file name="Grid.php" hash="50cb622a285ea7cb34c7130f0fada4d8"/></dir><file name="Invoice.php" hash="3e9ac715a1fd97fbfbdb78a6dd0a23e6"/><dir name="Items"><file name="Abstract.php" hash="eec443a092bc21e86be68596630a61e2"/><dir name="Column"><file name="Default.php" hash="4ccead2ab8989a15c167c65fa0a431a7"/><dir name="Name"><file name="Grouped.php" hash="c0330069b38cc02d95279352998034d3"/></dir><file name="Name.php" hash="ca285131931fb18d9ab8f31cc51e5dc6"/><file name="Qty.php" hash="9c1e126b97b2d2ad141667ffdc59fd1c"/></dir><dir name="Renderer"><file name="Configurable.php" hash="beae18cf07489c1d797a55afe7b6e4a1"/><file name="Default.php" hash="8dfb0ad92fe2fd96cb7de7c75154a0cb"/></dir></dir><dir name="Order"><file name="Abstract.php" hash="611441d2af3e1a8d69c4a34f98218159"/><dir name="Address"><file name="Form.php" hash="39c691ddd081b2751e29bd5f33022058"/></dir><file name="Address.php" hash="ab66d13cd95a3bd181fc2e0a4aaf36b1"/><dir name="Comments"><file name="View.php" hash="34520d2d3704ae0974fdd717e32b69df"/></dir><dir name="Create"><file name="Abstract.php" hash="07a4821940fbdfa00d2c49742e339330"/><dir name="Billing"><file name="Address.php" hash="2cdb4a9a1bf62b1e88e094887f95d353"/><dir name="Method"><file name="Form.php" hash="efd4efbf9d7a0f0ecb94f4250ca4347b"/></dir><file name="Method.php" hash="0d15deae8c8f8c0981e7d001673a2042"/></dir><file name="Comment.php" hash="64bc654a1883736edd55f348bda97d3b"/><dir name="Coupons"><file name="Form.php" hash="e60af447a9d46daa66fe18741130c69d"/></dir><file name="Coupons.php" hash="1d60841287ccdf9a3c685622037eabed"/><dir name="Customer"><file name="Grid.php" hash="eb6492f7b5a1fce60f83307b06b17298"/></dir><file name="Customer.php" hash="c193420e9a2ee48e24b06a8c47072ce9"/><file name="Data.php" hash="aa6351d779812b39de8db5679e58b209"/><dir name="Form"><file name="Abstract.php" hash="61a43cc34b80a50f33b3e0c026f26395"/><file name="Account.php" hash="67269dea94f0b9706bafc94884c6e5eb"/><file name="Address.php" hash="d78ea2ddee6e813b20480f54916898b1"/></dir><file name="Form.php" hash="61b6a5bd494aba099bec6f64f451043f"/><dir name="Giftmessage"><file name="Form.php" hash="f838a32b9d840c10fec9e39f60a998f5"/></dir><file name="Giftmessage.php" hash="59b8e0043288b458ef64801e952377c9"/><file name="Header.php" hash="c71bbb10d646b63d82e23c804d88c594"/><dir name="Items"><file name="Grid.php" hash="70960468d51642b57a68b98d296702e2"/></dir><file name="Items.php" hash="e7d06dac544075ef6c4ad73f2aa60992"/><file name="Load.php" hash="7053cd42716c9a6ddf25a0b67bd7e528"/><file name="Messages.php" hash="1f129d27afdd8c56fcc5956016dfd5e0"/><dir name="Newsletter"><file name="Form.php" hash="81ea6098e01ca5fc676cbd6ada09dc62"/></dir><file name="Newsletter.php" hash="e5870c7997cdd91d8f190a6c107f04e5"/><dir name="Search"><dir name="Grid"><dir name="Renderer"><file name="Giftmessage.php" hash="7129a757509e4e02596da61573486d1a"/><file name="Price.php" hash="3eb19915cb234e078ebc577f50cedeb7"/><file name="Product.php" hash="b42b079bb03456a73260e4c5437e2b97"/><file name="Qty.php" hash="ebd46b369edc917bc0e9097efd4419f6"/></dir></dir><file name="Grid.php" hash="dfa4a377c30a08e4a22bc3590039ac2f"/></dir><file name="Search.php" hash="98eb313e9afac50f8e33f3fd3b2564e5"/><dir name="Shipping"><file name="Address.php" hash="4dbb89b1004bf991b15ce003ea881291"/><dir name="Method"><file name="Form.php" hash="9dceee7d4da37ace1f7647e25d381aad"/></dir><file name="Method.php" hash="366f58ab57eacf8daa643cf1a33bfe0c"/></dir><dir name="Sidebar"><file name="Abstract.php" hash="62d5d1d94fee4c62a847637800c0f84e"/><file name="Cart.php" hash="49ab0efc46f84aada5690fe47d17f8ac"/><file name="Compared.php" hash="31d88bfa8ac1689440a9146a94756802"/><file name="Pcompared.php" hash="f179a95db2d5c6246a77c782c9fa79fd"/><file name="Pviewed.php" hash="3274fe50638594d1ebf39e15455ff972"/><file name="Reorder.php" hash="7334944281dd31f9d26e2d5d98a1b854"/><file name="Viewed.php" hash="70e22efd895f0ac9aa094eb4d57ec61c"/><file name="Wishlist.php" hash="b5e4e3d80e1a861035154114b09931f0"/></dir><file name="Sidebar.php" hash="da0e5080812333ef171c7149ba651ae9"/><dir name="Store"><file name="Select.php" hash="9a742d2d414f11ed36c3c31d557a1548"/></dir><file name="Store.php" hash="c441c7943807d7d062aaf7922405a49d"/><dir name="Totals"><file name="Default.php" hash="cdc6b4ef35447405da9db92bdc0efd67"/><file name="Discount.php" hash="c8ca85f8dad1c71e592c64a02f79eaad"/><file name="Grandtotal.php" hash="f8dc16f1ee798e7fd85486508efa8ad7"/><file name="Shipping.php" hash="e01addd3bbee439716e415d6a94a0787"/><file name="Subtotal.php" hash="77ca4acbe76e9699f3c6fbe19d42ccbc"/><file name="Table.php" hash="3ba29da9c8d86f512743a735acafab7d"/><file name="Tax.php" hash="8a27e879fe434e032ff75b3b1ea3a873"/></dir><file name="Totals.php" hash="efea9fe44e17cabb7d336cbc43f4c6ab"/></dir><file name="Create.php" hash="d0ddf49d76fd3a93188441ec12e1a316"/><dir name="Creditmemo"><dir name="Create"><file name="Adjustments.php" hash="7613e527138324cbd018ba2381fe25e2"/><file name="Form.php" hash="9a3c38c56c95728786bafcd420b74f17"/><file name="Items.php" hash="1ed1651ce3377ff4945c66dcf144243e"/></dir><file name="Create.php" hash="0daab14e31ca4ce0aff1663130fab6d2"/><file name="Totals.php" hash="89e085c957241a1df0fe8e038d95591b"/><dir name="View"><file name="Comments.php" hash="df3b4c15c3fa36e07a0f54674c4d92a7"/><file name="Form.php" hash="fcd9d512c737dad03149af393aa96139"/><file name="Items.php" hash="3a7cddb79d1a8ad3c72001abce92df12"/></dir><file name="View.php" hash="395096f18ede9d4751d7d24cd0a119de"/></dir><file name="Grid.php" hash="e1ec75184631159ad9170f6df994e4b1"/><dir name="Invoice"><dir name="Create"><file name="Form.php" hash="43d9b24dd88abddc50f60f51b6726ead"/><file name="Items.php" hash="a230ab25b974663bb1329b08846fbf4d"/><file name="Tracking.php" hash="6d0d1a84e5c622247ccbd343aacf3fc2"/></dir><file name="Create.php" hash="1874ce37a8506e7a49a2de582a1ea55f"/><file name="Totals.php" hash="b64d5fee53573517cf51ce5314d1ee64"/><dir name="View"><file name="Comments.php" hash="8b01bfb045b007404527770de98df3f1"/><file name="Form.php" hash="73fd99e96acb7c1151af4a66f8e1e74f"/><file name="Items.php" hash="681ed0078cffa9803a9685d5ad2d095a"/></dir><file name="View.php" hash="3243addb251f80fd4842465b787f2c92"/></dir><file name="Payment.php" hash="eab8e6555a98ab10adb9710d01bfb312"/><dir name="Shipment"><dir name="Create"><file name="Form.php" hash="785df8e0e67ebc2e6f8565be2d7fbdaa"/><file name="Items.php" hash="7385e90c89a6e98c60b97f79e0c9990f"/><file name="Tracking.php" hash="017cc849e761c80bcb9b190583ca98b4"/></dir><file name="Create.php" hash="a28b1b4c2bdae8c5d0ae1994f29a0639"/><dir name="Packaging"><file name="Grid.php" hash="e98a2ab4a5168ddece35a0b3e5c039e7"/></dir><file name="Packaging.php" hash="30d91bfb13aad2bc11ed62567f22fef9"/><dir name="Tracking"><file name="Info.php" hash="3b25cdba06f7af66a451925f80a8e80f"/></dir><dir name="View"><file name="Comments.php" hash="95d47e188da23bb91f0b17508f4d5b90"/><file name="Form.php" hash="55dea57398ae92c1364cda655c662855"/><file name="Items.php" hash="4989af526477076673a55675ae86a5db"/><file name="Tracking.php" hash="1c39065b8c29a54e250b15ad2a3656c2"/></dir><file name="View.php" hash="7f5e5990f4b0e4e98bd870ac9fa7c1a5"/></dir><dir name="Status"><dir name="Assign"><file name="Form.php" hash="fef31b633d9153da319a9547aeb6ce31"/></dir><file name="Assign.php" hash="fc4e43395da6f51e1cf1fa2e76bb7a71"/><dir name="Edit"><file name="Form.php" hash="62acd254d63e8d60209cc5bd5b275686"/></dir><file name="Edit.php" hash="d37ca9ed1ab1463154ba5aec5f2029fd"/><file name="Grid.php" hash="3e8b7348afd6a8a660cef481f6589593"/><dir name="New"><file name="Form.php" hash="d62d8afcfe02579b8bdb06c8857e102d"/></dir><file name="New.php" hash="df117a869aa1309c58da8ee73c8f404f"/></dir><file name="Status.php" hash="efcc0dcfbc8e31ae9ada9aeaf4120b36"/><file name="Totalbar.php" hash="4ac701fb8e6fded0f48eb44b90cb398e"/><dir name="Totals"><file name="Item.php" hash="60abccd6d48c3d1d5c3e7fa9be19182f"/><file name="Tax.php" hash="718d6f1eee60de6564549d36f00db15b"/></dir><file name="Totals.php" hash="0b1d06061ca19adda71a71700dd4c13b"/><dir name="View"><file name="Form.php" hash="7a248a32d515efe4d687ebb0ddddd84e"/><file name="Giftmessage.php" hash="c2a20d05db363b83ef1084167809b311"/><file name="History.php" hash="379425b8ca73e1a729d55cdf4f407efa"/><file name="Info.php" hash="6240eea3351a91b22422e966afb68a1d"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="5ef05606a1eb821d709bbb669a552187"/></dir></dir><file name="Items.php" hash="0e06ab27625167d88229e7367332caca"/><file name="Messages.php" hash="3de3759032567a2b1489f6460a274289"/><dir name="Tab"><file name="Creditmemos.php" hash="677e4aec0e11db6b750b7aaddae605de"/><file name="History.php" hash="d8d18fef8b2f3b8d34a642a215337a27"/><file name="Info.php" hash="07e9dac3bc492a4956d39f21c30a3529"/><file name="Invoices.php" hash="585d52e0432b103d8f053d5f2799f787"/><file name="Shipments.php" hash="4459e348c4574ff5cce98dc33101ec6b"/><file name="Transactions.php" hash="b17b8236150b589260d141f422f262b3"/></dir><file name="Tabs.php" hash="5df6448d9dc69bfc54de77a0a4c3a184"/></dir><file name="View.php" hash="d60e8b30c5c2b608f3e0526e0506a0b5"/></dir><file name="Order.php" hash="162653822c923bcb00bf242feb45af80"/><dir name="Reorder"><dir name="Renderer"><file name="Action.php" hash="1176fd68179649deb71521595a984be5"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="39d41317369d419519e24f6e03d3cbd1"/></dir><file name="Shipment.php" hash="13e435e4027e027ba003822de1acc8a8"/><file name="Totals.php" hash="68f7bd81e272c3cbd24613e2311fdec5"/><dir name="Transactions"><dir name="Child"><file name="Grid.php" hash="d452c047b6a12b2ba1262efe8df6cfca"/></dir><dir name="Detail"><file name="Grid.php" hash="284ac68af06ceeac38d3de45a7b8ea4e"/></dir><file name="Detail.php" hash="6aea3454780ae198f5bb970b7cf82bf3"/><file name="Grid.php" hash="44d799a50456dc9bfd7564001b0e75d8"/></dir><file name="Transactions.php" hash="0f9337122a3334c3625efd36dd5b6061"/></dir><file name="Sales.php" hash="b4948dda3bbd074ac0dfd1f310e6efac"/><dir name="Shipping"><dir name="Carrier"><dir name="Tablerate"><file name="Grid.php" hash="79bee255c3a48191ffcd309f2e943fd3"/></dir></dir></dir><dir name="Sitemap"><dir name="Edit"><file name="Form.php" hash="537b98b6a63f2a063e58a664a62b0a41"/></dir><file name="Edit.php" hash="f47df78d66d7266c48e526fa72f6ba0a"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="1b09b27f76cf2daa5aa01977e7c57999"/><file name="Link.php" hash="d3fdf750b2aa88ec03a574dcfbf07a37"/><file name="Time.php" hash="0fdc94bd36ced6634dd39bd6bb50e8ca"/></dir></dir><file name="Grid.php" hash="16cf567b7ad46b70b6d486947cab9ec3"/></dir><file name="Sitemap.php" hash="cf6c24ce3e8ab99b96a2f21c8cafce1f"/><dir name="Store"><dir name="Switcher"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="03a817d34e14d20fb0aee38fde5ee5d0"/></dir><file name="Fieldset.php" hash="d4abb6bc187374f0ec782f9da9b92631"/></dir></dir></dir><file name="Switcher.php" hash="cd76917b3f00369b6c85f41fa3db1c9a"/></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="8f493a6a9d3f3f85e8c8b6655591b1b7"/></dir><file name="Edit.php" hash="b13689c0f431a6f448b48f0a86fe665d"/></dir><dir name="Cache"><file name="Edit.php" hash="43376c44611a3f8a09af945f3a953cdd"/><file name="Form.php" hash="5cc515296919ba43dc82e42e67c91338"/></dir><dir name="Config"><file name="Dwstree.php" hash="de64c964c7feeb8b0e56361b105a10ad"/><file name="Edit.php" hash="631af3955e830702dda8b72dcffdbf81"/><dir name="Form"><dir name="Field"><dir name="Array"><file name="Abstract.php" hash="f79c23d49f9e5c56409f39615146618e"/></dir><file name="Datetime.php" hash="544ec57b9811148154aaf4bac01a71ab"/><file name="Export.php" hash="3a0aef3e3ce01659eccf2cc91396e939"/><file name="File.php" hash="04a1ab2f9e1638b2c293061eb93fec6a"/><file name="Heading.php" hash="c1ae5012236597308ec3959f2612a5b4"/><file name="Image.php" hash="081691cb4e9f6cbe2204fd8fd14944ce"/><file name="Import.php" hash="25f3a8e8962c20bfafc214f44d807e0e"/><file name="Notification.php" hash="89b9d556766816fa794cd1a26f38d7d1"/><file name="Regexceptions.php" hash="02918fa2e7c048e78666c8d91da18540"/><dir name="Select"><file name="Allowspecific.php" hash="5a20646375e88742642fd8661bad002e"/><file name="Flatcatalog.php" hash="188a129f682851c2675c04a331e944a1"/><file name="Flatproduct.php" hash="113e03602d71611249bf21506d2ff32a"/></dir></dir><file name="Field.php" hash="4ae5e27dc32706708249a6d728ab893d"/><dir name="Fieldset"><dir name="Modules"><file name="DisableOutput.php" hash="35e3b807c0fd1efd6595a4119f34e2d5"/></dir><dir name="Order"><file name="Statuses.php" hash="abd17f8aa430495babe2779242064b19"/></dir></dir><file name="Fieldset.php" hash="e987e01c7ed70faba517438f06a21c84"/></dir><file name="Form.php" hash="1c045b14c96e0201c81576e127532360"/><file name="Switcher.php" hash="255474db890aceea7788ab097cb814b3"/><dir name="System"><dir name="Storage"><dir name="Media"><file name="Synchronize.php" hash="530ad293df67db736b77734dca52b6ec"/></dir></dir></dir><file name="Tabs.php" hash="dabf26b8d63043e6051dbd5590101f71"/></dir><dir name="Convert"><dir name="Gui"><dir name="Edit"><file name="Form.php" hash="be3e8c34906817fc2ffe9f199c2b9ede"/><dir name="Tab"><file name="Upload.php" hash="4bd49df48c9bf33d0514d575c8265399"/><file name="View.php" hash="b7d420747dc560b7bcd4f7502ddc7ba5"/><file name="Wizard.php" hash="5b7cccb56371954d274ab4edae28abf9"/></dir><file name="Tabs.php" hash="eccc52afd57c7a7fdf67fb3f46c6d3d3"/></dir><file name="Edit.php" hash="2ffc6f84a84d27466e99e4616c504f7d"/><file name="Grid.php" hash="ad69c190bcdcc7d15a47371beff20f5c"/></dir><file name="Gui.php" hash="7e1eef11db28e2308a37c42091a98f3f"/><dir name="Profile"><dir name="Edit"><dir name="Filter"><file name="Action.php" hash="fc2bdfcf29b7b59b71f67dd535f18e55"/></dir><file name="Form.php" hash="8154ec42a631e9da7f61505f565a17ea"/><dir name="Renderer"><file name="Action.php" hash="15f63122b0d5b5a7f98b68cf9e90cd99"/></dir><dir name="Tab"><file name="Edit.php" hash="b911d2e59de254b638bea8538b422c1d"/><file name="History.php" hash="a50cd10336d45d310a696466716fda81"/><file name="Run.php" hash="f26cf834cd0de2edd50d77d29684edd6"/></dir><file name="Tabs.php" hash="3d978afe39d9e18c11e2baca4a215ee5"/></dir><file name="Edit.php" hash="617606b5c19e33c188df33b079779f38"/><file name="Grid.php" hash="c6aff08541b0327af68c3942eed2d5ee"/><file name="Run.php" hash="df3a41bb85d5073874eb65077c2dcc55"/></dir><file name="Profile.php" hash="b85def18d2172e3d04029e4bf3a5103d"/></dir><dir name="Currency"><dir name="Edit"><file name="Form.php" hash="5256c32b1a949bb453328388a86d48d9"/><dir name="Tab"><file name="Main.php" hash="917c9a77f3d66dcbfade655c32777d70"/><file name="Rates.php" hash="012ff66a2046da22ff7ba92f5eb5b245"/></dir><file name="Tabs.php" hash="3b872c197c816a7edd9b195721c07177"/></dir><dir name="Rate"><file name="Matrix.php" hash="5fd280833a12d8d00925afe0b3e10331"/><file name="Services.php" hash="c29fa7a2f74dbef492037f1531587a0c"/></dir></dir><file name="Currency.php" hash="84e80eac6cc34add6ebc39af36e93dd8"/><dir name="Design"><dir name="Edit"><dir name="Tab"><file name="General.php" hash="d47118d46d385e79686fbf227809d203"/></dir><file name="Tabs.php" hash="f31788617c46457fda8b66ca802df543"/></dir><file name="Edit.php" hash="28ff3b8feff58116ecb5ec90835cb448"/><file name="Grid.php" hash="d7c2526f457ef8acd4fdbf80f31f3245"/></dir><file name="Design.php" hash="dd4061c39d5e50c4c3d685a188e36e2d"/><dir name="Email"><dir name="Template"><dir name="Edit"><file name="Form.php" hash="43a80755570464fb90aafaf15b5148b8"/></dir><file name="Edit.php" hash="20b191ddc31732628719b08ee716ee0e"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="f23178f2b2327d60ebcc82239d84bc3d"/></dir><dir name="Renderer"><file name="Action.php" hash="2877e269d1c4aa7e3aff96d777819338"/><file name="Sender.php" hash="7abe727b63a11c5721301bc447d7efbc"/><file name="Type.php" hash="09e6d40ee27f60b0a8b6583f848d7c9e"/></dir></dir><file name="Grid.php" hash="c5296ebbfc4760ffe7e32d226bcf1fc4"/><file name="Preview.php" hash="df61b1eda6a29baf5b97cb39c322e37e"/></dir><file name="Template.php" hash="73c34587fca2e992c7c93d4cac9fdd66"/></dir><dir name="Store"><dir name="Delete"><file name="Form.php" hash="205d5513f0f9ad09556dde92aaabb6b3"/><file name="Group.php" hash="a85e45e40ff06c3221ad28ea57e02288"/><file name="Website.php" hash="86a8c60be0c404171af3ead96f4bad3f"/></dir><file name="Delete.php" hash="6f25851ab0d5903cdaea4544ad1ee2fb"/><dir name="Edit"><file name="Form.php" hash="1c4a00e93a976f06135ad720ff62be84"/></dir><file name="Edit.php" hash="b887414026cbd610061c14d96cebd1ef"/><dir name="Grid"><dir name="Render"><file name="Group.php" hash="a7ec7675bfb170555c76dde95551896c"/><file name="Store.php" hash="41fed932082b9a90f73d0b4847617b08"/><file name="Website.php" hash="dd7051818500354618ee3dda022cb76a"/></dir></dir><file name="Grid.php" hash="04dd49dbae6029772d9b5486bfd78fbc"/><file name="Store.php" hash="7c82688ef8ce58f7107985649ffe23d9"/><file name="Tree.php" hash="fb063b67133437d131edd1113180743e"/></dir><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="fd8b94e92ff3fb76d50da58c7d5ebbc1"/></dir><file name="Edit.php" hash="919f801b8437c4646d67b93e08e6a5c3"/><file name="Grid.php" hash="a54fe6c69801b77b27bdf1360094afad"/></dir><file name="Variable.php" hash="108b4727c465fd7f22132027a7f3cdad"/></dir><dir name="Tag"><dir name="Assigned"><file name="Grid.php" hash="79f9654e336cf27a596bda443a2720dd"/></dir><dir name="Customer"><file name="Grid.php" hash="0897071b02c50a22f65bda8aedd25abd"/></dir><file name="Customer.php" hash="5106b4a9ac0b0f4b71dfd0c3d07f8d9a"/><dir name="Edit"><file name="Accordion.php" hash="cfcaf4c26d819c5f32eb3dd4ac1d79cb"/><file name="Assigned.php" hash="a0d9d15ebd4cd7f875d81a0706a617e6"/><file name="Form.php" hash="050e97f22167ced4ad81654b664d3dd4"/></dir><file name="Edit.php" hash="93611bda6daf3378835c989cbca46ccb"/><dir name="Grid"><file name="All.php" hash="f423f44f435767dd96f062b25cc4ed85"/><file name="Customers.php" hash="24a18c44fef47d01500bbc39903a2195"/><file name="Pending.php" hash="70a92cf5befb5296b89e629573e976f2"/><file name="Products.php" hash="c149997a6c038d94cad45c779b359572"/></dir><file name="Pending.php" hash="cb548a56e6b86ba689ad54c7b8bb2430"/><dir name="Product"><file name="Grid.php" hash="8d9df615d52318973ce2599861f66ffc"/></dir><file name="Product.php" hash="8c6e7f41084498c1596b513070b6ac80"/><dir name="Store"><file name="Switcher.php" hash="6bc14d80bffb3f49b7759764a4ed88df"/></dir><dir name="Tag"><dir name="Edit"><file name="Form.php" hash="90451674a5a6e8b2ade29da9e7067a0f"/></dir><file name="Edit.php" hash="54e911b8b60ad93a027ca44c72c74f13"/><file name="Grid.php" hash="3b9333415e01808d09af5ba0df62b698"/></dir><file name="Tag.php" hash="a9dadfaf4fba9260302712d1620a57e6"/></dir><file name="Tag.php" hash="759919a923dd46a791cc7f3e04688d98"/><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="738f3563c7c0fbe8d1c4a84b9d12e15b"/></dir><file name="Edit.php" hash="df53d4ae5d5df600fb8866a1d3362bad"/><file name="Grid.php" hash="66f001b3368e8004c94e54eac80aeb66"/></dir><file name="Class.php" hash="9a1f47eb978a97ed5136db0b07c13f9c"/><dir name="Rate"><file name="Form.php" hash="7816ce4ab9c09ecd8f356f17d9ef9f16"/><dir name="Grid"><dir name="Renderer"><file name="Country.php" hash="6a5b9584e7218b4bee09da89a93965b3"/><file name="Data.php" hash="9c5c8ab1baba6b44f29a8a78ca954ad3"/></dir></dir><file name="Grid.php" hash="6ecc40b7cee46feea5368a0c2a09cf2b"/><file name="ImportExport.php" hash="a0a9f93bc711bb180cb0f17ed47e9690"/><dir name="Title"><file name="Fieldset.php" hash="7469a61c0649763cd10912f8de9d5977"/></dir><file name="Title.php" hash="269c2a7341a463f584a5287021e683e8"/><dir name="Toolbar"><file name="Add.php" hash="7f595a61464579ab5db8d9eee1b97581"/><file name="Save.php" hash="131346c1dd70bd79858a7193307f55a4"/></dir></dir><dir name="Rule"><dir name="Edit"><file name="Form.php" hash="7cc4a20fd13942b1a825ea056cf38bc3"/></dir><file name="Edit.php" hash="a3b6840832f73cead46c1c2f677ea3ae"/><file name="Grid.php" hash="c38a086444e5e89b8c59684c2396820b"/></dir><file name="Rule.php" hash="b98039c3f166068adf4e076f0f04bc51"/></dir><file name="Template.php" hash="6f26131ff4dfd4729113282b13a843ed"/><dir name="Text"><file name="List.php" hash="5587c224f52ba52419a5fbad48caeff7"/></dir><dir name="Urlrewrite"><dir name="Category"><file name="Tree.php" hash="81a98f81b793bb6ad0bb711314b91fa9"/></dir><dir name="Edit"><file name="Form.php" hash="b8756dd7f9c61ea143c6336d1df5c2c9"/></dir><file name="Edit.php" hash="9ae3643b86ad21cdb933d59ea11b194c"/><file name="Grid.php" hash="7c859376ae481d32eaa56c1a7ab28e06"/><file name="Link.php" hash="f78c80231e9ce524be3ce0bce72ea207"/><dir name="Product"><file name="Grid.php" hash="55080a18188d74ea1979b4708d07bee3"/></dir><file name="Selector.php" hash="cfd236febb9995a5a775a32eb483a628"/></dir><file name="Urlrewrite.php" hash="3db4a7440c65f621f490243ed76a21cf"/><dir name="Widget"><dir name="Accordion"><file name="Item.php" hash="9963db0180662c8c796316ba1c1b4452"/></dir><file name="Accordion.php" hash="da391f1b277360310bcfd1e433c38430"/><file name="Breadcrumbs.php" hash="6f0fb626f3ad97775bff66b1141b7c0a"/><file name="Button.php" hash="41c3f314d690048c7bc02bfb44213ac3"/><file name="Container.php" hash="57d98d24135c76b0b867483da46f51e1"/><dir name="Form"><file name="Container.php" hash="8d8cd01136a30761a94d662fbdf64c0d"/><dir name="Element"><file name="Dependence.php" hash="e0f6f88de3573db90da3fc165ab51d21"/><file name="Gallery.php" hash="9e385452c4a403c5bd41048cd5b496d3"/></dir><file name="Element.php" hash="325acd16669960f151229694bd8cb5c6"/><dir name="Renderer"><file name="Element.php" hash="9606b4832eb5ed705c66aabb15c32f11"/><dir name="Fieldset"><file name="Element.php" hash="1a2ca35761e69c4623821037c49039e6"/></dir><file name="Fieldset.php" hash="f283d0a5e83c4d175f1df001ad0cfcc1"/></dir></dir><file name="Form.php" hash="4276c86bfdd01e8e7328ac48d05f816d"/><dir name="Grid"><file name="Block.php" hash="6ed77bb180b0b48239dea45e68055a89"/><dir name="Column"><dir name="Filter"><file name="Abstract.php" hash="11aaee3d56049e64ba326f4c55d3927f"/><file name="Checkbox.php" hash="f4bd0719f8fe75dd1518d5a3777d3901"/><file name="Country.php" hash="66f6636e5118d732d6b136e369abe387"/><file name="Date.php" hash="3235e89c52ec332d2012df6369845342"/><file name="Datetime.php" hash="fcd8319b66fcb51481212ff85c46beac"/><file name="Interface.php" hash="9508013e4ddd26c84d5f48c5799c70cf"/><file name="Massaction.php" hash="1a8bf6a52aa9a8195d3d746b35196e20"/><file name="Price.php" hash="580e37ddaba0db732698a103bced2e12"/><file name="Radio.php" hash="f9dcb9f3890ff62104608148919da36a"/><file name="Range.php" hash="6089b0e07f94f044494e710d68c56300"/><file name="Select.php" hash="132af57951e0c91ab7dc01821fb536ff"/><file name="Store.php" hash="508860215b1a19fa54cf1ce280bd709c"/><file name="Text.php" hash="e100c04f03f737c81529debdabc20286"/><file name="Theme.php" hash="2a1339cbcf4579ff03108794cbc17fa6"/></dir><dir name="Renderer"><file name="Abstract.php" hash="f03d13d892146e066cd06e86506937a9"/><file name="Action.php" hash="01f2aa30d6b64b991ddd9b472a4ce005"/><file name="Checkbox.php" hash="b2df9566a4c1aaf7f77f7c7a8a956b8b"/><file name="Concat.php" hash="3077e68e61ad33ad155f110648c22fea"/><file name="Country.php" hash="07fc6f314d624fe89ead0902e4d190a6"/><file name="Currency.php" hash="5d938d4b4d9fb1f839621549ba98ccba"/><file name="Date.php" hash="bf5fbeee7c618a739ce69eb70c76f6be"/><file name="Datetime.php" hash="565e9d68dd120d64851074464716c897"/><file name="Input.php" hash="5ac2de1302d94a0e30d2d73effe8d8ea"/><file name="Interface.php" hash="3a7d98a7a256fe628cde2dd1ad911d60"/><file name="Ip.php" hash="a4a4af4514db2ef927986f12a3f29cf0"/><file name="Longtext.php" hash="3807286900b634bf0ef74fcbdaec3d9b"/><file name="Massaction.php" hash="ad2742a2cb04efc11b41e8f3050905f5"/><file name="Number.php" hash="f22836ca2b3731d00b3bd6c98662b755"/><file name="Options.php" hash="8fcf66e4f690054472f72223330393ca"/><file name="Price.php" hash="d2768108c7d47117435a36519cdb3776"/><file name="Radio.php" hash="0a48f77fea9bb3b2bddf22b6293ee630"/><file name="Select.php" hash="eeb0e37b815f952c1cc44bd1bf471e5e"/><file name="Store.php" hash="a9934209293aabfc89de9577d4ccb3ec"/><file name="Text.php" hash="11b4f6483e114544110408ebc4960222"/><file name="Theme.php" hash="5c8ba50adf9283ffcc8411b7cddf5d44"/><file name="Wrapline.php" hash="d2feb0797c3dff5b848908cb3b4147d0"/></dir></dir><file name="Column.php" hash="3abebc63f6ccc0c7a0b8ef5dc044174c"/><file name="Container.php" hash="a5442240aa5b685b7c003494e77a0afb"/><dir name="Massaction"><file name="Abstract.php" hash="639003d72d932a8f8740ac32b717b7a5"/><dir name="Item"><dir name="Additional"><file name="Default.php" hash="da4949a004104c0efd59ecd559756e7a"/><file name="Interface.php" hash="8c416b7727ddf6cea33eddad0fa4faff"/></dir></dir><file name="Item.php" hash="813045f3befd90791efaecca05dfc6a2"/></dir><file name="Massaction.php" hash="655a8911ff868a73947c9ded8fbfbe70"/><file name="Serializer.php" hash="2828e14d10f28239ca29a4f27616f923"/></dir><file name="Grid.php" hash="ded47ecf5cf5b4f79181a1d125e63095"/><dir name="Tab"><file name="Interface.php" hash="c6eca9feb0f1882c5367b95048e66c64"/></dir><file name="Tabs.php" hash="2d606253c76f18d0b4198b32ec4b9574"/><file name="Tree.php" hash="6fc40be912b828f3b5de65c6a7e46cda"/><dir name="View"><file name="Container.php" hash="ccf35517045978defed86182facc005e"/></dir></dir><file name="Widget.php" hash="fc7707b9b506c3d59d47a8be2b806f86"/></dir><dir name="Controller"><file name="Action.php" hash="164bb93eeec74da671544fd495f0eb6d"/><dir name="Report"><file name="Abstract.php" hash="39411593b35c6d764493dcf07d653c29"/></dir><dir name="Rss"><file name="Abstract.php" hash="4381ce9ca264894fc260e8db95334349"/></dir><dir name="Sales"><file name="Creditmemo.php" hash="660502a706a198926126f1275f98db0c"/><file name="Invoice.php" hash="6e3b478a5535d5eb9d8ab50d20494738"/><file name="Shipment.php" hash="93bed23eb67f1991ced3f7562eb6a880"/></dir></dir><file name="Exception.php" hash="492092b52f7f150ad367e4b3772a67a1"/><dir name="Helper"><file name="Addresses.php" hash="6bd96194c88392da84bb8d1b5da79577"/><dir name="Catalog"><dir name="Product"><file name="Composite.php" hash="5ab7c631e23fd3dab4be1ae6ec4da6a8"/><dir name="Edit"><dir name="Action"><file name="Attribute.php" hash="16f99bb86999e9383792446848e8ba99"/></dir></dir></dir></dir><file name="Catalog.php" hash="fb4b707c73756286843b41ca5f94353c"/><dir name="Dashboard"><file name="Abstract.php" hash="f24a74fc4c5324c83677a0656344776d"/><file name="Data.php" hash="19c86273adb4971031508b4dd634f53d"/><file name="Order.php" hash="a9f2663b54aeda7ba20ba7b4cf1b505e"/></dir><file name="Data.php" hash="4bbc866cebdf5c6c18a8c0b80367c6d2"/><dir name="Help"><file name="Mapping.php" hash="e190e5b77c9f006ab00f1fc6a4d29595"/></dir><file name="Js.php" hash="e4d84ccf4986868c523cef17768f45e0"/><dir name="Media"><file name="Js.php" hash="d1de807a757b42cf152240f7435ebe8a"/></dir><file name="Rss.php" hash="d9660db600a8ccff6cf31c8170d4f387"/><file name="Sales.php" hash="514dd84d86c15aac8e79df6b49f82f4e"/></dir><dir name="Model"><dir name="Config"><file name="Data.php" hash="20b6c3725914b23efb96baa36d84b29f"/></dir><file name="Config.php" hash="cd316b8f97b3d9a06f22a0fe9748ed14"/><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="3ca624f01f68104ec4551e0413ee6e45"/></dir></dir><dir name="Email"><file name="Template.php" hash="aa1208ec3872a2b4e80c938ae393cdac"/></dir><file name="Extension.php" hash="d05e85bd759ee15df0f564e66dc9a110"/><dir name="Giftmessage"><file name="Save.php" hash="051daf32c12f5a50e80fedae839f12d1"/></dir><dir name="LayoutUpdate"><file name="Validator.php" hash="322ffb00f9eaf1d448aeb2b077019208"/></dir><dir name="Newsletter"><dir name="Renderer"><file name="Text.php" hash="40e5e8948ff669dbe33418813787910b"/></dir></dir><file name="Observer.php" hash="aab98abc9921bbb3076d8254a3e68fe2"/><dir name="Report"><file name="Item.php" hash="399bf8e19037aa1c1cf98ad2aee0c0cc"/></dir><dir name="Sales"><dir name="Order"><file name="Create.php" hash="c8e5597957b0d1372f4e776e9e80b8b5"/><file name="Random.php" hash="f587faaa79edccdf9f4372c3ae39b9eb"/></dir><file name="Order.php" hash="7415e987557325a4743c13512ca92ef4"/></dir><dir name="Search"><file name="Catalog.php" hash="3b2a470ca6a79d04bd1fa1db67ac59d3"/><file name="Customer.php" hash="502360ccce3d20548716eecd27ce530b"/><file name="Order.php" hash="ec3ff210f4d3f0739d1cf6c87e943a05"/></dir><dir name="Session"><file name="Quote.php" hash="9a6a954339497a62fcfb2b2c7d9d4f6c"/></dir><file name="Session.php" hash="51cb79cc18d6b42410a0d6842cd4d959"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Admin"><file name="Custom.php" hash="2c5666b555abd9c03ff6ef9fc5013540"/><file name="Custompath.php" hash="d5737f4b5775229b2c2813916501647e"/><file name="Observer.php" hash="892a8d168d84463484d5d7d1306f2b3c"/><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="cf09ab0944db26b55e9177fcbbab3cd5"/></dir></dir><file name="Usecustom.php" hash="1b86eb94045fb9689875500f57a61f17"/><file name="Usecustompath.php" hash="c6f3126a5cd06cb16a7dd726bc40f737"/><file name="Usesecretkey.php" hash="ac27a438f4f821f0e0923ffdd9b7fc5c"/></dir><file name="Baseurl.php" hash="9acb5e1d0ed1079346360687dd72c6f9"/><file name="Cache.php" hash="7ec361d4e01fc0764d8ce64f44eef486"/><dir name="Catalog"><dir name="Inventory"><file name="Managestock.php" hash="0a9a05e402ac2c33bd175f3fde2dedf3"/></dir><dir name="Search"><file name="Type.php" hash="6e471060cc4ab8806b8fa0127fd1b12a"/></dir></dir><file name="Category.php" hash="d60ecefd01f2117ac332e643a86f003e"/><file name="Cookie.php" hash="95d3ebe1ace8f7f8866386241dce1990"/><dir name="Currency"><file name="Abstract.php" hash="d12482b114b5b00ef0566b1fc8ecc046"/><file name="Allow.php" hash="2a6e6e72c7ca596bd68d54437eacd542"/><file name="Base.php" hash="15232a9cd5bf2bdad17020197b051bb2"/><file name="Cron.php" hash="6cc1e541da68929ed1e5e48ef0d6eff9"/><file name="Default.php" hash="4cac77f5e7179c894e09ce62a841fd88"/></dir><dir name="Customer"><dir name="Address"><file name="Street.php" hash="0802a38f4231f21f50761eb2681870a5"/></dir><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="f7d772e3426bea993fca6e1a2412e6d6"/></dir></dir><dir name="Show"><file name="Address.php" hash="84eec1235bbc1eb64bae76c09bfa4d22"/><file name="Customer.php" hash="929b8295dbfe3107825d10eb8c5b18f8"/></dir></dir><file name="Datashare.php" hash="14db2bc869de3a8b9e96beb25c7b6807"/><dir name="Design"><file name="Exception.php" hash="4e35d73b40a74f338b549d31006cdeff"/><file name="Package.php" hash="744541ad3227592d0e277ca26f79b924"/></dir><dir name="Email"><file name="Address.php" hash="b7ae49706ba307009fb7014e490842b2"/><file name="Logo.php" hash="490869120f5980995eaa50d12c8afb33"/><file name="Sender.php" hash="f60327e5b6e76ddced9a9ef97f4138eb"/></dir><file name="Encrypted.php" hash="0c1ff15368ed0bc34ab5ed8ff45a1176"/><file name="File.php" hash="a438e9d1f635d3e6d773cd9b478c6a38"/><file name="Filename.php" hash="1ae3da616765e139f463322910c9948c"/><dir name="Image"><file name="Favicon.php" hash="4cd22c671cec7bb2ffe05e8ee1e4e776"/><file name="Pdf.php" hash="20355d2d402d681d850de881ef2361b9"/></dir><file name="Image.php" hash="9431465bc83b1daede8669325b9664d2"/><dir name="Layer"><file name="Children.php" hash="555fb0942763f1017b66381b6d1e92fa"/></dir><dir name="Locale"><file name="Timezone.php" hash="9ee4785bc7529a0babc28ed05306d6d0"/></dir><file name="Locale.php" hash="1d904bcf6274d7b1249113e9c0362b0b"/><dir name="Log"><file name="Cron.php" hash="04de276e0fbef64346b9677a479a8fe2"/></dir><dir name="Price"><file name="Scope.php" hash="b0c2b81d5fca231d562f85e51e1b9483"/></dir><dir name="Product"><dir name="Alert"><file name="Cron.php" hash="4259753023caf2f11b3e115b42fd3e60"/></dir></dir><file name="Secure.php" hash="3e5d09621e514c6fb41333df0af508de"/><dir name="Seo"><file name="Product.php" hash="05234d32f3e6dc837b2ba9b1bcc90729"/></dir><dir name="Serialized"><file name="Array.php" hash="093602922dd9fdb8d851fc1195cd5b29"/></dir><file name="Serialized.php" hash="1e97e725595c0d0742b45bcbf18004ed"/><dir name="Shipping"><file name="Tablerate.php" hash="ea54a32e1e3468c0ef5efbd96f9737ad"/></dir><dir name="Sitemap"><file name="Cron.php" hash="109975e92c2592924594887734ca750a"/></dir><file name="Sitemap.php" hash="8fb7d71bf5ba8abde15fd7eb7f3609f2"/><dir name="Storage"><dir name="Media"><file name="Database.php" hash="b9cdcc830271f01fc4841fa1276e0b2a"/></dir></dir><file name="Store.php" hash="6df764d2b71d964a2eb728b94ef875bd"/><file name="Symlink.php" hash="579255cea3be201bb020608453924d24"/><file name="Translate.php" hash="b8ab58a6e82b15b3d63831cfb5400c89"/><dir name="Web"><dir name="Secure"><file name="Offloaderheader.php" hash="409123f7cf4e37357845c14debc112da"/></dir></dir></dir><dir name="Clone"><dir name="Media"><file name="Image.php" hash="f306ddd5756ece9d692c34f9d1d43289"/></dir></dir><dir name="Source"><dir name="Admin"><file name="Page.php" hash="07ea92257f77ed9b99e98e6394af02e9"/></dir><file name="Allregion.php" hash="61dea0e4db289fc2caf59db18626a2cd"/><dir name="Catalog"><file name="GridPerPage.php" hash="ed28c5e9b96466e9a77005af1545bc98"/><file name="ListMode.php" hash="d06c3c9e6872739901aae95a5b7f6844"/><file name="ListPerPage.php" hash="054f67f15da21255b7c72600b745f4af"/><file name="ListSort.php" hash="d1bd911ee054a24d328f7e43d85784e3"/><dir name="Search"><file name="Type.php" hash="78d42abd37aa2213f71109425e26356b"/></dir><file name="TimeFormat.php" hash="18e9f55f3a54ba28e16b5094e461995a"/></dir><file name="Category.php" hash="c1323751281ad071b9fe5510c20c79ab"/><file name="Checktype.php" hash="b66904e4be16dc0057f81c933a70cc4c"/><dir name="Cms"><file name="Page.php" hash="e746560cfb4b5433f380df5487d0becd"/><dir name="Wysiwyg"><file name="Enabled.php" hash="e560838a04d4cb33edfcffa7e31f6b55"/></dir></dir><dir name="Country"><file name="Full.php" hash="c61ab1b2b28608f511dedb28c1e64be2"/></dir><file name="Country.php" hash="428952ac0a60019c397e2cd4a6620542"/><dir name="Cron"><file name="Frequency.php" hash="19e48f7a858eaf9d069bd77b22641680"/></dir><dir name="Currency"><file name="Service.php" hash="1c9d3cc05d88594601843dfb1f2128a3"/></dir><file name="Currency.php" hash="f5adf5d1762abaadb93a7889f32a9fb1"/><dir name="Customer"><dir name="Address"><file name="Type.php" hash="0cad25f9931835f7de60b09d925a6c12"/></dir><file name="Forgotpassword.php" hash="51a97dc80d5c4f0d171d42ab7a9b9563"/><dir name="Group"><file name="Multiselect.php" hash="614c108c066821916bfd8b798b3a8514"/></dir><file name="Group.php" hash="f36bb4c0050c3ae64afa4e72af620fe7"/></dir><dir name="Date"><file name="Short.php" hash="9066c5defae302673f869bf780cb36ee"/></dir><dir name="Design"><file name="Package.php" hash="86e05ba956bc9b25579a75da521e9445"/><file name="Robots.php" hash="c6eac69c9f9bdc6f527f7f8cc8d10513"/></dir><dir name="Dev"><file name="Dbautoup.php" hash="650c67b2667005b01f609659e152e0fc"/></dir><dir name="Email"><file name="Identity.php" hash="718c5958bb3c22bca7fa332a010c7dc0"/><file name="Method.php" hash="bbc28af99f920366e62ee128da9832a9"/><file name="Smtpauth.php" hash="caa349b5110be332fffdaea33572e41a"/><file name="Template.php" hash="53b7bca8aae2a751dc17a9802bd8b76e"/></dir><file name="Enabledisable.php" hash="d60de150328b7788eb0b62062f7f28c7"/><file name="Frequency.php" hash="52f105e591fbca3657913f5ad4d0c466"/><file name="Language.php" hash="201cd16113b823930b68507fbedf901d"/><dir name="Locale"><file name="Country.php" hash="9b8a64007f3901633986a4e966e17cce"/><dir name="Currency"><file name="All.php" hash="4baa4cd30bb25068542a9c28bc0e8ab8"/></dir><file name="Currency.php" hash="96b91fbdf85c5a36a46c723b33bbb434"/><file name="Timezone.php" hash="9a185fb1041b0d191a4f81857629e1e9"/><file name="Weekdaycodes.php" hash="9587ebc99e4a4f8c0e17337e2613ba4f"/><file name="Weekdays.php" hash="08600f64be620c2b5ee86b0dddb394e9"/></dir><file name="Locale.php" hash="4b0bc201e473144ed1d4a6f51bc1eea4"/><file name="Nooptreq.php" hash="bb4d40af3002efb88cb2f8c889e8fc11"/><dir name="Notification"><file name="Frequency.php" hash="8ad9cb56d6e653510ec06f0d6e6f049a"/></dir><dir name="Order"><dir name="Status"><file name="New.php" hash="cfe507d4c133065a8a120c9c4251aa4d"/><file name="Newprocessing.php" hash="d7d4b80ebbc47d29bb0b2be5ea93cef7"/><file name="Processing.php" hash="e75bfc8565c3650a50aa2ef5a3ecb34b"/></dir><file name="Status.php" hash="b664b4209585313ccde7a0a0f06310c0"/></dir><dir name="Payment"><file name="Allmethods.php" hash="7c9f846bc2576a405dd4d933841b03d9"/><file name="Allowedmethods.php" hash="3029cda991bcab373140c5e5396d6775"/><file name="Allspecificcountries.php" hash="82ee5d5c57b5e17ca272e0402023be3b"/><file name="Cctype.php" hash="f973d2997373738b6ff05bcea3b9733d"/></dir><dir name="Price"><file name="Scope.php" hash="082be99bce33b87338683eebdcf107ba"/><file name="Step.php" hash="0ebcae1ec080294aa813bbd06d1bd77e"/></dir><dir name="Product"><dir name="Options"><file name="Price.php" hash="741cb8f5830a944ccc7fa584ac746966"/><file name="Type.php" hash="5890cd095b3d4d03c103fd8b2da7b9f9"/></dir><file name="Thumbnail.php" hash="c5e7044a2578410185a18c4a59da7fae"/></dir><dir name="Reports"><file name="Scope.php" hash="050ceb4cb8eb53afaa4043092c1bf061"/></dir><dir name="Security"><file name="Domainpolicy.php" hash="66af9f43fb951203382eb026f5b386a7"/></dir><dir name="Shipping"><file name="Allmethods.php" hash="261b2e2eed143fc09763c4134f76ac53"/><file name="Allowedmethods.php" hash="08cd1fbcb9b2dcc8fafd1fbbd77ca42c"/><file name="Allspecificcountries.php" hash="8b0680c67bffe2f5f368a45289a1dbd2"/><file name="Flatrate.php" hash="0eed70f87ec267efe2c1319734f55033"/><file name="Tablerate.php" hash="a7d1b82d0cd24b32bb79695dadd4f167"/><file name="Taxclass.php" hash="a7aab6b10cfa318d4c1afcfdc2299b57"/></dir><dir name="Storage"><dir name="Media"><file name="Database.php" hash="feb8b4a599b0cb0c4816e8d424236ac0"/><file name="Storage.php" hash="92c1cb07e86aa0e7b1e352f6c73e61d9"/></dir></dir><file name="Store.php" hash="908b5d6637da193e9851312c3961eaee"/><dir name="Tax"><dir name="Apply"><file name="On.php" hash="e8f20c82b9c8dfde173526f8ac52a62a"/></dir><file name="Basedon.php" hash="6e9b6c9853568c1c2715422e7a5c22ed"/><file name="Catalog.php" hash="f9e22bf355deacccfd112b6b7ef5137d"/></dir><dir name="Watermark"><file name="Position.php" hash="1660f8d16efa85d0b0e8e8ca8c32e0ef"/></dir><dir name="Web"><file name="Protocol.php" hash="5bbdb71054da0a2b21a6ec414434eb59"/><file name="Redirect.php" hash="70cd12583e8774a0f9af033a7a16f3b0"/></dir><file name="Website.php" hash="7dea31f99e19f13bafa8ca1134f6cca8"/><file name="Yesno.php" hash="9e342496a7337dabb63403d2a67ad9d3"/><file name="Yesnocustom.php" hash="8b4f1f9a773bf7280ac3cbd88621dd3c"/></dir></dir><file name="Store.php" hash="3f7c2cb97827b41692fcbcc074f03710"/></dir><file name="Url.php" hash="20f77e72bfb83f0b71b34ae3bd269cfe"/></dir><dir name="controllers"><file name="AjaxController.php" hash="4a3b333cb01a891e6d143fd6076f0687"/><dir name="Api"><file name="RoleController.php" hash="2cb844672988443b1cf9365146b2c74c"/><file name="UserController.php" hash="e4ca9f4d3da11196e84170294c043a27"/></dir><file name="CacheController.php" hash="c8d326f4cd7121ac4ef359d2e537583a"/><dir name="Catalog"><dir name="Category"><file name="WidgetController.php" hash="13aba031322ce4a03731e84dcc5b4893"/></dir><file name="CategoryController.php" hash="875c0ad4b4204bbf61e4f1bc4c730cf9"/><dir name="Product"><dir name="Action"><file name="AttributeController.php" hash="cac811bf433ac778ceb92659b0b4fe57"/></dir><file name="AttributeController.php" hash="24fc6ea8a7b1b066ef4572dd9dc40b8e"/><file name="DatafeedsController.php" hash="5e4375bf61146051c472f00289a53878"/><file name="GalleryController.php" hash="c85cac9fc2010ecd5dec2ae31cb7f2bd"/><file name="GroupController.php" hash="1e9806afce13423b0bdb622b94213ce1"/><file name="ReviewController.php" hash="a8fb62bda266dbbc87b9b2c64a525020"/><file name="SetController.php" hash="9031dbd76279edf6917ac1379f8ae12d"/><file name="WidgetController.php" hash="dcf37f89a054c70e7ae090f01799c558"/></dir><file name="ProductController.php" hash="945d071fc7a69df4fd0b1dd65e847b7f"/><file name="SearchController.php" hash="2c9ef11193a19d5db884e99608846f16"/></dir><file name="CatalogController.php" hash="2d7423492dbb3bda4cecb19024c09ae5"/><dir name="Checkout"><file name="AgreementController.php" hash="15d6e303b61408e90e3deec4765119bc"/></dir><dir name="Cms"><dir name="Block"><file name="WidgetController.php" hash="c3a05a659d8736631a5eb3a888cd4f9d"/></dir><file name="BlockController.php" hash="5a85ee07e0e531e029cae9c048b40fca"/><dir name="Page"><file name="WidgetController.php" hash="eec6205a9f42b30ce470dcd693c575a7"/></dir><file name="PageController.php" hash="e56e329cf0dbf0a74c05a2cb9f8f7874"/><dir name="Wysiwyg"><file name="ImagesController.php" hash="0ddb9b49c7ab5dd875881554304037c2"/></dir><file name="WysiwygController.php" hash="e952390207013f76ac997c446415daa3"/></dir><dir name="Customer"><dir name="Cart"><dir name="Product"><dir name="Composite"><file name="CartController.php" hash="aa29ec323bfa1da6ee83f60202cea768"/></dir></dir></dir><file name="ConfigController.php" hash="3cebd8a5a06f515b201213de63a42301"/><file name="GroupController.php" hash="88cbd4b0a3e966a3dbc478c4cccabd26"/><file name="OnlineController.php" hash="284423912762c3901a3d88a2f152ab49"/><dir name="System"><dir name="Config"><file name="ValidatevatController.php" hash="c2f13c6a3a577d5e9a7e2300ab5129b4"/></dir></dir><dir name="Wishlist"><dir name="Product"><dir name="Composite"><file name="WishlistController.php" hash="51d3c5a82a21db7095fe82ac73bf091e"/></dir></dir></dir></dir><file name="CustomerController.php" hash="898f524c9346bf1fe4933f76acd9a73d"/><file name="DashboardController.php" hash="5d4ab73f955bc70d6b19def9a98296f2"/><file name="IndexController.php" hash="31ecce0a0aabea0bc30b4c5ec02ffb39"/><file name="JsonController.php" hash="99e0ce016512b3eb1917b730cdf6d712"/><dir name="Media"><file name="EditorController.php" hash="f523d8445665a42af43c3042c54058a7"/><file name="UploaderController.php" hash="c6f2c5739d38daa86c0848fe61ba7258"/></dir><dir name="Newsletter"><file name="ProblemController.php" hash="0063601a49fdc914707d789b05a17042"/><file name="QueueController.php" hash="70044b5f2bc0923ab982e88184fe75c8"/><file name="SubscriberController.php" hash="6ae453eac0c633d625f9093ce3f837f2"/><file name="TemplateController.php" hash="ed79bba81bb3b228f08941df6378a055"/></dir><file name="NotificationController.php" hash="761d19dc912e502c652261d1deb548bf"/><dir name="Permissions"><file name="BlockController.php" hash="e6ba082842b88611db1d0946c0315ef6"/><file name="RoleController.php" hash="a7eb386736aa7516ce1d3d93fab1e4cd"/><file name="UserController.php" hash="50614594c19864649fea8fb11dad385d"/><file name="VariableController.php" hash="7318ce9dafa071cdb848e61f95f9deba"/></dir><dir name="Poll"><file name="AnswerController.php" hash="c52decb47b9eb7f7e998597fe737f260"/></dir><file name="PollController.php" hash="cd1af4024635fdaa363490e8ed39fa73"/><dir name="Promo"><file name="CatalogController.php" hash="4caf32daf9d3922e456b671bd5d62bc0"/><file name="QuoteController.php" hash="4870d2393a5a379a558d081801bf9d56"/><file name="WidgetController.php" hash="32e7d3feb44b9d6b4eea0b8295962d6f"/></dir><file name="PromoController.php" hash="15febb0a2fcf990a71149995715cfd21"/><file name="RatingController.php" hash="e96fda9ac407e3eb0617b3788e0364fa"/><dir name="Report"><file name="CustomerController.php" hash="119442675595a473ad3f4d19e85d7d8e"/><file name="ProductController.php" hash="2622fae888d767646d0e137d309ade92"/><file name="ReviewController.php" hash="3f06d0453213a7927baf2782f589e140"/><file name="SalesController.php" hash="b7b843ee6f027b7dbf05f50f9ce19055"/><file name="ShopcartController.php" hash="03fc38fb4ab7129f85ac1c5683137028"/><file name="StatisticsController.php" hash="3062322c4b83c2f395d7b3d99ab4c7db"/><file name="TagController.php" hash="5b0461395c73edb55a371f70e5e21e96"/></dir><file name="ReportController.php" hash="647977810971dcfcc26d2209d0796608"/><dir name="Rss"><file name="CatalogController.php" hash="bcf01d5662e37969f77732051851901f"/><file name="OrderController.php" hash="a1cc80524411592c59495098a03832b3"/></dir><dir name="Sales"><dir name="Billing"><file name="AgreementController.php" hash="e1a98f30f42e8163fe22be39427a46eb"/></dir><file name="CreditmemoController.php" hash="bb521206beadb2522adb4202eb3dc0fa"/><file name="InvoiceController.php" hash="dd7aa697973092f3090102cf18e4c39e"/><dir name="Order"><file name="CreateController.php" hash="007b0464c0c28eff1d22c0c2f485d4df"/><file name="CreditmemoController.php" hash="8c42d690a39b9fcf74aa070e8d710292"/><file name="EditController.php" hash="7fa483e279a11bb3022e35c2935986cf"/><file name="InvoiceController.php" hash="de36f79d963342a4e10cd0caf048cd43"/><file name="ShipmentController.php" hash="0af14730559aa6e861264efd3bc8b0d1"/><file name="StatusController.php" hash="6ae192bfb3929f5202eb951e0737ae68"/><dir name="View"><file name="GiftmessageController.php" hash="3d9f9c81840d6989ecf9f6f1bdc931e7"/></dir></dir><file name="OrderController.php" hash="2669105016408166ebd145751429183d"/><dir name="Recurring"><file name="ProfileController.php" hash="f72efa409b661b1d915434e3c875008b"/></dir><file name="ShipmentController.php" hash="0e3e063a883234200ba49555c859c051"/><file name="TransactionsController.php" hash="6226eb065b4ed2aefacbe29bfda928a2"/></dir><file name="SalesController.php" hash="5da8825de3713488b413f4a38708f504"/><file name="SitemapController.php" hash="2ddb974b347e558c83aab5356d2736f6"/><file name="SurveyController.php" hash="17f9900c2c31823654ee4c3cf9d729d2"/><dir name="System"><file name="AccountController.php" hash="19b024780b21fea50f660c780a44cc77"/><file name="BackupController.php" hash="8d8fdc64d16d86dd920d4f0aa6690cfd"/><file name="CacheController.php" hash="b8b6115eda61ce326a06e4b4e07e357b"/><dir name="Config"><dir name="System"><file name="StorageController.php" hash="b28d44749bb7faddc095f7e8aee5caae"/></dir></dir><file name="ConfigController.php" hash="66d120fa468a8fb92d111372ea03c371"/><dir name="Convert"><file name="GuiController.php" hash="6f77eb0491fc1534a03a3e6a5e0eec02"/><file name="ProfileController.php" hash="1fa175d876232dcbf60412886aa7e10a"/></dir><file name="CurrencyController.php" hash="b8ff1126bae27e827ab9aff569a1b929"/><file name="DesignController.php" hash="69a8469e73a35c153996c39d9fee7ff9"/><dir name="Email"><file name="TemplateController.php" hash="174d18e23c8dca53a2e922d1f422bf52"/></dir><file name="StoreController.php" hash="4bcc3d6bc98610fe70d9fd969b9d6713"/><file name="VariableController.php" hash="7b01eed6355526f1d6516dc666fab493"/></dir><file name="SystemController.php" hash="71be9469a12cf6521f298798f8115048"/><file name="TagController.php" hash="15fc21a36107ea1b5608695a7e05b399"/><dir name="Tax"><dir name="Class"><file name="CustomerController.php" hash="33aa7a02f42d623ee1d7e895acf5e6b3"/><file name="ProductController.php" hash="250bcb4e0829442ebcb608be4aa03506"/></dir><file name="ClassController.php" hash="3d088eecb99a92973079cc380a85a4c0"/><file name="RateController.php" hash="6a2a85dd3fa1273c4e722be916b34756"/><file name="RuleController.php" hash="9092a005abd9f80d362d95f4771880cf"/></dir><file name="TaxController.php" hash="03a8806acc5e5544b6fe4c20effa7ab3"/><file name="UrlrewriteController.php" hash="f9571e54ad360f8ee074704e4f0f9458"/></dir><dir name="etc"><file name="adminhtml.xml" hash="e79d957b0e169cb969f60ad060f60b11"/><file name="config.xml" hash="2fbec9349a3211e2d32db223662552d0"/><file name="jstranslator.xml" hash="69fa2812576935434fd9de1dcd0e28a2"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Adminhtml.csv" hash="cc018e6a587ef6426c9260c636994943"/></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.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1.11</min><max>1.51.1.11</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_LinLibertineFont</name><channel>community</channel><min>2.8.14.11</min><max>2.8.14.11</max></package><package><name>Lib_Js_TinyMCE</name><channel>community</channel><min>3.5.11.10</min><max>3.5.11.10</max></package></required></dependencies>
18
  </package>