Mage_Core_Adminhtml - Version 1.9.2.2

Version Notes

1.9.2.2

Download this release

Release Info

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


Code changes from version 1.9.2.1 to 1.9.2.2

app/code/core/Mage/Adminhtml/Block/Permissions/Block.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Adminhtml permissions block
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Adminhtml_Block_Permissions_Block extends Mage_Adminhtml_Block_Widget_Grid_Container
35
+ {
36
+ /**
37
+ * Construct
38
+ */
39
+ public function __construct()
40
+ {
41
+ $this->_controller = 'permissions_block';
42
+ $this->_headerText = Mage::helper('adminhtml')->__('Blocks');
43
+ $this->_addButtonLabel = Mage::helper('adminhtml')->__('Add New Block');
44
+ parent::__construct();
45
+ }
46
+
47
+ /**
48
+ * Prepare output HTML
49
+ *
50
+ * @return string
51
+ */
52
+ protected function _toHtml()
53
+ {
54
+ Mage::dispatchEvent('permissions_block_html_before', array('block' => $this));
55
+ return parent::_toHtml();
56
+ }
57
+ }
app/code/core/Mage/Adminhtml/Block/Permissions/Block/Edit.php ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Adminhtml permissions block edit page
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Adminhtml_Block_Permissions_Block_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
35
+ {
36
+ /**
37
+ * Construct
38
+ */
39
+ public function __construct()
40
+ {
41
+ $this->_objectId = 'block_id';
42
+ $this->_controller = 'permissions_block';
43
+
44
+ parent::__construct();
45
+
46
+ $this->_updateButton('save', 'label', Mage::helper('adminhtml')->__('Save Block'));
47
+ $this->_updateButton('delete', 'label', Mage::helper('adminhtml')->__('Delete Block'));
48
+ }
49
+
50
+ /**
51
+ * Return text that to be placed to block header
52
+ *
53
+ * @return string
54
+ */
55
+ public function getHeaderText()
56
+ {
57
+ if (Mage::registry('permissions_block')->getId()) {
58
+ return Mage::helper('adminhtml')->__("Edit Block '%s'", $this->escapeHtml(Mage::registry('permissions_block')->getBlockName()));
59
+ }
60
+ else {
61
+ return Mage::helper('adminhtml')->__('New block');
62
+ }
63
+ }
64
+ }
app/code/core/Mage/Adminhtml/Block/Permissions/Block/Edit/Form.php ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Adminhtml permissions user edit form
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Adminhtml_Block_Permissions_Block_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
35
+ {
36
+
37
+ /**
38
+ * @return Mage_Adminhtml_Block_Widget_Form
39
+ * @throws Exception
40
+ */
41
+ protected function _prepareForm()
42
+ {
43
+ $block = Mage::getModel('admin/block')->load((int) $this->getRequest()->getParam('block_id'));
44
+
45
+ $form = new Varien_Data_Form(array(
46
+ 'id' => 'edit_form',
47
+ 'action' => $this->getUrl('*/*/save', array('block_id' => (int) $this->getRequest()->getParam('block_id'))),
48
+ 'method' => 'post'
49
+ ));
50
+ $fieldset = $form->addFieldset(
51
+ 'block_details', array('legend' => $this->__('Block Details'))
52
+ );
53
+
54
+ $fieldset->addField('block_name', 'text', array(
55
+ 'label' => $this->__('Block Name'),
56
+ 'required' => true,
57
+ 'name' => 'block_name',
58
+ ));
59
+
60
+
61
+ $yesno = array(
62
+ array(
63
+ 'value' => 0,
64
+ 'label' => $this->__('No')
65
+ ),
66
+ array(
67
+ 'value' => 1,
68
+ 'label' => $this->__('Yes')
69
+ ));
70
+
71
+
72
+ $fieldset->addField('is_allowed', 'select', array(
73
+ 'name' => 'is_allowed',
74
+ 'label' => $this->__('Is Allowed'),
75
+ 'title' => $this->__('Is Allowed'),
76
+ 'values' => $yesno,
77
+ ));
78
+
79
+ $form->setUseContainer(true);
80
+ $form->setValues($block->getData());
81
+ $this->setForm($form);
82
+ return parent::_prepareForm();
83
+ }
84
+ }
app/code/core/Mage/Adminhtml/Block/Permissions/Block/Grid.php ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Adminhtml permissions block grid
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Adminhtml_Block_Permissions_Block_Grid extends Mage_Adminhtml_Block_Widget_Grid
35
+ {
36
+ /**
37
+ * Construct
38
+ */
39
+ public function __construct()
40
+ {
41
+ parent::__construct();
42
+ $this->setId('permissionsBlockGrid');
43
+ $this->setDefaultSort('block_id');
44
+ $this->setDefaultDir('asc');
45
+ $this->setUseAjax(true);
46
+ }
47
+
48
+ /**
49
+ * @return Mage_Adminhtml_Block_Widget_Grid
50
+ */
51
+ protected function _prepareCollection()
52
+ {
53
+ $collection = Mage::getResourceModel('admin/block_collection');
54
+ $this->setCollection($collection);
55
+ return parent::_prepareCollection();
56
+ }
57
+
58
+ /**
59
+ * @return $this
60
+ * @throws Exception
61
+ */
62
+ protected function _prepareColumns()
63
+ {
64
+ $this->addColumn('block_id', array(
65
+ 'header' => Mage::helper('adminhtml')->__('ID'),
66
+ 'width' => 5,
67
+ 'align' => 'right',
68
+ 'sortable' => true,
69
+ 'index' => 'block_id'
70
+ ));
71
+
72
+ $this->addColumn('block_name', array(
73
+ 'header' => Mage::helper('adminhtml')->__('Block Name'),
74
+ 'index' => 'block_name'
75
+ ));
76
+
77
+ $this->addColumn('is_allowed', array(
78
+ 'header' => Mage::helper('adminhtml')->__('Status'),
79
+ 'index' => 'is_allowed',
80
+ 'type' => 'options',
81
+ 'options' => array('1' => Mage::helper('adminhtml')->__('Allowed'), '0' => Mage::helper('adminhtml')->__('Not allowed')),
82
+ ));
83
+
84
+ return parent::_prepareColumns();
85
+ }
86
+
87
+ /**
88
+ * @param $row
89
+ * @return string
90
+ */
91
+ public function getRowUrl($row)
92
+ {
93
+ return $this->getUrl('*/*/edit', array('block_id' => $row->getId()));
94
+ }
95
+
96
+ /**
97
+ * @return string
98
+ */
99
+ public function getGridUrl()
100
+ {
101
+ return $this->getUrl('*/*/blockGrid', array());
102
+ }
103
+ }
app/code/core/Mage/Adminhtml/Block/Permissions/Variable.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Variables block
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Adminhtml_Block_Permissions_Variable extends Mage_Adminhtml_Block_Widget_Grid_Container
35
+ {
36
+ /**
37
+ * Construct
38
+ */
39
+ public function __construct()
40
+ {
41
+ $this->_controller = 'permissions_variable';
42
+ $this->_headerText = Mage::helper('adminhtml')->__('Variables');
43
+ $this->_addButtonLabel = Mage::helper('adminhtml')->__('Add new variable');
44
+ parent::__construct();
45
+ }
46
+
47
+ /**
48
+ * Prepare output HTML
49
+ *
50
+ * @return string
51
+ */
52
+ protected function _toHtml()
53
+ {
54
+ Mage::dispatchEvent('permissions_variable_html_before', array('block' => $this));
55
+ return parent::_toHtml();
56
+ }
57
+ }
app/code/core/Mage/Adminhtml/Block/Permissions/Variable/Edit.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Adminhtml permissions variable edit page
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Adminhtml_Block_Permissions_Variable_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
35
+ {
36
+ /**
37
+ * Construct
38
+ */
39
+ public function __construct()
40
+ {
41
+ $this->_objectId = 'variable_id';
42
+ $this->_controller = 'permissions_variable';
43
+
44
+ parent::__construct();
45
+
46
+ $this->_updateButton('save', 'label', Mage::helper('adminhtml')->__('Save Variable'));
47
+ $this->_updateButton('delete', 'label', Mage::helper('adminhtml')->__('Delete Variable'));
48
+ }
49
+
50
+ /**
51
+ * @return string
52
+ */
53
+ public function getHeaderText()
54
+ {
55
+ if (Mage::registry('permissions_variable')->getId()) {
56
+ return Mage::helper('adminhtml')->__("Edit Variable '%s'", $this->escapeHtml(Mage::registry('permissions_variable')->getVariableName()));
57
+ }
58
+ else {
59
+ return Mage::helper('adminhtml')->__('New Variable');
60
+ }
61
+ }
62
+ }
app/code/core/Mage/Adminhtml/Block/Permissions/Variable/Edit/Form.php ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Adminhtml permissions variable edit form
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Adminhtml_Block_Permissions_Variable_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
35
+ {
36
+ /**
37
+ * @return Mage_Adminhtml_Block_Widget_Form
38
+ * @throws Exception
39
+ */
40
+ protected function _prepareForm()
41
+ {
42
+ $block = Mage::getModel('admin/variable')->load((int) $this->getRequest()->getParam('variable_id'));
43
+
44
+ $form = new Varien_Data_Form(array(
45
+ 'id' => 'edit_form',
46
+ 'action' => $this->getUrl(
47
+ '*/*/save',
48
+ array(
49
+ 'variable_id' => (int) $this->getRequest()->getParam('variable_id')
50
+ )
51
+ ),
52
+ 'method' => 'post'
53
+ ));
54
+ $fieldset = $form->addFieldset(
55
+ 'variable_details', array('legend' => $this->__('Variable Details'))
56
+ );
57
+
58
+ $fieldset->addField('variable_name', 'text', array(
59
+ 'label' => $this->__('Variable Name'),
60
+ 'required' => true,
61
+ 'name' => 'variable_name',
62
+ ));
63
+
64
+
65
+ $yesno = array(
66
+ array(
67
+ 'value' => 0,
68
+ 'label' => $this->__('No')
69
+ ),
70
+ array(
71
+ 'value' => 1,
72
+ 'label' => $this->__('Yes')
73
+ ));
74
+
75
+
76
+ $fieldset->addField('is_allowed', 'select', array(
77
+ 'name' => 'is_allowed',
78
+ 'label' => $this->__('Is Allowed'),
79
+ 'title' => $this->__('Is Allowed'),
80
+ 'values' => $yesno,
81
+ ));
82
+
83
+ $form->setUseContainer(true);
84
+ $form->setValues($block->getData());
85
+ $this->setForm($form);
86
+ return parent::_prepareForm();
87
+ }
88
+ }
app/code/core/Mage/Adminhtml/Block/Permissions/Variable/Grid.php ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Adminhtml permissions variable grid
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Adminhtml_Block_Permissions_Variable_Grid extends Mage_Adminhtml_Block_Widget_Grid
35
+ {
36
+ /**
37
+ * Construct
38
+ */
39
+ public function __construct()
40
+ {
41
+ parent::__construct();
42
+ $this->setId('permissionsVariableGrid');
43
+ $this->setDefaultSort('variable_id');
44
+ $this->setDefaultDir('asc');
45
+ $this->setUseAjax(true);
46
+ }
47
+
48
+ /**
49
+ * @return Mage_Adminhtml_Block_Widget_Grid
50
+ */
51
+ protected function _prepareCollection()
52
+ {
53
+ /** @var Mage_Admin_Model_Resource_Variable_Collection $collection */
54
+ $collection = Mage::getResourceModel('admin/variable_collection');
55
+ $this->setCollection($collection);
56
+ return parent::_prepareCollection();
57
+ }
58
+
59
+ /**
60
+ * @throws Exception
61
+ */
62
+ protected function _prepareColumns()
63
+ {
64
+ $this->addColumn('variable_id', array(
65
+ 'header' => Mage::helper('adminhtml')->__('ID'),
66
+ 'width' => 5,
67
+ 'align' => 'right',
68
+ 'sortable' => true,
69
+ 'index' => 'variable_id'
70
+ ));
71
+ $this->addColumn('variable_name', array(
72
+ 'header' => Mage::helper('adminhtml')->__('Variable'),
73
+ 'index' => 'variable_name'
74
+ ));
75
+ $this->addColumn('is_allowed', array(
76
+ 'header' => Mage::helper('adminhtml')->__('Status'),
77
+ 'index' => 'is_allowed',
78
+ 'type' => 'options',
79
+ 'options' => array(
80
+ '1' => Mage::helper('adminhtml')->__('Allowed'),
81
+ '0' => Mage::helper('adminhtml')->__('Not allowed')),
82
+ )
83
+ );
84
+
85
+ parent::_prepareColumns();
86
+ }
87
+
88
+ /**
89
+ * @param $row
90
+ * @return string
91
+ */
92
+ public function getRowUrl($row)
93
+ {
94
+ return $this->getUrl('*/*/edit', array('variable_id' => $row->getId()));
95
+ }
96
+
97
+ /**
98
+ * @return string
99
+ */
100
+ public function getGridUrl()
101
+ {
102
+ return $this->getUrl('*/*/variableGrid', array());
103
+ }
104
+ }
app/code/core/Mage/Adminhtml/controllers/Permissions/BlockController.php ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Class Mage_Adminhtml_Permissions_BlockController
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Adminhtml_Permissions_BlockController extends Mage_Adminhtml_Controller_Action
35
+ {
36
+ /**
37
+ * @return $this
38
+ */
39
+ protected function _initAction()
40
+ {
41
+ $this->loadLayout()
42
+ ->_setActiveMenu('system/acl')
43
+ ->_addBreadcrumb($this->__('System'), $this->__('System'))
44
+ ->_addBreadcrumb($this->__('Permissions'), $this->__('Permissions'))
45
+ ->_addBreadcrumb($this->__('Blocks'), $this->__('Blocks'));
46
+ return $this;
47
+ }
48
+
49
+ /**
50
+ * Index action
51
+ */
52
+ public function indexAction()
53
+ {
54
+ $this->_title($this->__('System'))
55
+ ->_title($this->__('Permissions'))
56
+ ->_title($this->__('Blocks'));
57
+
58
+ /** @var Mage_Adminhtml_Block_Permissions_Block $block */
59
+ $block = $this->getLayout()->createBlock('adminhtml/permissions_block');
60
+ $this->_initAction()
61
+ ->_addContent($block)
62
+ ->renderLayout();
63
+ }
64
+
65
+ /**
66
+ * New action
67
+ */
68
+ public function newAction()
69
+ {
70
+ $this->_forward('edit');
71
+ }
72
+
73
+ /**
74
+ * Edit action
75
+ */
76
+ public function editAction()
77
+ {
78
+ $this->_title($this->__('System'))
79
+ ->_title($this->__('Permissions'))
80
+ ->_title($this->__('Blocks'));
81
+
82
+ $id = (int) $this->getRequest()->getParam('block_id');
83
+ $model = Mage::getModel('admin/block');
84
+
85
+ if ($id) {
86
+ $model->load($id);
87
+ if (! $model->getId()) {
88
+ Mage::getSingleton('adminhtml/session')->addError($this->__('This block no longer exists.'));
89
+ $this->_redirect('*/*/');
90
+ return;
91
+ }
92
+ }
93
+
94
+ $this->_title($model->getId() ? $model->getBlockName() : $this->__('New Block'));
95
+
96
+ // Restore previously entered form data from session
97
+ $data = Mage::getSingleton('adminhtml/session')->getUserData(true);
98
+ if (!empty($data)) {
99
+ $model->setData($data);
100
+ }
101
+
102
+ Mage::register('permissions_block', $model);
103
+
104
+ if (isset($id)) {
105
+ $breadcrumb = $this->__('Edit Block');
106
+ } else {
107
+ $breadcrumb = $this->__('New Block');
108
+ }
109
+ $this->_initAction()
110
+ ->_addBreadcrumb($breadcrumb, $breadcrumb);
111
+
112
+ $this->getLayout()->getBlock('adminhtml.permissions.block.edit')
113
+ ->setData('action', $this->getUrl('*/permissions_block/save'));
114
+
115
+ $this->renderLayout();
116
+ }
117
+
118
+ /**
119
+ * Save action
120
+ *
121
+ * @return $this|void
122
+ */
123
+ public function saveAction()
124
+ {
125
+ if ($data = $this->getRequest()->getPost()) {
126
+ $id = (int) $this->getRequest()->getParam('block_id');
127
+ $model = Mage::getModel('admin/block')->load($id);
128
+ if (!$model->getId() && $id) {
129
+ Mage::getSingleton('adminhtml/session')->addError($this->__('This block no longer exists.'));
130
+ $this->_redirect('*/*/');
131
+ return;
132
+ }
133
+
134
+ $model->setData($data);
135
+ if ($id) {
136
+ $model->setId($id);
137
+ }
138
+ $result = $model->validate();
139
+
140
+ if (is_array($result)) {
141
+ Mage::getSingleton('adminhtml/session')->setUserData($data);
142
+ foreach ($result as $message) {
143
+ Mage::getSingleton('adminhtml/session')->addError($message);
144
+ }
145
+ $this->_redirect('*/*/edit', array('block_id' => $id));
146
+ return $this;
147
+ }
148
+ try {
149
+ $model->save();
150
+ Mage::getSingleton('adminhtml/session')->addSuccess($this->__('The block has been saved.'));
151
+ // clear previously saved data from session
152
+ Mage::getSingleton('adminhtml/session')->setFormData(false);
153
+
154
+ $this->_redirect('*/*/');
155
+ return;
156
+
157
+ } catch (Exception $e) {
158
+ // display error message
159
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
160
+ // save data in session
161
+ Mage::getSingleton('adminhtml/session')->setFormData($data);
162
+ // redirect to edit form
163
+ $this->_redirect('*/*/edit', array('block_id' => $id));
164
+ return;
165
+ }
166
+ }
167
+ $this->_redirect('*/*/');
168
+ }
169
+
170
+ /**
171
+ * Delete action
172
+ */
173
+ public function deleteAction()
174
+ {
175
+ $id = (int) $this->getRequest()->getParam('block_id');
176
+ if ($id) {
177
+ try {
178
+ $model = Mage::getModel('admin/block');
179
+ $model->setId($id);
180
+ $model->delete();
181
+ Mage::getSingleton('adminhtml/session')->addSuccess($this->__('Block has been deleted.'));
182
+ $this->_redirect('*/*/');
183
+ return;
184
+ }
185
+ catch (Exception $e) {
186
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
187
+ $this->_redirect('*/*/edit', array('block_id' => $id));
188
+ return;
189
+ }
190
+ }
191
+ Mage::getSingleton('adminhtml/session')->addError($this->__('Unable to find a block to delete.'));
192
+ $this->_redirect('*/*/');
193
+ }
194
+
195
+ /**
196
+ * Grid action
197
+ */
198
+ public function blockGridAction()
199
+ {
200
+ $this->getResponse()
201
+ ->setBody($this->getLayout()
202
+ ->createBlock('adminhtml/permissions_block_grid')
203
+ ->toHtml()
204
+ );
205
+ }
206
+
207
+ /**
208
+ * Check permissions before allow edit list of blocks
209
+ *
210
+ * @return bool
211
+ */
212
+ protected function _isAllowed()
213
+ {
214
+ return Mage::getSingleton('admin/session')->isAllowed('system/acl/blocks');
215
+ }
216
+ }
app/code/core/Mage/Adminhtml/controllers/Permissions/VariableController.php ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Class Mage_Adminhtml_Permissions_VariableController
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Adminhtml_Permissions_VariableController extends Mage_Adminhtml_Controller_Action
35
+ {
36
+ /**
37
+ * @return $this
38
+ */
39
+ protected function _initAction()
40
+ {
41
+ $this->loadLayout()
42
+ ->_setActiveMenu('system/acl')
43
+ ->_addBreadcrumb($this->__('System'), $this->__('System'))
44
+ ->_addBreadcrumb($this->__('Permissions'), $this->__('Permissions'))
45
+ ->_addBreadcrumb($this->__('Variables'), $this->__('Variables'));
46
+ return $this;
47
+ }
48
+
49
+ /**
50
+ * Index action
51
+ */
52
+ public function indexAction()
53
+ {
54
+ $this->_title($this->__('System'))
55
+ ->_title($this->__('Permissions'))
56
+ ->_title($this->__('Variables'));
57
+
58
+ /** @var Mage_Adminhtml_Block_Permissions_Variables $block */
59
+ $block = $this->getLayout()->createBlock('adminhtml/permissions_variable');
60
+ $this->_initAction()
61
+ ->_addContent($block)
62
+ ->renderLayout();
63
+ }
64
+
65
+ /**
66
+ * New action
67
+ */
68
+ public function newAction()
69
+ {
70
+ $this->_forward('edit');
71
+ }
72
+
73
+ /**
74
+ * Edit action
75
+ */
76
+ public function editAction()
77
+ {
78
+ $this->_title($this->__('System'))
79
+ ->_title($this->__('Permissions'))
80
+ ->_title($this->__('Variables'));
81
+
82
+ $id = (int) $this->getRequest()->getParam('variable_id');
83
+ $model = Mage::getModel('admin/variable');
84
+
85
+ if ($id) {
86
+ $model->load($id);
87
+ if (!$model->getId()) {
88
+ Mage::getSingleton('adminhtml/session')->addError($this->__('This variable no longer exists.'));
89
+ $this->_redirect('*/*/');
90
+ return;
91
+ }
92
+ }
93
+
94
+ $this->_title($model->getId() ? $model->getVariableName() : $this->__('New Variable'));
95
+
96
+ // Restore previously entered form data from session
97
+ $data = Mage::getSingleton('adminhtml/session')->getUserData(true);
98
+ if (!empty($data)) {
99
+ $model->setData($data);
100
+ }
101
+
102
+ Mage::register('permissions_variable', $model);
103
+
104
+ if (isset($id)) {
105
+ $breadcrumb = $this->__('Edit Variable');
106
+ } else {
107
+ $breadcrumb = $this->__('New Variable');
108
+ }
109
+ $this->_initAction()
110
+ ->_addBreadcrumb($breadcrumb, $breadcrumb);
111
+
112
+ $this->getLayout()->getBlock('adminhtml.permissions.variable.edit')
113
+ ->setData('action', $this->getUrl('*/permissions_variable/save'));
114
+
115
+ $this->renderLayout();
116
+ }
117
+
118
+ /**
119
+ * Save action
120
+ *
121
+ * @return $this|void
122
+ */
123
+ public function saveAction()
124
+ {
125
+ if ($data = $this->getRequest()->getPost()) {
126
+ $id = (int) $this->getRequest()->getParam('variable_id');
127
+ $model = Mage::getModel('admin/variable')->load($id);
128
+ if (!$model->getId() && $id) {
129
+ Mage::getSingleton('adminhtml/session')->addError($this->__('This variable no longer exists.'));
130
+ $this->_redirect('*/*/');
131
+ return;
132
+ }
133
+
134
+ $model->setData($data);
135
+ if ($id) {
136
+ $model->setId($id);
137
+ }
138
+ $result = $model->validate();
139
+
140
+ if (is_array($result)) {
141
+ Mage::getSingleton('adminhtml/session')->setUserData($data);
142
+ foreach ($result as $message) {
143
+ Mage::getSingleton('adminhtml/session')->addError($message);
144
+ }
145
+ $this->_redirect('*/*/edit', array('variable_id' => $id));
146
+ return $this;
147
+ }
148
+ try {
149
+ $model->save();
150
+ Mage::getSingleton('adminhtml/session')->addSuccess($this->__('The variable has been saved.'));
151
+ // clear previously saved data from session
152
+ Mage::getSingleton('adminhtml/session')->setFormData(false);
153
+
154
+ $this->_redirect('*/*/');
155
+ return;
156
+
157
+ } catch (Exception $e) {
158
+ // display error message
159
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
160
+ // save data in session
161
+ Mage::getSingleton('adminhtml/session')->setFormData($data);
162
+ // redirect to edit form
163
+ $this->_redirect('*/*/edit', array('variable_id' => $id));
164
+ return;
165
+ }
166
+ }
167
+ $this->_redirect('*/*/');
168
+ }
169
+
170
+ /**
171
+ * Delete action
172
+ */
173
+ public function deleteAction()
174
+ {
175
+ $id = (int) $this->getRequest()->getParam('variable_id');
176
+ if ($id) {
177
+ try {
178
+ $model = Mage::getModel('admin/variable');
179
+ $model->setId($id);
180
+ $model->delete();
181
+ Mage::getSingleton('adminhtml/session')->addSuccess($this->__('Variable has been deleted.'));
182
+ $this->_redirect('*/*/');
183
+ return;
184
+ } catch (Exception $e) {
185
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
186
+ $this->_redirect('*/*/edit', array('variable_id' => $id));
187
+ return;
188
+ }
189
+ }
190
+ Mage::getSingleton('adminhtml/session')->addError($this->__('Unable to find a variable to delete.'));
191
+ $this->_redirect('*/*/');
192
+ }
193
+
194
+ /**
195
+ * Grid action
196
+ */
197
+ public function variableGridAction()
198
+ {
199
+ $this->getResponse()
200
+ ->setBody($this->getLayout()
201
+ ->createBlock('adminhtml/permissions_variable_grid')
202
+ ->toHtml()
203
+ );
204
+ }
205
+
206
+ /**
207
+ * Check permissions before allow edit list of config variables
208
+ *
209
+ * @return bool
210
+ */
211
+ protected function _isAllowed()
212
+ {
213
+ return Mage::getSingleton('admin/session')->isAllowed('system/acl/variables');
214
+ }
215
+ }
app/code/core/Mage/Adminhtml/etc/adminhtml.xml CHANGED
@@ -94,6 +94,14 @@
94
  <title>Roles</title>
95
  <action>adminhtml/permissions_role</action>
96
  </roles>
 
 
 
 
 
 
 
 
97
  </children>
98
  </acl>
99
  <cache translate="title">
@@ -142,6 +150,12 @@
142
  <title>Users</title>
143
  <sort_order>20</sort_order>
144
  </users>
 
 
 
 
 
 
145
  </children>
146
  </acl>
147
  <store translate="title">
94
  <title>Roles</title>
95
  <action>adminhtml/permissions_role</action>
96
  </roles>
97
+ <variables translate="title">
98
+ <title>Variables</title>
99
+ <action>adminhtml/permissions_variable</action>
100
+ </variables>
101
+ <blocks translate="title">
102
+ <title>Blocks</title>
103
+ <action>adminhtml/permissions_block</action>
104
+ </blocks>
105
  </children>
106
  </acl>
107
  <cache translate="title">
150
  <title>Users</title>
151
  <sort_order>20</sort_order>
152
  </users>
153
+ <variables translate="title">
154
+ <title>Variables</title>
155
+ </variables>
156
+ <blocks translate="title">
157
+ <title>Blocks</title>
158
+ </blocks>
159
  </children>
160
  </acl>
161
  <store translate="title">
app/locale/en_US/Mage_Adminhtml.csv CHANGED
@@ -65,6 +65,7 @@
65
  "Add Field Mapping","Add Field Mapping"
66
  "Add Field with URL:","Add Field with URL:"
67
  "Add New","Add New"
 
68
  "Add New Image","Add New Image"
69
  "Add New Profile","Add New Profile"
70
  "Add New Role","Add New Role"
@@ -77,6 +78,7 @@
77
  "Add URL Rewrite for a Category","Add URL Rewrite for a Category"
78
  "Add URL Rewrite for a Product","Add URL Rewrite for a Product"
79
  "Add after","Add after"
 
80
  "Add to category","Add to category"
81
  "Additional Cache Management","Additional Cache Management"
82
  "Address Type:","Address Type:"
@@ -99,6 +101,7 @@
99
  "All possible rates were fetched, please click on ""Save"" to apply","All possible rates were fetched, please click on ""Save"" to apply"
100
  "All rates were fetched, please click on ""Save"" to apply","All rates were fetched, please click on ""Save"" to apply"
101
  "All valid rates have been saved.","All valid rates have been saved."
 
102
  "Already in category","Already in category"
103
  "Always (during development)","Always (during development)"
104
  "Amounts","Amounts"
@@ -172,7 +175,13 @@
172
  "Billing Address: ","Billing Address: "
173
  "Billing Agreement","Billing Agreement"
174
  "Billing Agreements","Billing Agreements"
 
175
  "Block Information","Block Information"
 
 
 
 
 
176
  "Both (without and with tax)","Both (without and with tax)"
177
  "Both IPN and PDT","Both IPN and PDT"
178
  "Browse Files...","Browse Files..."
@@ -301,6 +310,7 @@
301
  "Delete","Delete"
302
  "Delete %s","Delete %s"
303
  "Delete %s '%s'","Delete %s '%s'"
 
304
  "Delete File","Delete File"
305
  "Delete Image","Delete Image"
306
  "Delete Profile","Delete Profile"
@@ -309,6 +319,7 @@
309
  "Delete Store View","Delete Store View"
310
  "Delete Template","Delete Template"
311
  "Delete User","Delete User"
 
312
  "Delete Website","Delete Website"
313
  "Description","Description"
314
  "Design","Design"
@@ -330,6 +341,8 @@
330
  "Drag to move","Drag to move"
331
  "Drop-down","Drop-down"
332
  "Edit","Edit"
 
 
333
  "Edit Design Change","Edit Design Change"
334
  "Edit Email Template","Edit Email Template"
335
  "Edit Order","Edit Order"
@@ -343,6 +356,8 @@
343
  "Edit URL Rewrite","Edit URL Rewrite"
344
  "Edit User","Edit User"
345
  "Edit User '%s'","Edit User '%s'"
 
 
346
  "Edit Website","Edit Website"
347
  "Email","Email"
348
  "Email Address:","Email Address:"
@@ -487,6 +502,8 @@
487
  "Invoice capturing error.","Invoice capturing error."
488
  "Invoice voiding error.","Invoice voiding error."
489
  "Invoices","Invoices"
 
 
490
  "Is Closed","Is Closed"
491
  "Is Default","Is Default"
492
  "Issue Number","Issue Number"
@@ -618,6 +635,7 @@
618
  "New Variable","New Variable"
619
  "New Website","New Website"
620
  "New attribute set mapping","New attribute set mapping"
 
621
  "New password field cannot be empty.","New password field cannot be empty."
622
  "Newsletter","Newsletter"
623
  "Newsletter Problems","Newsletter Problems"
@@ -643,6 +661,7 @@
643
  "No search modules were registered","No search modules were registered"
644
  "No wishlist item id defined.","No wishlist item id defined."
645
  "None","None"
 
646
  "Note:","Note:"
647
  "Notes","Notes"
648
  "Notifications","Notifications"
@@ -879,6 +898,7 @@
879
  "Save","Save"
880
  "Save & Generate","Save & Generate"
881
  "Save Account","Save Account"
 
882
  "Save Cache Settings","Save Cache Settings"
883
  "Save Config","Save Config"
884
  "Save Currency Rates","Save Currency Rates"
@@ -886,6 +906,7 @@
886
  "Save Role","Save Role"
887
  "Save Template","Save Template"
888
  "Save User","Save User"
 
889
  "Save and Continue Edit","Save and Continue Edit"
890
  "Search","Search"
891
  "Search Index","Search Index"
@@ -1004,6 +1025,7 @@
1004
  "The backup's creation process will take time.","The backup's creation process will take time."
1005
  "The billing agreement has been canceled.","The billing agreement has been canceled."
1006
  "The billing agreement has been deleted.","The billing agreement has been deleted."
 
1007
  "The cache storage has been flushed.","The cache storage has been flushed."
1008
  "The carrier needs to be specified.","The carrier needs to be specified."
1009
  "The catalog index has been rebuilt.","The catalog index has been rebuilt."
@@ -1058,6 +1080,7 @@
1058
  "The transaction details have been updated.","The transaction details have been updated."
1059
  "The user has been deleted.","The user has been deleted."
1060
  "The user has been saved.","The user has been saved."
 
1061
  "Themes JavaScript and CSS files combined to one file.","Themes JavaScript and CSS files combined to one file."
1062
  "There is an error in one of the option rows.","There is an error in one of the option rows."
1063
  "This Account is","This Account is"
@@ -1069,6 +1092,7 @@
1069
  "This action cannot be undone.","This action cannot be undone."
1070
  "This attribute set does not have attributes which we can use for configurable product","This attribute set does not have attributes which we can use for configurable product"
1071
  "This attribute shares the same value in all the stores","This attribute shares the same value in all the stores"
 
1072
  "This category is set to only include products matched by rules","This category is set to only include products matched by rules"
1073
  "This is a demo store. Any orders placed through this store will not be honored or fulfilled.","This is a demo store. Any orders placed through this store will not be honored or fulfilled."
1074
  "This is a required field.","This is a required field."
@@ -1076,6 +1100,7 @@
1076
  "This report depends on timezone configuration. Once timezone is changed, the lifetime statistics need to be refreshed.","This report depends on timezone configuration. Once timezone is changed, the lifetime statistics need to be refreshed."
1077
  "This section is not allowed.","This section is not allowed."
1078
  "This user no longer exists.","This user no longer exists."
 
1079
  "Time","Time"
1080
  "Time selection:","Time selection:"
1081
  "Time:","Time:"
@@ -1115,9 +1140,11 @@
1115
  "URL Rewrite Management","URL Rewrite Management"
1116
  "Unable to cancel the credit memo.","Unable to cancel the credit memo."
1117
  "Unable to find a Email Template to delete.","Unable to find a Email Template to delete."
 
1118
  "Unable to find a poll to delete.","Unable to find a poll to delete."
1119
  "Unable to find a tag to delete.","Unable to find a tag to delete."
1120
  "Unable to find a user to delete.","Unable to find a user to delete."
 
1121
  "Unable to initialize import model","Unable to initialize import model"
1122
  "Unable to refresh lifetime statistics.","Unable to refresh lifetime statistics."
1123
  "Unable to refresh recent statistics.","Unable to refresh recent statistics."
@@ -1170,10 +1197,15 @@
1170
  "Value Delimiter:","Value Delimiter:"
1171
  "Variable","Variable"
1172
  "Variable Code","Variable Code"
 
1173
  "Variable HTML Value","Variable HTML Value"
1174
  "Variable ID","Variable ID"
1175
  "Variable Name","Variable Name"
 
 
1176
  "Variable Plain Value","Variable Plain Value"
 
 
1177
  "Verifier code: %s","Verifier code: %s"
1178
  "View Actions XML","View Actions XML"
1179
  "View Full Size","View Full Size"
65
  "Add Field Mapping","Add Field Mapping"
66
  "Add Field with URL:","Add Field with URL:"
67
  "Add New","Add New"
68
+ "Add New Block","Add New Block"
69
  "Add New Image","Add New Image"
70
  "Add New Profile","Add New Profile"
71
  "Add New Role","Add New Role"
78
  "Add URL Rewrite for a Category","Add URL Rewrite for a Category"
79
  "Add URL Rewrite for a Product","Add URL Rewrite for a Product"
80
  "Add after","Add after"
81
+ "Add new variable","Add new variable"
82
  "Add to category","Add to category"
83
  "Additional Cache Management","Additional Cache Management"
84
  "Address Type:","Address Type:"
101
  "All possible rates were fetched, please click on ""Save"" to apply","All possible rates were fetched, please click on ""Save"" to apply"
102
  "All rates were fetched, please click on ""Save"" to apply","All rates were fetched, please click on ""Save"" to apply"
103
  "All valid rates have been saved.","All valid rates have been saved."
104
+ "Allowed","Allowed"
105
  "Already in category","Already in category"
106
  "Always (during development)","Always (during development)"
107
  "Amounts","Amounts"
175
  "Billing Address: ","Billing Address: "
176
  "Billing Agreement","Billing Agreement"
177
  "Billing Agreements","Billing Agreements"
178
+ "Block Details","Block Details"
179
  "Block Information","Block Information"
180
+ "Block Name","Block Name"
181
+ "Block Name is incorrect.","Block Name is incorrect."
182
+ "Block Name is required field.","Block Name is required field."
183
+ "Block has been deleted.","Block has been deleted."
184
+ "Blocks","Blocks"
185
  "Both (without and with tax)","Both (without and with tax)"
186
  "Both IPN and PDT","Both IPN and PDT"
187
  "Browse Files...","Browse Files..."
310
  "Delete","Delete"
311
  "Delete %s","Delete %s"
312
  "Delete %s '%s'","Delete %s '%s'"
313
+ "Delete Block","Delete Block"
314
  "Delete File","Delete File"
315
  "Delete Image","Delete Image"
316
  "Delete Profile","Delete Profile"
319
  "Delete Store View","Delete Store View"
320
  "Delete Template","Delete Template"
321
  "Delete User","Delete User"
322
+ "Delete Variable","Delete Variable"
323
  "Delete Website","Delete Website"
324
  "Description","Description"
325
  "Design","Design"
341
  "Drag to move","Drag to move"
342
  "Drop-down","Drop-down"
343
  "Edit","Edit"
344
+ "Edit Block","Edit Block"
345
+ "Edit Block '%s'","Edit Block '%s'"
346
  "Edit Design Change","Edit Design Change"
347
  "Edit Email Template","Edit Email Template"
348
  "Edit Order","Edit Order"
356
  "Edit URL Rewrite","Edit URL Rewrite"
357
  "Edit User","Edit User"
358
  "Edit User '%s'","Edit User '%s'"
359
+ "Edit Variable","Edit Variable"
360
+ "Edit Variable '%s'","Edit Variable '%s'"
361
  "Edit Website","Edit Website"
362
  "Email","Email"
363
  "Email Address:","Email Address:"
502
  "Invoice capturing error.","Invoice capturing error."
503
  "Invoice voiding error.","Invoice voiding error."
504
  "Invoices","Invoices"
505
+ "Is Allowed","Is Allowed"
506
+ "Is Allowed is required field.","Is Allowed is required field."
507
  "Is Closed","Is Closed"
508
  "Is Default","Is Default"
509
  "Issue Number","Issue Number"
635
  "New Variable","New Variable"
636
  "New Website","New Website"
637
  "New attribute set mapping","New attribute set mapping"
638
+ "New block","New block"
639
  "New password field cannot be empty.","New password field cannot be empty."
640
  "Newsletter","Newsletter"
641
  "Newsletter Problems","Newsletter Problems"
661
  "No search modules were registered","No search modules were registered"
662
  "No wishlist item id defined.","No wishlist item id defined."
663
  "None","None"
664
+ "Not allowed","Not allowed"
665
  "Note:","Note:"
666
  "Notes","Notes"
667
  "Notifications","Notifications"
898
  "Save","Save"
899
  "Save & Generate","Save & Generate"
900
  "Save Account","Save Account"
901
+ "Save Block","Save Block"
902
  "Save Cache Settings","Save Cache Settings"
903
  "Save Config","Save Config"
904
  "Save Currency Rates","Save Currency Rates"
906
  "Save Role","Save Role"
907
  "Save Template","Save Template"
908
  "Save User","Save User"
909
+ "Save Variable","Save Variable"
910
  "Save and Continue Edit","Save and Continue Edit"
911
  "Search","Search"
912
  "Search Index","Search Index"
1025
  "The backup's creation process will take time.","The backup's creation process will take time."
1026
  "The billing agreement has been canceled.","The billing agreement has been canceled."
1027
  "The billing agreement has been deleted.","The billing agreement has been deleted."
1028
+ "The block has been saved.","The block has been saved."
1029
  "The cache storage has been flushed.","The cache storage has been flushed."
1030
  "The carrier needs to be specified.","The carrier needs to be specified."
1031
  "The catalog index has been rebuilt.","The catalog index has been rebuilt."
1080
  "The transaction details have been updated.","The transaction details have been updated."
1081
  "The user has been deleted.","The user has been deleted."
1082
  "The user has been saved.","The user has been saved."
1083
+ "The variable has been saved.","The variable has been saved."
1084
  "Themes JavaScript and CSS files combined to one file.","Themes JavaScript and CSS files combined to one file."
1085
  "There is an error in one of the option rows.","There is an error in one of the option rows."
1086
  "This Account is","This Account is"
1092
  "This action cannot be undone.","This action cannot be undone."
1093
  "This attribute set does not have attributes which we can use for configurable product","This attribute set does not have attributes which we can use for configurable product"
1094
  "This attribute shares the same value in all the stores","This attribute shares the same value in all the stores"
1095
+ "This block no longer exists.","This block no longer exists."
1096
  "This category is set to only include products matched by rules","This category is set to only include products matched by rules"
1097
  "This is a demo store. Any orders placed through this store will not be honored or fulfilled.","This is a demo store. Any orders placed through this store will not be honored or fulfilled."
1098
  "This is a required field.","This is a required field."
1100
  "This report depends on timezone configuration. Once timezone is changed, the lifetime statistics need to be refreshed.","This report depends on timezone configuration. Once timezone is changed, the lifetime statistics need to be refreshed."
1101
  "This section is not allowed.","This section is not allowed."
1102
  "This user no longer exists.","This user no longer exists."
1103
+ "This variable no longer exists.","This variable no longer exists."
1104
  "Time","Time"
1105
  "Time selection:","Time selection:"
1106
  "Time:","Time:"
1140
  "URL Rewrite Management","URL Rewrite Management"
1141
  "Unable to cancel the credit memo.","Unable to cancel the credit memo."
1142
  "Unable to find a Email Template to delete.","Unable to find a Email Template to delete."
1143
+ "Unable to find a block to delete.","Unable to find a block to delete."
1144
  "Unable to find a poll to delete.","Unable to find a poll to delete."
1145
  "Unable to find a tag to delete.","Unable to find a tag to delete."
1146
  "Unable to find a user to delete.","Unable to find a user to delete."
1147
+ "Unable to find a variable to delete.","Unable to find a variable to delete."
1148
  "Unable to initialize import model","Unable to initialize import model"
1149
  "Unable to refresh lifetime statistics.","Unable to refresh lifetime statistics."
1150
  "Unable to refresh recent statistics.","Unable to refresh recent statistics."
1197
  "Value Delimiter:","Value Delimiter:"
1198
  "Variable","Variable"
1199
  "Variable Code","Variable Code"
1200
+ "Variable Details","Variable Details"
1201
  "Variable HTML Value","Variable HTML Value"
1202
  "Variable ID","Variable ID"
1203
  "Variable Name","Variable Name"
1204
+ "Variable Name is incorrect.","Variable Name is incorrect."
1205
+ "Variable Name is required field.","Variable Name is required field."
1206
  "Variable Plain Value","Variable Plain Value"
1207
+ "Variable has been deleted.","Variable has been deleted."
1208
+ "Variables","Variables"
1209
  "Verifier code: %s","Verifier code: %s"
1210
  "View Actions XML","View Actions XML"
1211
  "View Full Size","View Full Size"
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Adminhtml</name>
4
- <version>1.9.2.1</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.2.1</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2015-07-29</date>
14
- <time>12:36:25</time>
15
- <contents><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><file name="Abstract.php" hash="db8a6d87e8d6195dfbd6ccd49a7c9fde"/><dir name="Api"><file name="Buttons.php" hash="7f48f3875926448eb77c0c76fb54de9e"/><file name="Editroles.php" hash="da1e3da8fbe5e215ae2df6004181e75c"/><file name="Edituser.php" hash="c838ec2061a19dccb7acd686062c4a27"/><dir name="Grid"><file name="Role.php" hash="ac56711153ea6741de27b87e4310bfd8"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="04ae6260bf538170817f10b761ddfbd3"/></dir></dir><file name="Role.php" hash="cabc160cb511b01e220c099eac635eda"/><file name="Roles.php" hash="b8f3afd227e6b1fef852c7c4c1b23b3d"/><dir name="Tab"><file name="Roleinfo.php" hash="e7e6980795750bf64db92768817d5248"/><file name="Rolesedit.php" hash="24efaf59baa229aec86f8a2ffa5ea3a3"/><file name="Rolesusers.php" hash="209f9b14ad7f5dee3cde549b2d894fb2"/><file name="Userroles.php" hash="0b180ac545ab8b35e797f8a27b5239cd"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="96de8fa689018da3ee7d3b59bd2e0209"/><dir name="Tab"><file name="Main.php" hash="0db4e785f20a25e3a45f8263a3dfb693"/><file name="Roles.php" hash="d92b85bfbe888d7c3f4f4d38bee56259"/></dir><file name="Tabs.php" hash="d6324d4b86b542c123842f5ca5ad6813"/></dir><file name="Edit.php" hash="32f177865dea2fdf22639dd50f2b78e4"/><file name="Grid.php" hash="8a535fdb35ee0020af1060fbe6ef193c"/></dir><file name="User.php" hash="0b7d6e24402a27e30fd78f4ad2be92bf"/><file name="Users.php" hash="8ecdfaf04af54aaa33852054b4e25d0e"/></dir><dir name="Backup"><file name="Dialogs.php" hash="5be3fe030982f3e46e31ea409193be26"/><file name="Grid.php" hash="0529c7ec86da80237381b33490648c7e"/></dir><file name="Backup.php" hash="72a8e07fa25684c8166bb22e47c085ea"/><dir name="Cache"><file name="Additional.php" hash="e8dd51b51d17b65cf72c367d7ac042d7"/><file name="Grid.php" hash="3ab87151ed29fea4184c82210d0c0ebc"/><file name="Notifications.php" hash="44925767b9deda7e6629f32b8caefa82"/></dir><file name="Cache.php" hash="5fd37f4231169464bbd0b847fab6a125"/><dir name="Catalog"><dir name="Category"><file name="Abstract.php" hash="d61f4055d2bc549040b156bd21d02498"/><dir name="Checkboxes"><file name="Tree.php" hash="df657dfe2293de289de261cfb1295f2c"/></dir><dir name="Edit"><file name="Form.php" hash="f86c8932ebf4971384047e027e9030a9"/></dir><file name="Edit.php" hash="d5b9f93582ca93a3098ab95fb0f41099"/><dir name="Helper"><file name="Image.php" hash="ca377d175f1d88a7fda4a6c50c37604d"/><file name="Pricestep.php" hash="0f9f3289bb54ebce198563d9c406fb1c"/><dir name="Sortby"><file name="Available.php" hash="61bb9552c6ce97658eb9aaa420b5f019"/><file name="Default.php" hash="8c941da9ffc4505633b2ad0f6847e5ef"/></dir></dir><dir name="Tab"><file name="Attributes.php" hash="14fd18b3c46b8769c640621cb53dbc8e"/><file name="Design.php" hash="d998df9996bdc14580576f38c0a443f8"/><file name="General.php" hash="7a58936080a9072ffa973d1cc8a999e9"/><file name="Product.php" hash="c210e69c1a9df9537fea568c0b155c2e"/></dir><file name="Tabs.php" hash="df64111032c5c690539a6214325007d4"/><file name="Tree.php" hash="f22394b09e11ed35ad8b4f87d5dbf693"/><dir name="Widget"><file name="Chooser.php" hash="b075edcc53cc83eaf9265aa605ef9923"/></dir></dir><dir name="Form"><dir name="Renderer"><dir name="Attribute"><file name="Urlkey.php" hash="f312b0caeea88baa8c3bc3dd39e8ed38"/></dir><dir name="Config"><file name="DateFieldsOrder.php" hash="d9e65ec2b3cd04d6dac5a331132f3768"/><file name="YearRange.php" hash="e294e9eef313502492db96c5a850fe8e"/></dir><dir name="Fieldset"><file name="Element.php" hash="116b13cf6bf490fdd6e81af04459bfea"/></dir></dir></dir><file name="Form.php" hash="6420e5be5771f080669f7e958a7ad528"/><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="6c6d5327a50a8c9514da1fb6a55d45d2"/></dir><file name="Wysiwyg.php" hash="1c2b6f045719139c3c505eac8c6280b4"/></dir></dir><dir name="Product"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="4a166ed0414db01979a6fc7c92286fec"/><dir name="Tab"><file name="Front.php" hash="b89db9d50c635e237ecdeff5e1b91da2"/><file name="Main.php" hash="87568faa95baab7f2499517771eaa50b"/><file name="Options.php" hash="86c361f2f3bb94e19103c75be958414f"/><file name="System.php" hash="57664184dbc901f5293b0b6a275e5f4e"/></dir><file name="Tabs.php" hash="d06505ae484318612fe138fecde32f88"/></dir><file name="Edit.php" hash="b5470afa6ad93e4ce5ed237e5b3d9629"/><file name="Grid.php" hash="d18446b00f746e1acb8905a918ff05cb"/><dir name="New"><dir name="Product"><file name="Attributes.php" hash="ac0671421d2e5241772b8a7be6e945aa"/><file name="Created.php" hash="6f88440198c1b0570ae5a0c27c5b006b"/></dir></dir><dir name="Set"><file name="Grid.php" hash="3c73a5cceaf0bf32924295f55608f20c"/><dir name="Main"><file name="Formattribute.php" hash="edb6f73553490c1dd7dbb80e770191de"/><file name="Formgroup.php" hash="a9fc12faece9cbab96fb5d7cf17ceaa2"/><file name="Formset.php" hash="5a681d7df45787a0225059a5dae2f367"/><dir name="Tree"><file name="Attribute.php" hash="3284b0584455c6a86c84ee4fb538b2a1"/><file name="Group.php" hash="a2dea3100eb457b932592f8b76701f05"/></dir></dir><file name="Main.php" hash="3f25a2e514e230547a16ec564d086ed8"/><dir name="Toolbar"><file name="Add.php" hash="0e597054b696bf7191a2504271adb7fe"/><dir name="Main"><file name="Filter.php" hash="fd809aae3a8cb9266b9e807752e6a08d"/></dir><file name="Main.php" hash="d7b35a8a52a823c147a460310c4e2604"/></dir></dir></dir><file name="Attribute.php" hash="20e325d050d4874bb2824b816b2c9503"/><dir name="Composite"><file name="Configure.php" hash="fa23a712ab6357b1c61baebd98a257cb"/><file name="Error.php" hash="e3f15ba4871c6d66b460b99ebc08209b"/><dir name="Fieldset"><file name="Configurable.php" hash="8acf26fd12862a5fe70d2b1d6e3ee148"/><file name="Grouped.php" hash="c142e11927ac3503ac91a09a797158a7"/><file name="Options.php" hash="16a52270f97f8252efe3fe91d091ecd7"/><file name="Qty.php" hash="1a16b296f9943efb1917c3519fd97008"/></dir><file name="Fieldset.php" hash="378f0abb5753c20ea1a47f48b0baa09d"/><dir name="Update"><file name="Result.php" hash="8ab6d2db1b33953de620aa7c2acff798"/></dir></dir><file name="Created.php" hash="99807e306c2685872b8ccebb58b11403"/><dir name="Edit"><dir name="Action"><dir name="Attribute"><dir name="Tab"><file name="Attributes.php" hash="11ef1746f03b542e1ccb0fd7c0ddd817"/><file name="Inventory.php" hash="b5232d3ce334748df4f79c883477ca27"/><file name="Websites.php" hash="99640b8e0dda755dd169c15146d3e265"/></dir><file name="Tabs.php" hash="d8f753204428cb346bed729af7bc6089"/></dir><file name="Attribute.php" hash="de7b21f4e10374241f1e7e687eaa0329"/></dir><file name="Js.php" hash="0c4404a35b8d85d9e05a5e91d70fbe85"/><dir name="Tab"><dir name="Ajax"><file name="Serializer.php" hash="953e5164a8a4244ac98c81683ba72a42"/></dir><dir name="Alerts"><file name="Price.php" hash="6f638a0bcd4b6c541fbd719d63161138"/><file name="Stock.php" hash="d615ea9610241b62e19a757159d3fe3f"/></dir><file name="Alerts.php" hash="b29c655153f20121d64850d2d4702913"/><dir name="Attributes"><file name="Create.php" hash="3c72a1255876f101f2b0be27066dff0f"/></dir><file name="Attributes.php" hash="7759d911880455d578a3409f9b2398d1"/><file name="Categories.php" hash="c1127b74a381bcf57bd9a7257b4a3e9f"/><file name="Crosssell.php" hash="8a9933070db7f30daa632c4cbc0c06ee"/><file name="Inventory.php" hash="b4b07c43d245901f200f935e3e40843b"/><dir name="Options"><file name="Option.php" hash="95d23969b5de3937d8d86149cb670bac"/><dir name="Type"><file name="Abstract.php" hash="06f25476736c11c783ae92c2ccd934a3"/><file name="Date.php" hash="07212ba5433d2f855d4f3cc498d97db4"/><file name="File.php" hash="eb2b43ad195d1282c9e226e805bc5fb4"/><file name="Select.php" hash="d45c5b3f4df62604b615f663941c3eb1"/><file name="Text.php" hash="65e9f3fd83580906cc3c458311ba2c1f"/></dir></dir><file name="Options.php" hash="7920b68c4aa32f0542f5890ef5bd87d9"/><dir name="Price"><dir name="Group"><file name="Abstract.php" hash="36c96810ba8b01ab8bdc3291a6c84fd9"/></dir><file name="Group.php" hash="d66f772c8a870328f7d7b2cb393a626c"/><file name="Recurring.php" hash="fd4a54a5a7e3355eb64a70f3857174de"/><file name="Tier.php" hash="5bf23811bc6bb2354af3353464e23d23"/></dir><file name="Price.php" hash="528e785442d4a3a11ef8e3093f416e6c"/><file name="Related.php" hash="c28cabbade92184b5fb44496925fb25f"/><file name="Reviews.php" hash="b337ea393c537c30baed61fd1d7a0c35"/><file name="Settings.php" hash="b34b153636952172b8ece172689db4c3"/><dir name="Super"><dir name="Config"><dir name="Grid"><dir name="Filter"><file name="Inventory.php" hash="5e44686b538005b5cc446a89c1af44a9"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="60b0ec1e8503a4e9a263771f318a9da2"/><file name="Inventory.php" hash="0292a2c9586775723286663bc2bcd63f"/></dir></dir><file name="Grid.php" hash="ac0d33818ff7f994b882ac0c32eff9e9"/><file name="Simple.php" hash="8dad4e2bd0a5d06c12d1080487994c56"/></dir><file name="Config.php" hash="e27114e600464ab1bab08328b518f3b9"/><file name="Group.php" hash="f701658d6191eb94e24c5c5ab664a0aa"/><file name="Settings.php" hash="2c7198e22fa4b82e7811f9051ad7fba1"/></dir><dir name="Tag"><file name="Customer.php" hash="a46ae7e8358425efcd4972e92f0ee703"/></dir><file name="Tag.php" hash="50f3a84957517031ff6534171457450a"/><file name="Upsell.php" hash="c764efaee95ae84267e60f63b61737eb"/><file name="Websites.php" hash="662c1b0a5f996b90dd65c423ef764c6d"/></dir><dir name="Tabs"><file name="Configurable.php" hash="a1b9a912a5162229930e5c1a8b571199"/><file name="Grouped.php" hash="9d1c98d9488d1fb6065f084bc2e3bd41"/></dir><file name="Tabs.php" hash="eeaa9abeb69c9c7da71bfb61a66062bd"/></dir><file name="Edit.php" hash="95488baf642eb127acb4750a06a44c79"/><dir name="Frontend"><dir name="Product"><file name="Watermark.php" hash="f860ca4fce75c7f2e04828adb36ecf09"/></dir></dir><file name="Grid.php" hash="035f30966024149a9cd96dcaffc75c97"/><dir name="Helper"><dir name="Form"><file name="Apply.php" hash="19ab67161d7b2bdeb89716539800cb16"/><file name="Boolean.php" hash="2455bb6bcec8633db4dcddb03a92cbf2"/><file name="Config.php" hash="344b6f931aaab29816c5e0953a8859f3"/><dir name="Gallery"><file name="Content.php" hash="b05c65206543b96dda4afbc9f42d1992"/></dir><file name="Gallery.php" hash="45f73967a6f745edbdf68812409515d5"/><file name="Image.php" hash="d156482e33a48fcb26669a4075bf0ce8"/><dir name="Msrp"><file name="Enabled.php" hash="c971c214d244bc4a5da241c4f27f29fd"/><file name="Price.php" hash="2b1c575a9f1fdd3e9fda4a16f13b3df5"/></dir><file name="Price.php" hash="4ff6e8ae8f8c3aae26ddc36f27535a0a"/><file name="Weight.php" hash="4df0f08991a275b153b5e19927b97bf8"/></dir></dir><file name="Price.php" hash="467eddecf6bf70bf44d3ff745eae67a1"/><dir name="Widget"><dir name="Chooser"><file name="Container.php" hash="66f03c215bc0dd5b9d6a6eb96ac0bb0f"/></dir><file name="Chooser.php" hash="5d889f510fb3a8ac4069ae6c8d9109e2"/></dir></dir><file name="Product.php" hash="1545f7ae76bba62865d038035b56144d"/><dir name="Search"><dir name="Edit"><file name="Form.php" hash="02680118dda245440b7c27ec73bcc8db"/></dir><file name="Edit.php" hash="1a87ea10b890f11b78fc090d545eac7c"/><file name="Grid.php" hash="a19726fd46f910a32e50ec0d7a97602f"/></dir><file name="Search.php" hash="dac14c665dff744f1d46dbd7b09da0c6"/></dir><file name="Catalog.php" hash="01969e01f50378390309f8e47e0139f5"/><dir name="Checkout"><dir name="Agreement"><dir name="Edit"><file name="Form.php" hash="f0fb7abcbf7b5274fcd119290c12a52c"/></dir><file name="Edit.php" hash="7680f3329cc4932fa8224a118369af7f"/><file name="Grid.php" hash="df1cdd15be68b6b54a87e92824b9adf3"/></dir><file name="Agreement.php" hash="a4a2923edb19ac2cf8dff1ab62cb3aa4"/></dir><dir name="Cms"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="f97a55aaf798b4c2be36fe9ccdb83eae"/></dir><file name="Edit.php" hash="4c51f4601b7fe52cd8f24160dba2f0fb"/><file name="Grid.php" hash="ed97ef32c0c39fccdd7d4348eb6c2f4b"/><dir name="Widget"><file name="Chooser.php" hash="3dda4185c7b095ce466bd9ae082d64fb"/></dir></dir><file name="Block.php" hash="d706c30b1dc344f4517422233d569afb"/><dir name="Page"><dir name="Edit"><file name="Form.php" hash="11705f1fb07a9eec292a2ebfc467fcab"/><dir name="Tab"><file name="Content.php" hash="8cfab12bfdaeead6778732bff308de6e"/><file name="Design.php" hash="051ba7ca6caa9a3c55f26104e6ca9112"/><file name="Main.php" hash="15498bbe6a7f490f0776edfe48e8766d"/><file name="Meta.php" hash="25eba1b50a49a5d3af94b6930031245d"/></dir><file name="Tabs.php" hash="35493456448463c8813e80c8084c58ac"/></dir><file name="Edit.php" hash="9d8daa02dee01a27b8f544da7dd694d8"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="c22142eac195f17c54a83eed05c525a9"/></dir></dir><file name="Grid.php" hash="9688f9882d39401baaa9128b12543f88"/><dir name="Widget"><file name="Chooser.php" hash="8c2d060e0eb813191b7d0af8f26ec6ba"/></dir></dir><file name="Page.php" hash="5a2568f2765414ccd7412e7d7aac53ad"/><dir name="Wysiwyg"><dir name="Images"><dir name="Content"><file name="Files.php" hash="cc9073e2dead49582bb9d9af76650f33"/><file name="Newfolder.php" hash="be299191420395e59e29dcd8b457c911"/><file name="Uploader.php" hash="e421ed3de8acb7216c53e1e30db4d3ad"/></dir><file name="Content.php" hash="0c30c48298a8e04d0d2f2281b286779b"/><file name="Tree.php" hash="0bca04cb1f60ba15919be92cf775ede3"/></dir></dir></dir><dir name="Customer"><dir name="Edit"><file name="Form.php" hash="895a8a356144bd269562d3e9e7935021"/><dir name="Renderer"><file name="Adminpass.php" hash="e3681c5d2c0e11e7abc5b0a337071b16"/><dir name="Attribute"><file name="Group.php" hash="37e8da36bbd20879e4bc7908ddf1e4b5"/></dir><file name="Newpass.php" hash="15430660c1c8794027d180986b6b4586"/><file name="Region.php" hash="2db61e385836c0bca666e92ab2c375c4"/></dir><dir name="Tab"><file name="Account.php" hash="286063756cb08d0e5fbc53785d30deee"/><file name="Addresses.php" hash="5277c695f5c47a9caeb6713b37df3dda"/><file name="Cart.php" hash="96c4764d3be465a3a075a093c68b7008"/><file name="Carts.php" hash="c80dc1fc593d127df86bb34adefdecf7"/><dir name="Newsletter"><dir name="Grid"><dir name="Filter"><file name="Status.php" hash="e4d5a4f39c72ee4f768653512f487f7c"/></dir><dir name="Renderer"><file name="Action.php" hash="66aacefaf0e7a0b7a9808c5c18c02f32"/><file name="Status.php" hash="c4688ed586058562070824a056485e03"/></dir></dir><file name="Grid.php" hash="c3a2a7a3f8c0574d57eb36d48de58151"/></dir><file name="Newsletter.php" hash="eb7dc8491c02899b737e2eff02f8feea"/><file name="Orders.php" hash="1f147156ff86f7c205e0cd847a578f3b"/><file name="Reviews.php" hash="c73c1c7f09bbfdd66966f795aa89ee25"/><file name="Tag.php" hash="10898fb9d50af49c6d35ffdab0be8f24"/><file name="Tags.php" hash="c828d7f8c4c8a60cd209a1af0e5c3f64"/><dir name="View"><file name="Accordion.php" hash="1fee93d93adc83f3a7f72fbfb1f9fa08"/><file name="Cart.php" hash="9390e1a1b87ee474158a6190dfffe6ca"/><dir name="Grid"><dir name="Renderer"><file name="Item.php" hash="49e4d0cdab156b95e5836e460b4b77a1"/></dir></dir><file name="Orders.php" hash="64aaad635c672718f2cfba244f955da6"/><file name="Sales.php" hash="2e500104beea6ba298bef7a6dde4717e"/><file name="Wishlist.php" hash="8969dae5be454df95500ec36663de4a7"/></dir><file name="View.php" hash="52c833a07676ce7873c56d230048701e"/><dir name="Wishlist"><dir name="Grid"><dir name="Renderer"><file name="Description.php" hash="3bc7449283f8d401cb8149e8003bad9e"/></dir></dir></dir><file name="Wishlist.php" hash="0218157faa11e4626331399e6b1b7a90"/></dir><file name="Tabs.php" hash="a1e8e56891e557adcb22eaaba326b327"/></dir><file name="Edit.php" hash="b1beb646e9920447e855bf2a5d117eb5"/><dir name="Form"><dir name="Element"><file name="Boolean.php" hash="42d322631cdcfff4d1fecbfafbd47aca"/><file name="File.php" hash="d6d5a8fd90e51d5aabed7cfa6681f068"/><file name="Image.php" hash="db720c6a4707d511de88faaf6a7882d8"/></dir></dir><dir name="Grid"><dir name="Filter"><file name="Country.php" hash="bf0ac5f6970a5edd3e569713f445009f"/></dir><dir name="Renderer"><file name="Multiaction.php" hash="16ca6825e7de7c203e379a76785de4e0"/></dir></dir><file name="Grid.php" hash="2c41d1c7eaccfa19907cc7384455a4ad"/><dir name="Group"><dir name="Edit"><file name="Form.php" hash="fd551def4e3446d3a3e4defa67c33d6d"/></dir><file name="Edit.php" hash="c0223c3427d5978ffce30f79033074ed"/><file name="Grid.php" hash="6c03abf138a8f6f000f323cef4d8f1d7"/></dir><file name="Group.php" hash="066cd291a29933eeea6bef9a3cb81229"/><dir name="Online"><file name="Filter.php" hash="a41aa7cb1199a351d05de1822b33ce71"/><dir name="Grid"><dir name="Renderer"><file name="Ip.php" hash="a6cad710fae023e1f910e09fdf263e52"/><file name="Type.php" hash="50b958cbc71508df9ce8b0057e9cf9fa"/><file name="Url.php" hash="43ca835d1756e52ae4d78eef12d3c909"/></dir></dir><file name="Grid.php" hash="8fbde158a51a1e9460403b2090095d4e"/></dir><file name="Online.php" hash="c2de5a80df932fa2a7cd2654859f7883"/><dir name="Sales"><dir name="Order"><dir name="Address"><dir name="Form"><dir name="Renderer"><file name="Vat.php" hash="b160f5e4d3351c6f6bf6c7c4b37c5b72"/></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Validatevat.php" hash="12cf24eae1b66123115f2c9691c7d2ce"/></dir></dir></dir><file name="Customer.php" hash="5f2637c6f5cf1154f5d8a1863ec9358f"/><dir name="Dashboard"><file name="Abstract.php" hash="ba448edf5bf1a6d43f657638102598d5"/><file name="Bar.php" hash="b385d228fa7931e6f115303f0a4eff28"/><file name="Diagrams.php" hash="0e50fc4f357a60a5879de0cf49010a58"/><file name="Graph.php" hash="63d03812b28730ce3c97029843b81cab"/><file name="Grid.php" hash="ed4eb0468c29ae06a6ede2a136a04610"/><file name="Grids.php" hash="e6dc094dfefff2093bf9313b15fb9d0c"/><dir name="Orders"><file name="Grid.php" hash="601fb5e65df13005814b9a8293d5ceb5"/></dir><file name="Sales.php" hash="3c1397b226ecab3eb030b061d5fd22cc"/><dir name="Searches"><file name="Last.php" hash="dffdb9a4ef953c888d2d8f085b2b883c"/><dir name="Renderer"><file name="Searchquery.php" hash="8f225b6c230d6bd2fac053a307d451b4"/></dir><file name="Top.php" hash="0777797a00f874cf746d4b10091af78c"/></dir><dir name="Tab"><file name="Amounts.php" hash="fd411f1cc30ef9c6b03b852d05e2c0b4"/><dir name="Customers"><file name="Most.php" hash="b5f4ec2ca01b412c6559f06cb1a71ded"/><file name="Newest.php" hash="51e69bfd8ac59a49aa6d8f356e655335"/></dir><file name="Orders.php" hash="81b896dc93630721fa9facc22d7a2d70"/><dir name="Products"><file name="Ordered.php" hash="fdda2c8b97e10c1ac1c0b656d4281bec"/><file name="Viewed.php" hash="dbae63f344da0761389dcea44351a3ae"/></dir></dir><file name="Totals.php" hash="072423cf06f6f074251b1ccb44475119"/></dir><file name="Dashboard.php" hash="fccdaee9d98bfabf95ee7c5043db5bb8"/><file name="Denied.php" hash="dd832836f567335a768e841d8cc2e25f"/><dir name="Html"><file name="Date.php" hash="d4fca1e0f704707330a4907a48abd3a0"/><file name="Select.php" hash="2b3df78c9c3599585d5b77b2c2f8defd"/></dir><dir name="Media"><file name="Editor.php" hash="1a485bad3e0646de5aae8de045af46da"/><file name="Uploader.php" hash="0fdb6552ecfc49c469ed93f73d0f8511"/></dir><file name="Messages.php" hash="47ffa48527b0f5450d07337c55324655"/><dir name="Newsletter"><dir name="Problem"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="83cf48ce150ea30e6268497112b086a7"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="e899fb6bc5d3e3c569d32ff6f9f6ba75"/></dir></dir><file name="Grid.php" hash="4e92808903a5dc80b95f6a4b7a8b2133"/></dir><file name="Problem.php" hash="6b55c8cd077c330ba5ef7d82070af2e9"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="86048c674b219814e3fb837ba903e269"/></dir><file name="Edit.php" hash="54cb761c35e8a370aa258f80618ab18e"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="fb62027dafa2d16f1664e5d7b1782d18"/></dir></dir><file name="Grid.php" hash="9892b74de2df934ef973a11d08ef1ea5"/><dir name="Preview"><file name="Form.php" hash="14ef3f3003de4300b5cf08bf0aea6163"/></dir><file name="Preview.php" hash="27caa0319ae6dcbd36b9cbf3ef9a983b"/></dir><file name="Queue.php" hash="2ed431811fef6a54bb88491c28f1ccd8"/><dir name="Subscriber"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="19195ccb3ff497f586c4efd41e0404e5"/><file name="Website.php" hash="9332f09ea1735047c343f81e899ecbe7"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="538d650618b08601a99a91b7a06fd281"/></dir></dir><file name="Grid.php" hash="fc1306ca7d5446ce74e661fc940945f4"/></dir><file name="Subscriber.php" hash="f18c68f08ef9fcccc640aea542c70b5b"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="da659c75185b36a1dcd330736189ef7e"/></dir><file name="Edit.php" hash="a78f64e8abcaa9d9aeaf0b7b33096a46"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="438d52e4dc323e31db5212025dba8cfc"/><file name="Sender.php" hash="f07dd54995f69f4641d9ebf8deaf0503"/></dir></dir><file name="Grid.php" hash="c7fbb8b4aaf7cf19a7e594be984eb895"/><dir name="Preview"><file name="Form.php" hash="54d24557f9fb6be86fce75853d127824"/></dir><file name="Preview.php" hash="12fecd468f240be3782e99b9d64890c5"/></dir><file name="Template.php" hash="e440673d389d83d3826a42a4f4d22076"/></dir><dir name="Notification"><file name="Baseurl.php" hash="4986feec061f5f2d24892d7c591b44ef"/><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="89b692a0c9c3858441db6510d8a9fcb0"/><file name="Notice.php" hash="9cd024695ff39e14baa077323b8a70d3"/><file name="Severity.php" hash="2297680ddd076eb405196d76c49d7aaf"/></dir></dir><file name="Grid.php" hash="19f485947a9c49cd05cf811b10bb9804"/><file name="Inbox.php" hash="e7f697caa073532fca2070e8a9e5e7fb"/><file name="Security.php" hash="15c0cdcd3d8cca84d63702f7bc149623"/><file name="Survey.php" hash="0be88f2821b161029ddf41ecd5618007"/><file name="Toolbar.php" hash="fa33854ea2a94cfcd275a9d289d6769e"/><file name="Window.php" hash="2655b29415af92ebb98df6bedd87ebce"/></dir><dir name="Page"><file name="Footer.php" hash="034a5edd04b017f411a023c17b01e7c3"/><file name="Head.php" hash="c6a071766be4de11ad23905fd2995624"/><file name="Header.php" hash="6f8f7787ec82a8775c8b80e557fe8eee"/><file name="Menu.php" hash="b69320374b382adf21c908014c8f0838"/><file name="Notices.php" hash="401696a7db6ffcaabe9dd856f1ed1708"/></dir><file name="Page.php" hash="b57c638a7aab964ba5fbfe5b77ea79d8"/><dir name="Permissions"><file name="Buttons.php" hash="33a0f454644d4efe9e6f8c6b987c94f1"/><file name="Editroles.php" hash="a82348fdc5d6bab02634b2807fd380e7"/><file name="Edituser.php" hash="d35c31d9fd4d70a2efb79c4948d99001"/><dir name="Grid"><file name="Role.php" hash="6cea79256a4c0246da94dc2f65a238e8"/><file name="User.php" hash="981df94442032113ec92c59c1e260979"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="627a0e1ecdd1c9a3a4b2e9f3b8cefe2e"/></dir></dir><file name="Role.php" hash="74457137ddfab7e3f8a77fb7cdf8c8f0"/><file name="Roles.php" hash="5369f3fd597f99f743ae6e360613e0f6"/><dir name="Tab"><file name="Roleinfo.php" hash="820a5fd889f80c4109aa6926635f996c"/><file name="Rolesedit.php" hash="a48719fab0049c52e5201ecbcd7552e8"/><file name="Rolesusers.php" hash="65f8cf7b779680f98598c085f332bfb4"/><file name="Useredit.php" hash="007ad89a6486355f58db40fe99f78828"/><file name="Userroles.php" hash="0ded31ea47099ce64000b0c51d9f1e27"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="239da269efff9530af73d29d879bb1a6"/><dir name="Tab"><file name="Main.php" hash="5c5699742d51c912cbcee59255deee79"/><file name="Roles.php" hash="b7b0d34a2673565a0a981cbd9a16606f"/></dir><file name="Tabs.php" hash="64e96004c97da1a14bfa9030c292f400"/></dir><file name="Edit.php" hash="da7c7486eb97988d8ef4eeeb2416a9e2"/><file name="Grid.php" hash="168dc779343c8a57a378d89a58e2c12e"/></dir><file name="User.php" hash="c4a5e0cc1d4cbf599344792b2bc2c721"/><file name="Usernroles.php" hash="b6b2a0ca2e22cfafecb2a1e39fb87897"/><file name="Users.php" hash="bcb896f8d5c53b3859e5f9683c43a0e4"/></dir><dir name="Poll"><dir name="Answer"><dir name="Edit"><file name="Form.php" hash="b4f0449261d9626dd24fa54e425ae746"/></dir><file name="Edit.php" hash="655fafa7d7bd0c045e364cf7bd8fa69b"/></dir><dir name="Edit"><file name="Form.php" hash="1eaa83d55e84732e976e07261ec09344"/><dir name="Tab"><dir name="Answers"><file name="Form.php" hash="b9a7969e1dc9b05bbf48c89e5ef59d16"/><file name="Grid.php" hash="d9f10034eb02c5914b13ad815e5a1c1e"/><file name="List.php" hash="1e45a350a09bf66b23492f2020a0df14"/></dir><file name="Answers.php" hash="3590fad467da0cb56f8f430aa566592b"/><file name="Form.php" hash="e722d529db8bffdcbf0f943780cbe355"/></dir><file name="Tabs.php" hash="c3320092d841483cf87df9a9fc7a4895"/></dir><file name="Edit.php" hash="03fc4e957f2946f073985fcbab738abb"/><file name="Grid.php" hash="9fae25a43745a0850a1d04b880ab7e33"/><file name="Poll.php" hash="15879e84a7efaec9086aec19b0bf1425"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><file name="Form.php" hash="b3b8890a26db9e93ca348c49f6cfb820"/><file name="Js.php" hash="a893ae5ff75022ab9e5ac9b09072677b"/><dir name="Tab"><file name="Actions.php" hash="288ba2187ee4252a51f982f744b54a9e"/><file name="Conditions.php" hash="7de14de7e0879d58dfa201b3beed6435"/><file name="Main.php" hash="69a98a9b90977a23d509638d535110bc"/></dir><file name="Tabs.php" hash="3b6ae623968814ff3ad30cf48cfadef8"/></dir><file name="Edit.php" hash="d00121cbc474adca3925eb31e1ad69be"/><file name="Grid.php" hash="cea199eeb2d3720fe2fa5a6bc78dc85d"/></dir><file name="Catalog.php" hash="072db01b890d54e5c26b20afff81bda1"/><dir name="Quote"><dir name="Edit"><file name="Form.php" hash="687934bd6fd0ffccc73e8eaf43c02134"/><dir name="Tab"><file name="Actions.php" hash="b0aecac60e5e2fa49b7989a337bcb76b"/><file name="Conditions.php" hash="c9656b6fa0b3584b407a6888dbb14ccc"/><dir name="Coupons"><file name="Form.php" hash="13c6ffb6e4f4222e59c52df37b34bc01"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Used.php" hash="79c4a5e655180b7f5581ae07cc67c9fe"/></dir></dir></dir><file name="Grid.php" hash="e3624dea4064e5b3d2e6f8b8194cf63c"/></dir><file name="Coupons.php" hash="7dbe487919a1c86167a1e8f9528ff20d"/><file name="Labels.php" hash="aff6409d8bd7bd95faf6388bf18ccbdd"/><dir name="Main"><dir name="Renderer"><file name="Checkbox.php" hash="901188882b226d5ad691d1375d5abf82"/></dir></dir><file name="Main.php" hash="47cde0a6d834a0bd6217ae95137b7e22"/></dir><file name="Tabs.php" hash="a13512a7becd58ced401cd8c6450571f"/></dir><file name="Edit.php" hash="06adcaeeb91d58ed195e25cdd40b8ec2"/><file name="Grid.php" hash="326320f609954360780285fce490a702"/></dir><file name="Quote.php" hash="ee4bd641518e33489072a158679de8d5"/><dir name="Widget"><dir name="Chooser"><file name="Daterange.php" hash="a300fed3106971075cae9e588cce4b59"/><file name="Sku.php" hash="a6eea40d5f29ea9deeb38c319b529c94"/></dir><file name="Chooser.php" hash="e97b16678b9b5220e8f9035f60ca4848"/></dir></dir><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="87851ddf2f505064d8c91f21fd10af27"/><dir name="Tab"><file name="Form.php" hash="c85e7869ee6c2c73e5701440652f660a"/><file name="Options.php" hash="7c4c21c862eebb5455cb9889954d5c3e"/></dir><file name="Tabs.php" hash="417fd255d3f7e9315dc6b60de3855788"/></dir><file name="Edit.php" hash="83d4eb6b7cdfc63591cde8fd8cfab733"/><file name="Grid.php" hash="68499c9f4c92d847947d1e066e6aeaab"/><file name="Rating.php" hash="225dcfd3fc969255b9f27601d52cfbed"/></dir><dir name="Report"><dir name="Config"><dir name="Form"><dir name="Field"><file name="MtdStart.php" hash="7cd6c952c343d8a5ffe4ae87eaa19f84"/><file name="YtdStart.php" hash="90e1008592a9ba8fdd2c947221d6377a"/></dir></dir></dir><dir name="Customer"><dir name="Accounts"><file name="Grid.php" hash="b44fe307e1f407c22b2554648febd5c1"/></dir><file name="Accounts.php" hash="9dc89daa20041c9f1a612be9c7066dbf"/><dir name="Orders"><file name="Grid.php" hash="090140347db0f2f2f854ba9b1d5f1ee6"/></dir><file name="Orders.php" hash="10df269490a3410f734a644e56adb39f"/><dir name="Totals"><file name="Grid.php" hash="004873961f4d7ca3eb4c7ee8eb0714b4"/></dir><file name="Totals.php" hash="ba7684dbc46d705ac288eb1c62a3b3ca"/></dir><dir name="Filter"><file name="Form.php" hash="feca6acab7477fca3b19f4820b561673"/></dir><dir name="Grid"><file name="Abstract.php" hash="b7907a6036139a58c8742fb8ad36bb1e"/><dir name="Column"><dir name="Renderer"><file name="Blanknumber.php" hash="16f13d72dd776377afd2f76728e44ce4"/><file name="Currency.php" hash="a41c7dc6ad63e13cb74aeecca0674088"/><file name="Customer.php" hash="0c6f60098017e67549b1ec77595ac3bf"/><file name="Product.php" hash="22e96b31c2cc4b488b2aeab4998f119e"/></dir></dir><file name="Shopcart.php" hash="457d65cd9def010130f1675d3d52dc50"/></dir><file name="Grid.php" hash="110d750b5e28a0ee557fb68b56a77306"/><dir name="Product"><dir name="Downloads"><file name="Grid.php" hash="612edbdfa086dbff5dfe56818724f362"/><dir name="Renderer"><file name="Purchases.php" hash="49c7e3c2fb4d0ffbbad889c911a73e30"/></dir></dir><file name="Downloads.php" hash="8b52492598e5af061c90671730326b8d"/><file name="Grid.php" hash="08cf2b05e69e5b0317100685f10262bc"/><dir name="Lowstock"><file name="Grid.php" hash="f3c144d4baf645cd0f1fb0baaa9714de"/></dir><file name="Lowstock.php" hash="d600c69c68469fd27d1cbf9ea0d7c6c8"/><dir name="Ordered"><file name="Grid.php" hash="94dca8b7f0a6b5daddd71b474a90d021"/></dir><file name="Ordered.php" hash="9a20fc5aa67d31af83777de5fc3d0931"/><dir name="Sold"><file name="Grid.php" hash="20a5b1426397c6aa5491828672f13b32"/></dir><file name="Sold.php" hash="b251a3e947637d079c5a2ced9ebde553"/><dir name="Viewed"><file name="Grid.php" hash="8dbc9fdad1149820ac25f8bde6439a66"/></dir><file name="Viewed.php" hash="5308dd73553978a55d65de0a2e649e74"/></dir><file name="Product.php" hash="4d4ef37778c2083f83c414211eb40f7b"/><dir name="Refresh"><dir name="Statistics"><file name="Grid.php" hash="e76ef84d295bf3450af3936205bb9db5"/></dir><file name="Statistics.php" hash="23caebfb7a95e04a4d8941d34097cf4a"/></dir><dir name="Review"><dir name="Customer"><file name="Grid.php" hash="fe7d19d38a59e03f914b31fa81a0c3ae"/></dir><file name="Customer.php" hash="e48b46843e9bf4f55bd786605e06b412"/><dir name="Detail"><file name="Grid.php" hash="e99635253d407607d35322355e8dec58"/></dir><file name="Detail.php" hash="6895430e46e0e174518804ac6483261f"/><dir name="Product"><file name="Grid.php" hash="0f1c10a4ec19e1294366725926e33d2c"/></dir><file name="Product.php" hash="7a099fde0c24dc3416f9200c2f966071"/></dir><dir name="Sales"><dir name="Bestsellers"><file name="Grid.php" hash="b76f52790567fae5cf76b30cf2dcb887"/></dir><file name="Bestsellers.php" hash="d4f1b76fbb17d117df580b07e0ca9599"/><dir name="Coupons"><file name="Grid.php" hash="adecce77513a9fe2e366b5f4a4102e50"/></dir><file name="Coupons.php" hash="257589ffa2e7ba0bb08b02573ff9ed61"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Date.php" hash="bf2099e7687582a2d7053353704a5c2b"/></dir></dir></dir><dir name="Invoiced"><file name="Grid.php" hash="7c1f883ce61eb485864f61c89b6b782f"/></dir><file name="Invoiced.php" hash="bde3bac95796234eb332054f8c057b77"/><dir name="Refunded"><file name="Grid.php" hash="79b54b1be10299242a35bd3a1adb8be2"/></dir><file name="Refunded.php" hash="1096e6a53734a3ef55ac39d728518635"/><dir name="Sales"><file name="Grid.php" hash="d0669b6c7c755b17be78da02757b0da5"/></dir><file name="Sales.php" hash="050d1a7c2c67907a77ef20ff9af820d4"/><dir name="Shipping"><file name="Grid.php" hash="141d1f5b7c6cb3a66861abfc1281c1f2"/></dir><file name="Shipping.php" hash="3d93ce6f9a68cdb0e230dc529e2aaf75"/><dir name="Tax"><file name="Grid.php" hash="2082e7ee81d6c2df6badbfdb93f8512a"/></dir><file name="Tax.php" hash="4c209807eb81bc6fa8d73e763b9ee72d"/></dir><dir name="Search"><file name="Grid.php" hash="4aa04c99350a4a2436a7083695ef60a5"/></dir><file name="Search.php" hash="372c6fb2c1381d4a58677d033dfe405d"/><dir name="Shopcart"><dir name="Abandoned"><file name="Grid.php" hash="c72de9ceda623168adc3231c73ea397e"/></dir><file name="Abandoned.php" hash="13b76364ad62b06e76ad486b84390e84"/><dir name="Customer"><file name="Grid.php" hash="af37c042f0c47b588006a6cd333dce40"/></dir><file name="Customer.php" hash="52a9166555f22a22452653fc8eca18f2"/><dir name="Product"><file name="Grid.php" hash="774c216f5e6fea6963c100f5640a11f2"/></dir><file name="Product.php" hash="af28d835c4f1eb2691f162a050a34a6c"/></dir><dir name="Tag"><dir name="Customer"><dir name="Detail"><file name="Grid.php" hash="8ed84ef0c66060cf306f04302723c2e5"/></dir><file name="Detail.php" hash="105a7a4bb1409ad5cfbfe7166cafcb12"/><file name="Grid.php" hash="6df82fb3d6522701da678c71137013c1"/></dir><file name="Customer.php" hash="85ee86bd62e2bd81077eb2e87ecdef4c"/><dir name="Popular"><dir name="Detail"><file name="Grid.php" hash="b2f0ac64a0ab2fc7133ae82470c76084"/></dir><file name="Detail.php" hash="cf9981f3f1c0794867c08446e4136389"/><file name="Grid.php" hash="6f90f101e27edde1f8477cafcf8a7888"/></dir><file name="Popular.php" hash="7bddc3b1d4d76fe5c14f6a8642455712"/><dir name="Product"><dir name="Detail"><file name="Grid.php" hash="00b5986eb3e828b930800a75e960af51"/></dir><file name="Detail.php" hash="54b8384b46454d5651c8f2d07639d171"/><file name="Grid.php" hash="1112430744c824f6e95c24870236d85d"/></dir><file name="Product.php" hash="f6fb20b03d0a7d946f303453f5ae8710"/></dir><dir name="Wishlist"><file name="Grid.php" hash="1e0bcdd7fb45d90fd34b4ab5d3b5fe0d"/></dir><file name="Wishlist.php" hash="4a344bbf90494b1f18fe0a15fd56122f"/></dir><dir name="Review"><dir name="Add"><file name="Form.php" hash="b077ca31752a4706b872d4e37856e663"/></dir><file name="Add.php" hash="ba96756b77a0a38d584305f2eab1dea1"/><dir name="Edit"><file name="Form.php" hash="794e358fac8a8f2e19d73d0b1dce8168"/></dir><file name="Edit.php" hash="d3e0f8e5309991d75c8690e821541ce0"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="00c0b062e5cb5b27911983a3c9b338be"/></dir><dir name="Renderer"><file name="Type.php" hash="0357bca4f652ef92d53ee386f56da4a9"/></dir></dir><file name="Grid.php" hash="58b90152cb459fbfb54015031d372d68"/><file name="Main.php" hash="4e4aee1f40d1394dc0a8d0aba2f9a575"/><dir name="Product"><file name="Grid.php" hash="06c6d58869d893e6acf02750a49cff47"/></dir><dir name="Rating"><file name="Detailed.php" hash="79c31eeb2a5343f206ede6150d5c9f9e"/><file name="Summary.php" hash="aaefaaa99689038556c4fe1eb57c9d85"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="609782acca5c4b88bd3462d19ab31898"/></dir><file name="Creditmemo.php" hash="52d30829f9902efce405a8d07163f6da"/><dir name="Invoice"><file name="Grid.php" hash="5f3f3663b11422087f0495aaa578de8f"/></dir><file name="Invoice.php" hash="4e6df5fc6fcf148dcdd34e50aed5a39b"/><dir name="Items"><file name="Abstract.php" hash="c1a429f2afc911e487aec25a50cb2369"/><dir name="Column"><file name="Default.php" hash="fa60910a0aef82464e5f7eed49e39f56"/><dir name="Name"><file name="Grouped.php" hash="28af427b714064d612ecb43e47c02cb2"/></dir><file name="Name.php" hash="ae1a1c2dbd36b330851df82add5dc398"/><file name="Qty.php" hash="973da3fd2844f9db233e0955cf0aff91"/></dir><dir name="Renderer"><file name="Configurable.php" hash="56030e213e888196dd12e2bfd98808e2"/><file name="Default.php" hash="35918d823badbdbf34e9a8b88c9d0e66"/></dir></dir><dir name="Order"><file name="Abstract.php" hash="e30d84135953380eb3a014d7f3740cf1"/><dir name="Address"><file name="Form.php" hash="65f6e4c72910f7631ec08769b36011b8"/></dir><file name="Address.php" hash="7cb665471b414ca5b1e4ee483affe74b"/><dir name="Comments"><file name="View.php" hash="9c9845ddd89223cafb81083732ba69ce"/></dir><dir name="Create"><file name="Abstract.php" hash="e32052337ca1090c406ae065411a8dc3"/><dir name="Billing"><file name="Address.php" hash="9072b804744fe91e32a4d5940080ff7b"/><dir name="Method"><file name="Form.php" hash="36acb74957b06bbd7a5a6d26962e8af0"/></dir><file name="Method.php" hash="d92340dede608bfa63652951f9183e2e"/></dir><file name="Comment.php" hash="0595c40633c02e7c55c1de460a7c3565"/><dir name="Coupons"><file name="Form.php" hash="acceeeade5491da7a11cb8109d9c9dbe"/></dir><file name="Coupons.php" hash="b4e3c093d05c3d403eea6e2c1ac720fa"/><dir name="Customer"><file name="Grid.php" hash="00bd358a671d07fab0e3b0662c9c96ca"/></dir><file name="Customer.php" hash="ccf63cfa09089450f38130c4d8049bf0"/><file name="Data.php" hash="8b0e98d066f6b66e3a43e3a31b6fbb28"/><dir name="Form"><file name="Abstract.php" hash="9345980b19832493835baba01df527a1"/><file name="Account.php" hash="bccf48e050ab5a850399999bf825939a"/><file name="Address.php" hash="a766f85007385f002e2fa8678f404bd0"/></dir><file name="Form.php" hash="fab28e896ffa92a761d3641e53f14072"/><dir name="Giftmessage"><file name="Form.php" hash="e7ac768ace90ba244ac347b872ffe97d"/></dir><file name="Giftmessage.php" hash="79929df23b414de98237444e3e8d28a9"/><file name="Header.php" hash="d879abd88f66d4b71f43dd804c122fa2"/><dir name="Items"><file name="Grid.php" hash="095a0755af808a84cff8aa08bf6b8d66"/></dir><file name="Items.php" hash="294fa49c1a68f351e00ae783f62f4825"/><file name="Load.php" hash="bb3b290e6598f3aa0b0cd4e1d57fd901"/><file name="Messages.php" hash="a4c968869fc33d821e6e77d25ccd85d2"/><dir name="Newsletter"><file name="Form.php" hash="f01444655f303708aa0d12410e5c3902"/></dir><file name="Newsletter.php" hash="602425cb6855253ac09cc8585c51af39"/><dir name="Search"><dir name="Grid"><dir name="Renderer"><file name="Giftmessage.php" hash="fa8dc8d6948c8014231141cbdf600d6b"/><file name="Price.php" hash="8bf6cc7edf02006f3d51b0776e0ade9a"/><file name="Product.php" hash="edf012523024d1e8c49f0a753e0baaa9"/><file name="Qty.php" hash="f7d81b998baff175e908c4e3d8e54e6e"/></dir></dir><file name="Grid.php" hash="410ccbdc8d94b81f310644e355176060"/></dir><file name="Search.php" hash="8255abe3d4058592c001e2f8e092c66c"/><dir name="Shipping"><file name="Address.php" hash="7218ba8e598d204369e2579f697eff9f"/><dir name="Method"><file name="Form.php" hash="3228f624620c99d23132e2af1125e262"/></dir><file name="Method.php" hash="eadc08372132958349c4cbe02835d2ed"/></dir><dir name="Sidebar"><file name="Abstract.php" hash="d6322dbc22688afc46f34a56afdb5d0b"/><file name="Cart.php" hash="11ef20936bdf06b4c7dda4e3c1d60319"/><file name="Compared.php" hash="22d06864525ded4129fdaa661811be4f"/><file name="Pcompared.php" hash="3f97fc35f8376538e7b6c765abe57f35"/><file name="Pviewed.php" hash="b179e14ebf6c78bd6a200b2f93a8a637"/><file name="Reorder.php" hash="509aa773941c4d7143a09a6d5d68e088"/><file name="Viewed.php" hash="22202338fdf50b6924dd8a1b264b572e"/><file name="Wishlist.php" hash="ae56bbd88add7d7420819b533a9ed517"/></dir><file name="Sidebar.php" hash="aec4ae776a695748d7a752669118aed1"/><dir name="Store"><file name="Select.php" hash="8a4c5955a8e734971fff13a7f7ba5876"/></dir><file name="Store.php" hash="219d637f2b6906db4edcbaab06b4f763"/><dir name="Totals"><file name="Default.php" hash="786fc90a5bbaf675420863cc621cdc67"/><file name="Discount.php" hash="b746b16699a020ee651dfd55e59b61fb"/><file name="Grandtotal.php" hash="5e996397095e43adbe5a650a0f9a6200"/><file name="Shipping.php" hash="30683791284d8abd44f13bf00f6d9b42"/><file name="Subtotal.php" hash="89428352df124cee37aaa17d749fa1af"/><file name="Table.php" hash="eec30bc66e4594c505692c960e11232d"/><file name="Tax.php" hash="36ae21e571c96934ec8fdab7f29095b0"/></dir><file name="Totals.php" hash="af300d2fed90af56a42a10adeb3ad831"/></dir><file name="Create.php" hash="afd3d821f20dece3f318f513afcba12d"/><dir name="Creditmemo"><dir name="Create"><file name="Adjustments.php" hash="f8a3d1d4bc32e95cdba1461ad9b38ca8"/><file name="Form.php" hash="ae38b0f40c1297513205bf189abeaf2e"/><file name="Items.php" hash="1d6f2af2f3c41636fd44f121e5600053"/></dir><file name="Create.php" hash="a06ec88bf1d10ddcae2fc335df48ae41"/><file name="Totals.php" hash="615cf6a639a9ef23102a6c6fcea53be2"/><dir name="View"><file name="Comments.php" hash="d279fff5a706eb35144c555f3a61cbd5"/><file name="Form.php" hash="95a2a8e4b000680c53a1820544c2e9bb"/><file name="Items.php" hash="9ba89bf8c6d475962538e71f627f7a0b"/></dir><file name="View.php" hash="7c1b1069b059f073b237fc9dc347c705"/></dir><file name="Grid.php" hash="96bc1a33ce46aeb88e8fc76e1b499cc9"/><dir name="Invoice"><dir name="Create"><file name="Form.php" hash="def2ec8ec44adea13cef43e3a1a92613"/><file name="Items.php" hash="e2002156dcba5c37b0d0d3c9a924d25a"/><file name="Tracking.php" hash="2487c540f915a172c48c45974866f104"/></dir><file name="Create.php" hash="493beaeb25e8b01ce36e17750ed958df"/><file name="Totals.php" hash="d3897853b2be84bb7bab362de42ef236"/><dir name="View"><file name="Comments.php" hash="b578c353505c5f47ee733f68ebdd7a40"/><file name="Form.php" hash="3bf279de7643e9d6666e5ca98e1d4bb5"/><file name="Items.php" hash="6754a10b719983070b7757df043170c3"/></dir><file name="View.php" hash="09c794b5a785f3a9e3f202cbdf872195"/></dir><file name="Payment.php" hash="ce953be1c0b020e9605fb89c8cb6f7da"/><dir name="Shipment"><dir name="Create"><file name="Form.php" hash="067634d96a188f73de0e4c7ec44dc2ac"/><file name="Items.php" hash="52c59199fdf1d4e91a70d2fb9310ff3c"/><file name="Tracking.php" hash="4c669be5cc4953cc7788c96e3b308c73"/></dir><file name="Create.php" hash="815c6e0cdf756371f6b1e51b813793b1"/><dir name="Packaging"><file name="Grid.php" hash="280db48182cff2c460d3815ee238cc9c"/></dir><file name="Packaging.php" hash="f408350c26660b54b35ac24e199ee6ca"/><dir name="Tracking"><file name="Info.php" hash="704ce3c77a96bb0fa55674d6ae9d95a4"/></dir><dir name="View"><file name="Comments.php" hash="0a98ae0af3176b0b7b45b7262b555559"/><file name="Form.php" hash="429e204585487456bc4ea1085cce841b"/><file name="Items.php" hash="20edf5b8a64c79c6b703f575e1d30347"/><file name="Tracking.php" hash="462936482b1d1de5f7cd35b684b3ec23"/></dir><file name="View.php" hash="1e86c4abea25c8e7a184d7eb1d9f4430"/></dir><dir name="Status"><dir name="Assign"><file name="Form.php" hash="c41bbe6a134c2823bd6417162b991f46"/></dir><file name="Assign.php" hash="137a3c0f335c6b05daa12a1d0df1bc5d"/><dir name="Edit"><file name="Form.php" hash="b7fc8603fc650b56e2fbde4e26dc1cc3"/></dir><file name="Edit.php" hash="7454ade7a09f185ace74fb7fdf610c94"/><file name="Grid.php" hash="e0d67da4bb983c077067a0652b77ca33"/><dir name="New"><file name="Form.php" hash="bbef54d24bb51382fadc5bc573f3f781"/></dir><file name="New.php" hash="a46f7c7dbce80d679d69852a39ea3212"/></dir><file name="Status.php" hash="aef6216b1ca16a89f310383aa9e8fa49"/><file name="Totalbar.php" hash="3ca3d8c0c64ff79c2f684d20be6748ce"/><dir name="Totals"><file name="Item.php" hash="b4463e61a9c83de8bda33298dc2fd929"/><file name="Tax.php" hash="9bfc5a3a798061108056f913abf71a3a"/></dir><file name="Totals.php" hash="ed88b7a12588621637da63c73e19f02c"/><dir name="View"><file name="Form.php" hash="201e8f8fbf12410ea017b9afb73d0287"/><file name="Giftmessage.php" hash="f86e31036f0b5827e23093a950a972ba"/><file name="History.php" hash="821a88765ae7db2694b07f0c3696326a"/><file name="Info.php" hash="1f78a7995b5f6826502be8df3f1d0214"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="73fbe9a5838d2220f6f74638113d675d"/></dir></dir><file name="Items.php" hash="fa1e91f88b3d89146f53dcdf81f0aef7"/><file name="Messages.php" hash="38b97b58f4df7d35a267331538ae12e6"/><dir name="Tab"><file name="Creditmemos.php" hash="12b7dc85bb9609c95a0c2000cd68ea10"/><file name="History.php" hash="494057929e32162a486097bc7e371ee5"/><file name="Info.php" hash="1a82cfbd0d4816157c2246be0810c50e"/><file name="Invoices.php" hash="933c0557448b027409188c007b37bc5a"/><file name="Shipments.php" hash="f187675d608b26d871b156487d14adf1"/><file name="Transactions.php" hash="5cbcdd56ccf7e6f8a3e6f7e567516f08"/></dir><file name="Tabs.php" hash="593ef2b480a72ed8f0df2b0870a51b3a"/></dir><file name="View.php" hash="3c12eebd47ffb96eeb4e1fbe28de29f3"/></dir><file name="Order.php" hash="b8d298c06975f0c50baf2688a921b612"/><dir name="Reorder"><dir name="Renderer"><file name="Action.php" hash="af3bf36a78804cd7a3103bf07e3d59be"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="770ed0756d5b7af2cceeb878338be38d"/></dir><file name="Shipment.php" hash="553f0f9a893ec1808b2ade404b8be9a6"/><file name="Totals.php" hash="46691747b4338d4a31a4954ae52f3c7e"/><dir name="Transactions"><dir name="Child"><file name="Grid.php" hash="306a490ffea619d2a6a6f75e531964ed"/></dir><dir name="Detail"><file name="Grid.php" hash="d8854d795a1d8ce0e65599211bc1201e"/></dir><file name="Detail.php" hash="0bff95c18246f682c15ec713c9069c12"/><file name="Grid.php" hash="3cd6f4858aefa6850c20d7a15e49d3b9"/></dir><file name="Transactions.php" hash="70d71afd390085612c4a9dddf40d3305"/></dir><file name="Sales.php" hash="dbcf645b24b864622e9a369dcc46d7c1"/><dir name="Shipping"><dir name="Carrier"><dir name="Tablerate"><file name="Grid.php" hash="b36d8d8ea9c270cdb7c86f9d1709e5c3"/></dir></dir></dir><dir name="Sitemap"><dir name="Edit"><file name="Form.php" hash="44682351e30c6505e89f3135ec6c260d"/></dir><file name="Edit.php" hash="2f3e3dc9432d573abfb65dce978c15d2"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="72b7e9783a267bbd85cc5533e6f8f145"/><file name="Link.php" hash="63b5cadf42021d48f73f367ee8e47cd9"/><file name="Time.php" hash="e60f50ec15fd6246312175343defb596"/></dir></dir><file name="Grid.php" hash="20566a500b547df156f25870cb83c7db"/></dir><file name="Sitemap.php" hash="1d4e6eb0a205e015cd461cee8394d7df"/><dir name="Store"><dir name="Switcher"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="54ffc93575b9dd24fa8338a9873679f7"/></dir><file name="Fieldset.php" hash="50a1ee48b66169461b2246a5b4b1114f"/></dir></dir></dir><file name="Switcher.php" hash="9db5cbb319dfe122b21610254c6191ca"/></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="32a989e24c11bd6964c6b40925663693"/></dir><file name="Edit.php" hash="6ae499f14fc23f49b34fed02d1968bb5"/></dir><dir name="Cache"><file name="Edit.php" hash="7f7e46737c5d84e3ad535bcf5b49777f"/><file name="Form.php" hash="8e129d9245cbe1272935b717f7b9d1f6"/></dir><dir name="Config"><file name="Dwstree.php" hash="65d964b3abaef9ded4a2cb6fb39a9859"/><file name="Edit.php" hash="ebc9440c9653490762c645ee644c7092"/><dir name="Form"><dir name="Field"><dir name="Array"><file name="Abstract.php" hash="00f07e47e9e4b166207c4d523538b432"/></dir><file name="Datetime.php" hash="e079f7bad53bd5475cea3e208f9dcfe0"/><file name="Export.php" hash="2955e4d5e7ed810425d5f0fa7f7def22"/><file name="File.php" hash="7d862fa75739e851af272a1789cefd15"/><file name="Heading.php" hash="cc480a8afcdc321cf83339d5b93c72a6"/><file name="Image.php" hash="a72fb93e72ec76714c8a20d7f65ae5ff"/><file name="Import.php" hash="5360fe73ceda654747c08fccd4ec0ce2"/><file name="Notification.php" hash="f70fa11cfad02e7306389be7edda51fe"/><file name="Regexceptions.php" hash="334a22ec96def50f88659a98f729d51f"/><dir name="Select"><file name="Allowspecific.php" hash="5a42d65b31e789a4a6059bb051b7110c"/><file name="Flatcatalog.php" hash="f3a60256726b669dd3b96384443e9801"/><file name="Flatproduct.php" hash="00f32d54d5037aef913edd92179bd33d"/></dir></dir><file name="Field.php" hash="7416cb8e38c00450c4fb88901e3071d1"/><dir name="Fieldset"><dir name="Modules"><file name="DisableOutput.php" hash="a8764e833ac21dcd0a2ca89f69df0e9d"/></dir><dir name="Order"><file name="Statuses.php" hash="6ba2ebd4e4de9828e44ccaceec46a5e8"/></dir></dir><file name="Fieldset.php" hash="bac3b66e075d55849901ff6135a9edbb"/></dir><file name="Form.php" hash="4f921941e78888c46c157a236e0e943c"/><file name="Switcher.php" hash="58125106bd70f46d08cecb80c66a61d5"/><dir name="System"><dir name="Storage"><dir name="Media"><file name="Synchronize.php" hash="7ecd3bc9f636a0fb06fe49d3cadba069"/></dir></dir></dir><file name="Tabs.php" hash="8fc4d68a8a14ab927f8364c2cd1f1627"/></dir><dir name="Convert"><dir name="Gui"><dir name="Edit"><file name="Form.php" hash="d61317249f1011ad811c9e3de37b75ba"/><dir name="Tab"><file name="Upload.php" hash="0714f76e4f7e36209c5437edb335a438"/><file name="View.php" hash="77a97205366a7ed7a58d0bbbbc137741"/><file name="Wizard.php" hash="9d7181c814440877bd51fa6b7b41abde"/></dir><file name="Tabs.php" hash="b6c8de105c2d8273cedd5c048ded190e"/></dir><file name="Edit.php" hash="e006c820e035b938de5eb5e3606f0265"/><file name="Grid.php" hash="dff9df74058677688bd37dc9edc5be55"/></dir><file name="Gui.php" hash="c7a22b196f44adecac4c9ef558d7b66d"/><dir name="Profile"><dir name="Edit"><dir name="Filter"><file name="Action.php" hash="6b8e032cbe667523693e5bb249b59cea"/></dir><file name="Form.php" hash="3ecb0a2e30b3d169af90dec37840a434"/><dir name="Renderer"><file name="Action.php" hash="7824322fbca9800a54ae9cffba5e8f2a"/></dir><dir name="Tab"><file name="Edit.php" hash="f902e29881cbb82ea7f12ed81fd6139c"/><file name="History.php" hash="a3a89852432fa03d1b8edc40739f570b"/><file name="Run.php" hash="bf63e664eb43c069003515b513ebf999"/></dir><file name="Tabs.php" hash="fc56f7659a8a126a29c8d5299ade43b6"/></dir><file name="Edit.php" hash="5c4424646601465a566a58d321519921"/><file name="Grid.php" hash="311fa98be1c9d79b14e671c6b3870dba"/><file name="Run.php" hash="c9fbc623b09fc99e6a23dd76d39a1aee"/></dir><file name="Profile.php" hash="f45fc498264a7772a35620cf44e8ff52"/></dir><dir name="Currency"><dir name="Edit"><file name="Form.php" hash="c5a428694c5e1aa61c20dc7b45f6e48b"/><dir name="Tab"><file name="Main.php" hash="043f647b90b2288de6ad848f60c7e2a4"/><file name="Rates.php" hash="7ec47e3402f538710d597d5d48afab5d"/></dir><file name="Tabs.php" hash="2d090f26b6659c012caf3fc264e713e2"/></dir><dir name="Rate"><file name="Matrix.php" hash="26f49c84b51748b0b1c0b79641f06c8e"/><file name="Services.php" hash="6e8f0ec959b036101b9588508c28b1f6"/></dir></dir><file name="Currency.php" hash="ad18f7e5f03b44824e5b90812afc6264"/><dir name="Design"><dir name="Edit"><dir name="Tab"><file name="General.php" hash="b7823d6031e7df9a3d5073e23580f726"/></dir><file name="Tabs.php" hash="65a1dcd6d47fbc83c22887202833f580"/></dir><file name="Edit.php" hash="5189554e595fd5c0e59a904e8b326145"/><file name="Grid.php" hash="8dee8a377889da28f70993ca3c485257"/></dir><file name="Design.php" hash="bdb36c92f11ae10912d190c6864e0ce6"/><dir name="Email"><dir name="Template"><dir name="Edit"><file name="Form.php" hash="5cae31347568c9f2904552422dc39bda"/></dir><file name="Edit.php" hash="07b2d7f20b5d320179a1ffae4cfd661e"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="11c17e268a23fbe5a9be4ea904c59ad0"/></dir><dir name="Renderer"><file name="Action.php" hash="4c80bba4cab13260e85e6b94941ff9c6"/><file name="Sender.php" hash="9c866c5668ef0355910b429ffafc123e"/><file name="Type.php" hash="fd0c3cdf4b4442ea312968e5836b51ae"/></dir></dir><file name="Grid.php" hash="b11bf23f85d3cde28a90224805b78259"/><file name="Preview.php" hash="ddf752d50606a90ea5cb74c594858f4c"/></dir><file name="Template.php" hash="a6bf4f58ef9e5117556ab13e24488b8d"/></dir><dir name="Store"><dir name="Delete"><file name="Form.php" hash="500cbfac4afd94067e2ee7265c725f5d"/><file name="Group.php" hash="e483faa12b6253fd71744b5514dea5d7"/><file name="Website.php" hash="0457e15c93a2fbddb6a34405e0baf14b"/></dir><file name="Delete.php" hash="fd2eed3653cea848632e2d002ee0077d"/><dir name="Edit"><file name="Form.php" hash="f55b61008472d4655f87f67a7b003a60"/></dir><file name="Edit.php" hash="3bd9ffbe024f7c3891daac703d30417f"/><dir name="Grid"><dir name="Render"><file name="Group.php" hash="bfedd63718d04c770da1ae248447b54d"/><file name="Store.php" hash="5a0143816d637c8e53f5acb319e8e010"/><file name="Website.php" hash="47e5083716d3bea2a3315cbeb846fcbf"/></dir></dir><file name="Grid.php" hash="c5555b742d0b4444f3f9b2d29afc6356"/><file name="Store.php" hash="fc4e62fd3760c76ef917308ab0c2d661"/><file name="Tree.php" hash="61ad551230e6b54c826e4e5e2eb0fd00"/></dir><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="965950be5a4ff68b49dd2067b3fe8b0a"/></dir><file name="Edit.php" hash="3b3224ec1555420eba3e637bde7b4b62"/><file name="Grid.php" hash="23bd1881bb76452a7f8cb29ec9cc0e6f"/></dir><file name="Variable.php" hash="ddf310647c2fef4514aaab69b2033995"/></dir><dir name="Tag"><dir name="Assigned"><file name="Grid.php" hash="cc24597f9b1dccdf5c0e79d13f7492b9"/></dir><dir name="Customer"><file name="Grid.php" hash="ea974af2e2d76a5dfef990fa0950642d"/></dir><file name="Customer.php" hash="d054c0ffdd82ee67ca66657e0a739dd2"/><dir name="Edit"><file name="Accordion.php" hash="562054b79e4124ece146cd680c2fdd0e"/><file name="Assigned.php" hash="22da53d8ab2bc271ad095861dc252114"/><file name="Form.php" hash="aad084a7b4d7ce29af65d1029ad19a5e"/></dir><file name="Edit.php" hash="3f8429e7d739ee2e9d14136d6bb32574"/><dir name="Grid"><file name="All.php" hash="ee1ded2a739611bf079df8012c4a9db9"/><file name="Customers.php" hash="3e02bb1db6eb49c84d0a8d917f1cf5c1"/><file name="Pending.php" hash="e926509761ce2d0bdffd7e4e2abbf1ea"/><file name="Products.php" hash="ed4dd39efd314a3eeada54d7bc688eb6"/></dir><file name="Pending.php" hash="c5c1777fe46b2b8e22071e67cd5e0502"/><dir name="Product"><file name="Grid.php" hash="ff371936c0ade66cddc9ffd97fd41e76"/></dir><file name="Product.php" hash="36bae626a4b65f7ff0bd99ccec16c017"/><dir name="Store"><file name="Switcher.php" hash="66a084dfb5766d7aa4150ea09d6359eb"/></dir><dir name="Tag"><dir name="Edit"><file name="Form.php" hash="f336df12dd6d93084017591f621596df"/></dir><file name="Edit.php" hash="cec448430abcf5feb70967f8d6549dbb"/><file name="Grid.php" hash="d3138f801fd07846db42aa9f3968d31e"/></dir><file name="Tag.php" hash="a6da7796adf70a151b8698596a98baf7"/></dir><file name="Tag.php" hash="715f6d8238d90767252fa24b2aaa8f68"/><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="b41a073053c6c09d7d3fe0fc249c5912"/></dir><file name="Edit.php" hash="2eab288cb28367878c491241c060af68"/><file name="Grid.php" hash="681d2eede4b60c0f376ac05c7e97786d"/></dir><file name="Class.php" hash="5787261d91adb3ce5e91f183bc1817ac"/><dir name="Rate"><file name="Form.php" hash="79c96bcb2eb9ff63d9153574ea8468da"/><dir name="Grid"><dir name="Renderer"><file name="Country.php" hash="ae6009c3a2ef87bb15c80f2feebdee46"/><file name="Data.php" hash="9b0b48de6b2172b635fd010565825975"/></dir></dir><file name="Grid.php" hash="6a7576f2126eb7eaec1ad8f4b8299c80"/><file name="ImportExport.php" hash="439d431196230c9a1ba7008f8e93b88d"/><dir name="Title"><file name="Fieldset.php" hash="582692641986fb554b660079b50f1b01"/></dir><file name="Title.php" hash="81a59ddcb9904ec96136cf896b64cc73"/><dir name="Toolbar"><file name="Add.php" hash="d4115ec9130c7beec392768fa35c0026"/><file name="Save.php" hash="664384529f48de555df674eab94a22bb"/></dir></dir><dir name="Rule"><dir name="Edit"><file name="Form.php" hash="ac768e178fe2f87877261fcd3eb50534"/></dir><file name="Edit.php" hash="0b7feecbee6f3bed60978f23da77ca9c"/><file name="Grid.php" hash="a32708a6e2c8f6ab6d82d211dbfda3cd"/></dir><file name="Rule.php" hash="5f86d1ecb4deb0d0165ceef47d0e0ce9"/></dir><file name="Template.php" hash="37e830ef865d5816ff0749a0b322f3a8"/><dir name="Text"><file name="List.php" hash="36324927a9cbe989df3efd4456b7bc8e"/></dir><dir name="Urlrewrite"><dir name="Category"><file name="Tree.php" hash="06008e3f9a0b6805e325a044625dc8da"/></dir><dir name="Edit"><file name="Form.php" hash="f49f28ac34913362ecec40586986fdf6"/></dir><file name="Edit.php" hash="59fabf134ee2fc01cc9e46776f4cd471"/><file name="Grid.php" hash="bf379a6aa94d2a364d66a6ed6ebe875b"/><file name="Link.php" hash="3fdd7f7ee72e1614bed7108b2995787d"/><dir name="Product"><file name="Grid.php" hash="df2352c709050740510e4ffac628fea7"/></dir><file name="Selector.php" hash="151394166be76866141433245cd644d2"/></dir><file name="Urlrewrite.php" hash="bebd609ee71719c74b1c3d1de2500ed4"/><dir name="Widget"><dir name="Accordion"><file name="Item.php" hash="94a5901f87bd5890f96f648292790cdb"/></dir><file name="Accordion.php" hash="f4aff431a506218031db26d68d7b1c76"/><file name="Breadcrumbs.php" hash="02e761d850bbbebd7d1fe882c0a53752"/><file name="Button.php" hash="aed10ad707357eb178a19c609b0da09c"/><file name="Container.php" hash="4404d8cbff8fa20939842cbf7132e9b8"/><dir name="Form"><file name="Container.php" hash="cc69b468cf12c30393e650cfff91e400"/><dir name="Element"><file name="Dependence.php" hash="cf6e54fb96580ff6bcd3c6c056877ce4"/><file name="Gallery.php" hash="3976e501ce150169251b248b8fedfab8"/></dir><file name="Element.php" hash="5501873a9a7f87b8c2f9476b2cffaca3"/><dir name="Renderer"><file name="Element.php" hash="094414f0efb45d8e8b6e2a6db55d2faf"/><dir name="Fieldset"><file name="Element.php" hash="c1f03ae010c384ffe7ef6a6e3ca6b4c2"/></dir><file name="Fieldset.php" hash="2e3458a777272448316051b423cdfe7c"/></dir></dir><file name="Form.php" hash="5646c9b6442ea6f46f3b8d7da0a1f7b4"/><dir name="Grid"><file name="Block.php" hash="7175ecea8685eac985581615bd88b98c"/><dir name="Column"><dir name="Filter"><file name="Abstract.php" hash="573ae23fdc2ec2912ee21118126df115"/><file name="Checkbox.php" hash="6692994013094aabb6663356f7850338"/><file name="Country.php" hash="1db4999ebc6d8c6bbef971581ab5dadf"/><file name="Date.php" hash="69e6523c1acf19f5e878ceb2fb1d856c"/><file name="Datetime.php" hash="b041d427a34d8352775bcc9079402314"/><file name="Interface.php" hash="a74918e30444273589146419c575d57b"/><file name="Massaction.php" hash="5b942d4fdb594eb47e7bc3ad56410130"/><file name="Price.php" hash="e2639eb8e2e3904dc9b9739286e2f96f"/><file name="Radio.php" hash="f57d2aad655eb86c83483faf56fa02ee"/><file name="Range.php" hash="efb51cebc4c2f44d275b508af8a61f89"/><file name="Select.php" hash="04174830a37f3c9a00ebeb5133d5bcc4"/><file name="Store.php" hash="009d114910cdb5c6bd42664c240080d9"/><file name="Text.php" hash="278c3865cb471aaa2044bcd649efd373"/><file name="Theme.php" hash="612c66148f26e49b55c61c3b261f9dab"/></dir><dir name="Renderer"><file name="Abstract.php" hash="9344d13c164a4548f86c6ca384df27a0"/><file name="Action.php" hash="43e853b7238538414b8fb17a26c46636"/><file name="Checkbox.php" hash="6a1073a36823bea4416a499de3990039"/><file name="Concat.php" hash="20a06a41bb0b0882680b54fc0823450f"/><file name="Country.php" hash="9dd16e791dcdaf06c3eaee9934815bb8"/><file name="Currency.php" hash="4bb95fad536099597f327cea022d6e85"/><file name="Date.php" hash="fa20f2353f16072ef4b4f14fd22a7149"/><file name="Datetime.php" hash="b4f6eb68927e132a7b491910b2df2b9b"/><file name="Input.php" hash="77ef50574fc7397074001d4cd2a81753"/><file name="Interface.php" hash="d68204bfcdbbcbf3f88bcb855bb22298"/><file name="Ip.php" hash="a17ebb9d50747bfecc1046bd8a86fe12"/><file name="Longtext.php" hash="49b289a55b9a4ae6c326d1d002a264bf"/><file name="Massaction.php" hash="48cdf11ebbbc5e12df2a8dd6ac17288a"/><file name="Number.php" hash="25d3ca124ac1525f9414ff322fcc1910"/><file name="Options.php" hash="023c738b9d4ccfc35c6ea12293da1b7a"/><file name="Price.php" hash="6d6bd5580b489acada6c72edc618e12b"/><file name="Radio.php" hash="637e6a8833063ca0b24e8d7950a222c2"/><file name="Select.php" hash="8f60174560f430c052173b1df954f30a"/><file name="Store.php" hash="145bf24e62a616b43bccf90f1b44e678"/><file name="Text.php" hash="43cd6e2148fc9f9d6e30b8c0534d60c9"/><file name="Theme.php" hash="f67f667d2725022d829b1911cbb666e6"/><file name="Wrapline.php" hash="027d16f99f35873430db75bcf57bb600"/></dir></dir><file name="Column.php" hash="cd7b82e1792e7494058f1230baff16c2"/><file name="Container.php" hash="7b717ce50323efd0cb7f41268fe796c3"/><dir name="Massaction"><file name="Abstract.php" hash="c3dff2dd48e292f41e3496859a5239e9"/><dir name="Item"><dir name="Additional"><file name="Default.php" hash="4a36eec96c2dd1498a2f6a0744194a75"/><file name="Interface.php" hash="cdae7780745b6192018ccc9f163ec905"/></dir></dir><file name="Item.php" hash="cda09ba7e125d83ba4e2f71a99398b38"/></dir><file name="Massaction.php" hash="6eb869f3543ba49e31af2bb2ed17a9e1"/><file name="Serializer.php" hash="53478c285d0022a521efb17d62cefff8"/></dir><file name="Grid.php" hash="289cbbaae824f6bad2e22bce06acc3b1"/><dir name="Tab"><file name="Interface.php" hash="a683b31ea0b7422c3e95b104ba06ea68"/></dir><file name="Tabs.php" hash="352a17ed9df3810d3140c37c608bc7f7"/><file name="Tree.php" hash="53e2d92746d7a89bea899b6f58b1b44d"/><dir name="View"><file name="Container.php" hash="6e0b3f53aafa4ee3ab33476a3bdbd8f2"/></dir></dir><file name="Widget.php" hash="6f71f7e1f3a26b3667ff3a5798476645"/></dir><dir name="Controller"><file name="Action.php" hash="da0d300fbd985274fdae3086855c5ef2"/><dir name="Report"><file name="Abstract.php" hash="abb884d68adc772b564b27643f2658bf"/></dir><dir name="Sales"><file name="Creditmemo.php" hash="37f6ff2e83a033113e16fcf857bcad48"/><file name="Invoice.php" hash="6e0cbce4e69714992dbe2d85d3398bdc"/><file name="Shipment.php" hash="693571bf5151da0f0968aca8352f072b"/></dir></dir><file name="Exception.php" hash="42c0d7cdf1d7289ecb11eee94cf83f59"/><dir name="Helper"><file name="Addresses.php" hash="d5898bb959f8f84f5255132616cf407a"/><dir name="Catalog"><dir name="Product"><file name="Composite.php" hash="1bce61be2e3c498573e4e29ecdabf9a7"/><dir name="Edit"><dir name="Action"><file name="Attribute.php" hash="47402d75fac97c35cb2b3bd8a29f7bef"/></dir></dir></dir></dir><file name="Catalog.php" hash="ac10dc4cf315c853a15936f9ceaaaf59"/><dir name="Dashboard"><file name="Abstract.php" hash="7a54ac60b304c12b0023de8ad4be6451"/><file name="Data.php" hash="6d443f6cd29930b8cc5314d9fcc6e698"/><file name="Order.php" hash="4415361c475dd3a4f4441d6e389570cb"/></dir><file name="Data.php" hash="1ad3490734a01ba97ad080103e7a8aba"/><file name="Js.php" hash="4b85412adebcdab1cc0e19fdfb718a82"/><dir name="Media"><file name="Js.php" hash="28cc803d35294b176a06d7c4c3b5d9cc"/></dir><file name="Rss.php" hash="052c6e8aa80b1eafe287c63760ab6c16"/><file name="Sales.php" hash="e2080e2d79da485ddef1eca327ee3689"/></dir><dir name="Model"><dir name="Config"><file name="Data.php" hash="b510db713936630aad46adebbed242b5"/></dir><file name="Config.php" hash="405026a42f6ea963d895aa9b5633185e"/><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="1e8efa732d5cc70b8e8384cded840101"/></dir></dir><dir name="Email"><file name="Template.php" hash="85c0784429dcd487b8736d45ae7c9802"/></dir><file name="Extension.php" hash="ac9c50be8302cd5f62b13140c80c44f4"/><dir name="Giftmessage"><file name="Save.php" hash="96e29ea18b727ea0463ab85a45e1b3a8"/></dir><dir name="LayoutUpdate"><file name="Validator.php" hash="4ca77d6594beedb15fc7c48386b51e69"/></dir><dir name="Newsletter"><dir name="Renderer"><file name="Text.php" hash="7f5196a3444586211cb5cf992fc42a9e"/></dir></dir><file name="Observer.php" hash="4003e61d738d61e05508a054a1e7eacd"/><dir name="Report"><file name="Item.php" hash="58e9cce36de177ce0714a08386ade27c"/></dir><dir name="Sales"><dir name="Order"><file name="Create.php" hash="50cdeb127f6498ae2eae48877ecf7fa6"/><file name="Random.php" hash="1d7c10e2a70c3e3497925d119b9110b1"/></dir><file name="Order.php" hash="934e509c2f7eda6dfd7599101a137890"/></dir><dir name="Search"><file name="Catalog.php" hash="b7347ddfd8ba47ad81e2d1cccff39e2c"/><file name="Customer.php" hash="a2c64d3edf6d1088186805bd2929ccda"/><file name="Order.php" hash="154103fcf829fd88e7277ef68cea8be4"/></dir><dir name="Session"><file name="Quote.php" hash="45f80a6bc20fd2db8bef478b6c3d4d5b"/></dir><file name="Session.php" hash="b2f0c6fd32fb1a292cf594482112f628"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Admin"><file name="Custom.php" hash="a786fc0d00c05076ff865874f3b71339"/><file name="Custompath.php" hash="1d9d3d2e3a162ad364d27bdefd346751"/><file name="Observer.php" hash="273ebe39469cf425cae2b0038ac03360"/><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="28a6cc96dfc8360288de952ed88659aa"/></dir></dir><file name="Usecustom.php" hash="e433585a7f3807c61e2252e2135b4bc9"/><file name="Usecustompath.php" hash="568c986af9a6fe3fd3a5f9a94d3eb569"/><file name="Usesecretkey.php" hash="aa9dad243bb8e716d88b5002088b3d56"/></dir><file name="Baseurl.php" hash="f3cdcb1eaa844120cc17cf281d7c25c4"/><file name="Cache.php" hash="0fc4caa5d8bbac2d813dc8dc14609b9b"/><dir name="Catalog"><dir name="Inventory"><file name="Managestock.php" hash="4e7f3dcd0fff0e1297698b83d1f2c54e"/></dir><dir name="Search"><file name="Type.php" hash="8b12c439e0514472a9e11e3f86ff74f6"/></dir></dir><file name="Category.php" hash="0c717c880913f4206c7335881ad065c9"/><file name="Cookie.php" hash="51543f9a99e219bbd7b6aa5a80ea4814"/><dir name="Currency"><file name="Abstract.php" hash="6a7fd57e1e4b47925a1bca3c81ec3c91"/><file name="Allow.php" hash="65589ab7c385779a26f27d4a5f6a4865"/><file name="Base.php" hash="0df982844039a5a9100261ef10a367f7"/><file name="Cron.php" hash="1d025366019053274c6f8fbc828e7556"/><file name="Default.php" hash="acf39c831864f0856de1c6d7f3bd9af9"/></dir><dir name="Customer"><dir name="Address"><file name="Street.php" hash="bbfe9ef3f07c334cd76b71a138e54157"/></dir><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="0462e88ff44995cc0639cdc391711d8b"/></dir></dir><dir name="Show"><file name="Address.php" hash="86e26388941cb5b7010378a95dadd9fa"/><file name="Customer.php" hash="de4e7f57129252d7726a40d9b7c402d5"/></dir></dir><file name="Datashare.php" hash="7ff8327ca76599f1dc8649bebd3e9479"/><dir name="Design"><file name="Exception.php" hash="46cef901f2b7a194582f90614a749feb"/><file name="Package.php" hash="72751ac2157958dc3a63cf085102ecc7"/></dir><dir name="Email"><file name="Address.php" hash="2779138c3140fc82e2aa04c80df54056"/><file name="Logo.php" hash="27a967be2d569ea58e1da6154b9438c3"/><file name="Sender.php" hash="fe1369a75ec8fcf0af8da37fcaf9edb7"/></dir><file name="Encrypted.php" hash="def86f2e104e9fcd12e6b9962fc946c8"/><file name="File.php" hash="1c8a2cc467362931b8c5e1ad2806d142"/><file name="Filename.php" hash="73ab60610920c70c6d234468a6f63b4e"/><dir name="Image"><file name="Favicon.php" hash="9be883df573aecea0b837b235b96131c"/><file name="Pdf.php" hash="a886d035ad47ddc9ca556a7a73fd34d7"/></dir><file name="Image.php" hash="f6de102b6c0f99406884703ea4ae98a6"/><dir name="Layer"><file name="Children.php" hash="0c830a16007e86cac91ec85dbf3bc0d9"/></dir><dir name="Locale"><file name="Timezone.php" hash="f117bc11a7b44a4ba5b8dd555caeaab2"/></dir><file name="Locale.php" hash="b04471798a39f658c37149cad08bacac"/><dir name="Log"><file name="Cron.php" hash="be57829559872b47ae6839c2a495ada6"/></dir><dir name="Price"><file name="Scope.php" hash="c6dce6c6cba73413a4ed369576fa1824"/></dir><dir name="Product"><dir name="Alert"><file name="Cron.php" hash="00ef1c710539af2e2614d3a319cca642"/></dir></dir><file name="Secure.php" hash="0a67d1b7e41b9a97863501eaf12bdb01"/><dir name="Seo"><file name="Product.php" hash="7bc5eea60caa26c0f432049f4020543b"/></dir><dir name="Serialized"><file name="Array.php" hash="d651a741737dbe488c27cde892cc5e62"/></dir><file name="Serialized.php" hash="397aaecdaa28449dd54a33612a8470ad"/><dir name="Shipping"><file name="Tablerate.php" hash="be8ff34755af5b194ecd5aa2827b079f"/></dir><dir name="Sitemap"><file name="Cron.php" hash="bc8dc086c927ce301ccf5418fe845500"/></dir><file name="Sitemap.php" hash="5b94401490edffcc533bcdead7f80e9a"/><dir name="Storage"><dir name="Media"><file name="Database.php" hash="1bcb00b6151e708d346d7d7d5cdec7eb"/></dir></dir><file name="Store.php" hash="6d2f26292c18301e2a665fb9eae4cf8d"/><file name="Translate.php" hash="1e09592c9e8853c95d597d37684047ac"/><dir name="Web"><dir name="Secure"><file name="Offloaderheader.php" hash="2b418ea757861e128152f3fdade1fd8f"/></dir></dir></dir><dir name="Clone"><dir name="Media"><file name="Image.php" hash="212ca0e022d345c421043ba9b539d848"/></dir></dir><dir name="Source"><dir name="Admin"><file name="Page.php" hash="ba504695aff01ebbf0535776b7e89cb8"/></dir><file name="Allregion.php" hash="0cfb9d86827c3cf30524572c0f2b75f8"/><dir name="Catalog"><file name="GridPerPage.php" hash="757ce3025e2158629b3ddd7665b66fd5"/><file name="ListMode.php" hash="5471fe4c28dfd67c9327cad319b66a2b"/><file name="ListPerPage.php" hash="8149c7f4aa4b17dac57f9f8486ba7729"/><file name="ListSort.php" hash="237d9c9ef6c397c3db7c101d0577dcb0"/><dir name="Search"><file name="Type.php" hash="376ba68ee5af7878f935bcb50cbe2d05"/></dir><file name="TimeFormat.php" hash="5a793bedcf1a38490efb398fb81981d5"/></dir><file name="Category.php" hash="ab4cef232dffd718b440e1dee62947c6"/><file name="Checktype.php" hash="b9fa1608483aa73a74d02835b77efdea"/><dir name="Cms"><file name="Page.php" hash="52d8e7aa95a4b434a459a8d39fb7f70f"/><dir name="Wysiwyg"><file name="Enabled.php" hash="7c338bd75929648a3774551b9b8047c0"/></dir></dir><dir name="Country"><file name="Full.php" hash="673369376c866479816e636488e5cebf"/></dir><file name="Country.php" hash="8991aeebf4dd69040339b3efca8f2427"/><dir name="Cron"><file name="Frequency.php" hash="5baedfbda17c7669124ca9a808014af0"/></dir><dir name="Currency"><file name="Service.php" hash="15415b710b34c2f62db7d84006ebdf75"/></dir><file name="Currency.php" hash="f543f09f0dd479ea11efabd7c36a43dd"/><dir name="Customer"><dir name="Address"><file name="Type.php" hash="554a221d8832efdbb62c7d9b8cfb8041"/></dir><dir name="Group"><file name="Multiselect.php" hash="0f1660a708c1a2231671993bd566cddc"/></dir><file name="Group.php" hash="fbe0b6f0dc2a93cb7f48a99260c2607c"/></dir><dir name="Date"><file name="Short.php" hash="e406dcdf2dd2c28ce05b4d26af403368"/></dir><dir name="Design"><file name="Package.php" hash="398386bca5cec59b0f51b2dfe078cf00"/><file name="Robots.php" hash="07f5b1359f7676b2a83ff43ced8533c7"/></dir><dir name="Dev"><file name="Dbautoup.php" hash="0cd0d0ebc8414b19e321fc2b68bb048c"/></dir><dir name="Email"><file name="Identity.php" hash="0894a34c40f9e4e6a1a2ca3c59fa966a"/><file name="Method.php" hash="3f7b383b0680343fb80cf8af28966810"/><file name="Smtpauth.php" hash="3903df81aac7f08dcb23fd74be63ed17"/><file name="Template.php" hash="30517ba80e26a1a276871fe7905865d3"/></dir><file name="Enabledisable.php" hash="0cfdf5276c1a6d17283e0003e2593292"/><file name="Frequency.php" hash="307b89a0d42964e0e787791baf296948"/><file name="Language.php" hash="cbdb5b9e8e8a4e360c0d9988b39c56c5"/><dir name="Locale"><file name="Country.php" hash="859fd457a5b6155d27dfbcdca2b0adb3"/><dir name="Currency"><file name="All.php" hash="965e21e0ff6155f4a308c0eda1996052"/></dir><file name="Currency.php" hash="b56edc6ed9b2bc70694af5b5017f53c2"/><file name="Timezone.php" hash="9848f14368bf80e6a0294165c4fa24e9"/><file name="Weekdaycodes.php" hash="11aa4437a53e32069decfbb0cf8b1fa2"/><file name="Weekdays.php" hash="8985c590255bd48224d64902e864b764"/></dir><file name="Locale.php" hash="4953c62bc6cbfbd2619bc8c158a09945"/><file name="Nooptreq.php" hash="638ac9118ff602672b79ee64cd60c866"/><dir name="Notification"><file name="Frequency.php" hash="a6e5078bf45d076829b577c6f7c80d14"/></dir><dir name="Order"><dir name="Status"><file name="New.php" hash="4678d5178a2491df9a56e3aa74f64126"/><file name="Newprocessing.php" hash="dbc8d5aeb4e53dbabe59fa4dbcc98e6f"/><file name="Processing.php" hash="c4327faeaca782b0820dcce81bfcf3fc"/></dir><file name="Status.php" hash="e491cfdf646198a56cd247a71c14ddc3"/></dir><dir name="Payment"><file name="Allmethods.php" hash="f64b0e502190ccf243ce72da62d4fa5b"/><file name="Allowedmethods.php" hash="537e93803a055335bfa73867ff7119ef"/><file name="Allspecificcountries.php" hash="83dc458e7d5e485be978d2cbd9fdee3a"/><file name="Cctype.php" hash="8bb1ab8b7e5a52216577be9011665c73"/></dir><dir name="Price"><file name="Scope.php" hash="14b6b798a429cf15bb981cfffdc12663"/><file name="Step.php" hash="3de9fb65380552625878a62624ae72a8"/></dir><dir name="Product"><dir name="Options"><file name="Price.php" hash="c6e0e569ff8747df78caba6f0b0005bb"/><file name="Type.php" hash="7b250c7f6536d66d8c32f41a76f87768"/></dir><file name="Thumbnail.php" hash="4be3e9efb5865ba886b557d2cdc498c6"/></dir><dir name="Reports"><file name="Scope.php" hash="c7cc0d4733dbc03ae602291c28f22564"/></dir><dir name="Security"><file name="Domainpolicy.php" hash="20dc2d2262f98e7c19da75973a0e475e"/></dir><dir name="Shipping"><file name="Allmethods.php" hash="ca3dd0ea42b019d0c1e0b7afee647aea"/><file name="Allowedmethods.php" hash="a8a774037e28625a787b5c145d617748"/><file name="Allspecificcountries.php" hash="6f36d3d3386e606a8e267bb4f81643b4"/><file name="Flatrate.php" hash="2140f5fdaf907b686c1f0e046e5a3ee1"/><file name="Tablerate.php" hash="1d89bda35b050c780b4eff60069bd783"/><file name="Taxclass.php" hash="520bea479b158df586ef75b451ee401c"/></dir><dir name="Storage"><dir name="Media"><file name="Database.php" hash="7230018de56284adaa473ca595699987"/><file name="Storage.php" hash="1fe005a52f73003382cee500163c3381"/></dir></dir><file name="Store.php" hash="3bb5b185dde903266302516187420d1e"/><dir name="Tax"><dir name="Apply"><file name="On.php" hash="a4b614965399b9a82930c844c30c5f95"/></dir><file name="Basedon.php" hash="588014341d1110cd444a1081040f95ba"/><file name="Catalog.php" hash="7481bc3038347fd7c32e928faeff661d"/></dir><dir name="Watermark"><file name="Position.php" hash="90204d3c63e7e49e1a7a8f441bfd62ea"/></dir><dir name="Web"><file name="Protocol.php" hash="67b7e1971be82745fa7eadf12517b7c6"/><file name="Redirect.php" hash="ae8d97d70f731b87e1f0645d4de3cbb0"/></dir><file name="Website.php" hash="903991493080556d8981e5e7734d1eb2"/><file name="Yesno.php" hash="af2ebc7bafc30d642276b4d832d6c2f4"/><file name="Yesnocustom.php" hash="b561a3f702017cc0d4f3fe1ad37e3c04"/></dir></dir><file name="Store.php" hash="974ba5d595df66dfb962ccbc077b8d8d"/></dir><file name="Url.php" hash="fb31a3cfdcf20c8b5c0e9edca98cd68d"/></dir><dir name="controllers"><file name="AjaxController.php" hash="9d1717f0c0d1c5b675558874de22b533"/><dir name="Api"><file name="RoleController.php" hash="542226bb78dcdbec58bde343ca66c4cf"/><file name="UserController.php" hash="fcc29548f76f1abc38bb7ba644762301"/></dir><file name="CacheController.php" hash="1a65775513f4dcb611eb122916e7f65e"/><dir name="Catalog"><dir name="Category"><file name="WidgetController.php" hash="911d2506363ac1095a9e373ea1d94496"/></dir><file name="CategoryController.php" hash="f9d88046e69f5f953173625d25c09a3c"/><dir name="Product"><dir name="Action"><file name="AttributeController.php" hash="dbaad06d054c15364ca71d60f06f76ea"/></dir><file name="AttributeController.php" hash="334233713b727ee2e16f04722accbe38"/><file name="DatafeedsController.php" hash="5b499ea55f20ea3c446cd53f580d3675"/><file name="GalleryController.php" hash="c031bdda833161df525edd44303a6c88"/><file name="GroupController.php" hash="9f708c19e4adbd6c948bc4a9758f4ccc"/><file name="ReviewController.php" hash="1f60a17dccddb71cacd8ffdb1d0cee4b"/><file name="SetController.php" hash="0854f88fe6e0de7b0536ca29a1c9abe5"/><file name="WidgetController.php" hash="7316b3ed1d44302836da441e4f9d7239"/></dir><file name="ProductController.php" hash="16251515f677c746e32369c77d64daac"/><file name="SearchController.php" hash="8abba1cd80d21dfcdd1a6908c504d48a"/></dir><file name="CatalogController.php" hash="86440f23c9c2e4b1fde91316f4c54d44"/><dir name="Checkout"><file name="AgreementController.php" hash="9dce9b48cda29a8f02750c016ce92a05"/></dir><dir name="Cms"><dir name="Block"><file name="WidgetController.php" hash="ce2a76c7cbbe726701f714cc7ea84212"/></dir><file name="BlockController.php" hash="6f015ebaf8c445626690f2de6df264cd"/><dir name="Page"><file name="WidgetController.php" hash="7e8a91736f54189d042d90f34aca0238"/></dir><file name="PageController.php" hash="35743bab99b0e53f682f65a50c7e8c5f"/><dir name="Wysiwyg"><file name="ImagesController.php" hash="bca46a9c1b71d3f33f7e2899052f8eb3"/></dir><file name="WysiwygController.php" hash="d5b0eb6430bf745a13404ce8acc0e75d"/></dir><dir name="Customer"><dir name="Cart"><dir name="Product"><dir name="Composite"><file name="CartController.php" hash="2b055439058d3ec4f137361d4260692f"/></dir></dir></dir><file name="ConfigController.php" hash="27134759095dfe33e71271048e6354be"/><file name="GroupController.php" hash="419a9ed2b7ae21087a0dd00a84745985"/><file name="OnlineController.php" hash="4923f3a3d9531efcc815cb0ba5c457d6"/><dir name="System"><dir name="Config"><file name="ValidatevatController.php" hash="688f0ea9270e020deb97d8fdbd120af2"/></dir></dir><dir name="Wishlist"><dir name="Product"><dir name="Composite"><file name="WishlistController.php" hash="4059aa93cb24bf517220362ed5be212a"/></dir></dir></dir></dir><file name="CustomerController.php" hash="97f298ae79d456a1e511ccb7bb0ccd11"/><file name="DashboardController.php" hash="ecf7d4c22f91631a683f2070c1434401"/><file name="IndexController.php" hash="b93867e25f2483ec8461b627fb47bd44"/><file name="JsonController.php" hash="fdb2b4d3ecd6cc1998d1bd621b68f8a3"/><dir name="Media"><file name="EditorController.php" hash="2cddf6ce96d9fd2bbd76ade9c0b1a4a9"/><file name="UploaderController.php" hash="735340a7e2d29619bf8cee9d9423e3de"/></dir><dir name="Newsletter"><file name="ProblemController.php" hash="b595f605a0941247f29b17cd587b8c5b"/><file name="QueueController.php" hash="0fb8063726b7a1352ad85e8700b65c57"/><file name="SubscriberController.php" hash="ebd8ac6b0b286655f46ba2ceaca55c3a"/><file name="TemplateController.php" hash="e25c7c17d3342530b4a2c5f4326d9897"/></dir><file name="NotificationController.php" hash="fb20d43a014fc41923357f74e337aed8"/><dir name="Permissions"><file name="RoleController.php" hash="7a0e56f801a71f4f908d0d04d4fa3850"/><file name="UserController.php" hash="d9d4fdddec1b4623d67265b5c3faf34d"/></dir><dir name="Poll"><file name="AnswerController.php" hash="26a579fbfd0555d8dc99178e25c7654e"/></dir><file name="PollController.php" hash="98569c83be3276ec1a5797f25f1fe4be"/><dir name="Promo"><file name="CatalogController.php" hash="a95e80209e4261b2cbcaafe7b4953849"/><file name="QuoteController.php" hash="4200eb22f7fed481c951d8e4aacf04f7"/><file name="WidgetController.php" hash="8d78a3c25df1efa09432623ee310c1ac"/></dir><file name="PromoController.php" hash="58027b59ab52b59e84b2befe223d64a0"/><file name="RatingController.php" hash="204ec6756cd23ba80d3fc607c16060d2"/><dir name="Report"><file name="CustomerController.php" hash="c9c4dd4cecebc0c28cf64f9c3f306551"/><file name="ProductController.php" hash="1324f43ff057047df9e6ce0659f4ed30"/><file name="ReviewController.php" hash="93205a3e730d56dfe24704158280038c"/><file name="SalesController.php" hash="311d14c8d3a9f7a68a89f98dcdb3e3ef"/><file name="ShopcartController.php" hash="14a6ca6c52339734cc251b9cd2d4a654"/><file name="StatisticsController.php" hash="f702c8e2fc6073cda701692c5bc05bff"/><file name="TagController.php" hash="f4b0cba41c30eed2b59f948fb87e7232"/></dir><file name="ReportController.php" hash="374d99da6ef9186d7bc62ff8ffc3ca15"/><dir name="Rss"><file name="CatalogController.php" hash="84c5853975a62ed59a170c774ca35320"/><file name="OrderController.php" hash="b9c5e0858dd272958aca4e438489c379"/></dir><dir name="Sales"><dir name="Billing"><file name="AgreementController.php" hash="9aadbe66720102044ea8f450186b4a8e"/></dir><file name="CreditmemoController.php" hash="e6d5fb30eeaf5714cc55114a8f40cec7"/><file name="InvoiceController.php" hash="6b500c2d7bdcd428be74650fd11d37da"/><dir name="Order"><file name="CreateController.php" hash="42e6c0d8f4fe90df8336b4547293764f"/><file name="CreditmemoController.php" hash="96d814a8435e4f76a1a87846dea788f5"/><file name="EditController.php" hash="7136420bd9f164ef4ea0f0e96058ca3a"/><file name="InvoiceController.php" hash="b6e5d0b4348a428bcfc7ed4512f72b11"/><file name="ShipmentController.php" hash="23aba99f22eef60f0bdd9e669a575e3c"/><file name="StatusController.php" hash="171b04b91e640570938301e412fadb21"/><dir name="View"><file name="GiftmessageController.php" hash="ed2396bd00f98d04539107f5aff5697b"/></dir></dir><file name="OrderController.php" hash="6e5b964cace622eb223e757c189d2826"/><dir name="Recurring"><file name="ProfileController.php" hash="1b74015c8878e6adfec710f5363c88ba"/></dir><file name="ShipmentController.php" hash="a52675b494fbd1550e71f54143bcb55c"/><file name="TransactionsController.php" hash="b3fb548b0e947c60fc5a2b22a1b14426"/></dir><file name="SalesController.php" hash="34b7778d7466c101b695e431c0c0b121"/><file name="SitemapController.php" hash="f62e81d10cfb21c0dc465a25f75df5ad"/><file name="SurveyController.php" hash="f2005c87f3bbcc32ced55d2c2aa374ee"/><dir name="System"><file name="AccountController.php" hash="9dae9d42aad6961a0a3b4d46a9cdb297"/><file name="BackupController.php" hash="a3f7f4fb51b5dd42cae9206bea50d3f5"/><file name="CacheController.php" hash="cb3204aea3fe735dcdf982457bd9aaa4"/><dir name="Config"><dir name="System"><file name="StorageController.php" hash="83a3df901c7cca76bf326a0d8035d997"/></dir></dir><file name="ConfigController.php" hash="f8d32559f18d4d958a29c3ef1254117b"/><dir name="Convert"><file name="GuiController.php" hash="2ead96045879a5d07cf75530684c4a4f"/><file name="ProfileController.php" hash="2b1d123695fd3c031cd5925379aa7443"/></dir><file name="CurrencyController.php" hash="34ccb45bdee9b025fdaaa362b456aae1"/><file name="DesignController.php" hash="3a09344172502dbdf6b6f94b7a597baa"/><dir name="Email"><file name="TemplateController.php" hash="1be1e47ab4c1d90e90fa4a691f69211b"/></dir><file name="StoreController.php" hash="fdb1d7167ad75383630b91d561ce4bc1"/><file name="VariableController.php" hash="c38bc08c88979bb9643643a8bea183e1"/></dir><file name="SystemController.php" hash="498dd6cfa14168ba2765a0d8d3240a7c"/><file name="TagController.php" hash="c2941d83f2ddc5ba6f20789c573dd08c"/><dir name="Tax"><dir name="Class"><file name="CustomerController.php" hash="676f49f71adad524b1b1f0b018c556d2"/><file name="ProductController.php" hash="7a3820b2c70fe2fa35513496c3bf3b49"/></dir><file name="ClassController.php" hash="39bd325cd1a1a77e431f6dde68849856"/><file name="RateController.php" hash="341af76297ca3fd38e2b8943dc2b8c1f"/><file name="RuleController.php" hash="4f7923a77d6d1dc92fc88b1a9dd9690e"/></dir><file name="TaxController.php" hash="3b86fbf064988b2f3e586ebbe62a2bd6"/><file name="UrlrewriteController.php" hash="a94e158b53ec40dc91cf5ee7e27489ac"/></dir><dir name="etc"><file name="adminhtml.xml" hash="e58780349c8f14a9efbfac2aa3008add"/><file name="config.xml" hash="cf9177d143ff59ee422f0e9334430126"/><file name="jstranslator.xml" hash="e2cb3c7d764d22426def080f85047ac5"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Adminhtml.csv" hash="1b3bba2c79296587dca8aa61cf562280"/></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.2.1</min><max>1.9.2.1</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1.2</min><max>1.51.1.2</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.9.2.1</min><max>1.9.2.1</max></package><package><name>Lib_LinLibertineFont</name><channel>community</channel><min>2.8.14.2</min><max>2.8.14.2</max></package><package><name>Lib_Js_TinyMCE</name><channel>community</channel><min>3.5.11.1</min><max>3.5.11.1</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Adminhtml</name>
4
+ <version>1.9.2.2</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.2.2</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2015-10-27</date>
14
+ <time>13:47:04</time>
15
+ <contents><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><file name="Abstract.php" hash="db8a6d87e8d6195dfbd6ccd49a7c9fde"/><dir name="Api"><file name="Buttons.php" hash="7f48f3875926448eb77c0c76fb54de9e"/><file name="Editroles.php" hash="da1e3da8fbe5e215ae2df6004181e75c"/><file name="Edituser.php" hash="c838ec2061a19dccb7acd686062c4a27"/><dir name="Grid"><file name="Role.php" hash="ac56711153ea6741de27b87e4310bfd8"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="04ae6260bf538170817f10b761ddfbd3"/></dir></dir><file name="Role.php" hash="cabc160cb511b01e220c099eac635eda"/><file name="Roles.php" hash="b8f3afd227e6b1fef852c7c4c1b23b3d"/><dir name="Tab"><file name="Roleinfo.php" hash="e7e6980795750bf64db92768817d5248"/><file name="Rolesedit.php" hash="24efaf59baa229aec86f8a2ffa5ea3a3"/><file name="Rolesusers.php" hash="209f9b14ad7f5dee3cde549b2d894fb2"/><file name="Userroles.php" hash="0b180ac545ab8b35e797f8a27b5239cd"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="96de8fa689018da3ee7d3b59bd2e0209"/><dir name="Tab"><file name="Main.php" hash="0db4e785f20a25e3a45f8263a3dfb693"/><file name="Roles.php" hash="d92b85bfbe888d7c3f4f4d38bee56259"/></dir><file name="Tabs.php" hash="d6324d4b86b542c123842f5ca5ad6813"/></dir><file name="Edit.php" hash="32f177865dea2fdf22639dd50f2b78e4"/><file name="Grid.php" hash="8a535fdb35ee0020af1060fbe6ef193c"/></dir><file name="User.php" hash="0b7d6e24402a27e30fd78f4ad2be92bf"/><file name="Users.php" hash="8ecdfaf04af54aaa33852054b4e25d0e"/></dir><dir name="Backup"><file name="Dialogs.php" hash="5be3fe030982f3e46e31ea409193be26"/><file name="Grid.php" hash="0529c7ec86da80237381b33490648c7e"/></dir><file name="Backup.php" hash="72a8e07fa25684c8166bb22e47c085ea"/><dir name="Cache"><file name="Additional.php" hash="e8dd51b51d17b65cf72c367d7ac042d7"/><file name="Grid.php" hash="3ab87151ed29fea4184c82210d0c0ebc"/><file name="Notifications.php" hash="44925767b9deda7e6629f32b8caefa82"/></dir><file name="Cache.php" hash="5fd37f4231169464bbd0b847fab6a125"/><dir name="Catalog"><dir name="Category"><file name="Abstract.php" hash="d61f4055d2bc549040b156bd21d02498"/><dir name="Checkboxes"><file name="Tree.php" hash="df657dfe2293de289de261cfb1295f2c"/></dir><dir name="Edit"><file name="Form.php" hash="f86c8932ebf4971384047e027e9030a9"/></dir><file name="Edit.php" hash="d5b9f93582ca93a3098ab95fb0f41099"/><dir name="Helper"><file name="Image.php" hash="ca377d175f1d88a7fda4a6c50c37604d"/><file name="Pricestep.php" hash="0f9f3289bb54ebce198563d9c406fb1c"/><dir name="Sortby"><file name="Available.php" hash="61bb9552c6ce97658eb9aaa420b5f019"/><file name="Default.php" hash="8c941da9ffc4505633b2ad0f6847e5ef"/></dir></dir><dir name="Tab"><file name="Attributes.php" hash="14fd18b3c46b8769c640621cb53dbc8e"/><file name="Design.php" hash="d998df9996bdc14580576f38c0a443f8"/><file name="General.php" hash="7a58936080a9072ffa973d1cc8a999e9"/><file name="Product.php" hash="c210e69c1a9df9537fea568c0b155c2e"/></dir><file name="Tabs.php" hash="df64111032c5c690539a6214325007d4"/><file name="Tree.php" hash="f22394b09e11ed35ad8b4f87d5dbf693"/><dir name="Widget"><file name="Chooser.php" hash="b075edcc53cc83eaf9265aa605ef9923"/></dir></dir><dir name="Form"><dir name="Renderer"><dir name="Attribute"><file name="Urlkey.php" hash="f312b0caeea88baa8c3bc3dd39e8ed38"/></dir><dir name="Config"><file name="DateFieldsOrder.php" hash="d9e65ec2b3cd04d6dac5a331132f3768"/><file name="YearRange.php" hash="e294e9eef313502492db96c5a850fe8e"/></dir><dir name="Fieldset"><file name="Element.php" hash="116b13cf6bf490fdd6e81af04459bfea"/></dir></dir></dir><file name="Form.php" hash="6420e5be5771f080669f7e958a7ad528"/><dir name="Helper"><dir name="Form"><dir name="Wysiwyg"><file name="Content.php" hash="6c6d5327a50a8c9514da1fb6a55d45d2"/></dir><file name="Wysiwyg.php" hash="1c2b6f045719139c3c505eac8c6280b4"/></dir></dir><dir name="Product"><dir name="Attribute"><dir name="Edit"><file name="Form.php" hash="4a166ed0414db01979a6fc7c92286fec"/><dir name="Tab"><file name="Front.php" hash="b89db9d50c635e237ecdeff5e1b91da2"/><file name="Main.php" hash="87568faa95baab7f2499517771eaa50b"/><file name="Options.php" hash="86c361f2f3bb94e19103c75be958414f"/><file name="System.php" hash="57664184dbc901f5293b0b6a275e5f4e"/></dir><file name="Tabs.php" hash="d06505ae484318612fe138fecde32f88"/></dir><file name="Edit.php" hash="b5470afa6ad93e4ce5ed237e5b3d9629"/><file name="Grid.php" hash="d18446b00f746e1acb8905a918ff05cb"/><dir name="New"><dir name="Product"><file name="Attributes.php" hash="ac0671421d2e5241772b8a7be6e945aa"/><file name="Created.php" hash="6f88440198c1b0570ae5a0c27c5b006b"/></dir></dir><dir name="Set"><file name="Grid.php" hash="3c73a5cceaf0bf32924295f55608f20c"/><dir name="Main"><file name="Formattribute.php" hash="edb6f73553490c1dd7dbb80e770191de"/><file name="Formgroup.php" hash="a9fc12faece9cbab96fb5d7cf17ceaa2"/><file name="Formset.php" hash="5a681d7df45787a0225059a5dae2f367"/><dir name="Tree"><file name="Attribute.php" hash="3284b0584455c6a86c84ee4fb538b2a1"/><file name="Group.php" hash="a2dea3100eb457b932592f8b76701f05"/></dir></dir><file name="Main.php" hash="3f25a2e514e230547a16ec564d086ed8"/><dir name="Toolbar"><file name="Add.php" hash="0e597054b696bf7191a2504271adb7fe"/><dir name="Main"><file name="Filter.php" hash="fd809aae3a8cb9266b9e807752e6a08d"/></dir><file name="Main.php" hash="d7b35a8a52a823c147a460310c4e2604"/></dir></dir></dir><file name="Attribute.php" hash="20e325d050d4874bb2824b816b2c9503"/><dir name="Composite"><file name="Configure.php" hash="fa23a712ab6357b1c61baebd98a257cb"/><file name="Error.php" hash="e3f15ba4871c6d66b460b99ebc08209b"/><dir name="Fieldset"><file name="Configurable.php" hash="8acf26fd12862a5fe70d2b1d6e3ee148"/><file name="Grouped.php" hash="c142e11927ac3503ac91a09a797158a7"/><file name="Options.php" hash="16a52270f97f8252efe3fe91d091ecd7"/><file name="Qty.php" hash="1a16b296f9943efb1917c3519fd97008"/></dir><file name="Fieldset.php" hash="378f0abb5753c20ea1a47f48b0baa09d"/><dir name="Update"><file name="Result.php" hash="8ab6d2db1b33953de620aa7c2acff798"/></dir></dir><file name="Created.php" hash="99807e306c2685872b8ccebb58b11403"/><dir name="Edit"><dir name="Action"><dir name="Attribute"><dir name="Tab"><file name="Attributes.php" hash="11ef1746f03b542e1ccb0fd7c0ddd817"/><file name="Inventory.php" hash="b5232d3ce334748df4f79c883477ca27"/><file name="Websites.php" hash="99640b8e0dda755dd169c15146d3e265"/></dir><file name="Tabs.php" hash="d8f753204428cb346bed729af7bc6089"/></dir><file name="Attribute.php" hash="de7b21f4e10374241f1e7e687eaa0329"/></dir><file name="Js.php" hash="0c4404a35b8d85d9e05a5e91d70fbe85"/><dir name="Tab"><dir name="Ajax"><file name="Serializer.php" hash="953e5164a8a4244ac98c81683ba72a42"/></dir><dir name="Alerts"><file name="Price.php" hash="6f638a0bcd4b6c541fbd719d63161138"/><file name="Stock.php" hash="d615ea9610241b62e19a757159d3fe3f"/></dir><file name="Alerts.php" hash="b29c655153f20121d64850d2d4702913"/><dir name="Attributes"><file name="Create.php" hash="3c72a1255876f101f2b0be27066dff0f"/></dir><file name="Attributes.php" hash="7759d911880455d578a3409f9b2398d1"/><file name="Categories.php" hash="c1127b74a381bcf57bd9a7257b4a3e9f"/><file name="Crosssell.php" hash="8a9933070db7f30daa632c4cbc0c06ee"/><file name="Inventory.php" hash="b4b07c43d245901f200f935e3e40843b"/><dir name="Options"><file name="Option.php" hash="95d23969b5de3937d8d86149cb670bac"/><dir name="Type"><file name="Abstract.php" hash="06f25476736c11c783ae92c2ccd934a3"/><file name="Date.php" hash="07212ba5433d2f855d4f3cc498d97db4"/><file name="File.php" hash="eb2b43ad195d1282c9e226e805bc5fb4"/><file name="Select.php" hash="d45c5b3f4df62604b615f663941c3eb1"/><file name="Text.php" hash="65e9f3fd83580906cc3c458311ba2c1f"/></dir></dir><file name="Options.php" hash="7920b68c4aa32f0542f5890ef5bd87d9"/><dir name="Price"><dir name="Group"><file name="Abstract.php" hash="36c96810ba8b01ab8bdc3291a6c84fd9"/></dir><file name="Group.php" hash="d66f772c8a870328f7d7b2cb393a626c"/><file name="Recurring.php" hash="fd4a54a5a7e3355eb64a70f3857174de"/><file name="Tier.php" hash="5bf23811bc6bb2354af3353464e23d23"/></dir><file name="Price.php" hash="528e785442d4a3a11ef8e3093f416e6c"/><file name="Related.php" hash="c28cabbade92184b5fb44496925fb25f"/><file name="Reviews.php" hash="b337ea393c537c30baed61fd1d7a0c35"/><file name="Settings.php" hash="b34b153636952172b8ece172689db4c3"/><dir name="Super"><dir name="Config"><dir name="Grid"><dir name="Filter"><file name="Inventory.php" hash="5e44686b538005b5cc446a89c1af44a9"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="60b0ec1e8503a4e9a263771f318a9da2"/><file name="Inventory.php" hash="0292a2c9586775723286663bc2bcd63f"/></dir></dir><file name="Grid.php" hash="ac0d33818ff7f994b882ac0c32eff9e9"/><file name="Simple.php" hash="8dad4e2bd0a5d06c12d1080487994c56"/></dir><file name="Config.php" hash="e27114e600464ab1bab08328b518f3b9"/><file name="Group.php" hash="f701658d6191eb94e24c5c5ab664a0aa"/><file name="Settings.php" hash="2c7198e22fa4b82e7811f9051ad7fba1"/></dir><dir name="Tag"><file name="Customer.php" hash="a46ae7e8358425efcd4972e92f0ee703"/></dir><file name="Tag.php" hash="50f3a84957517031ff6534171457450a"/><file name="Upsell.php" hash="c764efaee95ae84267e60f63b61737eb"/><file name="Websites.php" hash="662c1b0a5f996b90dd65c423ef764c6d"/></dir><dir name="Tabs"><file name="Configurable.php" hash="a1b9a912a5162229930e5c1a8b571199"/><file name="Grouped.php" hash="9d1c98d9488d1fb6065f084bc2e3bd41"/></dir><file name="Tabs.php" hash="eeaa9abeb69c9c7da71bfb61a66062bd"/></dir><file name="Edit.php" hash="95488baf642eb127acb4750a06a44c79"/><dir name="Frontend"><dir name="Product"><file name="Watermark.php" hash="f860ca4fce75c7f2e04828adb36ecf09"/></dir></dir><file name="Grid.php" hash="035f30966024149a9cd96dcaffc75c97"/><dir name="Helper"><dir name="Form"><file name="Apply.php" hash="19ab67161d7b2bdeb89716539800cb16"/><file name="Boolean.php" hash="2455bb6bcec8633db4dcddb03a92cbf2"/><file name="Config.php" hash="344b6f931aaab29816c5e0953a8859f3"/><dir name="Gallery"><file name="Content.php" hash="b05c65206543b96dda4afbc9f42d1992"/></dir><file name="Gallery.php" hash="45f73967a6f745edbdf68812409515d5"/><file name="Image.php" hash="d156482e33a48fcb26669a4075bf0ce8"/><dir name="Msrp"><file name="Enabled.php" hash="c971c214d244bc4a5da241c4f27f29fd"/><file name="Price.php" hash="2b1c575a9f1fdd3e9fda4a16f13b3df5"/></dir><file name="Price.php" hash="4ff6e8ae8f8c3aae26ddc36f27535a0a"/><file name="Weight.php" hash="4df0f08991a275b153b5e19927b97bf8"/></dir></dir><file name="Price.php" hash="467eddecf6bf70bf44d3ff745eae67a1"/><dir name="Widget"><dir name="Chooser"><file name="Container.php" hash="66f03c215bc0dd5b9d6a6eb96ac0bb0f"/></dir><file name="Chooser.php" hash="5d889f510fb3a8ac4069ae6c8d9109e2"/></dir></dir><file name="Product.php" hash="1545f7ae76bba62865d038035b56144d"/><dir name="Search"><dir name="Edit"><file name="Form.php" hash="02680118dda245440b7c27ec73bcc8db"/></dir><file name="Edit.php" hash="1a87ea10b890f11b78fc090d545eac7c"/><file name="Grid.php" hash="a19726fd46f910a32e50ec0d7a97602f"/></dir><file name="Search.php" hash="dac14c665dff744f1d46dbd7b09da0c6"/></dir><file name="Catalog.php" hash="01969e01f50378390309f8e47e0139f5"/><dir name="Checkout"><dir name="Agreement"><dir name="Edit"><file name="Form.php" hash="f0fb7abcbf7b5274fcd119290c12a52c"/></dir><file name="Edit.php" hash="7680f3329cc4932fa8224a118369af7f"/><file name="Grid.php" hash="df1cdd15be68b6b54a87e92824b9adf3"/></dir><file name="Agreement.php" hash="a4a2923edb19ac2cf8dff1ab62cb3aa4"/></dir><dir name="Cms"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="f97a55aaf798b4c2be36fe9ccdb83eae"/></dir><file name="Edit.php" hash="4c51f4601b7fe52cd8f24160dba2f0fb"/><file name="Grid.php" hash="ed97ef32c0c39fccdd7d4348eb6c2f4b"/><dir name="Widget"><file name="Chooser.php" hash="3dda4185c7b095ce466bd9ae082d64fb"/></dir></dir><file name="Block.php" hash="d706c30b1dc344f4517422233d569afb"/><dir name="Page"><dir name="Edit"><file name="Form.php" hash="11705f1fb07a9eec292a2ebfc467fcab"/><dir name="Tab"><file name="Content.php" hash="8cfab12bfdaeead6778732bff308de6e"/><file name="Design.php" hash="051ba7ca6caa9a3c55f26104e6ca9112"/><file name="Main.php" hash="15498bbe6a7f490f0776edfe48e8766d"/><file name="Meta.php" hash="25eba1b50a49a5d3af94b6930031245d"/></dir><file name="Tabs.php" hash="35493456448463c8813e80c8084c58ac"/></dir><file name="Edit.php" hash="9d8daa02dee01a27b8f544da7dd694d8"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="c22142eac195f17c54a83eed05c525a9"/></dir></dir><file name="Grid.php" hash="9688f9882d39401baaa9128b12543f88"/><dir name="Widget"><file name="Chooser.php" hash="8c2d060e0eb813191b7d0af8f26ec6ba"/></dir></dir><file name="Page.php" hash="5a2568f2765414ccd7412e7d7aac53ad"/><dir name="Wysiwyg"><dir name="Images"><dir name="Content"><file name="Files.php" hash="cc9073e2dead49582bb9d9af76650f33"/><file name="Newfolder.php" hash="be299191420395e59e29dcd8b457c911"/><file name="Uploader.php" hash="e421ed3de8acb7216c53e1e30db4d3ad"/></dir><file name="Content.php" hash="0c30c48298a8e04d0d2f2281b286779b"/><file name="Tree.php" hash="0bca04cb1f60ba15919be92cf775ede3"/></dir></dir></dir><dir name="Customer"><dir name="Edit"><file name="Form.php" hash="895a8a356144bd269562d3e9e7935021"/><dir name="Renderer"><file name="Adminpass.php" hash="e3681c5d2c0e11e7abc5b0a337071b16"/><dir name="Attribute"><file name="Group.php" hash="37e8da36bbd20879e4bc7908ddf1e4b5"/></dir><file name="Newpass.php" hash="15430660c1c8794027d180986b6b4586"/><file name="Region.php" hash="2db61e385836c0bca666e92ab2c375c4"/></dir><dir name="Tab"><file name="Account.php" hash="286063756cb08d0e5fbc53785d30deee"/><file name="Addresses.php" hash="5277c695f5c47a9caeb6713b37df3dda"/><file name="Cart.php" hash="96c4764d3be465a3a075a093c68b7008"/><file name="Carts.php" hash="c80dc1fc593d127df86bb34adefdecf7"/><dir name="Newsletter"><dir name="Grid"><dir name="Filter"><file name="Status.php" hash="e4d5a4f39c72ee4f768653512f487f7c"/></dir><dir name="Renderer"><file name="Action.php" hash="66aacefaf0e7a0b7a9808c5c18c02f32"/><file name="Status.php" hash="c4688ed586058562070824a056485e03"/></dir></dir><file name="Grid.php" hash="c3a2a7a3f8c0574d57eb36d48de58151"/></dir><file name="Newsletter.php" hash="eb7dc8491c02899b737e2eff02f8feea"/><file name="Orders.php" hash="1f147156ff86f7c205e0cd847a578f3b"/><file name="Reviews.php" hash="c73c1c7f09bbfdd66966f795aa89ee25"/><file name="Tag.php" hash="10898fb9d50af49c6d35ffdab0be8f24"/><file name="Tags.php" hash="c828d7f8c4c8a60cd209a1af0e5c3f64"/><dir name="View"><file name="Accordion.php" hash="1fee93d93adc83f3a7f72fbfb1f9fa08"/><file name="Cart.php" hash="9390e1a1b87ee474158a6190dfffe6ca"/><dir name="Grid"><dir name="Renderer"><file name="Item.php" hash="49e4d0cdab156b95e5836e460b4b77a1"/></dir></dir><file name="Orders.php" hash="64aaad635c672718f2cfba244f955da6"/><file name="Sales.php" hash="2e500104beea6ba298bef7a6dde4717e"/><file name="Wishlist.php" hash="8969dae5be454df95500ec36663de4a7"/></dir><file name="View.php" hash="52c833a07676ce7873c56d230048701e"/><dir name="Wishlist"><dir name="Grid"><dir name="Renderer"><file name="Description.php" hash="3bc7449283f8d401cb8149e8003bad9e"/></dir></dir></dir><file name="Wishlist.php" hash="0218157faa11e4626331399e6b1b7a90"/></dir><file name="Tabs.php" hash="a1e8e56891e557adcb22eaaba326b327"/></dir><file name="Edit.php" hash="b1beb646e9920447e855bf2a5d117eb5"/><dir name="Form"><dir name="Element"><file name="Boolean.php" hash="42d322631cdcfff4d1fecbfafbd47aca"/><file name="File.php" hash="d6d5a8fd90e51d5aabed7cfa6681f068"/><file name="Image.php" hash="db720c6a4707d511de88faaf6a7882d8"/></dir></dir><dir name="Grid"><dir name="Filter"><file name="Country.php" hash="bf0ac5f6970a5edd3e569713f445009f"/></dir><dir name="Renderer"><file name="Multiaction.php" hash="16ca6825e7de7c203e379a76785de4e0"/></dir></dir><file name="Grid.php" hash="2c41d1c7eaccfa19907cc7384455a4ad"/><dir name="Group"><dir name="Edit"><file name="Form.php" hash="fd551def4e3446d3a3e4defa67c33d6d"/></dir><file name="Edit.php" hash="c0223c3427d5978ffce30f79033074ed"/><file name="Grid.php" hash="6c03abf138a8f6f000f323cef4d8f1d7"/></dir><file name="Group.php" hash="066cd291a29933eeea6bef9a3cb81229"/><dir name="Online"><file name="Filter.php" hash="a41aa7cb1199a351d05de1822b33ce71"/><dir name="Grid"><dir name="Renderer"><file name="Ip.php" hash="a6cad710fae023e1f910e09fdf263e52"/><file name="Type.php" hash="50b958cbc71508df9ce8b0057e9cf9fa"/><file name="Url.php" hash="43ca835d1756e52ae4d78eef12d3c909"/></dir></dir><file name="Grid.php" hash="8fbde158a51a1e9460403b2090095d4e"/></dir><file name="Online.php" hash="c2de5a80df932fa2a7cd2654859f7883"/><dir name="Sales"><dir name="Order"><dir name="Address"><dir name="Form"><dir name="Renderer"><file name="Vat.php" hash="b160f5e4d3351c6f6bf6c7c4b37c5b72"/></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Validatevat.php" hash="12cf24eae1b66123115f2c9691c7d2ce"/></dir></dir></dir><file name="Customer.php" hash="5f2637c6f5cf1154f5d8a1863ec9358f"/><dir name="Dashboard"><file name="Abstract.php" hash="ba448edf5bf1a6d43f657638102598d5"/><file name="Bar.php" hash="b385d228fa7931e6f115303f0a4eff28"/><file name="Diagrams.php" hash="0e50fc4f357a60a5879de0cf49010a58"/><file name="Graph.php" hash="63d03812b28730ce3c97029843b81cab"/><file name="Grid.php" hash="ed4eb0468c29ae06a6ede2a136a04610"/><file name="Grids.php" hash="e6dc094dfefff2093bf9313b15fb9d0c"/><dir name="Orders"><file name="Grid.php" hash="601fb5e65df13005814b9a8293d5ceb5"/></dir><file name="Sales.php" hash="3c1397b226ecab3eb030b061d5fd22cc"/><dir name="Searches"><file name="Last.php" hash="dffdb9a4ef953c888d2d8f085b2b883c"/><dir name="Renderer"><file name="Searchquery.php" hash="8f225b6c230d6bd2fac053a307d451b4"/></dir><file name="Top.php" hash="0777797a00f874cf746d4b10091af78c"/></dir><dir name="Tab"><file name="Amounts.php" hash="fd411f1cc30ef9c6b03b852d05e2c0b4"/><dir name="Customers"><file name="Most.php" hash="b5f4ec2ca01b412c6559f06cb1a71ded"/><file name="Newest.php" hash="51e69bfd8ac59a49aa6d8f356e655335"/></dir><file name="Orders.php" hash="81b896dc93630721fa9facc22d7a2d70"/><dir name="Products"><file name="Ordered.php" hash="fdda2c8b97e10c1ac1c0b656d4281bec"/><file name="Viewed.php" hash="dbae63f344da0761389dcea44351a3ae"/></dir></dir><file name="Totals.php" hash="072423cf06f6f074251b1ccb44475119"/></dir><file name="Dashboard.php" hash="fccdaee9d98bfabf95ee7c5043db5bb8"/><file name="Denied.php" hash="dd832836f567335a768e841d8cc2e25f"/><dir name="Html"><file name="Date.php" hash="d4fca1e0f704707330a4907a48abd3a0"/><file name="Select.php" hash="2b3df78c9c3599585d5b77b2c2f8defd"/></dir><dir name="Media"><file name="Editor.php" hash="1a485bad3e0646de5aae8de045af46da"/><file name="Uploader.php" hash="0fdb6552ecfc49c469ed93f73d0f8511"/></dir><file name="Messages.php" hash="47ffa48527b0f5450d07337c55324655"/><dir name="Newsletter"><dir name="Problem"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="83cf48ce150ea30e6268497112b086a7"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="e899fb6bc5d3e3c569d32ff6f9f6ba75"/></dir></dir><file name="Grid.php" hash="4e92808903a5dc80b95f6a4b7a8b2133"/></dir><file name="Problem.php" hash="6b55c8cd077c330ba5ef7d82070af2e9"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="86048c674b219814e3fb837ba903e269"/></dir><file name="Edit.php" hash="54cb761c35e8a370aa258f80618ab18e"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="fb62027dafa2d16f1664e5d7b1782d18"/></dir></dir><file name="Grid.php" hash="9892b74de2df934ef973a11d08ef1ea5"/><dir name="Preview"><file name="Form.php" hash="14ef3f3003de4300b5cf08bf0aea6163"/></dir><file name="Preview.php" hash="27caa0319ae6dcbd36b9cbf3ef9a983b"/></dir><file name="Queue.php" hash="2ed431811fef6a54bb88491c28f1ccd8"/><dir name="Subscriber"><dir name="Grid"><dir name="Filter"><file name="Checkbox.php" hash="19195ccb3ff497f586c4efd41e0404e5"/><file name="Website.php" hash="9332f09ea1735047c343f81e899ecbe7"/></dir><dir name="Renderer"><file name="Checkbox.php" hash="538d650618b08601a99a91b7a06fd281"/></dir></dir><file name="Grid.php" hash="fc1306ca7d5446ce74e661fc940945f4"/></dir><file name="Subscriber.php" hash="f18c68f08ef9fcccc640aea542c70b5b"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="da659c75185b36a1dcd330736189ef7e"/></dir><file name="Edit.php" hash="a78f64e8abcaa9d9aeaf0b7b33096a46"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="438d52e4dc323e31db5212025dba8cfc"/><file name="Sender.php" hash="f07dd54995f69f4641d9ebf8deaf0503"/></dir></dir><file name="Grid.php" hash="c7fbb8b4aaf7cf19a7e594be984eb895"/><dir name="Preview"><file name="Form.php" hash="54d24557f9fb6be86fce75853d127824"/></dir><file name="Preview.php" hash="12fecd468f240be3782e99b9d64890c5"/></dir><file name="Template.php" hash="e440673d389d83d3826a42a4f4d22076"/></dir><dir name="Notification"><file name="Baseurl.php" hash="4986feec061f5f2d24892d7c591b44ef"/><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="89b692a0c9c3858441db6510d8a9fcb0"/><file name="Notice.php" hash="9cd024695ff39e14baa077323b8a70d3"/><file name="Severity.php" hash="2297680ddd076eb405196d76c49d7aaf"/></dir></dir><file name="Grid.php" hash="19f485947a9c49cd05cf811b10bb9804"/><file name="Inbox.php" hash="e7f697caa073532fca2070e8a9e5e7fb"/><file name="Security.php" hash="15c0cdcd3d8cca84d63702f7bc149623"/><file name="Survey.php" hash="0be88f2821b161029ddf41ecd5618007"/><file name="Toolbar.php" hash="fa33854ea2a94cfcd275a9d289d6769e"/><file name="Window.php" hash="2655b29415af92ebb98df6bedd87ebce"/></dir><dir name="Page"><file name="Footer.php" hash="034a5edd04b017f411a023c17b01e7c3"/><file name="Head.php" hash="c6a071766be4de11ad23905fd2995624"/><file name="Header.php" hash="6f8f7787ec82a8775c8b80e557fe8eee"/><file name="Menu.php" hash="b69320374b382adf21c908014c8f0838"/><file name="Notices.php" hash="401696a7db6ffcaabe9dd856f1ed1708"/></dir><file name="Page.php" hash="b57c638a7aab964ba5fbfe5b77ea79d8"/><dir name="Permissions"><dir name="Block"><dir name="Edit"><file name="Form.php" hash="64a6b541e741de490b7e0db3742e3438"/></dir><file name="Edit.php" hash="981d1a94caa53aeca14cdc84b075f227"/><file name="Grid.php" hash="d6923e6219ee1dcef1cd48a331463d37"/></dir><file name="Block.php" hash="cc5a83ae1c2c1925730df1173d8e7de4"/><file name="Buttons.php" hash="33a0f454644d4efe9e6f8c6b987c94f1"/><file name="Editroles.php" hash="a82348fdc5d6bab02634b2807fd380e7"/><file name="Edituser.php" hash="d35c31d9fd4d70a2efb79c4948d99001"/><dir name="Grid"><file name="Role.php" hash="6cea79256a4c0246da94dc2f65a238e8"/><file name="User.php" hash="981df94442032113ec92c59c1e260979"/></dir><dir name="Role"><dir name="Grid"><file name="User.php" hash="627a0e1ecdd1c9a3a4b2e9f3b8cefe2e"/></dir></dir><file name="Role.php" hash="74457137ddfab7e3f8a77fb7cdf8c8f0"/><file name="Roles.php" hash="5369f3fd597f99f743ae6e360613e0f6"/><dir name="Tab"><file name="Roleinfo.php" hash="820a5fd889f80c4109aa6926635f996c"/><file name="Rolesedit.php" hash="a48719fab0049c52e5201ecbcd7552e8"/><file name="Rolesusers.php" hash="65f8cf7b779680f98598c085f332bfb4"/><file name="Useredit.php" hash="007ad89a6486355f58db40fe99f78828"/><file name="Userroles.php" hash="0ded31ea47099ce64000b0c51d9f1e27"/></dir><dir name="User"><dir name="Edit"><file name="Form.php" hash="239da269efff9530af73d29d879bb1a6"/><dir name="Tab"><file name="Main.php" hash="5c5699742d51c912cbcee59255deee79"/><file name="Roles.php" hash="b7b0d34a2673565a0a981cbd9a16606f"/></dir><file name="Tabs.php" hash="64e96004c97da1a14bfa9030c292f400"/></dir><file name="Edit.php" hash="da7c7486eb97988d8ef4eeeb2416a9e2"/><file name="Grid.php" hash="168dc779343c8a57a378d89a58e2c12e"/></dir><file name="User.php" hash="c4a5e0cc1d4cbf599344792b2bc2c721"/><file name="Usernroles.php" hash="b6b2a0ca2e22cfafecb2a1e39fb87897"/><file name="Users.php" hash="bcb896f8d5c53b3859e5f9683c43a0e4"/><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="6d90eca246953f9e5e2550a8d431dc8b"/></dir><file name="Edit.php" hash="cabc68c73a6eaafebabb312481ad7ba7"/><file name="Grid.php" hash="9b3f09d0631f00e7c8aa65a60b90c12c"/></dir><file name="Variable.php" hash="e963162776aa0a4ba91372cd1e4b8de1"/></dir><dir name="Poll"><dir name="Answer"><dir name="Edit"><file name="Form.php" hash="b4f0449261d9626dd24fa54e425ae746"/></dir><file name="Edit.php" hash="655fafa7d7bd0c045e364cf7bd8fa69b"/></dir><dir name="Edit"><file name="Form.php" hash="1eaa83d55e84732e976e07261ec09344"/><dir name="Tab"><dir name="Answers"><file name="Form.php" hash="b9a7969e1dc9b05bbf48c89e5ef59d16"/><file name="Grid.php" hash="d9f10034eb02c5914b13ad815e5a1c1e"/><file name="List.php" hash="1e45a350a09bf66b23492f2020a0df14"/></dir><file name="Answers.php" hash="3590fad467da0cb56f8f430aa566592b"/><file name="Form.php" hash="e722d529db8bffdcbf0f943780cbe355"/></dir><file name="Tabs.php" hash="c3320092d841483cf87df9a9fc7a4895"/></dir><file name="Edit.php" hash="03fc4e957f2946f073985fcbab738abb"/><file name="Grid.php" hash="9fae25a43745a0850a1d04b880ab7e33"/><file name="Poll.php" hash="15879e84a7efaec9086aec19b0bf1425"/></dir><dir name="Promo"><dir name="Catalog"><dir name="Edit"><file name="Form.php" hash="b3b8890a26db9e93ca348c49f6cfb820"/><file name="Js.php" hash="a893ae5ff75022ab9e5ac9b09072677b"/><dir name="Tab"><file name="Actions.php" hash="288ba2187ee4252a51f982f744b54a9e"/><file name="Conditions.php" hash="7de14de7e0879d58dfa201b3beed6435"/><file name="Main.php" hash="69a98a9b90977a23d509638d535110bc"/></dir><file name="Tabs.php" hash="3b6ae623968814ff3ad30cf48cfadef8"/></dir><file name="Edit.php" hash="d00121cbc474adca3925eb31e1ad69be"/><file name="Grid.php" hash="cea199eeb2d3720fe2fa5a6bc78dc85d"/></dir><file name="Catalog.php" hash="072db01b890d54e5c26b20afff81bda1"/><dir name="Quote"><dir name="Edit"><file name="Form.php" hash="687934bd6fd0ffccc73e8eaf43c02134"/><dir name="Tab"><file name="Actions.php" hash="b0aecac60e5e2fa49b7989a337bcb76b"/><file name="Conditions.php" hash="c9656b6fa0b3584b407a6888dbb14ccc"/><dir name="Coupons"><file name="Form.php" hash="13c6ffb6e4f4222e59c52df37b34bc01"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Used.php" hash="79c4a5e655180b7f5581ae07cc67c9fe"/></dir></dir></dir><file name="Grid.php" hash="e3624dea4064e5b3d2e6f8b8194cf63c"/></dir><file name="Coupons.php" hash="7dbe487919a1c86167a1e8f9528ff20d"/><file name="Labels.php" hash="aff6409d8bd7bd95faf6388bf18ccbdd"/><dir name="Main"><dir name="Renderer"><file name="Checkbox.php" hash="901188882b226d5ad691d1375d5abf82"/></dir></dir><file name="Main.php" hash="47cde0a6d834a0bd6217ae95137b7e22"/></dir><file name="Tabs.php" hash="a13512a7becd58ced401cd8c6450571f"/></dir><file name="Edit.php" hash="06adcaeeb91d58ed195e25cdd40b8ec2"/><file name="Grid.php" hash="326320f609954360780285fce490a702"/></dir><file name="Quote.php" hash="ee4bd641518e33489072a158679de8d5"/><dir name="Widget"><dir name="Chooser"><file name="Daterange.php" hash="a300fed3106971075cae9e588cce4b59"/><file name="Sku.php" hash="a6eea40d5f29ea9deeb38c319b529c94"/></dir><file name="Chooser.php" hash="e97b16678b9b5220e8f9035f60ca4848"/></dir></dir><dir name="Rating"><dir name="Edit"><file name="Form.php" hash="87851ddf2f505064d8c91f21fd10af27"/><dir name="Tab"><file name="Form.php" hash="c85e7869ee6c2c73e5701440652f660a"/><file name="Options.php" hash="7c4c21c862eebb5455cb9889954d5c3e"/></dir><file name="Tabs.php" hash="417fd255d3f7e9315dc6b60de3855788"/></dir><file name="Edit.php" hash="83d4eb6b7cdfc63591cde8fd8cfab733"/><file name="Grid.php" hash="68499c9f4c92d847947d1e066e6aeaab"/><file name="Rating.php" hash="225dcfd3fc969255b9f27601d52cfbed"/></dir><dir name="Report"><dir name="Config"><dir name="Form"><dir name="Field"><file name="MtdStart.php" hash="7cd6c952c343d8a5ffe4ae87eaa19f84"/><file name="YtdStart.php" hash="90e1008592a9ba8fdd2c947221d6377a"/></dir></dir></dir><dir name="Customer"><dir name="Accounts"><file name="Grid.php" hash="b44fe307e1f407c22b2554648febd5c1"/></dir><file name="Accounts.php" hash="9dc89daa20041c9f1a612be9c7066dbf"/><dir name="Orders"><file name="Grid.php" hash="090140347db0f2f2f854ba9b1d5f1ee6"/></dir><file name="Orders.php" hash="10df269490a3410f734a644e56adb39f"/><dir name="Totals"><file name="Grid.php" hash="004873961f4d7ca3eb4c7ee8eb0714b4"/></dir><file name="Totals.php" hash="ba7684dbc46d705ac288eb1c62a3b3ca"/></dir><dir name="Filter"><file name="Form.php" hash="feca6acab7477fca3b19f4820b561673"/></dir><dir name="Grid"><file name="Abstract.php" hash="b7907a6036139a58c8742fb8ad36bb1e"/><dir name="Column"><dir name="Renderer"><file name="Blanknumber.php" hash="16f13d72dd776377afd2f76728e44ce4"/><file name="Currency.php" hash="a41c7dc6ad63e13cb74aeecca0674088"/><file name="Customer.php" hash="0c6f60098017e67549b1ec77595ac3bf"/><file name="Product.php" hash="22e96b31c2cc4b488b2aeab4998f119e"/></dir></dir><file name="Shopcart.php" hash="457d65cd9def010130f1675d3d52dc50"/></dir><file name="Grid.php" hash="110d750b5e28a0ee557fb68b56a77306"/><dir name="Product"><dir name="Downloads"><file name="Grid.php" hash="612edbdfa086dbff5dfe56818724f362"/><dir name="Renderer"><file name="Purchases.php" hash="49c7e3c2fb4d0ffbbad889c911a73e30"/></dir></dir><file name="Downloads.php" hash="8b52492598e5af061c90671730326b8d"/><file name="Grid.php" hash="08cf2b05e69e5b0317100685f10262bc"/><dir name="Lowstock"><file name="Grid.php" hash="f3c144d4baf645cd0f1fb0baaa9714de"/></dir><file name="Lowstock.php" hash="d600c69c68469fd27d1cbf9ea0d7c6c8"/><dir name="Ordered"><file name="Grid.php" hash="94dca8b7f0a6b5daddd71b474a90d021"/></dir><file name="Ordered.php" hash="9a20fc5aa67d31af83777de5fc3d0931"/><dir name="Sold"><file name="Grid.php" hash="20a5b1426397c6aa5491828672f13b32"/></dir><file name="Sold.php" hash="b251a3e947637d079c5a2ced9ebde553"/><dir name="Viewed"><file name="Grid.php" hash="8dbc9fdad1149820ac25f8bde6439a66"/></dir><file name="Viewed.php" hash="5308dd73553978a55d65de0a2e649e74"/></dir><file name="Product.php" hash="4d4ef37778c2083f83c414211eb40f7b"/><dir name="Refresh"><dir name="Statistics"><file name="Grid.php" hash="e76ef84d295bf3450af3936205bb9db5"/></dir><file name="Statistics.php" hash="23caebfb7a95e04a4d8941d34097cf4a"/></dir><dir name="Review"><dir name="Customer"><file name="Grid.php" hash="fe7d19d38a59e03f914b31fa81a0c3ae"/></dir><file name="Customer.php" hash="e48b46843e9bf4f55bd786605e06b412"/><dir name="Detail"><file name="Grid.php" hash="e99635253d407607d35322355e8dec58"/></dir><file name="Detail.php" hash="6895430e46e0e174518804ac6483261f"/><dir name="Product"><file name="Grid.php" hash="0f1c10a4ec19e1294366725926e33d2c"/></dir><file name="Product.php" hash="7a099fde0c24dc3416f9200c2f966071"/></dir><dir name="Sales"><dir name="Bestsellers"><file name="Grid.php" hash="b76f52790567fae5cf76b30cf2dcb887"/></dir><file name="Bestsellers.php" hash="d4f1b76fbb17d117df580b07e0ca9599"/><dir name="Coupons"><file name="Grid.php" hash="adecce77513a9fe2e366b5f4a4102e50"/></dir><file name="Coupons.php" hash="257589ffa2e7ba0bb08b02573ff9ed61"/><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Date.php" hash="bf2099e7687582a2d7053353704a5c2b"/></dir></dir></dir><dir name="Invoiced"><file name="Grid.php" hash="7c1f883ce61eb485864f61c89b6b782f"/></dir><file name="Invoiced.php" hash="bde3bac95796234eb332054f8c057b77"/><dir name="Refunded"><file name="Grid.php" hash="79b54b1be10299242a35bd3a1adb8be2"/></dir><file name="Refunded.php" hash="1096e6a53734a3ef55ac39d728518635"/><dir name="Sales"><file name="Grid.php" hash="d0669b6c7c755b17be78da02757b0da5"/></dir><file name="Sales.php" hash="050d1a7c2c67907a77ef20ff9af820d4"/><dir name="Shipping"><file name="Grid.php" hash="141d1f5b7c6cb3a66861abfc1281c1f2"/></dir><file name="Shipping.php" hash="3d93ce6f9a68cdb0e230dc529e2aaf75"/><dir name="Tax"><file name="Grid.php" hash="2082e7ee81d6c2df6badbfdb93f8512a"/></dir><file name="Tax.php" hash="4c209807eb81bc6fa8d73e763b9ee72d"/></dir><dir name="Search"><file name="Grid.php" hash="4aa04c99350a4a2436a7083695ef60a5"/></dir><file name="Search.php" hash="372c6fb2c1381d4a58677d033dfe405d"/><dir name="Shopcart"><dir name="Abandoned"><file name="Grid.php" hash="c72de9ceda623168adc3231c73ea397e"/></dir><file name="Abandoned.php" hash="13b76364ad62b06e76ad486b84390e84"/><dir name="Customer"><file name="Grid.php" hash="af37c042f0c47b588006a6cd333dce40"/></dir><file name="Customer.php" hash="52a9166555f22a22452653fc8eca18f2"/><dir name="Product"><file name="Grid.php" hash="774c216f5e6fea6963c100f5640a11f2"/></dir><file name="Product.php" hash="af28d835c4f1eb2691f162a050a34a6c"/></dir><dir name="Tag"><dir name="Customer"><dir name="Detail"><file name="Grid.php" hash="8ed84ef0c66060cf306f04302723c2e5"/></dir><file name="Detail.php" hash="105a7a4bb1409ad5cfbfe7166cafcb12"/><file name="Grid.php" hash="6df82fb3d6522701da678c71137013c1"/></dir><file name="Customer.php" hash="85ee86bd62e2bd81077eb2e87ecdef4c"/><dir name="Popular"><dir name="Detail"><file name="Grid.php" hash="b2f0ac64a0ab2fc7133ae82470c76084"/></dir><file name="Detail.php" hash="cf9981f3f1c0794867c08446e4136389"/><file name="Grid.php" hash="6f90f101e27edde1f8477cafcf8a7888"/></dir><file name="Popular.php" hash="7bddc3b1d4d76fe5c14f6a8642455712"/><dir name="Product"><dir name="Detail"><file name="Grid.php" hash="00b5986eb3e828b930800a75e960af51"/></dir><file name="Detail.php" hash="54b8384b46454d5651c8f2d07639d171"/><file name="Grid.php" hash="1112430744c824f6e95c24870236d85d"/></dir><file name="Product.php" hash="f6fb20b03d0a7d946f303453f5ae8710"/></dir><dir name="Wishlist"><file name="Grid.php" hash="1e0bcdd7fb45d90fd34b4ab5d3b5fe0d"/></dir><file name="Wishlist.php" hash="4a344bbf90494b1f18fe0a15fd56122f"/></dir><dir name="Review"><dir name="Add"><file name="Form.php" hash="b077ca31752a4706b872d4e37856e663"/></dir><file name="Add.php" hash="ba96756b77a0a38d584305f2eab1dea1"/><dir name="Edit"><file name="Form.php" hash="794e358fac8a8f2e19d73d0b1dce8168"/></dir><file name="Edit.php" hash="d3e0f8e5309991d75c8690e821541ce0"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="00c0b062e5cb5b27911983a3c9b338be"/></dir><dir name="Renderer"><file name="Type.php" hash="0357bca4f652ef92d53ee386f56da4a9"/></dir></dir><file name="Grid.php" hash="58b90152cb459fbfb54015031d372d68"/><file name="Main.php" hash="4e4aee1f40d1394dc0a8d0aba2f9a575"/><dir name="Product"><file name="Grid.php" hash="06c6d58869d893e6acf02750a49cff47"/></dir><dir name="Rating"><file name="Detailed.php" hash="79c31eeb2a5343f206ede6150d5c9f9e"/><file name="Summary.php" hash="aaefaaa99689038556c4fe1eb57c9d85"/></dir></dir><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="609782acca5c4b88bd3462d19ab31898"/></dir><file name="Creditmemo.php" hash="52d30829f9902efce405a8d07163f6da"/><dir name="Invoice"><file name="Grid.php" hash="5f3f3663b11422087f0495aaa578de8f"/></dir><file name="Invoice.php" hash="4e6df5fc6fcf148dcdd34e50aed5a39b"/><dir name="Items"><file name="Abstract.php" hash="c1a429f2afc911e487aec25a50cb2369"/><dir name="Column"><file name="Default.php" hash="fa60910a0aef82464e5f7eed49e39f56"/><dir name="Name"><file name="Grouped.php" hash="28af427b714064d612ecb43e47c02cb2"/></dir><file name="Name.php" hash="ae1a1c2dbd36b330851df82add5dc398"/><file name="Qty.php" hash="973da3fd2844f9db233e0955cf0aff91"/></dir><dir name="Renderer"><file name="Configurable.php" hash="56030e213e888196dd12e2bfd98808e2"/><file name="Default.php" hash="35918d823badbdbf34e9a8b88c9d0e66"/></dir></dir><dir name="Order"><file name="Abstract.php" hash="e30d84135953380eb3a014d7f3740cf1"/><dir name="Address"><file name="Form.php" hash="65f6e4c72910f7631ec08769b36011b8"/></dir><file name="Address.php" hash="7cb665471b414ca5b1e4ee483affe74b"/><dir name="Comments"><file name="View.php" hash="9c9845ddd89223cafb81083732ba69ce"/></dir><dir name="Create"><file name="Abstract.php" hash="e32052337ca1090c406ae065411a8dc3"/><dir name="Billing"><file name="Address.php" hash="9072b804744fe91e32a4d5940080ff7b"/><dir name="Method"><file name="Form.php" hash="36acb74957b06bbd7a5a6d26962e8af0"/></dir><file name="Method.php" hash="d92340dede608bfa63652951f9183e2e"/></dir><file name="Comment.php" hash="0595c40633c02e7c55c1de460a7c3565"/><dir name="Coupons"><file name="Form.php" hash="acceeeade5491da7a11cb8109d9c9dbe"/></dir><file name="Coupons.php" hash="b4e3c093d05c3d403eea6e2c1ac720fa"/><dir name="Customer"><file name="Grid.php" hash="00bd358a671d07fab0e3b0662c9c96ca"/></dir><file name="Customer.php" hash="ccf63cfa09089450f38130c4d8049bf0"/><file name="Data.php" hash="8b0e98d066f6b66e3a43e3a31b6fbb28"/><dir name="Form"><file name="Abstract.php" hash="9345980b19832493835baba01df527a1"/><file name="Account.php" hash="bccf48e050ab5a850399999bf825939a"/><file name="Address.php" hash="a766f85007385f002e2fa8678f404bd0"/></dir><file name="Form.php" hash="fab28e896ffa92a761d3641e53f14072"/><dir name="Giftmessage"><file name="Form.php" hash="e7ac768ace90ba244ac347b872ffe97d"/></dir><file name="Giftmessage.php" hash="79929df23b414de98237444e3e8d28a9"/><file name="Header.php" hash="d879abd88f66d4b71f43dd804c122fa2"/><dir name="Items"><file name="Grid.php" hash="095a0755af808a84cff8aa08bf6b8d66"/></dir><file name="Items.php" hash="294fa49c1a68f351e00ae783f62f4825"/><file name="Load.php" hash="bb3b290e6598f3aa0b0cd4e1d57fd901"/><file name="Messages.php" hash="a4c968869fc33d821e6e77d25ccd85d2"/><dir name="Newsletter"><file name="Form.php" hash="f01444655f303708aa0d12410e5c3902"/></dir><file name="Newsletter.php" hash="602425cb6855253ac09cc8585c51af39"/><dir name="Search"><dir name="Grid"><dir name="Renderer"><file name="Giftmessage.php" hash="fa8dc8d6948c8014231141cbdf600d6b"/><file name="Price.php" hash="8bf6cc7edf02006f3d51b0776e0ade9a"/><file name="Product.php" hash="edf012523024d1e8c49f0a753e0baaa9"/><file name="Qty.php" hash="f7d81b998baff175e908c4e3d8e54e6e"/></dir></dir><file name="Grid.php" hash="410ccbdc8d94b81f310644e355176060"/></dir><file name="Search.php" hash="8255abe3d4058592c001e2f8e092c66c"/><dir name="Shipping"><file name="Address.php" hash="7218ba8e598d204369e2579f697eff9f"/><dir name="Method"><file name="Form.php" hash="3228f624620c99d23132e2af1125e262"/></dir><file name="Method.php" hash="eadc08372132958349c4cbe02835d2ed"/></dir><dir name="Sidebar"><file name="Abstract.php" hash="d6322dbc22688afc46f34a56afdb5d0b"/><file name="Cart.php" hash="11ef20936bdf06b4c7dda4e3c1d60319"/><file name="Compared.php" hash="22d06864525ded4129fdaa661811be4f"/><file name="Pcompared.php" hash="3f97fc35f8376538e7b6c765abe57f35"/><file name="Pviewed.php" hash="b179e14ebf6c78bd6a200b2f93a8a637"/><file name="Reorder.php" hash="509aa773941c4d7143a09a6d5d68e088"/><file name="Viewed.php" hash="22202338fdf50b6924dd8a1b264b572e"/><file name="Wishlist.php" hash="ae56bbd88add7d7420819b533a9ed517"/></dir><file name="Sidebar.php" hash="aec4ae776a695748d7a752669118aed1"/><dir name="Store"><file name="Select.php" hash="8a4c5955a8e734971fff13a7f7ba5876"/></dir><file name="Store.php" hash="219d637f2b6906db4edcbaab06b4f763"/><dir name="Totals"><file name="Default.php" hash="786fc90a5bbaf675420863cc621cdc67"/><file name="Discount.php" hash="b746b16699a020ee651dfd55e59b61fb"/><file name="Grandtotal.php" hash="5e996397095e43adbe5a650a0f9a6200"/><file name="Shipping.php" hash="30683791284d8abd44f13bf00f6d9b42"/><file name="Subtotal.php" hash="89428352df124cee37aaa17d749fa1af"/><file name="Table.php" hash="eec30bc66e4594c505692c960e11232d"/><file name="Tax.php" hash="36ae21e571c96934ec8fdab7f29095b0"/></dir><file name="Totals.php" hash="af300d2fed90af56a42a10adeb3ad831"/></dir><file name="Create.php" hash="afd3d821f20dece3f318f513afcba12d"/><dir name="Creditmemo"><dir name="Create"><file name="Adjustments.php" hash="f8a3d1d4bc32e95cdba1461ad9b38ca8"/><file name="Form.php" hash="ae38b0f40c1297513205bf189abeaf2e"/><file name="Items.php" hash="1d6f2af2f3c41636fd44f121e5600053"/></dir><file name="Create.php" hash="a06ec88bf1d10ddcae2fc335df48ae41"/><file name="Totals.php" hash="615cf6a639a9ef23102a6c6fcea53be2"/><dir name="View"><file name="Comments.php" hash="d279fff5a706eb35144c555f3a61cbd5"/><file name="Form.php" hash="95a2a8e4b000680c53a1820544c2e9bb"/><file name="Items.php" hash="9ba89bf8c6d475962538e71f627f7a0b"/></dir><file name="View.php" hash="7c1b1069b059f073b237fc9dc347c705"/></dir><file name="Grid.php" hash="96bc1a33ce46aeb88e8fc76e1b499cc9"/><dir name="Invoice"><dir name="Create"><file name="Form.php" hash="def2ec8ec44adea13cef43e3a1a92613"/><file name="Items.php" hash="e2002156dcba5c37b0d0d3c9a924d25a"/><file name="Tracking.php" hash="2487c540f915a172c48c45974866f104"/></dir><file name="Create.php" hash="493beaeb25e8b01ce36e17750ed958df"/><file name="Totals.php" hash="d3897853b2be84bb7bab362de42ef236"/><dir name="View"><file name="Comments.php" hash="b578c353505c5f47ee733f68ebdd7a40"/><file name="Form.php" hash="3bf279de7643e9d6666e5ca98e1d4bb5"/><file name="Items.php" hash="6754a10b719983070b7757df043170c3"/></dir><file name="View.php" hash="09c794b5a785f3a9e3f202cbdf872195"/></dir><file name="Payment.php" hash="ce953be1c0b020e9605fb89c8cb6f7da"/><dir name="Shipment"><dir name="Create"><file name="Form.php" hash="067634d96a188f73de0e4c7ec44dc2ac"/><file name="Items.php" hash="52c59199fdf1d4e91a70d2fb9310ff3c"/><file name="Tracking.php" hash="4c669be5cc4953cc7788c96e3b308c73"/></dir><file name="Create.php" hash="815c6e0cdf756371f6b1e51b813793b1"/><dir name="Packaging"><file name="Grid.php" hash="280db48182cff2c460d3815ee238cc9c"/></dir><file name="Packaging.php" hash="f408350c26660b54b35ac24e199ee6ca"/><dir name="Tracking"><file name="Info.php" hash="704ce3c77a96bb0fa55674d6ae9d95a4"/></dir><dir name="View"><file name="Comments.php" hash="0a98ae0af3176b0b7b45b7262b555559"/><file name="Form.php" hash="429e204585487456bc4ea1085cce841b"/><file name="Items.php" hash="20edf5b8a64c79c6b703f575e1d30347"/><file name="Tracking.php" hash="462936482b1d1de5f7cd35b684b3ec23"/></dir><file name="View.php" hash="1e86c4abea25c8e7a184d7eb1d9f4430"/></dir><dir name="Status"><dir name="Assign"><file name="Form.php" hash="c41bbe6a134c2823bd6417162b991f46"/></dir><file name="Assign.php" hash="137a3c0f335c6b05daa12a1d0df1bc5d"/><dir name="Edit"><file name="Form.php" hash="b7fc8603fc650b56e2fbde4e26dc1cc3"/></dir><file name="Edit.php" hash="7454ade7a09f185ace74fb7fdf610c94"/><file name="Grid.php" hash="e0d67da4bb983c077067a0652b77ca33"/><dir name="New"><file name="Form.php" hash="bbef54d24bb51382fadc5bc573f3f781"/></dir><file name="New.php" hash="a46f7c7dbce80d679d69852a39ea3212"/></dir><file name="Status.php" hash="aef6216b1ca16a89f310383aa9e8fa49"/><file name="Totalbar.php" hash="3ca3d8c0c64ff79c2f684d20be6748ce"/><dir name="Totals"><file name="Item.php" hash="b4463e61a9c83de8bda33298dc2fd929"/><file name="Tax.php" hash="9bfc5a3a798061108056f913abf71a3a"/></dir><file name="Totals.php" hash="ed88b7a12588621637da63c73e19f02c"/><dir name="View"><file name="Form.php" hash="201e8f8fbf12410ea017b9afb73d0287"/><file name="Giftmessage.php" hash="f86e31036f0b5827e23093a950a972ba"/><file name="History.php" hash="821a88765ae7db2694b07f0c3696326a"/><file name="Info.php" hash="1f78a7995b5f6826502be8df3f1d0214"/><dir name="Items"><dir name="Renderer"><file name="Default.php" hash="73fbe9a5838d2220f6f74638113d675d"/></dir></dir><file name="Items.php" hash="fa1e91f88b3d89146f53dcdf81f0aef7"/><file name="Messages.php" hash="38b97b58f4df7d35a267331538ae12e6"/><dir name="Tab"><file name="Creditmemos.php" hash="12b7dc85bb9609c95a0c2000cd68ea10"/><file name="History.php" hash="494057929e32162a486097bc7e371ee5"/><file name="Info.php" hash="1a82cfbd0d4816157c2246be0810c50e"/><file name="Invoices.php" hash="933c0557448b027409188c007b37bc5a"/><file name="Shipments.php" hash="f187675d608b26d871b156487d14adf1"/><file name="Transactions.php" hash="5cbcdd56ccf7e6f8a3e6f7e567516f08"/></dir><file name="Tabs.php" hash="593ef2b480a72ed8f0df2b0870a51b3a"/></dir><file name="View.php" hash="3c12eebd47ffb96eeb4e1fbe28de29f3"/></dir><file name="Order.php" hash="b8d298c06975f0c50baf2688a921b612"/><dir name="Reorder"><dir name="Renderer"><file name="Action.php" hash="af3bf36a78804cd7a3103bf07e3d59be"/></dir></dir><dir name="Shipment"><file name="Grid.php" hash="770ed0756d5b7af2cceeb878338be38d"/></dir><file name="Shipment.php" hash="553f0f9a893ec1808b2ade404b8be9a6"/><file name="Totals.php" hash="46691747b4338d4a31a4954ae52f3c7e"/><dir name="Transactions"><dir name="Child"><file name="Grid.php" hash="306a490ffea619d2a6a6f75e531964ed"/></dir><dir name="Detail"><file name="Grid.php" hash="d8854d795a1d8ce0e65599211bc1201e"/></dir><file name="Detail.php" hash="0bff95c18246f682c15ec713c9069c12"/><file name="Grid.php" hash="3cd6f4858aefa6850c20d7a15e49d3b9"/></dir><file name="Transactions.php" hash="70d71afd390085612c4a9dddf40d3305"/></dir><file name="Sales.php" hash="dbcf645b24b864622e9a369dcc46d7c1"/><dir name="Shipping"><dir name="Carrier"><dir name="Tablerate"><file name="Grid.php" hash="b36d8d8ea9c270cdb7c86f9d1709e5c3"/></dir></dir></dir><dir name="Sitemap"><dir name="Edit"><file name="Form.php" hash="44682351e30c6505e89f3135ec6c260d"/></dir><file name="Edit.php" hash="2f3e3dc9432d573abfb65dce978c15d2"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="72b7e9783a267bbd85cc5533e6f8f145"/><file name="Link.php" hash="63b5cadf42021d48f73f367ee8e47cd9"/><file name="Time.php" hash="e60f50ec15fd6246312175343defb596"/></dir></dir><file name="Grid.php" hash="20566a500b547df156f25870cb83c7db"/></dir><file name="Sitemap.php" hash="1d4e6eb0a205e015cd461cee8394d7df"/><dir name="Store"><dir name="Switcher"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="54ffc93575b9dd24fa8338a9873679f7"/></dir><file name="Fieldset.php" hash="50a1ee48b66169461b2246a5b4b1114f"/></dir></dir></dir><file name="Switcher.php" hash="9db5cbb319dfe122b21610254c6191ca"/></dir><dir name="System"><dir name="Account"><dir name="Edit"><file name="Form.php" hash="32a989e24c11bd6964c6b40925663693"/></dir><file name="Edit.php" hash="6ae499f14fc23f49b34fed02d1968bb5"/></dir><dir name="Cache"><file name="Edit.php" hash="7f7e46737c5d84e3ad535bcf5b49777f"/><file name="Form.php" hash="8e129d9245cbe1272935b717f7b9d1f6"/></dir><dir name="Config"><file name="Dwstree.php" hash="65d964b3abaef9ded4a2cb6fb39a9859"/><file name="Edit.php" hash="ebc9440c9653490762c645ee644c7092"/><dir name="Form"><dir name="Field"><dir name="Array"><file name="Abstract.php" hash="00f07e47e9e4b166207c4d523538b432"/></dir><file name="Datetime.php" hash="e079f7bad53bd5475cea3e208f9dcfe0"/><file name="Export.php" hash="2955e4d5e7ed810425d5f0fa7f7def22"/><file name="File.php" hash="7d862fa75739e851af272a1789cefd15"/><file name="Heading.php" hash="cc480a8afcdc321cf83339d5b93c72a6"/><file name="Image.php" hash="a72fb93e72ec76714c8a20d7f65ae5ff"/><file name="Import.php" hash="5360fe73ceda654747c08fccd4ec0ce2"/><file name="Notification.php" hash="f70fa11cfad02e7306389be7edda51fe"/><file name="Regexceptions.php" hash="334a22ec96def50f88659a98f729d51f"/><dir name="Select"><file name="Allowspecific.php" hash="5a42d65b31e789a4a6059bb051b7110c"/><file name="Flatcatalog.php" hash="f3a60256726b669dd3b96384443e9801"/><file name="Flatproduct.php" hash="00f32d54d5037aef913edd92179bd33d"/></dir></dir><file name="Field.php" hash="7416cb8e38c00450c4fb88901e3071d1"/><dir name="Fieldset"><dir name="Modules"><file name="DisableOutput.php" hash="a8764e833ac21dcd0a2ca89f69df0e9d"/></dir><dir name="Order"><file name="Statuses.php" hash="6ba2ebd4e4de9828e44ccaceec46a5e8"/></dir></dir><file name="Fieldset.php" hash="bac3b66e075d55849901ff6135a9edbb"/></dir><file name="Form.php" hash="4f921941e78888c46c157a236e0e943c"/><file name="Switcher.php" hash="58125106bd70f46d08cecb80c66a61d5"/><dir name="System"><dir name="Storage"><dir name="Media"><file name="Synchronize.php" hash="7ecd3bc9f636a0fb06fe49d3cadba069"/></dir></dir></dir><file name="Tabs.php" hash="8fc4d68a8a14ab927f8364c2cd1f1627"/></dir><dir name="Convert"><dir name="Gui"><dir name="Edit"><file name="Form.php" hash="d61317249f1011ad811c9e3de37b75ba"/><dir name="Tab"><file name="Upload.php" hash="0714f76e4f7e36209c5437edb335a438"/><file name="View.php" hash="77a97205366a7ed7a58d0bbbbc137741"/><file name="Wizard.php" hash="9d7181c814440877bd51fa6b7b41abde"/></dir><file name="Tabs.php" hash="b6c8de105c2d8273cedd5c048ded190e"/></dir><file name="Edit.php" hash="e006c820e035b938de5eb5e3606f0265"/><file name="Grid.php" hash="dff9df74058677688bd37dc9edc5be55"/></dir><file name="Gui.php" hash="c7a22b196f44adecac4c9ef558d7b66d"/><dir name="Profile"><dir name="Edit"><dir name="Filter"><file name="Action.php" hash="6b8e032cbe667523693e5bb249b59cea"/></dir><file name="Form.php" hash="3ecb0a2e30b3d169af90dec37840a434"/><dir name="Renderer"><file name="Action.php" hash="7824322fbca9800a54ae9cffba5e8f2a"/></dir><dir name="Tab"><file name="Edit.php" hash="f902e29881cbb82ea7f12ed81fd6139c"/><file name="History.php" hash="a3a89852432fa03d1b8edc40739f570b"/><file name="Run.php" hash="bf63e664eb43c069003515b513ebf999"/></dir><file name="Tabs.php" hash="fc56f7659a8a126a29c8d5299ade43b6"/></dir><file name="Edit.php" hash="5c4424646601465a566a58d321519921"/><file name="Grid.php" hash="311fa98be1c9d79b14e671c6b3870dba"/><file name="Run.php" hash="c9fbc623b09fc99e6a23dd76d39a1aee"/></dir><file name="Profile.php" hash="f45fc498264a7772a35620cf44e8ff52"/></dir><dir name="Currency"><dir name="Edit"><file name="Form.php" hash="c5a428694c5e1aa61c20dc7b45f6e48b"/><dir name="Tab"><file name="Main.php" hash="043f647b90b2288de6ad848f60c7e2a4"/><file name="Rates.php" hash="7ec47e3402f538710d597d5d48afab5d"/></dir><file name="Tabs.php" hash="2d090f26b6659c012caf3fc264e713e2"/></dir><dir name="Rate"><file name="Matrix.php" hash="26f49c84b51748b0b1c0b79641f06c8e"/><file name="Services.php" hash="6e8f0ec959b036101b9588508c28b1f6"/></dir></dir><file name="Currency.php" hash="ad18f7e5f03b44824e5b90812afc6264"/><dir name="Design"><dir name="Edit"><dir name="Tab"><file name="General.php" hash="b7823d6031e7df9a3d5073e23580f726"/></dir><file name="Tabs.php" hash="65a1dcd6d47fbc83c22887202833f580"/></dir><file name="Edit.php" hash="5189554e595fd5c0e59a904e8b326145"/><file name="Grid.php" hash="8dee8a377889da28f70993ca3c485257"/></dir><file name="Design.php" hash="bdb36c92f11ae10912d190c6864e0ce6"/><dir name="Email"><dir name="Template"><dir name="Edit"><file name="Form.php" hash="5cae31347568c9f2904552422dc39bda"/></dir><file name="Edit.php" hash="07b2d7f20b5d320179a1ffae4cfd661e"/><dir name="Grid"><dir name="Filter"><file name="Type.php" hash="11c17e268a23fbe5a9be4ea904c59ad0"/></dir><dir name="Renderer"><file name="Action.php" hash="4c80bba4cab13260e85e6b94941ff9c6"/><file name="Sender.php" hash="9c866c5668ef0355910b429ffafc123e"/><file name="Type.php" hash="fd0c3cdf4b4442ea312968e5836b51ae"/></dir></dir><file name="Grid.php" hash="b11bf23f85d3cde28a90224805b78259"/><file name="Preview.php" hash="ddf752d50606a90ea5cb74c594858f4c"/></dir><file name="Template.php" hash="a6bf4f58ef9e5117556ab13e24488b8d"/></dir><dir name="Store"><dir name="Delete"><file name="Form.php" hash="500cbfac4afd94067e2ee7265c725f5d"/><file name="Group.php" hash="e483faa12b6253fd71744b5514dea5d7"/><file name="Website.php" hash="0457e15c93a2fbddb6a34405e0baf14b"/></dir><file name="Delete.php" hash="fd2eed3653cea848632e2d002ee0077d"/><dir name="Edit"><file name="Form.php" hash="f55b61008472d4655f87f67a7b003a60"/></dir><file name="Edit.php" hash="3bd9ffbe024f7c3891daac703d30417f"/><dir name="Grid"><dir name="Render"><file name="Group.php" hash="bfedd63718d04c770da1ae248447b54d"/><file name="Store.php" hash="5a0143816d637c8e53f5acb319e8e010"/><file name="Website.php" hash="47e5083716d3bea2a3315cbeb846fcbf"/></dir></dir><file name="Grid.php" hash="c5555b742d0b4444f3f9b2d29afc6356"/><file name="Store.php" hash="fc4e62fd3760c76ef917308ab0c2d661"/><file name="Tree.php" hash="61ad551230e6b54c826e4e5e2eb0fd00"/></dir><dir name="Variable"><dir name="Edit"><file name="Form.php" hash="965950be5a4ff68b49dd2067b3fe8b0a"/></dir><file name="Edit.php" hash="3b3224ec1555420eba3e637bde7b4b62"/><file name="Grid.php" hash="23bd1881bb76452a7f8cb29ec9cc0e6f"/></dir><file name="Variable.php" hash="ddf310647c2fef4514aaab69b2033995"/></dir><dir name="Tag"><dir name="Assigned"><file name="Grid.php" hash="cc24597f9b1dccdf5c0e79d13f7492b9"/></dir><dir name="Customer"><file name="Grid.php" hash="ea974af2e2d76a5dfef990fa0950642d"/></dir><file name="Customer.php" hash="d054c0ffdd82ee67ca66657e0a739dd2"/><dir name="Edit"><file name="Accordion.php" hash="562054b79e4124ece146cd680c2fdd0e"/><file name="Assigned.php" hash="22da53d8ab2bc271ad095861dc252114"/><file name="Form.php" hash="aad084a7b4d7ce29af65d1029ad19a5e"/></dir><file name="Edit.php" hash="3f8429e7d739ee2e9d14136d6bb32574"/><dir name="Grid"><file name="All.php" hash="ee1ded2a739611bf079df8012c4a9db9"/><file name="Customers.php" hash="3e02bb1db6eb49c84d0a8d917f1cf5c1"/><file name="Pending.php" hash="e926509761ce2d0bdffd7e4e2abbf1ea"/><file name="Products.php" hash="ed4dd39efd314a3eeada54d7bc688eb6"/></dir><file name="Pending.php" hash="c5c1777fe46b2b8e22071e67cd5e0502"/><dir name="Product"><file name="Grid.php" hash="ff371936c0ade66cddc9ffd97fd41e76"/></dir><file name="Product.php" hash="36bae626a4b65f7ff0bd99ccec16c017"/><dir name="Store"><file name="Switcher.php" hash="66a084dfb5766d7aa4150ea09d6359eb"/></dir><dir name="Tag"><dir name="Edit"><file name="Form.php" hash="f336df12dd6d93084017591f621596df"/></dir><file name="Edit.php" hash="cec448430abcf5feb70967f8d6549dbb"/><file name="Grid.php" hash="d3138f801fd07846db42aa9f3968d31e"/></dir><file name="Tag.php" hash="a6da7796adf70a151b8698596a98baf7"/></dir><file name="Tag.php" hash="715f6d8238d90767252fa24b2aaa8f68"/><dir name="Tax"><dir name="Class"><dir name="Edit"><file name="Form.php" hash="b41a073053c6c09d7d3fe0fc249c5912"/></dir><file name="Edit.php" hash="2eab288cb28367878c491241c060af68"/><file name="Grid.php" hash="681d2eede4b60c0f376ac05c7e97786d"/></dir><file name="Class.php" hash="5787261d91adb3ce5e91f183bc1817ac"/><dir name="Rate"><file name="Form.php" hash="79c96bcb2eb9ff63d9153574ea8468da"/><dir name="Grid"><dir name="Renderer"><file name="Country.php" hash="ae6009c3a2ef87bb15c80f2feebdee46"/><file name="Data.php" hash="9b0b48de6b2172b635fd010565825975"/></dir></dir><file name="Grid.php" hash="6a7576f2126eb7eaec1ad8f4b8299c80"/><file name="ImportExport.php" hash="439d431196230c9a1ba7008f8e93b88d"/><dir name="Title"><file name="Fieldset.php" hash="582692641986fb554b660079b50f1b01"/></dir><file name="Title.php" hash="81a59ddcb9904ec96136cf896b64cc73"/><dir name="Toolbar"><file name="Add.php" hash="d4115ec9130c7beec392768fa35c0026"/><file name="Save.php" hash="664384529f48de555df674eab94a22bb"/></dir></dir><dir name="Rule"><dir name="Edit"><file name="Form.php" hash="ac768e178fe2f87877261fcd3eb50534"/></dir><file name="Edit.php" hash="0b7feecbee6f3bed60978f23da77ca9c"/><file name="Grid.php" hash="a32708a6e2c8f6ab6d82d211dbfda3cd"/></dir><file name="Rule.php" hash="5f86d1ecb4deb0d0165ceef47d0e0ce9"/></dir><file name="Template.php" hash="37e830ef865d5816ff0749a0b322f3a8"/><dir name="Text"><file name="List.php" hash="36324927a9cbe989df3efd4456b7bc8e"/></dir><dir name="Urlrewrite"><dir name="Category"><file name="Tree.php" hash="06008e3f9a0b6805e325a044625dc8da"/></dir><dir name="Edit"><file name="Form.php" hash="f49f28ac34913362ecec40586986fdf6"/></dir><file name="Edit.php" hash="59fabf134ee2fc01cc9e46776f4cd471"/><file name="Grid.php" hash="bf379a6aa94d2a364d66a6ed6ebe875b"/><file name="Link.php" hash="3fdd7f7ee72e1614bed7108b2995787d"/><dir name="Product"><file name="Grid.php" hash="df2352c709050740510e4ffac628fea7"/></dir><file name="Selector.php" hash="151394166be76866141433245cd644d2"/></dir><file name="Urlrewrite.php" hash="bebd609ee71719c74b1c3d1de2500ed4"/><dir name="Widget"><dir name="Accordion"><file name="Item.php" hash="94a5901f87bd5890f96f648292790cdb"/></dir><file name="Accordion.php" hash="f4aff431a506218031db26d68d7b1c76"/><file name="Breadcrumbs.php" hash="02e761d850bbbebd7d1fe882c0a53752"/><file name="Button.php" hash="aed10ad707357eb178a19c609b0da09c"/><file name="Container.php" hash="4404d8cbff8fa20939842cbf7132e9b8"/><dir name="Form"><file name="Container.php" hash="cc69b468cf12c30393e650cfff91e400"/><dir name="Element"><file name="Dependence.php" hash="cf6e54fb96580ff6bcd3c6c056877ce4"/><file name="Gallery.php" hash="3976e501ce150169251b248b8fedfab8"/></dir><file name="Element.php" hash="5501873a9a7f87b8c2f9476b2cffaca3"/><dir name="Renderer"><file name="Element.php" hash="094414f0efb45d8e8b6e2a6db55d2faf"/><dir name="Fieldset"><file name="Element.php" hash="c1f03ae010c384ffe7ef6a6e3ca6b4c2"/></dir><file name="Fieldset.php" hash="2e3458a777272448316051b423cdfe7c"/></dir></dir><file name="Form.php" hash="5646c9b6442ea6f46f3b8d7da0a1f7b4"/><dir name="Grid"><file name="Block.php" hash="7175ecea8685eac985581615bd88b98c"/><dir name="Column"><dir name="Filter"><file name="Abstract.php" hash="573ae23fdc2ec2912ee21118126df115"/><file name="Checkbox.php" hash="6692994013094aabb6663356f7850338"/><file name="Country.php" hash="1db4999ebc6d8c6bbef971581ab5dadf"/><file name="Date.php" hash="69e6523c1acf19f5e878ceb2fb1d856c"/><file name="Datetime.php" hash="b041d427a34d8352775bcc9079402314"/><file name="Interface.php" hash="a74918e30444273589146419c575d57b"/><file name="Massaction.php" hash="5b942d4fdb594eb47e7bc3ad56410130"/><file name="Price.php" hash="e2639eb8e2e3904dc9b9739286e2f96f"/><file name="Radio.php" hash="f57d2aad655eb86c83483faf56fa02ee"/><file name="Range.php" hash="efb51cebc4c2f44d275b508af8a61f89"/><file name="Select.php" hash="04174830a37f3c9a00ebeb5133d5bcc4"/><file name="Store.php" hash="009d114910cdb5c6bd42664c240080d9"/><file name="Text.php" hash="278c3865cb471aaa2044bcd649efd373"/><file name="Theme.php" hash="612c66148f26e49b55c61c3b261f9dab"/></dir><dir name="Renderer"><file name="Abstract.php" hash="9344d13c164a4548f86c6ca384df27a0"/><file name="Action.php" hash="43e853b7238538414b8fb17a26c46636"/><file name="Checkbox.php" hash="6a1073a36823bea4416a499de3990039"/><file name="Concat.php" hash="20a06a41bb0b0882680b54fc0823450f"/><file name="Country.php" hash="9dd16e791dcdaf06c3eaee9934815bb8"/><file name="Currency.php" hash="4bb95fad536099597f327cea022d6e85"/><file name="Date.php" hash="fa20f2353f16072ef4b4f14fd22a7149"/><file name="Datetime.php" hash="b4f6eb68927e132a7b491910b2df2b9b"/><file name="Input.php" hash="77ef50574fc7397074001d4cd2a81753"/><file name="Interface.php" hash="d68204bfcdbbcbf3f88bcb855bb22298"/><file name="Ip.php" hash="a17ebb9d50747bfecc1046bd8a86fe12"/><file name="Longtext.php" hash="49b289a55b9a4ae6c326d1d002a264bf"/><file name="Massaction.php" hash="48cdf11ebbbc5e12df2a8dd6ac17288a"/><file name="Number.php" hash="25d3ca124ac1525f9414ff322fcc1910"/><file name="Options.php" hash="023c738b9d4ccfc35c6ea12293da1b7a"/><file name="Price.php" hash="6d6bd5580b489acada6c72edc618e12b"/><file name="Radio.php" hash="637e6a8833063ca0b24e8d7950a222c2"/><file name="Select.php" hash="8f60174560f430c052173b1df954f30a"/><file name="Store.php" hash="145bf24e62a616b43bccf90f1b44e678"/><file name="Text.php" hash="43cd6e2148fc9f9d6e30b8c0534d60c9"/><file name="Theme.php" hash="f67f667d2725022d829b1911cbb666e6"/><file name="Wrapline.php" hash="027d16f99f35873430db75bcf57bb600"/></dir></dir><file name="Column.php" hash="cd7b82e1792e7494058f1230baff16c2"/><file name="Container.php" hash="7b717ce50323efd0cb7f41268fe796c3"/><dir name="Massaction"><file name="Abstract.php" hash="c3dff2dd48e292f41e3496859a5239e9"/><dir name="Item"><dir name="Additional"><file name="Default.php" hash="4a36eec96c2dd1498a2f6a0744194a75"/><file name="Interface.php" hash="cdae7780745b6192018ccc9f163ec905"/></dir></dir><file name="Item.php" hash="cda09ba7e125d83ba4e2f71a99398b38"/></dir><file name="Massaction.php" hash="6eb869f3543ba49e31af2bb2ed17a9e1"/><file name="Serializer.php" hash="53478c285d0022a521efb17d62cefff8"/></dir><file name="Grid.php" hash="289cbbaae824f6bad2e22bce06acc3b1"/><dir name="Tab"><file name="Interface.php" hash="a683b31ea0b7422c3e95b104ba06ea68"/></dir><file name="Tabs.php" hash="352a17ed9df3810d3140c37c608bc7f7"/><file name="Tree.php" hash="53e2d92746d7a89bea899b6f58b1b44d"/><dir name="View"><file name="Container.php" hash="6e0b3f53aafa4ee3ab33476a3bdbd8f2"/></dir></dir><file name="Widget.php" hash="6f71f7e1f3a26b3667ff3a5798476645"/></dir><dir name="Controller"><file name="Action.php" hash="da0d300fbd985274fdae3086855c5ef2"/><dir name="Report"><file name="Abstract.php" hash="abb884d68adc772b564b27643f2658bf"/></dir><dir name="Sales"><file name="Creditmemo.php" hash="37f6ff2e83a033113e16fcf857bcad48"/><file name="Invoice.php" hash="6e0cbce4e69714992dbe2d85d3398bdc"/><file name="Shipment.php" hash="693571bf5151da0f0968aca8352f072b"/></dir></dir><file name="Exception.php" hash="42c0d7cdf1d7289ecb11eee94cf83f59"/><dir name="Helper"><file name="Addresses.php" hash="d5898bb959f8f84f5255132616cf407a"/><dir name="Catalog"><dir name="Product"><file name="Composite.php" hash="1bce61be2e3c498573e4e29ecdabf9a7"/><dir name="Edit"><dir name="Action"><file name="Attribute.php" hash="47402d75fac97c35cb2b3bd8a29f7bef"/></dir></dir></dir></dir><file name="Catalog.php" hash="ac10dc4cf315c853a15936f9ceaaaf59"/><dir name="Dashboard"><file name="Abstract.php" hash="7a54ac60b304c12b0023de8ad4be6451"/><file name="Data.php" hash="6d443f6cd29930b8cc5314d9fcc6e698"/><file name="Order.php" hash="4415361c475dd3a4f4441d6e389570cb"/></dir><file name="Data.php" hash="1ad3490734a01ba97ad080103e7a8aba"/><file name="Js.php" hash="4b85412adebcdab1cc0e19fdfb718a82"/><dir name="Media"><file name="Js.php" hash="28cc803d35294b176a06d7c4c3b5d9cc"/></dir><file name="Rss.php" hash="052c6e8aa80b1eafe287c63760ab6c16"/><file name="Sales.php" hash="e2080e2d79da485ddef1eca327ee3689"/></dir><dir name="Model"><dir name="Config"><file name="Data.php" hash="b510db713936630aad46adebbed242b5"/></dir><file name="Config.php" hash="405026a42f6ea963d895aa9b5633185e"/><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="1e8efa732d5cc70b8e8384cded840101"/></dir></dir><dir name="Email"><file name="Template.php" hash="85c0784429dcd487b8736d45ae7c9802"/></dir><file name="Extension.php" hash="ac9c50be8302cd5f62b13140c80c44f4"/><dir name="Giftmessage"><file name="Save.php" hash="96e29ea18b727ea0463ab85a45e1b3a8"/></dir><dir name="LayoutUpdate"><file name="Validator.php" hash="4ca77d6594beedb15fc7c48386b51e69"/></dir><dir name="Newsletter"><dir name="Renderer"><file name="Text.php" hash="7f5196a3444586211cb5cf992fc42a9e"/></dir></dir><file name="Observer.php" hash="4003e61d738d61e05508a054a1e7eacd"/><dir name="Report"><file name="Item.php" hash="58e9cce36de177ce0714a08386ade27c"/></dir><dir name="Sales"><dir name="Order"><file name="Create.php" hash="50cdeb127f6498ae2eae48877ecf7fa6"/><file name="Random.php" hash="1d7c10e2a70c3e3497925d119b9110b1"/></dir><file name="Order.php" hash="934e509c2f7eda6dfd7599101a137890"/></dir><dir name="Search"><file name="Catalog.php" hash="b7347ddfd8ba47ad81e2d1cccff39e2c"/><file name="Customer.php" hash="a2c64d3edf6d1088186805bd2929ccda"/><file name="Order.php" hash="154103fcf829fd88e7277ef68cea8be4"/></dir><dir name="Session"><file name="Quote.php" hash="45f80a6bc20fd2db8bef478b6c3d4d5b"/></dir><file name="Session.php" hash="b2f0c6fd32fb1a292cf594482112f628"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Admin"><file name="Custom.php" hash="a786fc0d00c05076ff865874f3b71339"/><file name="Custompath.php" hash="1d9d3d2e3a162ad364d27bdefd346751"/><file name="Observer.php" hash="273ebe39469cf425cae2b0038ac03360"/><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="28a6cc96dfc8360288de952ed88659aa"/></dir></dir><file name="Usecustom.php" hash="e433585a7f3807c61e2252e2135b4bc9"/><file name="Usecustompath.php" hash="568c986af9a6fe3fd3a5f9a94d3eb569"/><file name="Usesecretkey.php" hash="aa9dad243bb8e716d88b5002088b3d56"/></dir><file name="Baseurl.php" hash="f3cdcb1eaa844120cc17cf281d7c25c4"/><file name="Cache.php" hash="0fc4caa5d8bbac2d813dc8dc14609b9b"/><dir name="Catalog"><dir name="Inventory"><file name="Managestock.php" hash="4e7f3dcd0fff0e1297698b83d1f2c54e"/></dir><dir name="Search"><file name="Type.php" hash="8b12c439e0514472a9e11e3f86ff74f6"/></dir></dir><file name="Category.php" hash="0c717c880913f4206c7335881ad065c9"/><file name="Cookie.php" hash="51543f9a99e219bbd7b6aa5a80ea4814"/><dir name="Currency"><file name="Abstract.php" hash="6a7fd57e1e4b47925a1bca3c81ec3c91"/><file name="Allow.php" hash="65589ab7c385779a26f27d4a5f6a4865"/><file name="Base.php" hash="0df982844039a5a9100261ef10a367f7"/><file name="Cron.php" hash="1d025366019053274c6f8fbc828e7556"/><file name="Default.php" hash="acf39c831864f0856de1c6d7f3bd9af9"/></dir><dir name="Customer"><dir name="Address"><file name="Street.php" hash="bbfe9ef3f07c334cd76b71a138e54157"/></dir><dir name="Password"><dir name="Link"><file name="Expirationperiod.php" hash="0462e88ff44995cc0639cdc391711d8b"/></dir></dir><dir name="Show"><file name="Address.php" hash="86e26388941cb5b7010378a95dadd9fa"/><file name="Customer.php" hash="de4e7f57129252d7726a40d9b7c402d5"/></dir></dir><file name="Datashare.php" hash="7ff8327ca76599f1dc8649bebd3e9479"/><dir name="Design"><file name="Exception.php" hash="46cef901f2b7a194582f90614a749feb"/><file name="Package.php" hash="72751ac2157958dc3a63cf085102ecc7"/></dir><dir name="Email"><file name="Address.php" hash="2779138c3140fc82e2aa04c80df54056"/><file name="Logo.php" hash="27a967be2d569ea58e1da6154b9438c3"/><file name="Sender.php" hash="fe1369a75ec8fcf0af8da37fcaf9edb7"/></dir><file name="Encrypted.php" hash="def86f2e104e9fcd12e6b9962fc946c8"/><file name="File.php" hash="1c8a2cc467362931b8c5e1ad2806d142"/><file name="Filename.php" hash="73ab60610920c70c6d234468a6f63b4e"/><dir name="Image"><file name="Favicon.php" hash="9be883df573aecea0b837b235b96131c"/><file name="Pdf.php" hash="a886d035ad47ddc9ca556a7a73fd34d7"/></dir><file name="Image.php" hash="f6de102b6c0f99406884703ea4ae98a6"/><dir name="Layer"><file name="Children.php" hash="0c830a16007e86cac91ec85dbf3bc0d9"/></dir><dir name="Locale"><file name="Timezone.php" hash="f117bc11a7b44a4ba5b8dd555caeaab2"/></dir><file name="Locale.php" hash="b04471798a39f658c37149cad08bacac"/><dir name="Log"><file name="Cron.php" hash="be57829559872b47ae6839c2a495ada6"/></dir><dir name="Price"><file name="Scope.php" hash="c6dce6c6cba73413a4ed369576fa1824"/></dir><dir name="Product"><dir name="Alert"><file name="Cron.php" hash="00ef1c710539af2e2614d3a319cca642"/></dir></dir><file name="Secure.php" hash="0a67d1b7e41b9a97863501eaf12bdb01"/><dir name="Seo"><file name="Product.php" hash="7bc5eea60caa26c0f432049f4020543b"/></dir><dir name="Serialized"><file name="Array.php" hash="d651a741737dbe488c27cde892cc5e62"/></dir><file name="Serialized.php" hash="397aaecdaa28449dd54a33612a8470ad"/><dir name="Shipping"><file name="Tablerate.php" hash="be8ff34755af5b194ecd5aa2827b079f"/></dir><dir name="Sitemap"><file name="Cron.php" hash="bc8dc086c927ce301ccf5418fe845500"/></dir><file name="Sitemap.php" hash="5b94401490edffcc533bcdead7f80e9a"/><dir name="Storage"><dir name="Media"><file name="Database.php" hash="1bcb00b6151e708d346d7d7d5cdec7eb"/></dir></dir><file name="Store.php" hash="6d2f26292c18301e2a665fb9eae4cf8d"/><file name="Translate.php" hash="1e09592c9e8853c95d597d37684047ac"/><dir name="Web"><dir name="Secure"><file name="Offloaderheader.php" hash="2b418ea757861e128152f3fdade1fd8f"/></dir></dir></dir><dir name="Clone"><dir name="Media"><file name="Image.php" hash="212ca0e022d345c421043ba9b539d848"/></dir></dir><dir name="Source"><dir name="Admin"><file name="Page.php" hash="ba504695aff01ebbf0535776b7e89cb8"/></dir><file name="Allregion.php" hash="0cfb9d86827c3cf30524572c0f2b75f8"/><dir name="Catalog"><file name="GridPerPage.php" hash="757ce3025e2158629b3ddd7665b66fd5"/><file name="ListMode.php" hash="5471fe4c28dfd67c9327cad319b66a2b"/><file name="ListPerPage.php" hash="8149c7f4aa4b17dac57f9f8486ba7729"/><file name="ListSort.php" hash="237d9c9ef6c397c3db7c101d0577dcb0"/><dir name="Search"><file name="Type.php" hash="376ba68ee5af7878f935bcb50cbe2d05"/></dir><file name="TimeFormat.php" hash="5a793bedcf1a38490efb398fb81981d5"/></dir><file name="Category.php" hash="ab4cef232dffd718b440e1dee62947c6"/><file name="Checktype.php" hash="b9fa1608483aa73a74d02835b77efdea"/><dir name="Cms"><file name="Page.php" hash="52d8e7aa95a4b434a459a8d39fb7f70f"/><dir name="Wysiwyg"><file name="Enabled.php" hash="7c338bd75929648a3774551b9b8047c0"/></dir></dir><dir name="Country"><file name="Full.php" hash="673369376c866479816e636488e5cebf"/></dir><file name="Country.php" hash="8991aeebf4dd69040339b3efca8f2427"/><dir name="Cron"><file name="Frequency.php" hash="5baedfbda17c7669124ca9a808014af0"/></dir><dir name="Currency"><file name="Service.php" hash="15415b710b34c2f62db7d84006ebdf75"/></dir><file name="Currency.php" hash="f543f09f0dd479ea11efabd7c36a43dd"/><dir name="Customer"><dir name="Address"><file name="Type.php" hash="554a221d8832efdbb62c7d9b8cfb8041"/></dir><dir name="Group"><file name="Multiselect.php" hash="0f1660a708c1a2231671993bd566cddc"/></dir><file name="Group.php" hash="fbe0b6f0dc2a93cb7f48a99260c2607c"/></dir><dir name="Date"><file name="Short.php" hash="e406dcdf2dd2c28ce05b4d26af403368"/></dir><dir name="Design"><file name="Package.php" hash="398386bca5cec59b0f51b2dfe078cf00"/><file name="Robots.php" hash="07f5b1359f7676b2a83ff43ced8533c7"/></dir><dir name="Dev"><file name="Dbautoup.php" hash="0cd0d0ebc8414b19e321fc2b68bb048c"/></dir><dir name="Email"><file name="Identity.php" hash="0894a34c40f9e4e6a1a2ca3c59fa966a"/><file name="Method.php" hash="3f7b383b0680343fb80cf8af28966810"/><file name="Smtpauth.php" hash="3903df81aac7f08dcb23fd74be63ed17"/><file name="Template.php" hash="30517ba80e26a1a276871fe7905865d3"/></dir><file name="Enabledisable.php" hash="0cfdf5276c1a6d17283e0003e2593292"/><file name="Frequency.php" hash="307b89a0d42964e0e787791baf296948"/><file name="Language.php" hash="cbdb5b9e8e8a4e360c0d9988b39c56c5"/><dir name="Locale"><file name="Country.php" hash="859fd457a5b6155d27dfbcdca2b0adb3"/><dir name="Currency"><file name="All.php" hash="965e21e0ff6155f4a308c0eda1996052"/></dir><file name="Currency.php" hash="b56edc6ed9b2bc70694af5b5017f53c2"/><file name="Timezone.php" hash="9848f14368bf80e6a0294165c4fa24e9"/><file name="Weekdaycodes.php" hash="11aa4437a53e32069decfbb0cf8b1fa2"/><file name="Weekdays.php" hash="8985c590255bd48224d64902e864b764"/></dir><file name="Locale.php" hash="4953c62bc6cbfbd2619bc8c158a09945"/><file name="Nooptreq.php" hash="638ac9118ff602672b79ee64cd60c866"/><dir name="Notification"><file name="Frequency.php" hash="a6e5078bf45d076829b577c6f7c80d14"/></dir><dir name="Order"><dir name="Status"><file name="New.php" hash="4678d5178a2491df9a56e3aa74f64126"/><file name="Newprocessing.php" hash="dbc8d5aeb4e53dbabe59fa4dbcc98e6f"/><file name="Processing.php" hash="c4327faeaca782b0820dcce81bfcf3fc"/></dir><file name="Status.php" hash="e491cfdf646198a56cd247a71c14ddc3"/></dir><dir name="Payment"><file name="Allmethods.php" hash="f64b0e502190ccf243ce72da62d4fa5b"/><file name="Allowedmethods.php" hash="537e93803a055335bfa73867ff7119ef"/><file name="Allspecificcountries.php" hash="83dc458e7d5e485be978d2cbd9fdee3a"/><file name="Cctype.php" hash="8bb1ab8b7e5a52216577be9011665c73"/></dir><dir name="Price"><file name="Scope.php" hash="14b6b798a429cf15bb981cfffdc12663"/><file name="Step.php" hash="3de9fb65380552625878a62624ae72a8"/></dir><dir name="Product"><dir name="Options"><file name="Price.php" hash="c6e0e569ff8747df78caba6f0b0005bb"/><file name="Type.php" hash="7b250c7f6536d66d8c32f41a76f87768"/></dir><file name="Thumbnail.php" hash="4be3e9efb5865ba886b557d2cdc498c6"/></dir><dir name="Reports"><file name="Scope.php" hash="c7cc0d4733dbc03ae602291c28f22564"/></dir><dir name="Security"><file name="Domainpolicy.php" hash="20dc2d2262f98e7c19da75973a0e475e"/></dir><dir name="Shipping"><file name="Allmethods.php" hash="ca3dd0ea42b019d0c1e0b7afee647aea"/><file name="Allowedmethods.php" hash="a8a774037e28625a787b5c145d617748"/><file name="Allspecificcountries.php" hash="6f36d3d3386e606a8e267bb4f81643b4"/><file name="Flatrate.php" hash="2140f5fdaf907b686c1f0e046e5a3ee1"/><file name="Tablerate.php" hash="1d89bda35b050c780b4eff60069bd783"/><file name="Taxclass.php" hash="520bea479b158df586ef75b451ee401c"/></dir><dir name="Storage"><dir name="Media"><file name="Database.php" hash="7230018de56284adaa473ca595699987"/><file name="Storage.php" hash="1fe005a52f73003382cee500163c3381"/></dir></dir><file name="Store.php" hash="3bb5b185dde903266302516187420d1e"/><dir name="Tax"><dir name="Apply"><file name="On.php" hash="a4b614965399b9a82930c844c30c5f95"/></dir><file name="Basedon.php" hash="588014341d1110cd444a1081040f95ba"/><file name="Catalog.php" hash="7481bc3038347fd7c32e928faeff661d"/></dir><dir name="Watermark"><file name="Position.php" hash="90204d3c63e7e49e1a7a8f441bfd62ea"/></dir><dir name="Web"><file name="Protocol.php" hash="67b7e1971be82745fa7eadf12517b7c6"/><file name="Redirect.php" hash="ae8d97d70f731b87e1f0645d4de3cbb0"/></dir><file name="Website.php" hash="903991493080556d8981e5e7734d1eb2"/><file name="Yesno.php" hash="af2ebc7bafc30d642276b4d832d6c2f4"/><file name="Yesnocustom.php" hash="b561a3f702017cc0d4f3fe1ad37e3c04"/></dir></dir><file name="Store.php" hash="974ba5d595df66dfb962ccbc077b8d8d"/></dir><file name="Url.php" hash="fb31a3cfdcf20c8b5c0e9edca98cd68d"/></dir><dir name="controllers"><file name="AjaxController.php" hash="9d1717f0c0d1c5b675558874de22b533"/><dir name="Api"><file name="RoleController.php" hash="542226bb78dcdbec58bde343ca66c4cf"/><file name="UserController.php" hash="fcc29548f76f1abc38bb7ba644762301"/></dir><file name="CacheController.php" hash="1a65775513f4dcb611eb122916e7f65e"/><dir name="Catalog"><dir name="Category"><file name="WidgetController.php" hash="911d2506363ac1095a9e373ea1d94496"/></dir><file name="CategoryController.php" hash="f9d88046e69f5f953173625d25c09a3c"/><dir name="Product"><dir name="Action"><file name="AttributeController.php" hash="dbaad06d054c15364ca71d60f06f76ea"/></dir><file name="AttributeController.php" hash="334233713b727ee2e16f04722accbe38"/><file name="DatafeedsController.php" hash="5b499ea55f20ea3c446cd53f580d3675"/><file name="GalleryController.php" hash="c031bdda833161df525edd44303a6c88"/><file name="GroupController.php" hash="9f708c19e4adbd6c948bc4a9758f4ccc"/><file name="ReviewController.php" hash="1f60a17dccddb71cacd8ffdb1d0cee4b"/><file name="SetController.php" hash="0854f88fe6e0de7b0536ca29a1c9abe5"/><file name="WidgetController.php" hash="7316b3ed1d44302836da441e4f9d7239"/></dir><file name="ProductController.php" hash="16251515f677c746e32369c77d64daac"/><file name="SearchController.php" hash="8abba1cd80d21dfcdd1a6908c504d48a"/></dir><file name="CatalogController.php" hash="86440f23c9c2e4b1fde91316f4c54d44"/><dir name="Checkout"><file name="AgreementController.php" hash="9dce9b48cda29a8f02750c016ce92a05"/></dir><dir name="Cms"><dir name="Block"><file name="WidgetController.php" hash="ce2a76c7cbbe726701f714cc7ea84212"/></dir><file name="BlockController.php" hash="6f015ebaf8c445626690f2de6df264cd"/><dir name="Page"><file name="WidgetController.php" hash="7e8a91736f54189d042d90f34aca0238"/></dir><file name="PageController.php" hash="35743bab99b0e53f682f65a50c7e8c5f"/><dir name="Wysiwyg"><file name="ImagesController.php" hash="bca46a9c1b71d3f33f7e2899052f8eb3"/></dir><file name="WysiwygController.php" hash="d5b0eb6430bf745a13404ce8acc0e75d"/></dir><dir name="Customer"><dir name="Cart"><dir name="Product"><dir name="Composite"><file name="CartController.php" hash="2b055439058d3ec4f137361d4260692f"/></dir></dir></dir><file name="ConfigController.php" hash="27134759095dfe33e71271048e6354be"/><file name="GroupController.php" hash="419a9ed2b7ae21087a0dd00a84745985"/><file name="OnlineController.php" hash="4923f3a3d9531efcc815cb0ba5c457d6"/><dir name="System"><dir name="Config"><file name="ValidatevatController.php" hash="688f0ea9270e020deb97d8fdbd120af2"/></dir></dir><dir name="Wishlist"><dir name="Product"><dir name="Composite"><file name="WishlistController.php" hash="4059aa93cb24bf517220362ed5be212a"/></dir></dir></dir></dir><file name="CustomerController.php" hash="97f298ae79d456a1e511ccb7bb0ccd11"/><file name="DashboardController.php" hash="ecf7d4c22f91631a683f2070c1434401"/><file name="IndexController.php" hash="b93867e25f2483ec8461b627fb47bd44"/><file name="JsonController.php" hash="fdb2b4d3ecd6cc1998d1bd621b68f8a3"/><dir name="Media"><file name="EditorController.php" hash="2cddf6ce96d9fd2bbd76ade9c0b1a4a9"/><file name="UploaderController.php" hash="735340a7e2d29619bf8cee9d9423e3de"/></dir><dir name="Newsletter"><file name="ProblemController.php" hash="b595f605a0941247f29b17cd587b8c5b"/><file name="QueueController.php" hash="0fb8063726b7a1352ad85e8700b65c57"/><file name="SubscriberController.php" hash="ebd8ac6b0b286655f46ba2ceaca55c3a"/><file name="TemplateController.php" hash="e25c7c17d3342530b4a2c5f4326d9897"/></dir><file name="NotificationController.php" hash="fb20d43a014fc41923357f74e337aed8"/><dir name="Permissions"><file name="BlockController.php" hash="4aaf4f088c9d1dfe1a0046a712012648"/><file name="RoleController.php" hash="7a0e56f801a71f4f908d0d04d4fa3850"/><file name="UserController.php" hash="d9d4fdddec1b4623d67265b5c3faf34d"/><file name="VariableController.php" hash="1573e858b09bdf98b4ca3991cc836a8e"/></dir><dir name="Poll"><file name="AnswerController.php" hash="26a579fbfd0555d8dc99178e25c7654e"/></dir><file name="PollController.php" hash="98569c83be3276ec1a5797f25f1fe4be"/><dir name="Promo"><file name="CatalogController.php" hash="a95e80209e4261b2cbcaafe7b4953849"/><file name="QuoteController.php" hash="4200eb22f7fed481c951d8e4aacf04f7"/><file name="WidgetController.php" hash="8d78a3c25df1efa09432623ee310c1ac"/></dir><file name="PromoController.php" hash="58027b59ab52b59e84b2befe223d64a0"/><file name="RatingController.php" hash="204ec6756cd23ba80d3fc607c16060d2"/><dir name="Report"><file name="CustomerController.php" hash="c9c4dd4cecebc0c28cf64f9c3f306551"/><file name="ProductController.php" hash="1324f43ff057047df9e6ce0659f4ed30"/><file name="ReviewController.php" hash="93205a3e730d56dfe24704158280038c"/><file name="SalesController.php" hash="311d14c8d3a9f7a68a89f98dcdb3e3ef"/><file name="ShopcartController.php" hash="14a6ca6c52339734cc251b9cd2d4a654"/><file name="StatisticsController.php" hash="f702c8e2fc6073cda701692c5bc05bff"/><file name="TagController.php" hash="f4b0cba41c30eed2b59f948fb87e7232"/></dir><file name="ReportController.php" hash="374d99da6ef9186d7bc62ff8ffc3ca15"/><dir name="Rss"><file name="CatalogController.php" hash="84c5853975a62ed59a170c774ca35320"/><file name="OrderController.php" hash="b9c5e0858dd272958aca4e438489c379"/></dir><dir name="Sales"><dir name="Billing"><file name="AgreementController.php" hash="9aadbe66720102044ea8f450186b4a8e"/></dir><file name="CreditmemoController.php" hash="e6d5fb30eeaf5714cc55114a8f40cec7"/><file name="InvoiceController.php" hash="6b500c2d7bdcd428be74650fd11d37da"/><dir name="Order"><file name="CreateController.php" hash="42e6c0d8f4fe90df8336b4547293764f"/><file name="CreditmemoController.php" hash="96d814a8435e4f76a1a87846dea788f5"/><file name="EditController.php" hash="7136420bd9f164ef4ea0f0e96058ca3a"/><file name="InvoiceController.php" hash="b6e5d0b4348a428bcfc7ed4512f72b11"/><file name="ShipmentController.php" hash="23aba99f22eef60f0bdd9e669a575e3c"/><file name="StatusController.php" hash="171b04b91e640570938301e412fadb21"/><dir name="View"><file name="GiftmessageController.php" hash="ed2396bd00f98d04539107f5aff5697b"/></dir></dir><file name="OrderController.php" hash="6e5b964cace622eb223e757c189d2826"/><dir name="Recurring"><file name="ProfileController.php" hash="1b74015c8878e6adfec710f5363c88ba"/></dir><file name="ShipmentController.php" hash="a52675b494fbd1550e71f54143bcb55c"/><file name="TransactionsController.php" hash="b3fb548b0e947c60fc5a2b22a1b14426"/></dir><file name="SalesController.php" hash="34b7778d7466c101b695e431c0c0b121"/><file name="SitemapController.php" hash="f62e81d10cfb21c0dc465a25f75df5ad"/><file name="SurveyController.php" hash="f2005c87f3bbcc32ced55d2c2aa374ee"/><dir name="System"><file name="AccountController.php" hash="9dae9d42aad6961a0a3b4d46a9cdb297"/><file name="BackupController.php" hash="a3f7f4fb51b5dd42cae9206bea50d3f5"/><file name="CacheController.php" hash="cb3204aea3fe735dcdf982457bd9aaa4"/><dir name="Config"><dir name="System"><file name="StorageController.php" hash="83a3df901c7cca76bf326a0d8035d997"/></dir></dir><file name="ConfigController.php" hash="f8d32559f18d4d958a29c3ef1254117b"/><dir name="Convert"><file name="GuiController.php" hash="2ead96045879a5d07cf75530684c4a4f"/><file name="ProfileController.php" hash="2b1d123695fd3c031cd5925379aa7443"/></dir><file name="CurrencyController.php" hash="34ccb45bdee9b025fdaaa362b456aae1"/><file name="DesignController.php" hash="3a09344172502dbdf6b6f94b7a597baa"/><dir name="Email"><file name="TemplateController.php" hash="1be1e47ab4c1d90e90fa4a691f69211b"/></dir><file name="StoreController.php" hash="fdb1d7167ad75383630b91d561ce4bc1"/><file name="VariableController.php" hash="c38bc08c88979bb9643643a8bea183e1"/></dir><file name="SystemController.php" hash="498dd6cfa14168ba2765a0d8d3240a7c"/><file name="TagController.php" hash="c2941d83f2ddc5ba6f20789c573dd08c"/><dir name="Tax"><dir name="Class"><file name="CustomerController.php" hash="676f49f71adad524b1b1f0b018c556d2"/><file name="ProductController.php" hash="7a3820b2c70fe2fa35513496c3bf3b49"/></dir><file name="ClassController.php" hash="39bd325cd1a1a77e431f6dde68849856"/><file name="RateController.php" hash="341af76297ca3fd38e2b8943dc2b8c1f"/><file name="RuleController.php" hash="4f7923a77d6d1dc92fc88b1a9dd9690e"/></dir><file name="TaxController.php" hash="3b86fbf064988b2f3e586ebbe62a2bd6"/><file name="UrlrewriteController.php" hash="a94e158b53ec40dc91cf5ee7e27489ac"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3089824a9c4eede436cf56290139d102"/><file name="config.xml" hash="cf9177d143ff59ee422f0e9334430126"/><file name="jstranslator.xml" hash="e2cb3c7d764d22426def080f85047ac5"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_Adminhtml.csv" hash="76618d71efc8acdf0dc09af77731e304"/></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.2.2</min><max>1.9.2.2</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1.3</min><max>1.51.1.3</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.9.2.2</min><max>1.9.2.2</max></package><package><name>Lib_LinLibertineFont</name><channel>community</channel><min>2.8.14.3</min><max>2.8.14.3</max></package><package><name>Lib_Js_TinyMCE</name><channel>community</channel><min>3.5.11.2</min><max>3.5.11.2</max></package></required></dependencies>
18
  </package>