Mage_Core_Modules - Version 1.7.0.1

Version Notes

1.7.0.1

Download this release

Release Info

Developer Magento Core Team
Extension Mage_Core_Modules
Version 1.7.0.1
Comparing to
See all releases


Code changes from version 1.7.0.0 to 1.7.0.1

Files changed (44) hide show
  1. RELEASE_NOTES.txt +22 -0
  2. app/Mage.php +1 -1
  3. app/code/core/Mage/Api/Helper/Data.php +86 -1
  4. app/code/core/Mage/Api/etc/wsdl2.xml +1 -7
  5. app/code/core/Mage/Api/etc/wsi.xml +1 -1
  6. app/code/core/Mage/Api2/Model/Request/Interpreter/Xml.php +4 -0
  7. app/code/core/Mage/Authorizenet/etc/system.xml +1 -1
  8. app/code/core/Mage/Catalog/Model/Product/Api.php +12 -18
  9. app/code/core/Mage/Catalog/Model/Product/Api/V2.php +0 -60
  10. app/code/core/Mage/Customer/Model/Customer/Api.php +12 -21
  11. app/code/core/Mage/Customer/Model/Customer/Api/V2.php +0 -60
  12. app/code/core/Mage/Install/Model/Installer/Console.php +3 -1
  13. app/code/core/Mage/Paygate/etc/system.xml +1 -1
  14. app/code/core/Mage/Payment/etc/system.xml +6 -6
  15. app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Field/Country.php +127 -0
  16. app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Field/Hidden.php +48 -0
  17. app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Expanded.php +52 -0
  18. app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Global.php +1 -0
  19. app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php +77 -0
  20. app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php +51 -1
  21. app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Location.php +353 -0
  22. app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Payment.php +128 -0
  23. app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php +1 -1
  24. app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php +5 -3
  25. app/code/core/Mage/Paypal/Model/Api/Nvp.php +5 -1
  26. app/code/core/Mage/Paypal/Model/Config.php +36 -21
  27. app/code/core/Mage/Paypal/Model/Ipn.php +8 -6
  28. app/code/core/Mage/Paypal/Model/Observer.php +38 -0
  29. app/code/core/Mage/Paypal/Model/Payflowadvanced.php +7 -0
  30. app/code/core/Mage/Paypal/Model/Payflowlink.php +112 -2
  31. app/code/core/Mage/Paypal/Model/Payflowpro.php +6 -2
  32. app/code/core/Mage/Paypal/Model/System/Config/Source/UrlMethod.php +44 -0
  33. app/code/core/Mage/Paypal/etc/config.xml +30 -2
  34. app/code/core/Mage/Paypal/etc/system.xml +3242 -1877
  35. app/code/core/Mage/Sales/Model/Api/Resource.php +4 -2
  36. app/code/core/Mage/Sales/Model/Order/Api.php +44 -56
  37. app/code/core/Mage/Sales/Model/Order/Api/V2.php +0 -97
  38. app/code/core/Mage/Sales/Model/Order/Creditmemo/Api.php +18 -19
  39. app/code/core/Mage/Sales/Model/Order/Creditmemo/Api/V2.php +1 -0
  40. app/code/core/Mage/Sales/Model/Order/Invoice/Api.php +29 -42
  41. app/code/core/Mage/Sales/Model/Order/Invoice/Api/V2.php +20 -87
  42. app/code/core/Mage/Sales/Model/Order/Shipment/Api.php +15 -20
  43. app/code/core/Mage/Sales/Model/Order/Shipment/Api/V2.php +4 -59
  44. package.xml +5 -5
RELEASE_NOTES.txt CHANGED
@@ -1,3 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ==== 1.7.0.0 ====
2
 
3
  === Major Highlights ===
1
+ ==== 1.7.0.1 ====
2
+
3
+ === Major Highlights ===
4
+ Improved the backend configuration UI for PayPal payment solutions
5
+
6
+ === Improvements ===
7
+ Added the functionality for creating nested field sets in the System configuration
8
+ Implemented the support for the extended and shared configuration fields
9
+ Added the ability to define dependencies between fields from different field sets
10
+
11
+ === Changes ===
12
+ Moved PayPal configuration to the Payment Methods menu
13
+ Set the default value of the cUrl VERIFYPEER option to TRUE for PayPal and added the ability to change this value
14
+ Changed the design and position of the configuration field tooltips
15
+
16
+ === Fixes ===
17
+ Fixed: Inability of SOAP v2 API use in non WS-I compatible mode in the applications written in languages with strong typing
18
+ Fixed: In some cases comments history tab on order does not contain information about customer notifications
19
+ Fixed: Several potential security vulnerabilities
20
+
21
+
22
+
23
  ==== 1.7.0.0 ====
24
 
25
  === Major Highlights ===
app/Mage.php CHANGED
@@ -170,7 +170,7 @@ final class Mage
170
  'major' => '1',
171
  'minor' => '7',
172
  'revision' => '0',
173
- 'patch' => '0',
174
  'stability' => '',
175
  'number' => '',
176
  );
170
  'major' => '1',
171
  'minor' => '7',
172
  'revision' => '0',
173
+ 'patch' => '1',
174
  'stability' => '',
175
  'number' => '',
176
  );
app/code/core/Mage/Api/Helper/Data.php CHANGED
@@ -250,4 +250,89 @@ class Mage_Api_Helper_Data extends Mage_Core_Helper_Abstract
250
  }
251
  }
252
  }
253
- } // Class Mage_Api_Helper_Data End
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  }
251
  }
252
  }
253
+
254
+ /**
255
+ * Parse filters and format them to be applicable for collection filtration
256
+ *
257
+ * @param null|object|array $filters
258
+ * @param array $fieldsMap Map of field names in format: array('field_name_in_filter' => 'field_name_in_db')
259
+ * @return array
260
+ */
261
+ public function parseFilters($filters, $fieldsMap = null)
262
+ {
263
+ // if filters are used in SOAP they must be represented in array format to be used for collection filtration
264
+ if (is_object($filters)) {
265
+ $parsedFilters = array();
266
+ // parse simple filter
267
+ if (isset($filters->filter) && is_array($filters->filter)) {
268
+ foreach ($filters->filter as $field => $value) {
269
+ if (is_object($value) && isset($value->key) && isset($value->value)) {
270
+ $parsedFilters[$value->key] = $value->value;
271
+ } else {
272
+ $parsedFilters[$field] = $value;
273
+ }
274
+ }
275
+ }
276
+ // parse complex filter
277
+ if (isset($filters->complex_filter) && is_array($filters->complex_filter)) {
278
+ if ($this->isComplianceWSI()) {
279
+ // WS-I compliance mode
280
+ foreach ($filters->complex_filter as $fieldName => $condition) {
281
+ if (is_object($condition) && isset($condition->key) && isset($condition->value)) {
282
+ $conditionName = $condition->key;
283
+ $conditionValue = $condition->value;
284
+ $this->formatFilterConditionValue($conditionName, $conditionValue);
285
+ $parsedFilters[$fieldName] = array($conditionName => $conditionValue);
286
+ }
287
+ }
288
+ } else {
289
+ // non WS-I compliance mode
290
+ foreach ($filters->complex_filter as $value) {
291
+ if (is_object($value) && isset($value->key) && isset($value->value)) {
292
+ $fieldName = $value->key;
293
+ $condition = $value->value;
294
+ if (is_object($condition) && isset($condition->key) && isset($condition->value)) {
295
+ $this->formatFilterConditionValue($condition->key, $condition->value);
296
+ $parsedFilters[$fieldName] = array($condition->key => $condition->value);
297
+ }
298
+ }
299
+ }
300
+ }
301
+ }
302
+ $filters = $parsedFilters;
303
+ }
304
+ // make sure that method result is always array
305
+ if (!is_array($filters)) {
306
+ $filters = array();
307
+ }
308
+ // apply fields mapping
309
+ if (isset($fieldsMap) && is_array($fieldsMap)) {
310
+ foreach ($filters as $field => $value) {
311
+ if (isset($fieldsMap[$field])) {
312
+ unset($filters[$field]);
313
+ $field = $fieldsMap[$field];
314
+ $filters[$field] = $value;
315
+ }
316
+ }
317
+ }
318
+ return $filters;
319
+ }
320
+
321
+ /**
322
+ * Convert condition value from the string into the array
323
+ * for the condition operators that require value to be an array.
324
+ * Condition value is changed by reference
325
+ *
326
+ * @param string $conditionOperator
327
+ * @param string $conditionValue
328
+ */
329
+ public function formatFilterConditionValue($conditionOperator, &$conditionValue)
330
+ {
331
+ if (is_string($conditionOperator) && in_array($conditionOperator, array('in', 'nin', 'finset'))
332
+ && is_string($conditionValue)
333
+ ) {
334
+ $delimiter = ',';
335
+ $conditionValue = explode($delimiter, $conditionValue);
336
+ }
337
+ }
338
+ }
app/code/core/Mage/Api/etc/wsdl2.xml CHANGED
@@ -31,12 +31,6 @@
31
  </restriction>
32
  </complexContent>
33
  </complexType>
34
- <complexType name="associativeAnyTypeEntity">
35
- <all>
36
- <element name="key" type="xsd:string" />
37
- <element name="value" type="typens:anyType" />
38
- </all>
39
- </complexType>
40
  <complexType name="filters">
41
  <all>
42
  <element name="filter" type="typens:associativeArray" minOccurs="0" />
@@ -53,7 +47,7 @@
53
  <complexType name="complexFilter">
54
  <all>
55
  <element name="key" type="xsd:string" />
56
- <element name="value" type="typens:associativeAnyTypeEntity" />
57
  </all>
58
  </complexType>
59
  <complexType name="ArrayOfString">
31
  </restriction>
32
  </complexContent>
33
  </complexType>
 
 
 
 
 
 
34
  <complexType name="filters">
35
  <all>
36
  <element name="filter" type="typens:associativeArray" minOccurs="0" />
47
  <complexType name="complexFilter">
48
  <all>
49
  <element name="key" type="xsd:string" />
50
+ <element name="value" type="typens:associativeEntity" />
51
  </all>
52
  </complexType>
53
  <complexType name="ArrayOfString">
app/code/core/Mage/Api/etc/wsi.xml CHANGED
@@ -33,7 +33,7 @@
33
  <xsd:complexType name="complexFilter">
34
  <xsd:sequence>
35
  <xsd:element name="key" type="xsd:string" />
36
- <xsd:element name="value" type="typens:associativeMultiEntity" />
37
  </xsd:sequence>
38
  </xsd:complexType>
39
  <xsd:complexType name="complexFilterArray">
33
  <xsd:complexType name="complexFilter">
34
  <xsd:sequence>
35
  <xsd:element name="key" type="xsd:string" />
36
+ <xsd:element name="value" type="typens:associativeEntity" />
37
  </xsd:sequence>
38
  </xsd:complexType>
39
  <xsd:complexType name="complexFilterArray">
app/code/core/Mage/Api2/Model/Request/Interpreter/Xml.php CHANGED
@@ -61,9 +61,13 @@ class Mage_Api2_Model_Request_Interpreter_Xml implements Mage_Api2_Model_Request
61
  }
62
  $body = false !== strpos($body, '<?xml') ? $body : '<?xml version="1.0"?>' . PHP_EOL . $body;
63
 
 
 
64
  set_error_handler(array($this, '_loadErrorHandler')); // Warnings and errors are suppressed
65
  $config = simplexml_load_string($body);
66
  restore_error_handler();
 
 
67
 
68
  // Check if there was a error while loading file
69
  if ($this->_loadErrorStr !== null) {
61
  }
62
  $body = false !== strpos($body, '<?xml') ? $body : '<?xml version="1.0"?>' . PHP_EOL . $body;
63
 
64
+ // disable external entity loading to prevent possible vulnerability
65
+ libxml_disable_entity_loader(true);
66
  set_error_handler(array($this, '_loadErrorHandler')); // Warnings and errors are suppressed
67
  $config = simplexml_load_string($body);
68
  restore_error_handler();
69
+ // restore default behavior to make possible to load external entities
70
+ libxml_disable_entity_loader(false);
71
 
72
  // Check if there was a error while loading file
73
  if ($this->_loadErrorStr !== null) {
app/code/core/Mage/Authorizenet/etc/system.xml CHANGED
@@ -32,7 +32,7 @@
32
  <authorizenet_directpost translate="label" module="authorizenet">
33
  <label>Authorize.net Direct Post</label>
34
  <frontend_type>text</frontend_type>
35
- <sort_order>10</sort_order>
36
  <show_in_default>1</show_in_default>
37
  <show_in_website>1</show_in_website>
38
  <show_in_store>1</show_in_store>
32
  <authorizenet_directpost translate="label" module="authorizenet">
33
  <label>Authorize.net Direct Post</label>
34
  <frontend_type>text</frontend_type>
35
+ <sort_order>34</sort_order>
36
  <show_in_default>1</show_in_default>
37
  <show_in_website>1</show_in_website>
38
  <show_in_store>1</show_in_store>
app/code/core/Mage/Catalog/Model/Product/Api.php CHANGED
@@ -83,7 +83,7 @@ class Mage_Catalog_Model_Product_Api extends Mage_Catalog_Model_Api_Resource
83
  /**
84
  * Retrieve list of products with basic info (id, sku, type, set, name)
85
  *
86
- * @param array $filters
87
  * @param string|int $store
88
  * @return array
89
  */
@@ -93,34 +93,28 @@ class Mage_Catalog_Model_Product_Api extends Mage_Catalog_Model_Api_Resource
93
  ->addStoreFilter($this->_getStoreId($store))
94
  ->addAttributeToSelect('name');
95
 
96
- if (is_array($filters)) {
97
- try {
98
- foreach ($filters as $field => $value) {
99
- if (isset($this->_filtersMap[$field])) {
100
- $field = $this->_filtersMap[$field];
101
- }
102
-
103
- $collection->addFieldToFilter($field, $value);
104
- }
105
- } catch (Mage_Core_Exception $e) {
106
- $this->_fault('filters_invalid', $e->getMessage());
107
  }
 
 
108
  }
109
-
110
  $result = array();
111
-
112
  foreach ($collection as $product) {
113
- // $result[] = $product->getData();
114
- $result[] = array( // Basic product data
115
  'product_id' => $product->getId(),
116
  'sku' => $product->getSku(),
117
  'name' => $product->getName(),
118
  'set' => $product->getAttributeSetId(),
119
  'type' => $product->getTypeId(),
120
- 'category_ids' => $product->getCategoryIds()
 
121
  );
122
  }
123
-
124
  return $result;
125
  }
126
 
83
  /**
84
  * Retrieve list of products with basic info (id, sku, type, set, name)
85
  *
86
+ * @param null|object|array $filters
87
  * @param string|int $store
88
  * @return array
89
  */
93
  ->addStoreFilter($this->_getStoreId($store))
94
  ->addAttributeToSelect('name');
95
 
96
+ /** @var $apiHelper Mage_Api_Helper_Data */
97
+ $apiHelper = Mage::helper('api');
98
+ $filters = $apiHelper->parseFilters($filters, $this->_filtersMap);
99
+ try {
100
+ foreach ($filters as $field => $value) {
101
+ $collection->addFieldToFilter($field, $value);
 
 
 
 
 
102
  }
103
+ } catch (Mage_Core_Exception $e) {
104
+ $this->_fault('filters_invalid', $e->getMessage());
105
  }
 
106
  $result = array();
 
107
  foreach ($collection as $product) {
108
+ $result[] = array(
 
109
  'product_id' => $product->getId(),
110
  'sku' => $product->getSku(),
111
  'name' => $product->getName(),
112
  'set' => $product->getAttributeSetId(),
113
  'type' => $product->getTypeId(),
114
+ 'category_ids' => $product->getCategoryIds(),
115
+ 'website_ids' => $product->getWebsiteIds()
116
  );
117
  }
 
118
  return $result;
119
  }
120
 
app/code/core/Mage/Catalog/Model/Product/Api/V2.php CHANGED
@@ -33,66 +33,6 @@
33
  */
34
  class Mage_Catalog_Model_Product_Api_V2 extends Mage_Catalog_Model_Product_Api
35
  {
36
-
37
- /**
38
- * Retrieve list of products with basic info (id, sku, type, set, name)
39
- *
40
- * @param array $filters
41
- * @param string|int $store
42
- * @return array
43
- */
44
- public function items($filters = null, $store = null)
45
- {
46
- $collection = Mage::getModel('catalog/product')->getCollection()
47
- ->addStoreFilter($this->_getStoreId($store))
48
- ->addAttributeToSelect('name');
49
-
50
- $preparedFilters = array();
51
- if (isset($filters->filter)) {
52
- foreach ($filters->filter as $_filter) {
53
- $preparedFilters[$_filter->key] = $_filter->value;
54
- }
55
- }
56
- if (isset($filters->complex_filter)) {
57
- foreach ($filters->complex_filter as $_filter) {
58
- $_value = $_filter->value;
59
- $preparedFilters[$_filter->key] = array(
60
- $_value->key => $_value->value
61
- );
62
- }
63
- }
64
-
65
- if (!empty($preparedFilters)) {
66
- try {
67
- foreach ($preparedFilters as $field => $value) {
68
- if (isset($this->_filtersMap[$field])) {
69
- $field = $this->_filtersMap[$field];
70
- }
71
-
72
- $collection->addFieldToFilter($field, $value);
73
- }
74
- } catch (Mage_Core_Exception $e) {
75
- $this->_fault('filters_invalid', $e->getMessage());
76
- }
77
- }
78
-
79
- $result = array();
80
-
81
- foreach ($collection as $product) {
82
- $result[] = array(
83
- 'product_id' => $product->getId(),
84
- 'sku' => $product->getSku(),
85
- 'name' => $product->getName(),
86
- 'set' => $product->getAttributeSetId(),
87
- 'type' => $product->getTypeId(),
88
- 'category_ids' => $product->getCategoryIds(),
89
- 'website_ids' => $product->getWebsiteIds()
90
- );
91
- }
92
-
93
- return $result;
94
- }
95
-
96
  /**
97
  * Retrieve product info
98
  *
33
  */
34
  class Mage_Catalog_Model_Product_Api_V2 extends Mage_Catalog_Model_Product_Api
35
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  /**
37
  * Retrieve product info
38
  *
app/code/core/Mage/Customer/Model/Customer/Api.php CHANGED
@@ -107,45 +107,36 @@ class Mage_Customer_Model_Customer_Api extends Mage_Customer_Model_Api_Resource
107
  }
108
 
109
  /**
110
- * Retrieve cutomers data
111
  *
112
- * @param array $filters
113
  * @return array
114
  */
115
  public function items($filters)
116
  {
117
- $collection = Mage::getModel('customer/customer')->getCollection()
118
- ->addAttributeToSelect('*');
119
-
120
- if (is_array($filters)) {
121
- try {
122
- foreach ($filters as $field => $value) {
123
- if (isset($this->_mapAttributes[$field])) {
124
- $field = $this->_mapAttributes[$field];
125
- }
126
-
127
- $collection->addFieldToFilter($field, $value);
128
- }
129
- } catch (Mage_Core_Exception $e) {
130
- $this->_fault('filters_invalid', $e->getMessage());
131
  }
 
 
132
  }
133
-
134
  $result = array();
135
  foreach ($collection as $customer) {
136
  $data = $customer->toArray();
137
  $row = array();
138
-
139
  foreach ($this->_mapAttributes as $attributeAlias => $attributeCode) {
140
  $row[$attributeAlias] = (isset($data[$attributeCode]) ? $data[$attributeCode] : null);
141
  }
142
-
143
  foreach ($this->getAllowedAttributes($customer) as $attributeCode => $attribute) {
144
  if (isset($data[$attributeCode])) {
145
  $row[$attributeCode] = $data[$attributeCode];
146
  }
147
  }
148
-
149
  $result[] = $row;
150
  }
151
 
@@ -162,7 +153,7 @@ class Mage_Customer_Model_Customer_Api extends Mage_Customer_Model_Api_Resource
162
  public function update($customerId, $customerData)
163
  {
164
  $customerData = $this->_prepareData($customerData);
165
-
166
  $customer = Mage::getModel('customer/customer')->load($customerId);
167
 
168
  if (!$customer->getId()) {
107
  }
108
 
109
  /**
110
+ * Retrieve customers data
111
  *
112
+ * @param object|array $filters
113
  * @return array
114
  */
115
  public function items($filters)
116
  {
117
+ $collection = Mage::getModel('customer/customer')->getCollection()->addAttributeToSelect('*');
118
+ /** @var $apiHelper Mage_Api_Helper_Data */
119
+ $apiHelper = Mage::helper('api');
120
+ $filters = $apiHelper->parseFilters($filters, $this->_mapAttributes);
121
+ try {
122
+ foreach ($filters as $field => $value) {
123
+ $collection->addFieldToFilter($field, $value);
 
 
 
 
 
 
 
124
  }
125
+ } catch (Mage_Core_Exception $e) {
126
+ $this->_fault('filters_invalid', $e->getMessage());
127
  }
 
128
  $result = array();
129
  foreach ($collection as $customer) {
130
  $data = $customer->toArray();
131
  $row = array();
 
132
  foreach ($this->_mapAttributes as $attributeAlias => $attributeCode) {
133
  $row[$attributeAlias] = (isset($data[$attributeCode]) ? $data[$attributeCode] : null);
134
  }
 
135
  foreach ($this->getAllowedAttributes($customer) as $attributeCode => $attribute) {
136
  if (isset($data[$attributeCode])) {
137
  $row[$attributeCode] = $data[$attributeCode];
138
  }
139
  }
 
140
  $result[] = $row;
141
  }
142
 
153
  public function update($customerId, $customerData)
154
  {
155
  $customerData = $this->_prepareData($customerData);
156
+
157
  $customer = Mage::getModel('customer/customer')->load($customerId);
158
 
159
  if (!$customer->getId()) {
app/code/core/Mage/Customer/Model/Customer/Api/V2.php CHANGED
@@ -47,64 +47,4 @@ class Mage_Customer_Model_Customer_Api_V2 extends Mage_Customer_Model_Customer_A
47
  }
48
  return array();
49
  }
50
-
51
- /**
52
- * Retrieve cutomers data
53
- *
54
- * @param array $filters
55
- * @return array
56
- */
57
- public function items($filters)
58
- {
59
- $collection = Mage::getModel('customer/customer')->getCollection()
60
- ->addAttributeToSelect('*');
61
-
62
- $preparedFilters = array();
63
- if (isset($filters->filter)) {
64
- foreach ($filters->filter as $_filter) {
65
- $preparedFilters[$_filter->key] = $_filter->value;
66
- }
67
- }
68
- if (isset($filters->complex_filter)) {
69
- foreach ($filters->complex_filter as $_filter) {
70
- $_value = $_filter->value;
71
- $preparedFilters[$_filter->key] = array(
72
- $_value->key => $_value->value
73
- );
74
- }
75
- }
76
-
77
- if (!empty($preparedFilters)) {
78
- try {
79
- foreach ($preparedFilters as $field => $value) {
80
- if (isset($this->_mapAttributes[$field])) {
81
- $field = $this->_mapAttributes[$field];
82
- }
83
- $collection->addFieldToFilter($field, $value);
84
- }
85
- } catch (Mage_Core_Exception $e) {
86
- $this->_fault('filters_invalid', $e->getMessage());
87
- }
88
- }
89
-
90
- $result = array();
91
- foreach ($collection as $customer) {
92
- $data = $customer->toArray();
93
- $row = array();
94
-
95
- foreach ($this->_mapAttributes as $attributeAlias => $attributeCode) {
96
- $row[$attributeAlias] = (isset($data[$attributeCode]) ? $data[$attributeCode] : null);
97
- }
98
-
99
- foreach ($this->getAllowedAttributes($customer) as $attributeCode => $attribute) {
100
- if (isset($data[$attributeCode])) {
101
- $row[$attributeCode] = $data[$attributeCode];
102
- }
103
- }
104
-
105
- $result[] = $row;
106
- }
107
-
108
- return $result;
109
- }
110
  }
47
  }
48
  return array();
49
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  }
app/code/core/Mage/Install/Model/Installer/Console.php CHANGED
@@ -392,7 +392,9 @@ class Mage_Install_Model_Installer_Console extends Mage_Install_Model_Installer_
392
  /**
393
  * Prepare encryption key and validate it
394
  */
395
- $encryptionKey = empty($this->_args['encryption_key']) ? md5(time()) : $this->_args['encryption_key'];
 
 
396
  $this->_getDataModel()->setEncryptionKey($encryptionKey);
397
  $installer->validateEncryptionKey($encryptionKey);
398
 
392
  /**
393
  * Prepare encryption key and validate it
394
  */
395
+ $encryptionKey = empty($this->_args['encryption_key'])
396
+ ? md5(Mage::helper('core')->getRandomString(10))
397
+ : $this->_args['encryption_key'];
398
  $this->_getDataModel()->setEncryptionKey($encryptionKey);
399
  $installer->validateEncryptionKey($encryptionKey);
400
 
app/code/core/Mage/Paygate/etc/system.xml CHANGED
@@ -32,7 +32,7 @@
32
  <authorizenet translate="label" module="paygate">
33
  <label>Authorize.net</label>
34
  <frontend_type>text</frontend_type>
35
- <sort_order>10</sort_order>
36
  <show_in_default>1</show_in_default>
37
  <show_in_website>1</show_in_website>
38
  <show_in_store>1</show_in_store>
32
  <authorizenet translate="label" module="paygate">
33
  <label>Authorize.net</label>
34
  <frontend_type>text</frontend_type>
35
+ <sort_order>34</sort_order>
36
  <show_in_default>1</show_in_default>
37
  <show_in_website>1</show_in_website>
38
  <show_in_store>1</show_in_store>
app/code/core/Mage/Payment/etc/system.xml CHANGED
@@ -39,7 +39,7 @@
39
  <ccsave translate="label">
40
  <label>Saved CC</label>
41
  <frontend_type>text</frontend_type>
42
- <sort_order>1</sort_order>
43
  <show_in_default>1</show_in_default>
44
  <show_in_website>1</show_in_website>
45
  <show_in_store>1</show_in_store>
@@ -173,7 +173,7 @@
173
  <checkmo translate="label">
174
  <label>Check / Money Order</label>
175
  <frontend_type>text</frontend_type>
176
- <sort_order>5</sort_order>
177
  <show_in_default>1</show_in_default>
178
  <show_in_website>1</show_in_website>
179
  <show_in_store>1</show_in_store>
@@ -270,7 +270,7 @@
270
  <free translate="label">
271
  <label>Zero Subtotal Checkout</label>
272
  <frontend_type>text</frontend_type>
273
- <sort_order>5</sort_order>
274
  <show_in_default>1</show_in_default>
275
  <show_in_website>1</show_in_website>
276
  <show_in_store>1</show_in_store>
@@ -366,7 +366,7 @@
366
  <purchaseorder translate="label">
367
  <label>Purchase Order</label>
368
  <frontend_type>text</frontend_type>
369
- <sort_order>7</sort_order>
370
  <show_in_default>1</show_in_default>
371
  <show_in_website>1</show_in_website>
372
  <show_in_store>1</show_in_store>
@@ -448,7 +448,7 @@
448
  <banktransfer translate="label">
449
  <label>Bank Transfer Payment</label>
450
  <frontend_type>text</frontend_type>
451
- <sort_order>5</sort_order>
452
  <show_in_default>1</show_in_default>
453
  <show_in_website>1</show_in_website>
454
  <show_in_store>1</show_in_store>
@@ -535,7 +535,7 @@
535
  <cashondelivery translate="label">
536
  <label>Cash On Delivery Payment</label>
537
  <frontend_type>text</frontend_type>
538
- <sort_order>5</sort_order>
539
  <show_in_default>1</show_in_default>
540
  <show_in_website>1</show_in_website>
541
  <show_in_store>1</show_in_store>
39
  <ccsave translate="label">
40
  <label>Saved CC</label>
41
  <frontend_type>text</frontend_type>
42
+ <sort_order>27</sort_order>
43
  <show_in_default>1</show_in_default>
44
  <show_in_website>1</show_in_website>
45
  <show_in_store>1</show_in_store>
173
  <checkmo translate="label">
174
  <label>Check / Money Order</label>
175
  <frontend_type>text</frontend_type>
176
+ <sort_order>30</sort_order>
177
  <show_in_default>1</show_in_default>
178
  <show_in_website>1</show_in_website>
179
  <show_in_store>1</show_in_store>
270
  <free translate="label">
271
  <label>Zero Subtotal Checkout</label>
272
  <frontend_type>text</frontend_type>
273
+ <sort_order>30</sort_order>
274
  <show_in_default>1</show_in_default>
275
  <show_in_website>1</show_in_website>
276
  <show_in_store>1</show_in_store>
366
  <purchaseorder translate="label">
367
  <label>Purchase Order</label>
368
  <frontend_type>text</frontend_type>
369
+ <sort_order>32</sort_order>
370
  <show_in_default>1</show_in_default>
371
  <show_in_website>1</show_in_website>
372
  <show_in_store>1</show_in_store>
448
  <banktransfer translate="label">
449
  <label>Bank Transfer Payment</label>
450
  <frontend_type>text</frontend_type>
451
+ <sort_order>30</sort_order>
452
  <show_in_default>1</show_in_default>
453
  <show_in_website>1</show_in_website>
454
  <show_in_store>1</show_in_store>
535
  <cashondelivery translate="label">
536
  <label>Cash On Delivery Payment</label>
537
  <frontend_type>text</frontend_type>
538
+ <sort_order>30</sort_order>
539
  <show_in_default>1</show_in_default>
540
  <show_in_website>1</show_in_website>
541
  <show_in_store>1</show_in_store>
app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Field/Country.php ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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@magentocommerce.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.magentocommerce.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Paypal
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Field renderer for PayPal merchant country selector
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Paypal
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Paypal_Block_Adminhtml_System_Config_Field_Country
35
+ extends Mage_Adminhtml_Block_System_Config_Form_Field
36
+ {
37
+ /**#@+
38
+ *
39
+ * Request parameters names
40
+ */
41
+ const REQUEST_PARAM_COUNTRY = 'country';
42
+ const REQUEST_PARAM_DEFAULT = 'default_country';
43
+ /**#@-*/
44
+
45
+ /**
46
+ * Country of default scope
47
+ *
48
+ * @var string
49
+ */
50
+ protected $_defaultCountry;
51
+
52
+ /**
53
+ * Render country field considering request parameter
54
+ *
55
+ * @param Varien_Data_Form_Element_Abstract $element
56
+ * @return string
57
+ */
58
+ public function render(Varien_Data_Form_Element_Abstract $element)
59
+ {
60
+ $country = $this->getRequest()->getParam(self::REQUEST_PARAM_COUNTRY);
61
+ if ($country) {
62
+ $element->setValue($country);
63
+ }
64
+
65
+ if ($element->getCanUseDefaultValue()) {
66
+ $defaultConfigNode = Mage::getConfig()->getNode(null, 'default');
67
+ if ($defaultConfigNode) {
68
+ $this->_defaultCountry = (string)$defaultConfigNode->descend('paypal/general/merchant_country');
69
+ }
70
+ if (!$this->_defaultCountry) {
71
+ $this->_defaultCountry = Mage::helper('core')->getDefaultCountry();
72
+ }
73
+ if ($country) {
74
+ $shouldInherit = $country == $this->_defaultCountry
75
+ && $this->getRequest()->getParam(self::REQUEST_PARAM_DEFAULT);
76
+ $element->setInherit($shouldInherit);
77
+ }
78
+ if ($element->getInherit()) {
79
+ $this->_defaultCountry = null;
80
+ }
81
+ }
82
+
83
+ return parent::render($element);
84
+ }
85
+
86
+ /**
87
+ * Get country selector html
88
+ *
89
+ * @param Varien_Data_Form_Element_Abstract $element
90
+ * @return string
91
+ */
92
+ protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
93
+ {
94
+ $configDataModel = Mage::getSingleton('adminhtml/config_data');
95
+ $urlParams = array(
96
+ 'section' => $configDataModel->getSection(),
97
+ 'website' => $configDataModel->getWebsite(),
98
+ 'store' => $configDataModel->getStore(),
99
+ self::REQUEST_PARAM_COUNTRY => '__country__',
100
+ );
101
+ $urlString = $this->helper('core')
102
+ ->jsQuoteEscape(Mage::getModel('adminhtml/url')->getUrl('*/*/*', $urlParams));
103
+ $jsString = '
104
+ $("' . $element->getHtmlId() . '").observe("change", function () {
105
+ location.href = \'' . $urlString . '\'.replace("__country__", this.value);
106
+ });
107
+ ';
108
+
109
+ if ($this->_defaultCountry) {
110
+ $urlParams[self::REQUEST_PARAM_DEFAULT] = '__default__';
111
+ $urlString = $this->helper('core')
112
+ ->jsQuoteEscape(Mage::getModel('adminhtml/url')->getUrl('*/*/*', $urlParams));
113
+ $jsParentCountry = $this->helper('core')->jsQuoteEscape($this->_defaultCountry);
114
+ $jsString .= '
115
+ $("' . $element->getHtmlId() . '_inherit").observe("click", function () {
116
+ if (this.checked) {
117
+ location.href = \'' . $urlString . '\'.replace("__country__", \'' . $jsParentCountry . '\')
118
+ .replace("__default__", "1");
119
+ }
120
+ });
121
+ ';
122
+ }
123
+
124
+ return parent::_getElementHtml($element) . $this->helper('adminhtml/js')
125
+ ->getScript('document.observe("dom:loaded", function() {' . $jsString . '});');
126
+ }
127
+ }
app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Field/Hidden.php ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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@magentocommerce.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.magentocommerce.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Paypal
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Field renderer for hidden fields
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Paypal
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Paypal_Block_Adminhtml_System_Config_Field_Hidden
35
+ extends Mage_Adminhtml_Block_System_Config_Form_Field
36
+ {
37
+ /**
38
+ * Decorate field row html to be invisible
39
+ *
40
+ * @param Varien_Data_Form_Element_Abstract $element
41
+ * @param string $html
42
+ * @return string
43
+ */
44
+ protected function _decorateRowHtml($element, $html)
45
+ {
46
+ return '<tr id="row_' . $element->getHtmlId() . '" style="display: none;">' . $html . '</tr>';
47
+ }
48
+ }
app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Expanded.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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@magentocommerce.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.magentocommerce.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Paypal
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Fielset renderer which expanded by default
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Paypal
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Paypal_Block_Adminhtml_System_Config_Fieldset_Expanded
35
+ extends Mage_Adminhtml_Block_System_Config_Form_Fieldset
36
+ {
37
+ /**
38
+ * Return collapse state
39
+ *
40
+ * @param Varien_Data_Form_Element_Abstract $element
41
+ * @return bool
42
+ */
43
+ protected function _getCollapseState($element)
44
+ {
45
+ $extra = Mage::getSingleton('admin/session')->getUser()->getExtra();
46
+ if (isset($extra['configState'][$element->getId()])) {
47
+ return $extra['configState'][$element->getId()];
48
+ }
49
+
50
+ return true;
51
+ }
52
+ }
app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Global.php CHANGED
@@ -27,6 +27,7 @@
27
  /**
28
  * Fieldset renderer for PayPal global settings
29
  * @author Magento Core Team <core@magentocommerce.com>
 
30
  */
31
  class Mage_Paypal_Block_Adminhtml_System_Config_Fieldset_Global
32
  extends Mage_Adminhtml_Block_Abstract
27
  /**
28
  * Fieldset renderer for PayPal global settings
29
  * @author Magento Core Team <core@magentocommerce.com>
30
+ * @deprecated since 1.7.0.1
31
  */
32
  class Mage_Paypal_Block_Adminhtml_System_Config_Fieldset_Global
33
  extends Mage_Adminhtml_Block_Abstract
app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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@magentocommerce.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.magentocommerce.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Paypal
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Fieldset renderer for PayPal solutions group
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Paypal
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Paypal_Block_Adminhtml_System_Config_Fieldset_Group
35
+ extends Mage_Adminhtml_Block_System_Config_Form_Fieldset
36
+ {
37
+ /**
38
+ * Return header comment part of html for fieldset
39
+ *
40
+ * @param Varien_Data_Form_Element_Abstract $element
41
+ * @return string
42
+ */
43
+ protected function _getHeaderCommentHtml($element)
44
+ {
45
+ $groupConfig = $this->getGroup($element)->asArray();
46
+
47
+ if (empty($groupConfig['help_url']) || !$element->getComment()) {
48
+ return parent::_getHeaderCommentHtml($element);
49
+ }
50
+
51
+ $html = '<div class="comment">' . $element->getComment()
52
+ . ' <a target="_blank" href="' . $groupConfig['help_url'] . '">'
53
+ . Mage::helper('paypal')->__('Help') . '</a></div>';
54
+
55
+ return $html;
56
+ }
57
+
58
+ /**
59
+ * Return collapse state
60
+ *
61
+ * @param Varien_Data_Form_Element_Abstract $element
62
+ * @return bool
63
+ */
64
+ protected function _getCollapseState($element)
65
+ {
66
+ $extra = Mage::getSingleton('admin/session')->getUser()->getExtra();
67
+ if (isset($extra['configState'][$element->getId()])) {
68
+ return $extra['configState'][$element->getId()];
69
+ }
70
+
71
+ if ($element->getExpanded() !== null) {
72
+ return 1;
73
+ }
74
+
75
+ return false;
76
+ }
77
+ }
app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php CHANGED
@@ -27,6 +27,7 @@
27
 
28
  /**
29
  * Renderer for PayPal banner in System Configuration
 
30
  * @author Magento Core Team <core@magentocommerce.com>
31
  */
32
  class Mage_Paypal_Block_Adminhtml_System_Config_Fieldset_Hint
@@ -43,6 +44,55 @@ class Mage_Paypal_Block_Adminhtml_System_Config_Fieldset_Hint
43
  */
44
  public function render(Varien_Data_Form_Element_Abstract $element)
45
  {
46
- return $this->toHtml();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  }
48
  }
27
 
28
  /**
29
  * Renderer for PayPal banner in System Configuration
30
+ *
31
  * @author Magento Core Team <core@magentocommerce.com>
32
  */
33
  class Mage_Paypal_Block_Adminhtml_System_Config_Fieldset_Hint
44
  */
45
  public function render(Varien_Data_Form_Element_Abstract $element)
46
  {
47
+ $elementOriginalData = $element->getOriginalData();
48
+ if (isset($elementOriginalData['help_link'])) {
49
+ $this->setHelpLink($elementOriginalData['help_link']);
50
+ }
51
+ $js = '
52
+ paypalToggleSolution = function(id, url) {
53
+ var doScroll = false;
54
+ Fieldset.toggleCollapse(id, url);
55
+ if ($(this).hasClassName("open")) {
56
+ $$(".with-button button.button").each(function(anotherButton) {
57
+ if (anotherButton != this && $(anotherButton).hasClassName("open")) {
58
+ $(anotherButton).click();
59
+ doScroll = true;
60
+ }
61
+ }.bind(this));
62
+ }
63
+ if (doScroll) {
64
+ var pos = Element.cumulativeOffset($(this));
65
+ window.scrollTo(pos[0], pos[1] - 45);
66
+ }
67
+ }
68
+
69
+ togglePaypalSolutionConfigureButton = function(button, enable) {
70
+ var $button = $(button);
71
+ $button.disabled = !enable;
72
+ if ($button.hasClassName("disabled") && enable) {
73
+ $button.removeClassName("disabled");
74
+ } else if (!$button.hasClassName("disabled") && !enable) {
75
+ $button.addClassName("disabled");
76
+ }
77
+ }
78
+
79
+ // check store-view disabling Express Checkout
80
+ document.observe("dom:loaded", function() {
81
+ var ecButton = $$(".pp-method-express button.button")[0];
82
+ var ecEnabler = $$(".paypal-ec-enabler")[0];
83
+ if (typeof ecButton == "undefined" || typeof ecEnabler != "undefined") {
84
+ return;
85
+ }
86
+ var $ecButton = $(ecButton);
87
+ $$(".with-button button.button").each(function(configureButton) {
88
+ if (configureButton != ecButton && !configureButton.disabled
89
+ && !$(configureButton).hasClassName("paypal-ec-separate")
90
+ ) {
91
+ togglePaypalSolutionConfigureButton(ecButton, false);
92
+ }
93
+ });
94
+ });
95
+ ';
96
+ return $this->toHtml() . $this->helper('adminhtml/js')->getScript($js);
97
  }
98
  }
app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Location.php ADDED
@@ -0,0 +1,353 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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@magentocommerce.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.magentocommerce.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Paypal
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Fieldset renderer for PayPal Merchant Location fieldset
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Paypal
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Paypal_Block_Adminhtml_System_Config_Fieldset_Location
35
+ extends Mage_Adminhtml_Block_System_Config_Form_Fieldset
36
+ {
37
+ /**
38
+ * Add conflicts resolution js code to the fieldset
39
+ *
40
+ * @param Varien_Data_Form_Element_Abstract $element
41
+ * @param bool $tooltipsExist Init tooltips observer or not
42
+ * @return string
43
+ */
44
+ protected function _getExtraJs($element, $tooltipsExist = false)
45
+ {
46
+ $js = '
47
+ document.observe("dom:loaded", function() {
48
+ $$(".with-button button.button").each(function(configureButton) {
49
+ togglePaypalSolutionConfigureButton(configureButton, true);
50
+ });
51
+ var paypalConflictsObject = {
52
+ "isConflict": false,
53
+ "ecMissed": false,
54
+ sharePayflowEnabling: function(enabler, isEvent) {
55
+ var ecPayflowEnabler = $$(".paypal-ec-payflow-enabler")[0];
56
+ if (typeof ecPayflowEnabler == "undefined") {
57
+ return;
58
+ }
59
+ var ecPayflowScopeElement = adminSystemConfig.getScopeElement(ecPayflowEnabler);
60
+
61
+ if (!enabler.enablerObject.ecPayflow) {
62
+ if ((!ecPayflowScopeElement || !ecPayflowScopeElement.checked) && isEvent
63
+ && enabler.value == 1
64
+ ) {
65
+ ecPayflowEnabler.value = 0;
66
+ fireEvent(ecPayflowEnabler, "change");
67
+ }
68
+ return;
69
+ }
70
+
71
+ var enablerScopeElement = adminSystemConfig.getScopeElement(enabler);
72
+ if (enablerScopeElement && ecPayflowScopeElement
73
+ && enablerScopeElement.checked != ecPayflowScopeElement.checked
74
+ && (isEvent || ecPayflowScopeElement.checked)
75
+ ) {
76
+ $(ecPayflowScopeElement).click();
77
+ }
78
+
79
+ var ecEnabler = $$(".paypal-ec-enabler")[0];
80
+ if (ecPayflowEnabler.value != enabler.value && (isEvent || enabler.value == 1)) {
81
+ ecPayflowEnabler.value = enabler.value;
82
+ fireEvent(ecPayflowEnabler, "change");
83
+ if (ecPayflowEnabler.value == 1) {
84
+ if (typeof ecEnabler != "undefined") {
85
+ var ecEnablerScopeElement = adminSystemConfig.getScopeElement(ecEnabler);
86
+ ecEnabler.value = 1;
87
+ if (ecEnablerScopeElement && ecEnablerScopeElement.checked) {
88
+ paypalConflictsObject.checklessEventAction(ecEnablerScopeElement, false);
89
+ }
90
+ paypalConflictsObject.checklessEventAction(ecEnabler, true);
91
+ }
92
+ }
93
+ }
94
+ if (!isEvent && ecPayflowEnabler.value == 1 && typeof ecEnabler != "undefined") {
95
+ var ecSolution = $$(".pp-method-express")[0];
96
+ if (typeof ecSolution != "undefined" && !$(ecSolution).hasClassName("enabled")) {
97
+ ecSolution.addClassName("enabled");
98
+ }
99
+ }
100
+ },
101
+ onChangeEnabler: function(event) {
102
+ paypalConflictsObject.checkPaymentConflicts($(Event.element(event)), "change");
103
+ },
104
+ onClickEnablerScope: function(event) {
105
+ paypalConflictsObject.checkPaymentConflicts(
106
+ $(adminSystemConfig.getUpTr($(Event.element(event))).select(".paypal-enabler")[0]),
107
+ "click"
108
+ );
109
+ },
110
+ getSharedElements: function(element) {
111
+ var sharedElements = [];
112
+ adminSystemConfig.mapClasses(element, true, function(elementClassName) {
113
+ $$("." + elementClassName).each(function(sharedElement) {
114
+ if (sharedElements.indexOf(sharedElement) == -1) {
115
+ sharedElements.push(sharedElement);
116
+ }
117
+ });
118
+ });
119
+ if (sharedElements.length == 0) {
120
+ sharedElements.push(element);
121
+ }
122
+ return sharedElements;
123
+ },
124
+ checklessEventAction: function(element, isChange) {
125
+ var action = isChange ? "change" : "click";
126
+ var handler = isChange
127
+ ? paypalConflictsObject.onChangeEnabler
128
+ : paypalConflictsObject.onClickEnablerScope;
129
+ paypalConflictsObject.getSharedElements(element).each(function(sharedElement) {
130
+ Event.stopObserving(sharedElement, action, handler);
131
+ if (isChange) {
132
+ sharedElement.value = element.value;
133
+ if ($(sharedElement).requiresObj) {
134
+ $(sharedElement).requiresObj.indicateEnabled();
135
+ }
136
+ }
137
+ });
138
+ if (isChange) {
139
+ fireEvent(element, "change");
140
+ } else {
141
+ $(element).click();
142
+ }
143
+ paypalConflictsObject.getSharedElements(element).each(function(sharedElement) {
144
+ Event.observe(sharedElement, action, handler);
145
+ });
146
+ },
147
+ ecCheckAvailability: function() {
148
+ var ecButton = $$(".pp-method-express button.button")[0];
149
+ if (typeof ecButton == "undefined") {
150
+ return;
151
+ }
152
+ var couldBeConfigured = true;
153
+ $$(".paypal-enabler").each(function(enabler) {
154
+ if (enabler.enablerObject.ecEnabler || enabler.enablerObject.ecConflicts
155
+ || enabler.enablerObject.ecSeparate
156
+ ) {
157
+ return;
158
+ }
159
+ if (enabler.value == 1) {
160
+ couldBeConfigured = false;
161
+ }
162
+ });
163
+ if (couldBeConfigured) {
164
+ togglePaypalSolutionConfigureButton(ecButton, true);
165
+ } else {
166
+ togglePaypalSolutionConfigureButton(ecButton, false);
167
+ }
168
+ },
169
+ // type could be "initial", "change", "click"
170
+ checkPaymentConflicts: function(enabler, type) {
171
+ var isEvent = (type != "initial");
172
+ var ecEnabler = $$(".paypal-ec-enabler")[0];
173
+
174
+ if (enabler.value == 0) {
175
+ if (!enabler.enablerObject.ecIndependent && type == "change") {
176
+ if (typeof ecEnabler != "undefined" && ecEnabler.value == 1) {
177
+ var ecEnablerScopeElement = adminSystemConfig.getScopeElement(ecEnabler);
178
+ if (!ecEnablerScopeElement || !ecEnablerScopeElement.checked) {
179
+ ecEnabler.value = 0;
180
+ paypalConflictsObject.checklessEventAction(ecEnabler, true);
181
+ }
182
+ }
183
+ }
184
+ paypalConflictsObject.ecCheckAvailability();
185
+ paypalConflictsObject.sharePayflowEnabling(enabler, isEvent);
186
+ return;
187
+ }
188
+
189
+ var confirmationApproved = isEvent;
190
+ var confirmationShowed = false;
191
+ // check other solutions
192
+ $$(".paypal-enabler").each(function(anotherEnabler) {
193
+ var anotherEnablerScopeElement = adminSystemConfig.getScopeElement(anotherEnabler);
194
+ if (!confirmationApproved && isEvent || $(anotherEnabler) == enabler
195
+ || anotherEnabler.value == 0
196
+ && (!anotherEnablerScopeElement || !anotherEnablerScopeElement.checked)
197
+ ) {
198
+ return;
199
+ }
200
+ var conflict = enabler.enablerObject.ecConflicts && anotherEnabler.enablerObject.ecEnabler
201
+ || enabler.enablerObject.ecEnabler && anotherEnabler.enablerObject.ecConflicts
202
+ || !enabler.enablerObject.ecIndependent && anotherEnabler.enablerObject.ecConflicts
203
+ || !enabler.enablerObject.ecEnabler && !anotherEnabler.enablerObject.ecEnabler;
204
+
205
+ if (conflict && !confirmationShowed && anotherEnabler.value == 1) {
206
+ if (isEvent) {
207
+ confirmationApproved = confirm(\'' . $this->helper('core')->jsQuoteEscape($this->__('There is already another PayPal solution enabled. Enable this solution instead?')) . '\');
208
+ } else {
209
+ paypalConflictsObject.isConflict = true;
210
+ }
211
+ confirmationShowed = true;
212
+ }
213
+ if (conflict && confirmationApproved) {
214
+ anotherEnabler.value = 0;
215
+ if (anotherEnablerScopeElement && anotherEnablerScopeElement.checked && isEvent) {
216
+ paypalConflictsObject.checklessEventAction(anotherEnablerScopeElement, false);
217
+ }
218
+ paypalConflictsObject.checklessEventAction(anotherEnabler, true);
219
+ }
220
+ });
221
+
222
+ if (!enabler.enablerObject.ecIndependent) {
223
+ if (!isEvent && (typeof ecEnabler == "undefined" || ecEnabler.value == 0)) {
224
+ if (!enabler.enablerObject.ecPayflow) {
225
+ paypalConflictsObject.ecMissed = true;
226
+ }
227
+ } else if (isEvent && typeof ecEnabler != "undefined" && confirmationApproved) {
228
+ var ecEnablerScopeElement = adminSystemConfig.getScopeElement(ecEnabler);
229
+ if (ecEnablerScopeElement && ecEnablerScopeElement.checked) {
230
+ paypalConflictsObject.checklessEventAction(ecEnablerScopeElement, false);
231
+ }
232
+ if (ecEnabler.value == 0) {
233
+ ecEnabler.value = 1;
234
+ paypalConflictsObject.checklessEventAction(ecEnabler, true);
235
+ }
236
+ }
237
+ }
238
+
239
+ if (!confirmationApproved && isEvent) {
240
+ enabler.value = 0;
241
+ paypalConflictsObject.checklessEventAction(enabler, true);
242
+ }
243
+ paypalConflictsObject.ecCheckAvailability();
244
+ paypalConflictsObject.sharePayflowEnabling(enabler, isEvent);
245
+ }
246
+ };
247
+
248
+ // fill enablers with conflict data
249
+ $$(".paypal-enabler").each(function(enablerElement) {
250
+ var enablerObj = {
251
+ ecIndependent: false,
252
+ ecConflicts: false,
253
+ ecEnabler: false,
254
+ ecSeparate: false,
255
+ ecPayflow: false
256
+ };
257
+ $(enablerElement).classNames().each(function(className) {
258
+ switch (className) {
259
+ case "paypal-ec-conflicts":
260
+ enablerObj.ecConflicts = true;
261
+ case "paypal-ec-independent":
262
+ enablerObj.ecIndependent = true;
263
+ break;
264
+ case "paypal-ec-enabler":
265
+ enablerObj.ecEnabler = true;
266
+ enablerObj.ecIndependent = true;
267
+ break;
268
+ case "paypal-ec-separate":
269
+ enablerObj.ecSeparate = true;
270
+ enablerObj.ecIndependent = true;
271
+ break;
272
+ case "paypal-ec-pe":
273
+ enablerObj.ecPayflow = true;
274
+ break;
275
+ }
276
+ });
277
+ enablerElement.enablerObject = enablerObj;
278
+
279
+ Event.observe(enablerElement, "change", paypalConflictsObject.onChangeEnabler);
280
+ var enablerScopeElement = adminSystemConfig.getScopeElement(enablerElement);
281
+ if (enablerScopeElement) {
282
+ Event.observe(enablerScopeElement, "click", paypalConflictsObject.onClickEnablerScope);
283
+ }
284
+ });
285
+
286
+ // initially uncheck payflow
287
+ var ecPayflowEnabler = $$(".paypal-ec-payflow-enabler")[0];
288
+ if (typeof ecPayflowEnabler != "undefined") {
289
+ if (ecPayflowEnabler.value == 1) {
290
+ ecPayflowEnabler.value = 0;
291
+ fireEvent(ecPayflowEnabler, "change");
292
+ }
293
+
294
+ var ecPayflowScopeElement = adminSystemConfig.getScopeElement(ecPayflowEnabler);
295
+ if (ecPayflowScopeElement && !ecPayflowScopeElement.checked) {
296
+ $(ecPayflowScopeElement).click();
297
+ }
298
+ }
299
+
300
+ $$(".paypal-enabler").each(function(enablerElement) {
301
+ paypalConflictsObject.checkPaymentConflicts(enablerElement, "initial");
302
+ });
303
+ if (paypalConflictsObject.isConflict || paypalConflictsObject.ecMissed) {
304
+ var notification = \'' . $this->helper('core')->jsQuoteEscape($this->__('The following error(s) occured:')) . '\';
305
+ if (paypalConflictsObject.isConflict) {
306
+ notification += "\\n " + \'' . $this->helper('core')->jsQuoteEscape($this->__('Some PayPal solutions conflict.')) . '\';
307
+ }
308
+ if (paypalConflictsObject.ecMissed) {
309
+ notification += "\\n " + \'' . $this->helper('core')->jsQuoteEscape($this->__('PayPal Express Checkout is not enabled.')) . '\';
310
+ }
311
+ notification += "\\n" + \'' . $this->helper('core')->jsQuoteEscape($this->__('Please re-enable the previously enabled payment solutions.')) . '\';
312
+ setTimeout(function() {
313
+ alert(notification);
314
+ }, 1);
315
+ }
316
+
317
+ $$(".requires").each(function(dependent) {
318
+ var $dependent = $(dependent);
319
+ if ($dependent.hasClassName("paypal-ec-enabler")) {
320
+ $dependent.requiresObj.callback = function(required) {
321
+ if ($(required).hasClassName("paypal-enabler") && required.value == 0) {
322
+ $dependent.disable();
323
+ }
324
+ }
325
+ $dependent.requiresObj.requires.each(function(required) {
326
+ $dependent.requiresObj.callback(required);
327
+ });
328
+ }
329
+ });
330
+
331
+ var originalFormValidation = configForm.validator.options.onFormValidate;
332
+ configForm.validator.options.onFormValidate = function(result, form) {
333
+ originalFormValidation(result, form);
334
+ if (result) {
335
+ var ecPayflowEnabler = $$(".paypal-ec-payflow-enabler")[0];
336
+ if (typeof ecPayflowEnabler == "undefined") {
337
+ return;
338
+ }
339
+ var ecPayflowScopeElement = adminSystemConfig.getScopeElement(ecPayflowEnabler);
340
+ if ((typeof ecPayflowScopeElement == "undefined" || !ecPayflowScopeElement.checked)
341
+ && ecPayflowEnabler.value == 1
342
+ ) {
343
+ $$(".paypal-ec-enabler").each(function(ecEnabler) {
344
+ ecEnabler.value = 0;
345
+ });
346
+ }
347
+ }
348
+ }
349
+ });
350
+ ';
351
+ return parent::_getExtraJs($element, $tooltipsExist) . $this->helper('adminhtml/js')->getScript($js);
352
+ }
353
+ }
app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Fieldset/Payment.php ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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@magentocommerce.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.magentocommerce.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Paypal
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Fieldset renderer for PayPal solution
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Paypal
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Mage_Paypal_Block_Adminhtml_System_Config_Fieldset_Payment
35
+ extends Mage_Adminhtml_Block_System_Config_Form_Fieldset
36
+ {
37
+ /**
38
+ * Add custom css class
39
+ *
40
+ * @param Varien_Data_Form_Element_Abstract $element
41
+ * @return string
42
+ */
43
+ protected function _getFrontendClass($element)
44
+ {
45
+ return parent::_getFrontendClass($element) . ' with-button '
46
+ . ($this->_isPaymentEnabled($element) ? ' enabled' : '');
47
+ }
48
+
49
+ /**
50
+ * Check whether current payment method is enabled
51
+ *
52
+ * @param Varien_Data_Form_Element_Abstract $element
53
+ * @return bool
54
+ */
55
+ protected function _isPaymentEnabled($element)
56
+ {
57
+ $groupConfig = $this->getGroup($element)->asArray();
58
+ $activityPath = isset($groupConfig['activity_path']) ? $groupConfig['activity_path'] : '';
59
+
60
+ if (empty($activityPath)) {
61
+ return false;
62
+ }
63
+
64
+ $isPaymentEnabled = (string)Mage::getSingleton('adminhtml/config_data')->getConfigDataValue($activityPath);
65
+
66
+ return (bool)$isPaymentEnabled;
67
+ }
68
+
69
+ /**
70
+ * Return header title part of html for payment solution
71
+ *
72
+ * @param Varien_Data_Form_Element_Abstract $element
73
+ * @return string
74
+ */
75
+ protected function _getHeaderTitleHtml($element)
76
+ {
77
+ $html = '<div class="config-heading" ><div class="heading"><strong>' . $element->getLegend();
78
+
79
+ $groupConfig = $this->getGroup($element)->asArray();
80
+ if (!empty($groupConfig['learn_more_link'])) {
81
+ $html .= '<a class="link-more" href="' . $groupConfig['learn_more_link'] . '" target="_blank">'
82
+ . $this->__('Learn More') . '</a>';
83
+ }
84
+ if (!empty($groupConfig['demo_link'])) {
85
+ $html .= '<a class="link-demo" href="' . $groupConfig['demo_link'] . '" target="_blank">'
86
+ . $this->__('View Demo') . '</a>';
87
+ }
88
+ $html .= '</strong>';
89
+
90
+ if ($element->getComment()) {
91
+ $html .= '<span class="heading-intro">' . $element->getComment() . '</span>';
92
+ }
93
+ $html .= '</div>';
94
+
95
+ $html .= '<div class="button-container"><button type="button"'
96
+ . ($this->_isPaymentEnabled($element) ? '' : ' disabled="disabled"') . ' class="button'
97
+ . (empty($groupConfig['paypal_ec_separate']) ? '' : ' paypal-ec-separate')
98
+ . ($this->_isPaymentEnabled($element) ? '' : ' disabled') . '" id="' . $element->getHtmlId()
99
+ . '-head" onclick="paypalToggleSolution.call(this, \'' . $element->getHtmlId() . '\', \''
100
+ . $this->getUrl('*/*/state') . '\'); return false;"><span class="state-closed">'
101
+ . $this->__('Configure') . '</span><span class="state-opened">'
102
+ . $this->__('Close') . '</span></button></div></div>';
103
+
104
+ return $html;
105
+ }
106
+
107
+ /**
108
+ * Return header comment part of html for payment solution
109
+ *
110
+ * @param Varien_Data_Form_Element_Abstract $element
111
+ * @return string
112
+ */
113
+ protected function _getHeaderCommentHtml($element)
114
+ {
115
+ return '';
116
+ }
117
+
118
+ /**
119
+ * Get collapsed state on-load
120
+ *
121
+ * @param Varien_Data_Form_Element_Abstract $element
122
+ * @return bool
123
+ */
124
+ protected function _getCollapseState($element)
125
+ {
126
+ return false;
127
+ }
128
+ }
app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php CHANGED
@@ -25,7 +25,7 @@
25
  */
26
 
27
  /**
28
- * Renderer for Payflow Link information
29
  *
30
  * @category Mage
31
  * @package Mage_Paypal
25
  */
26
 
27
  /**
28
+ * Renderer for Payments Advanced information
29
  *
30
  * @category Mage
31
  * @package Mage_Paypal
app/code/core/Mage/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php CHANGED
@@ -32,8 +32,7 @@
32
  * @author Magento Core Team <core@magentocommerce.com>
33
  */
34
  class Mage_Paypal_Block_Adminhtml_System_Config_Payflowlink_Info
35
- extends Mage_Adminhtml_Block_Abstract
36
- implements Varien_Data_Form_Element_Renderer_Interface
37
  {
38
  /**
39
  * Template path
@@ -50,12 +49,15 @@
50
  */
51
  public function render(Varien_Data_Form_Element_Abstract $element)
52
  {
53
- return $this->toHtml();
 
54
  }
55
 
 
56
  /**
57
  * Get frontend url
58
  *
 
59
  * @param string $routePath
60
  * @return strting
61
  */
32
  * @author Magento Core Team <core@magentocommerce.com>
33
  */
34
  class Mage_Paypal_Block_Adminhtml_System_Config_Payflowlink_Info
35
+ extends Mage_Adminhtml_Block_System_Config_Form_Field
 
36
  {
37
  /**
38
  * Template path
49
  */
50
  public function render(Varien_Data_Form_Element_Abstract $element)
51
  {
52
+ $columns = ($this->getRequest()->getParam('website') || $this->getRequest()->getParam('store')) ? 5 : 4;
53
+ return $this->_decorateRowHtml($element, "<td colspan='$columns'>" . $this->toHtml() . '</td>');
54
  }
55
 
56
+
57
  /**
58
  * Get frontend url
59
  *
60
+ * @deprecated since 1.7.0.1
61
  * @param string $routePath
62
  * @return strting
63
  */
app/code/core/Mage/Paypal/Model/Api/Nvp.php CHANGED
@@ -940,7 +940,11 @@ class Mage_Paypal_Model_Api_Nvp extends Mage_Paypal_Model_Api_Abstract
940
 
941
  try {
942
  $http = new Varien_Http_Adapter_Curl();
943
- $config = array('timeout' => 30);
 
 
 
 
944
  if ($this->getUseProxy()) {
945
  $config['proxy'] = $this->getProxyHost(). ':' . $this->getProxyPort();
946
  }
940
 
941
  try {
942
  $http = new Varien_Http_Adapter_Curl();
943
+ $config = array(
944
+ 'timeout' => 30,
945
+ 'verifypeer' => $this->_config->verifyPeer
946
+ );
947
+
948
  if ($this->getUseProxy()) {
949
  $config['proxy'] = $this->getProxyHost(). ':' . $this->getProxyPort();
950
  }
app/code/core/Mage/Paypal/Model/Config.php CHANGED
@@ -483,60 +483,74 @@ class Mage_Paypal_Model_Config
483
  public function getCountryMethods($countryCode = null)
484
  {
485
  $countryMethods = array(
486
- 'US' => array(
487
  self::METHOD_WPS,
488
- self::METHOD_WPP_DIRECT,
489
  self::METHOD_WPP_EXPRESS,
490
  self::METHOD_BILLING_AGREEMENT,
491
- self::METHOD_WPP_PE_DIRECT,
492
- self::METHOD_WPP_PE_EXPRESS,
 
 
 
493
  self::METHOD_PAYFLOWPRO,
494
  self::METHOD_PAYFLOWLINK,
495
- self::METHOD_PAYFLOWADVANCED,
 
 
496
  ),
497
  'CA' => array(
498
- self::METHOD_WPS,
499
  self::METHOD_WPP_DIRECT,
500
- self::METHOD_WPP_EXPRESS,
501
- self::METHOD_BILLING_AGREEMENT,
502
  self::METHOD_PAYFLOWPRO,
503
  self::METHOD_PAYFLOWLINK,
 
 
504
  ),
505
  'GB' => array(
506
- self::METHOD_WPS,
507
  self::METHOD_WPP_DIRECT,
 
 
 
508
  self::METHOD_WPP_EXPRESS,
509
  self::METHOD_BILLING_AGREEMENT,
510
- self::METHOD_WPP_PE_DIRECT,
511
  self::METHOD_WPP_PE_EXPRESS,
512
- self::METHOD_HOSTEDPRO,
513
  ),
514
  'AU' => array(
515
- self::METHOD_WPS,
516
- self::METHOD_WPP_EXPRESS,
517
- self::METHOD_BILLING_AGREEMENT,
518
  self::METHOD_PAYFLOWPRO,
519
  self::METHOD_HOSTEDPRO,
 
 
520
  ),
521
  'NZ' => array(
522
- self::METHOD_WPS,
523
  self::METHOD_WPP_EXPRESS,
524
  self::METHOD_BILLING_AGREEMENT,
525
- self::METHOD_PAYFLOWPRO,
 
526
  self::METHOD_HOSTEDPRO,
 
 
527
  ),
528
- 'DE' => array(
529
- self::METHOD_WPS,
530
  self::METHOD_WPP_EXPRESS,
531
  self::METHOD_BILLING_AGREEMENT,
 
 
532
  self::METHOD_HOSTEDPRO,
 
 
533
  ),
534
- 'other' => array(
535
- self::METHOD_WPS,
536
  self::METHOD_WPP_EXPRESS,
537
  self::METHOD_BILLING_AGREEMENT,
 
 
538
  self::METHOD_HOSTEDPRO,
539
- )
 
 
540
  );
541
  if ($countryCode === null) {
542
  return $countryMethods;
@@ -1358,6 +1372,7 @@ class Mage_Paypal_Model_Config
1358
  case 'cctypes':
1359
  case 'sort_order':
1360
  case 'debug':
 
1361
  return "payment/{$this->_methodCode}/{$fieldName}";
1362
  default:
1363
  return null;
483
  public function getCountryMethods($countryCode = null)
484
  {
485
  $countryMethods = array(
486
+ 'other' => array(
487
  self::METHOD_WPS,
 
488
  self::METHOD_WPP_EXPRESS,
489
  self::METHOD_BILLING_AGREEMENT,
490
+ ),
491
+ 'US' => array(
492
+ self::METHOD_PAYFLOWADVANCED,
493
+ self::METHOD_WPP_DIRECT,
494
+ self::METHOD_WPS,
495
  self::METHOD_PAYFLOWPRO,
496
  self::METHOD_PAYFLOWLINK,
497
+ self::METHOD_WPP_EXPRESS,
498
+ self::METHOD_BILLING_AGREEMENT,
499
+ self::METHOD_WPP_PE_EXPRESS,
500
  ),
501
  'CA' => array(
 
502
  self::METHOD_WPP_DIRECT,
503
+ self::METHOD_WPS,
 
504
  self::METHOD_PAYFLOWPRO,
505
  self::METHOD_PAYFLOWLINK,
506
+ self::METHOD_WPP_EXPRESS,
507
+ self::METHOD_BILLING_AGREEMENT,
508
  ),
509
  'GB' => array(
 
510
  self::METHOD_WPP_DIRECT,
511
+ self::METHOD_WPS,
512
+ self::METHOD_WPP_PE_DIRECT,
513
+ self::METHOD_HOSTEDPRO,
514
  self::METHOD_WPP_EXPRESS,
515
  self::METHOD_BILLING_AGREEMENT,
 
516
  self::METHOD_WPP_PE_EXPRESS,
 
517
  ),
518
  'AU' => array(
 
 
 
519
  self::METHOD_PAYFLOWPRO,
520
  self::METHOD_HOSTEDPRO,
521
+ self::METHOD_WPP_EXPRESS,
522
+ self::METHOD_BILLING_AGREEMENT,
523
  ),
524
  'NZ' => array(
525
+ self::METHOD_PAYFLOWPRO,
526
  self::METHOD_WPP_EXPRESS,
527
  self::METHOD_BILLING_AGREEMENT,
528
+ ),
529
+ 'JP' => array(
530
  self::METHOD_HOSTEDPRO,
531
+ self::METHOD_WPP_EXPRESS,
532
+ self::METHOD_BILLING_AGREEMENT,
533
  ),
534
+ 'FR' => array(
535
+ self::METHOD_HOSTEDPRO,
536
  self::METHOD_WPP_EXPRESS,
537
  self::METHOD_BILLING_AGREEMENT,
538
+ ),
539
+ 'IT' => array(
540
  self::METHOD_HOSTEDPRO,
541
+ self::METHOD_WPP_EXPRESS,
542
+ self::METHOD_BILLING_AGREEMENT,
543
  ),
544
+ 'ES' => array(
545
+ self::METHOD_HOSTEDPRO,
546
  self::METHOD_WPP_EXPRESS,
547
  self::METHOD_BILLING_AGREEMENT,
548
+ ),
549
+ 'HK' => array(
550
  self::METHOD_HOSTEDPRO,
551
+ self::METHOD_WPP_EXPRESS,
552
+ self::METHOD_BILLING_AGREEMENT,
553
+ ),
554
  );
555
  if ($countryCode === null) {
556
  return $countryMethods;
1372
  case 'cctypes':
1373
  case 'sort_order':
1374
  case 'debug':
1375
+ case 'verify_peer':
1376
  return "payment/{$this->_methodCode}/{$fieldName}";
1377
  default:
1378
  return null;
app/code/core/Mage/Paypal/Model/Ipn.php CHANGED
@@ -139,6 +139,7 @@ class Mage_Paypal_Model_Ipn
139
  $this->_debugData['postback'] = $sReq;
140
  $this->_debugData['postback_to'] = $this->_config->getPaypalUrl();
141
 
 
142
  $httpAdapter->write(Zend_Http_Client::POST, $this->_config->getPaypalUrl(), '1.1', array(), $sReq);
143
  try {
144
  $response = $httpAdapter->read();
@@ -398,12 +399,13 @@ class Mage_Paypal_Model_Ipn
398
  $this->_order->save();
399
 
400
  // notify customer
401
- if ($invoice = $payment->getCreatedInvoice() && !$this->_order->getEmailSent()) {
402
- $comment = $this->_order->sendNewOrderEmail()->addStatusHistoryComment(
403
- Mage::helper('paypal')->__('Notified customer about invoice #%s.', $invoice->getIncrementId())
404
- )
405
- ->setIsCustomerNotified(true)
406
- ->save();
 
407
  }
408
  }
409
 
139
  $this->_debugData['postback'] = $sReq;
140
  $this->_debugData['postback_to'] = $this->_config->getPaypalUrl();
141
 
142
+ $httpAdapter->setConfig(array('verifypeer' => $this->_config->verifyPeer));
143
  $httpAdapter->write(Zend_Http_Client::POST, $this->_config->getPaypalUrl(), '1.1', array(), $sReq);
144
  try {
145
  $response = $httpAdapter->read();
399
  $this->_order->save();
400
 
401
  // notify customer
402
+ $invoice = $payment->getCreatedInvoice();
403
+ if ($invoice && !$this->_order->getEmailSent()) {
404
+ $this->_order->sendNewOrderEmail()->addStatusHistoryComment(
405
+ Mage::helper('paypal')->__('Notified customer about invoice #%s.', $invoice->getIncrementId())
406
+ )
407
+ ->setIsCustomerNotified(true)
408
+ ->save();
409
  }
410
  }
411
 
app/code/core/Mage/Paypal/Model/Observer.php CHANGED
@@ -118,4 +118,42 @@ class Mage_Paypal_Model_Observer
118
 
119
  return $this;
120
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  }
118
 
119
  return $this;
120
  }
121
+
122
+ /**
123
+ * Load country dependent PayPal solutions system configuration
124
+ *
125
+ * @param Varien_Event_Observer $observer
126
+ * @return void
127
+ */
128
+ public function loadCountryDependentSolutionsConfig(Varien_Event_Observer $observer)
129
+ {
130
+ $requestParam = Mage_Paypal_Block_Adminhtml_System_Config_Field_Country::REQUEST_PARAM_COUNTRY;
131
+ $countryCode = Mage::app()->getRequest()->getParam($requestParam);
132
+ if (is_null($countryCode) || preg_match('/^[a-zA-Z]{2}$/', $countryCode) == 0) {
133
+ $countryCode = (string)Mage::getSingleton('adminhtml/config_data')
134
+ ->getConfigDataValue('paypal/general/merchant_country');
135
+ }
136
+ if (empty($countryCode)) {
137
+ $countryCode = Mage::helper('core')->getDefaultCountry();
138
+ }
139
+
140
+ $paymentGroups = $observer->getEvent()->getConfig()->getNode('sections/payment/groups');
141
+ $paymentsConfigs = $paymentGroups->xpath('paypal_payments/*/backend_config/' . $countryCode);
142
+ if ($paymentsConfigs) {
143
+ foreach ($paymentsConfigs as $config) {
144
+ $parent = $config->getParent()->getParent();
145
+ $parent->extend($config, true);
146
+ }
147
+ }
148
+
149
+ $payments = $paymentGroups->xpath('paypal_payments/*');
150
+ foreach ($payments as $payment) {
151
+ if ((int)$payment->include) {
152
+ $fields = $paymentGroups->xpath((string)$payment->group . '/fields');
153
+ if (isset($fields[0])) {
154
+ $fields[0]->appendChild($payment, true);
155
+ }
156
+ }
157
+ }
158
+ }
159
  }
app/code/core/Mage/Paypal/Model/Payflowadvanced.php CHANGED
@@ -54,4 +54,11 @@ class Mage_Paypal_Model_Payflowadvanced extends Mage_Paypal_Model_Payflowlink
54
  * @var string
55
  */
56
  protected $_infoBlockType = 'paypal/payflow_advanced_info';
 
 
 
 
 
 
 
57
  }
54
  * @var string
55
  */
56
  protected $_infoBlockType = 'paypal/payflow_advanced_info';
57
+
58
+ /**
59
+ * Controller for callback urls
60
+ *
61
+ * @var string
62
+ */
63
+ protected $_callbackController = 'payflowadvanced';
64
  }
app/code/core/Mage/Paypal/Model/Payflowlink.php CHANGED
@@ -34,6 +34,47 @@
34
 
35
  class Mage_Paypal_Model_Payflowlink extends Mage_Paypal_Model_Payflowpro
36
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  /**
38
  * Payment method code
39
  */
@@ -158,6 +199,25 @@ class Mage_Paypal_Model_Payflowlink extends Mage_Paypal_Model_Payflowpro
158
  foreach ($postData as $key => $val) {
159
  $this->getResponse()->setData(strtolower($key), $val);
160
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
  return $this;
162
  }
163
 
@@ -175,8 +235,9 @@ class Mage_Paypal_Model_Payflowlink extends Mage_Paypal_Model_Payflowpro
175
  $this->_debug($debugData);
176
 
177
  $this->setResponseData($responseData);
 
178
 
179
- if ($order = $this->_getOrderFromResponse()) {
180
  $this->_processOrder($order);
181
  }
182
  }
@@ -378,13 +439,25 @@ class Mage_Paypal_Model_Payflowlink extends Mage_Paypal_Model_Payflowpro
378
  protected function _buildBasicRequest(Varien_Object $payment)
379
  {
380
  $request = Mage::getModel('paypal/payflow_request');
 
381
  $request
382
  ->setUser($this->getConfigData('user', $this->_getStoreId()))
383
  ->setVendor($this->getConfigData('vendor', $this->_getStoreId()))
384
  ->setPartner($this->getConfigData('partner', $this->_getStoreId()))
385
  ->setPwd($this->getConfigData('pwd', $this->_getStoreId()))
386
  ->setVerbosity($this->getConfigData('verbosity', $this->_getStoreId()))
387
- ->setTender(self::TENDER_CC);
 
 
 
 
 
 
 
 
 
 
 
388
  return $request;
389
  }
390
 
@@ -554,4 +627,41 @@ class Mage_Paypal_Model_Payflowlink extends Mage_Paypal_Model_Payflowpro
554
  {
555
  return null;
556
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
557
  }
34
 
35
  class Mage_Paypal_Model_Payflowlink extends Mage_Paypal_Model_Payflowpro
36
  {
37
+ /**
38
+ * Default layout template
39
+ */
40
+ const LAYOUT_TEMPLATE = 'minLayout';
41
+
42
+ /**
43
+ * Controller for callback urls
44
+ *
45
+ * @var string
46
+ */
47
+ protected $_callbackController = 'payflow';
48
+
49
+ /**
50
+ * Response params mappings
51
+ *
52
+ * @var array
53
+ */
54
+ protected $_responseParamsMappings = array(
55
+ 'firstname' => 'billtofirstname',
56
+ 'lastname' => 'billtolastname',
57
+ 'address' => 'billtostreet',
58
+ 'city' => 'billtocity',
59
+ 'state' => 'billtostate',
60
+ 'zip' => 'billtozip',
61
+ 'country' => 'billtocountry',
62
+ 'phone' => 'billtophone',
63
+ 'email' => 'billtoemail',
64
+ 'nametoship' => 'shiptofirstname',
65
+ 'addresstoship' => 'shiptostreet',
66
+ 'citytoship' => 'shiptocity',
67
+ 'statetoship' => 'shiptostate',
68
+ 'ziptoship' => 'shiptozip',
69
+ 'countrytoship' => 'shiptocountry',
70
+ 'phonetoship' => 'shiptophone',
71
+ 'emailtoship' => 'shiptoemail',
72
+ 'faxtoship' => 'shiptofax',
73
+ 'method' => 'tender',
74
+ 'cscmatch' => 'cvv2match',
75
+ 'type' => 'trxtype',
76
+ );
77
+
78
  /**
79
  * Payment method code
80
  */
199
  foreach ($postData as $key => $val) {
200
  $this->getResponse()->setData(strtolower($key), $val);
201
  }
202
+ foreach ($this->_responseParamsMappings as $originKey => $key) {
203
+ $data = $this->getResponse()->getData($key);
204
+ if (isset($data)) {
205
+ $this->getResponse()->setData($originKey, $data);
206
+ }
207
+ }
208
+ // process AVS data separately
209
+ $avsAddr = $this->getResponse()->getData('avsaddr');
210
+ $avsZip = $this->getResponse()->getData('avszip');
211
+ if (isset($avsAddr) && isset($avsZip)) {
212
+ $this->getResponse()->setData('avsdata', $avsAddr . $avsZip);
213
+ }
214
+ // process Name separately
215
+ $firstnameParameter = $this->getResponse()->getData('billtofirstname');
216
+ $lastnameParameter = $this->getResponse()->getData('billtolastname');
217
+ if (isset($firstnameParameter) && isset($lastnameParameter)) {
218
+ $this->getResponse()->setData('name', $firstnameParameter . ' ' . $lastnameParameter);
219
+ }
220
+
221
  return $this;
222
  }
223
 
235
  $this->_debug($debugData);
236
 
237
  $this->setResponseData($responseData);
238
+ $order = $this->_getOrderFromResponse();
239
 
240
+ if ($order) {
241
  $this->_processOrder($order);
242
  }
243
  }
439
  protected function _buildBasicRequest(Varien_Object $payment)
440
  {
441
  $request = Mage::getModel('paypal/payflow_request');
442
+ $cscEditable = $this->getConfigData('csc_editable');
443
  $request
444
  ->setUser($this->getConfigData('user', $this->_getStoreId()))
445
  ->setVendor($this->getConfigData('vendor', $this->_getStoreId()))
446
  ->setPartner($this->getConfigData('partner', $this->_getStoreId()))
447
  ->setPwd($this->getConfigData('pwd', $this->_getStoreId()))
448
  ->setVerbosity($this->getConfigData('verbosity', $this->_getStoreId()))
449
+ ->setTender(self::TENDER_CC)
450
+ ->setCancelurl($this->_getCallbackUrl('cancelPayment'))
451
+ ->setErrorurl($this->_getCallbackUrl('returnUrl'))
452
+ ->setSilentpost('TRUE')
453
+ ->setSilentposturl($this->_getCallbackUrl('silentPost'))
454
+ ->setReturnurl($this->_getCallbackUrl('returnUrl'))
455
+ ->setTemplate(self::LAYOUT_TEMPLATE)
456
+ ->setDisablereceipt('TRUE')
457
+ ->setCscrequired($cscEditable && $this->getConfigData('csc_required') ? 'TRUE' : 'FALSE')
458
+ ->setCscedit($cscEditable ? 'TRUE' : 'FALSE')
459
+ ->setEmailcustomer($this->getConfigData('email_confirmation') ? 'TRUE' : 'FALSE')
460
+ ->setUrlmethod($this->getConfigData('url_method'));
461
  return $request;
462
  }
463
 
627
  {
628
  return null;
629
  }
630
+
631
+ /**
632
+ * Get callback controller
633
+ *
634
+ * @return string
635
+ */
636
+ public function getCallbackController()
637
+ {
638
+ return $this->_callbackController;
639
+ }
640
+
641
+ /**
642
+ * Get callback url
643
+ *
644
+ * @param string $actionName
645
+ * @return string
646
+ */
647
+ protected function _getCallbackUrl($actionName)
648
+ {
649
+ $request = Mage::app()->getRequest();
650
+ if ($request->getParam('website')) {
651
+ $website = Mage::getModel('core/website')->load($request->getParam('website'));
652
+ $secure = Mage::getStoreConfigFlag(
653
+ Mage_Core_Model_Url::XML_PATH_SECURE_IN_FRONT,
654
+ $website->getDefaultStore()
655
+ );
656
+ $path = $secure
657
+ ? Mage_Core_Model_Store::XML_PATH_SECURE_BASE_LINK_URL
658
+ : Mage_Core_Model_Store::XML_PATH_UNSECURE_BASE_LINK_URL;
659
+ $websiteUrl = Mage::getStoreConfig($path, $website->getDefaultStore());
660
+ } else {
661
+ $secure = Mage::getStoreConfigFlag(Mage_Core_Model_Url::XML_PATH_SECURE_IN_FRONT);
662
+ $websiteUrl = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK, $secure);
663
+ }
664
+
665
+ return $websiteUrl . 'paypal/' . $this->getCallbackController() . '/' . $actionName;
666
+ }
667
  }
app/code/core/Mage/Paypal/Model/Payflowpro.php CHANGED
@@ -338,10 +338,14 @@ class Mage_Paypal_Model_Payflowpro extends Mage_Payment_Model_Method_Cc
338
  $client = new Varien_Http_Client();
339
  $result = new Varien_Object();
340
 
341
- $_config = array('maxredirects'=>5, 'timeout'=>30);
 
 
 
 
342
 
343
  $_isProxy = $this->getConfigData('use_proxy', false);
344
- if($_isProxy){
345
  $_config['proxy'] = $this->getConfigData('proxy_host')
346
  . ':'
347
  . $this->getConfigData('proxy_port');//http://proxy.shr.secureserver.net:3128',
338
  $client = new Varien_Http_Client();
339
  $result = new Varien_Object();
340
 
341
+ $_config = array(
342
+ 'maxredirects' => 5,
343
+ 'timeout' => 30,
344
+ 'verifypeer' => $this->getConfigData('verify_peer')
345
+ );
346
 
347
  $_isProxy = $this->getConfigData('use_proxy', false);
348
+ if ($_isProxy) {
349
  $_config['proxy'] = $this->getConfigData('proxy_host')
350
  . ':'
351
  . $this->getConfigData('proxy_port');//http://proxy.shr.secureserver.net:3128',
app/code/core/Mage/Paypal/Model/System/Config/Source/UrlMethod.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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@magentocommerce.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.magentocommerce.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Paypal
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Source model for url method: GET/POST
29
+ */
30
+ class Mage_Paypal_Model_System_Config_Source_UrlMethod
31
+ {
32
+ /**
33
+ * Options getter
34
+ *
35
+ * @return array
36
+ */
37
+ public function toOptionArray()
38
+ {
39
+ return array(
40
+ array('value' => 'GET', 'label' => 'GET'),
41
+ array('value' => 'POST', 'label' => 'POST'),
42
+ );
43
+ }
44
+ }
app/code/core/Mage/Paypal/etc/config.xml CHANGED
@@ -156,6 +156,16 @@
156
  </events>
157
  </frontend>
158
  <adminhtml>
 
 
 
 
 
 
 
 
 
 
159
  <translate>
160
  <modules>
161
  <Mage_Paypal>
@@ -202,14 +212,16 @@
202
  <authorization_honor_period>3</authorization_honor_period>
203
  <order_valid_period>29</order_valid_period>
204
  <child_authorization_number>1</child_authorization_number>
 
205
  </paypal_express>
206
  <paypal_direct>
207
  <model>paypal/direct</model>
208
- <title>PayPal Direct Payment</title>
209
  <payment_action>Authorization</payment_action>
210
  <cctypes>VI,MC</cctypes>
211
  <useccv>1</useccv>
212
  <group>paypal</group>
 
213
  </paypal_direct>
214
  <paypal_standard>
215
  <model>paypal/standard</model>
@@ -217,6 +229,7 @@
217
  <payment_action>Sale</payment_action>
218
  <line_items_enabled>1</line_items_enabled>
219
  <group>paypal</group>
 
220
  </paypal_standard>
221
  <paypaluk_express>
222
  <title>PayPal Express Checkout Payflow Edition</title>
@@ -225,13 +238,15 @@
225
  <visible_on_cart>1</visible_on_cart>
226
  <visible_on_product>1</visible_on_product>
227
  <group>paypal</group>
 
228
  </paypaluk_express>
229
  <paypaluk_direct>
230
- <title>PayPal Direct Payment Payflow Edition</title>
231
  <payment_action>Authorization</payment_action>
232
  <cctypes>VI,MC,AE</cctypes>
233
  <useccv>1</useccv>
234
  <group>paypal</group>
 
235
  </paypaluk_direct>
236
  <verisign>
237
  <model>paypal/payflowpro</model>
@@ -244,6 +259,7 @@
244
  <user backend_model="adminhtml/system_config_backend_encrypted"/>
245
  <pwd backend_model="adminhtml/system_config_backend_encrypted"/>
246
  <group>paypal</group>
 
247
  </verisign>
248
  <paypal_billing_agreement>
249
  <active>1</active>
@@ -251,6 +267,7 @@
251
  <model>paypal/method_agreement</model>
252
  <title>PayPal Billing Agreement</title>
253
  <group>paypal</group>
 
254
  </paypal_billing_agreement>
255
  <payflow_link>
256
  <model>paypal/payflowlink</model>
@@ -259,6 +276,11 @@
259
  <pwd backend_model="adminhtml/system_config_backend_encrypted"/>
260
  <group>paypal</group>
261
  <title>Credit Card</title>
 
 
 
 
 
262
  </payflow_link>
263
  <payflow_advanced>
264
  <model>paypal/payflowadvanced</model>
@@ -270,6 +292,11 @@
270
  <partner>PayPal</partner>
271
  <vendor>PayPal</vendor>
272
  <user>PayPal</user>
 
 
 
 
 
273
  </payflow_advanced>
274
  <hosted_pro>
275
  <model>paypal/hostedpro</model>
@@ -277,6 +304,7 @@
277
  <payment_action>Authorization</payment_action>
278
  <group>paypal</group>
279
  <display_ec>0</display_ec>
 
280
  </hosted_pro>
281
  </payment>
282
  </default>
156
  </events>
157
  </frontend>
158
  <adminhtml>
159
+ <events>
160
+ <adminhtml_init_system_config>
161
+ <observers>
162
+ <paypal>
163
+ <class>paypal/observer</class>
164
+ <method>loadCountryDependentSolutionsConfig</method>
165
+ </paypal>
166
+ </observers>
167
+ </adminhtml_init_system_config>
168
+ </events>
169
  <translate>
170
  <modules>
171
  <Mage_Paypal>
212
  <authorization_honor_period>3</authorization_honor_period>
213
  <order_valid_period>29</order_valid_period>
214
  <child_authorization_number>1</child_authorization_number>
215
+ <verify_peer>1</verify_peer>
216
  </paypal_express>
217
  <paypal_direct>
218
  <model>paypal/direct</model>
219
+ <title>PayPal Payments Pro</title>
220
  <payment_action>Authorization</payment_action>
221
  <cctypes>VI,MC</cctypes>
222
  <useccv>1</useccv>
223
  <group>paypal</group>
224
+ <verify_peer>1</verify_peer>
225
  </paypal_direct>
226
  <paypal_standard>
227
  <model>paypal/standard</model>
229
  <payment_action>Sale</payment_action>
230
  <line_items_enabled>1</line_items_enabled>
231
  <group>paypal</group>
232
+ <verify_peer>1</verify_peer>
233
  </paypal_standard>
234
  <paypaluk_express>
235
  <title>PayPal Express Checkout Payflow Edition</title>
238
  <visible_on_cart>1</visible_on_cart>
239
  <visible_on_product>1</visible_on_product>
240
  <group>paypal</group>
241
+ <verify_peer>1</verify_peer>
242
  </paypaluk_express>
243
  <paypaluk_direct>
244
+ <title>PayPal Payments Pro Payflow Edition</title>
245
  <payment_action>Authorization</payment_action>
246
  <cctypes>VI,MC,AE</cctypes>
247
  <useccv>1</useccv>
248
  <group>paypal</group>
249
+ <verify_peer>1</verify_peer>
250
  </paypaluk_direct>
251
  <verisign>
252
  <model>paypal/payflowpro</model>
259
  <user backend_model="adminhtml/system_config_backend_encrypted"/>
260
  <pwd backend_model="adminhtml/system_config_backend_encrypted"/>
261
  <group>paypal</group>
262
+ <verify_peer>1</verify_peer>
263
  </verisign>
264
  <paypal_billing_agreement>
265
  <active>1</active>
267
  <model>paypal/method_agreement</model>
268
  <title>PayPal Billing Agreement</title>
269
  <group>paypal</group>
270
+ <verify_peer>1</verify_peer>
271
  </paypal_billing_agreement>
272
  <payflow_link>
273
  <model>paypal/payflowlink</model>
276
  <pwd backend_model="adminhtml/system_config_backend_encrypted"/>
277
  <group>paypal</group>
278
  <title>Credit Card</title>
279
+ <csc_required>1</csc_required>
280
+ <csc_editable>1</csc_editable>
281
+ <url_method>GET</url_method>
282
+ <email_confirmation>0</email_confirmation>
283
+ <verify_peer>1</verify_peer>
284
  </payflow_link>
285
  <payflow_advanced>
286
  <model>paypal/payflowadvanced</model>
292
  <partner>PayPal</partner>
293
  <vendor>PayPal</vendor>
294
  <user>PayPal</user>
295
+ <csc_required>1</csc_required>
296
+ <csc_editable>1</csc_editable>
297
+ <url_method>GET</url_method>
298
+ <email_confirmation>0</email_confirmation>
299
+ <verify_peer>1</verify_peer>
300
  </payflow_advanced>
301
  <hosted_pro>
302
  <model>paypal/hostedpro</model>
304
  <payment_action>Authorization</payment_action>
305
  <group>paypal</group>
306
  <display_ec>0</display_ec>
307
+ <verify_peer>1</verify_peer>
308
  </hosted_pro>
309
  </payment>
310
  </default>
app/code/core/Mage/Paypal/etc/system.xml CHANGED
@@ -29,1931 +29,3296 @@
29
  <sections>
30
  <payment>
31
  <groups>
32
- <hint>
33
  <frontend_model>paypal/adminhtml_system_config_fieldset_hint</frontend_model>
 
34
  <sort_order>0</sort_order>
35
  <show_in_default>1</show_in_default>
36
  <show_in_website>1</show_in_website>
37
  <show_in_store>1</show_in_store>
38
- </hint>
39
- </groups>
40
- </payment>
41
- <paypal translate="label" module="paypal">
42
- <label>PayPal</label>
43
- <class>paypal-section</class>
44
- <header_css>paypal-header</header_css>
45
- <tab>sales</tab>
46
- <frontend_type>text</frontend_type>
47
- <sort_order>350</sort_order>
48
- <show_in_default>1</show_in_default>
49
- <show_in_website>1</show_in_website>
50
- <show_in_store>1</show_in_store>
51
- <groups>
52
- <account translate="label">
53
- <label>Merchant Account</label>
54
  <fieldset_css>paypal-config</fieldset_css>
55
  <expanded>1</expanded>
56
  <frontend_type>text</frontend_type>
57
- <sort_order>0</sort_order>
58
  <show_in_default>1</show_in_default>
59
  <show_in_website>1</show_in_website>
 
60
  <fields>
61
  <merchant_country translate="label comment">
62
  <label>Merchant Country</label>
63
  <config_path>paypal/general/merchant_country</config_path>
64
  <comment>If not specified, Default Country from General Config will be used</comment>
65
  <frontend_type>select</frontend_type>
 
66
  <source_model>paypal/system_config_source_merchantCountry</source_model>
67
  <backend_model>paypal/system_config_backend_merchantCountry</backend_model>
68
  <show_in_default>1</show_in_default>
69
  <show_in_website>1</show_in_website>
70
  <sort_order>5</sort_order>
71
  </merchant_country>
72
- <business_account translate="label comment tooltip">
73
- <label>Email Associated with PayPal Merchant Account</label>
74
- <comment><![CDATA[<a href="http://www.magentocommerce.com/paypal">Start accepting payments via PayPal!</a>]]></comment>
75
- <tooltip>Don't have a PayPal account? Simply enter your email address.</tooltip>
76
- <config_path>paypal/general/business_account</config_path>
77
- <show_in_default>1</show_in_default>
78
- <show_in_website>1</show_in_website>
79
- <sort_order>10</sort_order>
80
- <validate>validate-email</validate>
81
- </business_account>
82
  </fields>
83
  </account>
84
 
85
- <global translate="label">
86
- <label>Select a PayPal Solution</label>
87
- <help_url><![CDATA[https://merchant.paypal.com/cgi-bin/marketingweb?cmd=_render-content&content_ID=merchant/home]]></help_url>
88
- <frontend_type>text</frontend_type>
89
- <frontend_model>paypal/adminhtml_system_config_fieldset_global</frontend_model>
90
- <sort_order>1</sort_order>
91
  <show_in_default>1</show_in_default>
92
  <show_in_website>1</show_in_website>
93
- <fields>
94
- <express translate="label comment">
95
- <label>Express Checkout</label>
96
- <comment>Add an Express Checkout button to your existing shopping cart for quick and easy credit card payments. PayPal handles all payment processing.</comment>
97
- <demo_url><![CDATA[https://merchant.paypal.com/us/cgi-bin/?&cmd=_render-content&content_ID=merchant/demo_express_checkout]]></demo_url>
98
- <more_url><![CDATA[https://www.paypal.com/cgi-bin/webscr?cmd=_simple-referral-flow&partner_id=NB9WWHYEMVUMS&product_id=ECA]]></more_url>
99
- <backend_congif>
100
- <enable_for_countries>all</enable_for_countries>
101
- <urls>
102
- <JP translate="switcher fieldset">
103
- <more_url><![CDATA[https://cms.paypal.com/jp/cgi-bin/marketingweb?cmd=_render-content&content_ID=marketing_jp/ExpressCheckout&nav=3.1.1]]></more_url>
104
- </JP>
105
- </urls>
106
- </backend_congif>
107
- <config_path>payment/paypal_express/active</config_path>
108
- <frontend_type>checkbox</frontend_type>
109
- <sort_order>10</sort_order>
110
- <show_in_default>1</show_in_default>
111
- <show_in_website>1</show_in_website>
112
- </express>
113
- <wps translate="label comment">
114
- <label>Website Payments Standard</label>
115
- <comment>PayPal processes all of your orders, and you get paid.</comment>
116
- <demo_url><![CDATA[https://merchant.paypal.com/us/cgi-bin/?&cmd=_render-content&content_ID=merchant/demo_WPS]]></demo_url>
117
- <more_url><![CDATA[https://www.paypal.com/cgi-bin/webscr?cmd=_simple-referral-flow&partner_id=NB9WWHYEMVUMS&product_id=WPSA]]></more_url>
118
- <backend_congif>
119
- <enable_for_countries>all</enable_for_countries>
120
- <urls>
121
- <JP translate="switcher fieldset">
122
- <more_url><![CDATA[https://cms.paypal.com/jp/cgi-bin/marketingweb?cmd=_render-content&content_ID=marketing_jp/WebsitePaymentsStandard&nav=3.1.2]]></more_url>
123
- </JP>
124
- </urls>
125
- </backend_congif>
126
- <config_path>payment/paypal_standard/active</config_path>
127
- <frontend_type>checkbox</frontend_type>
128
- <sort_order>20</sort_order>
129
- <show_in_default>1</show_in_default>
130
- <show_in_website>1</show_in_website>
131
- </wps>
132
- <wpp translate="label comment">
133
- <label>Website Payments Pro</label>
134
- <comment>Process credit cards directly on your website with PayPal’s all-in-one online payment processing solution.</comment>
135
- <demo_url><![CDATA[https://merchant.paypal.com/us/cgi-bin/?&cmd=_render-content&content_ID=merchant/demo_wpp]]></demo_url>
136
- <more_url><![CDATA[https://www.paypal.com/cgi-bin/webscr?cmd=_simple-referral-flow&partner_id=NB9WWHYEMVUMS&product_id=WPPROA]]></more_url>
137
- <backend_congif>
138
- <enable_for_countries>US, CA, GB</enable_for_countries>
139
- </backend_congif>
140
- <config_path>payment/paypal_direct/active</config_path>
141
- <frontend_type>checkbox</frontend_type>
142
- <sort_order>25</sort_order>
143
- <show_in_default>1</show_in_default>
144
- <show_in_website>1</show_in_website>
145
- </wpp>
146
- <wpp_pe translate="label comment">
147
- <label>Website Payments Pro Payflow Edition (includes Express Checkout)</label>
148
- <comment>Accept PayPal payments in your shopping cart. PayPal will process your credit card payments through the Payflow Pro Gateway.</comment>
149
- <backend_congif>
150
- <enable_for_countries>US, GB</enable_for_countries>
151
- </backend_congif>
152
- <config_path>payment/paypaluk_direct/active</config_path>
153
- <frontend_type>checkbox</frontend_type>
154
- <sort_order>30</sort_order>
155
- <show_in_default>1</show_in_default>
156
- <show_in_website>1</show_in_website>
157
- </wpp_pe>
158
- <verisign translate="label comment">
159
- <label>Payflow Pro Gateway</label>
160
- <comment>Don’t have a PayPal merchant account? You can still accept credit card payments through the Payflow Pro Gateway.</comment>
161
- <more_url><![CDATA[https://www.paypal.com/cgi-bin/webscr?cmd=_simple-referral-flow&partner_id=NB9WWHYEMVUMS&product_id=payflow_pro]]></more_url>
162
- <backend_congif>
163
- <enable_for_countries>US, CA, AU, NZ</enable_for_countries>
164
- </backend_congif>
165
- <config_path>payment/verisign/active</config_path>
166
- <frontend_type>checkbox</frontend_type>
167
- <sort_order>35</sort_order>
168
- <show_in_default>1</show_in_default>
169
- <show_in_website>1</show_in_website>
170
- </verisign>
171
- <express_pe translate="label comment">
172
- <label>Express Checkout</label>
173
- <comment>Accept payments without customers leaving your website. Many popular web-hosting services and shopping carts come with the Payflow payment gateways built in, so they are easy to set up.</comment>
174
- <backend_congif>
175
- <enable_for_countries>US, GB</enable_for_countries>
176
- </backend_congif>
177
- <config_path>payment/paypaluk_express/active</config_path>
178
- <is_simplified>1</is_simplified>
179
- <frontend_type>checkbox</frontend_type>
180
- <sort_order>40</sort_order>
181
- <show_in_default>1</show_in_default>
182
- <show_in_website>1</show_in_website>
183
- </express_pe>
184
- <payflow_link translate="label comment">
185
- <label>Payflow Link (for USA and Canada)</label>
186
- <comment>Accept payments with a PCI-compliant checkout that keeps customers on your site. For use with your own merchant account.</comment>
187
- <more_url><![CDATA[https://www.paypal.com/cgi-bin/webscr?cmd=_payflow-link-overview-outside]]></more_url>
188
- <backend_congif>
189
- <enable_for_countries>US, CA</enable_for_countries>
190
- </backend_congif>
191
- <config_path>payment/payflow_link/active</config_path>
192
- <frontend_type>checkbox</frontend_type>
193
- <sort_order>50</sort_order>
194
- <show_in_default>1</show_in_default>
195
- <show_in_website>1</show_in_website>
196
- </payflow_link>
197
- <payflow_advanced translate="label comment">
198
- <label>PayPal Payments Advanced</label>
199
- <comment>Accept payments with a PCI-compliant checkout that keeps customers on your site. Includes a merchant account from PayPal.</comment>
200
- <backend_congif>
201
- <enable_for_countries>US</enable_for_countries>
202
- </backend_congif>
203
- <config_path>payment/payflow_advanced/active</config_path>
204
- <frontend_type>checkbox</frontend_type>
205
- <sort_order>55</sort_order>
206
- <show_in_default>1</show_in_default>
207
- <show_in_website>1</show_in_website>
208
- </payflow_advanced>
209
- <hosted_pro translate="label comment">
210
- <label>Website Payments Pro Hosted Solution</label>
211
- <comment><![CDATA[Payments by cards + seller protection - <strong style="color:red">Contact PayPal before activating</strong>]]></comment>
212
- <more_url><![CDATA[https://cms.paypal.com/cms_content/GB/en_GB/files/developer/HostedSolution.pdf]]></more_url>
213
- <backend_congif>
214
- <enable_for_countries>all</enable_for_countries>
215
- <disable_for_countries>US,CA</disable_for_countries>
216
- <labels>
217
- <JP translate="switcher fieldset">
218
- <switcher>Website Payments Plus</switcher>
219
- <fieldset>Website Payments Plus Settings</fieldset>
220
- </JP>
221
- <FR translate="switcher fieldset">
222
- <switcher>Integral Evolution</switcher>
223
- <fieldset>Integral Evolution Settings</fieldset>
224
- </FR>
225
- <IT translate="switcher fieldset">
226
- <switcher>PayPal Pro</switcher>
227
- <fieldset>PayPal Pro Settings</fieldset>
228
- </IT>
229
- <ES translate="switcher fieldset">
230
- <switcher>Pasarela integral</switcher>
231
- <fieldset>Pasarela integral Settings</fieldset>
232
- </ES>
233
- </labels>
234
- <urls>
235
- <JP translate="switcher fieldset">
236
- <more_url><![CDATA[https://www.paypal-japan.com/wpp/]]></more_url>
237
- </JP>
238
- </urls>
239
- </backend_congif>
240
- <config_path>payment/hosted_pro/active</config_path>
241
- <frontend_type>checkbox</frontend_type>
242
- <sort_order>60</sort_order>
243
- <show_in_default>1</show_in_default>
244
- <show_in_website>1</show_in_website>
245
- </hosted_pro>
246
- </fields>
247
- </global>
248
- <store>
249
- <frontend_model>paypal/adminhtml_system_config_fieldset_store</frontend_model>
250
- <sort_order>5</sort_order>
251
  <show_in_store>1</show_in_store>
252
- </store>
253
- <api translate="label comment">
254
- <label>API/Integration Settings</label>
255
- <fieldset_css>paypal-config</fieldset_css>
256
- <frontend_type>text</frontend_type>
257
- <sort_order>10</sort_order>
 
 
 
258
  <show_in_default>1</show_in_default>
259
  <show_in_website>1</show_in_website>
260
- <fields>
261
- <api_authentication translate="label">
262
- <label>API Authentication Methods</label>
263
- <config_path>paypal/wpp/api_authentication</config_path>
264
- <frontend_type>select</frontend_type>
265
- <source_model>paypal/config::getApiAuthenticationMethods</source_model>
266
- <sort_order>1</sort_order>
267
- <show_in_default>1</show_in_default>
268
- <show_in_website>1</show_in_website>
269
- </api_authentication>
270
- <api_username translate="label">
271
- <label>API Username</label>
272
- <config_path>paypal/wpp/api_username</config_path>
273
- <frontend_type>obscure</frontend_type>
274
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
275
- <sort_order>5</sort_order>
276
- <show_in_default>1</show_in_default>
277
- <show_in_website>1</show_in_website>
278
- </api_username>
279
- <api_password translate="label">
280
- <label>API Password</label>
281
- <config_path>paypal/wpp/api_password</config_path>
282
- <frontend_type>obscure</frontend_type>
283
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
284
- <sort_order>10</sort_order>
285
- <show_in_default>1</show_in_default>
286
- <show_in_website>1</show_in_website>
287
- </api_password>
288
- <api_signature translate="label">
289
- <label>API Signature</label>
290
- <config_path>paypal/wpp/api_signature</config_path>
291
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
292
- <frontend_type>obscure</frontend_type>
293
- <sort_order>15</sort_order>
294
- <show_in_default>1</show_in_default>
295
- <show_in_website>1</show_in_website>
296
- <depends><api_authentication>0</api_authentication></depends>
297
- </api_signature>
298
- <api_cert translate="label">
299
- <label>API Certificate</label>
300
- <config_path>paypal/wpp/api_cert</config_path>
301
- <frontend_type>file</frontend_type>
302
- <backend_model>paypal/system_config_backend_cert</backend_model>
303
- <sort_order>17</sort_order>
304
- <show_in_default>1</show_in_default>
305
- <show_in_website>1</show_in_website>
306
- <depends><api_authentication>1</api_authentication></depends>
307
- </api_cert>
308
- <api_wizard translate="button_label sandbox_button_label">
309
- <label></label>
310
- <button_label>Get Credentials from PayPal</button_label>
311
- <button_url><![CDATA[https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-api-run]]></button_url>
312
- <sandbox_button_label>Sandbox Credentials</sandbox_button_label>
313
- <sandbox_button_url><![CDATA[https://www.sandbox.paypal.com/us/cgi-bin/webscr?cmd=_login-api-run]]></sandbox_button_url>
314
- <frontend_model>paypal/adminhtml_system_config_apiWizard</frontend_model>
315
- <sort_order>20</sort_order>
316
- <show_in_default>1</show_in_default>
317
- <show_in_website>1</show_in_website>
318
- </api_wizard>
319
- <sandbox_flag translate="label">
320
- <label>Sandbox Mode</label>
321
- <config_path>paypal/wpp/sandbox_flag</config_path>
322
- <frontend_type>select</frontend_type>
323
- <source_model>adminhtml/system_config_source_yesno</source_model>
324
- <sort_order>25</sort_order>
325
- <show_in_default>1</show_in_default>
326
- <show_in_website>1</show_in_website>
327
- </sandbox_flag>
328
- <use_proxy translate="label">
329
- <label>API Uses Proxy</label>
330
- <config_path>paypal/wpp/use_proxy</config_path>
331
- <frontend_type>select</frontend_type>
332
- <source_model>adminhtml/system_config_source_yesno</source_model>
333
- <sort_order>30</sort_order>
334
- <show_in_default>1</show_in_default>
335
- <show_in_website>1</show_in_website>
336
- </use_proxy>
337
- <proxy_host translate="label">
338
- <label>Proxy Host</label>
339
- <config_path>paypal/wpp/proxy_host</config_path>
340
- <frontend_type>text</frontend_type>
341
- <sort_order>35</sort_order>
342
- <show_in_default>1</show_in_default>
343
- <show_in_website>1</show_in_website>
344
- <depends><use_proxy>1</use_proxy></depends>
345
- </proxy_host>
346
- <proxy_port translate="label">
347
- <label>Proxy Port</label>
348
- <config_path>paypal/wpp/proxy_port</config_path>
349
- <frontend_type>text</frontend_type>
350
- <sort_order>40</sort_order>
351
- <show_in_default>1</show_in_default>
352
- <show_in_website>1</show_in_website>
353
- <depends><use_proxy>1</use_proxy></depends>
354
- </proxy_port>
355
- </fields>
356
- </api>
357
-
358
- <express translate="label">
359
- <label>Express Checkout Settings</label>
360
- <fieldset_css>paypal-config</fieldset_css>
361
- <frontend_type>text</frontend_type>
362
  <sort_order>20</sort_order>
363
  <show_in_default>1</show_in_default>
364
  <show_in_website>1</show_in_website>
365
  <show_in_store>1</show_in_store>
366
- <fields>
367
- <title translate="label comment">
368
- <label>Title</label>
369
- <comment>It is recommended to set this value to "PayPal" per store views.</comment>
370
- <config_path>payment/paypal_express/title</config_path>
371
- <frontend_type>text</frontend_type>
372
- <sort_order>5</sort_order>
373
- <show_in_default>1</show_in_default>
374
- <show_in_website>1</show_in_website>
375
- <show_in_store>1</show_in_store>
376
- </title>
377
- <sort_order translate="label">
378
- <label>Sort Order</label>
379
- <config_path>payment/paypal_express/sort_order</config_path>
380
- <frontend_type>text</frontend_type>
381
- <sort_order>10</sort_order>
382
- <show_in_default>1</show_in_default>
383
- <show_in_website>1</show_in_website>
384
- <show_in_store>1</show_in_store>
385
- <frontend_class>validate-number</frontend_class>
386
- </sort_order>
387
- <payment_action translate="label">
388
- <label>Payment Action</label>
389
- <config_path>payment/paypal_express/payment_action</config_path>
390
- <frontend_type>select</frontend_type>
391
- <source_model>paypal/system_config_source_paymentActions_express</source_model>
392
- <sort_order>15</sort_order>
393
- <show_in_default>1</show_in_default>
394
- <show_in_website>1</show_in_website>
395
- </payment_action>
396
- <allowspecific translate="label">
397
- <label>Payment Applicable From</label>
398
- <config_path>payment/paypal_express/allowspecific</config_path>
399
- <frontend_type>select</frontend_type>
400
- <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
401
- <sort_order>20</sort_order>
402
- <show_in_default>1</show_in_default>
403
- <show_in_website>1</show_in_website>
404
- </allowspecific>
405
- <specificcountry translate="label">
406
- <label>Countries Payment Applicable From</label>
407
- <config_path>payment/paypal_express/specificcountry</config_path>
408
- <frontend_type>multiselect</frontend_type>
409
- <source_model>paypal/system_config_source_buyerCountry</source_model>
410
- <sort_order>25</sort_order>
411
- <show_in_default>1</show_in_default>
412
- <show_in_website>1</show_in_website>
413
- <depends><allowspecific>1</allowspecific></depends>
414
- </specificcountry>
415
- <debug translate="label">
416
- <label>Debug Mode</label>
417
- <config_path>payment/paypal_express/debug</config_path>
418
- <frontend_type>select</frontend_type>
419
- <source_model>adminhtml/system_config_source_yesno</source_model>
420
- <sort_order>30</sort_order>
421
- <show_in_default>1</show_in_default>
422
- <show_in_website>1</show_in_website>
423
- </debug>
424
- <line_items_enabled translate="label">
425
- <label>Transfer Cart Line Items</label>
426
- <config_path>payment/paypal_express/line_items_enabled</config_path>
427
- <frontend_type>select</frontend_type>
428
- <source_model>adminhtml/system_config_source_yesno</source_model>
429
- <sort_order>35</sort_order>
430
- <show_in_default>1</show_in_default>
431
- <show_in_website>1</show_in_website>
432
- </line_items_enabled>
433
- <transfer_shipping_options translate="label tooltip comment">
434
- <label>Transfer Shipping Options</label>
435
- <config_path>payment/paypal_express/transfer_shipping_options</config_path>
436
- <tooltip>If this option is enabled, customer can change shipping address and shipping method on PayPal website. In live mode works via HTTPS protocol only.</tooltip>
437
- <comment>Notice that PayPal can handle up to 10 shipping options. That is why Magento will transfer only first 10 cheapest shipping options if there are more than 10 available.</comment>
438
- <frontend_type>select</frontend_type>
439
- <source_model>adminhtml/system_config_source_yesno</source_model>
440
- <sort_order>40</sort_order>
441
- <show_in_default>1</show_in_default>
442
- <show_in_website>1</show_in_website>
443
- <depends><line_items_enabled>1</line_items_enabled></depends>
444
- </transfer_shipping_options>
445
- <visible_on_cart translate="label comment">
446
- <label>Shortcut on Shopping Cart</label>
447
- <config_path>payment/paypal_express/visible_on_cart</config_path>
448
- <comment>Also affects mini-shopping cart.</comment>
449
- <frontend_type>select</frontend_type>
450
- <source_model>adminhtml/system_config_source_yesno</source_model>
451
- <sort_order>45</sort_order>
452
- <show_in_default>1</show_in_default>
453
- <show_in_website>1</show_in_website>
454
- <show_in_store>1</show_in_store>
455
- </visible_on_cart>
456
- <visible_on_product translate="label">
457
- <label>Shortcut on Product View</label>
458
- <config_path>payment/paypal_express/visible_on_product</config_path>
459
- <frontend_type>select</frontend_type>
460
- <source_model>adminhtml/system_config_source_yesno</source_model>
461
- <sort_order>50</sort_order>
462
- <show_in_default>1</show_in_default>
463
- <show_in_website>1</show_in_website>
464
- <show_in_store>1</show_in_store>
465
- </visible_on_product>
466
- <button_flavor translate="label">
467
- <label>Shortcut Buttons Flavor</label>
468
- <config_path>paypal/wpp/button_flavor</config_path>
469
- <frontend_type>select</frontend_type>
470
- <source_model>paypal/config::getExpressCheckoutButtonFlavors</source_model>
471
- <sort_order>55</sort_order>
472
- <show_in_default>1</show_in_default>
473
- <show_in_website>1</show_in_website>
474
- <show_in_store>1</show_in_store>
475
- </button_flavor>
476
- <solution_type translate="label comment">
477
- <label>Enable PayPal Guest Checkout</label>
478
- <comment>Ability for buyer to purchase without PayPal account.</comment>
479
- <config_path>payment/paypal_express/solution_type</config_path>
480
- <frontend_type>select</frontend_type>
481
- <source_model>paypal/config::getExpressCheckoutSolutionTypes</source_model>
482
- <sort_order>60</sort_order>
483
- <show_in_default>1</show_in_default>
484
- <show_in_website>1</show_in_website>
485
- </solution_type>
486
- <require_billing_address translate="label comment">
487
- <label>Require Customer's Billing Address</label>
488
- <comment>This feature needs be enabled first for the merchant account through PayPal technical support.</comment>
489
- <config_path>payment/paypal_express/require_billing_address</config_path>
490
- <frontend_type>select</frontend_type>
491
- <source_model>paypal/system_config_source_requireBillingAddress</source_model>
492
- <sort_order>65</sort_order>
493
- <show_in_default>1</show_in_default>
494
- <show_in_website>1</show_in_website>
495
- </require_billing_address>
496
- <allow_ba_signup translate="label comment tooltip">
497
- <label>Billing Agreement Signup </label>
498
- <comment>Whether to create a billing agreement, if there are no active billing agreements available.</comment>
499
- <tooltip><![CDATA[Merchants need to apply to PayPal for enabling billing agreements feature. Do not enable this option until PayPal confirms that billing agreements are enabled for your merchant account.]]></tooltip>
500
- <config_path>payment/paypal_express/allow_ba_signup</config_path>
501
- <frontend_type>select</frontend_type>
502
- <source_model>paypal/config::getExpressCheckoutBASignupOptions</source_model>
503
- <sort_order>70</sort_order>
504
- <show_in_default>1</show_in_default>
505
- <show_in_website>1</show_in_website>
506
- </allow_ba_signup>
507
- <!-- heading_sftp translate="label">
508
- <label>some text</label>
509
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
510
- <sort_order>75</sort_order>
511
- <show_in_default>1</show_in_default>
512
- <show_in_website>1</show_in_website>
513
- </heading_sftp -->
514
- <authorization_honor_period translate="label comment">
515
- <label>Authorization Honor Period (days)</label>
516
- <comment>Specifies what the Authorization Honor Period is on the merchant’s PayPal account. It must mirror the setting in PayPal.</comment>
517
- <config_path>payment/paypal_express/authorization_honor_period</config_path>
518
- <frontend_type>text</frontend_type>
519
- <sort_order>80</sort_order>
520
- <show_in_default>1</show_in_default>
521
- <show_in_website>1</show_in_website>
522
- </authorization_honor_period>
523
- <order_valid_period translate="label comment">
524
- <label>Order Valid Period (days)</label>
525
- <comment>Specifies what the Order Valid Period is on the merchant’s PayPal account. It must mirror the setting in PayPal.</comment>
526
- <config_path>payment/paypal_express/order_valid_period</config_path>
527
- <frontend_type>text</frontend_type>
528
- <sort_order>90</sort_order>
529
- <show_in_default>1</show_in_default>
530
- <show_in_website>1</show_in_website>
531
- </order_valid_period>
532
- <child_authorization_number translate="label comment">
533
- <label>Number of Child Authorizations</label>
534
- <comment>The default number of child authorizations in your PayPal account is 1. To do multiple authorizations please contact PayPal to request an increase.</comment>
535
- <config_path>payment/paypal_express/child_authorization_number</config_path>
536
- <frontend_type>text</frontend_type>
537
- <sort_order>100</sort_order>
538
- <show_in_default>1</show_in_default>
539
- <show_in_website>1</show_in_website>
540
- </child_authorization_number>
541
- </fields>
542
- </express>
543
-
544
- <wps translate="label comment">
545
- <label>Website Payments Standard Settings</label>
546
- <fieldset_css>paypal-config</fieldset_css>
547
- <frontend_type>text</frontend_type>
548
- <sort_order>30</sort_order>
549
  <show_in_default>1</show_in_default>
550
  <show_in_website>1</show_in_website>
551
  <show_in_store>1</show_in_store>
552
- <fields>
553
- <title translate="label comment">
554
- <label>Title</label>
555
- <comment>It is recommended to set this value to "PayPal" per store views.</comment>
556
- <config_path>payment/paypal_standard/title</config_path>
557
- <frontend_type>text</frontend_type>
558
- <sort_order>5</sort_order>
559
- <show_in_default>1</show_in_default>
560
- <show_in_website>1</show_in_website>
561
- <show_in_store>1</show_in_store>
562
- </title>
563
- <sort_order translate="label">
564
- <label>Sort Order</label>
565
- <config_path>payment/paypal_standard/sort_order</config_path>
566
- <frontend_type>text</frontend_type>
567
- <sort_order>10</sort_order>
568
- <show_in_default>1</show_in_default>
569
- <show_in_website>1</show_in_website>
570
- <show_in_store>1</show_in_store>
571
- <frontend_class>validate-number</frontend_class>
572
- </sort_order>
573
- <payment_action translate="label">
574
- <label>Payment Action</label>
575
- <config_path>payment/paypal_standard/payment_action</config_path>
576
- <frontend_type>select</frontend_type>
577
- <source_model>paypal/system_config_source_paymentActions</source_model>
578
- <sort_order>15</sort_order>
579
- <show_in_default>1</show_in_default>
580
- <show_in_website>1</show_in_website>
581
- </payment_action>
582
- <allowspecific translate="label">
583
- <label>Payment Applicable From</label>
584
- <config_path>payment/paypal_standard/allowspecific</config_path>
585
- <frontend_type>select</frontend_type>
586
- <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
587
- <sort_order>20</sort_order>
588
- <show_in_default>1</show_in_default>
589
- <show_in_website>1</show_in_website>
590
- </allowspecific>
591
- <specificcountry translate="label">
592
- <label>Countries Payment Applicable From</label>
593
- <config_path>payment/paypal_standard/specificcountry</config_path>
594
- <frontend_type>multiselect</frontend_type>
595
- <source_model>paypal/system_config_source_buyerCountry</source_model>
596
- <sort_order>25</sort_order>
597
- <show_in_default>1</show_in_default>
598
- <show_in_website>1</show_in_website>
599
- <depends><allowspecific>1</allowspecific></depends>
600
- </specificcountry>
601
- <sandbox_flag translate="label">
602
- <label>Sandbox Mode</label>
603
- <config_path>payment/paypal_standard/sandbox_flag</config_path>
604
- <frontend_type>select</frontend_type>
605
- <source_model>adminhtml/system_config_source_yesno</source_model>
606
- <sort_order>30</sort_order>
607
- <show_in_default>1</show_in_default>
608
- <show_in_website>1</show_in_website>
609
- </sandbox_flag>
610
- <debug translate="label">
611
- <label>Debug Mode</label>
612
- <config_path>payment/paypal_standard/debug</config_path>
613
- <frontend_type>select</frontend_type>
614
- <source_model>adminhtml/system_config_source_yesno</source_model>
615
- <sort_order>35</sort_order>
616
- <show_in_default>1</show_in_default>
617
- <show_in_website>1</show_in_website>
618
- </debug>
619
- <line_items_enabled translate="label">
620
- <label>Transfer Cart Line Items</label>
621
- <config_path>payment/paypal_standard/line_items_enabled</config_path>
622
- <frontend_type>select</frontend_type>
623
- <source_model>adminhtml/system_config_source_yesno</source_model>
624
- <sort_order>35</sort_order>
625
- <show_in_default>1</show_in_default>
626
- <show_in_website>1</show_in_website>
627
- </line_items_enabled>
628
- <line_items_summary translate="label comment">
629
- <label>Summary Text for Aggregated Cart</label>
630
- <config_path>payment/paypal_standard/line_items_summary</config_path>
631
- <comment>Uses store frontend name by default.</comment>
632
- <frontend_type>text</frontend_type>
633
- <sort_order>40</sort_order>
634
- <show_in_default>1</show_in_default>
635
- <show_in_website>1</show_in_website>
636
- <show_in_store>1</show_in_store>
637
- <depends><line_items_enabled>0</line_items_enabled></depends>
638
- </line_items_summary>
639
- </fields>
640
- </wps>
641
 
642
- <wpp translate="label comment">
643
- <label>Website Payments Pro Settings</label>
644
- <fieldset_css>paypal-config</fieldset_css>
645
- <frontend_type>text</frontend_type>
646
- <sort_order>40</sort_order>
647
- <show_in_default>1</show_in_default>
648
- <show_in_website>1</show_in_website>
649
- <show_in_store>1</show_in_store>
650
- <fields>
651
- <title translate="label comment">
652
- <label>Title</label>
653
- <comment>It is recommended to set this value to "Debit or Credit Card" per store views.</comment>
654
- <config_path>payment/paypal_direct/title</config_path>
655
- <frontend_type>text</frontend_type>
656
- <sort_order>5</sort_order>
657
- <show_in_default>1</show_in_default>
658
- <show_in_website>1</show_in_website>
659
- <show_in_store>1</show_in_store>
660
- </title>
661
- <sort_order translate="label">
662
- <label>Sort Order</label>
663
- <config_path>payment/paypal_direct/sort_order</config_path>
664
- <frontend_type>text</frontend_type>
665
- <sort_order>10</sort_order>
666
- <show_in_default>1</show_in_default>
667
- <show_in_website>1</show_in_website>
668
- <show_in_store>1</show_in_store>
669
- <frontend_class>validate-number</frontend_class>
670
- </sort_order>
671
- <payment_action translate="label">
672
- <label>Payment Action</label>
673
- <config_path>payment/paypal_direct/payment_action</config_path>
674
- <frontend_type>select</frontend_type>
675
- <source_model>paypal/system_config_source_paymentActions</source_model>
676
- <sort_order>15</sort_order>
677
- <show_in_default>1</show_in_default>
678
- <show_in_website>1</show_in_website>
679
- </payment_action>
680
- <allowspecific translate="label">
681
- <label>Payment Applicable From</label>
682
- <config_path>payment/paypal_direct/allowspecific</config_path>
683
- <frontend_type>select</frontend_type>
684
- <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
685
- <sort_order>20</sort_order>
686
- <show_in_default>1</show_in_default>
687
- <show_in_website>1</show_in_website>
688
- </allowspecific>
689
- <specificcountry translate="label">
690
- <label>Countries Payment Applicable From</label>
691
- <config_path>payment/paypal_direct/specificcountry</config_path>
692
- <frontend_type>multiselect</frontend_type>
693
- <source_model>paypal/system_config_source_buyerCountry</source_model>
694
- <sort_order>25</sort_order>
695
- <show_in_default>1</show_in_default>
696
- <show_in_website>1</show_in_website>
697
- <depends><allowspecific>1</allowspecific></depends>
698
- </specificcountry>
699
- <debug translate="label">
700
- <label>Debug Mode</label>
701
- <config_path>payment/paypal_direct/debug</config_path>
702
- <frontend_type>select</frontend_type>
703
- <source_model>adminhtml/system_config_source_yesno</source_model>
704
- <sort_order>30</sort_order>
705
- <show_in_default>1</show_in_default>
706
- <show_in_website>1</show_in_website>
707
- </debug>
708
- <line_items_enabled translate="label">
709
- <label>Transfer Cart Line Items</label>
710
- <config_path>payment/paypal_direct/line_items_enabled</config_path>
711
- <frontend_type>select</frontend_type>
712
- <source_model>adminhtml/system_config_source_yesno</source_model>
713
- <sort_order>35</sort_order>
714
- <show_in_default>1</show_in_default>
715
- <show_in_website>1</show_in_website>
716
- </line_items_enabled>
717
- <heading_cc translate="label">
718
- <label>Credit Card Settings</label>
719
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
720
- <sort_order>40</sort_order>
721
- <show_in_default>1</show_in_default>
722
- <show_in_website>1</show_in_website>
723
- </heading_cc>
724
- <cctypes translate="label comment">
725
- <label>Allowed Credit Card Types</label>
726
- <comment><![CDATA[3D Secure validation is required for Maestro cards. Supporting of American Express cards require additional agreement. Learn more at <a href="http://www.paypal.com/amexupdate">http://www.paypal.com/amexupdate</a>.]]></comment>
727
- <config_path>payment/paypal_direct/cctypes</config_path>
728
- <frontend_type>multiselect</frontend_type>
729
- <source_model>paypal/config::getWppCcTypesAsOptionArray</source_model>
730
- <sort_order>45</sort_order>
731
- <show_in_default>1</show_in_default>
732
- <show_in_website>1</show_in_website>
733
- </cctypes>
734
- <useccv translate="label">
735
- <label>Require CVV Entry</label>
736
- <config_path>payment/paypal_direct/useccv</config_path>
737
- <frontend_type>select</frontend_type>
738
- <source_model>adminhtml/system_config_source_yesno</source_model>
739
- <sort_order>50</sort_order>
740
- <show_in_default>1</show_in_default>
741
- <show_in_website>1</show_in_website>
742
- </useccv>
743
- <heading_3dsecure translate="label">
744
- <label>3D Secure</label>
745
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
746
- <sort_order>55</sort_order>
747
- <show_in_default>1</show_in_default>
748
- <show_in_website>1</show_in_website>
749
- </heading_3dsecure>
750
- <centinel translate="label">
751
- <label>3D Secure Card Validation</label>
752
- <config_path>payment/paypal_direct/centinel</config_path>
753
- <frontend_type>select</frontend_type>
754
- <source_model>adminhtml/system_config_source_yesno</source_model>
755
- <sort_order>60</sort_order>
756
- <show_in_default>1</show_in_default>
757
- <show_in_website>1</show_in_website>
758
- </centinel>
759
- <centinel_is_mode_strict translate="label comment">
760
- <label>Severe 3D Secure Card Validation</label>
761
- <config_path>payment/paypal_direct/centinel_is_mode_strict</config_path>
762
- <comment>Severe Validation Removes Chargeback Liability on Merchant</comment>
763
- <frontend_type>select</frontend_type>
764
- <source_model>adminhtml/system_config_source_yesno</source_model>
765
- <sort_order>65</sort_order>
766
- <show_in_default>1</show_in_default>
767
- <show_in_website>1</show_in_website>
768
- <depends><centinel>1</centinel></depends>
769
- </centinel_is_mode_strict>
770
- <centinel_api_url translate="label comment">
771
- <label>Centinel Custom API URL</label>
772
- <config_path>payment/paypal_direct/centinel_api_url</config_path>
773
- <comment>If empty, a default value will be used. Custom URL may be provided by CardinalCommerce agreement.</comment>
774
- <frontend_type>text</frontend_type>
775
- <source_model>adminhtml/system_config_source_yesno</source_model>
776
- <sort_order>70</sort_order>
777
- <show_in_default>1</show_in_default>
778
- <show_in_website>1</show_in_website>
779
- <depends><centinel>1</centinel></depends>
780
- </centinel_api_url>
781
- </fields>
782
- </wpp>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
783
 
784
- <paypal_billing_agreement translate="label">
785
- <label>Paypal Billing Agreement Settings</label>
786
- <frontend_type>text</frontend_type>
787
- <sort_order>45</sort_order>
788
- <show_in_default>1</show_in_default>
789
- <show_in_website>1</show_in_website>
790
- <show_in_store>1</show_in_store>
791
- <fields>
792
- <active translate="label comment">
793
- <label>Enabled</label>
794
- <comment><![CDATA[Will appear as a payment option only for customers who have at least one active billing agreement.]]></comment>
795
- <config_path>payment/paypal_billing_agreement/active</config_path>
796
- <frontend_type>select</frontend_type>
797
- <source_model>adminhtml/system_config_source_yesno</source_model>
798
- <sort_order>5</sort_order>
799
- <show_in_default>1</show_in_default>
800
- <show_in_website>1</show_in_website>
801
- </active>
802
- <title translate="label">
803
- <label>Title</label>
804
- <config_path>payment/paypal_billing_agreement/title</config_path>
805
- <frontend_type>text</frontend_type>
806
- <sort_order>10</sort_order>
807
- <show_in_default>1</show_in_default>
808
- <show_in_website>1</show_in_website>
809
- <show_in_store>1</show_in_store>
810
- </title>
811
- <sort_order translate="label">
812
- <label>Sort Order</label>
813
- <config_path>payment/paypal_billing_agreement/sort_order</config_path>
814
- <frontend_type>text</frontend_type>
815
- <sort_order>15</sort_order>
816
- <show_in_default>1</show_in_default>
817
- <show_in_website>1</show_in_website>
818
- <show_in_store>1</show_in_store>
819
- <frontend_class>validate-number</frontend_class>
820
- </sort_order>
821
- <payment_action translate="label">
822
- <label>Payment Action</label>
823
- <config_path>payment/paypal_billing_agreement/payment_action</config_path>
824
- <frontend_type>select</frontend_type>
825
- <source_model>paypal/system_config_source_paymentActions</source_model>
826
- <sort_order>20</sort_order>
827
- <show_in_default>1</show_in_default>
828
- <show_in_website>1</show_in_website>
829
- </payment_action>
830
- <allowspecific translate="label">
831
- <label>Payment Applicable From</label>
832
- <config_path>payment/paypal_billing_agreement/allowspecific</config_path>
833
- <frontend_type>select</frontend_type>
834
- <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
835
- <sort_order>25</sort_order>
836
- <show_in_default>1</show_in_default>
837
- <show_in_website>1</show_in_website>
838
- </allowspecific>
839
- <specificcountry translate="label">
840
- <label>Countries Payment Applicable From</label>
841
- <config_path>payment/paypal_billing_agreement/specificcountry</config_path>
842
- <frontend_type>multiselect</frontend_type>
843
- <source_model>paypal/system_config_source_buyerCountry</source_model>
844
- <sort_order>30</sort_order>
845
- <show_in_default>1</show_in_default>
846
- <show_in_website>1</show_in_website>
847
- <depends><allowspecific>1</allowspecific></depends>
848
- </specificcountry>
849
- <debug translate="label">
850
- <label>Debug Mode</label>
851
- <config_path>payment/paypal_billing_agreement/debug</config_path>
852
- <frontend_type>select</frontend_type>
853
- <source_model>adminhtml/system_config_source_yesno</source_model>
854
- <sort_order>35</sort_order>
855
- <show_in_default>1</show_in_default>
856
- <show_in_website>1</show_in_website>
857
- </debug>
858
- <line_items_enabled translate="label">
859
- <label>Transfer Cart Line Items</label>
860
- <config_path>payment/paypal_billing_agreement/line_items_enabled</config_path>
861
- <frontend_type>select</frontend_type>
862
- <source_model>adminhtml/system_config_source_yesno</source_model>
863
- <sort_order>40</sort_order>
864
- <show_in_default>1</show_in_default>
865
- <show_in_website>1</show_in_website>
866
- </line_items_enabled>
867
- <allow_billing_agreement_wizard translate="label">
868
- <label>Allow in Billing Agreement Wizard</label>
869
- <config_path>payment/paypal_billing_agreement/allow_billing_agreement_wizard</config_path>
870
- <frontend_type>select</frontend_type>
871
- <source_model>adminhtml/system_config_source_yesno</source_model>
872
- <sort_order>45</sort_order>
873
- <show_in_default>1</show_in_default>
874
- <show_in_website>1</show_in_website>
875
- </allow_billing_agreement_wizard>
876
- </fields>
877
- </paypal_billing_agreement>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
878
 
879
- <!-- TODO: paypal recurring profile -->
 
 
 
 
 
 
 
 
 
 
 
 
880
 
881
- <wpp_pe translate="label">
882
- <label>Website Payments Pro (Payflow Edition) Settings</label>
883
- <frontend_type>text</frontend_type>
884
- <sort_order>55</sort_order>
885
- <show_in_default>1</show_in_default>
886
- <show_in_website>1</show_in_website>
887
- <show_in_store>1</show_in_store>
888
- <fields>
889
- <title translate="label comment">
890
- <label>Title</label>
891
- <comment>It is recommended to set this value to "Debit or Credit Card" per store views.</comment>
892
- <config_path>payment/paypaluk_direct/title</config_path>
893
- <frontend_type>text</frontend_type>
894
- <sort_order>5</sort_order>
895
- <show_in_default>1</show_in_default>
896
- <show_in_website>1</show_in_website>
897
- <show_in_store>1</show_in_store>
898
- </title>
899
- <sort_order translate="label">
900
- <label>Sort Order</label>
901
- <config_path>payment/paypaluk_direct/sort_order</config_path>
902
- <frontend_type>text</frontend_type>
903
- <sort_order>10</sort_order>
904
- <show_in_default>1</show_in_default>
905
- <show_in_website>1</show_in_website>
906
- <show_in_store>1</show_in_store>
907
- <frontend_class>validate-number</frontend_class>
908
- </sort_order>
909
- <payment_action translate="label">
910
- <label>Payment Action</label>
911
- <config_path>payment/paypaluk_direct/payment_action</config_path>
912
- <frontend_type>select</frontend_type>
913
- <source_model>paypal/system_config_source_paymentActions</source_model>
914
- <sort_order>15</sort_order>
915
- <show_in_default>1</show_in_default>
916
- <show_in_website>1</show_in_website>
917
- </payment_action>
918
- <allowspecific translate="label">
919
- <label>Payment Applicable From</label>
920
- <config_path>payment/paypaluk_direct/allowspecific</config_path>
921
- <frontend_type>select</frontend_type>
922
- <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
923
- <sort_order>20</sort_order>
924
- <show_in_default>1</show_in_default>
925
- <show_in_website>1</show_in_website>
926
- </allowspecific>
927
- <specificcountry translate="label">
928
- <label>Countries Payment Applicable From</label>
929
- <config_path>payment/paypaluk_direct/specificcountry</config_path>
930
- <frontend_type>multiselect</frontend_type>
931
- <source_model>paypal/system_config_source_buyerCountry</source_model>
932
- <sort_order>25</sort_order>
933
- <show_in_default>1</show_in_default>
934
- <show_in_website>1</show_in_website>
935
- <depends><allowspecific>1</allowspecific></depends>
936
- </specificcountry>
937
- <debug translate="label">
938
- <label>Debug Mode</label>
939
- <config_path>payment/paypaluk_direct/debug</config_path>
940
- <frontend_type>select</frontend_type>
941
- <source_model>adminhtml/system_config_source_yesno</source_model>
942
- <sort_order>30</sort_order>
943
- <show_in_default>1</show_in_default>
944
- <show_in_website>1</show_in_website>
945
- </debug>
946
- <line_items_enabled translate="label">
947
- <label>Transfer Cart Line Items</label>
948
- <config_path>payment/paypaluk_direct/line_items_enabled</config_path>
949
- <frontend_type>select</frontend_type>
950
- <source_model>adminhtml/system_config_source_yesno</source_model>
951
- <sort_order>35</sort_order>
952
- <show_in_default>1</show_in_default>
953
- <show_in_website>1</show_in_website>
954
- </line_items_enabled>
955
- <heading_api translate="label">
956
- <label>API/Integration</label>
957
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
958
- <sort_order>40</sort_order>
959
- <show_in_default>1</show_in_default>
960
- <show_in_website>1</show_in_website>
961
- </heading_api>
962
- <partner translate="label">
963
- <label>Partner</label>
964
- <config_path>paypal/wpuk/partner</config_path>
965
- <frontend_type>text</frontend_type>
966
- <sort_order>45</sort_order>
967
- <show_in_default>1</show_in_default>
968
- <show_in_website>1</show_in_website>
969
- </partner>
970
- <user translate="label">
971
- <label>User</label>
972
- <frontend_type>obscure</frontend_type>
973
- <config_path>paypal/wpuk/user</config_path>
974
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
975
- <sort_order>50</sort_order>
976
- <show_in_default>1</show_in_default>
977
- <show_in_website>1</show_in_website>
978
- </user>
979
- <vendor translate="label">
980
- <label>Vendor</label>
981
- <config_path>paypal/wpuk/vendor</config_path>
982
- <frontend_type>text</frontend_type>
983
- <sort_order>55</sort_order>
984
- <show_in_default>1</show_in_default>
985
- <show_in_website>1</show_in_website>
986
- </vendor>
987
- <pwd translate="label">
988
- <label>Password</label>
989
- <config_path>paypal/wpuk/pwd</config_path>
990
- <frontend_type>obscure</frontend_type>
991
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
992
- <sort_order>60</sort_order>
993
- <show_in_default>1</show_in_default>
994
- <show_in_website>1</show_in_website>
995
- </pwd>
996
- <sandbox_flag translate="label">
997
- <label>Sandbox Mode</label>
998
- <config_path>paypal/wpuk/sandbox_flag</config_path>
999
- <frontend_type>select</frontend_type>
1000
- <source_model>adminhtml/system_config_source_yesno</source_model>
1001
- <sort_order>65</sort_order>
1002
- <show_in_default>1</show_in_default>
1003
- <show_in_website>1</show_in_website>
1004
- </sandbox_flag>
1005
- <use_proxy translate="label">
1006
- <label>API Uses Proxy</label>
1007
- <config_path>paypal/wpuk/use_proxy</config_path>
1008
- <frontend_type>select</frontend_type>
1009
- <source_model>adminhtml/system_config_source_yesno</source_model>
1010
- <sort_order>70</sort_order>
1011
- <show_in_default>1</show_in_default>
1012
- <show_in_website>1</show_in_website>
1013
- </use_proxy>
1014
- <proxy_host translate="label">
1015
- <label>Proxy Host</label>
1016
- <config_path>paypal/wpuk/proxy_host</config_path>
1017
- <frontend_type>text</frontend_type>
1018
- <sort_order>75</sort_order>
1019
- <show_in_default>1</show_in_default>
1020
- <show_in_website>1</show_in_website>
1021
- <depends><use_proxy>1</use_proxy></depends>
1022
- </proxy_host>
1023
- <proxy_port translate="label">
1024
- <label>Proxy Port</label>
1025
- <config_path>paypal/wpuk/proxy_port</config_path>
1026
- <frontend_type>text</frontend_type>
1027
- <sort_order>80</sort_order>
1028
- <show_in_default>1</show_in_default>
1029
- <show_in_website>1</show_in_website>
1030
- <depends><use_proxy>1</use_proxy></depends>
1031
- </proxy_port>
1032
- <heading_cc translate="label">
1033
- <label>Credit Card Settings</label>
1034
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1035
- <sort_order>85</sort_order>
1036
- <show_in_default>1</show_in_default>
1037
- <show_in_website>1</show_in_website>
1038
- </heading_cc>
1039
- <cctypes translate="label">
1040
- <label>Allowed Credit Card Types</label>
1041
- <comment><![CDATA[3D Secure validation is required for Maestro cards.]]></comment>
1042
- <config_path>payment/paypaluk_direct/cctypes</config_path>
1043
- <frontend_type>multiselect</frontend_type>
1044
- <source_model>paypal/config::getWppPeCcTypesAsOptionArray</source_model>
1045
- <sort_order>90</sort_order>
1046
- <show_in_default>1</show_in_default>
1047
- <show_in_website>1</show_in_website>
1048
- </cctypes>
1049
- <useccv translate="label">
1050
- <label>Require CVV Entry</label>
1051
- <config_path>payment/paypaluk_direct/useccv</config_path>
1052
- <frontend_type>select</frontend_type>
1053
- <source_model>adminhtml/system_config_source_yesno</source_model>
1054
- <sort_order>95</sort_order>
1055
- <show_in_default>1</show_in_default>
1056
- <show_in_website>1</show_in_website>
1057
- </useccv>
1058
- <heading_3dsecure translate="label">
1059
- <label>3D Secure</label>
1060
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1061
- <sort_order>100</sort_order>
1062
- <show_in_default>1</show_in_default>
1063
- <show_in_website>1</show_in_website>
1064
- </heading_3dsecure>
1065
- <centinel translate="label">
1066
- <label>3D Secure Card Validation</label>
1067
- <config_path>payment/paypaluk_direct/centinel</config_path>
1068
- <frontend_type>select</frontend_type>
1069
- <source_model>adminhtml/system_config_source_yesno</source_model>
1070
- <sort_order>105</sort_order>
1071
- <show_in_default>1</show_in_default>
1072
- <show_in_website>1</show_in_website>
1073
- </centinel>
1074
- <centinel_is_mode_strict translate="label comment">
1075
- <label>Severe 3D Secure Card Validation</label>
1076
- <config_path>payment/paypaluk_direct/centinel_is_mode_strict</config_path>
1077
- <comment>Severe Validation Removes Chargeback Liability on Merchant</comment>
1078
- <frontend_type>select</frontend_type>
1079
- <source_model>adminhtml/system_config_source_yesno</source_model>
1080
- <sort_order>110</sort_order>
1081
- <show_in_default>1</show_in_default>
1082
- <show_in_website>1</show_in_website>
1083
- <depends><centinel>1</centinel></depends>
1084
- </centinel_is_mode_strict>
1085
- <centinel_api_url translate="label comment">
1086
- <label>Centinel API URL</label>
1087
- <config_path>payment/paypaluk_direct/centinel_api_url</config_path>
1088
- <comment>If empty, a default value will be used. Custom URL may be provided by CardinalCommerce agreement.</comment>
1089
- <frontend_type>text</frontend_type>
1090
- <source_model>adminhtml/system_config_source_yesno</source_model>
1091
- <sort_order>115</sort_order>
1092
- <show_in_default>1</show_in_default>
1093
- <show_in_website>1</show_in_website>
1094
- <depends><centinel>1</centinel></depends>
1095
- </centinel_api_url>
1096
- </fields>
1097
- </wpp_pe>
1098
 
1099
- <verisign translate="label">
1100
- <label>Payflow Pro Settings</label>
1101
- <frontend_type>text</frontend_type>
1102
- <sort_order>60</sort_order>
1103
- <show_in_default>1</show_in_default>
1104
- <show_in_website>1</show_in_website>
1105
- <show_in_store>1</show_in_store>
1106
- <fields>
1107
- <title translate="label comment">
1108
- <label>Title</label>
1109
- <comment>It is recommended to set this value to "Debit or Credit Card" per store views.</comment>
1110
- <config_path>payment/verisign/title</config_path>
1111
- <frontend_type>text</frontend_type>
1112
- <sort_order>5</sort_order>
1113
- <show_in_default>1</show_in_default>
1114
- <show_in_website>1</show_in_website>
1115
- <show_in_store>1</show_in_store>
1116
- </title>
1117
- <sort_order translate="label">
1118
- <label>Sort Order</label>
1119
- <config_path>payment/verisign/sort_order</config_path>
1120
- <frontend_type>text</frontend_type>
1121
- <sort_order>10</sort_order>
1122
- <show_in_default>1</show_in_default>
1123
- <show_in_website>1</show_in_website>
1124
- <show_in_store>1</show_in_store>
1125
- <frontend_class>validate-number</frontend_class>
1126
- </sort_order>
1127
- <payment_action translate="label">
1128
- <label>Payment Action</label>
1129
- <config_path>payment/verisign/payment_action</config_path>
1130
- <frontend_type>select</frontend_type>
1131
- <source_model>paypal/system_config_source_paymentActions</source_model>
1132
- <sort_order>15</sort_order>
1133
- <show_in_default>1</show_in_default>
1134
- <show_in_website>1</show_in_website>
1135
- </payment_action>
1136
- <allowspecific translate="label">
1137
- <label>Payment Applicable From</label>
1138
- <config_path>payment/verisign/allowspecific</config_path>
1139
- <frontend_type>select</frontend_type>
1140
- <sort_order>20</sort_order>
1141
- <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
1142
- <show_in_default>1</show_in_default>
1143
- <show_in_website>1</show_in_website>
1144
- </allowspecific>
1145
- <specificcountry translate="label">
1146
- <label>Countries Payment Applicable From</label>
1147
- <config_path>payment/verisign/specificcountry</config_path>
1148
- <frontend_type>multiselect</frontend_type>
1149
- <sort_order>25</sort_order>
1150
- <source_model>paypal/system_config_source_buyerCountry</source_model>
1151
- <show_in_default>1</show_in_default>
1152
- <show_in_website>1</show_in_website>
1153
- <depends><allowspecific>1</allowspecific></depends>
1154
- </specificcountry>
1155
- <debug translate="label">
1156
- <label>Debug Mode</label>
1157
- <config_path>payment/verisign/debug</config_path>
1158
- <frontend_type>select</frontend_type>
1159
- <source_model>adminhtml/system_config_source_yesno</source_model>
1160
- <sort_order>30</sort_order>
1161
- <show_in_default>1</show_in_default>
1162
- <show_in_website>1</show_in_website>
1163
- </debug>
1164
- <heading_payflow translate="label">
1165
- <label>API/Integration</label>
1166
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1167
- <sort_order>35</sort_order>
1168
- <show_in_default>1</show_in_default>
1169
- <show_in_website>1</show_in_website>
1170
- </heading_payflow>
1171
- <partner translate="label">
1172
- <label>Partner</label>
1173
- <config_path>payment/verisign/partner</config_path>
1174
- <frontend_type>text</frontend_type>
1175
- <sort_order>40</sort_order>
1176
- <show_in_default>1</show_in_default>
1177
- <show_in_website>1</show_in_website>
1178
- </partner>
1179
- <user translate="label">
1180
- <label>User</label>
1181
- <config_path>payment/verisign/user</config_path>
1182
- <frontend_type>obscure</frontend_type>
1183
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
1184
- <sort_order>45</sort_order>
1185
- <show_in_default>1</show_in_default>
1186
- <show_in_website>1</show_in_website>
1187
- </user>
1188
- <vendor translate="label">
1189
- <label>Vendor</label>
1190
- <config_path>payment/verisign/vendor</config_path>
1191
- <frontend_type>text</frontend_type>
1192
- <sort_order>50</sort_order>
1193
- <show_in_default>1</show_in_default>
1194
- <show_in_website>1</show_in_website>
1195
- </vendor>
1196
- <pwd translate="label">
1197
- <label>Password</label>
1198
- <config_path>payment/verisign/pwd</config_path>
1199
- <frontend_type>obscure</frontend_type>
1200
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
1201
- <sort_order>55</sort_order>
1202
- <show_in_default>1</show_in_default>
1203
- <show_in_website>1</show_in_website>
1204
- </pwd>
1205
- <sandbox_flag translate="label">
1206
- <label>Test Mode</label>
1207
- <config_path>payment/verisign/sandbox_flag</config_path>
1208
- <frontend_type>select</frontend_type>
1209
- <source_model>adminhtml/system_config_source_yesno</source_model>
1210
- <sort_order>60</sort_order>
1211
- <show_in_default>1</show_in_default>
1212
- <show_in_website>1</show_in_website>
1213
- </sandbox_flag>
1214
- <use_proxy translate="label">
1215
- <label>Use Proxy</label>
1216
- <config_path>payment/verisign/use_proxy</config_path>
1217
- <frontend_type>select</frontend_type>
1218
- <source_model>adminhtml/system_config_source_yesno</source_model>
1219
- <sort_order>65</sort_order>
1220
- <show_in_default>1</show_in_default>
1221
- <show_in_website>1</show_in_website>
1222
- </use_proxy>
1223
- <proxy_host translate="label">
1224
- <label>Proxy Host</label>
1225
- <config_path>payment/verisign/proxy_host</config_path>
1226
- <frontend_type>text</frontend_type>
1227
- <sort_order>70</sort_order>
1228
- <show_in_default>1</show_in_default>
1229
- <show_in_website>1</show_in_website>
1230
- <depends><use_proxy>1</use_proxy></depends>
1231
- </proxy_host>
1232
- <proxy_port translate="label">
1233
- <label>Proxy Port</label>
1234
- <config_path>payment/verisign/proxy_port</config_path>
1235
- <frontend_type>text</frontend_type>
1236
- <sort_order>75</sort_order>
1237
- <show_in_default>1</show_in_default>
1238
- <show_in_website>1</show_in_website>
1239
- <depends><use_proxy>1</use_proxy></depends>
1240
- </proxy_port>
1241
- <heading_cc translate="label">
1242
- <label>Credit Card Settings</label>
1243
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1244
- <sort_order>80</sort_order>
1245
- <show_in_default>1</show_in_default>
1246
- <show_in_website>1</show_in_website>
1247
- </heading_cc>
1248
- <cctypes translate="label comment">
1249
- <label>Allowed Credit Card Types</label>
1250
- <comment><![CDATA[Supporting of American Express cards require additional agreement. Learn more at <a href="http://www.paypal.com/amexupdate">http://www.paypal.com/amexupdate</a>.]]></comment>
1251
- <config_path>payment/verisign/cctypes</config_path>
1252
- <frontend_type>multiselect</frontend_type>
1253
- <source_model>paypal/config::getPayflowproCcTypesAsOptionArray</source_model>
1254
- <sort_order>85</sort_order>
1255
- <show_in_default>1</show_in_default>
1256
- <show_in_website>1</show_in_website>
1257
- </cctypes>
1258
- <useccv translate="label">
1259
- <label>Require CVV Entry</label>
1260
- <config_path>payment/verisign/useccv</config_path>
1261
- <frontend_type>select</frontend_type>
1262
- <source_model>adminhtml/system_config_source_yesno</source_model>
1263
- <sort_order>90</sort_order>
1264
- <show_in_default>1</show_in_default>
1265
- <show_in_website>1</show_in_website>
1266
- </useccv>
1267
- <heading_3dsecure translate="label">
1268
- <label>3D Secure</label>
1269
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1270
- <sort_order>95</sort_order>
1271
- <show_in_default>1</show_in_default>
1272
- <show_in_website>1</show_in_website>
1273
- </heading_3dsecure>
1274
- <centinel translate="label">
1275
- <label>3D Secure Card Validation</label>
1276
- <config_path>payment/verisign/centinel</config_path>
1277
- <frontend_type>select</frontend_type>
1278
- <source_model>adminhtml/system_config_source_yesno</source_model>
1279
- <sort_order>100</sort_order>
1280
- <show_in_default>1</show_in_default>
1281
- <show_in_website>1</show_in_website>
1282
- </centinel>
1283
- <centinel_is_mode_strict translate="label comment">
1284
- <label>Severe 3D Secure Card Validation</label>
1285
- <config_path>payment/verisign/centinel_is_mode_strict</config_path>
1286
- <comment>Severe validation removes chargeback liability on merchant.</comment>
1287
- <frontend_type>select</frontend_type>
1288
- <source_model>adminhtml/system_config_source_yesno</source_model>
1289
- <sort_order>105</sort_order>
1290
- <show_in_default>1</show_in_default>
1291
- <show_in_website>1</show_in_website>
1292
- <depends><centinel>1</centinel></depends>
1293
- </centinel_is_mode_strict>
1294
- <centinel_api_url translate="label comment">
1295
- <label>Centinel API URL</label>
1296
- <config_path>payment/verisign/centinel_api_url</config_path>
1297
- <comment>A value is required for live mode. Refer to your CardinalCommerce agreement.</comment>
1298
- <frontend_type>text</frontend_type>
1299
- <source_model>adminhtml/system_config_source_yesno</source_model>
1300
- <sort_order>110</sort_order>
1301
- <show_in_default>1</show_in_default>
1302
- <show_in_website>1</show_in_website>
1303
- <depends><centinel>1</centinel></depends>
1304
- </centinel_api_url>
1305
- </fields>
1306
- </verisign>
1307
 
1308
- <express_pe translate="label">
1309
- <label>Express Checkout (Payflow Edition) Settings</label>
1310
- <frontend_type>text</frontend_type>
1311
- <sort_order>65</sort_order>
1312
- <show_in_default>1</show_in_default>
1313
- <show_in_website>1</show_in_website>
1314
- <show_in_store>1</show_in_store>
1315
- <fields>
1316
- <title translate="label">
1317
- <label>Title</label>
1318
- <config_path>payment/paypaluk_express/title</config_path>
1319
- <frontend_type>text</frontend_type>
1320
- <sort_order>5</sort_order>
1321
- <show_in_default>1</show_in_default>
1322
- <show_in_website>1</show_in_website>
1323
- <show_in_store>1</show_in_store>
1324
- </title>
1325
- <sort_order translate="label">
1326
- <label>Sort Order</label>
1327
- <config_path>payment/paypaluk_express/sort_order</config_path>
1328
- <frontend_type>text</frontend_type>
1329
- <sort_order>10</sort_order>
1330
- <show_in_default>1</show_in_default>
1331
- <show_in_website>1</show_in_website>
1332
- <frontend_class>validate-number</frontend_class>
1333
- </sort_order>
1334
- <payment_action translate="label">
1335
- <label>Payment Action</label>
1336
- <config_path>payment/paypaluk_express/payment_action</config_path>
1337
- <frontend_type>select</frontend_type>
1338
- <source_model>paypal/system_config_source_paymentActions</source_model>
1339
- <sort_order>15</sort_order>
1340
- <show_in_default>1</show_in_default>
1341
- <show_in_website>1</show_in_website>
1342
- </payment_action>
1343
- <allowspecific translate="label">
1344
- <label>Payment Applicable From</label>
1345
- <config_path>payment/paypaluk_express/allowspecific</config_path>
1346
- <frontend_type>select</frontend_type>
1347
- <sort_order>20</sort_order>
1348
- <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
1349
- <show_in_default>1</show_in_default>
1350
- <show_in_website>1</show_in_website>
1351
- </allowspecific>
1352
- <specificcountry translate="label">
1353
- <label>Countries Payment Applicable From</label>
1354
- <config_path>payment/paypaluk_express/specificcountry</config_path>
1355
- <frontend_type>multiselect</frontend_type>
1356
- <sort_order>25</sort_order>
1357
- <source_model>paypal/system_config_source_buyerCountry</source_model>
1358
- <show_in_default>1</show_in_default>
1359
- <show_in_website>1</show_in_website>
1360
- <depends><allowspecific>1</allowspecific></depends>
1361
- </specificcountry>
1362
- <debug translate="label">
1363
- <label>Debug Mode</label>
1364
- <config_path>payment/paypaluk_express/debug</config_path>
1365
- <frontend_type>select</frontend_type>
1366
- <source_model>adminhtml/system_config_source_yesno</source_model>
1367
- <sort_order>30</sort_order>
1368
- <show_in_default>1</show_in_default>
1369
- <show_in_website>1</show_in_website>
1370
- </debug>
1371
- <line_items_enabled translate="label">
1372
- <label>Transfer Cart Line Items</label>
1373
- <config_path>payment/paypaluk_express/line_items_enabled</config_path>
1374
- <frontend_type>select</frontend_type>
1375
- <source_model>adminhtml/system_config_source_yesno</source_model>
1376
- <sort_order>35</sort_order>
1377
- <show_in_default>1</show_in_default>
1378
- <show_in_website>1</show_in_website>
1379
- </line_items_enabled>
1380
- <visible_on_cart translate="label comment">
1381
- <label>Shortcut on Shopping Cart</label>
1382
- <comment>Also affects mini-shopping cart.</comment>
1383
- <config_path>payment/paypaluk_express/visible_on_cart</config_path>
1384
- <frontend_type>select</frontend_type>
1385
- <source_model>adminhtml/system_config_source_yesno</source_model>
1386
- <sort_order>40</sort_order>
1387
- <show_in_default>1</show_in_default>
1388
- <show_in_website>1</show_in_website>
1389
- </visible_on_cart>
1390
- <visible_on_product translate="label">
1391
- <label>Shortcut on Product View</label>
1392
- <config_path>payment/paypaluk_express/visible_on_product</config_path>
1393
- <frontend_type>select</frontend_type>
1394
- <source_model>adminhtml/system_config_source_yesno</source_model>
1395
- <sort_order>45</sort_order>
1396
- <show_in_default>1</show_in_default>
1397
- <show_in_website>1</show_in_website>
1398
- </visible_on_product>
1399
- </fields>
1400
- </express_pe>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1401
 
1402
- <settlement_reports translate="label">
1403
- <label>Settlement Report Settings</label>
1404
- <frontend_type>text</frontend_type>
1405
- <sort_order>70</sort_order>
1406
- <show_in_default>1</show_in_default>
1407
- <show_in_website>1</show_in_website>
1408
- <fields>
1409
- <heading_sftp translate="label">
1410
- <label>SFTP Credentials</label>
1411
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1412
- <sort_order>5</sort_order>
1413
- <show_in_default>1</show_in_default>
1414
- <show_in_website>1</show_in_website>
1415
- </heading_sftp>
1416
- <settlement_reports_ftp_login translate="label">
1417
- <label>Login</label>
1418
- <config_path>paypal/fetch_reports/ftp_login</config_path>
1419
- <frontend_type>obscure</frontend_type>
1420
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
1421
- <sort_order>10</sort_order>
1422
- <show_in_default>1</show_in_default>
1423
- <show_in_website>1</show_in_website>
1424
- </settlement_reports_ftp_login>
1425
- <settlement_reports_ftp_password translate="label">
1426
- <label>Password</label>
1427
- <config_path>paypal/fetch_reports/ftp_password</config_path>
1428
- <frontend_type>obscure</frontend_type>
1429
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
1430
- <sort_order>15</sort_order>
1431
- <show_in_default>1</show_in_default>
1432
- <show_in_website>1</show_in_website>
1433
- </settlement_reports_ftp_password>
1434
- <settlement_reports_ftp_sandbox translate="label">
1435
- <label>Sandbox Mode</label>
1436
- <config_path>paypal/fetch_reports/ftp_sandbox</config_path>
1437
- <frontend_type>select</frontend_type>
1438
- <source_model>adminhtml/system_config_source_yesno</source_model>
1439
- <sort_order>20</sort_order>
1440
- <show_in_default>1</show_in_default>
1441
- <show_in_website>1</show_in_website>
1442
- </settlement_reports_ftp_sandbox>
1443
- <settlement_reports_ftp_ip translate="label comment tooltip">
1444
- <label>Custom Endpoint Hostname or IP-Address</label>
1445
- <comment>By default it is "reports.paypal.com".</comment>
1446
- <tooltip>Use colon to specify port. For example: "test.example.com:5224".</tooltip>
1447
- <config_path>paypal/fetch_reports/ftp_ip</config_path>
1448
- <frontend_type>text</frontend_type>
1449
- <sort_order>25</sort_order>
1450
- <show_in_default>1</show_in_default>
1451
- <show_in_website>1</show_in_website>
1452
- <depends><settlement_reports_ftp_sandbox>0</settlement_reports_ftp_sandbox></depends>
1453
- </settlement_reports_ftp_ip>
1454
- <settlement_reports_ftp_path translate="label comeent">
1455
- <label>Custom Path</label>
1456
- <comment>By default it is "/ppreports/outgoing".</comment>
1457
- <config_path>paypal/fetch_reports/ftp_path</config_path>
1458
- <frontend_type>text</frontend_type>
1459
- <sort_order>30</sort_order>
1460
- <show_in_default>1</show_in_default>
1461
- <show_in_website>1</show_in_website>
1462
- <depends><settlement_reports_ftp_sandbox>0</settlement_reports_ftp_sandbox></depends>
1463
- </settlement_reports_ftp_path>
1464
- <heading_schedule translate="label">
1465
- <label>Scheduled Fetching</label>
1466
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1467
- <sort_order>35</sort_order>
1468
- <show_in_default>1</show_in_default>
1469
- <show_in_website>1</show_in_website>
1470
- </heading_schedule>
1471
- <settlement_reports_active translate="label">
1472
- <label>Enable Automatic Fetching</label>
1473
- <config_path>paypal/fetch_reports/active</config_path>
1474
- <frontend_type>select</frontend_type>
1475
- <source_model>adminhtml/system_config_source_yesno</source_model>
1476
- <sort_order>40</sort_order>
1477
- <show_in_default>1</show_in_default>
1478
- <show_in_website>1</show_in_website>
1479
- </settlement_reports_active>
1480
- <settlement_reports_schedule translate="label comment">
1481
- <label>Schedule</label>
1482
- <comment>PayPal retains reports for 45 days.</comment>
1483
- <config_path>paypal/fetch_reports/schedule</config_path>
1484
- <frontend_type>select</frontend_type>
1485
- <source_model>paypal/system_config_source_fetchingSchedule</source_model>
1486
- <sort_order>45</sort_order>
1487
- <show_in_default>1</show_in_default>
1488
- </settlement_reports_schedule>
1489
- <settlement_reports_time translate="label">
1490
- <label>Time of Day</label>
1491
- <config_path>paypal/fetch_reports/time</config_path>
1492
- <frontend_type>time</frontend_type>
1493
- <!-- backend_model>paypal/system_config_backend_cron</backend_model -->
1494
- <sort_order>50</sort_order>
1495
- <show_in_default>1</show_in_default>
1496
- </settlement_reports_time>
1497
- </fields>
1498
- </settlement_reports>
1499
 
1500
- <style translate="label">
1501
- <label>Frontend Experience Settings</label>
1502
- <frontend_type>text</frontend_type>
1503
- <sort_order>75</sort_order>
1504
- <show_in_default>1</show_in_default>
1505
- <show_in_website>1</show_in_website>
1506
- <show_in_store>1</show_in_store>
1507
- <fields>
1508
- <logo translate="label comment">
1509
- <label>PayPal Product Logo</label>
1510
- <comment>Displays on catalog pages and homepage.</comment>
1511
- <config_path>paypal/style/logo</config_path>
1512
- <frontend_type>select</frontend_type>
1513
- <source_model>paypal/system_config_source_logo</source_model>
1514
- <sort_order>5</sort_order>
1515
- <show_in_default>1</show_in_default>
1516
- <show_in_website>1</show_in_website>
1517
- <show_in_store>1</show_in_store>
1518
- </logo>
1519
- <paypal_pages translate="label">
1520
- <label>PayPal Merchant Pages Style</label>
1521
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1522
- <sort_order>10</sort_order>
1523
- <show_in_default>1</show_in_default>
1524
- <show_in_website>1</show_in_website>
1525
- <show_in_store>1</show_in_store>
1526
- </paypal_pages>
1527
- <page_style translate="label tooltip">
1528
- <label>Page Style</label>
1529
- <config_path>paypal/style/page_style</config_path>
1530
- <tooltip><![CDATA[Allowable values: "paypal", "primary" (default), your_custom_value (a custom payment page style from your merchant account profile).]]></tooltip>
1531
- <frontend_type>text</frontend_type>
1532
- <sort_order>15</sort_order>
1533
- <show_in_default>1</show_in_default>
1534
- <show_in_website>1</show_in_website>
1535
- <show_in_store>1</show_in_store>
1536
- </page_style>
1537
- <paypal_hdrimg translate='label tooltip'>
1538
- <label>Header Image URL</label>
1539
- <config_path>paypal/style/paypal_hdrimg</config_path>
1540
- <tooltip><![CDATA[The image at the top left of the checkout page. Max size is 750x90-pixel. <strong style="color:red">https</strong> is highly encouraged.]]></tooltip>
1541
- <sort_order>20</sort_order>
1542
- <show_in_default>1</show_in_default>
1543
- <show_in_website>1</show_in_website>
1544
- <show_in_store>1</show_in_store>
1545
- </paypal_hdrimg>
1546
- <paypal_hdrbackcolor translate="label tooltip">
1547
- <label>Header Background Color</label>
1548
- <config_path>paypal/style/paypal_hdrbackcolor</config_path>
1549
- <tooltip><![CDATA[The background color for the header of the checkout page. Case-insensitive six-character HTML hexadecimal color code in ASCII.]]></tooltip>
1550
- <sort_order>25</sort_order>
1551
- <show_in_default>1</show_in_default>
1552
- <show_in_website>1</show_in_website>
1553
- <show_in_store>1</show_in_store>
1554
- </paypal_hdrbackcolor>
1555
- <paypal_hdrbordercolor translate="label tooltip">
1556
- <label>Header Border Color</label>
1557
- <config_path>paypal/style/paypal_hdrbordercolor</config_path>
1558
- <tooltip>2-pixel perimeter around the header space.</tooltip>
1559
- <sort_order>30</sort_order>
1560
- <show_in_default>1</show_in_default>
1561
- <show_in_website>1</show_in_website>
1562
- <show_in_store>1</show_in_store>
1563
- </paypal_hdrbordercolor>
1564
- <paypal_payflowcolor translate="label tooltip">
1565
- <label>Page Background Color</label>
1566
- <config_path>paypal/style/paypal_payflowcolor</config_path>
1567
- <tooltip><![CDATA[The background color for the checkout page around the header and payment form.]]></tooltip>
1568
- <sort_order>35</sort_order>
1569
- <show_in_default>1</show_in_default>
1570
- <show_in_website>1</show_in_website>
1571
- <show_in_store>1</show_in_store>
1572
- </paypal_payflowcolor>
1573
- </fields>
1574
- </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1575
 
1576
- <payflow_link translate="label">
1577
- <label>Payflow Link Settings</label>
1578
- <frontend_type>text</frontend_type>
1579
- <sort_order>80</sort_order>
1580
- <show_in_default>1</show_in_default>
1581
- <show_in_website>1</show_in_website>
1582
- <show_in_store>1</show_in_store>
1583
- <fields>
1584
- <payflowlink_info>
1585
- <frontend_model>paypal/adminhtml_system_config_payflowlink_info</frontend_model>
1586
- <show_in_default>1</show_in_default>
1587
- <show_in_website>1</show_in_website>
1588
- <show_in_store>1</show_in_store>
1589
- <sort_order>22</sort_order>
1590
- </payflowlink_info>
1591
- <title translate="label comment">
1592
- <label>Title</label>
1593
- <comment>It is recommended to set this value to "Debit or Credit Card" per store views.</comment>
1594
- <config_path>payment/payflow_link/title</config_path>
1595
- <frontend_type>text</frontend_type>
1596
- <sort_order>5</sort_order>
1597
- <show_in_default>1</show_in_default>
1598
- <show_in_website>1</show_in_website>
1599
- <show_in_store>1</show_in_store>
1600
- </title>
1601
- <sort_order translate="label">
1602
- <label>Sort Order</label>
1603
- <config_path>payment/payflow_link/sort_order</config_path>
1604
- <frontend_type>text</frontend_type>
1605
- <sort_order>10</sort_order>
1606
- <show_in_default>1</show_in_default>
1607
- <show_in_website>1</show_in_website>
1608
- <show_in_store>1</show_in_store>
1609
- <frontend_class>validate-number</frontend_class>
1610
- </sort_order>
1611
- <payment_action translate="label">
1612
- <label>Payment Action</label>
1613
- <config_path>payment/payflow_link/payment_action</config_path>
1614
- <frontend_type>select</frontend_type>
1615
- <source_model>paypal/system_config_source_paymentActions</source_model>
1616
- <sort_order>15</sort_order>
1617
- <show_in_default>1</show_in_default>
1618
- <show_in_website>1</show_in_website>
1619
- </payment_action>
1620
- <allowspecific translate="label">
1621
- <label>Payment Applicable From</label>
1622
- <config_path>payment/payflow_link/allowspecific</config_path>
1623
- <frontend_type>select</frontend_type>
1624
- <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
1625
- <sort_order>20</sort_order>
1626
- <show_in_default>1</show_in_default>
1627
- <show_in_website>1</show_in_website>
1628
- </allowspecific>
1629
- <specificcountry translate="label">
1630
- <label>Countries Payment Applicable From</label>
1631
- <config_path>payment/payflow_link/specificcountry</config_path>
1632
- <frontend_type>multiselect</frontend_type>
1633
- <source_model>paypal/system_config_source_buyerCountry</source_model>
1634
- <sort_order>25</sort_order>
1635
- <show_in_default>1</show_in_default>
1636
- <show_in_website>1</show_in_website>
1637
- <depends><allowspecific>1</allowspecific></depends>
1638
- </specificcountry>
1639
- <debug translate="label">
1640
- <label>Debug Mode</label>
1641
- <config_path>payment/payflow_link/debug</config_path>
1642
- <frontend_type>select</frontend_type>
1643
- <source_model>adminhtml/system_config_source_yesno</source_model>
1644
- <sort_order>30</sort_order>
1645
- <show_in_default>1</show_in_default>
1646
- <show_in_website>1</show_in_website>
1647
- </debug>
1648
- <heading_payflowlink translate="label">
1649
- <label>API/Integration</label>
1650
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1651
- <sort_order>35</sort_order>
1652
- <show_in_default>1</show_in_default>
1653
- <show_in_website>1</show_in_website>
1654
- </heading_payflowlink>
1655
- <partner translate="label">
1656
- <label>Partner</label>
1657
- <config_path>payment/payflow_link/partner</config_path>
1658
- <frontend_type>text</frontend_type>
1659
- <sort_order>40</sort_order>
1660
- <show_in_default>1</show_in_default>
1661
- <show_in_website>1</show_in_website>
1662
- </partner>
1663
- <vendor translate="label">
1664
- <label>Vendor / Merchant Login</label>
1665
- <config_path>payment/payflow_link/vendor</config_path>
1666
- <frontend_type>text</frontend_type>
1667
- <sort_order>45</sort_order>
1668
- <show_in_default>1</show_in_default>
1669
- <show_in_website>1</show_in_website>
1670
- </vendor>
1671
- <user translate="label">
1672
- <label>User</label>
1673
- <comment>If you do not have multiple users set up on your account, please re-enter your Vendor/Merchant Login here.</comment>
1674
- <frontend_type>text</frontend_type>
1675
- <config_path>payment/payflow_link/user</config_path>
1676
- <sort_order>50</sort_order>
1677
- <show_in_default>1</show_in_default>
1678
- <show_in_website>1</show_in_website>
1679
- </user>
1680
- <pwd translate="label">
1681
- <label>Password</label>
1682
- <config_path>payment/payflow_link/pwd</config_path>
1683
- <frontend_type>obscure</frontend_type>
1684
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
1685
- <sort_order>55</sort_order>
1686
- <show_in_default>1</show_in_default>
1687
- <show_in_website>1</show_in_website>
1688
- </pwd>
1689
- <sandbox_flag translate="label">
1690
- <label>Test Mode</label>
1691
- <config_path>payment/payflow_link/sandbox_flag</config_path>
1692
- <frontend_type>select</frontend_type>
1693
- <source_model>adminhtml/system_config_source_yesno</source_model>
1694
- <sort_order>60</sort_order>
1695
- <show_in_default>1</show_in_default>
1696
- <show_in_website>1</show_in_website>
1697
- </sandbox_flag>
1698
- <use_proxy translate="label">
1699
- <label>Use Proxy</label>
1700
- <config_path>payment/payflow_link/use_proxy</config_path>
1701
- <frontend_type>select</frontend_type>
1702
- <source_model>adminhtml/system_config_source_yesno</source_model>
1703
- <sort_order>65</sort_order>
1704
- <show_in_default>1</show_in_default>
1705
- <show_in_website>1</show_in_website>
1706
- </use_proxy>
1707
- <proxy_host translate="label">
1708
- <label>Proxy Host</label>
1709
- <config_path>payment/payflow_link/proxy_host</config_path>
1710
- <frontend_type>text</frontend_type>
1711
- <sort_order>70</sort_order>
1712
- <show_in_default>1</show_in_default>
1713
- <show_in_website>1</show_in_website>
1714
- <depends><use_proxy>1</use_proxy></depends>
1715
- </proxy_host>
1716
- <proxy_port translate="label">
1717
- <label>Proxy Port</label>
1718
- <config_path>payment/payflow_link/proxy_port</config_path>
1719
- <frontend_type>text</frontend_type>
1720
- <sort_order>75</sort_order>
1721
- <show_in_default>1</show_in_default>
1722
- <show_in_website>1</show_in_website>
1723
- <depends><use_proxy>1</use_proxy></depends>
1724
- </proxy_port>
1725
- </fields>
1726
- </payflow_link>
1727
 
1728
- <payflow_advanced translate="label">
1729
- <label>PayPal Payments Advanced</label>
1730
- <frontend_type>text</frontend_type>
1731
- <sort_order>90</sort_order>
1732
- <show_in_default>1</show_in_default>
1733
- <show_in_website>1</show_in_website>
1734
- <show_in_store>1</show_in_store>
1735
- <fields>
1736
- <payflowlink_info>
1737
- <frontend_model>paypal/adminhtml_system_config_payflowlink_advanced</frontend_model>
1738
- <show_in_default>1</show_in_default>
1739
- <show_in_website>1</show_in_website>
1740
- <show_in_store>1</show_in_store>
1741
- <sort_order>22</sort_order>
1742
- </payflowlink_info>
1743
- <title translate="label comment">
1744
- <label>Title</label>
1745
- <comment>It is recommended to set this value to "Debit or Credit Card" per store views.</comment>
1746
- <config_path>payment/payflow_advanced/title</config_path>
1747
- <frontend_type>text</frontend_type>
1748
- <sort_order>5</sort_order>
1749
- <show_in_default>1</show_in_default>
1750
- <show_in_website>1</show_in_website>
1751
- <show_in_store>1</show_in_store>
1752
- </title>
1753
- <sort_order translate="label">
1754
- <label>Sort Order</label>
1755
- <config_path>payment/payflow_advanced/sort_order</config_path>
1756
- <frontend_type>text</frontend_type>
1757
- <sort_order>10</sort_order>
1758
- <show_in_default>1</show_in_default>
1759
- <show_in_website>1</show_in_website>
1760
- <show_in_store>1</show_in_store>
1761
- <frontend_class>validate-number</frontend_class>
1762
- </sort_order>
1763
- <payment_action translate="label">
1764
- <label>Payment Action</label>
1765
- <config_path>payment/payflow_advanced/payment_action</config_path>
1766
- <frontend_type>select</frontend_type>
1767
- <source_model>paypal/system_config_source_paymentActions</source_model>
1768
- <sort_order>15</sort_order>
1769
- <show_in_default>1</show_in_default>
1770
- <show_in_website>1</show_in_website>
1771
- </payment_action>
1772
- <allowspecific translate="label">
1773
- <label>Payment Applicable From</label>
1774
- <config_path>payment/payflow_advanced/allowspecific</config_path>
1775
- <frontend_type>select</frontend_type>
1776
- <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
1777
- <sort_order>20</sort_order>
1778
- <show_in_default>1</show_in_default>
1779
- <show_in_website>1</show_in_website>
1780
- </allowspecific>
1781
- <specificcountry translate="label">
1782
- <label>Countries Payment Applicable From</label>
1783
- <config_path>payment/payflow_advanced/specificcountry</config_path>
1784
- <frontend_type>multiselect</frontend_type>
1785
- <source_model>paypal/system_config_source_buyerCountry</source_model>
1786
- <sort_order>25</sort_order>
1787
- <show_in_default>1</show_in_default>
1788
- <show_in_website>1</show_in_website>
1789
- <depends><allowspecific>1</allowspecific></depends>
1790
- </specificcountry>
1791
- <debug translate="label">
1792
- <label>Debug Mode</label>
1793
- <config_path>payment/payflow_advanced/debug</config_path>
1794
- <frontend_type>select</frontend_type>
1795
- <source_model>adminhtml/system_config_source_yesno</source_model>
1796
- <sort_order>30</sort_order>
1797
- <show_in_default>1</show_in_default>
1798
- <show_in_website>1</show_in_website>
1799
- </debug>
1800
- <heading_payflowlink translate="label">
1801
- <label>API/Integration</label>
1802
- <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1803
- <sort_order>35</sort_order>
1804
- <show_in_default>1</show_in_default>
1805
- <show_in_website>1</show_in_website>
1806
- </heading_payflowlink>
1807
- <partner translate="label">
1808
- <label>Partner</label>
1809
- <config_path>payment/payflow_advanced/partner</config_path>
1810
- <frontend_type>text</frontend_type>
1811
- <sort_order>40</sort_order>
1812
- <show_in_default>1</show_in_default>
1813
- <show_in_website>1</show_in_website>
1814
- </partner>
1815
- <vendor translate="label">
1816
- <label>Vendor / Merchant Login</label>
1817
- <config_path>payment/payflow_advanced/vendor</config_path>
1818
- <frontend_type>text</frontend_type>
1819
- <sort_order>45</sort_order>
1820
- <show_in_default>1</show_in_default>
1821
- <show_in_website>1</show_in_website>
1822
- </vendor>
1823
- <user translate="label">
1824
- <label>User</label>
1825
- <comment>If you do not have multiple users set up on your account, please re-enter your Vendor/Merchant Login here.</comment>
1826
- <frontend_type>text</frontend_type>
1827
- <config_path>payment/payflow_advanced/user</config_path>
1828
- <sort_order>50</sort_order>
1829
- <show_in_default>1</show_in_default>
1830
- <show_in_website>1</show_in_website>
1831
- </user>
1832
- <pwd translate="label">
1833
- <label>Password</label>
1834
- <config_path>payment/payflow_advanced/pwd</config_path>
1835
- <frontend_type>obscure</frontend_type>
1836
- <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
1837
- <sort_order>55</sort_order>
1838
- <show_in_default>1</show_in_default>
1839
- <show_in_website>1</show_in_website>
1840
- </pwd>
1841
- <sandbox_flag translate="label">
1842
- <label>Test Mode</label>
1843
- <config_path>payment/payflow_advanced/sandbox_flag</config_path>
1844
- <frontend_type>select</frontend_type>
1845
- <source_model>adminhtml/system_config_source_yesno</source_model>
1846
- <sort_order>60</sort_order>
1847
- <show_in_default>1</show_in_default>
1848
- <show_in_website>1</show_in_website>
1849
- </sandbox_flag>
1850
- <use_proxy translate="label">
1851
- <label>Use Proxy</label>
1852
- <config_path>payment/payflow_advanced/use_proxy</config_path>
1853
- <frontend_type>select</frontend_type>
1854
- <source_model>adminhtml/system_config_source_yesno</source_model>
1855
- <sort_order>65</sort_order>
1856
- <show_in_default>1</show_in_default>
1857
- <show_in_website>1</show_in_website>
1858
- </use_proxy>
1859
- <proxy_host translate="label">
1860
- <label>Proxy Host</label>
1861
- <config_path>payment/payflow_advanced/proxy_host</config_path>
1862
- <frontend_type>text</frontend_type>
1863
- <sort_order>70</sort_order>
1864
- <show_in_default>1</show_in_default>
1865
- <show_in_website>1</show_in_website>
1866
- <depends><use_proxy>1</use_proxy></depends>
1867
- </proxy_host>
1868
- <proxy_port translate="label">
1869
- <label>Proxy Port</label>
1870
- <config_path>payment/payflow_advanced/proxy_port</config_path>
1871
- <frontend_type>text</frontend_type>
1872
- <sort_order>75</sort_order>
1873
- <show_in_default>1</show_in_default>
1874
- <show_in_website>1</show_in_website>
1875
- <depends><use_proxy>1</use_proxy></depends>
1876
- </proxy_port>
1877
- </fields>
1878
- </payflow_advanced>
1879
 
1880
- <hosted_pro translate="label">
1881
- <label>Website Payments Pro Hosted Solution Settings</label>
1882
- <frontend_type>text</frontend_type>
1883
- <sort_order>90</sort_order>
1884
- <show_in_default>1</show_in_default>
1885
- <show_in_website>1</show_in_website>
1886
- <show_in_store>1</show_in_store>
1887
- <fields>
1888
- <title translate="label comment">
1889
- <label>Title</label>
1890
- <comment>It is recommended to set this value to "PayPal" per store views.</comment>
1891
- <config_path>payment/hosted_pro/title</config_path>
1892
- <frontend_type>text</frontend_type>
1893
- <sort_order>5</sort_order>
1894
- <show_in_default>1</show_in_default>
1895
- <show_in_website>1</show_in_website>
1896
- <show_in_store>1</show_in_store>
1897
- </title>
1898
- <sort_order translate="label">
1899
- <label>Sort Order</label>
1900
- <config_path>payment/hosted_pro/sort_order</config_path>
1901
- <frontend_type>text</frontend_type>
1902
- <sort_order>10</sort_order>
1903
- <show_in_default>1</show_in_default>
1904
- <show_in_website>1</show_in_website>
1905
- <show_in_store>1</show_in_store>
1906
- <frontend_class>validate-number</frontend_class>
1907
- </sort_order>
1908
- <payment_action translate="label">
1909
- <label>Payment Action</label>
1910
- <config_path>payment/hosted_pro/payment_action</config_path>
1911
- <frontend_type>select</frontend_type>
1912
- <source_model>paypal/system_config_source_paymentActions</source_model>
1913
- <sort_order>15</sort_order>
1914
- <show_in_default>1</show_in_default>
1915
- <show_in_website>1</show_in_website>
1916
- </payment_action>
1917
- <allowspecific translate="label">
1918
- <label>Payment Applicable From</label>
1919
- <config_path>payment/hosted_pro/allowspecific</config_path>
1920
- <frontend_type>select</frontend_type>
1921
- <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
1922
- <sort_order>20</sort_order>
1923
- <show_in_default>1</show_in_default>
1924
- <show_in_website>1</show_in_website>
1925
- </allowspecific>
1926
- <specificcountry translate="label">
1927
- <label>Countries Payment Applicable From</label>
1928
- <config_path>payment/hosted_pro/specificcountry</config_path>
1929
- <frontend_type>multiselect</frontend_type>
1930
- <source_model>paypal/system_config_source_buyerCountry</source_model>
1931
- <sort_order>25</sort_order>
1932
- <show_in_default>1</show_in_default>
1933
- <show_in_website>1</show_in_website>
1934
- <depends><allowspecific>1</allowspecific></depends>
1935
- </specificcountry>
1936
- <debug translate="label">
1937
- <label>Debug Mode</label>
1938
- <config_path>payment/hosted_pro/debug</config_path>
1939
- <frontend_type>select</frontend_type>
1940
- <source_model>adminhtml/system_config_source_yesno</source_model>
1941
- <sort_order>35</sort_order>
1942
- <show_in_default>1</show_in_default>
1943
- <show_in_website>1</show_in_website>
1944
- </debug>
1945
- <display_ec translate="label">
1946
- <label>Display Express Checkout in the Payment Information step</label>
1947
- <config_path>payment/hosted_pro/display_ec</config_path>
1948
- <frontend_type>select</frontend_type>
1949
- <source_model>adminhtml/system_config_source_yesno</source_model>
1950
- <sort_order>45</sort_order>
1951
- <show_in_default>1</show_in_default>
1952
- <show_in_website>1</show_in_website>
1953
- </display_ec>
1954
- </fields>
1955
- </hosted_pro>
1956
  </groups>
1957
- </paypal>
1958
  </sections>
1959
  </config>
29
  <sections>
30
  <payment>
31
  <groups>
32
+ <paypal_notice translate="label" module="paypal">
33
  <frontend_model>paypal/adminhtml_system_config_fieldset_hint</frontend_model>
34
+ <help_link>https://www.paypal-marketing.com/emarketing/partner/na/merchantlineup/home.page#mainTab=checkoutlineup&amp;subTab=newlineup</help_link>
35
  <sort_order>0</sort_order>
36
  <show_in_default>1</show_in_default>
37
  <show_in_website>1</show_in_website>
38
  <show_in_store>1</show_in_store>
39
+ </paypal_notice>
40
+ <account translate="label" module="paypal">
41
+ <label>Merchant Location</label>
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  <fieldset_css>paypal-config</fieldset_css>
43
  <expanded>1</expanded>
44
  <frontend_type>text</frontend_type>
45
+ <sort_order>5</sort_order>
46
  <show_in_default>1</show_in_default>
47
  <show_in_website>1</show_in_website>
48
+ <frontend_model>paypal/adminhtml_system_config_fieldset_location</frontend_model>
49
  <fields>
50
  <merchant_country translate="label comment">
51
  <label>Merchant Country</label>
52
  <config_path>paypal/general/merchant_country</config_path>
53
  <comment>If not specified, Default Country from General Config will be used</comment>
54
  <frontend_type>select</frontend_type>
55
+ <frontend_model>paypal/adminhtml_system_config_field_country</frontend_model>
56
  <source_model>paypal/system_config_source_merchantCountry</source_model>
57
  <backend_model>paypal/system_config_backend_merchantCountry</backend_model>
58
  <show_in_default>1</show_in_default>
59
  <show_in_website>1</show_in_website>
60
  <sort_order>5</sort_order>
61
  </merchant_country>
 
 
 
 
 
 
 
 
 
 
62
  </fields>
63
  </account>
64
 
65
+ <paypal_group_all_in_one translate="label comment paypal_title" module="paypal">
66
+ <label><![CDATA[PayPal All-in-One Payment Solutions&nbsp;&nbsp;<i>Accept and process credit cards and PayPal payments.</i>]]></label>
67
+ <expanded>1</expanded>
68
+ <sort_order>10</sort_order>
 
 
69
  <show_in_default>1</show_in_default>
70
  <show_in_website>1</show_in_website>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  <show_in_store>1</show_in_store>
72
+ <frontend_class>complex</frontend_class>
73
+ <frontend_model>paypal/adminhtml_system_config_fieldset_group</frontend_model>
74
+ <comment>Choose a secure bundled payment solution for your business.</comment>
75
+ <help_url>https://www.paypal-marketing.com/emarketing/partner/na/merchantlineup/home.page#mainTab=checkoutlineup&amp;subTab=newlineup</help_url>
76
+ <fields/>
77
+ </paypal_group_all_in_one>
78
+ <paypal_payment_gateways translate="label comment paypal_title" module="paypal">
79
+ <label>PayPal Payment Gateways</label>
80
+ <sort_order>15</sort_order>
81
  <show_in_default>1</show_in_default>
82
  <show_in_website>1</show_in_website>
83
+ <show_in_store>1</show_in_store>
84
+ <frontend_class>complex</frontend_class>
85
+ <frontend_model>paypal/adminhtml_system_config_fieldset_group</frontend_model>
86
+ <comment>Process payments using your own internet merchant account.</comment>
87
+ <help_url>https://merchant.paypal.com/cgi-bin/marketingweb?cmd=_render-content&amp;content_ID=merchant/payment_gateway</help_url>
88
+ <fields/>
89
+ </paypal_payment_gateways>
90
+ <paypal_alternative_payment_methods translate="label comment paypal_title" module="paypal">
91
+ <label>PayPal Express Checkout</label>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  <sort_order>20</sort_order>
93
  <show_in_default>1</show_in_default>
94
  <show_in_website>1</show_in_website>
95
  <show_in_store>1</show_in_store>
96
+ <expanded>1</expanded>
97
+ <frontend_class>complex</frontend_class>
98
+ <frontend_model>paypal/adminhtml_system_config_fieldset_group</frontend_model>
99
+ <comment>Add another payment method to your existing solution or as a stand-alone option.</comment>
100
+ <paypal_title>Select a Payment Solution</paypal_title>
101
+ <help_url>https://merchant.paypal.com/cgi-bin/marketingweb?cmd=_render-content&amp;content_ID=merchant/express_checkout</help_url>
102
+ <fields/>
103
+ </paypal_alternative_payment_methods>
104
+ <paypal_payment_solutions translate="label comment paypal_title" module="paypal">
105
+ <label>PayPal Payment Solutions</label>
106
+ <sort_order>10</sort_order>
107
+ <expanded>1</expanded>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  <show_in_default>1</show_in_default>
109
  <show_in_website>1</show_in_website>
110
  <show_in_store>1</show_in_store>
111
+ <frontend_class>complex</frontend_class>
112
+ <frontend_model>paypal/adminhtml_system_config_fieldset_group</frontend_model>
113
+ <comment>Add another payment method to your existing solution or as a stand-alone option.</comment>
114
+ <paypal_title>Select a Payment Solution</paypal_title>
115
+ <help_url>https://www.paypal-marketing.com/emarketing/partner/na/merchantlineup/home.page#mainTab=checkoutlineup&amp;subTab=newlineup</help_url>
116
+ <fields/>
117
+ </paypal_payment_solutions>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
 
119
+ <paypal_payments>
120
+ <payflow_advanced type="group" translate="label comment">
121
+ <label>Payments Advanced (Includes Express Checkout)</label>
122
+ <frontend_type>text</frontend_type>
123
+ <show_in_default>1</show_in_default>
124
+ <show_in_website>1</show_in_website>
125
+ <show_in_store>1</show_in_store>
126
+ <sort_order>30</sort_order>
127
+ <frontend_class>pp-method-general</frontend_class>
128
+ <frontend_model>paypal/adminhtml_system_config_fieldset_payment</frontend_model>
129
+ <learn_more_link>https://www.paypal.com/webapps/mpp/referral/paypal-payments-advanced?partner_id=NB9WWHYEMVUMS</learn_more_link>
130
+ <comment>Accept payments with a PCI-compliant checkout that keeps customers on your site.</comment>
131
+ <group>paypal_group_all_in_one</group>
132
+ <activity_path>payment/payflow_advanced/active</activity_path>
133
+ <backend_config>
134
+ <US>
135
+ <include>1</include>
136
+ </US>
137
+ </backend_config>
138
+ <fields>
139
+ <required_settings type="group" translate="label">
140
+ <label>Required PayPal Settings</label>
141
+ <frontend_type>text</frontend_type>
142
+ <show_in_default>1</show_in_default>
143
+ <show_in_website>1</show_in_website>
144
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
145
+ <sort_order>10</sort_order>
146
+ <fields>
147
+ <payments_advanced type="group" translate="label">
148
+ <label>Payments Advanced</label>
149
+ <frontend_type>text</frontend_type>
150
+ <show_in_default>1</show_in_default>
151
+ <show_in_website>1</show_in_website>
152
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
153
+ <sort_order>10</sort_order>
154
+ <fields>
155
+ <partner translate="label">
156
+ <label>Partner</label>
157
+ <config_path>payment/payflow_advanced/partner</config_path>
158
+ <frontend_type>text</frontend_type>
159
+ <sort_order>10</sort_order>
160
+ <show_in_default>1</show_in_default>
161
+ <show_in_website>1</show_in_website>
162
+ </partner>
163
+ <vendor translate="label">
164
+ <label>Vendor</label>
165
+ <config_path>payment/payflow_advanced/vendor</config_path>
166
+ <frontend_type>text</frontend_type>
167
+ <sort_order>20</sort_order>
168
+ <show_in_default>1</show_in_default>
169
+ <show_in_website>1</show_in_website>
170
+ </vendor>
171
+ <user translate="label comment tooltip">
172
+ <label>User</label>
173
+ <comment>PayPal recommends that you set up an additional User on your account at manager.paypal.com</comment>
174
+ <tooltip>PayPal recommends you set up an additional User on your account at manager.paypal.com, instead of entering your admin username and password here. This will enhance your security and prevent service interruptions if you later change your password. If you do not want to set up an additional User, you can re-enter your Merchant Login here.</tooltip>
175
+ <frontend_type>text</frontend_type>
176
+ <config_path>payment/payflow_advanced/user</config_path>
177
+ <sort_order>30</sort_order>
178
+ <show_in_default>1</show_in_default>
179
+ <show_in_website>1</show_in_website>
180
+ </user>
181
+ <pwd translate="label">
182
+ <label>Password</label>
183
+ <config_path>payment/payflow_advanced/pwd</config_path>
184
+ <frontend_type>obscure</frontend_type>
185
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
186
+ <sort_order>40</sort_order>
187
+ <show_in_default>1</show_in_default>
188
+ <show_in_website>1</show_in_website>
189
+ </pwd>
190
+ <sandbox_flag translate="label">
191
+ <label>Test Mode</label>
192
+ <config_path>payment/payflow_advanced/sandbox_flag</config_path>
193
+ <frontend_type>select</frontend_type>
194
+ <source_model>adminhtml/system_config_source_yesno</source_model>
195
+ <sort_order>50</sort_order>
196
+ <show_in_default>1</show_in_default>
197
+ <show_in_website>1</show_in_website>
198
+ <shared>1</shared>
199
+ </sandbox_flag>
200
+ <use_proxy translate="label">
201
+ <label>Use Proxy</label>
202
+ <config_path>payment/payflow_advanced/use_proxy</config_path>
203
+ <frontend_type>select</frontend_type>
204
+ <source_model>adminhtml/system_config_source_yesno</source_model>
205
+ <sort_order>60</sort_order>
206
+ <show_in_default>1</show_in_default>
207
+ <show_in_website>1</show_in_website>
208
+ </use_proxy>
209
+ <proxy_host translate="label">
210
+ <label>Proxy Host</label>
211
+ <config_path>payment/payflow_advanced/proxy_host</config_path>
212
+ <frontend_type>text</frontend_type>
213
+ <sort_order>70</sort_order>
214
+ <show_in_default>1</show_in_default>
215
+ <show_in_website>1</show_in_website>
216
+ <depends><use_proxy>1</use_proxy></depends>
217
+ </proxy_host>
218
+ <proxy_port translate="label">
219
+ <label>Proxy Port</label>
220
+ <config_path>payment/payflow_advanced/proxy_port</config_path>
221
+ <frontend_type>text</frontend_type>
222
+ <sort_order>80</sort_order>
223
+ <show_in_default>1</show_in_default>
224
+ <show_in_website>1</show_in_website>
225
+ <depends><use_proxy>1</use_proxy></depends>
226
+ </proxy_port>
227
+ <payflow_advanced_info>
228
+ <frontend_model>paypal/adminhtml_system_config_payflowlink_advanced</frontend_model>
229
+ <show_in_default>1</show_in_default>
230
+ <show_in_website>1</show_in_website>
231
+ <show_in_store>1</show_in_store>
232
+ <sort_order>90</sort_order>
233
+ </payflow_advanced_info>
234
+ </fields>
235
+ </payments_advanced>
236
+ <express type="group" translate="label">
237
+ <label>Express Checkout</label>
238
+ <frontend_type>text</frontend_type>
239
+ <show_in_default>1</show_in_default>
240
+ <show_in_website>1</show_in_website>
241
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
242
+ <sort_order>20</sort_order>
243
+ <fields>
244
+ <business_account translate="label comment tooltip">
245
+ <label>Email Associated with PayPal Merchant Account</label>
246
+ <comment><![CDATA[<a href="http://www.magentocommerce.com/paypal">Start accepting payments via PayPal!</a>]]></comment>
247
+ <tooltip>Don't have a PayPal account? Simply enter your email address.</tooltip>
248
+ <config_path>paypal/general/business_account</config_path>
249
+ <show_in_default>1</show_in_default>
250
+ <show_in_website>1</show_in_website>
251
+ <sort_order>10</sort_order>
252
+ <validate>validate-email</validate>
253
+ <shared>1</shared>
254
+ </business_account>
255
+ <api_authentication translate="label">
256
+ <label>API Authentication Methods</label>
257
+ <config_path>paypal/wpp/api_authentication</config_path>
258
+ <frontend_type>select</frontend_type>
259
+ <source_model>paypal/config::getApiAuthenticationMethods</source_model>
260
+ <sort_order>20</sort_order>
261
+ <show_in_default>1</show_in_default>
262
+ <show_in_website>1</show_in_website>
263
+ <shared>1</shared>
264
+ </api_authentication>
265
+ <api_username translate="label">
266
+ <label>API Username</label>
267
+ <config_path>paypal/wpp/api_username</config_path>
268
+ <frontend_type>obscure</frontend_type>
269
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
270
+ <sort_order>30</sort_order>
271
+ <show_in_default>1</show_in_default>
272
+ <show_in_website>1</show_in_website>
273
+ <shared>1</shared>
274
+ </api_username>
275
+ <api_password translate="label">
276
+ <label>API Password</label>
277
+ <config_path>paypal/wpp/api_password</config_path>
278
+ <frontend_type>obscure</frontend_type>
279
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
280
+ <sort_order>40</sort_order>
281
+ <show_in_default>1</show_in_default>
282
+ <show_in_website>1</show_in_website>
283
+ <shared>1</shared>
284
+ </api_password>
285
+ <api_signature translate="label">
286
+ <label>API Signature</label>
287
+ <config_path>paypal/wpp/api_signature</config_path>
288
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
289
+ <frontend_type>obscure</frontend_type>
290
+ <sort_order>50</sort_order>
291
+ <show_in_default>1</show_in_default>
292
+ <show_in_website>1</show_in_website>
293
+ <depends><api_authentication>0</api_authentication></depends>
294
+ <shared>1</shared>
295
+ </api_signature>
296
+ <api_cert translate="label">
297
+ <label>API Certificate</label>
298
+ <config_path>paypal/wpp/api_cert</config_path>
299
+ <frontend_type>file</frontend_type>
300
+ <backend_model>paypal/system_config_backend_cert</backend_model>
301
+ <sort_order>60</sort_order>
302
+ <show_in_default>1</show_in_default>
303
+ <show_in_website>1</show_in_website>
304
+ <depends><api_authentication>1</api_authentication></depends>
305
+ <shared>1</shared>
306
+ </api_cert>
307
+ <api_wizard translate="button_label sandbox_button_label">
308
+ <label></label>
309
+ <button_label>Get Credentials from PayPal</button_label>
310
+ <button_url><![CDATA[https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-api-run]]></button_url>
311
+ <sandbox_button_label>Sandbox Credentials</sandbox_button_label>
312
+ <sandbox_button_url><![CDATA[https://www.sandbox.paypal.com/us/cgi-bin/webscr?cmd=_login-api-run]]></sandbox_button_url>
313
+ <frontend_model>paypal/adminhtml_system_config_apiWizard</frontend_model>
314
+ <sort_order>70</sort_order>
315
+ <show_in_default>1</show_in_default>
316
+ <show_in_website>1</show_in_website>
317
+ </api_wizard>
318
+ <sandbox_flag translate="label">
319
+ <label>Sandbox Mode</label>
320
+ <config_path>paypal/wpp/sandbox_flag</config_path>
321
+ <frontend_type>select</frontend_type>
322
+ <source_model>adminhtml/system_config_source_yesno</source_model>
323
+ <sort_order>80</sort_order>
324
+ <show_in_default>1</show_in_default>
325
+ <show_in_website>1</show_in_website>
326
+ <shared>1</shared>
327
+ </sandbox_flag>
328
+ <use_proxy translate="label">
329
+ <label>API Uses Proxy</label>
330
+ <config_path>paypal/wpp/use_proxy</config_path>
331
+ <frontend_type>select</frontend_type>
332
+ <source_model>adminhtml/system_config_source_yesno</source_model>
333
+ <sort_order>90</sort_order>
334
+ <show_in_default>1</show_in_default>
335
+ <show_in_website>1</show_in_website>
336
+ <shared>1</shared>
337
+ </use_proxy>
338
+ <proxy_host translate="label">
339
+ <label>Proxy Host</label>
340
+ <config_path>paypal/wpp/proxy_host</config_path>
341
+ <frontend_type>text</frontend_type>
342
+ <sort_order>100</sort_order>
343
+ <show_in_default>1</show_in_default>
344
+ <show_in_website>1</show_in_website>
345
+ <depends><use_proxy>1</use_proxy></depends>
346
+ <shared>1</shared>
347
+ </proxy_host>
348
+ <proxy_port translate="label">
349
+ <label>Proxy Port</label>
350
+ <config_path>paypal/wpp/proxy_port</config_path>
351
+ <frontend_type>text</frontend_type>
352
+ <sort_order>110</sort_order>
353
+ <show_in_default>1</show_in_default>
354
+ <show_in_website>1</show_in_website>
355
+ <depends><use_proxy>1</use_proxy></depends>
356
+ <shared>1</shared>
357
+ </proxy_port>
358
+ </fields>
359
+ </express>
360
+ <enable_payflow_advanced translate="label comment">
361
+ <label>Enable this Solution</label>
362
+ <config_path>payment/payflow_advanced/active</config_path>
363
+ <frontend_type>select</frontend_type>
364
+ <source_model>adminhtml/system_config_source_yesno</source_model>
365
+ <sort_order>30</sort_order>
366
+ <show_in_default>1</show_in_default>
367
+ <show_in_website>1</show_in_website>
368
+ <comment>Both section above must be complete. </comment>
369
+ <requires>express,payments_advanced</requires>
370
+ <frontend_class>paypal-enabler</frontend_class>
371
+ </enable_payflow_advanced>
372
+ </fields>
373
+ </required_settings>
374
 
375
+ <settings_payments_advanced type="group" translate="label">
376
+ <label>Basic Settings - PayPal Payments Advanced</label>
377
+ <frontend_type>text</frontend_type>
378
+ <show_in_default>1</show_in_default>
379
+ <show_in_website>1</show_in_website>
380
+ <show_in_store>1</show_in_store>
381
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
382
+ <sort_order>20</sort_order>
383
+ <fields>
384
+ <title translate="label comment">
385
+ <label>Title</label>
386
+ <comment>It is recommended to set this value to "Debit or Credit Card" per store views.</comment>
387
+ <config_path>payment/payflow_advanced/title</config_path>
388
+ <frontend_type>text</frontend_type>
389
+ <sort_order>10</sort_order>
390
+ <show_in_default>1</show_in_default>
391
+ <show_in_website>1</show_in_website>
392
+ <show_in_store>1</show_in_store>
393
+ </title>
394
+ <sort_order translate="label">
395
+ <label>Sort Order</label>
396
+ <config_path>payment/payflow_advanced/sort_order</config_path>
397
+ <frontend_type>text</frontend_type>
398
+ <sort_order>20</sort_order>
399
+ <show_in_default>1</show_in_default>
400
+ <show_in_website>1</show_in_website>
401
+ <show_in_store>1</show_in_store>
402
+ <frontend_class>validate-number</frontend_class>
403
+ </sort_order>
404
+ <payment_action translate="label">
405
+ <label>Payment Action</label>
406
+ <config_path>payment/payflow_advanced/payment_action</config_path>
407
+ <frontend_type>select</frontend_type>
408
+ <source_model>paypal/system_config_source_paymentActions</source_model>
409
+ <sort_order>30</sort_order>
410
+ <show_in_default>1</show_in_default>
411
+ <show_in_website>1</show_in_website>
412
+ </payment_action>
413
+ <settings_payments_advanced_advanced type="group" translate="label">
414
+ <label>Advanced Settings</label>
415
+ <frontend_class>config-advanced</frontend_class>
416
+ <frontend_type>text</frontend_type>
417
+ <show_in_default>1</show_in_default>
418
+ <show_in_website>1</show_in_website>
419
+ <show_in_store>1</show_in_store>
420
+ <sort_order>40</sort_order>
421
+ <fields>
422
+ <allowspecific translate="label">
423
+ <label>Payment Applicable From</label>
424
+ <config_path>payment/payflow_advanced/allowspecific</config_path>
425
+ <frontend_type>select</frontend_type>
426
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
427
+ <sort_order>20</sort_order>
428
+ <show_in_default>1</show_in_default>
429
+ <show_in_website>1</show_in_website>
430
+ </allowspecific>
431
+ <specificcountry translate="label">
432
+ <label>Countries Payment Applicable From</label>
433
+ <config_path>payment/payflow_advanced/specificcountry</config_path>
434
+ <frontend_type>multiselect</frontend_type>
435
+ <source_model>paypal/system_config_source_buyerCountry</source_model>
436
+ <sort_order>25</sort_order>
437
+ <show_in_default>1</show_in_default>
438
+ <show_in_website>1</show_in_website>
439
+ <depends><allowspecific>1</allowspecific></depends>
440
+ </specificcountry>
441
+ <debug translate="label">
442
+ <label>Debug Mode</label>
443
+ <config_path>payment/payflow_advanced/debug</config_path>
444
+ <frontend_type>select</frontend_type>
445
+ <source_model>adminhtml/system_config_source_yesno</source_model>
446
+ <sort_order>30</sort_order>
447
+ <show_in_default>1</show_in_default>
448
+ <show_in_website>1</show_in_website>
449
+ </debug>
450
+ <verify_peer translate="label">
451
+ <label>Enable SSL verification</label>
452
+ <config_path>payment/payflow_advanced/verify_peer</config_path>
453
+ <frontend_type>select</frontend_type>
454
+ <source_model>adminhtml/system_config_source_yesno</source_model>
455
+ <sort_order>35</sort_order>
456
+ <show_in_default>1</show_in_default>
457
+ <show_in_website>1</show_in_website>
458
+ </verify_peer>
459
+ <csc_editable translate="label">
460
+ <label>CVV Entry is Editable</label>
461
+ <config_path>payment/payflow_advanced/csc_editable</config_path>
462
+ <frontend_type>select</frontend_type>
463
+ <source_model>adminhtml/system_config_source_yesno</source_model>
464
+ <sort_order>40</sort_order>
465
+ <show_in_default>1</show_in_default>
466
+ <show_in_website>1</show_in_website>
467
+ </csc_editable>
468
+ <csc_required translate="label">
469
+ <label>Require CVV Entry</label>
470
+ <config_path>payment/payflow_advanced/csc_required</config_path>
471
+ <frontend_type>select</frontend_type>
472
+ <source_model>adminhtml/system_config_source_yesno</source_model>
473
+ <sort_order>50</sort_order>
474
+ <show_in_default>1</show_in_default>
475
+ <show_in_website>1</show_in_website>
476
+ <depends><csc_editable>1</csc_editable></depends>
477
+ </csc_required>
478
+ <email_confirmation translate="label">
479
+ <label>Send Email Confirmation</label>
480
+ <config_path>payment/payflow_advanced/email_confirmation</config_path>
481
+ <frontend_type>select</frontend_type>
482
+ <source_model>adminhtml/system_config_source_yesno</source_model>
483
+ <sort_order>60</sort_order>
484
+ <show_in_default>1</show_in_default>
485
+ <show_in_website>1</show_in_website>
486
+ </email_confirmation>
487
+ <url_method translate="label">
488
+ <label>URL method for Cancel URL and Return URL</label>
489
+ <config_path>payment/payflow_advanced/url_method</config_path>
490
+ <frontend_type>select</frontend_type>
491
+ <source_model>paypal/system_config_source_urlMethod</source_model>
492
+ <sort_order>70</sort_order>
493
+ <show_in_default>1</show_in_default>
494
+ <show_in_website>1</show_in_website>
495
+ </url_method>
496
+ <billing_agreement type="group" translate="label">
497
+ <label>PayPal Billing Agreement Settings</label>
498
+ <frontend_type>text</frontend_type>
499
+ <show_in_default>1</show_in_default>
500
+ <show_in_website>1</show_in_website>
501
+ <show_in_store>1</show_in_store>
502
+ <sort_order>80</sort_order>
503
+ <fields>
504
+ <active translate="label comment">
505
+ <label>Enabled</label>
506
+ <comment><![CDATA[Will appear as a payment option only for customers who have at least one active billing agreement.]]></comment>
507
+ <config_path>payment/paypal_billing_agreement/active</config_path>
508
+ <frontend_type>select</frontend_type>
509
+ <source_model>adminhtml/system_config_source_yesno</source_model>
510
+ <sort_order>10</sort_order>
511
+ <show_in_default>1</show_in_default>
512
+ <show_in_website>1</show_in_website>
513
+ <shared>1</shared>
514
+ </active>
515
+ <title translate="label">
516
+ <label>Title</label>
517
+ <config_path>payment/paypal_billing_agreement/title</config_path>
518
+ <frontend_type>text</frontend_type>
519
+ <sort_order>20</sort_order>
520
+ <show_in_default>1</show_in_default>
521
+ <show_in_website>1</show_in_website>
522
+ <show_in_store>1</show_in_store>
523
+ <shared>1</shared>
524
+ </title>
525
+ <sort_order translate="label">
526
+ <label>Sort Order</label>
527
+ <config_path>payment/paypal_billing_agreement/sort_order</config_path>
528
+ <frontend_type>text</frontend_type>
529
+ <sort_order>30</sort_order>
530
+ <show_in_default>1</show_in_default>
531
+ <show_in_website>1</show_in_website>
532
+ <show_in_store>1</show_in_store>
533
+ <frontend_class>validate-number</frontend_class>
534
+ <shared>1</shared>
535
+ </sort_order>
536
+ <payment_action translate="label">
537
+ <label>Payment Action</label>
538
+ <config_path>payment/paypal_billing_agreement/payment_action</config_path>
539
+ <frontend_type>select</frontend_type>
540
+ <source_model>paypal/system_config_source_paymentActions</source_model>
541
+ <sort_order>40</sort_order>
542
+ <show_in_default>1</show_in_default>
543
+ <show_in_website>1</show_in_website>
544
+ <shared>1</shared>
545
+ </payment_action>
546
+ <allowspecific translate="label">
547
+ <label>Payment Applicable From</label>
548
+ <config_path>payment/paypal_billing_agreement/allowspecific</config_path>
549
+ <frontend_type>select</frontend_type>
550
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
551
+ <sort_order>50</sort_order>
552
+ <show_in_default>1</show_in_default>
553
+ <show_in_website>1</show_in_website>
554
+ <shared>1</shared>
555
+ </allowspecific>
556
+ <specificcountry translate="label">
557
+ <label>Countries Payment Applicable From</label>
558
+ <config_path>payment/paypal_billing_agreement/specificcountry</config_path>
559
+ <frontend_type>multiselect</frontend_type>
560
+ <source_model>paypal/system_config_source_buyerCountry</source_model>
561
+ <sort_order>60</sort_order>
562
+ <show_in_default>1</show_in_default>
563
+ <show_in_website>1</show_in_website>
564
+ <depends><allowspecific>1</allowspecific></depends>
565
+ <shared>1</shared>
566
+ </specificcountry>
567
+ <debug translate="label">
568
+ <label>Debug Mode</label>
569
+ <config_path>payment/paypal_billing_agreement/debug</config_path>
570
+ <frontend_type>select</frontend_type>
571
+ <source_model>adminhtml/system_config_source_yesno</source_model>
572
+ <sort_order>70</sort_order>
573
+ <show_in_default>1</show_in_default>
574
+ <show_in_website>1</show_in_website>
575
+ <shared>1</shared>
576
+ </debug>
577
+ <verify_peer translate="label">
578
+ <label>Enable SSL verification</label>
579
+ <config_path>payment/paypal_billing_agreement/verify_peer</config_path>
580
+ <frontend_type>select</frontend_type>
581
+ <source_model>adminhtml/system_config_source_yesno</source_model>
582
+ <sort_order>75</sort_order>
583
+ <show_in_default>1</show_in_default>
584
+ <show_in_website>1</show_in_website>
585
+ <shared>1</shared>
586
+ </verify_peer>
587
+ <line_items_enabled translate="label">
588
+ <label>Transfer Cart Line Items</label>
589
+ <config_path>payment/paypal_billing_agreement/line_items_enabled</config_path>
590
+ <frontend_type>select</frontend_type>
591
+ <source_model>adminhtml/system_config_source_yesno</source_model>
592
+ <sort_order>80</sort_order>
593
+ <show_in_default>1</show_in_default>
594
+ <show_in_website>1</show_in_website>
595
+ <shared>1</shared>
596
+ </line_items_enabled>
597
+ <allow_billing_agreement_wizard translate="label">
598
+ <label>Allow in Billing Agreement Wizard</label>
599
+ <config_path>payment/paypal_billing_agreement/allow_billing_agreement_wizard</config_path>
600
+ <frontend_type>select</frontend_type>
601
+ <source_model>adminhtml/system_config_source_yesno</source_model>
602
+ <sort_order>90</sort_order>
603
+ <show_in_default>1</show_in_default>
604
+ <show_in_website>1</show_in_website>
605
+ <shared>1</shared>
606
+ </allow_billing_agreement_wizard>
607
+ </fields>
608
+ </billing_agreement>
609
+ <settlement_report type="group" translate="label">
610
+ <label>Settlement Report Settings</label>
611
+ <frontend_type>text</frontend_type>
612
+ <show_in_default>1</show_in_default>
613
+ <show_in_website>1</show_in_website>
614
+ <sort_order>90</sort_order>
615
+ <fields>
616
+ <heading_sftp translate="label">
617
+ <label>SFTP Credentials</label>
618
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
619
+ <sort_order>10</sort_order>
620
+ <show_in_default>1</show_in_default>
621
+ <show_in_website>1</show_in_website>
622
+ </heading_sftp>
623
+ <settlement_reports_ftp_login translate="label">
624
+ <label>Login</label>
625
+ <config_path>paypal/fetch_reports/ftp_login</config_path>
626
+ <frontend_type>obscure</frontend_type>
627
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
628
+ <sort_order>20</sort_order>
629
+ <show_in_default>1</show_in_default>
630
+ <show_in_website>1</show_in_website>
631
+ <shared>1</shared>
632
+ </settlement_reports_ftp_login>
633
+ <settlement_reports_ftp_password translate="label">
634
+ <label>Password</label>
635
+ <config_path>paypal/fetch_reports/ftp_password</config_path>
636
+ <frontend_type>obscure</frontend_type>
637
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
638
+ <sort_order>30</sort_order>
639
+ <show_in_default>1</show_in_default>
640
+ <show_in_website>1</show_in_website>
641
+ <shared>1</shared>
642
+ </settlement_reports_ftp_password>
643
+ <settlement_reports_ftp_sandbox translate="label">
644
+ <label>Sandbox Mode</label>
645
+ <config_path>paypal/fetch_reports/ftp_sandbox</config_path>
646
+ <frontend_type>select</frontend_type>
647
+ <source_model>adminhtml/system_config_source_yesno</source_model>
648
+ <sort_order>40</sort_order>
649
+ <show_in_default>1</show_in_default>
650
+ <show_in_website>1</show_in_website>
651
+ <shared>1</shared>
652
+ </settlement_reports_ftp_sandbox>
653
+ <settlement_reports_ftp_ip translate="label comment tooltip">
654
+ <label>Custom Endpoint Hostname or IP-Address</label>
655
+ <comment>By default it is "reports.paypal.com".</comment>
656
+ <tooltip>Use colon to specify port. For example: "test.example.com:5224".</tooltip>
657
+ <config_path>paypal/fetch_reports/ftp_ip</config_path>
658
+ <frontend_type>text</frontend_type>
659
+ <sort_order>50</sort_order>
660
+ <show_in_default>1</show_in_default>
661
+ <show_in_website>1</show_in_website>
662
+ <depends><settlement_reports_ftp_sandbox>0</settlement_reports_ftp_sandbox></depends>
663
+ <shared>1</shared>
664
+ </settlement_reports_ftp_ip>
665
+ <settlement_reports_ftp_path translate="label comeent">
666
+ <label>Custom Path</label>
667
+ <comment>By default it is "/ppreports/outgoing".</comment>
668
+ <config_path>paypal/fetch_reports/ftp_path</config_path>
669
+ <frontend_type>text</frontend_type>
670
+ <sort_order>60</sort_order>
671
+ <show_in_default>1</show_in_default>
672
+ <show_in_website>1</show_in_website>
673
+ <depends><settlement_reports_ftp_sandbox>0</settlement_reports_ftp_sandbox></depends>
674
+ <shared>1</shared>
675
+ </settlement_reports_ftp_path>
676
+ <heading_schedule translate="label">
677
+ <label>Scheduled Fetching</label>
678
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
679
+ <sort_order>70</sort_order>
680
+ <show_in_default>1</show_in_default>
681
+ <show_in_website>1</show_in_website>
682
+ <shared>1</shared>
683
+ </heading_schedule>
684
+ <settlement_reports_active translate="label">
685
+ <label>Enable Automatic Fetching</label>
686
+ <config_path>paypal/fetch_reports/active</config_path>
687
+ <frontend_type>select</frontend_type>
688
+ <source_model>adminhtml/system_config_source_yesno</source_model>
689
+ <sort_order>80</sort_order>
690
+ <show_in_default>1</show_in_default>
691
+ <show_in_website>1</show_in_website>
692
+ <shared>1</shared>
693
+ </settlement_reports_active>
694
+ <settlement_reports_schedule translate="label comment">
695
+ <label>Schedule</label>
696
+ <comment>PayPal retains reports for 45 days.</comment>
697
+ <config_path>paypal/fetch_reports/schedule</config_path>
698
+ <frontend_type>select</frontend_type>
699
+ <source_model>paypal/system_config_source_fetchingSchedule</source_model>
700
+ <sort_order>90</sort_order>
701
+ <show_in_default>1</show_in_default>
702
+ <shared>1</shared>
703
+ </settlement_reports_schedule>
704
+ <settlement_reports_time translate="label">
705
+ <label>Time of Day</label>
706
+ <config_path>paypal/fetch_reports/time</config_path>
707
+ <frontend_type>time</frontend_type>
708
+ <sort_order>100</sort_order>
709
+ <show_in_default>1</show_in_default>
710
+ <shared>1</shared>
711
+ </settlement_reports_time>
712
+ </fields>
713
+ </settlement_report>
714
+ <frontend type="group" translate="label">
715
+ <label>Frontend Experience Settings</label>
716
+ <frontend_type>text</frontend_type>
717
+ <show_in_default>1</show_in_default>
718
+ <show_in_website>1</show_in_website>
719
+ <show_in_store>1</show_in_store>
720
+ <sort_order>100</sort_order>
721
+ <fields>
722
+ <logo translate="label comment">
723
+ <label>PayPal Product Logo</label>
724
+ <comment>Displays on catalog pages and homepage.</comment>
725
+ <config_path>paypal/style/logo</config_path>
726
+ <frontend_type>select</frontend_type>
727
+ <source_model>paypal/system_config_source_logo</source_model>
728
+ <sort_order>10</sort_order>
729
+ <show_in_default>1</show_in_default>
730
+ <show_in_website>1</show_in_website>
731
+ <show_in_store>1</show_in_store>
732
+ <shared>1</shared>
733
+ </logo>
734
+ <paypal_pages translate="label">
735
+ <label>PayPal Merchant Pages Style</label>
736
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
737
+ <sort_order>20</sort_order>
738
+ <show_in_default>1</show_in_default>
739
+ <show_in_website>1</show_in_website>
740
+ <show_in_store>1</show_in_store>
741
+ <shared>1</shared>
742
+ </paypal_pages>
743
+ <page_style translate="label tooltip">
744
+ <label>Page Style</label>
745
+ <config_path>paypal/style/page_style</config_path>
746
+ <tooltip><![CDATA[Allowable values: "paypal", "primary" (default), your_custom_value (a custom payment page style from your merchant account profile).]]></tooltip>
747
+ <frontend_type>text</frontend_type>
748
+ <sort_order>30</sort_order>
749
+ <show_in_default>1</show_in_default>
750
+ <show_in_website>1</show_in_website>
751
+ <show_in_store>1</show_in_store>
752
+ <shared>1</shared>
753
+ </page_style>
754
+ <paypal_hdrimg translate='label tooltip'>
755
+ <label>Header Image URL</label>
756
+ <config_path>paypal/style/paypal_hdrimg</config_path>
757
+ <tooltip><![CDATA[The image at the top left of the checkout page. Max size is 750x90-pixel. <strong style="color:red">https</strong> is highly encouraged.]]></tooltip>
758
+ <sort_order>40</sort_order>
759
+ <show_in_default>1</show_in_default>
760
+ <show_in_website>1</show_in_website>
761
+ <show_in_store>1</show_in_store>
762
+ <shared>1</shared>
763
+ </paypal_hdrimg>
764
+ <paypal_hdrbackcolor translate="label tooltip">
765
+ <label>Header Background Color</label>
766
+ <config_path>paypal/style/paypal_hdrbackcolor</config_path>
767
+ <tooltip><![CDATA[The background color for the header of the checkout page. Case-insensitive six-character HTML hexadecimal color code in ASCII.]]></tooltip>
768
+ <sort_order>50</sort_order>
769
+ <show_in_default>1</show_in_default>
770
+ <show_in_website>1</show_in_website>
771
+ <show_in_store>1</show_in_store>
772
+ <shared>1</shared>
773
+ </paypal_hdrbackcolor>
774
+ <paypal_hdrbordercolor translate="label tooltip">
775
+ <label>Header Border Color</label>
776
+ <config_path>paypal/style/paypal_hdrbordercolor</config_path>
777
+ <tooltip>2-pixel perimeter around the header space.</tooltip>
778
+ <sort_order>60</sort_order>
779
+ <show_in_default>1</show_in_default>
780
+ <show_in_website>1</show_in_website>
781
+ <show_in_store>1</show_in_store>
782
+ <shared>1</shared>
783
+ </paypal_hdrbordercolor>
784
+ <paypal_payflowcolor translate="label tooltip">
785
+ <label>Page Background Color</label>
786
+ <config_path>paypal/style/paypal_payflowcolor</config_path>
787
+ <tooltip><![CDATA[The background color for the checkout page around the header and payment form.]]></tooltip>
788
+ <sort_order>70</sort_order>
789
+ <show_in_default>1</show_in_default>
790
+ <show_in_website>1</show_in_website>
791
+ <show_in_store>1</show_in_store>
792
+ <shared>1</shared>
793
+ </paypal_payflowcolor>
794
+ </fields>
795
+ </frontend>
796
+ </fields>
797
+ </settings_payments_advanced_advanced>
798
+ </fields>
799
+ </settings_payments_advanced>
800
+ <settings_express_checkout type="group" translate="label">
801
+ <label>Basic Settings - PayPal Express Checkout</label>
802
+ <frontend_type>text</frontend_type>
803
+ <show_in_default>1</show_in_default>
804
+ <show_in_website>1</show_in_website>
805
+ <show_in_store>1</show_in_store>
806
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
807
+ <sort_order>30</sort_order>
808
+ <fields>
809
+ <title translate="label comment">
810
+ <label>Title</label>
811
+ <comment>It is recommended to set this value to "PayPal" per store views.</comment>
812
+ <config_path>payment/paypal_express/title</config_path>
813
+ <frontend_type>text</frontend_type>
814
+ <sort_order>10</sort_order>
815
+ <show_in_default>1</show_in_default>
816
+ <show_in_website>1</show_in_website>
817
+ <show_in_store>1</show_in_store>
818
+ <shared>1</shared>
819
+ </title>
820
+ <sort_order translate="label">
821
+ <label>Sort Order</label>
822
+ <config_path>payment/paypal_express/sort_order</config_path>
823
+ <frontend_type>text</frontend_type>
824
+ <sort_order>20</sort_order>
825
+ <show_in_default>1</show_in_default>
826
+ <show_in_website>1</show_in_website>
827
+ <show_in_store>1</show_in_store>
828
+ <frontend_class>validate-number</frontend_class>
829
+ <shared>1</shared>
830
+ </sort_order>
831
+ <payment_action translate="label">
832
+ <label>Payment Action</label>
833
+ <config_path>payment/paypal_express/payment_action</config_path>
834
+ <frontend_type>select</frontend_type>
835
+ <source_model>paypal/system_config_source_paymentActions_express</source_model>
836
+ <sort_order>30</sort_order>
837
+ <show_in_default>1</show_in_default>
838
+ <show_in_website>1</show_in_website>
839
+ <shared>1</shared>
840
+ </payment_action>
841
+ <visible_on_cart translate="label comment">
842
+ <label>Shortcut on Shopping Cart</label>
843
+ <config_path>payment/paypal_express/visible_on_cart</config_path>
844
+ <comment>Also affects mini-shopping cart.</comment>
845
+ <frontend_type>select</frontend_type>
846
+ <source_model>adminhtml/system_config_source_yesno</source_model>
847
+ <sort_order>35</sort_order>
848
+ <show_in_default>1</show_in_default>
849
+ <show_in_website>1</show_in_website>
850
+ <show_in_store>1</show_in_store>
851
+ <shared>1</shared>
852
+ </visible_on_cart>
853
+ <visible_on_product translate="label">
854
+ <label>Shortcut on Product View</label>
855
+ <config_path>payment/paypal_express/visible_on_product</config_path>
856
+ <frontend_type>select</frontend_type>
857
+ <source_model>adminhtml/system_config_source_yesno</source_model>
858
+ <sort_order>40</sort_order>
859
+ <show_in_default>1</show_in_default>
860
+ <show_in_website>1</show_in_website>
861
+ <show_in_store>1</show_in_store>
862
+ <shared>1</shared>
863
+ </visible_on_product>
864
+ <authorization_honor_period translate="label comment">
865
+ <label>Authorization Honor Period (days)</label>
866
+ <comment>Specifies what the Authorization Honor Period is on the merchant’s PayPal account. It must mirror the setting in PayPal.</comment>
867
+ <config_path>payment/paypal_express/authorization_honor_period</config_path>
868
+ <frontend_type>text</frontend_type>
869
+ <sort_order>50</sort_order>
870
+ <show_in_default>1</show_in_default>
871
+ <show_in_website>1</show_in_website>
872
+ <shared>1</shared>
873
+ <depends><payment_action>Order</payment_action></depends>
874
+ </authorization_honor_period>
875
+ <order_valid_period translate="label comment">
876
+ <label>Order Valid Period (days)</label>
877
+ <comment>Specifies what the Order Valid Period is on the merchant’s PayPal account. It must mirror the setting in PayPal.</comment>
878
+ <config_path>payment/paypal_express/order_valid_period</config_path>
879
+ <frontend_type>text</frontend_type>
880
+ <sort_order>60</sort_order>
881
+ <show_in_default>1</show_in_default>
882
+ <show_in_website>1</show_in_website>
883
+ <shared>1</shared>
884
+ <depends><payment_action>Order</payment_action></depends>
885
+ </order_valid_period>
886
+ <child_authorization_number translate="label comment">
887
+ <label>Number of Child Authorizations</label>
888
+ <comment>The default number of child authorizations in your PayPal account is 1. To do multiple authorizations please contact PayPal to request an increase.</comment>
889
+ <config_path>payment/paypal_express/child_authorization_number</config_path>
890
+ <frontend_type>text</frontend_type>
891
+ <sort_order>70</sort_order>
892
+ <show_in_default>1</show_in_default>
893
+ <show_in_website>1</show_in_website>
894
+ <shared>1</shared>
895
+ <depends><payment_action>Order</payment_action></depends>
896
+ </child_authorization_number>
897
+ <settings_express_checkout_advanced type="group" translate="label">
898
+ <label>Advanced Settings</label>
899
+ <frontend_class>config-advanced</frontend_class>
900
+ <frontend_type>text</frontend_type>
901
+ <show_in_default>1</show_in_default>
902
+ <show_in_website>1</show_in_website>
903
+ <show_in_store>1</show_in_store>
904
+ <sort_order>80</sort_order>
905
+ <fields>
906
+ <allowspecific translate="label">
907
+ <label>Payment Applicable From</label>
908
+ <config_path>payment/paypal_express/allowspecific</config_path>
909
+ <frontend_type>select</frontend_type>
910
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
911
+ <sort_order>10</sort_order>
912
+ <show_in_default>1</show_in_default>
913
+ <show_in_website>1</show_in_website>
914
+ <shared>1</shared>
915
+ </allowspecific>
916
+ <specificcountry translate="label">
917
+ <label>Countries Payment Applicable From</label>
918
+ <config_path>payment/paypal_express/specificcountry</config_path>
919
+ <frontend_type>multiselect</frontend_type>
920
+ <source_model>paypal/system_config_source_buyerCountry</source_model>
921
+ <sort_order>20</sort_order>
922
+ <show_in_default>1</show_in_default>
923
+ <show_in_website>1</show_in_website>
924
+ <depends><allowspecific>1</allowspecific></depends>
925
+ <shared>1</shared>
926
+ </specificcountry>
927
+ <debug translate="label">
928
+ <label>Debug Mode</label>
929
+ <config_path>payment/paypal_express/debug</config_path>
930
+ <frontend_type>select</frontend_type>
931
+ <source_model>adminhtml/system_config_source_yesno</source_model>
932
+ <sort_order>30</sort_order>
933
+ <show_in_default>1</show_in_default>
934
+ <show_in_website>1</show_in_website>
935
+ <shared>1</shared>
936
+ </debug>
937
+ <verify_peer translate="label">
938
+ <label>Enable SSL verification</label>
939
+ <config_path>payment/paypal_express/verify_peer</config_path>
940
+ <frontend_type>select</frontend_type>
941
+ <source_model>adminhtml/system_config_source_yesno</source_model>
942
+ <sort_order>35</sort_order>
943
+ <show_in_default>1</show_in_default>
944
+ <show_in_website>1</show_in_website>
945
+ <shared>1</shared>
946
+ </verify_peer>
947
+ <line_items_enabled translate="label">
948
+ <label>Transfer Cart Line Items</label>
949
+ <config_path>payment/paypal_express/line_items_enabled</config_path>
950
+ <frontend_type>select</frontend_type>
951
+ <source_model>adminhtml/system_config_source_yesno</source_model>
952
+ <sort_order>40</sort_order>
953
+ <show_in_default>1</show_in_default>
954
+ <show_in_website>1</show_in_website>
955
+ <shared>1</shared>
956
+ </line_items_enabled>
957
+ <transfer_shipping_options translate="label tooltip comment">
958
+ <label>Transfer Shipping Options</label>
959
+ <config_path>payment/paypal_express/transfer_shipping_options</config_path>
960
+ <tooltip>If this option is enabled, customer can change shipping address and shipping method on PayPal website. In live mode works via HTTPS protocol only.</tooltip>
961
+ <comment>Notice that PayPal can handle up to 10 shipping options. That is why Magento will transfer only first 10 cheapest shipping options if there are more than 10 available.</comment>
962
+ <frontend_type>select</frontend_type>
963
+ <source_model>adminhtml/system_config_source_yesno</source_model>
964
+ <sort_order>50</sort_order>
965
+ <show_in_default>1</show_in_default>
966
+ <show_in_website>1</show_in_website>
967
+ <depends><line_items_enabled>1</line_items_enabled></depends>
968
+ <shared>1</shared>
969
+ </transfer_shipping_options>
970
+ <button_flavor translate="label">
971
+ <label>Shortcut Buttons Flavor</label>
972
+ <config_path>paypal/wpp/button_flavor</config_path>
973
+ <frontend_type>select</frontend_type>
974
+ <source_model>paypal/config::getExpressCheckoutButtonFlavors</source_model>
975
+ <sort_order>60</sort_order>
976
+ <show_in_default>1</show_in_default>
977
+ <show_in_website>1</show_in_website>
978
+ <show_in_store>1</show_in_store>
979
+ <shared>1</shared>
980
+ </button_flavor>
981
+ <solution_type translate="label comment">
982
+ <label>Enable PayPal Guest Checkout</label>
983
+ <comment>Ability for buyer to purchase without PayPal account.</comment>
984
+ <config_path>payment/paypal_express/solution_type</config_path>
985
+ <frontend_type>select</frontend_type>
986
+ <source_model>paypal/config::getExpressCheckoutSolutionTypes</source_model>
987
+ <sort_order>70</sort_order>
988
+ <show_in_default>1</show_in_default>
989
+ <show_in_website>1</show_in_website>
990
+ <shared>1</shared>
991
+ </solution_type>
992
+ <require_billing_address translate="label comment">
993
+ <label>Require Customer's Billing Address</label>
994
+ <comment>This feature needs be enabled first for the merchant account through PayPal technical support.</comment>
995
+ <config_path>payment/paypal_express/require_billing_address</config_path>
996
+ <frontend_type>select</frontend_type>
997
+ <source_model>paypal/system_config_source_requireBillingAddress</source_model>
998
+ <sort_order>80</sort_order>
999
+ <show_in_default>1</show_in_default>
1000
+ <show_in_website>1</show_in_website>
1001
+ <shared>1</shared>
1002
+ </require_billing_address>
1003
+ <allow_ba_signup translate="label comment tooltip">
1004
+ <label>Billing Agreement Signup</label>
1005
+ <comment>Whether to create a billing agreement, if there are no active billing agreements available.</comment>
1006
+ <tooltip><![CDATA[Merchants need to apply to PayPal for enabling billing agreements feature. Do not enable this option until PayPal confirms that billing agreements are enabled for your merchant account.]]></tooltip>
1007
+ <config_path>payment/paypal_express/allow_ba_signup</config_path>
1008
+ <frontend_type>select</frontend_type>
1009
+ <source_model>paypal/config::getExpressCheckoutBASignupOptions</source_model>
1010
+ <sort_order>90</sort_order>
1011
+ <show_in_default>1</show_in_default>
1012
+ <show_in_website>1</show_in_website>
1013
+ <shared>1</shared>
1014
+ </allow_ba_signup>
1015
+ </fields>
1016
+ </settings_express_checkout_advanced>
1017
+ </fields>
1018
+ </settings_express_checkout>
1019
+ </fields>
1020
+ </payflow_advanced>
1021
+ <wpp type="group" translate="label comment">
1022
+ <label>Website Payments Pro (Includes Express Checkout)</label>
1023
+ <frontend_type>text</frontend_type>
1024
+ <show_in_default>1</show_in_default>
1025
+ <show_in_website>1</show_in_website>
1026
+ <show_in_store>1</show_in_store>
1027
+ <sort_order>40</sort_order>
1028
+ <group>paypal_payment_solutions</group>
1029
+ <frontend_class>pp-method-general</frontend_class>
1030
+ <frontend_model>paypal/adminhtml_system_config_fieldset_payment</frontend_model>
1031
+ <comment>Accept payments with a completely customizable checkout.</comment>
1032
+ <activity_path>payment/paypal_direct/active</activity_path>
1033
+ <learn_more_link>https://www.paypal.com/webapps/mpp/referral/website-payments-pro?partner_id=NB9WWHYEMVUMS</learn_more_link>
1034
+ <backend_config>
1035
+ <CA>
1036
+ <include>1</include>
1037
+ <sort_order>10</sort_order>
1038
+ </CA>
1039
+ <GB translate="label comment">
1040
+ <include>1</include>
1041
+ <group>paypal_group_all_in_one</group>
1042
+ <frontend_class>pp-general-uk</frontend_class>
1043
+ <sort_order>20</sort_order>
1044
+ <learn_more_link>https://www.paypal-business.co.uk/process-online-payments-with-paypal/index.htm</learn_more_link>
1045
+ <demo_link>http://www.youtube.com/watch?v=LBe-TW87eGI&amp;list=PLF18B1094ABCD7CE8&amp;index=1&amp;feature=plpp_video</demo_link>
1046
+ <comment>Accept payments with a completely customizable checkout page.</comment>
1047
+ </GB>
1048
+ <US translate="label">
1049
+ <label>Payments Pro (Includes Express Checkout)</label>
1050
+ <include>1</include>
1051
+ <group>paypal_group_all_in_one</group>
1052
+ <fields>
1053
+ <wpp_required_settings>
1054
+ <fields>
1055
+ <wpp_and_express_checkout translate="label">
1056
+ <label>Payments Pro and Express Checkout</label>
1057
+ </wpp_and_express_checkout>
1058
+ </fields>
1059
+ </wpp_required_settings>
1060
+ <wpp_settings translate="label">
1061
+ <label>Basic Settings - PayPal Payments Pro</label>
1062
+ </wpp_settings>
1063
+ </fields>
1064
+ </US>
1065
+ </backend_config>
1066
+ <fields>
1067
+ <wpp_required_settings type="group" translate="label">
1068
+ <label>Required PayPal Settings</label>
1069
+ <frontend_type>text</frontend_type>
1070
+ <show_in_default>1</show_in_default>
1071
+ <show_in_website>1</show_in_website>
1072
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
1073
+ <sort_order>10</sort_order>
1074
+ <fields>
1075
+ <wpp_and_express_checkout type="group" translate="label">
1076
+ <label>Website Payments Pro and Express Checkout</label>
1077
+ <frontend_type>text</frontend_type>
1078
+ <show_in_default>1</show_in_default>
1079
+ <show_in_website>1</show_in_website>
1080
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
1081
+ <sort_order>10</sort_order>
1082
+ <fields>
1083
+ <business_account extends="//paypal_payments/payflow_advanced//business_account" />
1084
+ <api_authentication extends="//paypal_payments/payflow_advanced//api_authentication" />
1085
+ <api_username extends="//paypal_payments/payflow_advanced//api_username" />
1086
+ <api_password extends="//paypal_payments/payflow_advanced//api_password" />
1087
+ <api_signature extends="//paypal_payments/payflow_advanced//api_signature" />
1088
+ <api_cert extends="//paypal_payments/payflow_advanced//api_cert" />
1089
+ <api_wizard extends="//paypal_payments/payflow_advanced//api_wizard" />
1090
+ <sandbox_flag extends="//paypal_payments/payflow_advanced//express//sandbox_flag" />
1091
+ <use_proxy extends="//paypal_payments/payflow_advanced//express//use_proxy" />
1092
+ <proxy_host extends="//paypal_payments/payflow_advanced//express//proxy_host" />
1093
+ <proxy_port extends="//paypal_payments/payflow_advanced//express//proxy_port" />
1094
+ </fields>
1095
+ </wpp_and_express_checkout>
1096
 
1097
+ <enable_wpp translate="label">
1098
+ <label>Enable this Solution</label>
1099
+ <config_path>payment/paypal_direct/active</config_path>
1100
+ <frontend_type>select</frontend_type>
1101
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1102
+ <sort_order>20</sort_order>
1103
+ <show_in_default>1</show_in_default>
1104
+ <show_in_website>1</show_in_website>
1105
+ <requires>wpp_and_express_checkout</requires>
1106
+ <frontend_class>paypal-enabler</frontend_class>
1107
+ </enable_wpp>
1108
+ </fields>
1109
+ </wpp_required_settings>
1110
 
1111
+ <wpp_settings type="group" translate="label">
1112
+ <label>Basic Settings - PayPal Website Payments Pro</label>
1113
+ <frontend_type>text</frontend_type>
1114
+ <show_in_default>1</show_in_default>
1115
+ <show_in_website>1</show_in_website>
1116
+ <show_in_store>1</show_in_store>
1117
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
1118
+ <sort_order>20</sort_order>
1119
+ <fields>
1120
+ <title translate="label comment">
1121
+ <label>Title</label>
1122
+ <comment>It is recommended to set this value to "Debit or Credit Card" per store views.</comment>
1123
+ <config_path>payment/paypal_direct/title</config_path>
1124
+ <frontend_type>text</frontend_type>
1125
+ <sort_order>10</sort_order>
1126
+ <show_in_default>1</show_in_default>
1127
+ <show_in_website>1</show_in_website>
1128
+ <show_in_store>1</show_in_store>
1129
+ </title>
1130
+ <sort_order translate="label">
1131
+ <label>Sort Order</label>
1132
+ <config_path>payment/paypal_direct/sort_order</config_path>
1133
+ <frontend_type>text</frontend_type>
1134
+ <sort_order>20</sort_order>
1135
+ <show_in_default>1</show_in_default>
1136
+ <show_in_website>1</show_in_website>
1137
+ <show_in_store>1</show_in_store>
1138
+ <frontend_class>validate-number</frontend_class>
1139
+ </sort_order>
1140
+ <payment_action translate="label">
1141
+ <label>Payment Action</label>
1142
+ <config_path>payment/paypal_direct/payment_action</config_path>
1143
+ <frontend_type>select</frontend_type>
1144
+ <source_model>paypal/system_config_source_paymentActions</source_model>
1145
+ <sort_order>30</sort_order>
1146
+ <show_in_default>1</show_in_default>
1147
+ <show_in_website>1</show_in_website>
1148
+ </payment_action>
1149
+ <heading_cc translate="label">
1150
+ <label>Credit Card Settings</label>
1151
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1152
+ <sort_order>40</sort_order>
1153
+ <show_in_default>1</show_in_default>
1154
+ <show_in_website>1</show_in_website>
1155
+ </heading_cc>
1156
+ <cctypes translate="label comment">
1157
+ <label>Allowed Credit Card Types</label>
1158
+ <comment><![CDATA[3D Secure validation is required for Maestro cards. Supporting of American Express cards require additional agreement. Learn more at <a href="http://www.paypal.com/amexupdate">http://www.paypal.com/amexupdate</a>.]]></comment>
1159
+ <config_path>payment/paypal_direct/cctypes</config_path>
1160
+ <frontend_type>multiselect</frontend_type>
1161
+ <source_model>paypal/config::getWppCcTypesAsOptionArray</source_model>
1162
+ <sort_order>50</sort_order>
1163
+ <show_in_default>1</show_in_default>
1164
+ <show_in_website>1</show_in_website>
1165
+ </cctypes>
1166
+ <wpp_settings_advanced type="group" translate="label">
1167
+ <label>Advanced Settings</label>
1168
+ <frontend_class>config-advanced</frontend_class>
1169
+ <frontend_type>text</frontend_type>
1170
+ <show_in_default>1</show_in_default>
1171
+ <show_in_website>1</show_in_website>
1172
+ <show_in_store>1</show_in_store>
1173
+ <sort_order>60</sort_order>
1174
+ <fields>
1175
+ <allowspecific translate="label">
1176
+ <label>Payment Applicable From</label>
1177
+ <config_path>payment/paypal_direct/allowspecific</config_path>
1178
+ <frontend_type>select</frontend_type>
1179
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
1180
+ <sort_order>20</sort_order>
1181
+ <show_in_default>1</show_in_default>
1182
+ <show_in_website>1</show_in_website>
1183
+ </allowspecific>
1184
+ <specificcountry translate="label">
1185
+ <label>Countries Payment Applicable From</label>
1186
+ <config_path>payment/paypal_direct/specificcountry</config_path>
1187
+ <frontend_type>multiselect</frontend_type>
1188
+ <source_model>paypal/system_config_source_buyerCountry</source_model>
1189
+ <sort_order>25</sort_order>
1190
+ <show_in_default>1</show_in_default>
1191
+ <show_in_website>1</show_in_website>
1192
+ <depends><allowspecific>1</allowspecific></depends>
1193
+ </specificcountry>
1194
+ <debug translate="label">
1195
+ <label>Debug Mode</label>
1196
+ <config_path>payment/paypal_direct/debug</config_path>
1197
+ <frontend_type>select</frontend_type>
1198
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1199
+ <sort_order>30</sort_order>
1200
+ <show_in_default>1</show_in_default>
1201
+ <show_in_website>1</show_in_website>
1202
+ </debug>
1203
+ <verify_peer translate="label">
1204
+ <label>Enable SSL verification</label>
1205
+ <config_path>payment/paypal_direct/verify_peer</config_path>
1206
+ <frontend_type>select</frontend_type>
1207
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1208
+ <sort_order>35</sort_order>
1209
+ <show_in_default>1</show_in_default>
1210
+ <show_in_website>1</show_in_website>
1211
+ </verify_peer>
1212
+ <line_items_enabled translate="label">
1213
+ <label>Transfer Cart Line Items</label>
1214
+ <config_path>payment/paypal_direct/line_items_enabled</config_path>
1215
+ <frontend_type>select</frontend_type>
1216
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1217
+ <sort_order>40</sort_order>
1218
+ <show_in_default>1</show_in_default>
1219
+ <show_in_website>1</show_in_website>
1220
+ </line_items_enabled>
1221
+ <useccv translate="label">
1222
+ <label>Require CVV Entry</label>
1223
+ <config_path>payment/paypal_direct/useccv</config_path>
1224
+ <frontend_type>select</frontend_type>
1225
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1226
+ <sort_order>50</sort_order>
1227
+ <show_in_default>1</show_in_default>
1228
+ <show_in_website>1</show_in_website>
1229
+ </useccv>
1230
+ <heading_3dsecure translate="label">
1231
+ <label>3D Secure</label>
1232
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1233
+ <sort_order>55</sort_order>
1234
+ <show_in_default>1</show_in_default>
1235
+ <show_in_website>1</show_in_website>
1236
+ </heading_3dsecure>
1237
+ <centinel translate="label">
1238
+ <label>3D Secure Card Validation</label>
1239
+ <config_path>payment/paypal_direct/centinel</config_path>
1240
+ <frontend_type>select</frontend_type>
1241
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1242
+ <sort_order>60</sort_order>
1243
+ <show_in_default>1</show_in_default>
1244
+ <show_in_website>1</show_in_website>
1245
+ </centinel>
1246
+ <centinel_is_mode_strict translate="label comment">
1247
+ <label>Severe 3D Secure Card Validation</label>
1248
+ <config_path>payment/paypal_direct/centinel_is_mode_strict</config_path>
1249
+ <comment>Severe Validation Removes Chargeback Liability on Merchant</comment>
1250
+ <frontend_type>select</frontend_type>
1251
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1252
+ <sort_order>65</sort_order>
1253
+ <show_in_default>1</show_in_default>
1254
+ <show_in_website>1</show_in_website>
1255
+ <depends><centinel>1</centinel></depends>
1256
+ </centinel_is_mode_strict>
1257
+ <centinel_api_url translate="label comment">
1258
+ <label>Centinel Custom API URL</label>
1259
+ <config_path>payment/paypal_direct/centinel_api_url</config_path>
1260
+ <comment>If empty, a default value will be used. Custom URL may be provided by CardinalCommerce agreement.</comment>
1261
+ <frontend_type>text</frontend_type>
1262
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1263
+ <sort_order>70</sort_order>
1264
+ <show_in_default>1</show_in_default>
1265
+ <show_in_website>1</show_in_website>
1266
+ <depends><centinel>1</centinel></depends>
1267
+ </centinel_api_url>
1268
+ <wpp_billing_agreement type="group" translate="label">
1269
+ <label>PayPal Billing Agreement Settings</label>
1270
+ <frontend_type>text</frontend_type>
1271
+ <show_in_default>1</show_in_default>
1272
+ <show_in_website>1</show_in_website>
1273
+ <show_in_store>1</show_in_store>
1274
+ <sort_order>80</sort_order>
1275
+ <fields>
1276
+ <active extends="//paypal_payments/payflow_advanced//billing_agreement/*/active" />
1277
+ <title extends="//paypal_payments/payflow_advanced//billing_agreement/*/title" />
1278
+ <sort_order extends="//paypal_payments/payflow_advanced//billing_agreement/*/sort_order" />
1279
+ <payment_action extends="//paypal_payments/payflow_advanced//billing_agreement/*/payment_action" />
1280
+ <allowspecific extends="//paypal_payments/payflow_advanced//billing_agreement/*/allowspecific" />
1281
+ <specificcountry extends="//paypal_payments/payflow_advanced//billing_agreement/*/specificcountry" />
1282
+ <debug extends="//paypal_payments/payflow_advanced//billing_agreement/*/debug" />
1283
+ <verify_peer extends="//paypal_payments/payflow_advanced//billing_agreement/*/verify_peer" />
1284
+ <line_items_enabled extends="//paypal_payments/payflow_advanced//billing_agreement/*/line_items_enabled" />
1285
+ <allow_billing_agreement_wizard extends="//paypal_payments/payflow_advanced//billing_agreement/*/allow_billing_agreement_wizard" />
1286
+ </fields>
1287
+ </wpp_billing_agreement>
1288
+ <wpp_settlement_report type="group" translate="label">
1289
+ <label>Settlement Report Settings</label>
1290
+ <frontend_type>text</frontend_type>
1291
+ <show_in_default>1</show_in_default>
1292
+ <show_in_website>1</show_in_website>
1293
+ <sort_order>90</sort_order>
1294
+ <fields>
1295
+ <heading_sftp extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_sftp" />
1296
+ <settlement_reports_ftp_login extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_login" />
1297
+ <settlement_reports_ftp_password extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_password" />
1298
+ <settlement_reports_ftp_sandbox extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_sandbox" />
1299
+ <settlement_reports_ftp_ip extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_ip" />
1300
+ <settlement_reports_ftp_path extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_path" />
1301
+ <heading_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_schedule" />
1302
+ <settlement_reports_active extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_active" />
1303
+ <settlement_reports_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_schedule" />
1304
+ <settlement_reports_time extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_time" />
1305
+ </fields>
1306
+ </wpp_settlement_report>
1307
+ <wpp_frontend type="group" translate="label">
1308
+ <label>Frontend Experience Settings</label>
1309
+ <frontend_type>text</frontend_type>
1310
+ <show_in_default>1</show_in_default>
1311
+ <show_in_website>1</show_in_website>
1312
+ <show_in_store>1</show_in_store>
1313
+ <sort_order>100</sort_order>
1314
+ <fields>
1315
+ <logo extends="//paypal_payments/payflow_advanced//frontend/*/logo" />
1316
+ <paypal_pages extends="//paypal_payments/payflow_advanced//frontend/*/paypal_pages" />
1317
+ <page_style extends="//paypal_payments/payflow_advanced//frontend/*/page_style" />
1318
+ <paypal_hdrimg extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrimg" />
1319
+ <paypal_hdrbackcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbackcolor" />
1320
+ <paypal_hdrbordercolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbordercolor" />
1321
+ <paypal_payflowcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_payflowcolor" />
1322
+ </fields>
1323
+ </wpp_frontend>
1324
+ </fields>
1325
+ </wpp_settings_advanced>
1326
+ </fields>
1327
+ </wpp_settings>
1328
 
1329
+ <wpp_settings_express_checkout type="group" translate="label">
1330
+ <label>Basic Settings - PayPal Express Checkout</label>
1331
+ <frontend_type>text</frontend_type>
1332
+ <show_in_default>1</show_in_default>
1333
+ <show_in_website>1</show_in_website>
1334
+ <show_in_store>1</show_in_store>
1335
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
1336
+ <sort_order>30</sort_order>
1337
+ <fields>
1338
+ <title extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/title" />
1339
+ <sort_order extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/sort_order" />
1340
+ <payment_action extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/payment_action" />
1341
+ <visible_on_cart extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/visible_on_cart" />
1342
+ <visible_on_product extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/visible_on_product" />
1343
+ <authorization_honor_period extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/authorization_honor_period" />
1344
+ <order_valid_period extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/order_valid_period" />
1345
+ <child_authorization_number extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/child_authorization_number" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1346
 
1347
+ <wpp_settings_express_checkout_advanced type="group" translate="label">
1348
+ <label>Advanced Settings</label>
1349
+ <frontend_class>config-advanced</frontend_class>
1350
+ <frontend_type>text</frontend_type>
1351
+ <show_in_default>1</show_in_default>
1352
+ <show_in_website>1</show_in_website>
1353
+ <show_in_store>1</show_in_store>
1354
+ <sort_order>80</sort_order>
1355
+ <fields>
1356
+ <allowspecific extends="//paypal_payments/payflow_advanced//settings_express_checkout//allowspecific" />
1357
+ <specificcountry extends="//paypal_payments/payflow_advanced//settings_express_checkout//specificcountry" />
1358
+ <debug extends="//paypal_payments/payflow_advanced//settings_express_checkout//debug" />
1359
+ <verify_peer extends="//paypal_payments/payflow_advanced//settings_express_checkout//verify_peer" />
1360
+ <line_items_enabled extends="//paypal_payments/payflow_advanced//settings_express_checkout//line_items_enabled" />
1361
+ <transfer_shipping_options extends="//paypal_payments/payflow_advanced//settings_express_checkout//transfer_shipping_options" />
1362
+ <button_flavor extends="//paypal_payments/payflow_advanced//settings_express_checkout//button_flavor" />
1363
+ <solution_type extends="//paypal_payments/payflow_advanced//settings_express_checkout//solution_type" />
1364
+ <require_billing_address extends="//paypal_payments/payflow_advanced//settings_express_checkout//require_billing_address" />
1365
+ <allow_ba_signup extends="//paypal_payments/payflow_advanced//settings_express_checkout//allow_ba_signup" />
1366
+ </fields>
1367
+ </wpp_settings_express_checkout_advanced>
1368
+ </fields>
1369
+ </wpp_settings_express_checkout>
1370
+ </fields>
1371
+ </wpp>
1372
+ <wps type="group" translate="label comment">
1373
+ <label>Website Payments Standard</label>
1374
+ <frontend_type>text</frontend_type>
1375
+ <show_in_default>1</show_in_default>
1376
+ <show_in_website>1</show_in_website>
1377
+ <show_in_store>1</show_in_store>
1378
+ <sort_order>50</sort_order>
1379
+ <group>paypal_payment_solutions</group>
1380
+ <include>1</include>
1381
+ <frontend_class>pp-method-general</frontend_class>
1382
+ <frontend_model>paypal/adminhtml_system_config_fieldset_payment</frontend_model>
1383
+ <comment>Accept credit card and PayPal payments securely.</comment>
1384
+ <activity_path>payment/paypal_standard/active</activity_path>
1385
+ <learn_more_link>https://www.paypal.com/webapps/mpp/referral/website-payments-standard?partner_id=NB9WWHYEMVUMS</learn_more_link>
1386
+ <backend_config>
1387
+ <AU>
1388
+ <sort_order>20</sort_order>
1389
+ </AU>
1390
+ <CA>
1391
+ <sort_order>20</sort_order>
1392
+ </CA>
1393
+ <US translate="label">
1394
+ <label>Payments Standard</label>
1395
+ <group>paypal_group_all_in_one</group>
1396
+ <fields>
1397
+ <settings_payments_standart translate="label">
1398
+ <label>Basic Settings - PayPal Payments Standard</label>
1399
+ </settings_payments_standart>
1400
+ </fields>
1401
+ </US>
1402
+ <GB translate="comment">
1403
+ <group>paypal_group_all_in_one</group>
1404
+ <frontend_class>pp-general-uk</frontend_class>
1405
+ <sort_order>10</sort_order>
1406
+ <learn_more_link>https://www.paypal-business.co.uk/accept-online-payments-with-paypal/index.htm</learn_more_link>
1407
+ <demo_link>http://www.youtube.com/watch?v=mdPjvziH_rk&amp;list=PLF18B1094ABCD7CE8&amp;index=6&amp;feature=plpp_video</demo_link>
1408
+ <comment>Accept credit cards, debit cards and PayPal payments securely.</comment>
1409
+ </GB>
1410
+ </backend_config>
1411
+ <fields>
1412
+ <wps_required_settings type="group" translate="label">
1413
+ <label>Required PayPal Settings</label>
1414
+ <frontend_type>text</frontend_type>
1415
+ <show_in_default>1</show_in_default>
1416
+ <show_in_website>1</show_in_website>
1417
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
1418
+ <sort_order>10</sort_order>
1419
+ <fields>
1420
+ <business_account extends="//paypal_payments/payflow_advanced//business_account" />
1421
+ <enable_wps translate="label">
1422
+ <label>Enable this Solution</label>
1423
+ <config_path>payment/paypal_standard/active</config_path>
1424
+ <frontend_type>select</frontend_type>
1425
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1426
+ <sort_order>20</sort_order>
1427
+ <show_in_default>1</show_in_default>
1428
+ <show_in_website>1</show_in_website>
1429
+ <requires>wps_required_settings_business_account</requires>
1430
+ <frontend_class>paypal-enabler paypal-ec-conflicts</frontend_class>
1431
+ </enable_wps>
1432
+ </fields>
1433
+ </wps_required_settings>
1434
+ <settings_payments_standart type="group" translate="label">
1435
+ <label>Basic Settings - PayPal Website Payments Standard</label>
1436
+ <frontend_type>text</frontend_type>
1437
+ <show_in_default>1</show_in_default>
1438
+ <show_in_website>1</show_in_website>
1439
+ <show_in_store>1</show_in_store>
1440
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
1441
+ <sort_order>20</sort_order>
1442
+ <fields>
1443
+ <title translate="label comment">
1444
+ <label>Title</label>
1445
+ <comment>It is recommended to set this value to "PayPal" per store views.</comment>
1446
+ <config_path>payment/paypal_standard/title</config_path>
1447
+ <frontend_type>text</frontend_type>
1448
+ <sort_order>10</sort_order>
1449
+ <show_in_default>1</show_in_default>
1450
+ <show_in_website>1</show_in_website>
1451
+ <show_in_store>1</show_in_store>
1452
+ </title>
1453
+ <sort_order translate="label">
1454
+ <label>Sort Order</label>
1455
+ <config_path>payment/paypal_standard/sort_order</config_path>
1456
+ <frontend_type>text</frontend_type>
1457
+ <sort_order>20</sort_order>
1458
+ <show_in_default>1</show_in_default>
1459
+ <show_in_website>1</show_in_website>
1460
+ <show_in_store>1</show_in_store>
1461
+ <frontend_class>validate-number</frontend_class>
1462
+ </sort_order>
1463
+ <payment_action translate="label">
1464
+ <label>Payment Action</label>
1465
+ <config_path>payment/paypal_standard/payment_action</config_path>
1466
+ <frontend_type>select</frontend_type>
1467
+ <source_model>paypal/system_config_source_paymentActions</source_model>
1468
+ <sort_order>30</sort_order>
1469
+ <show_in_default>1</show_in_default>
1470
+ <show_in_website>1</show_in_website>
1471
+ </payment_action>
1472
+ <settings_payments_standart_advanced type="group" translate="label">
1473
+ <label>Advanced Settings</label>
1474
+ <frontend_class>config-advanced</frontend_class>
1475
+ <frontend_type>text</frontend_type>
1476
+ <show_in_default>1</show_in_default>
1477
+ <show_in_website>1</show_in_website>
1478
+ <sort_order>40</sort_order>
1479
+ <fields>
1480
+ <allowspecific translate="label">
1481
+ <label>Payment Applicable From</label>
1482
+ <config_path>payment/paypal_standard/allowspecific</config_path>
1483
+ <frontend_type>select</frontend_type>
1484
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
1485
+ <sort_order>10</sort_order>
1486
+ <show_in_default>1</show_in_default>
1487
+ <show_in_website>1</show_in_website>
1488
+ </allowspecific>
1489
+ <specificcountry translate="label">
1490
+ <label>Countries Payment Applicable From</label>
1491
+ <config_path>payment/paypal_standard/specificcountry</config_path>
1492
+ <frontend_type>multiselect</frontend_type>
1493
+ <source_model>paypal/system_config_source_buyerCountry</source_model>
1494
+ <sort_order>20</sort_order>
1495
+ <show_in_default>1</show_in_default>
1496
+ <show_in_website>1</show_in_website>
1497
+ <depends><allowspecific>1</allowspecific></depends>
1498
+ </specificcountry>
1499
+ <sandbox_flag translate="label">
1500
+ <label>Sandbox Mode</label>
1501
+ <config_path>payment/paypal_standard/sandbox_flag</config_path>
1502
+ <frontend_type>select</frontend_type>
1503
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1504
+ <sort_order>30</sort_order>
1505
+ <show_in_default>1</show_in_default>
1506
+ <show_in_website>1</show_in_website>
1507
+ </sandbox_flag>
1508
+ <line_items_enabled translate="label">
1509
+ <label>Transfer Cart Line Items</label>
1510
+ <config_path>payment/paypal_standard/line_items_enabled</config_path>
1511
+ <frontend_type>select</frontend_type>
1512
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1513
+ <sort_order>40</sort_order>
1514
+ <show_in_default>1</show_in_default>
1515
+ <show_in_website>1</show_in_website>
1516
+ </line_items_enabled>
1517
+ <line_items_summary translate="label comment">
1518
+ <label>Summary Text for Aggregated Cart</label>
1519
+ <config_path>payment/paypal_standard/line_items_summary</config_path>
1520
+ <comment>Uses store frontend name by default.</comment>
1521
+ <frontend_type>text</frontend_type>
1522
+ <sort_order>50</sort_order>
1523
+ <show_in_default>1</show_in_default>
1524
+ <show_in_website>1</show_in_website>
1525
+ <show_in_store>1</show_in_store>
1526
+ <depends><line_items_enabled>0</line_items_enabled></depends>
1527
+ </line_items_summary>
1528
+ <debug translate="label">
1529
+ <label>Debug Mode</label>
1530
+ <config_path>payment/paypal_standard/debug</config_path>
1531
+ <frontend_type>select</frontend_type>
1532
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1533
+ <sort_order>60</sort_order>
1534
+ <show_in_default>1</show_in_default>
1535
+ <show_in_website>1</show_in_website>
1536
+ </debug>
1537
+ <verify_peer translate="label">
1538
+ <label>Enable SSL verification</label>
1539
+ <config_path>payment/paypal_standard/verify_peer</config_path>
1540
+ <frontend_type>select</frontend_type>
1541
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1542
+ <sort_order>70</sort_order>
1543
+ <show_in_default>1</show_in_default>
1544
+ <show_in_website>1</show_in_website>
1545
+ </verify_peer>
1546
+ </fields>
1547
+ </settings_payments_standart_advanced>
1548
+ </fields>
1549
+ </settings_payments_standart>
1550
+ </fields>
1551
+ </wps>
1552
+ <paypal_verisign type="group" translate="label comment">
1553
+ <label>Payflow Pro</label>
1554
+ <frontend_type>text</frontend_type>
1555
+ <frontend_model>paypal/adminhtml_system_config_fieldset_payment</frontend_model>
1556
+ <frontend_class>pp-method-payflow</frontend_class>
1557
+ <show_in_default>1</show_in_default>
1558
+ <show_in_website>1</show_in_website>
1559
+ <show_in_store>1</show_in_store>
1560
+ <sort_order>10</sort_order>
1561
+ <group>paypal_payment_solutions</group>
1562
+ <comment>Connect your merchant account with a fully customizable gateway that lets customers pay without leaving your site.</comment>
1563
+ <activity_path>payment/verisign/active</activity_path>
1564
+ <learn_more_link>https://www.paypal.com/webapps/mpp/referral/paypal-payflow-pro?partner_id=NB9WWHYEMVUMS</learn_more_link>
1565
+ <paypal_ec_separate>1</paypal_ec_separate>
1566
+ <backend_config>
1567
+ <CA>
1568
+ <include>1</include>
1569
+ <sort_order>30</sort_order>
1570
+ </CA>
1571
+ <AU>
1572
+ <include>1</include>
1573
+ <sort_order>20</sort_order>
1574
+ </AU>
1575
+ <NZ>
1576
+ <include>1</include>
1577
+ <sort_order>20</sort_order>
1578
+ </NZ>
1579
+ </backend_config>
1580
+ <fields>
1581
+ <paypal_payflow_required type="group" translate="label">
1582
+ <label>Required PayPal Settings</label>
1583
+ <frontend_type>text</frontend_type>
1584
+ <show_in_default>1</show_in_default>
1585
+ <show_in_website>1</show_in_website>
1586
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
1587
+ <sort_order>10</sort_order>
1588
+ <fields>
1589
+ <paypal_payflow_api_settings type="group" translate="label">
1590
+ <label>Payflow Pro</label>
1591
+ <frontend_type>text</frontend_type>
1592
+ <show_in_default>1</show_in_default>
1593
+ <show_in_website>1</show_in_website>
1594
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
1595
+ <sort_order>10</sort_order>
1596
+ <fields>
1597
+ <partner translate="label">
1598
+ <label>Partner</label>
1599
+ <config_path>payment/verisign/partner</config_path>
1600
+ <frontend_type>text</frontend_type>
1601
+ <sort_order>20</sort_order>
1602
+ <show_in_default>1</show_in_default>
1603
+ <show_in_website>1</show_in_website>
1604
+ </partner>
1605
+ <user translate="label">
1606
+ <label>User</label>
1607
+ <config_path>payment/verisign/user</config_path>
1608
+ <frontend_type>obscure</frontend_type>
1609
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
1610
+ <sort_order>30</sort_order>
1611
+ <show_in_default>1</show_in_default>
1612
+ <show_in_website>1</show_in_website>
1613
+ </user>
1614
+ <vendor translate="label">
1615
+ <label>Vendor</label>
1616
+ <config_path>payment/verisign/vendor</config_path>
1617
+ <frontend_type>text</frontend_type>
1618
+ <sort_order>40</sort_order>
1619
+ <show_in_default>1</show_in_default>
1620
+ <show_in_website>1</show_in_website>
1621
+ </vendor>
1622
+ <pwd translate="label">
1623
+ <label>Password</label>
1624
+ <config_path>payment/verisign/pwd</config_path>
1625
+ <frontend_type>obscure</frontend_type>
1626
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
1627
+ <sort_order>50</sort_order>
1628
+ <show_in_default>1</show_in_default>
1629
+ <show_in_website>1</show_in_website>
1630
+ </pwd>
1631
+ <sandbox_flag translate="label">
1632
+ <label>Test Mode</label>
1633
+ <config_path>payment/verisign/sandbox_flag</config_path>
1634
+ <frontend_type>select</frontend_type>
1635
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1636
+ <sort_order>60</sort_order>
1637
+ <show_in_default>1</show_in_default>
1638
+ <show_in_website>1</show_in_website>
1639
+ </sandbox_flag>
1640
+ <use_proxy translate="label">
1641
+ <label>Use Proxy</label>
1642
+ <config_path>payment/verisign/use_proxy</config_path>
1643
+ <frontend_type>select</frontend_type>
1644
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1645
+ <sort_order>70</sort_order>
1646
+ <show_in_default>1</show_in_default>
1647
+ <show_in_website>1</show_in_website>
1648
+ </use_proxy>
1649
+ <proxy_host translate="label">
1650
+ <label>Proxy Host</label>
1651
+ <config_path>payment/verisign/proxy_host</config_path>
1652
+ <frontend_type>text</frontend_type>
1653
+ <sort_order>80</sort_order>
1654
+ <show_in_default>1</show_in_default>
1655
+ <show_in_website>1</show_in_website>
1656
+ <depends><use_proxy>1</use_proxy></depends>
1657
+ </proxy_host>
1658
+ <proxy_port translate="label">
1659
+ <label>Proxy Port</label>
1660
+ <config_path>payment/verisign/proxy_port</config_path>
1661
+ <frontend_type>text</frontend_type>
1662
+ <sort_order>90</sort_order>
1663
+ <show_in_default>1</show_in_default>
1664
+ <show_in_website>1</show_in_website>
1665
+ <depends><use_proxy>1</use_proxy></depends>
1666
+ </proxy_port>
1667
+ </fields>
1668
+ </paypal_payflow_api_settings>
1669
+ <enable_paypal_payflow translate="label">
1670
+ <label>Enable this Solution</label>
1671
+ <config_path>payment/verisign/active</config_path>
1672
+ <frontend_type>select</frontend_type>
1673
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1674
+ <sort_order>20</sort_order>
1675
+ <show_in_default>1</show_in_default>
1676
+ <show_in_website>1</show_in_website>
1677
+ <requires>paypal_payflow_api_settings</requires>
1678
+ <frontend_class>paypal-enabler paypal-ec-separate</frontend_class>
1679
+ </enable_paypal_payflow>
1680
+ </fields>
1681
+ </paypal_payflow_required>
1682
+ <settings_paypal_payflow type="group" translate="label">
1683
+ <label>Basic Settings - PayPal Payflow Pro</label>
1684
+ <frontend_type>text</frontend_type>
1685
+ <show_in_default>1</show_in_default>
1686
+ <show_in_website>1</show_in_website>
1687
+ <show_in_store>1</show_in_store>
1688
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
1689
+ <sort_order>20</sort_order>
1690
+ <fields>
1691
+ <title translate="label comment">
1692
+ <label>Title</label>
1693
+ <comment>It is recommended to set this value to "Debit or Credit Card" per store views.</comment>
1694
+ <config_path>payment/verisign/title</config_path>
1695
+ <frontend_type>text</frontend_type>
1696
+ <sort_order>10</sort_order>
1697
+ <show_in_default>1</show_in_default>
1698
+ <show_in_website>1</show_in_website>
1699
+ <show_in_store>1</show_in_store>
1700
+ </title>
1701
+ <sort_order translate="label">
1702
+ <label>Sort Order</label>
1703
+ <config_path>payment/verisign/sort_order</config_path>
1704
+ <frontend_type>text</frontend_type>
1705
+ <sort_order>20</sort_order>
1706
+ <show_in_default>1</show_in_default>
1707
+ <show_in_website>1</show_in_website>
1708
+ <show_in_store>1</show_in_store>
1709
+ <frontend_class>validate-number</frontend_class>
1710
+ </sort_order>
1711
+ <payment_action translate="label">
1712
+ <label>Payment Action</label>
1713
+ <config_path>payment/verisign/payment_action</config_path>
1714
+ <frontend_type>select</frontend_type>
1715
+ <source_model>paypal/system_config_source_paymentActions</source_model>
1716
+ <sort_order>30</sort_order>
1717
+ <show_in_default>1</show_in_default>
1718
+ <show_in_website>1</show_in_website>
1719
+ </payment_action>
1720
+ <heading_cc translate="label">
1721
+ <label>Credit Card Settings</label>
1722
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1723
+ <sort_order>40</sort_order>
1724
+ <show_in_default>1</show_in_default>
1725
+ <show_in_website>1</show_in_website>
1726
+ </heading_cc>
1727
+ <cctypes translate="label comment">
1728
+ <label>Allowed Credit Card Types</label>
1729
+ <comment><![CDATA[Supporting of American Express cards require additional agreement. Learn more at <a href="http://www.paypal.com/amexupdate">http://www.paypal.com/amexupdate</a>.]]></comment>
1730
+ <config_path>payment/verisign/cctypes</config_path>
1731
+ <frontend_type>multiselect</frontend_type>
1732
+ <source_model>paypal/config::getPayflowproCcTypesAsOptionArray</source_model>
1733
+ <sort_order>50</sort_order>
1734
+ <show_in_default>1</show_in_default>
1735
+ <show_in_website>1</show_in_website>
1736
+ </cctypes>
1737
+ <settings_paypal_payflow_advanced type="group" translate="label">
1738
+ <label>Advanced Settings</label>
1739
+ <frontend_class>config-advanced</frontend_class>
1740
+ <frontend_type>text</frontend_type>
1741
+ <show_in_default>1</show_in_default>
1742
+ <show_in_website>1</show_in_website>
1743
+ <show_in_store>1</show_in_store>
1744
+ <sort_order>60</sort_order>
1745
+ <fields>
1746
+ <allowspecific translate="label">
1747
+ <label>Payment Applicable From</label>
1748
+ <config_path>payment/verisign/allowspecific</config_path>
1749
+ <frontend_type>select</frontend_type>
1750
+ <sort_order>10</sort_order>
1751
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
1752
+ <show_in_default>1</show_in_default>
1753
+ <show_in_website>1</show_in_website>
1754
+ </allowspecific>
1755
+ <specificcountry translate="label">
1756
+ <label>Countries Payment Applicable From</label>
1757
+ <config_path>payment/verisign/specificcountry</config_path>
1758
+ <frontend_type>multiselect</frontend_type>
1759
+ <sort_order>20</sort_order>
1760
+ <source_model>paypal/system_config_source_buyerCountry</source_model>
1761
+ <show_in_default>1</show_in_default>
1762
+ <show_in_website>1</show_in_website>
1763
+ <depends><allowspecific>1</allowspecific></depends>
1764
+ </specificcountry>
1765
+ <debug translate="label">
1766
+ <label>Debug Mode</label>
1767
+ <config_path>payment/verisign/debug</config_path>
1768
+ <frontend_type>select</frontend_type>
1769
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1770
+ <sort_order>30</sort_order>
1771
+ <show_in_default>1</show_in_default>
1772
+ <show_in_website>1</show_in_website>
1773
+ </debug>
1774
+ <verify_peer translate="label">
1775
+ <label>Enable SSL verification</label>
1776
+ <config_path>payment/verisign/verify_peer</config_path>
1777
+ <frontend_type>select</frontend_type>
1778
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1779
+ <sort_order>35</sort_order>
1780
+ <show_in_default>1</show_in_default>
1781
+ <show_in_website>1</show_in_website>
1782
+ </verify_peer>
1783
+ <useccv translate="label">
1784
+ <label>Require CVV Entry</label>
1785
+ <config_path>payment/verisign/useccv</config_path>
1786
+ <frontend_type>select</frontend_type>
1787
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1788
+ <sort_order>40</sort_order>
1789
+ <show_in_default>1</show_in_default>
1790
+ <show_in_website>1</show_in_website>
1791
+ </useccv>
1792
+ <heading_3dsecure translate="label">
1793
+ <label>3D Secure</label>
1794
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
1795
+ <sort_order>50</sort_order>
1796
+ <show_in_default>1</show_in_default>
1797
+ <show_in_website>1</show_in_website>
1798
+ </heading_3dsecure>
1799
+ <centinel translate="label">
1800
+ <label>3D Secure Card Validation</label>
1801
+ <config_path>payment/verisign/centinel</config_path>
1802
+ <frontend_type>select</frontend_type>
1803
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1804
+ <sort_order>60</sort_order>
1805
+ <show_in_default>1</show_in_default>
1806
+ <show_in_website>1</show_in_website>
1807
+ </centinel>
1808
+ <centinel_is_mode_strict translate="label comment">
1809
+ <label>Severe 3D Secure Card Validation</label>
1810
+ <config_path>payment/verisign/centinel_is_mode_strict</config_path>
1811
+ <comment>Severe validation removes chargeback liability on merchant.</comment>
1812
+ <frontend_type>select</frontend_type>
1813
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1814
+ <sort_order>70</sort_order>
1815
+ <show_in_default>1</show_in_default>
1816
+ <show_in_website>1</show_in_website>
1817
+ <depends><centinel>1</centinel></depends>
1818
+ </centinel_is_mode_strict>
1819
+ <centinel_api_url translate="label comment">
1820
+ <label>Centinel API URL</label>
1821
+ <config_path>payment/verisign/centinel_api_url</config_path>
1822
+ <comment>A value is required for live mode. Refer to your CardinalCommerce agreement.</comment>
1823
+ <frontend_type>text</frontend_type>
1824
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1825
+ <sort_order>80</sort_order>
1826
+ <show_in_default>1</show_in_default>
1827
+ <show_in_website>1</show_in_website>
1828
+ <depends><centinel>1</centinel></depends>
1829
+ </centinel_api_url>
1830
+ <paypal_payflow_settlement_report type="group" translate="label">
1831
+ <label>Settlement Report Settings</label>
1832
+ <frontend_type>text</frontend_type>
1833
+ <show_in_default>1</show_in_default>
1834
+ <show_in_website>1</show_in_website>
1835
+ <sort_order>90</sort_order>
1836
+ <fields>
1837
+ <heading_sftp extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_sftp" />
1838
+ <settlement_reports_ftp_login extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_login" />
1839
+ <settlement_reports_ftp_password extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_password" />
1840
+ <settlement_reports_ftp_sandbox extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_sandbox" />
1841
+ <settlement_reports_ftp_ip extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_ip" />
1842
+ <settlement_reports_ftp_path extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_path" />
1843
+ <heading_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_schedule" />
1844
+ <settlement_reports_active extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_active" />
1845
+ <settlement_reports_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_schedule" />
1846
+ <settlement_reports_time extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_time" />
1847
+ </fields>
1848
+ </paypal_payflow_settlement_report>
1849
+ </fields>
1850
+ </settings_paypal_payflow_advanced>
1851
+ </fields>
1852
+ </settings_paypal_payflow>
1853
+ </fields>
1854
+ </paypal_verisign>
1855
+ <paypal_verisign_with_express_checkout type="group" translate="label comment" extends="//paypal_payments/paypal_verisign">
1856
+ <label>Payflow Pro (Includes Express Checkout)</label>
1857
+ <paypal_ec_separate>0</paypal_ec_separate>
1858
+ <backend_config>
1859
+ <AU>
1860
+ <include>0</include>
1861
+ </AU>
1862
+ <CA>
1863
+ <include>0</include>
1864
+ </CA>
1865
+ <US>
1866
+ <include>1</include>
1867
+ <group>paypal_payment_gateways</group>
1868
+ <fields>
1869
+ <paypal_payflow_required>
1870
+ <fields>
1871
+ <paypal_payflow_api_settings>
1872
+ <fields>
1873
+ <business_account extends="//paypal_payments/payflow_advanced//business_account" translate="label">
1874
+ <sort_order>10</sort_order>
1875
+ <frontend_class>not-required</frontend_class>
1876
+ <label>Email Associated with PayPal Merchant Account (Optional)</label>
1877
+ </business_account>
1878
+ </fields>
1879
+ </paypal_payflow_api_settings>
1880
+ <enable_paypal_payflow>
1881
+ <frontend_class>paypal-enabler paypal-ec-pe</frontend_class>
1882
+ </enable_paypal_payflow>
1883
+ </fields>
1884
+ </paypal_payflow_required>
1885
+ </fields>
1886
+ </US>
1887
+ <NZ>
1888
+ <include>0</include>
1889
+ </NZ>
1890
+ </backend_config>
1891
+ <fields>
1892
+ <paypal_payflow_required type="group" translate="label">
1893
+ <label>Required PayPal Settings</label>
1894
+ <frontend_type>text</frontend_type>
1895
+ <show_in_default>1</show_in_default>
1896
+ <show_in_website>1</show_in_website>
1897
+ <sort_order>10</sort_order>
1898
+ <fields>
1899
+ <paypal_payflow_api_settings type="group" translate="label">
1900
+ <label>Payflow Pro and Express Checkout</label>
1901
+ </paypal_payflow_api_settings>
1902
+ </fields>
1903
+ </paypal_payflow_required>
1904
+ <settings_paypal_payflow type="group" translate="label">
1905
+ <fields>
1906
+ <settings_paypal_payflow_advanced type="group" translate="label">
1907
+ <fields>
1908
+ <paypal_payflow_frontend type="group" translate="label">
1909
+ <label>Frontend Experience Settings</label>
1910
+ <frontend_type>text</frontend_type>
1911
+ <show_in_default>1</show_in_default>
1912
+ <show_in_website>1</show_in_website>
1913
+ <show_in_store>1</show_in_store>
1914
+ <sort_order>100</sort_order>
1915
+ <fields>
1916
+ <logo extends="//paypal_payments/payflow_advanced//frontend/*/logo" />
1917
+ <paypal_pages extends="//paypal_payments/payflow_advanced//frontend/*/paypal_pages" />
1918
+ <page_style extends="//paypal_payments/payflow_advanced//frontend/*/page_style" />
1919
+ <paypal_hdrimg extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrimg" />
1920
+ <paypal_hdrbackcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbackcolor" />
1921
+ <paypal_hdrbordercolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbordercolor" />
1922
+ <paypal_payflowcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_payflowcolor" />
1923
+ </fields>
1924
+ </paypal_payflow_frontend>
1925
+ </fields>
1926
+ </settings_paypal_payflow_advanced>
1927
+ </fields>
1928
+ </settings_paypal_payflow>
1929
+ <paypal_payflow_express_checkout type="group" translate="label">
1930
+ <label>Basic Settings - PayPal Express Checkout</label>
1931
+ <frontend_type>text</frontend_type>
1932
+ <show_in_default>1</show_in_default>
1933
+ <show_in_website>1</show_in_website>
1934
+ <show_in_store>1</show_in_store>
1935
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
1936
+ <sort_order>30</sort_order>
1937
+ <fields>
1938
+ <enable_express_pe>
1939
+ <config_path>payment/paypaluk_express/active</config_path>
1940
+ <frontend_type>select</frontend_type>
1941
+ <frontend_model>paypal/adminhtml_system_config_field_hidden</frontend_model>
1942
+ <frontend_class>paypal-ec-payflow-enabler</frontend_class>
1943
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1944
+ <show_in_default>1</show_in_default>
1945
+ <show_in_website>1</show_in_website>
1946
+ </enable_express_pe>
1947
+ <title translate="label">
1948
+ <label>Title</label>
1949
+ <config_path>payment/paypaluk_express/title</config_path>
1950
+ <frontend_type>text</frontend_type>
1951
+ <sort_order>10</sort_order>
1952
+ <show_in_default>1</show_in_default>
1953
+ <show_in_website>1</show_in_website>
1954
+ <show_in_store>1</show_in_store>
1955
+ </title>
1956
+ <sort_order translate="label">
1957
+ <label>Sort Order</label>
1958
+ <config_path>payment/paypaluk_express/sort_order</config_path>
1959
+ <frontend_type>text</frontend_type>
1960
+ <sort_order>20</sort_order>
1961
+ <show_in_default>1</show_in_default>
1962
+ <show_in_website>1</show_in_website>
1963
+ <show_in_store>1</show_in_store>
1964
+ <frontend_class>validate-number</frontend_class>
1965
+ </sort_order>
1966
+ <payment_action translate="label">
1967
+ <label>Payment Action</label>
1968
+ <config_path>payment/paypaluk_express/payment_action</config_path>
1969
+ <frontend_type>select</frontend_type>
1970
+ <source_model>paypal/system_config_source_paymentActions</source_model>
1971
+ <sort_order>30</sort_order>
1972
+ <show_in_default>1</show_in_default>
1973
+ <show_in_website>1</show_in_website>
1974
+ </payment_action>
1975
+ <visible_on_cart translate="label comment">
1976
+ <label>Shortcut on Shopping Cart</label>
1977
+ <comment>Also affects mini-shopping cart.</comment>
1978
+ <config_path>payment/paypaluk_express/visible_on_cart</config_path>
1979
+ <frontend_type>select</frontend_type>
1980
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1981
+ <sort_order>40</sort_order>
1982
+ <show_in_default>1</show_in_default>
1983
+ <show_in_website>1</show_in_website>
1984
+ <show_in_store>1</show_in_store>
1985
+ </visible_on_cart>
1986
+ <visible_on_product translate="label">
1987
+ <label>Shortcut on Product View</label>
1988
+ <config_path>payment/paypaluk_express/visible_on_product</config_path>
1989
+ <frontend_type>select</frontend_type>
1990
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1991
+ <sort_order>50</sort_order>
1992
+ <show_in_default>1</show_in_default>
1993
+ <show_in_website>1</show_in_website>
1994
+ <show_in_store>1</show_in_store>
1995
+ </visible_on_product>
1996
+ <paypal_payflow_express_checkout_advanced type="group" translate="label">
1997
+ <label>Advanced Settings</label>
1998
+ <frontend_class>config-advanced</frontend_class>
1999
+ <frontend_type>text</frontend_type>
2000
+ <show_in_default>1</show_in_default>
2001
+ <show_in_website>1</show_in_website>
2002
+ <sort_order>60</sort_order>
2003
+ <fields>
2004
+ <allowspecific translate="label">
2005
+ <label>Payment Applicable From</label>
2006
+ <config_path>payment/paypaluk_express/allowspecific</config_path>
2007
+ <frontend_type>select</frontend_type>
2008
+ <sort_order>10</sort_order>
2009
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
2010
+ <show_in_default>1</show_in_default>
2011
+ <show_in_website>1</show_in_website>
2012
+ </allowspecific>
2013
+ <specificcountry translate="label">
2014
+ <label>Countries Payment Applicable From</label>
2015
+ <config_path>payment/paypaluk_express/specificcountry</config_path>
2016
+ <frontend_type>multiselect</frontend_type>
2017
+ <sort_order>20</sort_order>
2018
+ <source_model>paypal/system_config_source_buyerCountry</source_model>
2019
+ <show_in_default>1</show_in_default>
2020
+ <show_in_website>1</show_in_website>
2021
+ <depends><allowspecific>1</allowspecific></depends>
2022
+ </specificcountry>
2023
+ <debug translate="label">
2024
+ <label>Debug Mode</label>
2025
+ <config_path>payment/paypaluk_express/debug</config_path>
2026
+ <frontend_type>select</frontend_type>
2027
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2028
+ <sort_order>30</sort_order>
2029
+ <show_in_default>1</show_in_default>
2030
+ <show_in_website>1</show_in_website>
2031
+ </debug>
2032
+ <verify_peer translate="label">
2033
+ <label>Enable SSL verification</label>
2034
+ <config_path>payment/paypaluk_express/verify_peer</config_path>
2035
+ <frontend_type>select</frontend_type>
2036
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2037
+ <sort_order>35</sort_order>
2038
+ <show_in_default>1</show_in_default>
2039
+ <show_in_website>1</show_in_website>
2040
+ </verify_peer>
2041
+ <line_items_enabled translate="label">
2042
+ <label>Transfer Cart Line Items</label>
2043
+ <config_path>payment/paypaluk_express/line_items_enabled</config_path>
2044
+ <frontend_type>select</frontend_type>
2045
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2046
+ <sort_order>40</sort_order>
2047
+ <show_in_default>1</show_in_default>
2048
+ <show_in_website>1</show_in_website>
2049
+ </line_items_enabled>
2050
+ </fields>
2051
+ </paypal_payflow_express_checkout_advanced>
2052
+ </fields>
2053
+ </paypal_payflow_express_checkout>
2054
+ </fields>
2055
+ </paypal_verisign_with_express_checkout>
2056
+ <payflow_link type="group" translate="label comment">
2057
+ <label>Payflow Link (Includes Express Checkout)</label>
2058
+ <frontend_type>text</frontend_type>
2059
+ <show_in_default>1</show_in_default>
2060
+ <show_in_website>1</show_in_website>
2061
+ <show_in_store>1</show_in_store>
2062
+ <sort_order>20</sort_order>
2063
+ <group>paypal_payment_solutions</group>
2064
+ <frontend_model>paypal/adminhtml_system_config_fieldset_payment</frontend_model>
2065
+ <frontend_class>pp-method-payflow</frontend_class>
2066
+ <comment>Connect your merchant account with a PCI-compliant gateway that lets customers pay without leaving your site.</comment>
2067
+ <activity_path>payment/payflow_link/active</activity_path>
2068
+ <learn_more_link>https://www.paypal.com/webapps/mpp/referral/paypal-payflow-link?partner_id=NB9WWHYEMVUMS</learn_more_link>
2069
+ <backend_config>
2070
+ <CA>
2071
+ <include>1</include>
2072
+ <sort_order>40</sort_order>
2073
+ </CA>
2074
+ <US>
2075
+ <include>1</include>
2076
+ <group>paypal_payment_gateways</group>
2077
+ </US>
2078
+ </backend_config>
2079
+ <fields>
2080
+ <payflow_link_required type="group" translate="label">
2081
+ <label>Required PayPal Settings</label>
2082
+ <frontend_type>text</frontend_type>
2083
+ <show_in_default>1</show_in_default>
2084
+ <show_in_website>1</show_in_website>
2085
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2086
+ <sort_order>10</sort_order>
2087
+ <fields>
2088
+ <payflow_link_payflow_link type="group" translate="label">
2089
+ <label>Payflow Link</label>
2090
+ <frontend_type>text</frontend_type>
2091
+ <show_in_default>1</show_in_default>
2092
+ <show_in_website>1</show_in_website>
2093
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2094
+ <sort_order>10</sort_order>
2095
+ <fields>
2096
+ <partner translate="label">
2097
+ <label>Partner</label>
2098
+ <config_path>payment/payflow_link/partner</config_path>
2099
+ <frontend_type>text</frontend_type>
2100
+ <sort_order>10</sort_order>
2101
+ <show_in_default>1</show_in_default>
2102
+ <show_in_website>1</show_in_website>
2103
+ </partner>
2104
+ <vendor translate="label">
2105
+ <label>Vendor</label>
2106
+ <config_path>payment/payflow_link/vendor</config_path>
2107
+ <frontend_type>text</frontend_type>
2108
+ <sort_order>20</sort_order>
2109
+ <show_in_default>1</show_in_default>
2110
+ <show_in_website>1</show_in_website>
2111
+ </vendor>
2112
+ <user translate="label comment">
2113
+ <label>User</label>
2114
+ <comment>If you do not have multiple users set up on your account, please re-enter your Vendor/Merchant Login here.</comment>
2115
+ <frontend_type>text</frontend_type>
2116
+ <config_path>payment/payflow_link/user</config_path>
2117
+ <sort_order>30</sort_order>
2118
+ <show_in_default>1</show_in_default>
2119
+ <show_in_website>1</show_in_website>
2120
+ </user>
2121
+ <pwd translate="label">
2122
+ <label>Password</label>
2123
+ <config_path>payment/payflow_link/pwd</config_path>
2124
+ <frontend_type>obscure</frontend_type>
2125
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
2126
+ <sort_order>40</sort_order>
2127
+ <show_in_default>1</show_in_default>
2128
+ <show_in_website>1</show_in_website>
2129
+ </pwd>
2130
+ <sandbox_flag translate="label">
2131
+ <label>Test Mode</label>
2132
+ <config_path>payment/payflow_link/sandbox_flag</config_path>
2133
+ <frontend_type>select</frontend_type>
2134
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2135
+ <sort_order>50</sort_order>
2136
+ <show_in_default>1</show_in_default>
2137
+ <show_in_website>1</show_in_website>
2138
+ </sandbox_flag>
2139
+ <use_proxy translate="label">
2140
+ <label>Use Proxy</label>
2141
+ <config_path>payment/payflow_link/use_proxy</config_path>
2142
+ <frontend_type>select</frontend_type>
2143
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2144
+ <sort_order>60</sort_order>
2145
+ <show_in_default>1</show_in_default>
2146
+ <show_in_website>1</show_in_website>
2147
+ </use_proxy>
2148
+ <proxy_host translate="label">
2149
+ <label>Proxy Host</label>
2150
+ <config_path>payment/payflow_link/proxy_host</config_path>
2151
+ <frontend_type>text</frontend_type>
2152
+ <sort_order>70</sort_order>
2153
+ <show_in_default>1</show_in_default>
2154
+ <show_in_website>1</show_in_website>
2155
+ <depends><use_proxy>1</use_proxy></depends>
2156
+ </proxy_host>
2157
+ <proxy_port translate="label">
2158
+ <label>Proxy Port</label>
2159
+ <config_path>payment/payflow_link/proxy_port</config_path>
2160
+ <frontend_type>text</frontend_type>
2161
+ <sort_order>80</sort_order>
2162
+ <show_in_default>1</show_in_default>
2163
+ <show_in_website>1</show_in_website>
2164
+ <depends><use_proxy>1</use_proxy></depends>
2165
+ </proxy_port>
2166
+ <payflowlink_info>
2167
+ <frontend_model>paypal/adminhtml_system_config_payflowlink_info</frontend_model>
2168
+ <show_in_default>1</show_in_default>
2169
+ <show_in_website>1</show_in_website>
2170
+ <show_in_store>1</show_in_store>
2171
+ <sort_order>90</sort_order>
2172
+ </payflowlink_info>
2173
+ </fields>
2174
+ </payflow_link_payflow_link>
2175
+ <enable_payflow_link translate="label">
2176
+ <label>Enable Payflow Link</label>
2177
+ <config_path>payment/payflow_link/active</config_path>
2178
+ <frontend_type>select</frontend_type>
2179
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2180
+ <sort_order>20</sort_order>
2181
+ <show_in_default>1</show_in_default>
2182
+ <show_in_website>1</show_in_website>
2183
+ <requires>payflow_link_payflow_link</requires>
2184
+ <frontend_class>paypal-enabler paypal-ec-independent</frontend_class>
2185
+ </enable_payflow_link>
2186
+ <payflow_link_express_checkout type="group" translate="label">
2187
+ <label>Express Checkout</label>
2188
+ <frontend_type>text</frontend_type>
2189
+ <show_in_default>1</show_in_default>
2190
+ <show_in_website>1</show_in_website>
2191
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2192
+ <sort_order>30</sort_order>
2193
+ <fields>
2194
+ <business_account extends="//paypal_payments/payflow_advanced//business_account" />
2195
+ <api_authentication extends="//paypal_payments/payflow_advanced//api_authentication" />
2196
+ <api_username extends="//paypal_payments/payflow_advanced//api_username" />
2197
+ <api_password extends="//paypal_payments/payflow_advanced//api_password" />
2198
+ <api_signature extends="//paypal_payments/payflow_advanced//api_signature" />
2199
+ <api_cert extends="//paypal_payments/payflow_advanced//api_cert" />
2200
+ <api_wizard extends="//paypal_payments/payflow_advanced//api_wizard" />
2201
+ <sandbox_flag extends="//paypal_payments/payflow_advanced//express//sandbox_flag" />
2202
+ <use_proxy extends="//paypal_payments/payflow_advanced//express//use_proxy" />
2203
+ <proxy_host extends="//paypal_payments/payflow_advanced//express//proxy_host" />
2204
+ <proxy_port extends="//paypal_payments/payflow_advanced//express//proxy_port" />
2205
+ </fields>
2206
+ </payflow_link_express_checkout>
2207
+ <enable_express_checkout translate="label">
2208
+ <label>Enable Express Checkout</label>
2209
+ <config_path>payment/paypal_express/active</config_path>
2210
+ <frontend_type>select</frontend_type>
2211
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2212
+ <sort_order>40</sort_order>
2213
+ <show_in_default>1</show_in_default>
2214
+ <show_in_website>1</show_in_website>
2215
+ <shared>1</shared>
2216
+ <requires>payflow_link_required_enable_payflow_link,payflow_link_express_checkout</requires>
2217
+ <frontend_class>paypal-enabler paypal-ec-enabler</frontend_class>
2218
+ </enable_express_checkout>
2219
+ </fields>
2220
+ </payflow_link_required>
2221
+ <settings_payflow_link type="group" translate="label">
2222
+ <label>Basic Settings - PayPal Payflow Link</label>
2223
+ <frontend_type>text</frontend_type>
2224
+ <show_in_default>1</show_in_default>
2225
+ <show_in_website>1</show_in_website>
2226
+ <show_in_store>1</show_in_store>
2227
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2228
+ <sort_order>20</sort_order>
2229
+ <fields>
2230
+ <title translate="label comment">
2231
+ <label>Title</label>
2232
+ <comment>It is recommended to set this value to "Debit or Credit Card" per store views.</comment>
2233
+ <config_path>payment/payflow_link/title</config_path>
2234
+ <frontend_type>text</frontend_type>
2235
+ <sort_order>10</sort_order>
2236
+ <show_in_default>1</show_in_default>
2237
+ <show_in_website>1</show_in_website>
2238
+ <show_in_store>1</show_in_store>
2239
+ </title>
2240
+ <sort_order translate="label">
2241
+ <label>Sort Order</label>
2242
+ <config_path>payment/payflow_link/sort_order</config_path>
2243
+ <frontend_type>text</frontend_type>
2244
+ <sort_order>20</sort_order>
2245
+ <show_in_default>1</show_in_default>
2246
+ <show_in_website>1</show_in_website>
2247
+ <show_in_store>1</show_in_store>
2248
+ <frontend_class>validate-number</frontend_class>
2249
+ </sort_order>
2250
+ <payment_action translate="label">
2251
+ <label>Payment Action</label>
2252
+ <config_path>payment/payflow_link/payment_action</config_path>
2253
+ <frontend_type>select</frontend_type>
2254
+ <source_model>paypal/system_config_source_paymentActions</source_model>
2255
+ <sort_order>30</sort_order>
2256
+ <show_in_default>1</show_in_default>
2257
+ <show_in_website>1</show_in_website>
2258
+ </payment_action>
2259
+ <settings_payflow_link_advanced type="group" translate="label">
2260
+ <label>Advanced Settings</label>
2261
+ <frontend_class>config-advanced</frontend_class>
2262
+ <frontend_type>text</frontend_type>
2263
+ <show_in_default>1</show_in_default>
2264
+ <show_in_website>1</show_in_website>
2265
+ <show_in_store>1</show_in_store>
2266
+ <sort_order>40</sort_order>
2267
+ <fields>
2268
+ <allowspecific translate="label">
2269
+ <label>Payment Applicable From</label>
2270
+ <config_path>payment/payflow_link/allowspecific</config_path>
2271
+ <frontend_type>select</frontend_type>
2272
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
2273
+ <sort_order>10</sort_order>
2274
+ <show_in_default>1</show_in_default>
2275
+ <show_in_website>1</show_in_website>
2276
+ </allowspecific>
2277
+ <specificcountry translate="label">
2278
+ <label>Countries Payment Applicable From</label>
2279
+ <config_path>payment/payflow_link/specificcountry</config_path>
2280
+ <frontend_type>multiselect</frontend_type>
2281
+ <source_model>paypal/system_config_source_buyerCountry</source_model>
2282
+ <sort_order>20</sort_order>
2283
+ <show_in_default>1</show_in_default>
2284
+ <show_in_website>1</show_in_website>
2285
+ <depends><allowspecific>1</allowspecific></depends>
2286
+ </specificcountry>
2287
+ <debug translate="label">
2288
+ <label>Debug Mode</label>
2289
+ <config_path>payment/payflow_link/debug</config_path>
2290
+ <frontend_type>select</frontend_type>
2291
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2292
+ <sort_order>30</sort_order>
2293
+ <show_in_default>1</show_in_default>
2294
+ <show_in_website>1</show_in_website>
2295
+ </debug>
2296
+ <verify_peer translate="label">
2297
+ <label>Enable SSL verification</label>
2298
+ <config_path>payment/payflow_link/verify_peer</config_path>
2299
+ <frontend_type>select</frontend_type>
2300
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2301
+ <sort_order>35</sort_order>
2302
+ <show_in_default>1</show_in_default>
2303
+ <show_in_website>1</show_in_website>
2304
+ </verify_peer>
2305
+ <csc_editable translate="label">
2306
+ <label>CVV Entry is Editable</label>
2307
+ <config_path>payment/payflow_link/csc_editable</config_path>
2308
+ <frontend_type>select</frontend_type>
2309
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2310
+ <sort_order>40</sort_order>
2311
+ <show_in_default>1</show_in_default>
2312
+ <show_in_website>1</show_in_website>
2313
+ </csc_editable>
2314
+ <csc_required translate="label">
2315
+ <label>Require CVV Entry</label>
2316
+ <config_path>payment/payflow_link/csc_required</config_path>
2317
+ <frontend_type>select</frontend_type>
2318
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2319
+ <sort_order>50</sort_order>
2320
+ <show_in_default>1</show_in_default>
2321
+ <show_in_website>1</show_in_website>
2322
+ <depends><csc_editable>1</csc_editable></depends>
2323
+ </csc_required>
2324
+ <email_confirmation translate="label">
2325
+ <label>Send Email Confirmation</label>
2326
+ <config_path>payment/payflow_link/email_confirmation</config_path>
2327
+ <frontend_type>select</frontend_type>
2328
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2329
+ <sort_order>60</sort_order>
2330
+ <show_in_default>1</show_in_default>
2331
+ <show_in_website>1</show_in_website>
2332
+ </email_confirmation>
2333
+ <url_method translate="label">
2334
+ <label>URL method for Cancel URL and Return URL</label>
2335
+ <config_path>payment/payflow_link/url_method</config_path>
2336
+ <frontend_type>select</frontend_type>
2337
+ <source_model>paypal/system_config_source_urlMethod</source_model>
2338
+ <sort_order>70</sort_order>
2339
+ <show_in_default>1</show_in_default>
2340
+ <show_in_website>1</show_in_website>
2341
+ </url_method>
2342
+ <payflow_link_settlement_report type="group" translate="label">
2343
+ <label>Settlement Report Settings</label>
2344
+ <frontend_type>text</frontend_type>
2345
+ <show_in_default>1</show_in_default>
2346
+ <show_in_website>1</show_in_website>
2347
+ <sort_order>80</sort_order>
2348
+ <fields>
2349
+ <heading_sftp extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_sftp" />
2350
+ <settlement_reports_ftp_login extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_login" />
2351
+ <settlement_reports_ftp_password extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_password" />
2352
+ <settlement_reports_ftp_sandbox extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_sandbox" />
2353
+ <settlement_reports_ftp_ip extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_ip" />
2354
+ <settlement_reports_ftp_path extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_path" />
2355
+ <heading_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_schedule" />
2356
+ <settlement_reports_active extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_active" />
2357
+ <settlement_reports_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_schedule" />
2358
+ <settlement_reports_time extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_time" />
2359
+ </fields>
2360
+ </payflow_link_settlement_report>
2361
+ <payflow_link_frontend type="group" translate="label">
2362
+ <label>Frontend Experience Settings</label>
2363
+ <frontend_type>text</frontend_type>
2364
+ <show_in_default>1</show_in_default>
2365
+ <show_in_website>1</show_in_website>
2366
+ <show_in_store>1</show_in_store>
2367
+ <sort_order>90</sort_order>
2368
+ <fields>
2369
+ <logo extends="//paypal_payments/payflow_advanced//frontend/*/logo" />
2370
+ <paypal_pages extends="//paypal_payments/payflow_advanced//frontend/*/paypal_pages" />
2371
+ <page_style extends="//paypal_payments/payflow_advanced//frontend/*/page_style" />
2372
+ <paypal_hdrimg extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrimg" />
2373
+ <paypal_hdrbackcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbackcolor" />
2374
+ <paypal_hdrbordercolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbordercolor" />
2375
+ <paypal_payflowcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_payflowcolor" />
2376
+ </fields>
2377
+ </payflow_link_frontend>
2378
+ </fields>
2379
+ </settings_payflow_link_advanced>
2380
+ </fields>
2381
+ </settings_payflow_link>
2382
+ <settings_payflow_link_express_checkout type="group" translate="label">
2383
+ <label>Basic Settings - PayPal Express Checkout</label>
2384
+ <frontend_type>text</frontend_type>
2385
+ <show_in_default>1</show_in_default>
2386
+ <show_in_website>1</show_in_website>
2387
+ <show_in_store>1</show_in_store>
2388
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2389
+ <sort_order>30</sort_order>
2390
+ <fields>
2391
+ <title extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/title" />
2392
+ <sort_order extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/sort_order" />
2393
+ <payment_action extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/payment_action" />
2394
+ <visible_on_cart extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/visible_on_cart" />
2395
+ <visible_on_product extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/visible_on_product" />
2396
+ <authorization_honor_period extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/authorization_honor_period" />
2397
+ <order_valid_period extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/order_valid_period" />
2398
+ <child_authorization_number extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/child_authorization_number" />
2399
 
2400
+ <settings_payflow_link_express_checkout_advanced type="group" translate="label">
2401
+ <label>Advanced Settings</label>
2402
+ <frontend_class>config-advanced</frontend_class>
2403
+ <frontend_type>text</frontend_type>
2404
+ <show_in_default>1</show_in_default>
2405
+ <show_in_website>1</show_in_website>
2406
+ <show_in_store>1</show_in_store>
2407
+ <sort_order>80</sort_order>
2408
+ <fields>
2409
+ <allowspecific extends="//paypal_payments/payflow_advanced//settings_express_checkout//allowspecific" />
2410
+ <specificcountry extends="//paypal_payments/payflow_advanced//settings_express_checkout//specificcountry" />
2411
+ <debug extends="//paypal_payments/payflow_advanced//settings_express_checkout//debug" />
2412
+ <verify_peer extends="//paypal_payments/payflow_advanced//settings_express_checkout//verify_peer" />
2413
+ <line_items_enabled extends="//paypal_payments/payflow_advanced//settings_express_checkout//line_items_enabled" />
2414
+ <transfer_shipping_options extends="//paypal_payments/payflow_advanced//settings_express_checkout//transfer_shipping_options" />
2415
+ <button_flavor extends="//paypal_payments/payflow_advanced//settings_express_checkout//button_flavor" />
2416
+ <solution_type extends="//paypal_payments/payflow_advanced//settings_express_checkout//solution_type" />
2417
+ <require_billing_address extends="//paypal_payments/payflow_advanced//settings_express_checkout//require_billing_address" />
2418
+ <allow_ba_signup extends="//paypal_payments/payflow_advanced//settings_express_checkout//allow_ba_signup" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2419
 
2420
+ <payflow_link_billing_agreement type="group" translate="label">
2421
+ <label>PayPal Billing Agreement Settings</label>
2422
+ <frontend_type>text</frontend_type>
2423
+ <show_in_default>1</show_in_default>
2424
+ <show_in_website>1</show_in_website>
2425
+ <show_in_store>1</show_in_store>
2426
+ <sort_order>100</sort_order>
2427
+ <fields>
2428
+ <active extends="//paypal_payments/payflow_advanced//billing_agreement/*/active" />
2429
+ <title extends="//paypal_payments/payflow_advanced//billing_agreement/*/title" />
2430
+ <sort_order extends="//paypal_payments/payflow_advanced//billing_agreement/*/sort_order" />
2431
+ <payment_action extends="//paypal_payments/payflow_advanced//billing_agreement/*/payment_action" />
2432
+ <allowspecific extends="//paypal_payments/payflow_advanced//billing_agreement/*/allowspecific" />
2433
+ <specificcountry extends="//paypal_payments/payflow_advanced//billing_agreement/*/specificcountry" />
2434
+ <debug extends="//paypal_payments/payflow_advanced//billing_agreement/*/debug" />
2435
+ <verify_peer extends="//paypal_payments/payflow_advanced//billing_agreement/*/verify_peer" />
2436
+ <line_items_enabled extends="//paypal_payments/payflow_advanced//billing_agreement/*/line_items_enabled" />
2437
+ <allow_billing_agreement_wizard extends="//paypal_payments/payflow_advanced//billing_agreement/*/allow_billing_agreement_wizard" />
2438
+ </fields>
2439
+ </payflow_link_billing_agreement>
2440
+ </fields>
2441
+ </settings_payflow_link_express_checkout_advanced>
2442
+ </fields>
2443
+ </settings_payflow_link_express_checkout>
2444
+ </fields>
2445
+ </payflow_link>
2446
+ <payments_pro_payflow_edition type="group" translate="label comment">
2447
+ <label>Website Payments Pro Payflow Edition (Includes Express Checkout)</label>
2448
+ <show_in_default>1</show_in_default>
2449
+ <show_in_website>1</show_in_website>
2450
+ <show_in_store>1</show_in_store>
2451
+ <sort_order>40</sort_order>
2452
+ <group>paypal_group_all_in_one</group>
2453
+ <frontend_class>pp-general-uk</frontend_class>
2454
+ <frontend_model>paypal/adminhtml_system_config_fieldset_payment</frontend_model>
2455
+ <activity_path>payment/paypaluk_direct/active</activity_path>
2456
+ <comment>Accept payments in your shopping cart. PayPal will process your card payments through the Payflow Gateway.</comment>
2457
+ <backend_config>
2458
+ <GB>
2459
+ <include>1</include>
2460
+ </GB>
2461
+ </backend_config>
2462
+ <fields>
2463
+ <pp_pe_required_settings type="group" translate="label">
2464
+ <label>Required Settings</label>
2465
+ <show_in_default>1</show_in_default>
2466
+ <show_in_website>1</show_in_website>
2467
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2468
+ <sort_order>10</sort_order>
2469
+ <fields>
2470
+ <pp_pe_api_settings type="group" translate="label">
2471
+ <label>Website Payments Pro Payflow Edition and Express Checkout</label>
2472
+ <show_in_default>1</show_in_default>
2473
+ <show_in_website>1</show_in_website>
2474
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2475
+ <sort_order>10</sort_order>
2476
+ <fields>
2477
+ <business_account extends="//paypal_payments/payflow_advanced//business_account" translate="label">
2478
+ <sort_order>10</sort_order>
2479
+ <frontend_class>not-required</frontend_class>
2480
+ <label>Email Associated with PayPal Merchant Account (Optional)</label>
2481
+ </business_account>
2482
+ <partner translate="label">
2483
+ <label>Partner</label>
2484
+ <config_path>paypal/wpuk/partner</config_path>
2485
+ <frontend_type>text</frontend_type>
2486
+ <sort_order>20</sort_order>
2487
+ <show_in_default>1</show_in_default>
2488
+ <show_in_website>1</show_in_website>
2489
+ </partner>
2490
+ <user translate="label">
2491
+ <label>User</label>
2492
+ <frontend_type>obscure</frontend_type>
2493
+ <config_path>paypal/wpuk/user</config_path>
2494
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
2495
+ <sort_order>30</sort_order>
2496
+ <show_in_default>1</show_in_default>
2497
+ <show_in_website>1</show_in_website>
2498
+ </user>
2499
+ <vendor translate="label">
2500
+ <label>Vendor</label>
2501
+ <config_path>paypal/wpuk/vendor</config_path>
2502
+ <frontend_type>text</frontend_type>
2503
+ <sort_order>40</sort_order>
2504
+ <show_in_default>1</show_in_default>
2505
+ <show_in_website>1</show_in_website>
2506
+ </vendor>
2507
+ <pwd translate="label">
2508
+ <label>Password</label>
2509
+ <config_path>paypal/wpuk/pwd</config_path>
2510
+ <frontend_type>obscure</frontend_type>
2511
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
2512
+ <sort_order>50</sort_order>
2513
+ <show_in_default>1</show_in_default>
2514
+ <show_in_website>1</show_in_website>
2515
+ </pwd>
2516
+ <sandbox_flag translate="label">
2517
+ <label>Test Mode</label>
2518
+ <config_path>paypal/wpuk/sandbox_flag</config_path>
2519
+ <frontend_type>select</frontend_type>
2520
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2521
+ <sort_order>60</sort_order>
2522
+ <show_in_default>1</show_in_default>
2523
+ <show_in_website>1</show_in_website>
2524
+ </sandbox_flag>
2525
+ <use_proxy translate="label">
2526
+ <label>API Uses Proxy</label>
2527
+ <config_path>paypal/wpuk/use_proxy</config_path>
2528
+ <frontend_type>select</frontend_type>
2529
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2530
+ <sort_order>70</sort_order>
2531
+ <show_in_default>1</show_in_default>
2532
+ <show_in_website>1</show_in_website>
2533
+ </use_proxy>
2534
+ <proxy_host translate="label">
2535
+ <label>Proxy Host</label>
2536
+ <config_path>paypal/wpuk/proxy_host</config_path>
2537
+ <frontend_type>text</frontend_type>
2538
+ <sort_order>80</sort_order>
2539
+ <show_in_default>1</show_in_default>
2540
+ <show_in_website>1</show_in_website>
2541
+ <depends><use_proxy>1</use_proxy></depends>
2542
+ </proxy_host>
2543
+ <proxy_port translate="label">
2544
+ <label>Proxy Port</label>
2545
+ <config_path>paypal/wpuk/proxy_port</config_path>
2546
+ <frontend_type>text</frontend_type>
2547
+ <sort_order>90</sort_order>
2548
+ <show_in_default>1</show_in_default>
2549
+ <show_in_website>1</show_in_website>
2550
+ <depends><use_proxy>1</use_proxy></depends>
2551
+ </proxy_port>
2552
+ </fields>
2553
+ </pp_pe_api_settings>
2554
+ <enable_pp_pe translate="label">
2555
+ <label>Enable this Solution</label>
2556
+ <config_path>payment/paypaluk_direct/active</config_path>
2557
+ <frontend_type>select</frontend_type>
2558
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2559
+ <sort_order>20</sort_order>
2560
+ <show_in_default>1</show_in_default>
2561
+ <show_in_website>1</show_in_website>
2562
+ <requires>pp_pe_api_settings</requires>
2563
+ <frontend_class>paypal-enabler paypal-ec-pe</frontend_class>
2564
+ </enable_pp_pe>
2565
+ </fields>
2566
+ </pp_pe_required_settings>
2567
+ <settings_pp_pe type="group" translate="label">
2568
+ <label>Basic Settings - PayPal Website Payments Pro Payflow Edition</label>
2569
+ <show_in_default>1</show_in_default>
2570
+ <show_in_website>1</show_in_website>
2571
+ <show_in_store>1</show_in_store>
2572
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2573
+ <sort_order>20</sort_order>
2574
+ <fields>
2575
+ <title translate="label comment">
2576
+ <label>Title</label>
2577
+ <comment>It is recommended to set this value to "Debit or Credit Card" per store views.</comment>
2578
+ <config_path>payment/paypaluk_direct/title</config_path>
2579
+ <frontend_type>text</frontend_type>
2580
+ <sort_order>10</sort_order>
2581
+ <show_in_default>1</show_in_default>
2582
+ <show_in_website>1</show_in_website>
2583
+ <show_in_store>1</show_in_store>
2584
+ </title>
2585
+ <sort_order translate="label">
2586
+ <label>Sort Order</label>
2587
+ <config_path>payment/paypaluk_direct/sort_order</config_path>
2588
+ <frontend_type>text</frontend_type>
2589
+ <sort_order>20</sort_order>
2590
+ <show_in_default>1</show_in_default>
2591
+ <show_in_website>1</show_in_website>
2592
+ <show_in_store>1</show_in_store>
2593
+ <frontend_class>validate-number</frontend_class>
2594
+ </sort_order>
2595
+ <payment_action translate="label">
2596
+ <label>Payment Action</label>
2597
+ <config_path>payment/paypaluk_direct/payment_action</config_path>
2598
+ <frontend_type>select</frontend_type>
2599
+ <source_model>paypal/system_config_source_paymentActions</source_model>
2600
+ <sort_order>30</sort_order>
2601
+ <show_in_default>1</show_in_default>
2602
+ <show_in_website>1</show_in_website>
2603
+ </payment_action>
2604
+ <heading_cc translate="label">
2605
+ <label>Credit Card Settings</label>
2606
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
2607
+ <sort_order>40</sort_order>
2608
+ <show_in_default>1</show_in_default>
2609
+ <show_in_website>1</show_in_website>
2610
+ </heading_cc>
2611
+ <cctypes translate="label">
2612
+ <label>Allowed Credit Card Types</label>
2613
+ <comment><![CDATA[3D Secure validation is required for Maestro cards.]]></comment>
2614
+ <config_path>payment/paypaluk_direct/cctypes</config_path>
2615
+ <frontend_type>multiselect</frontend_type>
2616
+ <source_model>paypal/config::getWppPeCcTypesAsOptionArray</source_model>
2617
+ <sort_order>50</sort_order>
2618
+ <show_in_default>1</show_in_default>
2619
+ <show_in_website>1</show_in_website>
2620
+ </cctypes>
2621
+ <settings_pp_pe_advanced type="group" translate="label">
2622
+ <label>Advanced Settings</label>
2623
+ <frontend_class>config-advanced</frontend_class>
2624
+ <show_in_default>1</show_in_default>
2625
+ <show_in_website>1</show_in_website>
2626
+ <show_in_store>1</show_in_store>
2627
+ <sort_order>60</sort_order>
2628
+ <fields>
2629
+ <allowspecific translate="label">
2630
+ <label>Payment Applicable From</label>
2631
+ <config_path>payment/paypaluk_direct/allowspecific</config_path>
2632
+ <frontend_type>select</frontend_type>
2633
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
2634
+ <sort_order>10</sort_order>
2635
+ <show_in_default>1</show_in_default>
2636
+ <show_in_website>1</show_in_website>
2637
+ </allowspecific>
2638
+ <specificcountry translate="label">
2639
+ <label>Countries Payment Applicable From</label>
2640
+ <config_path>payment/paypaluk_direct/specificcountry</config_path>
2641
+ <frontend_type>multiselect</frontend_type>
2642
+ <source_model>paypal/system_config_source_buyerCountry</source_model>
2643
+ <sort_order>20</sort_order>
2644
+ <show_in_default>1</show_in_default>
2645
+ <show_in_website>1</show_in_website>
2646
+ <depends><allowspecific>1</allowspecific></depends>
2647
+ </specificcountry>
2648
+ <debug translate="label">
2649
+ <label>Debug Mode</label>
2650
+ <config_path>payment/paypaluk_direct/debug</config_path>
2651
+ <frontend_type>select</frontend_type>
2652
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2653
+ <sort_order>30</sort_order>
2654
+ <show_in_default>1</show_in_default>
2655
+ <show_in_website>1</show_in_website>
2656
+ </debug>
2657
+ <verify_peer translate="label">
2658
+ <label>Enable SSL verification</label>
2659
+ <config_path>payment/paypaluk_direct/verify_peer</config_path>
2660
+ <frontend_type>select</frontend_type>
2661
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2662
+ <sort_order>35</sort_order>
2663
+ <show_in_default>1</show_in_default>
2664
+ <show_in_website>1</show_in_website>
2665
+ </verify_peer>
2666
+ <useccv translate="label">
2667
+ <label>Require CVV Entry</label>
2668
+ <config_path>payment/paypaluk_direct/useccv</config_path>
2669
+ <frontend_type>select</frontend_type>
2670
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2671
+ <sort_order>40</sort_order>
2672
+ <show_in_default>1</show_in_default>
2673
+ <show_in_website>1</show_in_website>
2674
+ </useccv>
2675
+ <heading_3dsecure translate="label">
2676
+ <label>3D Secure</label>
2677
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
2678
+ <sort_order>50</sort_order>
2679
+ <show_in_default>1</show_in_default>
2680
+ <show_in_website>1</show_in_website>
2681
+ </heading_3dsecure>
2682
+ <centinel translate="label">
2683
+ <label>3D Secure Card Validation</label>
2684
+ <config_path>payment/paypaluk_direct/centinel</config_path>
2685
+ <frontend_type>select</frontend_type>
2686
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2687
+ <sort_order>60</sort_order>
2688
+ <show_in_default>1</show_in_default>
2689
+ <show_in_website>1</show_in_website>
2690
+ </centinel>
2691
+ <centinel_is_mode_strict translate="label comment">
2692
+ <label>Severe 3D Secure Card Validation</label>
2693
+ <config_path>payment/paypaluk_direct/centinel_is_mode_strict</config_path>
2694
+ <comment>Severe Validation Removes Chargeback Liability on Merchant</comment>
2695
+ <frontend_type>select</frontend_type>
2696
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2697
+ <sort_order>70</sort_order>
2698
+ <show_in_default>1</show_in_default>
2699
+ <show_in_website>1</show_in_website>
2700
+ <depends><centinel>1</centinel></depends>
2701
+ </centinel_is_mode_strict>
2702
+ <centinel_api_url translate="label comment">
2703
+ <label>Centinel API URL</label>
2704
+ <config_path>payment/paypaluk_direct/centinel_api_url</config_path>
2705
+ <comment>If empty, a default value will be used. Custom URL may be provided by CardinalCommerce agreement.</comment>
2706
+ <frontend_type>text</frontend_type>
2707
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2708
+ <sort_order>80</sort_order>
2709
+ <show_in_default>1</show_in_default>
2710
+ <show_in_website>1</show_in_website>
2711
+ <depends><centinel>1</centinel></depends>
2712
+ </centinel_api_url>
2713
+ <pp_pe_settlement_report type="group" translate="label">
2714
+ <label>Settlement Report Settings</label>
2715
+ <frontend_type>text</frontend_type>
2716
+ <show_in_default>1</show_in_default>
2717
+ <show_in_website>1</show_in_website>
2718
+ <sort_order>90</sort_order>
2719
+ <fields>
2720
+ <heading_sftp extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_sftp" />
2721
+ <settlement_reports_ftp_login extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_login" />
2722
+ <settlement_reports_ftp_password extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_password" />
2723
+ <settlement_reports_ftp_sandbox extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_sandbox" />
2724
+ <settlement_reports_ftp_ip extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_ip" />
2725
+ <settlement_reports_ftp_path extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_path" />
2726
+ <heading_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_schedule" />
2727
+ <settlement_reports_active extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_active" />
2728
+ <settlement_reports_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_schedule" />
2729
+ <settlement_reports_time extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_time" />
2730
+ </fields>
2731
+ </pp_pe_settlement_report>
2732
+ <pp_pe_frontend type="group" translate="label">
2733
+ <label>Frontend Experience Settings</label>
2734
+ <frontend_type>text</frontend_type>
2735
+ <show_in_default>1</show_in_default>
2736
+ <show_in_website>1</show_in_website>
2737
+ <show_in_store>1</show_in_store>
2738
+ <sort_order>100</sort_order>
2739
+ <fields>
2740
+ <logo extends="//paypal_payments/payflow_advanced//frontend/*/logo" />
2741
+ <paypal_pages extends="//paypal_payments/payflow_advanced//frontend/*/paypal_pages" />
2742
+ <page_style extends="//paypal_payments/payflow_advanced//frontend/*/page_style" />
2743
+ <paypal_hdrimg extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrimg" />
2744
+ <paypal_hdrbackcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbackcolor" />
2745
+ <paypal_hdrbordercolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbordercolor" />
2746
+ <paypal_payflowcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_payflowcolor" />
2747
+ </fields>
2748
+ </pp_pe_frontend>
2749
+ </fields>
2750
+ </settings_pp_pe_advanced>
2751
+ </fields>
2752
+ </settings_pp_pe>
2753
+ <settings_pp_pe_express_checkout type="group" translate="label">
2754
+ <label>Basic Settings - PayPal Express Checkout</label>
2755
+ <frontend_type>text</frontend_type>
2756
+ <show_in_default>1</show_in_default>
2757
+ <show_in_website>1</show_in_website>
2758
+ <show_in_store>1</show_in_store>
2759
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2760
+ <sort_order>30</sort_order>
2761
+ <fields>
2762
+ <enable_express_pe extends="//paypal_payments/paypal_verisign_with_express_checkout//paypal_payflow_express_checkout/*/enable_express_pe" />
2763
+ <title extends="//paypal_payments/paypal_verisign_with_express_checkout//paypal_payflow_express_checkout/*/title" />
2764
+ <sort_order extends="//paypal_payments/paypal_verisign_with_express_checkout//paypal_payflow_express_checkout/*/sort_order" />
2765
+ <payment_action extends="//paypal_payments/paypal_verisign_with_express_checkout//paypal_payflow_express_checkout/*/payment_action" />
2766
+ <visible_on_cart extends="//paypal_payments/paypal_verisign_with_express_checkout//paypal_payflow_express_checkout/*/visible_on_cart" />
2767
+ <visible_on_product extends="//paypal_payments/paypal_verisign_with_express_checkout//paypal_payflow_express_checkout/*/visible_on_product" />
2768
+ <pp_pe_express_checkout_advanced type="group" extends="//paypal_payments/paypal_verisign_with_express_checkout//paypal_payflow_express_checkout_advanced" />
2769
+ </fields>
2770
+ </settings_pp_pe_express_checkout>
2771
+ </fields>
2772
+ </payments_pro_payflow_edition>
2773
+ <payments_pro_hosted_solution type="group" translate="label comment">
2774
+ <label>Website Payments Pro Hosted Solution</label>
2775
+ <show_in_default>1</show_in_default>
2776
+ <show_in_website>1</show_in_website>
2777
+ <show_in_store>1</show_in_store>
2778
+ <sort_order>20</sort_order>
2779
+ <group>paypal_payment_solutions</group>
2780
+ <frontend_class>pp-method-general</frontend_class>
2781
+ <frontend_model>paypal/adminhtml_system_config_fieldset_payment</frontend_model>
2782
+ <activity_path>payment/hosted_pro/active</activity_path>
2783
+ <comment>Accept payments with a PCI compliant checkout that keeps customers on your site.</comment>
2784
+ <paypal_ec_separate>1</paypal_ec_separate>
2785
+ <backend_config>
2786
+ <JP translate="label">
2787
+ <label>Website Payments Plus</label>
2788
+ <include>1</include>
2789
+ <fields>
2790
+ <pphs_required_settings>
2791
+ <fields>
2792
+ <pphs_required_settings_pphs translate="label">
2793
+ <label>Website Payments Plus</label>
2794
+ </pphs_required_settings_pphs>
2795
+ </fields>
2796
+ </pphs_required_settings>
2797
+ <pphs_settings translate="label">
2798
+ <label>Basic Settings - PayPal Website Payments Plus</label>
2799
+ </pphs_settings>
2800
+ </fields>
2801
+ </JP>
2802
+ <FR translate="label">
2803
+ <label>Integral Evolution</label>
2804
+ <include>1</include>
2805
+ <fields>
2806
+ <pphs_required_settings>
2807
+ <fields>
2808
+ <pphs_required_settings_pphs translate="label">
2809
+ <label>Integral Evolution</label>
2810
+ </pphs_required_settings_pphs>
2811
+ </fields>
2812
+ </pphs_required_settings>
2813
+ <pphs_settings translate="label">
2814
+ <label>Basic Settings - PayPal Integral Evolution</label>
2815
+ </pphs_settings>
2816
+ </fields>
2817
+ </FR>
2818
+ <IT translate="label">
2819
+ <label>Pro</label>
2820
+ <include>1</include>
2821
+ <fields>
2822
+ <pphs_required_settings>
2823
+ <fields>
2824
+ <pphs_required_settings_pphs translate="label">
2825
+ <label>PayPal Pro</label>
2826
+ </pphs_required_settings_pphs>
2827
+ </fields>
2828
+ </pphs_required_settings>
2829
+ <pphs_settings translate="label">
2830
+ <label>Basic Settings - PayPal Pro</label>
2831
+ </pphs_settings>
2832
+ </fields>
2833
+ </IT>
2834
+ <ES translate="label">
2835
+ <label>Pasarela integral</label>
2836
+ <include>1</include>
2837
+ <fields>
2838
+ <pphs_required_settings>
2839
+ <fields>
2840
+ <pphs_required_settings_pphs translate="label">
2841
+ <label>Pasarela integral</label>
2842
+ </pphs_required_settings_pphs>
2843
+ </fields>
2844
+ </pphs_required_settings>
2845
+ <pphs_settings translate="label">
2846
+ <label>Basic Settings - PayPal Pasarela integral</label>
2847
+ </pphs_settings>
2848
+ </fields>
2849
+ </ES>
2850
+ <HK>
2851
+ <include>1</include>
2852
+ </HK>
2853
+ <AU>
2854
+ <include>1</include>
2855
+ <sort_order>30</sort_order>
2856
+ </AU>
2857
+ </backend_config>
2858
+ <fields>
2859
+ <pphs_required_settings type="group" translate="label">
2860
+ <label>Required PayPal Settings</label>
2861
+ <show_in_default>1</show_in_default>
2862
+ <show_in_website>1</show_in_website>
2863
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2864
+ <sort_order>10</sort_order>
2865
+ <fields>
2866
+ <pphs_required_settings_pphs type="group" translate="label">
2867
+ <label>Payments Pro Hosted Solution</label>
2868
+ <show_in_default>1</show_in_default>
2869
+ <show_in_website>1</show_in_website>
2870
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2871
+ <sort_order>10</sort_order>
2872
+ <fields>
2873
+ <business_account extends="//paypal_payments/payflow_advanced//business_account" />
2874
+ <api_authentication extends="//paypal_payments/payflow_advanced//api_authentication" />
2875
+ <api_username extends="//paypal_payments/payflow_advanced//api_username" />
2876
+ <api_password extends="//paypal_payments/payflow_advanced//api_password" />
2877
+ <api_signature extends="//paypal_payments/payflow_advanced//api_signature" />
2878
+ <api_cert extends="//paypal_payments/payflow_advanced//api_cert" />
2879
+ <api_wizard extends="//paypal_payments/payflow_advanced//api_wizard" />
2880
+ <sandbox_flag extends="//paypal_payments/payflow_advanced//express//sandbox_flag" />
2881
+ <use_proxy extends="//paypal_payments/payflow_advanced//express//use_proxy" />
2882
+ <proxy_host extends="//paypal_payments/payflow_advanced//express//proxy_host" />
2883
+ <proxy_port extends="//paypal_payments/payflow_advanced//express//proxy_port" />
2884
+ </fields>
2885
+ </pphs_required_settings_pphs>
2886
+ <pphs_enable translate="label">
2887
+ <label>Enable this Solution</label>
2888
+ <config_path>payment/hosted_pro/active</config_path>
2889
+ <frontend_type>select</frontend_type>
2890
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2891
+ <sort_order>20</sort_order>
2892
+ <show_in_default>1</show_in_default>
2893
+ <show_in_website>1</show_in_website>
2894
+ <requires>pphs_required_settings_pphs</requires>
2895
+ <frontend_class>paypal-enabler paypal-ec-separate</frontend_class>
2896
+ </pphs_enable>
2897
+ </fields>
2898
+ </pphs_required_settings>
2899
+ <pphs_settings type="group" translate="label">
2900
+ <label>Basic Settings - PayPal Payments Pro Hosted Solution</label>
2901
+ <show_in_default>1</show_in_default>
2902
+ <show_in_website>1</show_in_website>
2903
+ <show_in_store>1</show_in_store>
2904
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
2905
+ <sort_order>20</sort_order>
2906
+ <fields>
2907
+ <title translate="label comment">
2908
+ <label>Title</label>
2909
+ <comment>It is recommended to set this value to "PayPal" per store views.</comment>
2910
+ <config_path>payment/hosted_pro/title</config_path>
2911
+ <frontend_type>text</frontend_type>
2912
+ <sort_order>10</sort_order>
2913
+ <show_in_default>1</show_in_default>
2914
+ <show_in_website>1</show_in_website>
2915
+ <show_in_store>1</show_in_store>
2916
+ </title>
2917
+ <sort_order translate="label">
2918
+ <label>Sort Order</label>
2919
+ <config_path>payment/hosted_pro/sort_order</config_path>
2920
+ <frontend_type>text</frontend_type>
2921
+ <sort_order>20</sort_order>
2922
+ <show_in_default>1</show_in_default>
2923
+ <show_in_website>1</show_in_website>
2924
+ <show_in_store>1</show_in_store>
2925
+ <frontend_class>validate-number</frontend_class>
2926
+ </sort_order>
2927
+ <payment_action translate="label">
2928
+ <label>Payment Action</label>
2929
+ <config_path>payment/hosted_pro/payment_action</config_path>
2930
+ <frontend_type>select</frontend_type>
2931
+ <source_model>paypal/system_config_source_paymentActions</source_model>
2932
+ <sort_order>30</sort_order>
2933
+ <show_in_default>1</show_in_default>
2934
+ <show_in_website>1</show_in_website>
2935
+ </payment_action>
2936
+ <display_ec translate="label">
2937
+ <label>Display Express Checkout in the Payment Information step</label>
2938
+ <config_path>payment/hosted_pro/display_ec</config_path>
2939
+ <frontend_type>select</frontend_type>
2940
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2941
+ <sort_order>40</sort_order>
2942
+ <show_in_default>1</show_in_default>
2943
+ <show_in_website>1</show_in_website>
2944
+ </display_ec>
2945
+ <pphs_settings_advanced type="group" translate="label">
2946
+ <label>Advanced Settings</label>
2947
+ <frontend_class>config-advanced</frontend_class>
2948
+ <show_in_default>1</show_in_default>
2949
+ <show_in_website>1</show_in_website>
2950
+ <show_in_store>1</show_in_store>
2951
+ <sort_order>50</sort_order>
2952
+ <fields>
2953
+ <allowspecific translate="label">
2954
+ <label>Payment Applicable From</label>
2955
+ <config_path>payment/hosted_pro/allowspecific</config_path>
2956
+ <frontend_type>select</frontend_type>
2957
+ <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
2958
+ <sort_order>10</sort_order>
2959
+ <show_in_default>1</show_in_default>
2960
+ <show_in_website>1</show_in_website>
2961
+ </allowspecific>
2962
+ <specificcountry translate="label">
2963
+ <label>Countries Payment Applicable From</label>
2964
+ <config_path>payment/hosted_pro/specificcountry</config_path>
2965
+ <frontend_type>multiselect</frontend_type>
2966
+ <source_model>paypal/system_config_source_buyerCountry</source_model>
2967
+ <sort_order>20</sort_order>
2968
+ <show_in_default>1</show_in_default>
2969
+ <show_in_website>1</show_in_website>
2970
+ <depends><allowspecific>1</allowspecific></depends>
2971
+ </specificcountry>
2972
+ <debug translate="label">
2973
+ <label>Debug Mode</label>
2974
+ <config_path>payment/hosted_pro/debug</config_path>
2975
+ <frontend_type>select</frontend_type>
2976
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2977
+ <sort_order>30</sort_order>
2978
+ <show_in_default>1</show_in_default>
2979
+ <show_in_website>1</show_in_website>
2980
+ </debug>
2981
+ <verify_peer translate="label">
2982
+ <label>Enable SSL verification</label>
2983
+ <config_path>payment/hosted_pro/verify_peer</config_path>
2984
+ <frontend_type>select</frontend_type>
2985
+ <source_model>adminhtml/system_config_source_yesno</source_model>
2986
+ <sort_order>35</sort_order>
2987
+ <show_in_default>1</show_in_default>
2988
+ <show_in_website>1</show_in_website>
2989
+ </verify_peer>
2990
+ <pphs_settlement_report type="group" translate="label">
2991
+ <label>Settlement Report Settings</label>
2992
+ <frontend_type>text</frontend_type>
2993
+ <show_in_default>1</show_in_default>
2994
+ <show_in_website>1</show_in_website>
2995
+ <sort_order>40</sort_order>
2996
+ <fields>
2997
+ <heading_sftp extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_sftp" />
2998
+ <settlement_reports_ftp_login extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_login" />
2999
+ <settlement_reports_ftp_password extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_password" />
3000
+ <settlement_reports_ftp_sandbox extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_sandbox" />
3001
+ <settlement_reports_ftp_ip extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_ip" />
3002
+ <settlement_reports_ftp_path extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_path" />
3003
+ <heading_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_schedule" />
3004
+ <settlement_reports_active extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_active" />
3005
+ <settlement_reports_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_schedule" />
3006
+ <settlement_reports_time extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_time" />
3007
+ </fields>
3008
+ </pphs_settlement_report>
3009
+ </fields>
3010
+ </pphs_settings_advanced>
3011
+ </fields>
3012
+ </pphs_settings>
3013
+ </fields>
3014
+ </payments_pro_hosted_solution>
3015
+ <payments_pro_hosted_solution_with_express_checkout type="group" translate="label comment" extends="//paypal_payments/payments_pro_hosted_solution">
3016
+ <label>Website Payments Pro Hosted Solution (Includes Express Checkout)</label>
3017
+ <sort_order>30</sort_order>
3018
+ <group>paypal_group_all_in_one</group>
3019
+ <frontend_class>pp-general-uk</frontend_class>
3020
+ <learn_more_link>https://cms.paypal.com/cms_content/GB/en_GB/files/developer/HostedSolution.pdf</learn_more_link>
3021
+ <paypal_ec_separate>0</paypal_ec_separate>
3022
+ <backend_config>
3023
+ <JP>
3024
+ <include>0</include>
3025
+ </JP>
3026
+ <FR>
3027
+ <include>0</include>
3028
+ </FR>
3029
+ <IT>
3030
+ <include>0</include>
3031
+ </IT>
3032
+ <ES>
3033
+ <include>0</include>
3034
+ </ES>
3035
+ <HK>
3036
+ <include>0</include>
3037
+ </HK>
3038
+ <AU>
3039
+ <include>0</include>
3040
+ </AU>
3041
+ <GB>
3042
+ <include>1</include>
3043
+ <fields>
3044
+ <pphs_required_settings>
3045
+ <fields>
3046
+ <pphs_enable>
3047
+ <frontend_class>paypal-enabler</frontend_class>
3048
+ </pphs_enable>
3049
+ </fields>
3050
+ </pphs_required_settings>
3051
+ </fields>
3052
+ </GB>
3053
+ </backend_config>
3054
+ <fields>
3055
+ <pphs_required_settings type="group">
3056
+ <fields>
3057
+ <pphs_required_settings_pphs type="group" translate="label">
3058
+ <label>Website Payments Pro Hosted Solution and Express Checkout</label>
3059
+ </pphs_required_settings_pphs>
3060
+ </fields>
3061
+ </pphs_required_settings>
3062
+ <pphs_settings type="group" translate="label">
3063
+ <label>Basic Settings - PayPal Website Payments Pro Hosted Solution</label>
3064
+ <fields>
3065
+ <pphs_settings_advanced type="group" translate="label">
3066
+ <fields>
3067
+ <pphs_billing_agreement type="group" translate="label">
3068
+ <label>PayPal Billing Agreement Settings</label>
3069
+ <frontend_type>text</frontend_type>
3070
+ <show_in_default>1</show_in_default>
3071
+ <show_in_website>1</show_in_website>
3072
+ <show_in_store>1</show_in_store>
3073
+ <sort_order>35</sort_order>
3074
+ <fields>
3075
+ <active extends="//paypal_payments/payflow_advanced//billing_agreement/*/active" />
3076
+ <title extends="//paypal_payments/payflow_advanced//billing_agreement/*/title" />
3077
+ <sort_order extends="//paypal_payments/payflow_advanced//billing_agreement/*/sort_order" />
3078
+ <payment_action extends="//paypal_payments/payflow_advanced//billing_agreement/*/payment_action" />
3079
+ <allowspecific extends="//paypal_payments/payflow_advanced//billing_agreement/*/allowspecific" />
3080
+ <specificcountry extends="//paypal_payments/payflow_advanced//billing_agreement/*/specificcountry" />
3081
+ <debug extends="//paypal_payments/payflow_advanced//billing_agreement/*/debug" />
3082
+ <verify_peer extends="//paypal_payments/payflow_advanced//billing_agreement/*/verify_peer" />
3083
+ <line_items_enabled extends="//paypal_payments/payflow_advanced//billing_agreement/*/line_items_enabled" />
3084
+ <allow_billing_agreement_wizard extends="//paypal_payments/payflow_advanced//billing_agreement/*/allow_billing_agreement_wizard" />
3085
+ </fields>
3086
+ </pphs_billing_agreement>
3087
+ <pphs_frontend type="group" translate="label">
3088
+ <label>Frontend Experience Settings</label>
3089
+ <frontend_type>text</frontend_type>
3090
+ <show_in_default>1</show_in_default>
3091
+ <show_in_website>1</show_in_website>
3092
+ <show_in_store>1</show_in_store>
3093
+ <sort_order>50</sort_order>
3094
+ <fields>
3095
+ <logo extends="//paypal_payments/payflow_advanced//frontend/*/logo" />
3096
+ <paypal_pages extends="//paypal_payments/payflow_advanced//frontend/*/paypal_pages" />
3097
+ <page_style extends="//paypal_payments/payflow_advanced//frontend/*/page_style" />
3098
+ <paypal_hdrimg extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrimg" />
3099
+ <paypal_hdrbackcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbackcolor" />
3100
+ <paypal_hdrbordercolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbordercolor" />
3101
+ <paypal_payflowcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_payflowcolor" />
3102
+ </fields>
3103
+ </pphs_frontend>
3104
+ </fields>
3105
+ </pphs_settings_advanced>
3106
+ </fields>
3107
+ </pphs_settings>
3108
+ <pphs_settings_express_checkout type="group" translate="label">
3109
+ <label>Basic Settings - PayPal Express Checkout</label>
3110
+ <frontend_type>text</frontend_type>
3111
+ <show_in_default>1</show_in_default>
3112
+ <show_in_website>1</show_in_website>
3113
+ <show_in_store>1</show_in_store>
3114
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
3115
+ <sort_order>30</sort_order>
3116
+ <fields>
3117
+ <title extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/title" />
3118
+ <sort_order extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/sort_order" />
3119
+ <payment_action extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/payment_action" />
3120
+ <visible_on_cart extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/visible_on_cart" />
3121
+ <visible_on_product extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/visible_on_product" />
3122
+ <authorization_honor_period extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/authorization_honor_period" />
3123
+ <order_valid_period extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/order_valid_period" />
3124
+ <child_authorization_number extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/child_authorization_number" />
3125
 
3126
+ <pphs_settings_express_checkout_advanced type="group" translate="label">
3127
+ <label>Advanced Settings</label>
3128
+ <frontend_class>config-advanced</frontend_class>
3129
+ <frontend_type>text</frontend_type>
3130
+ <show_in_default>1</show_in_default>
3131
+ <show_in_website>1</show_in_website>
3132
+ <show_in_store>1</show_in_store>
3133
+ <sort_order>80</sort_order>
3134
+ <fields>
3135
+ <allowspecific extends="//paypal_payments/payflow_advanced//settings_express_checkout//allowspecific" />
3136
+ <specificcountry extends="//paypal_payments/payflow_advanced//settings_express_checkout//specificcountry" />
3137
+ <debug extends="//paypal_payments/payflow_advanced//settings_express_checkout//debug" />
3138
+ <verify_peer extends="//paypal_payments/payflow_advanced//settings_express_checkout//verify_peer" />
3139
+ <line_items_enabled extends="//paypal_payments/payflow_advanced//settings_express_checkout//line_items_enabled" />
3140
+ <transfer_shipping_options extends="//paypal_payments/payflow_advanced//settings_express_checkout//transfer_shipping_options" />
3141
+ <button_flavor extends="//paypal_payments/payflow_advanced//settings_express_checkout//button_flavor" />
3142
+ <solution_type extends="//paypal_payments/payflow_advanced//settings_express_checkout//solution_type" />
3143
+ <require_billing_address extends="//paypal_payments/payflow_advanced//settings_express_checkout//require_billing_address" />
3144
+ <allow_ba_signup extends="//paypal_payments/payflow_advanced//settings_express_checkout//allow_ba_signup" />
3145
+ </fields>
3146
+ </pphs_settings_express_checkout_advanced>
3147
+ </fields>
3148
+ </pphs_settings_express_checkout>
3149
+ </fields>
3150
+ </payments_pro_hosted_solution_with_express_checkout>
3151
+ <express_checkout type="group" translate="label comment">
3152
+ <label>Express Checkout</label>
3153
+ <frontend_type>text</frontend_type>
3154
+ <show_in_default>1</show_in_default>
3155
+ <show_in_website>1</show_in_website>
3156
+ <show_in_store>1</show_in_store>
3157
+ <sort_order>60</sort_order>
3158
+ <group>paypal_payment_solutions</group>
3159
+ <frontend_model>paypal/adminhtml_system_config_fieldset_payment</frontend_model>
3160
+ <frontend_class>pp-method-express</frontend_class>
3161
+ <include>1</include>
3162
+ <comment>Add PayPal as an additional payment method to your checkout page.</comment>
3163
+ <activity_path>payment/paypal_express/active</activity_path>
3164
+ <learn_more_link>https://www.paypal.com/webapps/mpp/referral/paypal-express-checkout?partner_id=NB9WWHYEMVUMS</learn_more_link>
3165
+ <backend_config>
3166
+ <US>
3167
+ <group>paypal_alternative_payment_methods</group>
3168
+ </US>
3169
+ <GB translate="comment">
3170
+ <group>paypal_alternative_payment_methods</group>
3171
+ <learn_more_link>https://www.paypal-business.co.uk/add-paypal-to-online-shop/index.htm</learn_more_link>
3172
+ <demo_link>http://www.youtube.com/watch?v=WgnfZ2Bj6hQ</demo_link>
3173
+ <comment>Add PayPal as an additional payment method to your checkout page to increase your sales.</comment>
3174
+ </GB>
3175
+ </backend_config>
3176
+ <fields>
3177
+ <express_checkout_required type="group" translate="label">
3178
+ <label>Required PayPal Settings</label>
3179
+ <frontend_type>text</frontend_type>
3180
+ <show_in_default>1</show_in_default>
3181
+ <show_in_website>1</show_in_website>
3182
+ <sort_order>10</sort_order>
3183
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
3184
+ <fields>
3185
+ <express_checkout_required_express_checkout type="group" translate="label">
3186
+ <label>Express Checkout</label>
3187
+ <frontend_type>text</frontend_type>
3188
+ <show_in_default>1</show_in_default>
3189
+ <show_in_website>1</show_in_website>
3190
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
3191
+ <sort_order>10</sort_order>
3192
+ <fields>
3193
+ <business_account extends="//paypal_payments/payflow_advanced//business_account" />
3194
+ <api_authentication extends="//paypal_payments/payflow_advanced//api_authentication" />
3195
+ <api_username extends="//paypal_payments/payflow_advanced//api_username" />
3196
+ <api_password extends="//paypal_payments/payflow_advanced//api_password" />
3197
+ <api_signature extends="//paypal_payments/payflow_advanced//api_signature" />
3198
+ <api_cert extends="//paypal_payments/payflow_advanced//api_cert" />
3199
+ <api_wizard extends="//paypal_payments/payflow_advanced//api_wizard" />
3200
+ <sandbox_flag extends="//paypal_payments/payflow_advanced//express//sandbox_flag" />
3201
+ <use_proxy extends="//paypal_payments/payflow_advanced//express//use_proxy" />
3202
+ <proxy_host extends="//paypal_payments/payflow_advanced//express//proxy_host" />
3203
+ <proxy_port extends="//paypal_payments/payflow_advanced//express//proxy_port" />
3204
+ </fields>
3205
+ </express_checkout_required_express_checkout>
3206
+ <enable_express_checkout translate="label">
3207
+ <label>Enable this Solution</label>
3208
+ <config_path>payment/paypal_express/active</config_path>
3209
+ <frontend_type>select</frontend_type>
3210
+ <source_model>adminhtml/system_config_source_yesno</source_model>
3211
+ <sort_order>20</sort_order>
3212
+ <show_in_default>1</show_in_default>
3213
+ <show_in_website>1</show_in_website>
3214
+ <shared>1</shared>
3215
+ <requires>express_checkout_required_express_checkout</requires>
3216
+ <frontend_class>paypal-enabler paypal-ec-enabler</frontend_class>
3217
+ </enable_express_checkout>
3218
+ </fields>
3219
+ </express_checkout_required>
3220
+ <settings_ec type="group" translate="label">
3221
+ <label>Basic Settings - PayPal Express Checkout</label>
3222
+ <frontend_type>text</frontend_type>
3223
+ <show_in_default>1</show_in_default>
3224
+ <show_in_website>1</show_in_website>
3225
+ <show_in_store>1</show_in_store>
3226
+ <frontend_model>paypal/adminhtml_system_config_fieldset_expanded</frontend_model>
3227
+ <sort_order>20</sort_order>
3228
+ <fields>
3229
+ <title extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/title" />
3230
+ <sort_order extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/sort_order" />
3231
+ <payment_action extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/payment_action" />
3232
+ <visible_on_cart extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/visible_on_cart" />
3233
+ <visible_on_product extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/visible_on_product" />
3234
+ <authorization_honor_period extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/authorization_honor_period" />
3235
+ <order_valid_period extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/order_valid_period" />
3236
+ <child_authorization_number extends="//paypal_payments/payflow_advanced//settings_express_checkout/*/child_authorization_number" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3237
 
3238
+ <settings_ec_advanced type="group" translate="label">
3239
+ <label>Advanced Settings</label>
3240
+ <frontend_class>config-advanced</frontend_class>
3241
+ <frontend_type>text</frontend_type>
3242
+ <show_in_default>1</show_in_default>
3243
+ <show_in_website>1</show_in_website>
3244
+ <show_in_store>1</show_in_store>
3245
+ <sort_order>80</sort_order>
3246
+ <fields>
3247
+ <allowspecific extends="//paypal_payments/payflow_advanced//settings_express_checkout//allowspecific" />
3248
+ <specificcountry extends="//paypal_payments/payflow_advanced//settings_express_checkout//specificcountry" />
3249
+ <debug extends="//paypal_payments/payflow_advanced//settings_express_checkout//debug" />
3250
+ <verify_peer extends="//paypal_payments/payflow_advanced//settings_express_checkout//verify_peer" />
3251
+ <line_items_enabled extends="//paypal_payments/payflow_advanced//settings_express_checkout//line_items_enabled" />
3252
+ <transfer_shipping_options extends="//paypal_payments/payflow_advanced//settings_express_checkout//transfer_shipping_options" />
3253
+ <button_flavor extends="//paypal_payments/payflow_advanced//settings_express_checkout//button_flavor" />
3254
+ <solution_type extends="//paypal_payments/payflow_advanced//settings_express_checkout//solution_type" />
3255
+ <require_billing_address extends="//paypal_payments/payflow_advanced//settings_express_checkout//require_billing_address" />
3256
+ <allow_ba_signup extends="//paypal_payments/payflow_advanced//settings_express_checkout//allow_ba_signup" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3257
 
3258
+ <express_checkout_billing_agreement type="group" translate="label">
3259
+ <label>PayPal Billing Agreement Settings</label>
3260
+ <frontend_type>text</frontend_type>
3261
+ <show_in_default>1</show_in_default>
3262
+ <show_in_website>1</show_in_website>
3263
+ <show_in_store>1</show_in_store>
3264
+ <sort_order>100</sort_order>
3265
+ <fields>
3266
+ <active extends="//paypal_payments/payflow_advanced//billing_agreement/*/active" />
3267
+ <title extends="//paypal_payments/payflow_advanced//billing_agreement/*/title" />
3268
+ <sort_order extends="//paypal_payments/payflow_advanced//billing_agreement/*/sort_order" />
3269
+ <payment_action extends="//paypal_payments/payflow_advanced//billing_agreement/*/payment_action" />
3270
+ <allowspecific extends="//paypal_payments/payflow_advanced//billing_agreement/*/allowspecific" />
3271
+ <specificcountry extends="//paypal_payments/payflow_advanced//billing_agreement/*/specificcountry" />
3272
+ <debug extends="//paypal_payments/payflow_advanced//billing_agreement/*/debug" />
3273
+ <verify_peer extends="//paypal_payments/payflow_advanced//billing_agreement/*/verify_peer" />
3274
+ <line_items_enabled extends="//paypal_payments/payflow_advanced//billing_agreement/*/line_items_enabled" />
3275
+ <allow_billing_agreement_wizard extends="//paypal_payments/payflow_advanced//billing_agreement/*/allow_billing_agreement_wizard" />
3276
+ </fields>
3277
+ </express_checkout_billing_agreement>
3278
+ <express_checkout_settlement_report type="group" translate="label">
3279
+ <label>Settlement Report Settings</label>
3280
+ <frontend_type>text</frontend_type>
3281
+ <show_in_default>1</show_in_default>
3282
+ <show_in_website>1</show_in_website>
3283
+ <sort_order>110</sort_order>
3284
+ <fields>
3285
+ <heading_sftp extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_sftp" />
3286
+ <settlement_reports_ftp_login extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_login" />
3287
+ <settlement_reports_ftp_password extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_password" />
3288
+ <settlement_reports_ftp_sandbox extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_sandbox" />
3289
+ <settlement_reports_ftp_ip extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_ip" />
3290
+ <settlement_reports_ftp_path extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_ftp_path" />
3291
+ <heading_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/heading_schedule" />
3292
+ <settlement_reports_active extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_active" />
3293
+ <settlement_reports_schedule extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_schedule" />
3294
+ <settlement_reports_time extends="//paypal_payments/payflow_advanced//settlement_report/*/settlement_reports_time" />
3295
+ </fields>
3296
+ </express_checkout_settlement_report>
3297
+ <express_checkout_frontend type="group" translate="label">
3298
+ <label>Frontend Experience Settings</label>
3299
+ <frontend_type>text</frontend_type>
3300
+ <show_in_default>1</show_in_default>
3301
+ <show_in_website>1</show_in_website>
3302
+ <show_in_store>1</show_in_store>
3303
+ <sort_order>120</sort_order>
3304
+ <fields>
3305
+ <logo extends="//paypal_payments/payflow_advanced//frontend/*/logo" />
3306
+ <paypal_pages extends="//paypal_payments/payflow_advanced//frontend/*/paypal_pages" />
3307
+ <page_style extends="//paypal_payments/payflow_advanced//frontend/*/page_style" />
3308
+ <paypal_hdrimg extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrimg" />
3309
+ <paypal_hdrbackcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbackcolor" />
3310
+ <paypal_hdrbordercolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_hdrbordercolor" />
3311
+ <paypal_payflowcolor extends="//paypal_payments/payflow_advanced//frontend/*/paypal_payflowcolor" />
3312
+ </fields>
3313
+ </express_checkout_frontend>
3314
+ </fields>
3315
+ </settings_ec_advanced>
3316
+ </fields>
3317
+ </settings_ec>
3318
+ </fields>
3319
+ </express_checkout>
3320
+ </paypal_payments>
 
 
 
 
 
 
 
 
 
 
 
 
 
3321
  </groups>
3322
+ </payment>
3323
  </sections>
3324
  </config>
app/code/core/Mage/Sales/Model/Api/Resource.php CHANGED
@@ -92,8 +92,10 @@ class Mage_Sales_Model_Api_Resource extends Mage_Api_Model_Resource_Abstract
92
  }
93
  }
94
 
95
- foreach ($this->_attributesMap['global'] as $alias=>$attributeCode) {
96
- $result[$alias] = $object->getData($attributeCode);
 
 
97
  }
98
 
99
  if (isset($this->_attributesMap[$type])) {
92
  }
93
  }
94
 
95
+ if (isset($this->_attributesMap['global'])) {
96
+ foreach ($this->_attributesMap['global'] as $alias=>$attributeCode) {
97
+ $result[$alias] = $object->getData($attributeCode);
98
+ }
99
  }
100
 
101
  if (isset($this->_attributesMap[$type])) {
app/code/core/Mage/Sales/Model/Order/Api.php CHANGED
@@ -33,12 +33,16 @@
33
  */
34
  class Mage_Sales_Model_Order_Api extends Mage_Sales_Model_Api_Resource
35
  {
 
 
 
36
  public function __construct()
37
  {
38
- $this->_attributesMap['order'] = array('order_id' => 'entity_id');
39
- $this->_attributesMap['order_address'] = array('address_id' => 'entity_id');
40
- $this->_attributesMap['order_payment'] = array('payment_id' => 'entity_id');
41
-
 
42
  }
43
 
44
  /**
@@ -63,71 +67,55 @@ class Mage_Sales_Model_Order_Api extends Mage_Sales_Model_Api_Resource
63
  }
64
 
65
  /**
66
- * Retrieve list of orders by filters
67
  *
68
- * @param array $filters
69
  * @return array
70
  */
71
  public function items($filters = null)
72
  {
 
 
73
  //TODO: add full name logic
74
  $billingAliasName = 'billing_o_a';
75
  $shippingAliasName = 'shipping_o_a';
76
 
77
- $collection = Mage::getModel("sales/order")->getCollection()
78
- ->addAttributeToSelect('*')
 
 
 
 
 
79
  ->addAddressFields()
80
- ->addExpressionFieldToSelect(
81
- 'billing_firstname', "{{billing_firstname}}", array('billing_firstname'=>"$billingAliasName.firstname")
82
- )
83
- ->addExpressionFieldToSelect(
84
- 'billing_lastname', "{{billing_lastname}}", array('billing_lastname'=>"$billingAliasName.lastname")
85
- )
86
- ->addExpressionFieldToSelect(
87
- 'shipping_firstname', "{{shipping_firstname}}",
88
- array('shipping_firstname'=>"$shippingAliasName.firstname")
89
- )
90
- ->addExpressionFieldToSelect(
91
- 'shipping_lastname', "{{shipping_lastname}}", array('shipping_lastname'=>"$shippingAliasName.lastname")
92
- )
93
- ->addExpressionFieldToSelect(
94
- 'billing_name',
95
- "CONCAT({{billing_firstname}}, ' ', {{billing_lastname}})",
96
- array(
97
- 'billing_firstname'=>"$billingAliasName.firstname",
98
- 'billing_lastname'=>"$billingAliasName.lastname"
99
- )
100
- )
101
- ->addExpressionFieldToSelect(
102
- 'shipping_name',
103
- 'CONCAT({{shipping_firstname}}, " ", {{shipping_lastname}})',
104
- array(
105
- 'shipping_firstname'=>"$shippingAliasName.firstname",
106
- 'shipping_lastname'=>"$shippingAliasName.lastname"
107
- )
108
- );
109
-
110
- if (is_array($filters)) {
111
- try {
112
- foreach ($filters as $field => $value) {
113
- if (isset($this->_attributesMap['order'][$field])) {
114
- $field = $this->_attributesMap['order'][$field];
115
- }
116
-
117
- $collection->addFieldToFilter($field, $value);
118
- }
119
- } catch (Mage_Core_Exception $e) {
120
- $this->_fault('filters_invalid', $e->getMessage());
121
  }
 
 
122
  }
123
-
124
- $result = array();
125
-
126
- foreach ($collection as $order) {
127
- $result[] = $this->_getAttributes($order, 'order');
128
  }
129
-
130
- return $result;
131
  }
132
 
133
  /**
33
  */
34
  class Mage_Sales_Model_Order_Api extends Mage_Sales_Model_Api_Resource
35
  {
36
+ /**
37
+ * Initialize attributes map
38
+ */
39
  public function __construct()
40
  {
41
+ $this->_attributesMap = array(
42
+ 'order' => array('order_id' => 'entity_id'),
43
+ 'order_address' => array('address_id' => 'entity_id'),
44
+ 'order_payment' => array('payment_id' => 'entity_id')
45
+ );
46
  }
47
 
48
  /**
67
  }
68
 
69
  /**
70
+ * Retrieve list of orders. Filtration could be applied
71
  *
72
+ * @param null|object|array $filters
73
  * @return array
74
  */
75
  public function items($filters = null)
76
  {
77
+ $orders = array();
78
+
79
  //TODO: add full name logic
80
  $billingAliasName = 'billing_o_a';
81
  $shippingAliasName = 'shipping_o_a';
82
 
83
+ /** @var $orderCollection Mage_Sales_Model_Mysql4_Order_Collection */
84
+ $orderCollection = Mage::getModel("sales/order")->getCollection();
85
+ $billingFirstnameField = "$billingAliasName.firstname";
86
+ $billingLastnameField = "$billingAliasName.lastname";
87
+ $shippingFirstnameField = "$shippingAliasName.firstname";
88
+ $shippingLastnameField = "$shippingAliasName.lastname";
89
+ $orderCollection->addAttributeToSelect('*')
90
  ->addAddressFields()
91
+ ->addExpressionFieldToSelect('billing_firstname', "{{billing_firstname}}",
92
+ array('billing_firstname' => $billingFirstnameField))
93
+ ->addExpressionFieldToSelect('billing_lastname', "{{billing_lastname}}",
94
+ array('billing_lastname' => $billingLastnameField))
95
+ ->addExpressionFieldToSelect('shipping_firstname', "{{shipping_firstname}}",
96
+ array('shipping_firstname' => $shippingFirstnameField))
97
+ ->addExpressionFieldToSelect('shipping_lastname', "{{shipping_lastname}}",
98
+ array('shipping_lastname' => $shippingLastnameField))
99
+ ->addExpressionFieldToSelect('billing_name', "CONCAT({{billing_firstname}}, ' ', {{billing_lastname}})",
100
+ array('billing_firstname' => $billingFirstnameField, 'billing_lastname' => $billingLastnameField))
101
+ ->addExpressionFieldToSelect('shipping_name', 'CONCAT({{shipping_firstname}}, " ", {{shipping_lastname}})',
102
+ array('shipping_firstname' => $shippingFirstnameField, 'shipping_lastname' => $shippingLastnameField)
103
+ );
104
+
105
+ /** @var $apiHelper Mage_Api_Helper_Data */
106
+ $apiHelper = Mage::helper('api');
107
+ $filters = $apiHelper->parseFilters($filters, $this->_attributesMap['order']);
108
+ try {
109
+ foreach ($filters as $field => $value) {
110
+ $orderCollection->addFieldToFilter($field, $value);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  }
112
+ } catch (Mage_Core_Exception $e) {
113
+ $this->_fault('filters_invalid', $e->getMessage());
114
  }
115
+ foreach ($orderCollection as $order) {
116
+ $orders[] = $this->_getAttributes($order, 'order');
 
 
 
117
  }
118
+ return $orders;
 
119
  }
120
 
121
  /**
app/code/core/Mage/Sales/Model/Order/Api/V2.php CHANGED
@@ -33,101 +33,4 @@
33
  */
34
  class Mage_Sales_Model_Order_Api_V2 extends Mage_Sales_Model_Order_Api
35
  {
36
- /**
37
- * Retrieve list of orders by filters
38
- *
39
- * @param array $filters
40
- * @return array
41
- */
42
- public function items($filters = null)
43
- {
44
- //TODO: add full name logic
45
- $billingAliasName = 'billing_o_a';
46
- $shippingAliasName = 'shipping_o_a';
47
-
48
- $collection = Mage::getModel("sales/order")->getCollection()
49
- ->addAttributeToSelect('*')
50
- ->addAddressFields()
51
- ->addExpressionFieldToSelect(
52
- 'billing_firstname', "{{billing_firstname}}", array('billing_firstname'=>"$billingAliasName.firstname")
53
- )
54
- ->addExpressionFieldToSelect(
55
- 'billing_lastname', "{{billing_lastname}}", array('billing_lastname'=>"$billingAliasName.lastname")
56
- )
57
- ->addExpressionFieldToSelect(
58
- 'shipping_firstname',
59
- "{{shipping_firstname}}",
60
- array('shipping_firstname'=>"$shippingAliasName.firstname")
61
- )
62
- ->addExpressionFieldToSelect(
63
- 'shipping_lastname', "{{shipping_lastname}}", array('shipping_lastname'=>"$shippingAliasName.lastname")
64
- )
65
- ->addExpressionFieldToSelect(
66
- 'billing_name',
67
- "CONCAT({{billing_firstname}}, ' ', {{billing_lastname}})",
68
- array(
69
- 'billing_firstname'=>"$billingAliasName.firstname",
70
- 'billing_lastname'=>"$billingAliasName.lastname"
71
- )
72
- )
73
- ->addExpressionFieldToSelect(
74
- 'shipping_name',
75
- 'CONCAT({{shipping_firstname}}, " ", {{shipping_lastname}})',
76
- array(
77
- 'shipping_firstname'=>"$shippingAliasName.firstname",
78
- 'shipping_lastname'=>"$shippingAliasName.lastname"
79
- )
80
- );
81
-
82
- $preparedFilters = array();
83
- if (isset($filters->filter)) {
84
- foreach ($filters->filter as $_filterKey => $_filterValue) {
85
- if (is_object($_filterValue)) {
86
- $preparedFilters[][$_filterValue->key] = $_filterValue->value;
87
- } else {
88
- $preparedFilters[][$_filterKey] = $_filterValue;
89
- }
90
- }
91
- }
92
- if (isset($filters->complex_filter)) {
93
- foreach ($filters->complex_filter as $_key => $_filter) {
94
- $_value = $_filter->value;
95
- if(is_object($_value)) {
96
- $preparedFilters[][$_filter->key] = array(
97
- $_value->key => $_value->value
98
- );
99
- } elseif(is_array($_value)) {
100
- $preparedFilters[][$_key] = array(
101
- $_filter->key => $_value
102
- );
103
- } else {
104
- $preparedFilters[][$_filter->key] = $_value;
105
- }
106
- }
107
- }
108
-
109
- if (!empty($preparedFilters)) {
110
- try {
111
- foreach ($preparedFilters as $preparedFilter) {
112
- foreach ($preparedFilter as $field => $value) {
113
- if (isset($this->_attributesMap['order'][$field])) {
114
- $field = $this->_attributesMap['order'][$field];
115
- }
116
-
117
- $collection->addFieldToFilter($field, $value);
118
- }
119
- }
120
- } catch (Mage_Core_Exception $e) {
121
- $this->_fault('filters_invalid', $e->getMessage());
122
- }
123
- }
124
-
125
- $result = array();
126
-
127
- foreach ($collection as $order) {
128
- $result[] = $this->_getAttributes($order, 'order');
129
- }
130
-
131
- return $result;
132
- }
133
  }
33
  */
34
  class Mage_Sales_Model_Order_Api_V2 extends Mage_Sales_Model_Order_Api
35
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  }
app/code/core/Mage/Sales/Model/Order/Creditmemo/Api.php CHANGED
@@ -35,47 +35,46 @@ class Mage_Sales_Model_Order_Creditmemo_Api extends Mage_Sales_Model_Api_Resourc
35
  {
36
 
37
  /**
38
- * Initialize attributes' mapping
39
  */
40
  public function __construct()
41
  {
42
- $this->_attributesMap['creditmemo'] = array(
43
- 'creditmemo_id' => 'entity_id'
44
- );
45
- $this->_attributesMap['creditmemo_item'] = array(
46
- 'item_id' => 'entity_id'
47
- );
48
- $this->_attributesMap['creditmemo_comment'] = array(
49
- 'comment_id' => 'entity_id'
50
  );
51
  }
52
 
53
  /**
54
- * Retrieve credit memos by filters
55
  *
56
- * @param array|null $filter
57
  * @return array
58
  */
59
  public function items($filters = null)
60
  {
61
- $filter = $this->_prepareListFilter($filters);
 
 
 
 
 
62
  try {
63
- $result = array();
64
- /** @var $creditmemoModel Mage_Sales_Model_Order_Creditmemo */
65
- $creditmemoModel = Mage::getModel('sales/order_creditmemo');
66
- // map field name entity_id to creditmemo_id
67
- foreach ($creditmemoModel->getFilteredCollectionItems($filter) as $creditmemo) {
68
- $result[] = $this->_getAttributes($creditmemo, 'creditmemo');
69
  }
70
  } catch (Exception $e) {
71
  $this->_fault('invalid_filter', $e->getMessage());
72
  }
73
- return $result;
74
  }
75
 
76
  /**
77
  * Make filter of appropriate format for list method
78
  *
 
79
  * @param array|null $filter
80
  * @return array|null
81
  */
35
  {
36
 
37
  /**
38
+ * Initialize attributes mapping
39
  */
40
  public function __construct()
41
  {
42
+ $this->_attributesMap = array(
43
+ 'creditmemo' => array('creditmemo_id' => 'entity_id'),
44
+ 'creditmemo_item' => array('item_id' => 'entity_id'),
45
+ 'creditmemo_comment' => array('comment_id' => 'entity_id')
 
 
 
 
46
  );
47
  }
48
 
49
  /**
50
+ * Retrieve credit memos list. Filtration could be applied
51
  *
52
+ * @param null|object|array $filters
53
  * @return array
54
  */
55
  public function items($filters = null)
56
  {
57
+ $creditmemos = array();
58
+ /** @var $apiHelper Mage_Api_Helper_Data */
59
+ $apiHelper = Mage::helper('api');
60
+ $filters = $apiHelper->parseFilters($filters, $this->_attributesMap['creditmemo']);
61
+ /** @var $creditmemoModel Mage_Sales_Model_Order_Creditmemo */
62
+ $creditmemoModel = Mage::getModel('sales/order_creditmemo');
63
  try {
64
+ $creditMemoCollection = $creditmemoModel->getFilteredCollectionItems($filters);
65
+ foreach ($creditMemoCollection as $creditmemo) {
66
+ $creditmemos[] = $this->_getAttributes($creditmemo, 'creditmemo');
 
 
 
67
  }
68
  } catch (Exception $e) {
69
  $this->_fault('invalid_filter', $e->getMessage());
70
  }
71
+ return $creditmemos;
72
  }
73
 
74
  /**
75
  * Make filter of appropriate format for list method
76
  *
77
+ * @deprecated since 1.7.0.1
78
  * @param array|null $filter
79
  * @return array|null
80
  */
app/code/core/Mage/Sales/Model/Order/Creditmemo/Api/V2.php CHANGED
@@ -37,6 +37,7 @@ class Mage_Sales_Model_Order_Creditmemo_Api_V2 extends Mage_Sales_Model_Order_Cr
37
  /**
38
  * Prepare filters
39
  *
 
40
  * @param null|object $filters
41
  * @return array
42
  */
37
  /**
38
  * Prepare filters
39
  *
40
+ * @deprecated since 1.7.0.1
41
  * @param null|object $filters
42
  * @return array
43
  */
app/code/core/Mage/Sales/Model/Order/Invoice/Api.php CHANGED
@@ -33,63 +33,50 @@
33
  */
34
  class Mage_Sales_Model_Order_Invoice_Api extends Mage_Sales_Model_Api_Resource
35
  {
 
 
 
36
  public function __construct()
37
  {
38
- $this->_attributesMap['invoice'] = array(
39
- 'invoice_id' => 'entity_id'
40
- );
41
-
42
- $this->_attributesMap['invoice_item'] = array(
43
- 'item_id' => 'entity_id'
44
- );
45
-
46
- $this->_attributesMap['invoice_comment'] = array(
47
- 'comment_id' => 'entity_id'
48
- );
49
  }
50
 
51
  /**
52
- * Retrive invoices by filters
53
  *
54
- * @param array $filters
55
  * @return array
56
  */
57
  public function items($filters = null)
58
  {
59
- //TODO: add full name logic
60
- $collection = Mage::getResourceModel('sales/order_invoice_collection')
 
 
61
  ->addAttributeToSelect('order_id')
62
  ->addAttributeToSelect('increment_id')
63
  ->addAttributeToSelect('created_at')
64
  ->addAttributeToSelect('state')
65
  ->addAttributeToSelect('grand_total')
66
- ->addAttributeToSelect('order_currency_code')
67
- ->joinAttribute('billing_firstname', 'order_address/firstname', 'billing_address_id', null, 'left')
68
- ->joinAttribute('billing_lastname', 'order_address/lastname', 'billing_address_id', null, 'left')
69
- ->joinAttribute('order_increment_id', 'order/increment_id', 'order_id', null, 'left')
70
- ->joinAttribute('order_created_at', 'order/created_at', 'order_id', null, 'left');
71
-
72
- if (is_array($filters)) {
73
- try {
74
- foreach ($filters as $field => $value) {
75
- if (isset($this->_attributesMap['invoice'][$field])) {
76
- $field = $this->_attributesMap['invoice'][$field];
77
- }
78
-
79
- $collection->addFieldToFilter($field, $value);
80
- }
81
- } catch (Mage_Core_Exception $e) {
82
- $this->_fault('filters_invalid', $e->getMessage());
83
  }
 
 
84
  }
85
-
86
- $result = array();
87
-
88
- foreach ($collection as $invoice) {
89
- $result[] = $this->_getAttributes($invoice, 'invoice');
90
  }
91
-
92
- return $result;
93
  }
94
 
95
  /**
@@ -110,7 +97,7 @@ class Mage_Sales_Model_Order_Invoice_Api extends Mage_Sales_Model_Api_Resource
110
 
111
  $result = $this->_getAttributes($invoice, 'invoice');
112
  $result['order_increment_id'] = $invoice->getOrderIncrementId();
113
-
114
  $result['items'] = array();
115
  foreach ($invoice->getAllItems() as $item) {
116
  $result['items'][] = $this->_getAttributes($item, 'invoice_item');
@@ -120,7 +107,7 @@ class Mage_Sales_Model_Order_Invoice_Api extends Mage_Sales_Model_Api_Resource
120
  foreach ($invoice->getCommentsCollection() as $comment) {
121
  $result['comments'][] = $this->_getAttributes($comment, 'invoice_comment');
122
  }
123
-
124
  return $result;
125
  }
126
 
@@ -319,4 +306,4 @@ class Mage_Sales_Model_Order_Invoice_Api extends Mage_Sales_Model_Api_Resource
319
 
320
  return true;
321
  }
322
- } // Class Mage_Sales_Model_Order_Invoice_Api End
33
  */
34
  class Mage_Sales_Model_Order_Invoice_Api extends Mage_Sales_Model_Api_Resource
35
  {
36
+ /**
37
+ * Initialize attributes map
38
+ */
39
  public function __construct()
40
  {
41
+ $this->_attributesMap = array(
42
+ 'invoice' => array('invoice_id' => 'entity_id'),
43
+ 'invoice_item' => array('item_id' => 'entity_id'),
44
+ 'invoice_comment' => array('comment_id' => 'entity_id'));
 
 
 
 
 
 
 
45
  }
46
 
47
  /**
48
+ * Retrive invoices list. Filtration could be applied
49
  *
50
+ * @param null|object|array $filters
51
  * @return array
52
  */
53
  public function items($filters = null)
54
  {
55
+ $invoices = array();
56
+ /** @var $invoiceCollection Mage_Sales_Model_Mysql4_Order_Invoice_Collection */
57
+ $invoiceCollection = Mage::getResourceModel('sales/order_invoice_collection');
58
+ $invoiceCollection->addAttributeToSelect('entity_id')
59
  ->addAttributeToSelect('order_id')
60
  ->addAttributeToSelect('increment_id')
61
  ->addAttributeToSelect('created_at')
62
  ->addAttributeToSelect('state')
63
  ->addAttributeToSelect('grand_total')
64
+ ->addAttributeToSelect('order_currency_code');
65
+
66
+ /** @var $apiHelper Mage_Api_Helper_Data */
67
+ $apiHelper = Mage::helper('api');
68
+ try {
69
+ $filters = $apiHelper->parseFilters($filters, $this->_attributesMap['invoice']);
70
+ foreach ($filters as $field => $value) {
71
+ $invoiceCollection->addFieldToFilter($field, $value);
 
 
 
 
 
 
 
 
 
72
  }
73
+ } catch (Mage_Core_Exception $e) {
74
+ $this->_fault('filters_invalid', $e->getMessage());
75
  }
76
+ foreach ($invoiceCollection as $invoice) {
77
+ $invoices[] = $this->_getAttributes($invoice, 'invoice');
 
 
 
78
  }
79
+ return $invoices;
 
80
  }
81
 
82
  /**
97
 
98
  $result = $this->_getAttributes($invoice, 'invoice');
99
  $result['order_increment_id'] = $invoice->getOrderIncrementId();
100
+
101
  $result['items'] = array();
102
  foreach ($invoice->getAllItems() as $item) {
103
  $result['items'][] = $this->_getAttributes($item, 'invoice_item');
107
  foreach ($invoice->getCommentsCollection() as $comment) {
108
  $result['comments'][] = $this->_getAttributes($comment, 'invoice_comment');
109
  }
110
+
111
  return $result;
112
  }
113
 
306
 
307
  return true;
308
  }
309
+ }
app/code/core/Mage/Sales/Model/Order/Invoice/Api/V2.php CHANGED
@@ -33,94 +33,14 @@
33
  */
34
  class Mage_Sales_Model_Order_Invoice_Api_V2 extends Mage_Sales_Model_Order_Invoice_Api
35
  {
36
- /**
37
- * Retrive invoices by filters
38
- *
39
- * @param array $filters
40
- * @return array
41
- */
42
- public function items($filters = null)
43
- {
44
- //TODO: add full name logic
45
- $collection = Mage::getModel('sales/order_invoice')->getCollection()
46
- ->addAttributeToSelect('order_id')
47
- ->addAttributeToSelect('increment_id')
48
- ->addAttributeToSelect('created_at')
49
- ->addAttributeToSelect('state')
50
- ->addAttributeToSelect('grand_total')
51
- ->addAttributeToSelect('order_currency_code')
52
- ->joinAttribute('billing_firstname', 'order_address/firstname', 'billing_address_id', null, 'left')
53
- ->joinAttribute('billing_lastname', 'order_address/lastname', 'billing_address_id', null, 'left')
54
- ->joinAttribute('order_increment_id', 'order/increment_id', 'order_id', null, 'left')
55
- ->joinAttribute('order_created_at', 'order/created_at', 'order_id', null, 'left');
56
-
57
- $preparedFilters = array();
58
- if (isset($filters->filter)) {
59
- foreach ($filters->filter as $_filter) {
60
- $preparedFilters[][$_filter->key] = $_filter->value;
61
- }
62
- }
63
- if (isset($filters->complex_filter)) {
64
- foreach ($filters->complex_filter as $_filter) {
65
- $_value = $_filter->value;
66
- if(is_object($_value)) {
67
- $preparedFilters[][$_filter->key] = array(
68
- $_value->key => $_value->value
69
- );
70
- } elseif(is_array($_value)) {
71
- $preparedFilters[][$_filter->key] = array(
72
- $_value['key'] => $_value['value']
73
- );
74
- } else {
75
- $preparedFilters[][$_filter->key] = $_value;
76
- }
77
- }
78
- }
79
-
80
- if (!empty($preparedFilters)) {
81
- try {
82
- foreach ($preparedFilters as $preparedFilter) {
83
- foreach ($preparedFilter as $field => $value) {
84
- if (isset($this->_attributesMap['order'][$field])) {
85
- $field = $this->_attributesMap['order'][$field];
86
- }
87
-
88
- $collection->addFieldToFilter($field, $value);
89
- }
90
- }
91
- } catch (Mage_Core_Exception $e) {
92
- $this->_fault('filters_invalid', $e->getMessage());
93
- }
94
- }
95
-
96
- $result = array();
97
-
98
- foreach ($collection as $invoice) {
99
- $result[] = $this->_getAttributes($invoice, 'invoice');
100
- }
101
-
102
- return $result;
103
- }
104
-
105
- protected function _prepareItemQtyData($data)
106
- {
107
- $_data = array();
108
- foreach ($data as $item) {
109
- if (isset($item->order_item_id) && isset($item->qty)) {
110
- $_data[$item->order_item_id] = $item->qty;
111
- }
112
- }
113
- return $_data;
114
- }
115
-
116
  /**
117
  * Create new invoice for order
118
  *
119
  * @param string $invoiceIncrementId
120
  * @param array $itemsQty
121
  * @param string $comment
122
- * @param booleam $email
123
- * @param boolean $includeComment
124
  * @return string
125
  */
126
  public function create($invoiceIncrementId, $itemsQty, $comment = null, $email = false, $includeComment = false)
@@ -157,11 +77,7 @@ class Mage_Sales_Model_Order_Invoice_Api_V2 extends Mage_Sales_Model_Order_Invoi
157
  $invoice->getOrder()->setIsInProcess(true);
158
 
159
  try {
160
- $transactionSave = Mage::getModel('core/resource_transaction')
161
- ->addObject($invoice)
162
- ->addObject($invoice->getOrder())
163
- ->save();
164
-
165
  $invoice->sendEmail($email, ($includeComment ? $comment : ''));
166
  } catch (Mage_Core_Exception $e) {
167
  $this->_fault('data_invalid', $e->getMessage());
@@ -169,4 +85,21 @@ class Mage_Sales_Model_Order_Invoice_Api_V2 extends Mage_Sales_Model_Order_Invoi
169
 
170
  return $invoice->getIncrementId();
171
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  }
33
  */
34
  class Mage_Sales_Model_Order_Invoice_Api_V2 extends Mage_Sales_Model_Order_Invoice_Api
35
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  /**
37
  * Create new invoice for order
38
  *
39
  * @param string $invoiceIncrementId
40
  * @param array $itemsQty
41
  * @param string $comment
42
+ * @param bool $email
43
+ * @param bool $includeComment
44
  * @return string
45
  */
46
  public function create($invoiceIncrementId, $itemsQty, $comment = null, $email = false, $includeComment = false)
77
  $invoice->getOrder()->setIsInProcess(true);
78
 
79
  try {
80
+ Mage::getModel('core/resource_transaction')->addObject($invoice)->addObject($invoice->getOrder())->save();
 
 
 
 
81
  $invoice->sendEmail($email, ($includeComment ? $comment : ''));
82
  } catch (Mage_Core_Exception $e) {
83
  $this->_fault('data_invalid', $e->getMessage());
85
 
86
  return $invoice->getIncrementId();
87
  }
88
+
89
+ /**
90
+ * Prepare items quantity data
91
+ *
92
+ * @param array $data
93
+ * @return array
94
+ */
95
+ protected function _prepareItemQtyData($data)
96
+ {
97
+ $quantity = array();
98
+ foreach ($data as $item) {
99
+ if (isset($item->order_item_id) && isset($item->qty)) {
100
+ $quantity[$item->order_item_id] = $item->qty;
101
+ }
102
+ }
103
+ return $quantity;
104
+ }
105
  }
app/code/core/Mage/Sales/Model/Order/Shipment/Api.php CHANGED
@@ -45,15 +45,16 @@ class Mage_Sales_Model_Order_Shipment_Api extends Mage_Sales_Model_Api_Resource
45
  }
46
 
47
  /**
48
- * Retrive shipments by filters
49
  *
50
- * @param array $filters
51
  * @return array
52
  */
53
  public function items($filters = null)
54
  {
 
55
  //TODO: add full name logic
56
- $collection = Mage::getResourceModel('sales/order_shipment_collection')
57
  ->addAttributeToSelect('increment_id')
58
  ->addAttributeToSelect('created_at')
59
  ->addAttributeToSelect('total_qty')
@@ -62,27 +63,21 @@ class Mage_Sales_Model_Order_Shipment_Api extends Mage_Sales_Model_Api_Resource
62
  ->joinAttribute('order_increment_id', 'order/increment_id', 'order_id', null, 'left')
63
  ->joinAttribute('order_created_at', 'order/created_at', 'order_id', null, 'left');
64
 
65
- if (is_array($filters)) {
66
- try {
67
- foreach ($filters as $field => $value) {
68
- if (isset($this->_attributesMap['shipment'][$field])) {
69
- $field = $this->_attributesMap['shipment'][$field];
70
- }
71
-
72
- $collection->addFieldToFilter($field, $value);
73
- }
74
- } catch (Mage_Core_Exception $e) {
75
- $this->_fault('filters_invalid', $e->getMessage());
76
  }
 
 
77
  }
78
-
79
- $result = array();
80
-
81
- foreach ($collection as $shipment) {
82
- $result[] = $this->_getAttributes($shipment, 'shipment');
83
  }
84
 
85
- return $result;
86
  }
87
 
88
  /**
45
  }
46
 
47
  /**
48
+ * Retrieve shipments by filters
49
  *
50
+ * @param null|object|array $filters
51
  * @return array
52
  */
53
  public function items($filters = null)
54
  {
55
+ $shipments = array();
56
  //TODO: add full name logic
57
+ $shipmentCollection = Mage::getResourceModel('sales/order_shipment_collection')
58
  ->addAttributeToSelect('increment_id')
59
  ->addAttributeToSelect('created_at')
60
  ->addAttributeToSelect('total_qty')
63
  ->joinAttribute('order_increment_id', 'order/increment_id', 'order_id', null, 'left')
64
  ->joinAttribute('order_created_at', 'order/created_at', 'order_id', null, 'left');
65
 
66
+ /** @var $apiHelper Mage_Api_Helper_Data */
67
+ $apiHelper = Mage::helper('api');
68
+ try {
69
+ $filters = $apiHelper->parseFilters($filters, $this->_attributesMap['shipment']);
70
+ foreach ($filters as $field => $value) {
71
+ $shipmentCollection->addFieldToFilter($field, $value);
 
 
 
 
 
72
  }
73
+ } catch (Mage_Core_Exception $e) {
74
+ $this->_fault('filters_invalid', $e->getMessage());
75
  }
76
+ foreach ($shipmentCollection as $shipment) {
77
+ $shipments[] = $this->_getAttributes($shipment, 'shipment');
 
 
 
78
  }
79
 
80
+ return $shipments;
81
  }
82
 
83
  /**
app/code/core/Mage/Sales/Model/Order/Shipment/Api/V2.php CHANGED
@@ -33,62 +33,6 @@
33
  */
34
  class Mage_Sales_Model_Order_Shipment_Api_V2 extends Mage_Sales_Model_Order_Shipment_Api
35
  {
36
- /**
37
- * Retrive shipments by filters
38
- *
39
- * @param array $filters
40
- * @return array
41
- */
42
- public function items($filters = null)
43
- {
44
- //TODO: add full name logic
45
- $collection = Mage::getResourceModel('sales/order_shipment_collection')
46
- ->addAttributeToSelect('increment_id')
47
- ->addAttributeToSelect('created_at')
48
- ->addAttributeToSelect('total_qty')
49
- ->joinAttribute('shipping_firstname', 'order_address/firstname', 'shipping_address_id', null, 'left')
50
- ->joinAttribute('shipping_lastname', 'order_address/lastname', 'shipping_address_id', null, 'left')
51
- ->joinAttribute('order_increment_id', 'order/increment_id', 'order_id', null, 'left')
52
- ->joinAttribute('order_created_at', 'order/created_at', 'order_id', null, 'left');
53
-
54
- $preparedFilters = array();
55
- if (isset($filters->filter)) {
56
- foreach ($filters->filter as $_filter) {
57
- $preparedFilters[$_filter->key] = $_filter->value;
58
- }
59
- }
60
- if (isset($filters->complex_filter)) {
61
- foreach ($filters->complex_filter as $_filter) {
62
- $_value = $_filter->value;
63
- $preparedFilters[$_filter->key] = array(
64
- $_value->key => $_value->value
65
- );
66
- }
67
- }
68
-
69
- if (!empty($preparedFilters)) {
70
- try {
71
- foreach ($preparedFilters as $field => $value) {
72
- if (isset($this->_attributesMap['shipment'][$field])) {
73
- $field = $this->_attributesMap['shipment'][$field];
74
- }
75
-
76
- $collection->addFieldToFilter($field, $value);
77
- }
78
- } catch (Mage_Core_Exception $e) {
79
- $this->_fault('filters_invalid', $e->getMessage());
80
- }
81
- }
82
-
83
- $result = array();
84
-
85
- foreach ($collection as $shipment) {
86
- $result[] = $this->_getAttributes($shipment, 'shipment');
87
- }
88
-
89
- return $result;
90
- }
91
-
92
  protected function _prepareItemQtyData($data)
93
  {
94
  $_data = array();
@@ -106,12 +50,13 @@ class Mage_Sales_Model_Order_Shipment_Api_V2 extends Mage_Sales_Model_Order_Ship
106
  * @param string $orderIncrementId
107
  * @param array $itemsQty
108
  * @param string $comment
109
- * @param booleam $email
110
  * @param boolean $includeComment
111
  * @return string
112
  */
113
- public function create($orderIncrementId, $itemsQty = array(), $comment = null, $email = false, $includeComment = false)
114
- {
 
115
  $order = Mage::getModel('sales/order')->loadByIncrementId($orderIncrementId);
116
  $itemsQty = $this->_prepareItemQtyData($itemsQty);
117
  /**
33
  */
34
  class Mage_Sales_Model_Order_Shipment_Api_V2 extends Mage_Sales_Model_Order_Shipment_Api
35
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  protected function _prepareItemQtyData($data)
37
  {
38
  $_data = array();
50
  * @param string $orderIncrementId
51
  * @param array $itemsQty
52
  * @param string $comment
53
+ * @param boolean $email
54
  * @param boolean $includeComment
55
  * @return string
56
  */
57
+ public function create($orderIncrementId, $itemsQty = array(), $comment = null, $email = false,
58
+ $includeComment = false
59
+ ) {
60
  $order = Mage::getModel('sales/order')->loadByIncrementId($orderIncrementId);
61
  $itemsQty = $this->_prepareItemQtyData($itemsQty);
62
  /**
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Modules</name>
4
- <version>1.7.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Collection of Magento Core Modules</summary>
10
  <description>Collection of Magento Core Modules</description>
11
- <notes>1.7.0.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2012-04-23</date>
14
- <time>13:48:12</time>
15
- <contents><target name="magecore"><dir name="Mage"><dir name="Admin"><dir name="Helper"><file name="Data.php" hash="f6629a54a742ce9332b05814416329b4"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="3d149571d410638fcab035261c324042"/><file name="Time.php" hash="6f3ee812d00b0a4772349ebaaff4876d"/></dir><file name="Resource.php" hash="2a6d8026b6969d848e7293669eb8ca12"/><dir name="Role"><file name="Generic.php" hash="7ad581bd1436ed026e8fb0195eafb15d"/><file name="Group.php" hash="f76a70690402caee754796cc0ea629f5"/><file name="Registry.php" hash="a692222fc7da6c2d70aab83bdbac3ce3"/><file name="User.php" hash="aece5a476f976b872dc27fd515859fc4"/></dir><file name="Role.php" hash="5eca8281ae1a514f7c74a82a15b100d4"/></dir><file name="Acl.php" hash="ebdb2c58cf61ba4aa049459291c7b0eb"/><file name="Config.php" hash="50e98a8e8f267df9d26558179d1c9650"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="9fbbe457f96400885f6b85081322658c"/></dir><file name="Role.php" hash="bc57470426bdc1ddab07d7a6156f2a07"/></dir><file name="Acl.php" hash="f1ad451291af12b30d1719e17cdfacc3"/><dir name="Permissions"><file name="Collection.php" hash="006a43c602b841c8fd204a27862258cd"/></dir><dir name="Role"><file name="Collection.php" hash="82616ddfea53479b4018fb6513e5fb8c"/></dir><file name="Role.php" hash="51cf5dce8eaf006ff7ef9ec33dd390b5"/><dir name="Roles"><file name="Collection.php" hash="37d9abe0fa17d509d18d18a2615be267"/><dir name="User"><file name="Collection.php" hash="18f3f4b67c27649fff9539f11e625ffc"/></dir></dir><file name="Roles.php" hash="d27d5689dc5dffeeb2e92b32826782cd"/><dir name="Rules"><file name="Collection.php" hash="392348401e26fac9560fa3a8b96140cf"/></dir><file name="Rules.php" hash="ab8a25633aabf0ff3963c4d7dde667ce"/><dir name="User"><file name="Collection.php" hash="7d218125286df4e48efacfca3a50dd5a"/></dir><file name="User.php" hash="1853ca0c84cf0610ddad0a61b9f211e0"/></dir><file name="Observer.php" hash="fd1fb678e6235d4413615c7cde1c5ecd"/><dir name="Resource"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="903698a351d55ba3afb248c0511f051c"/></dir><file name="Role.php" hash="2a9dca875f5302f0e7d77f56d1d383c7"/></dir><file name="Acl.php" hash="5cdd112bd8000cbb6412c3259abdce1e"/><dir name="Permissions"><file name="Collection.php" hash="93a6483f27f91e83a2a6a14df9096d69"/></dir><dir name="Role"><file name="Collection.php" hash="af2150da8918f51ade63d6dbb37a8aa6"/></dir><file name="Role.php" hash="6fef9a28feb88846406d1ffb23d0d003"/><dir name="Roles"><file name="Collection.php" hash="c4b14d95eb741e265c6dbdd611de705b"/><dir name="User"><file name="Collection.php" hash="d4d8e53b485da036b4c102afa9e318b0"/></dir></dir><file name="Roles.php" hash="1a843ec6901f7e6130dbc5ef20755cd2"/><dir name="Rules"><file name="Collection.php" hash="d704cc548faf899b7d85a2b0d3077cef"/></dir><file name="Rules.php" hash="bc40bce083b3adaa0301a009d776140c"/><dir name="User"><file name="Collection.php" hash="ad8696ccd03741488a651ad9e2240f39"/></dir><file name="User.php" hash="be76c342bb805696df3aa358353bc007"/></dir><file name="Role.php" hash="bfad5b92617c4ba93ce48bd69f415489"/><file name="Roles.php" hash="5e6cd07d59ff8e799cedcfa8827ad60a"/><file name="Rules.php" hash="7260e08c7085d71efbd679ff0a559976"/><file name="Session.php" hash="36e2e10aaa818d4f2717ea269eee30be"/><file name="User.php" hash="1099908fe13be08fda3f3ef7422060dd"/></dir><dir name="data"><dir name="admin_setup"><file name="data-install-1.6.0.0.php" hash="fe36434b6f214fbcf844bd32225c43ab"/></dir></dir><dir name="etc"><file name="config.xml" hash="e245fe43c6a5beba9cf687ea9a85de63"/></dir><dir name="sql"><dir name="admin_setup"><file name="install-1.6.0.0.php" hash="36164605477c235439659dc569e05f92"/><file name="mysql4-install-0.7.0.php" hash="39b7fc848ade94ad3377c7bb6a37c6b5"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="37c3302caaa917557af2853ad65e2982"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="647ce407ab48c64232327b461ba29378"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="849fb2c6e94ca2eba632ae813a9c415b"/><file name="upgrade-1.6.0.0-1.6.1.0.php" hash="e8aa0e8d5bfea2b6bdcffc4caafc143d"/></dir></dir></dir><dir name="AdminNotification"><dir name="Helper"><file name="Data.php" hash="ac6c95007add2bfb9dc63d67bebed2cd"/></dir><dir name="Model"><file name="Feed.php" hash="b029502276d335525b5019bf130b14da"/><file name="Inbox.php" hash="940d64f36c2a576700b05df7527f0196"/><dir name="Mysql4"><dir name="Inbox"><file name="Collection.php" hash="70fb886cfcebe5ea3935348d4370caa5"/></dir><file name="Inbox.php" hash="a2489c083a38b19d8975b019029c7826"/></dir><file name="Observer.php" hash="4a377ef0ed17b31a3206b7073e72f4bc"/><dir name="Resource"><dir name="Inbox"><file name="Collection.php" hash="cac7c12353c00e296d15ddd69d438ce3"/></dir><file name="Inbox.php" hash="495ab4fe4205e334451dfd728b262b99"/></dir><file name="Survey.php" hash="3f41ec7d6fe16f188f466ffd2ec8b931"/></dir><dir name="etc"><file name="adminhtml.xml" hash="124aee5db58b46113e610d27ba374545"/><file name="config.xml" hash="8ac18d57f8a1d671bff6157257e5da0b"/><file name="system.xml" hash="c355b2ff83bd7fa1cd1ddf5a7e1b1923"/></dir><dir name="sql"><dir name="adminnotification_setup"><file name="install-1.6.0.0.php" hash="76d300304ac7041b07bb59af75da77b1"/><file name="mysql4-install-1.0.0.php" hash="fea46f32956535209096f0381ef22298"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="8e8eaefc277256429ae408012e6a1235"/></dir></dir></dir><dir name="Api"><dir name="Controller"><file name="Action.php" hash="2d23b3db952f2441c88ddcb3a9c64a44"/></dir><file name="Exception.php" hash="58480f5d304b979c754101ff43473474"/><dir name="Helper"><file name="Data.php" hash="b29708e5eb11814315cd7019842ecd9d"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="462394a2746c5174d86b5361aaa047d6"/><file name="Time.php" hash="102ead4725d3e24a415d6975329c6388"/></dir><file name="Resource.php" hash="06c14ff82641d81fa0208023f6ed1d33"/><dir name="Role"><file name="Generic.php" hash="01b21021fa7eb3400c67c041cbcc4766"/><file name="Group.php" hash="8531c15285eea3075ef4258c06de965f"/><file name="Registry.php" hash="5c5406c3f57fc9da5f4bc70775287c83"/><file name="User.php" hash="c10aaae2bf52af9ad1dbde17525d44cb"/></dir><file name="Role.php" hash="9f3b370769de51039aad8f1394fcac33"/></dir><file name="Acl.php" hash="6caa9b60068ecb5b6397a573c020a81d"/><file name="Config.php" hash="350792e79ca4335ee561b3d1ef02de3c"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="96bea7c2b2a4e86e5587ac0a9c9b2b20"/></dir><file name="Role.php" hash="cd4ab9e7eda2bc5247060be1103cab30"/></dir><file name="Acl.php" hash="60b7ee6d08ec1b56a87f6dceeee82409"/><dir name="Permissions"><file name="Collection.php" hash="91fe9bf777a7cf1938599e77920da120"/></dir><dir name="Role"><file name="Collection.php" hash="be5659debe9a1f83b1dd262bcd1db515"/></dir><file name="Role.php" hash="a2c97cbaa20a9840f855cd7f4eda3040"/><dir name="Roles"><file name="Collection.php" hash="cc4260a720ef58778658aceaaee34e18"/><dir name="User"><file name="Collection.php" hash="ce41ed01b2ae6e9ccac23d75e4924825"/></dir></dir><file name="Roles.php" hash="471e5177cf16d3abf06080e1d5f930e3"/><dir name="Rules"><file name="Collection.php" hash="fc9c2ef5d229acb210a0b1f8abb221c8"/></dir><file name="Rules.php" hash="95c2e05cf81d8ff94a86b34179def5eb"/><dir name="User"><file name="Collection.php" hash="df49e743a0d69cec2358d845cc164989"/></dir><file name="User.php" hash="2a99146b2d2e3586dfbb6bb7a1d71569"/></dir><dir name="Resource"><file name="Abstract.php" hash="7625ae0437c1578a9026f1e3745cf409"/><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="d0f87cbfaa513ad95b8f010a6c258cb9"/></dir><file name="Role.php" hash="2dd32716e4799a25eb0fd9b183040e50"/></dir><file name="Acl.php" hash="2634bb6b3b2bc2e7ea19fd0b696e7517"/><dir name="Permissions"><file name="Collection.php" hash="b30ba903e03845797ec2691587c4dc8a"/></dir><dir name="Role"><file name="Collection.php" hash="83d6539eee3bee8260c2d3885c5ddf6c"/></dir><file name="Role.php" hash="757e08c87fd6a395c3e5c6bb627ba443"/><dir name="Roles"><file name="Collection.php" hash="319f92471329bb33304ac6d973d83c52"/><dir name="User"><file name="Collection.php" hash="75fc7ebeb3af5042ea5a1757881207c6"/></dir></dir><file name="Roles.php" hash="c997c4e16b2e248805bea50dc61ca319"/><dir name="Rules"><file name="Collection.php" hash="b1ce3972f0087e5daac691a123a03bee"/></dir><file name="Rules.php" hash="3fb40754fa1e1c73ca4df476186d20d5"/><dir name="User"><file name="Collection.php" hash="e2d04054ac04787676016d758caf5492"/></dir><file name="User.php" hash="ac5f7acd6579fdf7d334a7a61cdd1912"/></dir><file name="Role.php" hash="b50a75387f3d291b51c48deb6c1cf9a7"/><file name="Roles.php" hash="c5ab7a6a9ef57ee5d9d544b17322f333"/><file name="Rules.php" hash="9db76c021cb90083f3d1f9c8efcae3e8"/><dir name="Server"><dir name="Adapter"><file name="Interface.php" hash="fa02e05e4a2ac7396a66f01d9920a71e"/><file name="Soap.php" hash="80f8748c140dc4383fbff468b19e445b"/><file name="Xmlrpc.php" hash="55d784076e6a70e3bed287ea63ee3a4b"/></dir><dir name="Handler"><file name="Abstract.php" hash="891806ddbda97ac80464dc0bd92215d5"/></dir><file name="Handler.php" hash="ffd0e35ca0d0928a9fe99ffafcc73e76"/><dir name="V2"><dir name="Adapter"><file name="Soap.php" hash="9f26aa53ccf670b8c85307d6ae79ecda"/></dir><file name="Handler.php" hash="985aafd186426d27bd63dd3c390ce250"/></dir><dir name="Wsi"><dir name="Adapter"><file name="Soap.php" hash="b691bba6e7eb32f9fed6927e7180c577"/></dir><file name="Handler.php" hash="2833621b6ae075e1b053285ada426037"/></dir></dir><file name="Server.php" hash="3218279bb1c457754c90c6d3e699b70e"/><file name="Session.php" hash="950810d4d18a0405d38d97f885d96ad9"/><file name="User.php" hash="c8db3c468606ab5a7a6d4e820d83aa09"/><dir name="Wsdl"><dir name="Config"><file name="Base.php" hash="8f1ba0b4721e8c9000452ca1ff3dddb7"/><file name="Element.php" hash="0d672555a65eb8534451d370370ccd79"/></dir><file name="Config.php" hash="8570470881de77dedec11eefd48e3e0a"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="3fd8f5f4f328cc8b6b9e35f64c0a90b4"/><file name="SoapController.php" hash="5b586c4c21b6396781ea498f96f2ecc6"/><dir name="V2"><file name="SoapController.php" hash="67dfecc24b8bd4c2e537dd69b8315c93"/></dir><file name="XmlrpcController.php" hash="be34f6cab8d863d32af8cea671519ba2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="348ac9c3ead222049cd934bbee427987"/><file name="api.xml" hash="55dadf0e6da828da185e8db550802198"/><file name="config.xml" hash="ad7d5a7c0f603ba4fb774a12f18d3daa"/><file name="system.xml" hash="7ffe7a5128065a4adec312a369530d0a"/><file name="wsdl.xml" hash="f0db676b04733b38f310355bb44bc3cb"/><file name="wsdl2.xml" hash="9a189b4b56eb95fba860e01e100fe53b"/><file name="wsi.xml" hash="57acf72c276f818427cde32159d0c3d6"/></dir><dir name="sql"><dir name="api_setup"><file name="install-1.6.0.0.php" hash="47e95c2077fd110d92d295202a4db2bd"/><file name="mysql4-install-0.7.0.php" hash="f096cfb116484975ec6a86944ac9ea6e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="dc56a8844517eb2416978dbb9b0c2bff"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="d309c6a74eacf7c73914b08836c8e627"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="3303d916e3158a32714718c269b359e2"/></dir></dir></dir><dir name="Api2"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><file name="Buttons.php" hash="0e3ce368a7ccae3cdbfd8192be489e71"/><dir name="Edit"><file name="Form.php" hash="98064a3b32b1c0bfbca07ce2f526216b"/></dir><file name="Edit.php" hash="b4ea6350dc4cedb50ddad5690e84bd69"/><file name="Grid.php" hash="c52554296f1ef65a3bb983c3ad86b2c6"/><dir name="Tab"><file name="Resource.php" hash="5b4382d4a73f1fba596f2a9c787004d6"/></dir><file name="Tabs.php" hash="be4918f4f91a37940753058c7484c4bd"/></dir><file name="Attribute.php" hash="cfb38a5c0074c7419122c91ac0294ad1"/><dir name="Permissions"><dir name="User"><dir name="Edit"><dir name="Tab"><file name="Roles.php" hash="e77fe023073eee656414f12dd1015378"/></dir></dir></dir></dir><dir name="Roles"><file name="Buttons.php" hash="6c9f30b38675b38ebe302c80bc9c4821"/><file name="Grid.php" hash="e07a7ec078ceb476d2696e621d43bc07"/><dir name="Tab"><file name="Info.php" hash="93a3c34c7ec14441a5ed4d4ac8c72a27"/><file name="Resources.php" hash="cd283949a0e328379a83be82be7e6f98"/><file name="Users.php" hash="0054d4b0082143a4669e2b185015ad41"/></dir><file name="Tabs.php" hash="98d54c94aed557a493ba132dbd732775"/></dir><file name="Roles.php" hash="dc0a0ea4f1f4e5103ce8001c0317a693"/></dir></dir><file name="Exception.php" hash="ad210d8b992341d8f76992d754654d32"/><dir name="Helper"><file name="Data.php" hash="7b949f2cd9696e520240a6d62e62a2fb"/></dir><dir name="Model"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Operation.php" hash="79025c8d0353fb68171c60360a3ab205"/><file name="ResourcePermission.php" hash="1e40c42a48424ca0795d5e80959ea670"/></dir><file name="Attribute.php" hash="b07876f7aa8680c35c6e1612d2ffb708"/></dir><file name="Filter.php" hash="d96ea1b1d4211225f3013039026560dd"/><dir name="Global"><file name="Role.php" hash="7e342d8a80cd4c7736adb90d411be88b"/><dir name="Rule"><file name="Permission.php" hash="10513ff4f9182d065e4eed9608eccb7e"/><file name="Privilege.php" hash="8e555a03e931206c003ba1ab4c8c4dd8"/><file name="ResourcePermission.php" hash="ce0bb92502a911216d22be559c5c024c"/><file name="Tree.php" hash="8f00a366697adde64254cec463e4f764"/></dir><file name="Rule.php" hash="058dd7ad4d34f58a35bf78a66ea48fd5"/></dir><file name="Global.php" hash="52b953eb1b8b27ff402c97aa5b81d83e"/><file name="PermissionInterface.php" hash="1395538f7d778e2a3af80a419f509d2e"/></dir><file name="Acl.php" hash="f4f126f558b2a9cb6b72cd2e18d75480"/><dir name="Auth"><dir name="Adapter"><file name="Abstract.php" hash="6facae50e40418e4e9ab0427fc53605c"/><file name="Oauth.php" hash="f4e5ae6da3ce6a9cea6eeacad2be93e0"/></dir><file name="Adapter.php" hash="d4d66cdb643d32eae3525a7c14b76ba7"/><dir name="User"><file name="Abstract.php" hash="8f9d939966ccd2751ec97cc5f107c498"/><file name="Admin.php" hash="c6d5fc4868274f6d70793dbc49a5902c"/><file name="Customer.php" hash="7e9c4771392694588632b30461081697"/><file name="Guest.php" hash="130f07a104a4a726ff548ed587355aab"/></dir><file name="User.php" hash="60390904bb062cb8c1b4ac397f83b250"/></dir><file name="Auth.php" hash="55853a7c175a258064377c7be531b5f7"/><file name="Config.php" hash="8f2ff9f42fcfbaf94292e862aa8fcd3e"/><file name="Dispatcher.php" hash="e6d5dd1b35a171335555a7c16b7036f4"/><file name="Multicall.php" hash="9354daea1e054d36c96c4ae131ba08f7"/><file name="Observer.php" hash="4fd4b96f57738ce9c16f373d7ffb9440"/><dir name="Renderer"><file name="Interface.php" hash="e05d6625044df4256d47cdecb5c028c8"/><file name="Json.php" hash="9c77c1ec5f0a99b9fdfe2fc24ff9d579"/><file name="Query.php" hash="7b2b74d1501e84954d4fb7360685e534"/><dir name="Xml"><file name="Writer.php" hash="a7612f298be0953f038b986123f09868"/></dir><file name="Xml.php" hash="ce5601cec8f23a25570534161ef2a524"/></dir><file name="Renderer.php" hash="5dcb01010f28fee449ed8b03020e297f"/><dir name="Request"><file name="Internal.php" hash="d83a9c92ee5cfa6843b33e29f5518d0f"/><dir name="Interpreter"><file name="Interface.php" hash="4feb0ca06bee2c14ca2d97acd17253e6"/><file name="Json.php" hash="516cf21923db3a3f0af71b4e4a31fd82"/><file name="Query.php" hash="2f6e5f2506b3f57c55b62f78731a7819"/><file name="Xml.php" hash="4a2d65deb42bfc9547b9cc9c3e381e15"/></dir><file name="Interpreter.php" hash="f4ca14f1dcb3648892eb35c5d2af8a06"/></dir><file name="Request.php" hash="048c840f65f0cc23c38cac80874cf6c1"/><dir name="Resource"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Collection.php" hash="21689de7c53912b635c30b59012880a4"/></dir><file name="Attribute.php" hash="094b7fd6d4eca23e61bf61d02767d14e"/></dir><dir name="Global"><dir name="Role"><file name="Collection.php" hash="0ec5179b6f0c7ba218a4acf8b307df40"/></dir><file name="Role.php" hash="7fe546581a84ea0c6c34cacf53407812"/><dir name="Rule"><file name="Collection.php" hash="1808f6ca76e13f3af12c6f897c7961a2"/></dir><file name="Rule.php" hash="8a8a4500a91d2e9141be5075d3de448d"/></dir></dir><file name="Setup.php" hash="6f76e8da6908c923af439042d4cc333d"/><dir name="Validator"><file name="Eav.php" hash="9d480ef4e7a71fd57d6bb66a2b466239"/><file name="Fields.php" hash="ddc402fba96184b89c1523e467e5173f"/></dir><file name="Validator.php" hash="a8acbbd7f93e226f9700d9f6b2786462"/></dir><file name="Resource.php" hash="15e9e5d251a294dd77f26a9e7f7c8d21"/><file name="Response.php" hash="33c1e2c21996d73f04fb2f760111e8c5"/><dir name="Route"><file name="Abstract.php" hash="b384dd23d06fa269ebcaa59c803a9956"/><file name="ApiType.php" hash="df1820c9bdd957dbe4958bc2de54ae45"/><file name="Interface.php" hash="af7b93b2c3abcbe7f7ad217a695f89de"/><file name="Rest.php" hash="9e50da8458330e4d097835571e682c00"/></dir><file name="Router.php" hash="de0de528a80a5df0d883cc0a65cad4a9"/><file name="Server.php" hash="95da2c1cf51825b32eb8ddb428a8abb8"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Api2"><file name="AttributeController.php" hash="521f80fbe233a37c8cea4c6ade5c0bf3"/><file name="RoleController.php" hash="ca0567ad2e3d3e7156b00caf2d1fa5f5"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="9334f0c541f9ebf6dee52ad3af1f9004"/><file name="config.xml" hash="cc4cc7f0a61660ae1791b313f1a9b2c1"/></dir><dir name="sql"><dir name="api2_setup"><file name="install-1.0.0.0.php" hash="bbf3ad1bfa9734a50338c36132a3c628"/></dir></dir></dir><dir name="Authorizenet"><dir name="Block"><dir name="Directpost"><file name="Form.php" hash="24d6f4162ad5dba8e17d55998e0bba9f"/><file name="Iframe.php" hash="a5720b326159f70b18e89d16e2b27c0f"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c850d21375eaf709d13a70bd0e98c756"/></dir><dir name="Model"><dir name="Directpost"><file name="Observer.php" hash="585c1062918f2895a5cbca75816db9fd"/><file name="Request.php" hash="9c2c8c64a5839880f28a45802822a6a6"/><file name="Response.php" hash="4ac9afafb7dd35ab29002cc05bacd18b"/><file name="Session.php" hash="ad498d18c85ce5628a040a6b5b2dfe16"/></dir><file name="Directpost.php" hash="a40ab5c744d2576cfcc2afde12bf9ff1"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Authorizenet"><dir name="Directpost"><file name="PaymentController.php" hash="838a75daf1032bc1c80a088a3db5df9c"/></dir></dir></dir><dir name="Directpost"><file name="PaymentController.php" hash="7f5289ce71ce3807baa2c473ab923ca5"/></dir></dir><dir name="etc"><file name="config.xml" hash="413e4af4f2cc7e65cae5ecece0bbfe38"/><file name="system.xml" hash="1f60658e5e7dcc96eeb3ef01a3177d04"/></dir></dir><dir name="Backup"><file name="Exception.php" hash="774977b54b9124ed2fec3ca83ded9dda"/><dir name="Helper"><file name="Data.php" hash="1d90748863733bd38b2810a4de24262f"/></dir><dir name="Model"><file name="Backup.php" hash="9f114e0d4e21389636c05fb8c24423d5"/><dir name="Config"><dir name="Backend"><file name="Cron.php" hash="a98bb8af698272c6398b4d0cac3f83f4"/></dir><dir name="Source"><file name="Type.php" hash="14e04e566438d75faf600dd4c038c735"/></dir></dir><file name="Db.php" hash="3bfffffb0b2f239253a3fc0b1ae383c9"/><dir name="Fs"><file name="Collection.php" hash="e35129d1e089ff8b4c951e2e55569885"/></dir><dir name="Mysql4"><file name="Db.php" hash="227cf3a58186ef5ddd21db9f640b6e59"/></dir><file name="Observer.php" hash="f3cc01a6079ee5ab5b3a166039e8b313"/><dir name="Resource"><file name="Db.php" hash="137aef59ea6e3de1a96418508f0117ce"/><dir name="Helper"><file name="Mysql4.php" hash="7045eb35b50f66bd140bad47c4e11bdd"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="5e2347c9a883b0dd1eb4d9077efe3011"/><file name="config.xml" hash="9435231afb7fa80d1ab43c7fab1ea545"/><file name="system.xml" hash="4adadc524ae4e5e851047c38d1e7437c"/></dir></dir><dir name="Bundle"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Bundle.php" hash="54aa3e5f1dad3461eb49d06c2088bb72"/><dir name="Options"><dir name="Type"><file name="Checkbox.php" hash="b43e310540aac602d16197b32f13f897"/><file name="Multi.php" hash="cc8d75b939562baddb65dadc88de1648"/><file name="Radio.php" hash="190cd540681478fcbab728d8b96860d8"/><file name="Select.php" hash="7e975ce52e734deafb965b0c2c54c880"/></dir></dir></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Attributes"><file name="Extend.php" hash="11404c99624c16632c25af48a098a9de"/><file name="Special.php" hash="d5baaf0cf8384145c8b42583a726a40f"/></dir><file name="Attributes.php" hash="6419dc0dc8b41fd88882c15dfc7f9ab2"/><dir name="Bundle"><dir name="Option"><dir name="Search"><file name="Grid.php" hash="9fd44f32251c4c8ff8e18193a223fc17"/></dir><file name="Search.php" hash="c368c311bc7c656d24497560c76377ae"/><file name="Selection.php" hash="73db049aebd7f90a60f136b37d8793aa"/></dir><file name="Option.php" hash="7d7208ccf375035a69f50c90edf9630d"/></dir><file name="Bundle.php" hash="5922b55a4f6acced0646a7a741deeafa"/></dir><file name="Tabs.php" hash="caec32a7304b6fa832bcf05600febae8"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="2c4cff0716912a01c1c2ae58dc58ce2e"/></dir><dir name="View"><dir name="Items"><file name="Renderer.php" hash="5da4f5467084216578cda3846db072ea"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="List"><file name="Partof.php" hash="681a9af90d3a30e41740abada1321b09"/></dir><file name="Price.php" hash="ea2796f6cc22c0730db3b31bfc8c0349"/><dir name="View"><dir name="Type"><dir name="Bundle"><dir name="Option"><file name="Checkbox.php" hash="fd45eaea774f1802d625d05721dae1ff"/><file name="Multi.php" hash="8de8d780486ac9577143c94d55181d57"/><file name="Radio.php" hash="f69fcb88b62c7b143d40cef2d62e19af"/><file name="Select.php" hash="48a71c8e6ee3460d2fe7f04d73082cb9"/></dir><file name="Option.php" hash="70f690c81e2affd82bdedc80cf146f7c"/></dir><file name="Bundle.php" hash="12b946b6695a91fca3a6be3899856e90"/></dir></dir><file name="View.php" hash="631347058dcca0749c28095612e56223"/></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="ad34d982190f451c7f336f29e0b0aca0"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="d9214601cfa26034789e9062e15e78aa"/></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="de3f21b90cdf5881c584a7e716e89f6d"/></dir></dir><file name="Data.php" hash="14bd9eb25f572b393dd8796856174e26"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Bundle.php" hash="af0032f2b4f985b8cf2b0be66235adfa"/></dir></dir><dir name="Mysql4"><file name="Bundle.php" hash="458408eb988eeae85190cb013f134cca"/><dir name="Indexer"><file name="Price.php" hash="ca20397fb2093211b2a073d19470a0eb"/><file name="Stock.php" hash="19ba03eb59c24cd4f9e8b6617e3b3937"/></dir><dir name="Option"><file name="Collection.php" hash="cc804d1f83ad94cad1cf2354ce4a145a"/></dir><file name="Option.php" hash="c4f5f74929eab757b70067eac6e1093c"/><dir name="Price"><file name="Index.php" hash="40ab1b1de6933ba090175a93067d710d"/></dir><dir name="Selection"><file name="Collection.php" hash="258c1134277b324fef2d7677c775bd7f"/></dir><file name="Selection.php" hash="ca13f9a5835ef9f476aa96993dce0f2e"/></dir><file name="Observer.php" hash="f0ba07815a41fb16d2f1977df0782ccc"/><file name="Option.php" hash="866a998c3d3f74eecb24eab0a71821e1"/><dir name="Price"><file name="Index.php" hash="5cf6279937e51409da9372e5ba05ffe5"/></dir><dir name="Product"><dir name="Attribute"><dir name="Source"><dir name="Price"><file name="View.php" hash="fdae4af6579f05d3f5aa0d06ee9c54ee"/></dir></dir></dir><file name="Price.php" hash="7550303b31b1c6be2455fc8082b16e19"/><file name="Type.php" hash="245c839be9d10d67bb4158537a0d4576"/></dir><dir name="Resource"><file name="Bundle.php" hash="60822394919e1d165ef95844d472e313"/><dir name="Indexer"><file name="Price.php" hash="7fcb5b37b9e9933ed725fb65c10bbfbf"/><file name="Stock.php" hash="5fcc3e53ed97cfd8b4d21a6850e3d68d"/></dir><dir name="Option"><file name="Collection.php" hash="77543ba38dec223e4b60611ce59b769a"/></dir><file name="Option.php" hash="5784364bfa86c4767abcb2ba122b15f3"/><dir name="Price"><file name="Index.php" hash="b89d9661c1dce9a4e64849ac99ed6760"/></dir><dir name="Selection"><file name="Collection.php" hash="a9b0d76e53b5b5a6e6e92b65806cdf1a"/></dir><file name="Selection.php" hash="6b72f9be40f86fcb4e3d0574b40900eb"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="963221e5184aa1af61a3e00cb6dc3024"/><file name="Creditmemo.php" hash="0c7aef1ff80a89807b8ffdd15808d45a"/><file name="Invoice.php" hash="7304b7650796a6a4203cb0e685d4c662"/><file name="Shipment.php" hash="0588951cc08355dc80baaf4311975962"/></dir></dir></dir></dir><file name="Selection.php" hash="5c52562c5e380a7329164307c9172ec9"/><dir name="Source"><dir name="Option"><dir name="Selection"><dir name="Price"><file name="Type.php" hash="5d731b3b4880bfb78490f5f149977165"/></dir></dir><file name="Type.php" hash="287d26e18ff0475aac736c7c8f294c79"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Bundle"><dir name="Product"><file name="EditController.php" hash="7e08461da51fd55c01c588f7ac793761"/></dir><file name="SelectionController.php" hash="afddae279d7067b339074a431f6d67e6"/></dir></dir><dir name="Product"><file name="EditController.php" hash="342469992d44cd8da9514e5d6f943b3d"/></dir><file name="SelectionController.php" hash="50d4100f89bfe5cba5f47d87a438f3f3"/></dir><dir name="data"><dir name="bundle_setup"><file name="data-install-1.6.0.0.php" hash="a5a6320ba781f23c898f618391168778"/></dir></dir><dir name="etc"><file name="config.xml" hash="bb5e35b3ae5f0c4d11e8acd65963e013"/></dir><dir name="sql"><dir name="bundle_setup"><file name="install-1.6.0.0.php" hash="91eaa436c6137b1940085a9669866e08"/><file name="mysql4-data-upgrade-0.1.13-0.1.14.php" hash="89c1ba2b8261f71eb3c0e19fce399784"/><file name="mysql4-install-0.1.0.php" hash="b6f367ea3602196ea9dccee4fb32dd2f"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="520e4cc5ecf6beec9e94c813b51246d4"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="628f863db32da518d0d765aeeb7b3639"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="87bcc2a6c362e5bf3735ce573db1923c"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="c2c958bd49afb3fa8cceb47ae37d9d6f"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="8276000f5e8efb1f71a534316dbe53b9"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="58ab9ba8079b8cd282a5205bf2c4b740"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="30eebb933e37a1bfbca4302db64e7135"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="80a9245478617e0e7600a46d9a6180e5"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="ec9cf608680d40b3c87cec321028cc5e"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="614f4d83a0ec2ee4ffc869d51a64bd7d"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="c54cd319712de43a667108fafdc447a0"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="3873f815240f2942428041cda16ace82"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="7068c67ecff82f2736051f66b0e02986"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="2abb63bf9907e1307fbdd813cc8d0b65"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="7efffe088bef553bc2e86e71a75fb4a6"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="01b8c33493a02bd1e5db186981777cf8"/></dir></dir></dir><dir name="Captcha"><dir name="Block"><dir name="Captcha"><file name="Zend.php" hash="50e1d921ca4908a9f59087a5ca19e85d"/></dir><file name="Captcha.php" hash="d026a9636db5e5dfb4d614de9632b8f6"/></dir><dir name="Helper"><file name="Data.php" hash="88e7104e458ab6886f0945685ac86d8c"/></dir><dir name="Model"><dir name="Config"><file name="Font.php" hash="0aac116e53fcfdb6dd0eecdef43748d7"/><dir name="Form"><file name="Abstract.php" hash="6fcbf4517928069be59bf52ee43ba8bb"/><file name="Backend.php" hash="131bb2491dbe8ff4902a610ecc9b2d08"/><file name="Frontend.php" hash="93eeeb6c79331e5bcdd3cc322fa6f8e8"/></dir><file name="Mode.php" hash="708b9e66a16a4f96ca1fd33029f5ae8e"/></dir><file name="Interface.php" hash="8f5d7039a39d6f6359fe042df9347511"/><file name="Observer.php" hash="90ec19bd8252031d5f41582ea9bc8f55"/><dir name="Resource"><file name="Log.php" hash="0d6e10ef4744a0ee50d284914a3ac92c"/></dir><file name="Zend.php" hash="99428bc9078bb65913f6d4c4eafd6a61"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="RefreshController.php" hash="bcf7ca93f081794ecd8970e29b0b973b"/></dir><file name="RefreshController.php" hash="c224a9e6b1da57872cc11593a11426e3"/></dir><dir name="etc"><file name="config.xml" hash="1034a0b1c8ccadbb3148934d221ccaea"/><file name="system.xml" hash="94e511c00cb439c572c4090410885b4a"/></dir><dir name="sql"><dir name="captcha_setup"><file name="install-1.7.0.0.0.php" hash="80a0b4674fea44103b8ff36d9cf12c87"/></dir></dir></dir><dir name="Catalog"><dir name="Block"><file name="Breadcrumbs.php" hash="1074590879f3a9f6d8fca02e8b7f3330"/><dir name="Category"><file name="View.php" hash="40ee9f6f5c159826ce50edd4ccfb670f"/><dir name="Widget"><file name="Link.php" hash="735f3409e0050d6666e6a03db29ff33c"/></dir></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="7e50369542780109c45895c6dfc4060a"/><file name="Attribute.php" hash="8167443dccdb022cd1038e9ba878b650"/><file name="Category.php" hash="8d10cd5904e7a65e4eb9d8d16e8ac0c4"/><file name="Decimal.php" hash="1bb466fd082da02c522239af7ab4bcd0"/><file name="Price.php" hash="b66012ebf3a17c788025cb1dd9d97ac6"/></dir><file name="State.php" hash="5639ecb302507249fb563e66b18c836f"/><file name="View.php" hash="8629ab2d2287fcf827255c8f67243a99"/></dir><file name="Navigation.php" hash="ec2ff655ce7315cfe9b883dd3e779b65"/><dir name="Product"><file name="Abstract.php" hash="a1c4e3e073a38a2005926501a0f2f741"/><dir name="Compare"><file name="Abstract.php" hash="af84c196986631a064985fba5868ff60"/><file name="List.php" hash="e4d9070eb81f70d317a357eb28ab934f"/><file name="Sidebar.php" hash="f10805f66efe545f4ce7037c9ac8ac8f"/></dir><file name="Gallery.php" hash="42d9708d86a753feafd7da2a40eb928b"/><dir name="List"><file name="Crosssell.php" hash="d968a651178492fc196845d9c03c20ba"/><file name="Promotion.php" hash="487b25919c860cb35a7e8403be660d84"/><file name="Random.php" hash="f9db49b97e39bd7a1d11547c1a0885f7"/><file name="Related.php" hash="5c858dee0bd46afb49d65b336059ab4d"/><file name="Toolbar.php" hash="2c2966db1d313dcb8401e9dfde7d2269"/><file name="Upsell.php" hash="23580771e1a90f3fafb8c862318fce0b"/></dir><file name="List.php" hash="9f67650ef1273df2959c839f2c09c84a"/><file name="New.php" hash="ff5014f5c9f9c6efa908caf0b264e0c8"/><dir name="Price"><file name="Template.php" hash="3e377172aac0c12f944fe12b579d7326"/></dir><file name="Price.php" hash="bf47b8eacbd9815e5125b78ab13be54a"/><file name="Send.php" hash="77052e6925bf2c8bdbb5c9e8fac89027"/><dir name="View"><file name="Abstract.php" hash="7103c1426a1ccc93abbc462f6200c8d6"/><file name="Additional.php" hash="c0451ad49d9559db418ad4456db63fea"/><file name="Attributes.php" hash="0c8fa5e24cbe9df67f98fb22214abbe5"/><file name="Description.php" hash="011f8e98e56c534a09d383a667bfb7e9"/><file name="Media.php" hash="e42aa0c9317b50d4f69d320e0b700649"/><dir name="Options"><file name="Abstract.php" hash="e78def46c8f95731c4bf044f92d94412"/><dir name="Type"><file name="Date.php" hash="99cb79fa55ba71272e9db2de760a68d2"/><file name="Default.php" hash="d613bc45af2662510c4485bb704a1fa7"/><file name="File.php" hash="6db47bb63e3a1cab3589704ade4ccfcc"/><file name="Select.php" hash="d3575d4db58ee528736a8ef265d0a83a"/><file name="Text.php" hash="3078b85a8a9b1b9a2dde1ee564e7dad6"/></dir></dir><file name="Options.php" hash="78d456aba29dc4c8c8ef195ffbe11ff2"/><file name="Price.php" hash="f644da2da793726867bc0206b7ba4cca"/><file name="Tabs.php" hash="92de42f7e618193e6204baaa85e20952"/><dir name="Type"><file name="Configurable.php" hash="0a8d71e0fce3660477630fa91319fd84"/><file name="Grouped.php" hash="12a0395866d3aad3d07d1a09f10d0a9a"/><file name="Simple.php" hash="c028910aa0d2aee65ebc963e6c4d1352"/><file name="Virtual.php" hash="e3dcbed3ba08c3a55640a2a0c4c9eebf"/></dir></dir><file name="View.php" hash="d6ebac8d4daae2a63c1e749c50c43264"/><dir name="Widget"><file name="Link.php" hash="f0474ea2b56543fddbb512774cc038c6"/><file name="New.php" hash="b3e41c465bd72a8da3da73abf1f4d4df"/></dir></dir><file name="Product.php" hash="58d561f4d013b2ca0aae3dd5a66844d6"/><dir name="Seo"><dir name="Sitemap"><file name="Abstract.php" hash="47c6bfbf140d85d45898d668d44464bc"/><file name="Category.php" hash="c9c05a49859bec99a15a048bd0f07aa4"/><file name="Product.php" hash="d10f3fcfbaf213c9a4f862b0e1f19e15"/><dir name="Tree"><file name="Category.php" hash="3825593555fc0c995cd60f9f4cd37263"/><file name="Pager.php" hash="ca0dd8270b00528f1a0471bf8675388d"/></dir></dir></dir><dir name="Widget"><file name="Link.php" hash="bd2e1d1983b56f9534071e1b77357eb1"/></dir></dir><file name="Exception.php" hash="ecbe9735cd01ddc2cdf76b7bb937d97a"/><dir name="Helper"><dir name="Category"><file name="Flat.php" hash="ad646b982c486a6294e9b3429230b570"/></dir><file name="Category.php" hash="241c2459715f8be01809820d4a2e12bb"/><file name="Data.php" hash="a9ab268aa04957e93da8c5ca3074c241"/><file name="Image.php" hash="cfddfa44c39972d3968838e4a226c68c"/><file name="Map.php" hash="7aca6925a0a18a6e700512d06dd598c5"/><file name="Output.php" hash="3c5bcddf3c04a4cd3ac88ec207af9c0c"/><dir name="Product"><file name="Compare.php" hash="50a40182591af964e50e588ae05c4086"/><dir name="Configuration"><file name="Interface.php" hash="09ffa79644631d8d890973b850d236b4"/></dir><file name="Configuration.php" hash="2d120f5d248e1bf4120d24ed7f579400"/><file name="Flat.php" hash="9f75370b3976414d277cf77c2e8b527e"/><file name="Options.php" hash="b3106986dc519ab73f73c93df25b1f2c"/><file name="Url.php" hash="b2bb14d9713a5aa64bd54417addf86db"/><file name="View.php" hash="f63fa14b605970df437bf3b1b61c4284"/></dir><file name="Product.php" hash="336552c9cca740c4d56eb5cd28ff5364"/></dir><dir name="Model"><file name="Abstract.php" hash="e239d687adb09dccf6889a9098fc3bc4"/><dir name="Api"><file name="Resource.php" hash="af70790ef1b0bc57653dad4457bf9885"/></dir><dir name="Api2"><dir name="Product"><dir name="Category"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="d8d9b4d0058d4e36bc5e126455628985"/></dir><dir name="Customer"><file name="V1.php" hash="76e1ecb641825a4bb18b29bf920b6cee"/></dir><dir name="Guest"><file name="V1.php" hash="da7050e643acc51b62641f7633c0da4a"/></dir></dir><file name="Rest.php" hash="f98ce6cf760dff5126f8ecfe3435e646"/></dir><file name="Category.php" hash="d9416d0cce06a62b39d3380e96b6da8e"/><dir name="Image"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="483179c635a0eaf3c015782be6ff7b5f"/></dir><dir name="Customer"><file name="V1.php" hash="81350b984763424eb2af5eadfe3b6e14"/></dir><dir name="Guest"><file name="V1.php" hash="b69fbbcc52b42f66a7593bf0ceba6dd7"/></dir></dir><file name="Rest.php" hash="0aba84924032bea4c92500bb27f1f400"/><dir name="Validator"><file name="Image.php" hash="d5a7d59c5de414a65c411ad2fa16205d"/></dir></dir><file name="Image.php" hash="7d1277758fe5593cd66cad017085fe26"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="8232773ce51ef51ecdf078364ad145d1"/></dir><dir name="Customer"><file name="V1.php" hash="5efabad21155831bbf435ebd3ae89de9"/></dir><dir name="Guest"><file name="V1.php" hash="d87ff4b7ab3bbe7286b2ff9d8c3dc87f"/></dir></dir><file name="Rest.php" hash="2ffb744a862514ccb6577bb0d8675b62"/><dir name="Validator"><file name="Product.php" hash="2b9bd3d8b2fa4f5c3daf9e3a53393d50"/></dir><dir name="Website"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="ee077e7df81f76d213ae46633f6f4ba4"/></dir></dir><file name="Rest.php" hash="9d3602216e191bf99becca9910bca0f7"/><dir name="Validator"><dir name="Admin"><file name="Website.php" hash="34f9c9b71577505c06c6eef684b43cf4"/></dir></dir></dir><file name="Website.php" hash="cf518e10f2526b9fed8d52a67d80436a"/></dir><file name="Product.php" hash="c54f775bedb69252eb2c71c0be14a352"/></dir><dir name="Attribute"><dir name="Backend"><file name="Customlayoutupdate.php" hash="a18b52aabc25ecefaf311c1a07a9ae3b"/></dir></dir><dir name="Category"><dir name="Api"><file name="V2.php" hash="00def84dff2c84f14d92f44d633ed49d"/></dir><file name="Api.php" hash="c6dc8aabece26ebdb4956ff6c42cfbca"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="cc90e8f4b0cdfd4ab7e60aa6037b6666"/></dir><file name="Api.php" hash="bd514444b417f65e16800b627f9336a7"/><dir name="Backend"><file name="Image.php" hash="3643106b16ee476e6826ea642821dfa2"/><file name="Sortby.php" hash="22e5dee30b58941f5c7e3f5245d96a06"/><file name="Urlkey.php" hash="b5fc8f0f1e6ec057c683b44f50734306"/></dir><dir name="Source"><file name="Layout.php" hash="3f510f1d8d9d04e24446e99c26f45e19"/><file name="Mode.php" hash="9ff238e86f9d29c5e548b858e1e666a0"/><file name="Page.php" hash="d529a73910fbaaebbb42505fd7803888"/><file name="Sortby.php" hash="d8f971e6e1ba1a1ac8f4b7f4362d09ff"/></dir></dir><dir name="Indexer"><file name="Flat.php" hash="0ef7e15ae6b4f82162eae4bc9dbed902"/><file name="Product.php" hash="1cb71506b0ed58d1536978adc6de915e"/></dir></dir><file name="Category.php" hash="63d7ccab50f44fe612728fae7cccec4d"/><file name="Config.php" hash="7d0dbb62b8532e88f95f5f817fbc70fc"/><dir name="Convert"><dir name="Adapter"><file name="Catalog.php" hash="80e5319248c47a1ec58290309e37f7ca"/><file name="Product.php" hash="64cceba11a4e1fc9a35d2393c38c4d27"/></dir><dir name="Parser"><file name="Product.php" hash="c88cbe081912e8728628df224f850af4"/></dir></dir><file name="Convert.php" hash="4c8901011dcaddebcc9e14f04158ac37"/><file name="Design.php" hash="967a57b42709abd07eb249399c5715bb"/><dir name="Entity"><file name="Attribute.php" hash="3ebb9516f7fc18d9c2f98ecb8bf66d54"/><dir name="Product"><dir name="Attribute"><dir name="Design"><dir name="Options"><file name="Container.php" hash="b4f01ad3d8dfafdb5e5abd755da0d2b6"/></dir></dir><dir name="Frontend"><file name="Image.php" hash="d70783b713ed056826b6399dec9cbcfb"/></dir></dir></dir></dir><file name="Index.php" hash="e5643b1c63750e142f691326d9ebacb9"/><dir name="Indexer"><file name="Url.php" hash="3ef9ea180c050bcf00cb92b275d2cfe7"/></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="07209f06fd9272c285779d4eb743c25b"/><file name="Attribute.php" hash="265ed40cc812eb2d0c07ec7da682fdd1"/><file name="Category.php" hash="1cbd1b395f03ea658d9817d8b562d90a"/><file name="Decimal.php" hash="c708995dc52df027e9651d2c2056b989"/><file name="Item.php" hash="a89d7e3c9ca9c370340b38ae2c5ba159"/><dir name="Price"><file name="Algorithm.php" hash="8bf78e33f5420c26770f820e2649b1a4"/></dir><file name="Price.php" hash="6c315f95543f8c7794536c0408214f50"/></dir><file name="State.php" hash="3bf72b27ad4604c9d0c9c203d68a83ec"/></dir><file name="Layer.php" hash="380a8f7feea88685a9c53094994e9c3b"/><file name="Observer.php" hash="0b3f71501f894d1f24d9e6a360e97017"/><dir name="Product"><file name="Action.php" hash="c1f837402ab6fbf150697db0abd4f0b1"/><dir name="Api"><file name="V2.php" hash="70952c220310066f4035dafe6cf0d054"/></dir><file name="Api.php" hash="ceacae8393cf89d9527f6a814baa9e36"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="5881338f539fb64389bf925945802215"/></dir><file name="Api.php" hash="a6384296f164d33ff9b51e094aa65b15"/><dir name="Backend"><file name="Boolean.php" hash="20f58084bc44b486a0d2b481ddc598b8"/><dir name="Groupprice"><file name="Abstract.php" hash="4ee4049288aba4bfeef041e26b0b084b"/></dir><file name="Groupprice.php" hash="baf7f35610f23c2ec69f8a559037e1e3"/><file name="Media.php" hash="595b15865a43fb3a512526fdcdc58622"/><file name="Msrp.php" hash="8e625124dcc4a4fb53b41f225c7deba8"/><file name="Price.php" hash="cd4c8696d6f30b8a01cfccb84448b3a3"/><file name="Recurring.php" hash="ac71b5ab3182a80e4ff357d43f584825"/><file name="Sku.php" hash="d4505bdabef935ccdc7235be312f9ea2"/><file name="Startdate.php" hash="3f6e387a2452ca5a2f1923de09cae93a"/><file name="Tierprice.php" hash="543e4d4f4081ce31258c03c147a97ead"/><file name="Urlkey.php" hash="80a02f7bf4f52662967ce1cc31f16151"/></dir><dir name="Frontend"><file name="Image.php" hash="f5fcef402c881ab1f6da75d15b1d2761"/></dir><file name="Group.php" hash="ac34463324e9d541855add15c338b73d"/><dir name="Media"><dir name="Api"><file name="V2.php" hash="8ff116f18052afaea088d1c357dc2497"/></dir><file name="Api.php" hash="4b0d4d9f28cf4c942f723e306c401102"/></dir><dir name="Set"><dir name="Api"><file name="V2.php" hash="b6d1982ac5214df19aab12af36112a8d"/></dir><file name="Api.php" hash="ec8467bf53c46015a0cddb5603831c5d"/></dir><dir name="Source"><file name="Boolean.php" hash="629c7c7d0a2312014f308c5e9487eea4"/><file name="Countryofmanufacture.php" hash="15c1dce6e210c666de9d03a7c9e7c9d9"/><file name="Inputtype.php" hash="c000cb4b51d83179e7b71b3bcdbf0772"/><file name="Layout.php" hash="d9f49ed3759861d7d9dc635a70eb1d64"/><dir name="Msrp"><dir name="Type"><file name="Enabled.php" hash="01385f2a733cb860f07ec3cbbacb4f34"/><file name="Price.php" hash="6bd211b0bd868929b08d1d27c5f37597"/></dir><file name="Type.php" hash="be55c8ee1447f00bd577b8de92c2ce15"/></dir></dir><dir name="Tierprice"><dir name="Api"><file name="V2.php" hash="36880c5804ca1dd9c4fe8c90eb24ce26"/></dir><file name="Api.php" hash="f4d44e2afc62b73369d68e9f41ab1166"/></dir></dir><dir name="Compare"><file name="Item.php" hash="47b467433280016cd1471a33a94adddf"/><file name="List.php" hash="a7ab49b465233022ceea70ba302ca857"/></dir><dir name="Condition"><file name="Interface.php" hash="1ac8f8c1835b91c118a4db918c19b677"/></dir><file name="Condition.php" hash="5b3e909d745f43899316be5002efeffc"/><dir name="Configuration"><dir name="Item"><file name="Interface.php" hash="4e2ecbab2fc32668a78f95b50950e0ee"/><dir name="Option"><file name="Interface.php" hash="7e5f793780438f94d21ee9665074c8bb"/></dir><file name="Option.php" hash="440cd23deac75a638e00ebae18c39d74"/></dir></dir><dir name="Flat"><file name="Flag.php" hash="f11a15bc8e6009ea5dd4e5ab55cffe47"/><file name="Indexer.php" hash="aad92d7aa142c1a174da7d2beae71a61"/><file name="Observer.php" hash="6f1283bf6017e5e82f2224f9790dec5a"/></dir><file name="Image.php" hash="f8ad0f4ebab2892f9a90650ed95bf153"/><dir name="Indexer"><file name="Eav.php" hash="abb9b16e235a211089215ae6cd8c9698"/><file name="Flat.php" hash="d15cd5ce017c5de0c0a2954251e4144b"/><file name="Price.php" hash="63aac64136901de1d6b5617cbe26e678"/></dir><dir name="Link"><dir name="Api"><file name="V2.php" hash="9313cc40a69bfe3922a558cf98daaa0b"/></dir><file name="Api.php" hash="d54ff58dce479f9647c83841f2d26b6e"/></dir><file name="Link.php" hash="9d1ec334f56745a2698939733b88b7a7"/><dir name="Media"><file name="Config.php" hash="0aad1d5a6625b585955bf067bb5be148"/></dir><dir name="Option"><dir name="Api"><file name="V2.php" hash="3893d7de38413750ac593aa4c513e661"/></dir><file name="Api.php" hash="94f0b60ba05920963dd13f4c2324abe5"/><file name="Observer.php" hash="7603a6416d474e1473aefae2a54bd923"/><dir name="Type"><file name="Date.php" hash="b58c42df1c8470b5a185d7e051d57654"/><file name="Default.php" hash="3ab0d66eb311ae56a42b11113319369e"/><file name="File.php" hash="7e0ad61bc60af97302938669ea287dce"/><file name="Select.php" hash="72457483c34567c43c46ff2cf6fe40c4"/><file name="Text.php" hash="b917917c3c647488711492f84f994224"/></dir><dir name="Value"><dir name="Api"><file name="V2.php" hash="0956e892a1b24ae6db43e34307022aa3"/></dir><file name="Api.php" hash="486c8a37aba430fc617eb801ac5b24d2"/></dir><file name="Value.php" hash="703d8782247162fa6a1c1e91bd29f779"/></dir><file name="Option.php" hash="b998f1ca9ab026604c596b5f9b455161"/><file name="Status.php" hash="168355e024d2123208f0e05cc078c2d1"/><dir name="Type"><file name="Abstract.php" hash="3ecc4e061777203004afe3556610be1c"/><dir name="Api"><file name="V2.php" hash="430b76590f3c739057fe7a549d8bd9f3"/></dir><file name="Api.php" hash="95e0f6d3e00aebf6775caab41bb658c6"/><dir name="Configurable"><file name="Attribute.php" hash="bdcc9ea5651b352e0178653ec065c7ed"/><file name="Price.php" hash="6587f1141b8a716903ffcbf32ccd173a"/></dir><file name="Configurable.php" hash="70b1c396c7d5abe97e1186b052dc5776"/><dir name="Grouped"><file name="Price.php" hash="f7ffacb249d0b2f17bfd13fbbadd61b7"/></dir><file name="Grouped.php" hash="de6bcd173a2207f9a95834d3bd3363ee"/><file name="Price.php" hash="7c0d98f5422eb35b028bba4b61fd76ee"/><file name="Simple.php" hash="4de7180951c95ed418b4c88a4387bd64"/><file name="Virtual.php" hash="4c78e4d555eed902bc7f3019d64cc1b4"/></dir><file name="Type.php" hash="5bc6df528ede983a5b8adf4443411c74"/><file name="Url.php" hash="6b70e8d020e0937dd4005f0611c49170"/><file name="Visibility.php" hash="e96455ea9923fda537151303a4d5e487"/><file name="Website.php" hash="f3bd1677f142d93df79014340e4ab603"/></dir><file name="Product.php" hash="066bf714d46a398a32514aae6c166f7d"/><dir name="Resource"><file name="Abstract.php" hash="c69ccf1cb11ab39f332055be2ac0068c"/><file name="Attribute.php" hash="b929931c835da00378818a2901a3737e"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="123e73ae508559f3270334dd76cbdadd"/><dir name="Frontend"><file name="Image.php" hash="43294bc1d0d2ab8a92c8f65495c61735"/></dir><dir name="Source"><file name="Layout.php" hash="a7552f9d15d5db961b63042affcf6df2"/><file name="Mode.php" hash="aea219d00c15775f4d79d486d1eda0b3"/><file name="Page.php" hash="4dfbaa8687b9381ce82bb08160d3fed8"/></dir></dir><file name="Collection.php" hash="bf171598cfe5944661bad65a800c6cb3"/><dir name="Flat"><file name="Collection.php" hash="da4a18631e7009fb6d774f748a86657d"/></dir><file name="Flat.php" hash="88c9f5e550be4d5f740837539a899dac"/><dir name="Indexer"><file name="Product.php" hash="c763a77e4d21a16bb67518dc1baf887f"/></dir><file name="Tree.php" hash="ae88ccc5d313417c3182f4354154f9cb"/></dir><file name="Category.php" hash="532ad54ea68f4642e66828417f2903dd"/><dir name="Collection"><file name="Abstract.php" hash="4a234eb3cb36a4843ba98ef26e60cbc2"/></dir><file name="Config.php" hash="a10243503d7b9f49482a71e83e33d7c8"/><dir name="Eav"><file name="Attribute.php" hash="02aa26b6268a956cfdac3b0e7f4a7f11"/><dir name="Mysql4"><file name="Abstract.php" hash="54e0917377ba72a404cee327e909a6f5"/><file name="Attribute.php" hash="1a7f7c840d915d969631072095e58b19"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="3def3b01b469e573620e6b832be7c302"/><dir name="Frontend"><file name="Image.php" hash="e0eeb9680b38468e00f17d198c9bb17b"/></dir><dir name="Source"><file name="Layout.php" hash="631de924b75ba1015ac2e76e652fce2d"/><file name="Mode.php" hash="f76a7b1e1e4a704ebbe150b79199d31d"/><file name="Page.php" hash="564e5eafde85ccbfc3fd67f2f6680308"/></dir></dir><file name="Collection.php" hash="8c10f5224ea25a934d8d97395437e60e"/><dir name="Flat"><file name="Collection.php" hash="5730cb3c51a9e32b7c6244e4fcfd271d"/></dir><file name="Flat.php" hash="48e0c1edf7a29394dec1df8b0992a374"/><dir name="Indexer"><file name="Product.php" hash="b9fd339bef70da3f564803daf94050cb"/></dir><file name="Tree.php" hash="1ea31cd895111fcc091fb31a3ac7e525"/></dir><file name="Category.php" hash="c63953da6411b641c921f9b108692a18"/><dir name="Collection"><file name="Abstract.php" hash="d22080a250ae6c780819ae083a6f7f27"/></dir><file name="Config.php" hash="8bcbee3e72c9e916aa954234cd714e41"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="a50ca0fa8b0b7ca945307001f8398584"/><file name="Decimal.php" hash="8165a61e740a0fc18fce65a47e0d462d"/><file name="Price.php" hash="a88066d7ecde8cbabb6d0ccbc11eb8d0"/></dir></dir><dir name="Product"><file name="Action.php" hash="ee6a8745f2bb23d1e94e2c3204c313c2"/><dir name="Attribute"><dir name="Backend"><file name="Image.php" hash="78c7bf8c783b60b45f1cd41c544a7ccd"/><file name="Media.php" hash="5d6c074cdfaefdba11e8c8bcc4245f98"/><file name="Tierprice.php" hash="da0442b70a9bb702807855a9d51d4ec3"/><file name="Urlkey.php" hash="b513cb01fc5fec75313f310f686a2aac"/></dir><file name="Collection.php" hash="864df3b65e4c9e3048ad329735ea04ae"/><dir name="Frontend"><file name="Image.php" hash="5a489c59850dfad8e04f863a9891845a"/><file name="Tierprice.php" hash="975b23122653a828bf0bce4efd000e5d"/></dir></dir><file name="Collection.php" hash="2ddfa87bc7c232e59aecebdb5fb3d3b7"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="aaaa1f2ef7a009bc4d6397ffffed4015"/></dir><file name="Item.php" hash="c83ea32ffd63dc124e3098afc9c4fd20"/></dir><dir name="Flat"><file name="Indexer.php" hash="6fd41c445cadabe3a6b09acdacd9dd53"/></dir><file name="Flat.php" hash="384c5d1bed9b40124e48b8047e0fc8e4"/><dir name="Indexer"><file name="Abstract.php" hash="301d2b8800d78a3a00b5948b990710a7"/><dir name="Eav"><file name="Abstract.php" hash="adcbf9f66fd233847bbf0ca92b9211e1"/><file name="Decimal.php" hash="a83e3c4dec8eed4a91020b2a36f45d2a"/><file name="Source.php" hash="7075e79ddbff51868915191b026add29"/></dir><file name="Eav.php" hash="1b986943981148791828cabdecc013f2"/><dir name="Price"><file name="Configurable.php" hash="ef84391a8be534bb95638fc3bfa0c49e"/><file name="Default.php" hash="4977dde2e2e35763f4ae2b0f9bb6970c"/><file name="Grouped.php" hash="d5d8d8ed28242ce8d0ab0dd6924bc082"/><file name="Interface.php" hash="149ba8acd9fe55c0ab917eec67040bd3"/></dir><file name="Price.php" hash="b45551472dd16cc986f5d9da16993bbe"/></dir><dir name="Link"><file name="Collection.php" hash="4123daf2c26bb057ce367267c2830b3d"/><dir name="Product"><file name="Collection.php" hash="819caecc5d52fb6b3d794aeed663e66a"/></dir></dir><file name="Link.php" hash="c5fc040ca2124ead6230d621c18e1085"/><dir name="Option"><file name="Collection.php" hash="7acd066ce8bd9cd49106d5aec040cef0"/><dir name="Value"><file name="Collection.php" hash="13d4c83b87e425e837ed205d1ff36e3a"/></dir><file name="Value.php" hash="3764e37ca59e04ca518fc762917742c2"/></dir><file name="Option.php" hash="21988eeda41701b883a86ca11b846bf7"/><file name="Relation.php" hash="b91be9be2bb665665e96f72be33b9525"/><file name="Status.php" hash="72181542be4fac34bfef4d4f5c7be159"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="9e93e7fc78857b29db22a43b3656098c"/></dir><file name="Attribute.php" hash="3fd39e93d6c82a5f9541398773a36691"/><dir name="Product"><file name="Collection.php" hash="c1fa746bfea7155b3c9e77163362c0df"/></dir></dir><file name="Configurable.php" hash="452ed3d6d0098d7f517bebd3c9946e0e"/></dir><file name="Website.php" hash="681b6e3ff6cf694719f9a0729c58a885"/></dir><file name="Product.php" hash="25ce7dcfedd544d39994ce2d556d7422"/><dir name="Sendfriend"><file name="Collection.php" hash="8a71e561cb5376208a8f4290a4043192"/></dir><file name="Sendfriend.php" hash="8e78bdbd4832a9316756161d0e4b69f1"/><file name="Setup.php" hash="585f6be7509082f88bfbdbab1c7378db"/><file name="Url.php" hash="3f5d06db53de67458c64e72ff408fb92"/></dir></dir><dir name="Helper"><file name="Mysql4.php" hash="2deb1b4a29897ed476bea1e2f98a8c74"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="88affe38a4463292d1659764d604d55a"/><file name="Decimal.php" hash="c8eb792682b2c0cf4b83588df05007c6"/><file name="Price.php" hash="7c280394e0d2e3dbd032f17b0df6ce14"/></dir></dir><dir name="Product"><file name="Action.php" hash="597d83ca4f538c53f1ed0abbbe52c90c"/><dir name="Attribute"><dir name="Backend"><dir name="Groupprice"><file name="Abstract.php" hash="2f0e997bbd6e98e583999be75c12d4f4"/></dir><file name="Groupprice.php" hash="10654c59d462d5c383ae0afe7b55f636"/><file name="Image.php" hash="53a5b2081e9d53dd30e57fd9c2384683"/><file name="Media.php" hash="72bd1e6ef4d1715bf0cea608910a25e1"/><file name="Tierprice.php" hash="f958fa7bdd247fe11cad64ae406e88c9"/><file name="Urlkey.php" hash="99084b2cba1e4ee6bf61916649dae474"/></dir><file name="Collection.php" hash="5141c764f5d1211757d321aa54c9870e"/><dir name="Frontend"><file name="Image.php" hash="7393c64546f97ddae6bb28323662e8d9"/><file name="Tierprice.php" hash="316dd506e4dc7a74b78e42597199642e"/></dir></dir><file name="Collection.php" hash="b3043fae2aec5d3bb0e7d7e66944fa7d"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="75bbe102fb02e91cde01534fcc697378"/></dir><file name="Item.php" hash="c907ce8eef441cd95f7e53902d0534a4"/></dir><dir name="Flat"><file name="Indexer.php" hash="5d84483e8908ae1c5cc8587790df7ed0"/></dir><file name="Flat.php" hash="38c253c7a9de420a81533185348e08e8"/><dir name="Indexer"><file name="Abstract.php" hash="36be593846f08656614294573a335615"/><dir name="Eav"><file name="Abstract.php" hash="ad008ff4ac04515960b42b097d04602a"/><file name="Decimal.php" hash="24b77b22c5f81e415c74595d1aa6df6f"/><file name="Source.php" hash="4c7ce4e7b6a0f407e5993c7dc530eaab"/></dir><file name="Eav.php" hash="a6fd11c512eefd47721a8bf3cceddfdf"/><dir name="Price"><file name="Configurable.php" hash="2e2954b4835c0c444707fde57c231c50"/><file name="Default.php" hash="35646c98ff4397223986df4907e4f2e5"/><file name="Grouped.php" hash="4f2a656de333fecf3560c34c3d5758db"/><file name="Interface.php" hash="75958f5139d7b670c8a44a2c3b9c86d5"/></dir><file name="Price.php" hash="aee5a3fefbf08d366af80f98b71d06de"/></dir><dir name="Link"><file name="Collection.php" hash="8e0a19a50a521c0a50bee33d3eac9a5e"/><dir name="Product"><file name="Collection.php" hash="1b223ee5c9f970b2bdbd184df848c26f"/></dir></dir><file name="Link.php" hash="bb9f7633b95fcfa3ee64849a52d98c12"/><dir name="Option"><file name="Collection.php" hash="921b7dc60ad148820e41008b2410f8e8"/><dir name="Value"><file name="Collection.php" hash="272509d83680b04a23bd83385fdd2171"/></dir><file name="Value.php" hash="dad71291a0b390c2349e09dcdea19101"/></dir><file name="Option.php" hash="e8f57a58c9390ec0ead9c6ec57f6df0a"/><file name="Relation.php" hash="5494ae3436cb3b917ee69817570239bf"/><file name="Status.php" hash="2f0751ac600723819202a6dcdb0ea1f8"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="a4027af7b70802a80d563b1a33a6464a"/></dir><file name="Attribute.php" hash="877bf0d22fe205af3285fae73eba6757"/><dir name="Product"><file name="Collection.php" hash="49257bc4846a3c811cb2ae27d79d10b2"/></dir></dir><file name="Configurable.php" hash="a1e13fe6cbd4e80961f165b24d40fe7d"/></dir><file name="Website.php" hash="43b8718bbacc5391fd35b444c857a4c5"/></dir><file name="Product.php" hash="49632e72d3eb99816dc20e3eff782bec"/><file name="Setup.php" hash="d98f23e3626d4f0f13049eac6c7c0ade"/><file name="Url.php" hash="524c1ca379266ee33c31903e5fb96bd1"/></dir><file name="Session.php" hash="28a9ce46becf1ded26b3de3a7e174227"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Catalog"><dir name="Category"><file name="Flat.php" hash="07b4769ff1098c221aa0f3048635310a"/></dir><dir name="Product"><file name="Flat.php" hash="8ce309c61f39cda4095123f1c55c9633"/></dir><dir name="Url"><dir name="Rewrite"><file name="Suffix.php" hash="71f498b9618b37e612f459a295888659"/></dir></dir></dir></dir></dir></dir><dir name="Template"><file name="Filter.php" hash="02e34745f4f57b74de0e30414d7777f0"/></dir><file name="Url.php" hash="93b2fed53ed7e033946390c2429b1207"/></dir><dir name="controllers"><file name="CategoryController.php" hash="1a6e892a1858d20f8332ddbd8e9499b0"/><file name="IndexController.php" hash="0d134ce9a553b735e308f1df5de374f9"/><dir name="Product"><file name="CompareController.php" hash="798207c8ad555a5b5315ced5294b3614"/></dir><file name="ProductController.php" hash="004d1ba4c4058bf2280799be8e2e42fe"/><dir name="Seo"><file name="SitemapController.php" hash="2ec0596fa4a0fbd415802b2333851ec5"/></dir></dir><dir name="data"><dir name="catalog_setup"><file name="data-install-1.6.0.0.php" hash="b6751e7cad9b9bba7e2b1a646c83d7d2"/><file name="data-upgrade-1.6.0.0.12-1.6.0.0.13.php" hash="531a211b4322f5ae816478985b41a9b8"/><file name="data-upgrade-1.6.0.0.13-1.6.0.0.14.php" hash="ca0479a9ef589e66d86e1aeea887fc28"/><file name="data-upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="b0d625854bf6e5d921e7a4835f86d6da"/><file name="data-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="d19d6fc07a9c88b7b2e9f9d43df0eee6"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d12bb84c74502244f2ab3ac82594856e"/><file name="api.xml" hash="b2ef10c65e1a9781f4155bcb18c11262"/><file name="api2.xml" hash="459fa490e0339ad0200f9c36ce5dfc69"/><file name="config.xml" hash="17dc076d9a3a65dab69e8afca3bac63f"/><file name="convert.xml" hash="314daa20db15c3786ee8bdebaecf5dc9"/><file name="system.xml" hash="70406bf9d63de81a9469f6a262ac193f"/><file name="widget.xml" hash="36cac4df54417f0e36a49f9cee31c70e"/><file name="wsdl.xml" hash="a101248ccba69e84770f8b7a0dfeed64"/><file name="wsi.xml" hash="02a719bf1e41c505e4e4085065c67747"/></dir><dir name="sql"><dir name="catalog_setup"><file name="install-1.6.0.0.php" hash="ad921384ecb4e5321de552f37538720b"/><file name="mysql4-data-upgrade-0.7.57-0.7.58.php" hash="fbc11c2f8af6c1784786c576667ed5c1"/><file name="mysql4-data-upgrade-0.7.63-0.7.64.php" hash="3c201a02328312b90ec60c4fb6c896a4"/><file name="mysql4-data-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="a96da7aea08b757c902f4145b43bd0de"/><file name="mysql4-data-upgrade-1.4.0.0.42-1.4.0.0.43.php" hash="dc6ab330e9e997d82b9f63183a23de2c"/><file name="mysql4-install-0.7.0.php" hash="f00815b729f4daae1b2308ce6f0209da"/><file name="mysql4-install-1.4.0.0.0.php" hash="b1a02473288e0e2d975c5c0586c32714"/><file name="mysql4-upgrade-0.6.40-0.7.0.php" hash="1e0b1bc674e1a56954e1ac6fab89f143"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="3ee1d8a3c02c738e4356db7dc94db686"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5ffabf05e5dc771b47d2853d28d57b83"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="baca868a7c1baaf29b978e8c7f738b8c"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="a65c190216b1529edc9e7f3e6d667a64"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="f20973e0349f343a23436737894223e8"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="08a8555232c9706abfe7a6e65072efbb"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="b09e30e0414121de443cfdfbae7f9d2e"/><file name="mysql4-upgrade-0.7.16-0.7.17.php" hash="a65c190216b1529edc9e7f3e6d667a64"/><file name="mysql4-upgrade-0.7.17-0.7.18.php" hash="d11b2eb5ee618ec7ec200f96859dddad"/><file name="mysql4-upgrade-0.7.18-0.7.19.php" hash="1b3942e17e5fad4420b2a981b402b48a"/><file name="mysql4-upgrade-0.7.19-0.7.20.php" hash="baca868a7c1baaf29b978e8c7f738b8c"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="cce2a70fc845d74b9cd494781fe0fb97"/><file name="mysql4-upgrade-0.7.20-0.7.21.php" hash="808ea0cb0ac530c99bb74cf4c8667b62"/><file name="mysql4-upgrade-0.7.21-0.7.22.php" hash="670d05a347d1b8ed78158a1e687db37f"/><file name="mysql4-upgrade-0.7.22-0.7.23.php" hash="af63d44aedca0e8ad97bec2ef68c0474"/><file name="mysql4-upgrade-0.7.23-0.7.24.php" hash="8597fbfa1d25dfee1ff6a876549ad5f3"/><file name="mysql4-upgrade-0.7.24-0.7.25.php" hash="71699fcd8d90e7d89ec87d3d556efdf9"/><file name="mysql4-upgrade-0.7.25-0.7.26.php" hash="71699fcd8d90e7d89ec87d3d556efdf9"/><file name="mysql4-upgrade-0.7.26-0.7.27.php" hash="ef875ebea51580ee7f637806f819d9d0"/><file name="mysql4-upgrade-0.7.27-0.7.28.php" hash="10f956c6ad345bbb4de904a3719056b0"/><file name="mysql4-upgrade-0.7.28-0.7.29.php" hash="c9930230d3e9b0d9d0e51ea549f64c81"/><file name="mysql4-upgrade-0.7.29-0.7.30.php" hash="4a3af6855b9691362a746945c7fe86fa"/><file name="mysql4-upgrade-0.7.30-0.7.31.php" hash="fd4fabdcf2a59ac8afcd830c16cad57f"/><file name="mysql4-upgrade-0.7.31-0.7.32.php" hash="ee3945988e80661d7ac629c5ee5fa737"/><file name="mysql4-upgrade-0.7.32-0.7.33.php" hash="376aafc029353586ce290fe0228e3cbc"/><file name="mysql4-upgrade-0.7.33-0.7.34.php" hash="032b70722d7bf9e66ff97b0c9f596b93"/><file name="mysql4-upgrade-0.7.34-0.7.35.php" hash="166dc4ca6d158083f2c1527872f242cd"/><file name="mysql4-upgrade-0.7.35-0.7.36.php" hash="98554f5582a30e5cb714ab308f2f8eb7"/><file name="mysql4-upgrade-0.7.36-0.7.37.php" hash="ebc5b64e3b867d323d8d2bdc200d3aaa"/><file name="mysql4-upgrade-0.7.37-0.7.38.php" hash="a703dca1ded382a4387a6b02b8641109"/><file name="mysql4-upgrade-0.7.38-0.7.39.php" hash="e95e4ee289824b6178a3679c7e70ff5f"/><file name="mysql4-upgrade-0.7.39-0.7.40.php" hash="b0b7b6f06d7ae814bdd077139c73460b"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="72b3dec5d25881cb71a0e88f1dc74b05"/><file name="mysql4-upgrade-0.7.40-0.7.41.php" hash="73b9b80a135239b1464221fa052a2f2d"/><file name="mysql4-upgrade-0.7.41-0.7.42.php" hash="26f7713c9364d994a4c58380ba8e8877"/><file name="mysql4-upgrade-0.7.43-0.7.44.php" hash="be8e738ea3dfb12961b2aefdad9f8a9e"/><file name="mysql4-upgrade-0.7.44-0.7.45.php" hash="63600279c19aa5b0fbc7e1d38d51bce9"/><file name="mysql4-upgrade-0.7.45-0.7.46.php" hash="bb079b463c7e9e19450fa498388c0cb4"/><file name="mysql4-upgrade-0.7.46-0.7.47.php" hash="1a176bb9202c58c616114c82725a17b4"/><file name="mysql4-upgrade-0.7.47-0.7.48.php" hash="54792e27a4e78f44e02c17d0bbbe8518"/><file name="mysql4-upgrade-0.7.48-0.7.49.php" hash="b38d10c0fd45bbd6e799882b047bbccd"/><file name="mysql4-upgrade-0.7.49-0.7.50.php" hash="91df9a198fb03246c7b5840a91ded2ec"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="63793936af40b8dc7e756ba49e2c19b5"/><file name="mysql4-upgrade-0.7.50-0.7.51.php" hash="f391de62a2082811c51c8bbdb4be6f8a"/><file name="mysql4-upgrade-0.7.51-0.7.52.php" hash="833513052ae08631feaa20a98d1ad3c5"/><file name="mysql4-upgrade-0.7.52-0.7.53.php" hash="c76c2788c70fa181b405fcd35764963f"/><file name="mysql4-upgrade-0.7.53-0.7.54.php" hash="33b53f8c51cfd620fcad7c7a2766a490"/><file name="mysql4-upgrade-0.7.54-0.7.55.php" hash="0d2a7d8f502ff4f827bdda3f1067c1a4"/><file name="mysql4-upgrade-0.7.55-0.7.56.php" hash="8fa01581a31ed681f69b5374ca46ee01"/><file name="mysql4-upgrade-0.7.56-0.7.57.php" hash="809d0b9ff1dd1da94185b356a4212e60"/><file name="mysql4-upgrade-0.7.57-0.7.58.php" hash="20f125455e91b2837ea5d4eb7be5adbb"/><file name="mysql4-upgrade-0.7.58-0.7.59.php" hash="b462918fa818c0ed6ceb3dc73a7aa8ed"/><file name="mysql4-upgrade-0.7.59-0.7.60.php" hash="4bcbdd08ac8f0591c172b08ae52c57df"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="baca868a7c1baaf29b978e8c7f738b8c"/><file name="mysql4-upgrade-0.7.60-0.7.61.php" hash="2d53b1c245a770515844a20672ea41e2"/><file name="mysql4-upgrade-0.7.61-0.7.62.php" hash="d63196cad76c8d3df4dc0cda191f9ace"/><file name="mysql4-upgrade-0.7.62-0.7.63.php" hash="c407ff92565a8f50ac41ab4b1b39d6ad"/><file name="mysql4-upgrade-0.7.63-0.7.64.php" hash="fc1da9272be7b2c101713620a0b4dd50"/><file name="mysql4-upgrade-0.7.64-0.7.65.php" hash="c2fa13d39f8b09145666762655327595"/><file name="mysql4-upgrade-0.7.65-0.7.66.php" hash="e7ac8c9e6aa5e900aba798520e318e08"/><file name="mysql4-upgrade-0.7.66-0.7.67.php" hash="a8e01b522f5694380b81e0c5d7c87058"/><file name="mysql4-upgrade-0.7.67-0.7.68.php" hash="03122959a4f550a91ebdac6406336f3d"/><file name="mysql4-upgrade-0.7.68-0.7.69.php" hash="9d5155560c09f8e877bab758342c9931"/><file name="mysql4-upgrade-0.7.69-0.7.70.php" hash="130cd81057509e88f9f5c38dcfa0aa91"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="19ed39c848698bde2a4218cd3bf110b1"/><file name="mysql4-upgrade-0.7.70-0.7.71.php" hash="b30e3842f69d7a764ba3964e658e7e97"/><file name="mysql4-upgrade-0.7.71-0.7.72.php" hash="603905d9cd2a74997e97e5e773004571"/><file name="mysql4-upgrade-0.7.72-0.7.73.php" hash="95d812b3528500d8ecaf9d7931e75b61"/><file name="mysql4-upgrade-0.7.73-1.4.0.0.0.php" hash="f93b537e7931c9ea5153e27d85af176b"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="56a2313959d210ce135968bf9ca36306"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="0bfdcdba7e89b6d9f39054d1c9501720"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="2e0de3d67a765d790cdf9e67bbbbca5a"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="a276d3b6cc01683e88dd64f4e8566039"/><file name="mysql4-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="0c37b58db8628a3918cda9eb5d283345"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="5f23881df0672a5e78a62d08792048c0"/><file name="mysql4-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="540674bc661d67ae14c91bf5bac9aa12"/><file name="mysql4-upgrade-1.4.0.0.14-1.4.0.0.15.php" hash="4befaf7bccad74033742874bad95c388"/><file name="mysql4-upgrade-1.4.0.0.15-1.4.0.0.16.php" hash="7c248ccc0cc519f3fd849046a96bc2cd"/><file name="mysql4-upgrade-1.4.0.0.16-1.4.0.0.17.php" hash="a8577e73ede45f9984f8816d4ccbc759"/><file name="mysql4-upgrade-1.4.0.0.17-1.4.0.0.18.php" hash="7c60e1faf5ec1953a82aac0c457600d7"/><file name="mysql4-upgrade-1.4.0.0.18-1.4.0.0.19.php" hash="eff95f91245c11952840bb89b4e4b699"/><file name="mysql4-upgrade-1.4.0.0.19-1.4.0.0.20.php" hash="4930c26c4f68e36fb68cf57441fcbee6"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="3cd83d6c7423277e587f41a8e6256ef6"/><file name="mysql4-upgrade-1.4.0.0.20-1.4.0.0.21.php" hash="ff8c55b1772e19344e91da10df230ea4"/><file name="mysql4-upgrade-1.4.0.0.21-1.4.0.0.22.php" hash="f5c748f679ea6b6b7943c838bb4b158b"/><file name="mysql4-upgrade-1.4.0.0.22-1.4.0.0.23.php" hash="d2d51ee9094e2750bf1203c8d487f557"/><file name="mysql4-upgrade-1.4.0.0.23-1.4.0.0.24.php" hash="9f7b457b88c977ddd7d0b70d0e79e7b7"/><file name="mysql4-upgrade-1.4.0.0.24-1.4.0.0.25.php" hash="4b1a94dd2b77c8de7f07e5673734056c"/><file name="mysql4-upgrade-1.4.0.0.25-1.4.0.0.26.php" hash="8cf6a611ae303ce382b91e4865f1a5b0"/><file name="mysql4-upgrade-1.4.0.0.26-1.4.0.0.27.php" hash="7da42836de6e3293fbb34d80ae21fe72"/><file name="mysql4-upgrade-1.4.0.0.27-1.4.0.0.28.php" hash="191c1538540e903de7f188e636569651"/><file name="mysql4-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="700db8e90d8eb0394fac17daaaef77f1"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="98caa0d03dc64c153c9a720a4533bf7c"/><file name="mysql4-upgrade-1.4.0.0.30-1.4.0.0.31.php" hash="584fc43cbcf0100c515102ca1ce45d33"/><file name="mysql4-upgrade-1.4.0.0.31-1.4.0.0.32.php" hash="9951c22a53f86c0fef8a68a96a919719"/><file name="mysql4-upgrade-1.4.0.0.32-1.4.0.0.33.php" hash="a02773cdafa219ff1e1e779f4438085c"/><file name="mysql4-upgrade-1.4.0.0.33-1.4.0.0.34.php" hash="f470b138fbc7d70862f02683393f0eb2"/><file name="mysql4-upgrade-1.4.0.0.34-1.4.0.0.35.php" hash="183842c9657efa0c5a266aaec0d03d10"/><file name="mysql4-upgrade-1.4.0.0.35-1.4.0.0.36.php" hash="4ef10bf8d290a1dd67d4b6b47afd85c7"/><file name="mysql4-upgrade-1.4.0.0.36-1.4.0.0.37.php" hash="cb78f27e3fa9cf8799823bfb86c69d86"/><file name="mysql4-upgrade-1.4.0.0.37-1.4.0.0.38.php" hash="f58c2e86a34b7d178ade48c69e02655b"/><file name="mysql4-upgrade-1.4.0.0.38-1.4.0.0.39.php" hash="b0c6d11a391d8d74ccd3b757145a79e6"/><file name="mysql4-upgrade-1.4.0.0.39-1.4.0.0.40.php" hash="fa064fd774fdad97ccea634cf7248daf"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="60edf30f495984ca669a722ec2fe1ad0"/><file name="mysql4-upgrade-1.4.0.0.40-1.4.0.0.41.php" hash="3d0dd3713f5028b45a4eefa1c41df0bb"/><file name="mysql4-upgrade-1.4.0.0.41-1.4.0.0.42.php" hash="af02db73e1d8ba2867cfbb7d7948c126"/><file name="mysql4-upgrade-1.4.0.0.43-1.4.0.0.44.php" hash="4953a2da73a9e2f275ac0f46692f8677"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="7c3d5e56a6e7bbb66f8b1c0b252e9b7c"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="e5fc68230870e2f3573d35c51ff3c1b4"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="181e37c295a7a9c4dc1ed91f27453613"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="9745eba26bbd1d44b6bf43de3d59b69b"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="da5a2725997f77e291169459eff3943b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="53bfbfa06338f724ea0f53d5d9d61e35"/><file name="mysql4-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="77dbc527a8fe7e8e6c9932e6bcb224ec"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="1109e859385ac22dd74b16edc15d3bc3"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="481e82dfe42ba1f8b2cc5a17b0834f84"/><file name="upgrade-1.6.0.0.10-1.6.0.0.11.php" hash="559af4e97136800c3aa4a71cd47c7974"/><file name="upgrade-1.6.0.0.11-1.6.0.0.12.php" hash="f6378269e10a7f1b05a42b649f262068"/><file name="upgrade-1.6.0.0.2-1.6.0.0.3.php" hash="2e6302e49f53d0c0eb443739e0ec7040"/><file name="upgrade-1.6.0.0.3-1.6.0.0.4.php" hash="a45c56475e5bfa1c8ebaeba9af5dd67d"/><file name="upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="d035ac5b300f72bc6453139ff51ffa8c"/><file name="upgrade-1.6.0.0.5-1.6.0.0.6.php" hash="05e566bd264344819a413ea7f52e46f4"/><file name="upgrade-1.6.0.0.6-1.6.0.0.7.php" hash="a597d7ca6156515c163f015fadc15a8e"/><file name="upgrade-1.6.0.0.7-1.6.0.0.8.php" hash="1dca378cedc6298ae1f7955f1ab99d59"/><file name="upgrade-1.6.0.0.9-1.6.0.0.10.php" hash="7e36b1c18d0758782a898d8b0337351f"/></dir></dir></dir><dir name="CatalogIndex"><dir name="Model"><file name="Aggregation.php" hash="3f60b7a81c15705feb9d8239409f431f"/><file name="Attribute.php" hash="bba008db612b842cef366b6040c8fd5b"/><dir name="Catalog"><dir name="Index"><file name="Flag.php" hash="32117ddffbef0c04bbaa6d0c5d64e1b6"/><dir name="Kill"><file name="Flag.php" hash="23c2d4d4aa5e5f29b4ffc5a4f3bc036e"/></dir></dir></dir><dir name="Data"><file name="Abstract.php" hash="a3713008c762c5dd87352c32bdb5848a"/><file name="Configurable.php" hash="1b3aa7b5622a143546e74b288dfb9c54"/><file name="Grouped.php" hash="f67e4d413f5179bb814edadfb66cc110"/><file name="Simple.php" hash="3dd749fdd162cffe7daba4ce12fbba9d"/><file name="Virtual.php" hash="cc54d4b230da59dec09ab4351a9adf87"/></dir><dir name="Indexer"><file name="Abstract.php" hash="83c9099e9b4b8500bf90cae15cc665de"/><file name="Eav.php" hash="2f8940d569fea99b7fb517be33a7d8b5"/><file name="Interface.php" hash="9447b75998d307179b6bdb0d02d5826a"/><file name="Minimalprice.php" hash="bf7502323fcca64b396ca3d1842e8659"/><file name="Price.php" hash="bddb2e6fdea62e69b811c012c025b2d6"/><file name="Tierprice.php" hash="1f1a133b1efe6c40d1ce5d27f3ce6332"/></dir><file name="Indexer.php" hash="e3eb1518bd5f91f1d553a22860bbe60a"/><dir name="Mysql4"><file name="Abstract.php" hash="60cee3807743cfa88ea19f27ac9055ec"/><file name="Aggregation.php" hash="05109e6f12de01522600db81606a9b85"/><file name="Attribute.php" hash="fa6ca5295da0c3d18cc7a116acdf776d"/><dir name="Data"><file name="Abstract.php" hash="885e8ff48764d76511db8373b14ba999"/><file name="Configurable.php" hash="6bfd86f3278e3fb413d506991f7e5af4"/><file name="Grouped.php" hash="25b43ed972b60dd858bd8c33dcb3dabf"/></dir><dir name="Indexer"><file name="Abstract.php" hash="87086b672e1738d938cbfd312f25f30d"/><file name="Eav.php" hash="be8defed191bd008341dfc98d05e6db2"/><file name="Minimalprice.php" hash="e03190de34652fb8c39d91c0e4f4bc2a"/><file name="Price.php" hash="856b5a8c2107c852b20b8307136d67ed"/></dir><file name="Indexer.php" hash="0c5a42df4e0a19bd6b9e1da3fa010d7a"/><file name="Price.php" hash="466b993facb467ad50c392d470ccac48"/><file name="Retreiver.php" hash="f3efb11cdd3792269c7319fe433e2cdc"/><file name="Setup.php" hash="6a366f023b08072f5edb97f9540960ae"/></dir><file name="Observer.php" hash="4183fc6a417947c12a39bd971de0818f"/><file name="Price.php" hash="925c3cf164b852a2b34c853562984bd8"/><dir name="Resource"><file name="Abstract.php" hash="23294800b973a9d7b7cde5788e48a48f"/><file name="Aggregation.php" hash="2594824a74a004b2ef5c97985fdaae0c"/><file name="Attribute.php" hash="6f2630e1a2ac1ab9936ca66173c2854c"/><dir name="Data"><file name="Abstract.php" hash="f56d652be80c9082d27fdef1cf08c712"/><file name="Configurable.php" hash="2ebeaab263dbe06c3a5981ede715bbe7"/><file name="Grouped.php" hash="611aa37d989c2ea2c1de871e9d870e3b"/></dir><dir name="Indexer"><file name="Abstract.php" hash="acaf3dfc5d93f353ead58f8509f0118b"/><file name="Eav.php" hash="4aa0c03606d56865762436af65c8f23d"/><file name="Minimalprice.php" hash="0cd07153c87ae976ed609ccf5a8b3966"/><file name="Price.php" hash="0fd6c552afb29c63eae71065437ec3c3"/></dir><file name="Indexer.php" hash="986d762097a7095f876715e9577c8c4d"/><file name="Price.php" hash="fa0b3f5c815aba74130eccc957fc09bc"/><file name="Retreiver.php" hash="4f8b6f2df25074f6d4d7d689a477e4d3"/><file name="Setup.php" hash="d49e075df52f2076d8e9daae4fc8628d"/></dir><file name="Retreiver.php" hash="6fe24f3867977d77619c1b943a2af400"/></dir><dir name="etc"><file name="config.xml" hash="5fddce9dbccd68858221803962d340f8"/></dir><dir name="sql"><dir name="catalogindex_setup"><file name="install-1.6.0.0.php" hash="e177e42cc2fb61e19d22b4db3a04ed49"/><file name="mysql4-install-0.7.0.php" hash="6167d7ca798b1cd15ff1219571ed6c33"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="12767970d47631252390e333d56a20cd"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5b45a74c9398773eff45d033e71ebe04"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="ce10b4b83d4474cd884647c13f3aa1c2"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="75aca9dbee35535e2aa9bb85999b980b"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="c163bf47efaca52ccd7a7471e80e8eb0"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="1271021cae2497a508b06e7f462c3561"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="347db8f80919fee2c303b1ccb0695c76"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="08b5c14ce628de43d02136437e3a1efd"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="80f4768a6b6c889419c1f85635d99c65"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="f7419899fec2fe3ede3398b57c4ddd27"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="7e434e23b66826c02e6028c5aefad8f6"/></dir></dir></dir><dir name="CatalogInventory"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Field"><file name="Customergroup.php" hash="b940297ccd6615069f275a506ededdad"/><file name="Minsaleqty.php" hash="316fdd72281da965932194656e4b5b8f"/></dir></dir></dir><file name="Qtyincrements.php" hash="f06a1ef7c5ce1e187e20b8ad881a4fd9"/><dir name="Stockqty"><file name="Abstract.php" hash="0ca76f7ef8e4e429bfd3c5543dac6c1b"/><file name="Composite.php" hash="fe2237408a7ae30aaa47aab51a03812a"/><file name="Default.php" hash="bc17d2a181b8007205bdd76bfedc7c9b"/><dir name="Type"><file name="Configurable.php" hash="24b21820e7ed98dc10492130fe7aced2"/><file name="Grouped.php" hash="565eaba825ce5c9af908666e73f70e1f"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="e75a6a5e64ef08ee21fc2d0759fe59ab"/><file name="Minsaleqty.php" hash="332f92bf9c4491f7a76e60942dd00529"/></dir><dir name="Model"><dir name="Api2"><dir name="Stock"><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="3c5d34a8e3ab51c40603237a035d51a0"/></dir></dir><file name="Rest.php" hash="a8dd8bfa425d241b5a3d1dee3de159fd"/><dir name="Validator"><file name="Item.php" hash="c462a6c3dbb3295450569ecf49f1560e"/></dir></dir><file name="Item.php" hash="f7e476f1171283d2bc8ff7b2dcda3d7e"/></dir></dir><dir name="Indexer"><file name="Stock.php" hash="310f4091992519e968affb7754e282b8"/></dir><dir name="Mysql4"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="8926bf265da2192b1926df7be0bbb8f0"/><file name="Default.php" hash="35e54cbf801a5e1567637ac9335170b0"/><file name="Grouped.php" hash="8f27f27223e64c3dc11bb0be61b39447"/><file name="Interface.php" hash="d2faa3750205a3df36f783ef46a56f23"/></dir><file name="Stock.php" hash="25c681a8da6e7dacd52abd28d4bae8b9"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="c8f9f8da711f687d33f4edc132795d81"/></dir><file name="Item.php" hash="b1b8b52ec72bff1754a1026248f15803"/><file name="Status.php" hash="1a9828a11800277edd59a5e08ab979eb"/></dir><file name="Stock.php" hash="1cc98bc3f5cc5cf5f6b171093a2be78f"/></dir><file name="Observer.php" hash="b4cf19fce38b0659a6ae8cce8fe30c00"/><dir name="Resource"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="a9ab92db767866dbc337ec73c340edd5"/><file name="Default.php" hash="bfcb46e289b65b0d3f87fc686d7b7dae"/><file name="Grouped.php" hash="d9d159522fbcf9f2b543d0dbd87130c6"/><file name="Interface.php" hash="418f57944072df95c0ee26b0999e91e9"/></dir><file name="Stock.php" hash="882c114ffa248f6d8a8e92a9dd44257c"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="2ac56c9c2b4bc3e90be320fa30a9da92"/></dir><file name="Item.php" hash="f48f3cd87ae90d7649fac921f4d89047"/><file name="Status.php" hash="976f8f662a45e0bea1f5aaef8ba42b3d"/></dir><file name="Stock.php" hash="99315ab13deb38fe0bce9393b21594c5"/></dir><dir name="Source"><file name="Backorders.php" hash="e14ded80cc03c5a17a65c8ee769dc2d8"/><file name="Stock.php" hash="8a197a867b96d78384344a00063d9d21"/></dir><dir name="Stock"><dir name="Item"><dir name="Api"><file name="V2.php" hash="4abe77c3dbf8dfd87922b66036ed2197"/></dir><file name="Api.php" hash="2c7f9003f69d8e60fb47212a3a4c71db"/></dir><file name="Item.php" hash="69e3003baf3e8cb527af12e20d31e826"/><file name="Status.php" hash="b915ae1e9f1a7b5eef6c6168a780cdad"/></dir><file name="Stock.php" hash="0cf0ba5ac22a3fad74c0af431b23ac23"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Minqty.php" hash="49c79733f74a42cd3d2d865b4531fce2"/><file name="Minsaleqty.php" hash="e472f4deacfd819c3539475377c25522"/><file name="Qtyincrements.php" hash="cb2f46d375d8017d201014a489049bcb"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d46ea46bc3cec4a506e3ca66000248fe"/><file name="api.xml" hash="bad4ddce02a55c34c08d4949236bbfce"/><file name="api2.xml" hash="70d86e8b3d43898ff8f35cab3b864f4a"/><file name="config.xml" hash="cd62f5b65b2349a1092ab151f4d26be2"/><file name="system.xml" hash="cc13f2c3a435db12824dceeec3b96eb7"/><file name="wsdl.xml" hash="ba014e43fe68ec006ec6f628a406bd98"/><file name="wsi.xml" hash="0948e5b6f67c72b7760ed4cf1a94d1c2"/></dir><dir name="sql"><dir name="cataloginventory_setup"><file name="install-1.6.0.0.php" hash="16a7f02426cba493dad415f2a2f3149e"/><file name="mysql4-install-0.7.0.php" hash="5d78e89cf569ef5f7ca558767283fbfa"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ba59c4f0dd4683ab4d6363acc8395d29"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="f4fc075e1c3c0b636b8fa194fd89bc0a"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="8c3d6386edd2a13fd69a43d92c3d1ce5"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="94f04e5255a18b0666a4af44cd772dde"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="2f62d081a44d6281d7b3f3a7b4809103"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="02998282b2daade090415cc0d9506876"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="fac5d746fee27317d4fb86f2f472d5ed"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="ac35fdfe843603d067917dd453d2c723"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="0b091067008e8d036a56049701bcce00"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="12491957c4ad7d86f51b9e91277ad391"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="0873581c235353ff8f1bbdbb3c01796e"/></dir></dir></dir><dir name="CatalogRule"><dir name="Helper"><file name="Data.php" hash="63071093b43cda6d7a4c81dd3f022d85"/></dir><dir name="Model"><file name="Flag.php" hash="5974c90ca1b6fb66ac68dba9554f27c9"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="6ada7a561f5c4fe9d812b9d178e6e9ac"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="67e3545cbc32c8c2a89f8cc3f48d727c"/></dir><file name="Price.php" hash="b1b4798085843b4500bf1da4e3c48f14"/></dir></dir><file name="Rule.php" hash="1ecb70d57b0534ac0a6f054043755ebc"/></dir><file name="Observer.php" hash="0b6fb8584d0488a88fddf224299ac166"/><dir name="Resource"><dir name="Rule"><file name="Collection.php" hash="403631d8a1e322a1600562c60eb31775"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="1f674c55ea913de934072cc3ca590b04"/></dir><file name="Price.php" hash="dc3af9df4a1a6ca8d722c333911846a3"/></dir></dir><file name="Rule.php" hash="8ea93bc4cd0078ea996df19b8827f75d"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="6e1dacddeccd1b1c22a4cbf1341fb6b9"/><file name="Product.php" hash="79a6a718be3038325b2a063883c14083"/></dir><dir name="Condition"><file name="Combine.php" hash="b051ce25e69de64c3e05cc2201c459d6"/><file name="Product.php" hash="3a4358f104703d26381fedbeff8ccb47"/></dir><dir name="Product"><file name="Price.php" hash="b4a7169455f54d6b08a118f1a7b785cc"/></dir></dir><file name="Rule.php" hash="c14eed087c5ac1f234be4fe41fb4f753"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6ae8aca7dac869eddca21fd8e7b6e311"/><file name="config.xml" hash="5473dc610ce732425d2f9df1541573d1"/></dir><dir name="sql"><dir name="catalogrule_setup"><file name="install-1.6.0.0.php" hash="135b8269b4d8076651cffd1b40d63bd7"/><file name="mysql4-install-0.7.0.php" hash="7a808f01476df30ed0eb5a79a43b81de"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="506f4d6cff3afd322543c614415f0592"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="4e8a989a5a3b5be5a78054d858d0f475"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="143ac8a090adc73867462e2a4943c017"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="ad12a25bcbf13f4d03453ab6cf05cefc"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="dff591762943eac332980df9d2d7c25c"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="f55ab6836c7beb103e3272e47d8836a0"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ef1786e551578d36afeb6956c9884308"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="f35af29e7f37364e76e4d4c20a6cac93"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="e5d6fabc5cf7e75887c908d32d670269"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="e3eb39c7caf34b53205359792ce0e0e1"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="aad8845369332481774240c2285c9c4d"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="4da39631e9aecf6f5228178eadfcdbf1"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="7dfcaa64230db94ce096b35c4276c104"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="7dc7d9bf6769a3cd1da48f771a685bb9"/></dir></dir></dir><dir name="CatalogSearch"><dir name="Block"><dir name="Advanced"><file name="Form.php" hash="769f38df28dc28680d329ee8d8ee0668"/><file name="Result.php" hash="0d7170f8f88cfcf00c271a9d73f6377b"/></dir><file name="Autocomplete.php" hash="fd9e0f13e32571a75dedb4c573c20c99"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="b204087ca66f5cbec8159f2112501bc4"/></dir></dir><file name="Layer.php" hash="59d1824b3d2eedbc1bc222e03c423af8"/><file name="Result.php" hash="ae5214f54d456da00e862fc043d9a16d"/><file name="Term.php" hash="7cf5548963ee03efac8cf4fd1ca2c78d"/></dir><dir name="Helper"><file name="Data.php" hash="5ffbba7c510f8ae2be6887803d824646"/></dir><dir name="Model"><file name="Advanced.php" hash="ddc56d01f8a4083498f4929163a6debf"/><dir name="Fulltext"><file name="Observer.php" hash="c6e18f8583ccae58fe3481d673ee50ef"/></dir><file name="Fulltext.php" hash="18eecd1ad8ed1a6b864886f416059a4a"/><dir name="Indexer"><file name="Fulltext.php" hash="da0b62835a675034f1cc30a0cc12ae77"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="c253bebe31686d8a472814187184dd59"/></dir></dir><file name="Layer.php" hash="b3e3a4ff6727299294a2ea382ee83f65"/><dir name="Mysql4"><dir name="Advanced"><file name="Collection.php" hash="eba80b0df90dabb0f68c25c16b80d910"/></dir><file name="Advanced.php" hash="fa5d1073d6943b1ce2f664aab777f0ad"/><dir name="Fulltext"><file name="Collection.php" hash="ae25c123456b02e50f54552e6f6ba906"/><file name="Engine.php" hash="a54508ec005877b6e2c1ab636081f629"/></dir><file name="Fulltext.php" hash="b40834fd609d15edab1f24bf119b5033"/><dir name="Indexer"><file name="Fulltext.php" hash="f0bf5e47c2de1396283931117c86c9f9"/></dir><dir name="Query"><file name="Collection.php" hash="9d272b36d313412bdc1250819d553b93"/></dir><file name="Query.php" hash="595c33bd9fbb04a90a0fb2e6a2b7105d"/><dir name="Search"><file name="Collection.php" hash="59282e56d8082a9c8efc61e4a462a735"/></dir></dir><file name="Query.php" hash="71c067283c798f8fd06759f848c8d93f"/><dir name="Resource"><dir name="Advanced"><file name="Collection.php" hash="e4479393be73f3f0ccc364761ca56dbd"/></dir><file name="Advanced.php" hash="2b1c7677b02989adbb48187f55344620"/><dir name="Fulltext"><file name="Collection.php" hash="9d823071d510eeac91d8ead92d40da95"/><file name="Engine.php" hash="2ce8dcc6f5ee13433fce6f8f0a262a94"/></dir><file name="Fulltext.php" hash="6a259c377be8f8e15e84e983b4910b90"/><dir name="Helper"><file name="Mysql4.php" hash="f94b4ec8bc92a8885ede4b03b706d248"/></dir><dir name="Indexer"><file name="Fulltext.php" hash="7dcb905ce92077e2687f42be421fff00"/></dir><dir name="Query"><file name="Collection.php" hash="5cb54416de9949f63fd45bdd3cba23bb"/></dir><file name="Query.php" hash="95a11f20f48c8411fd7b9cb7f32aaafd"/><dir name="Search"><file name="Collection.php" hash="62d200991af806f4a276a9a78c760e05"/></dir></dir><file name="Session.php" hash="afec49756bfe1797c812188dce83bd21"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Sitemap.php" hash="a08d917f00fb059829b7be6e5c7d824a"/></dir></dir></dir></dir><dir name="controllers"><file name="AdvancedController.php" hash="7abc4f192b6ab188ccb3beb539d71c9c"/><file name="AjaxController.php" hash="8fe67a774e3a049c220fa42366985921"/><file name="ResultController.php" hash="722ed7e7c086285e2139140785b489ca"/><file name="TermController.php" hash="d729dbc2aaec341a4daa0bac292aea75"/></dir><dir name="etc"><file name="adminhtml.xml" hash="122ee27322dcf98cc02ce8421296d2c4"/><file name="config.xml" hash="d697b56fe2e4f932cacf9d8c234f67eb"/><file name="system.xml" hash="7b4a775828a6622bc22d69ef0ac04b6c"/></dir><dir name="sql"><dir name="catalogsearch_setup"><file name="install-1.6.0.0.php" hash="0ed3e3e0e1ac60db4d1b50a8ffe3bb80"/><file name="mysql4-install-0.7.0.php" hash="020231e5d78d911018380ddbb60c0062"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="3da3c61b7c42a4a2165195150194ca42"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="3a95c2256f3904f92426091dbf776925"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="b86bdb64adab787bceac75c2177af387"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="8523b6cb5da58d83f1368bd9314cee34"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="38b7fda659d8aca00616066c26c81f27"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="6924f094fe5975ad1b7ed8acc7229115"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="7a556a9ce85d4879a76be9cc25da08c9"/></dir></dir></dir><dir name="Checkout"><dir name="Block"><file name="Agreements.php" hash="f6ab677693007727ff143deae9b9948d"/><dir name="Cart"><file name="Abstract.php" hash="5e72f4bd159db6adceae26d5d5d341fc"/><file name="Coupon.php" hash="572aca73ddf6f7cfa9f1487611fff79c"/><file name="Crosssell.php" hash="d4bcded4960270f8e4aec6f5b51d10d8"/><dir name="Item"><file name="Configure.php" hash="a29a73d4686f622ee9c7e7552a210de1"/><dir name="Renderer"><file name="Configurable.php" hash="54e256e5b71339f360363453d78249fa"/><file name="Grouped.php" hash="9601662647d00cfb5c9f40743c5a61ee"/></dir><file name="Renderer.php" hash="a5ac49d899363c94a40b6e6d7a76a55d"/></dir><file name="Shipping.php" hash="aa158b97343cda883c06aa283d5b7685"/><file name="Sidebar.php" hash="05efd18f9595938a3b01aeb970798394"/><file name="Totals.php" hash="77321936c587b1134a3838a09e40c451"/></dir><file name="Cart.php" hash="4ba10e876c870483b37ac07787ac39a4"/><file name="Links.php" hash="b23b11f6f2df816b7d08076c57f33ff1"/><dir name="Multishipping"><file name="Abstract.php" hash="ab2fec7149f6fbc093bf3b253c0ea35e"/><dir name="Address"><file name="Select.php" hash="6a5d38a63e70b58eff6b7d2b51e64e18"/></dir><file name="Addresses.php" hash="7061e43144eaef1b209ed996cfffa7d4"/><dir name="Billing"><file name="Items.php" hash="c170f84af7d3ed5cec7eaf80c49dac9f"/></dir><file name="Billing.php" hash="0f00c2c2a770bbe22f28ec788e2cd353"/><file name="Link.php" hash="11d799f05f145eaeb3fbeec109ea044a"/><file name="Overview.php" hash="7cdaab0ecb5bd9694478d7735bb4327b"/><dir name="Payment"><file name="Info.php" hash="30fe02c50ee97b1e052416259f60ffcd"/></dir><file name="Shipping.php" hash="94c2550a9abfbbf95c4c261766e9d1f5"/><file name="State.php" hash="35448a184d67d9c207d2ff98019dec27"/><file name="Success.php" hash="0af7214ce48a225e4b4bb2a4026bd5a3"/></dir><dir name="Onepage"><file name="Abstract.php" hash="287be10bc2e3587ddc8d752e6e27a752"/><file name="Billing.php" hash="176524420d9eaabdd834b1528152692b"/><file name="Failure.php" hash="0e62ba39c70aa42502dea949e03ff784"/><file name="Link.php" hash="e406f1765d09c09d3ad216bc14ed89e5"/><file name="Login.php" hash="19618cd9e2ee65bdd27080b7c079f76f"/><dir name="Payment"><file name="Info.php" hash="545c960584abe44fb4dfa899f75f91ac"/><file name="Methods.php" hash="8599366d2967f7b96f90bfaffceb3ce9"/></dir><file name="Payment.php" hash="1acebf34fb875a08de713663d21ccb19"/><file name="Progress.php" hash="3bebc4cbdebe862a42aab3598a6e56ed"/><dir name="Review"><file name="Info.php" hash="6d311cc255354a8fdb901878545325b4"/></dir><file name="Review.php" hash="2874287e6cc81962e1c1680174f4248e"/><dir name="Shipping"><dir name="Method"><file name="Additional.php" hash="b1893a70f3c41c1a8c797512e774094b"/><file name="Available.php" hash="9c70bf92d789b98ba4e04bfe95f1389a"/></dir><file name="Method.php" hash="156d9be1a564c1edc8865052bf976291"/></dir><file name="Shipping.php" hash="84713ba46c776059ae03a9a4ea2f6f6c"/><file name="Success.php" hash="a8c2002dd877630ff955b0dbc4dc3b9e"/></dir><file name="Onepage.php" hash="991ce99775a08593727acb79afd8ca62"/><file name="Success.php" hash="ce4753218f954432d84fca94e895674c"/><dir name="Total"><file name="Default.php" hash="ae9cfc78132ee43dc087a4223f55338d"/><file name="Nominal.php" hash="ddf730da6ecac61ca9625a5467d047d0"/><file name="Tax.php" hash="db18bfab9860b1498ab9631119e71e1f"/></dir></dir><dir name="Controller"><file name="Action.php" hash="3b24af04268e30f57789a8baa2bffaaa"/></dir><file name="Exception.php" hash="0149e79437c01368a2fa71b043a08f9e"/><dir name="Helper"><file name="Cart.php" hash="fa178a9509491f232145a5057b95ea29"/><file name="Data.php" hash="8287a9363c1ee1c863576f921a8ded16"/><file name="Url.php" hash="fd028ef4719fd0a68d790a7fbbea5b1c"/></dir><dir name="Model"><file name="Agreement.php" hash="de3c574cc7c7d3e8a514fd66c8954d37"/><dir name="Api"><dir name="Resource"><file name="Customer.php" hash="ca9dddb29df696cc2288fb7a998a7e7d"/><file name="Product.php" hash="906c8ed3a456f15d6c4747068fc3cca6"/></dir><file name="Resource.php" hash="664968dd9deafd0cef846b3a265377d1"/></dir><dir name="Cart"><dir name="Api"><file name="V2.php" hash="e19757b371135ee5eee0552d1f41ba99"/></dir><file name="Api.php" hash="f06445625052da4bb2558495438c6414"/><dir name="Coupon"><dir name="Api"><file name="V2.php" hash="23ccba9130ca6e9880c3204bc3ad0615"/></dir><file name="Api.php" hash="89e683437d8328e209f01ea15d084794"/></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="f7f70b45fbea681a81ab89827c4d3c3a"/></dir><file name="Api.php" hash="be086c3fc0c5ce9eff35898ec5740319"/></dir><file name="Interface.php" hash="3261758122a055e2f09a1c890b410357"/><dir name="Payment"><dir name="Api"><file name="V2.php" hash="09be1b30073accb318cf5e81965a2f58"/></dir><file name="Api.php" hash="f74fada0432349ec7978ff4ef63d2a4d"/></dir><dir name="Product"><dir name="Api"><file name="V2.php" hash="1cc93ae396d0844aa548575f5e62fc90"/></dir><file name="Api.php" hash="b9b8da6228bfc03c7b853e705e89c357"/></dir><dir name="Shipping"><dir name="Api"><file name="V2.php" hash="54681248c084a7b19d9ba1919bb675bf"/></dir><file name="Api.php" hash="bf61922d96521f5815e65ea01c9de358"/></dir></dir><file name="Cart.php" hash="2b8bc9e8d9543ed70e42405e8c7a5813"/><dir name="Config"><dir name="Source"><dir name="Cart"><file name="Summary.php" hash="c9ed1e80cfaaf470ce8cbda82a7a35c3"/></dir></dir></dir><dir name="Mysql4"><dir name="Agreement"><file name="Collection.php" hash="a63eb8e972a8c26f4eb93ae6ac0fa8c6"/></dir><file name="Agreement.php" hash="1a74d16d611f9c66a05f73a23c51771e"/><file name="Cart.php" hash="c4a5312dd082db78d71477f8855158cc"/><file name="Setup.php" hash="873d771a09000c1c96906107ffbcedc4"/></dir><file name="Observer.php" hash="f5584265f199d32bba88af9258c617c2"/><dir name="Resource"><dir name="Agreement"><file name="Collection.php" hash="9754ecf74f2c40b6e7d13434166a7b9f"/></dir><file name="Agreement.php" hash="85a9e772d873dbd02ea586a6717ea985"/><file name="Cart.php" hash="9ba923ee983637cb0cfc8734f5c2acf5"/><file name="Setup.php" hash="3145e3be5ecb1f8e22d214ab28e51aac"/></dir><file name="Session.php" hash="d72875a5bb4eb99cc70be708413c003a"/><dir name="Type"><file name="Abstract.php" hash="30dbff3e37183ba96011cf9b18435f07"/><dir name="Multishipping"><file name="State.php" hash="5602d11146d897f28bc361209495619a"/></dir><file name="Multishipping.php" hash="eb6c6fe95962e1f0d88d4d142a2fabd5"/><file name="Onepage.php" hash="d4a83cb917fae22177d863cfd8709ebb"/></dir></dir><dir name="controllers"><file name="CartController.php" hash="73137f7c537be319101f1185590c5e4d"/><file name="IndexController.php" hash="f117691c13d81d1af1676092f3318d62"/><dir name="Multishipping"><file name="AddressController.php" hash="bc31b23c77d081c3d6ce6ac667890347"/></dir><file name="MultishippingController.php" hash="5e338b66a7da1fcbd44ed97418758a57"/><file name="OnepageController.php" hash="8adea880b2c85d93d0ac0620d32a7238"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2a63774ae2f98839a8e95260f97163df"/><file name="api.xml" hash="ffa6caf214932ac88b24b6e7d87f1ca8"/><file name="config.xml" hash="f2a1572f226f630b43d48471578e1c33"/><file name="jstranslator.xml" hash="2e347298e9d19a8ab0c3f6d996865a1a"/><file name="system.xml" hash="e6fcfe3a89449a57aa8471605dc5deb7"/><file name="wsdl.xml" hash="4bb393200e9ac34d92a9250d2e732e41"/><file name="wsi.xml" hash="744874dabeced7f1c1235f8e1e60d96f"/></dir><dir name="sql"><dir name="checkout_setup"><file name="install-1.6.0.0.php" hash="b19e3937140c9c17c461023db860d990"/><file name="mysql4-install-0.9.1.php" hash="aa0544cc0e55cef1c6254ed41f3db20d"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="c87c8559562f85a6e5360ba9e562c274"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="13b53bdfca7e9882f2b456fbe57f2a5f"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="b2bfe2090e22dee12ea25c3ca19ff886"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="5d4d6cbfaa130b666e760d091c570d37"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="7a06a2c61405b4f34b38ec868d74e13c"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="4f9ea610cf78cee74df335677cddd929"/></dir></dir></dir><dir name="Cms"><dir name="Block"><file name="Block.php" hash="ba5e6c3cdbb3d948ea53b2ee34a27406"/><file name="Page.php" hash="c901277a65d27b370c3c0c6b2fde8ac2"/><dir name="Widget"><file name="Block.php" hash="3228659a6a2e9ec1843e44e500682a79"/><dir name="Page"><file name="Link.php" hash="1ed64fcd20b682316ce4a7acafd17ae9"/></dir></dir></dir><dir name="Controller"><file name="Router.php" hash="5c920f40a0827cc0d1c51dc694c187cb"/></dir><dir name="Helper"><file name="Data.php" hash="242f41f3ab4da9084f19c3050938358f"/><file name="Page.php" hash="ba7a1a04eafa34f9e8d8519a5571e4ad"/><dir name="Wysiwyg"><file name="Images.php" hash="0e81e9fe791dc1bc3b4244ba44d325b5"/></dir></dir><dir name="Model"><file name="Block.php" hash="f07e1e77db8d69f90149525ceba58fd4"/><dir name="Mysql4"><dir name="Block"><file name="Collection.php" hash="c0d44d14f69bd63f2c245dacecabe4d5"/></dir><file name="Block.php" hash="ddc1dc02a1701f62b29524740e9be045"/><dir name="Page"><file name="Collection.php" hash="0e9d4e79895942fcbae96b74496445b2"/><file name="Service.php" hash="35fe9c6e2d19b4ca7ac2866247d3b9bd"/></dir><file name="Page.php" hash="37009ce023e2bb21d750f63ce79b1233"/></dir><file name="Observer.php" hash="9c041ba0263eb9fb58ca634a39563f69"/><file name="Page.php" hash="24cac9c33a00e1bcdc2599c060b71af6"/><dir name="Resource"><dir name="Block"><file name="Collection.php" hash="b78610285b6403e8325cf5e8a15c8b15"/></dir><file name="Block.php" hash="e7506860c285438f147b8064678e5aa6"/><dir name="Page"><file name="Collection.php" hash="4817770e29631f054c72763ffafeaeb3"/><file name="Service.php" hash="68476a4433a761bb1a60af7289526b76"/></dir><file name="Page.php" hash="e62ecf5ce5879f19e17091e5b2529dfb"/></dir><dir name="Template"><file name="Filter.php" hash="45cbc2219100683a1ce4b03526038c9b"/></dir><dir name="Wysiwyg"><file name="Config.php" hash="35449222b7dde378b821af1c7d9ed7a2"/><dir name="Images"><dir name="Storage"><file name="Collection.php" hash="af27781038b61d1753307523bbf08634"/></dir><file name="Storage.php" hash="c56e7539a8b3fba2fe7b260d8bc283ac"/></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="4e295ec22098607c6cfdf3623a6074fc"/><file name="PageController.php" hash="95c0376ed4fb224ed18d67efe2a06351"/></dir><dir name="data"><dir name="cms_setup"><file name="data-install-1.6.0.0.php" hash="1d2bc67e87a774458a1cceedb2c8eb7e"/><file name="data-upgrade-1.6.0.0.0-1.6.0.0.1.php" hash="8c1d9a7cb8c8676a9a8e48965cf27759"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="eeb11f76ba2fce45cb2c737ef31f7557"/><file name="config.xml" hash="fa59483a9f0f8741ccdc0d02a1379b57"/><file name="system.xml" hash="5a2e594ed8143705575ddef47f59162d"/><file name="widget.xml" hash="a05d54e5a9491e748b4b55f3cb4dfc0e"/></dir><dir name="sql"><dir name="cms_setup"><file name="install-1.6.0.0.php" hash="aeb5a8260bacd26b71720735792ff8c0"/><file name="mysql4-install-0.7.0.php" hash="47b573279526bf72b56e75b016af5682"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="0df3a64655c4e6ffa86dba4dfe52a4d8"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="bd3df25c7dce111cab98b75644f1c7e5"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="d06fea18766a37e4a53548033089da44"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="fe2e8892288e65af112a363b16037dcc"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="11f4163948a081513fe6106d5ead6ed9"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="c13fe71c25459952c95cc149a5dd220f"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="e44d34cd76c3e92e9aed8da1afb73ca2"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="ff4723316c89b623d8eec04df6a01256"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="fd55a9c11624e3e95cf5f177a56b599e"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="ca089b4e5466dd81327bc8253586c166"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="186fe629b522c284b97ef0c5c9a37fa0"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ecf58a00b2482c8229314eebf36c8f22"/></dir></dir></dir><dir name="Connect"><dir name="Block"><dir name="Adminhtml"><dir name="Extension"><dir name="Custom"><dir name="Edit"><file name="Form.php" hash="33b774864be3e01ac9f0992ccbe48bfb"/><dir name="Tab"><file name="Abstract.php" hash="05bcceba7cefc5bc4c5c80b6b733e8d8"/><file name="Authors.php" hash="9914488e439ce73e147d16538861b520"/><file name="Contents.php" hash="3b7e1df671168acf2d7608357a8fb722"/><file name="Depends.php" hash="261b6c349227f429ccc17fc455e80b95"/><file name="Grid.php" hash="2a92cb2a28523e3f3e64c78869e1f9ea"/><file name="Load.php" hash="a86b65a46c736ce8eda5a0f73739ccdf"/><file name="Local.php" hash="b18d4be2970667ae3b1c95dc20f972de"/><file name="Package.php" hash="449eb2b0d3dff55f294974038fd137e4"/><file name="Release.php" hash="98fd3f2eb72ac52bfaeef3ea925ffbba"/></dir><file name="Tabs.php" hash="96391332ca5b684af3598d6acc82c7d6"/></dir><file name="Edit.php" hash="ea4b9f107c5a98503a88f17bdb58eee5"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="d29349ce4c3536afb19edd05c88a3935"/></dir><dir name="Model"><dir name="Extension"><file name="Collection.php" hash="665ed9ce3be66b2ec1d585d60965fea5"/></dir><file name="Extension.php" hash="f8c4e035310577d96f5d846c51100048"/><file name="Session.php" hash="a1744af9a13b5a938e56e65d76d1d892"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Extension"><file name="CustomController.php" hash="361689932cc0ff7a1f655123f6541b47"/><file name="LocalController.php" hash="3fd9a96c68fe9e83dc5824dd5c975a34"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="0849c92b3cb9a480eea756bf270cf514"/><file name="config.xml" hash="0a68ba902ff88e736c6b430c4a73dcad"/></dir></dir><dir name="Contacts"><dir name="Helper"><file name="Data.php" hash="2755a10e8f6f7f46002e8eb0acb4c9a2"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="dee0fb2dec59118810830085b70bea27"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="e626399956135363017d7d0e966d9483"/></dir><dir name="etc"><file name="adminhtml.xml" hash="ce3f4bc631dabe968309fc2631a52c6a"/><file name="config.xml" hash="1585787d2375915250c939e85138bf42"/><file name="system.xml" hash="6dcc4e451eb5f648d53fdfb151ebac33"/></dir><dir name="sql"><dir name="contacts_setup"><file name="install-1.6.0.0.php" hash="675954205671df8ec440f0e3aa4fcdcd"/><file name="mysql4-install-0.7.1.php" hash="2af700e221bd77db85fe6552f1f39c07"/><file name="mysql4-install-0.8.0.php" hash="8f8532760228f7a7095f3a40855e3167"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="24ff8169711bda652437383fb2c4dcb1"/></dir></dir></dir><dir name="Core"><dir name="Block"><file name="Abstract.php" hash="d201b545e47b5c92e75cf3885528deac"/><file name="Flush.php" hash="bd3969764b80404f0a305b87d9e03e45"/><dir name="Html"><file name="Calendar.php" hash="cb8a3effe83cca08e9433c6b49fe0797"/><file name="Date.php" hash="921598b5c9b4cd23c7b43d41900acf60"/><file name="Link.php" hash="937b25e4a650baa1753ebe4e6e62c0b0"/><file name="Select.php" hash="c0e720490f7a0e71880d522f73665edf"/></dir><file name="Messages.php" hash="219bc5e33245aa83cb4b83a3f2b0c1df"/><file name="Profiler.php" hash="79f130ab7a04a1f3761c2cd3609c5de6"/><dir name="Store"><file name="Switcher.php" hash="102600fee335b3b6d75bbc4c2cc50826"/></dir><dir name="Template"><file name="Facade.php" hash="6ed1101e829c55834a897a74ec47e72e"/><file name="Smarty.php" hash="695ffd4d0890fe67a3437b3a233a9e3b"/><file name="Zend.php" hash="80a9d9825b8d84566b32cbc6718b6393"/></dir><file name="Template.php" hash="986f3786b33443b40aefada96516dd29"/><dir name="Text"><dir name="List"><file name="Item.php" hash="1c61dc6fe3231da28e99dfdc51c011bf"/><file name="Link.php" hash="1c2e69fedb0fb0163d9fc55c1a6a82a2"/></dir><file name="List.php" hash="9c2efd46db427c2e076b27278d5fdf2d"/><dir name="Tag"><dir name="Css"><file name="Admin.php" hash="11a3004bb66d3a4b5822fb7464d74e79"/></dir><file name="Css.php" hash="6c8aae371f94c3d56aa32530d1cbab2e"/><file name="Debug.php" hash="3fb32cd11dfbed976d068c93c77bec6f"/><file name="Js.php" hash="6be4e7fc363cf4e6ab020027596bd964"/><file name="Meta.php" hash="0884207b6439ceea8432f623acd98d97"/></dir><file name="Tag.php" hash="7dc4a1389062a83ffafe9a4aba50d749"/></dir><file name="Text.php" hash="013024d9c60f89ed431b96d94503ae02"/></dir><dir name="Controller"><dir name="Front"><file name="Action.php" hash="c2fcfed24f32b0aa9f1a57797bac1cd3"/><file name="Router.php" hash="565c60314b16bbe4a73243547761d594"/></dir><dir name="Request"><file name="Http.php" hash="3a98de16f8f39462445cb9fcc599f061"/></dir><dir name="Response"><file name="Http.php" hash="20a3ac63e6f8a2fad9a0ed87784afa5a"/></dir><dir name="Varien"><file name="Action.php" hash="6baf63319b6999e8367f2bf60a4f5cd6"/><file name="Exception.php" hash="a6b6b4e5364ac24921a42fbac7f15ebb"/><file name="Front.php" hash="9bda486e7476a19b2a1602bea2cc105d"/><dir name="Router"><file name="Abstract.php" hash="ec47b08ae84c1a370bb325e8e8d29191"/><file name="Admin.php" hash="dbc3ae4dadf472dafeaa442c21e3a9ca"/><file name="Default.php" hash="7fec6ac87ec6d71fbbab171e41d226db"/><file name="Standard.php" hash="09be09a8dcee58f76c4f061697b222f2"/></dir></dir></dir><file name="Exception.php" hash="9f9bc7b4ebea2b6aeeeb8dbbb92a201f"/><dir name="Helper"><file name="Abstract.php" hash="7f4840b530f5fcc042c39995b33403e4"/><file name="Cookie.php" hash="5a36c757bce3d03dd08d3621d8dbdfcf"/><file name="Data.php" hash="9c81ca4f01182d9032f89bb344f69468"/><dir name="File"><dir name="Storage"><file name="Database.php" hash="23af6f358c544572010aaf28b63d6f8a"/></dir><file name="Storage.php" hash="7a60abcb1714c5dc985842db95b39774"/></dir><file name="Hint.php" hash="616cd7ab573fbb0dcb3f14571ed89708"/><file name="Http.php" hash="1b61556d22653da12db336612e6d014f"/><file name="Js.php" hash="7c9bec2d96e66da7d89fe7229b8ee18a"/><file name="String.php" hash="7444bdc1c25aa3133b4d292f9f089d15"/><file name="Translate.php" hash="3b9d5940a2e36ebb6bfe4a97158b1d85"/><dir name="Url"><file name="Rewrite.php" hash="1e3a7f2c33ff26cb932ad1675eba8f1e"/></dir><file name="Url.php" hash="1988da707eb11e0aa9d1302a933dbbf3"/></dir><dir name="Model"><file name="Abstract.php" hash="50e069b1f5c0805a844b490188234a77"/><dir name="App"><file name="Area.php" hash="3ea9ce5d8cc4e68101ccf3467e6696a9"/><file name="Emulation.php" hash="3264c091cc56dff3721141adf163d6de"/></dir><file name="App.php" hash="dbff109d127dc3b039bf89c1f0cc91f6"/><file name="Cache.php" hash="52e46246d18321c602a9d87e0793d9ac"/><file name="Calculator.php" hash="c07f8db5429aab3aa73e4d0c24f5ff0f"/><dir name="Config"><file name="Base.php" hash="5bb13cde437b54514e76f2e3381dde63"/><file name="Data.php" hash="38a040ca1aabfa555ab6d3ffb907a8d9"/><file name="Element.php" hash="7cf8402ab690eb9df4efb410bc4edf61"/><file name="Options.php" hash="6b76c6cf6338c1b1ae003a96f2615a9f"/><file name="System.php" hash="0b7437d858246da9cc0ce92cd4c5495b"/></dir><file name="Config.php" hash="7f86fad3f2002da6669ae33e6d131077"/><file name="Convert.php" hash="9d0051ac793bcb026d91a43aa91c356a"/><file name="Cookie.php" hash="89c1100364a0bb5d90c52fe742c96fc6"/><file name="Date.php" hash="10bee78c44a4284a530314b275aec700"/><dir name="Design"><file name="Package.php" hash="2c0b9dfecbf075a23add77c6660810f8"/><dir name="Source"><file name="Apply.php" hash="794f99ea33945810c14ec292c8179157"/><file name="Design.php" hash="3fc2a58120f1bd38b2a4d31a79ee68c0"/></dir></dir><file name="Design.php" hash="6e7d67b8b683fdba1d8d72404bb7af36"/><dir name="Email"><file name="Info.php" hash="06e54f3f59ebc3a6ee2da4c52c95877a"/><dir name="Template"><file name="Filter.php" hash="350564d1c8b292831817db3f253416ce"/><file name="Mailer.php" hash="6b5dd49b28550b582a84aa5df11e2bd3"/></dir><file name="Template.php" hash="e4bf5830f7d4c5f1d05f22b5ee90ecae"/><file name="Transport.php" hash="3000b3c89ec4c3672f4063714457c2c3"/></dir><file name="Email.php" hash="8bb2ddec6c86261072e593c0037ecf4e"/><file name="Encryption.php" hash="9a6b331713a8f84003d17bec39339f80"/><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="42b09c9c37ded7c2f13a8dafc4a0c55c"/><dir name="Database"><file name="Abstract.php" hash="8fbec13e6f880fb7695946082eeef856"/></dir><file name="Database.php" hash="1638a2de0786c6e4bd2ce57074bdab9a"/><dir name="Directory"><file name="Database.php" hash="7026208591d1df6f977c5de04d372e24"/></dir><file name="File.php" hash="14765d22b7f720b4fb8186edebf88b54"/><file name="Flag.php" hash="6aab43b3a3f506c1030c247942ca8c17"/></dir><file name="Storage.php" hash="50b35799bfb55d3735307ff402cfbba9"/><file name="Uploader.php" hash="f51d5dec2988beb2c26a29ebfa96f787"/><dir name="Validator"><file name="AvailablePath.php" hash="4c7df510145663b4988187ebef99f07c"/><file name="NotProtectedExtension.php" hash="e544412cf41cfc3e4ff2e660fbecd51a"/></dir></dir><file name="Flag.php" hash="ea0ae17d55569220321ac16fb9a98b50"/><dir name="Input"><dir name="Filter"><file name="MaliciousCode.php" hash="ede030d253f428cc779f2b8d359ebb04"/></dir><file name="Filter.php" hash="3a62a3b63156e000bdeb93cfe43d0c33"/></dir><file name="Language.php" hash="49fe0ff25e91a7e14b31a53a22673b70"/><dir name="Layout"><file name="Data.php" hash="06452d3dfa671a2d10b0cb889b76ca3b"/><file name="Element.php" hash="90e999cf478c1d1159137b2d984f4e91"/><file name="Update.php" hash="21ebe5019d125abe9b03f466fab17fdd"/></dir><file name="Layout.php" hash="3b0109ea66479c7ce06545d90da321b6"/><dir name="Locale"><file name="Config.php" hash="996ca42a975b1bd2583b5a136c61b2be"/></dir><file name="Locale.php" hash="efec4f773c7dd20166f45f28e9ffd19e"/><dir name="Log"><file name="Adapter.php" hash="ffbafb1e16dcc03cd3cb44dda3eddc29"/></dir><dir name="Magento"><dir name="Api"><file name="V2.php" hash="3307701a7aca8217860a20a196f5d866"/></dir><file name="Api.php" hash="ecd18029a0c72c455ce81141252c417f"/></dir><dir name="Message"><file name="Abstract.php" hash="829d079deff03f1e8fbd95733de88a45"/><file name="Collection.php" hash="447f4501b09f4249bf034090eb7c4860"/><file name="Error.php" hash="4a6a992e663f0805457a4e467a8c0301"/><file name="Notice.php" hash="749cccae61099b15c222a4aa757c9a84"/><file name="Success.php" hash="bfcf685bb521806c42743c1d3216cefa"/><file name="Warning.php" hash="a53aa75b9e77ddcc0946dd7fb0066b2e"/></dir><file name="Message.php" hash="a1992fd67f29a4197a698623be6ff9b0"/><dir name="Mysql4"><file name="Abstract.php" hash="5c2785ad8f8ae63f23c748a35840aea8"/><file name="Cache.php" hash="b64a3b6a8e91e2c5fe3c77dce6e61ff0"/><dir name="Collection"><file name="Abstract.php" hash="939f12dcc8e550ce44d35c187f186c47"/></dir><dir name="Config"><dir name="Data"><file name="Collection.php" hash="43dac95a761f8e08f9d087992b59aa67"/></dir><file name="Data.php" hash="ca2ab33bf092cafc522354098d388134"/></dir><file name="Config.php" hash="14872a2aeb3e69423e839e6849412484"/><dir name="Design"><file name="Collection.php" hash="dbcd801b8bf2e3927fbc789891a2e187"/><dir name="Package"><file name="Collection.php" hash="6592b0a08f569353f9ae6d9d122d071b"/></dir><dir name="Theme"><file name="Collection.php" hash="6e2769a5738ee50644b437b1e6582029"/></dir></dir><file name="Design.php" hash="1f24b5bf3d865382f469976b2e9e7e22"/><dir name="Email"><dir name="Template"><file name="Collection.php" hash="488f592b6a77ac69ee95cb5422764cf5"/></dir><file name="Template.php" hash="22e74c6f205460fd4a0c394b0c737e81"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="f346a527298523ef6d488c7747fecd1f"/><file name="Database.php" hash="9ce566f37b19a5fd0d4ea60c33e97776"/><dir name="Directory"><file name="Database.php" hash="232acf2688ef954b536288ba85c447f2"/></dir><file name="File.php" hash="dc9d69eabcde7493c82a0be00c1488cd"/></dir></dir><file name="Flag.php" hash="d126e8e7c2c7d5af836329c7c89bbd84"/><dir name="Language"><file name="Collection.php" hash="2861119cd4f5494c227543b605e093e0"/></dir><file name="Language.php" hash="59e0e965ed873c2a88a350a14e529e84"/><file name="Layout.php" hash="a045cf4e4f7f1f214fe65cc5a16ca307"/><file name="Resource.php" hash="7f6e2d54a0da5f3b2d8e4b7b849c4f40"/><file name="Session.php" hash="c6a87083b2cb431ef9625db4db6a4f31"/><dir name="Store"><file name="Collection.php" hash="b80a06cfd3a8ffd13c191830f965f725"/><dir name="Group"><file name="Collection.php" hash="4102b63da8f7ef2a54262f9a18abbaa8"/></dir><file name="Group.php" hash="02461ac269c9ecb43d05abf9f7ed070d"/></dir><file name="Store.php" hash="8b107cfbd67b90cf11d7ab9107db9119"/><dir name="Translate"><file name="String.php" hash="255d05dfda5d9d6ec6bb3964460cc3be"/></dir><file name="Translate.php" hash="620efa1768a687c265cf9d3fec94b3b7"/><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="5c93c81eee38f5e1fc9ef4eb57d42d9f"/></dir><file name="Rewrite.php" hash="75f395f7571938a971b7cab611276a20"/></dir><dir name="Variable"><file name="Collection.php" hash="3d5dc44cfa928839092720c3704e69ea"/></dir><file name="Variable.php" hash="e6403aef5b12e63a60e813bbe302eeaf"/><dir name="Website"><file name="Collection.php" hash="2b5908336f85f9d2d999f643014f293d"/></dir><file name="Website.php" hash="5523de7e739a01be05624c6a742c3d2b"/></dir><file name="Observer.php" hash="8b8671a386f1a5b270284fa83d10e057"/><dir name="Resource"><file name="Abstract.php" hash="988736566fdb1c3e30a6f9fbf7569b30"/><file name="Cache.php" hash="1114fd36fab730863a8c81e41eb91402"/><dir name="Config"><dir name="Data"><file name="Collection.php" hash="20c7a6561624c07e25e4594e416e93a4"/></dir><file name="Data.php" hash="00de2d4aa3f8a8e68d918838873525d9"/></dir><file name="Config.php" hash="7bafbd96fdc56816b4cb48fcffbf9b26"/><dir name="Db"><file name="Abstract.php" hash="4f99998f7a39a52991f6c546b9914ed3"/><dir name="Collection"><file name="Abstract.php" hash="e04784919c99be15bd00ed897b2ac8a3"/></dir></dir><dir name="Design"><file name="Collection.php" hash="bf14fc98ce1523fd965951668a144f50"/><dir name="Package"><file name="Collection.php" hash="afc877fe2b0fe0a7520c0418aa478a41"/></dir></dir><file name="Design.php" hash="321106d4ade63611a0a97c7b2d8c4b16"/><dir name="Email"><dir name="Template"><file name="Collection.php" hash="e7c411db3bdc3def8e8b3615ce4979ec"/></dir><file name="Template.php" hash="a1652881d2af3d43d5f5aa704e4b417f"/></dir><dir name="Entity"><file name="Abstract.php" hash="0100784f110c832f658b6a268e44f169"/><file name="Table.php" hash="a424a7ffcf08e68c803b3f28754040c7"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="24b4100968e18262da7876cb2772faa5"/><file name="Database.php" hash="3f119cd4defe9b433537d9a35ee4cf7c"/><dir name="Directory"><file name="Database.php" hash="5dd263c082bfb60526792079b1355d5f"/></dir><file name="File.php" hash="accc0cc4cb2f2b0741b1a51b0515c19b"/></dir></dir><file name="Flag.php" hash="bfccf10fac18355012e051b4c01c9aee"/><dir name="Helper"><file name="Abstract.php" hash="77f2c74b5123e6fd51d5acf7c7338627"/><file name="Mysql4.php" hash="f836a6aeb9b63ddedc4250617973f488"/></dir><file name="Iterator.php" hash="0ee18077dc251fe5bfb2d3a74dd6a4fc"/><dir name="Language"><file name="Collection.php" hash="ed54c467951bd75c9a151f2127047d8f"/></dir><file name="Language.php" hash="e14359350fc4cea1efe0d832c88e67e6"/><file name="Layout.php" hash="fc502ab7e01451e3e13c48b3146aae9c"/><file name="Resource.php" hash="2899eb7ce8575284a5cd22a70542c349"/><file name="Session.php" hash="97e10bd61c8f4ff90e31caf5769362d0"/><dir name="Setup"><dir name="Query"><file name="Modifier.php" hash="5a5e0eccbb0580f3710874b463d8358d"/></dir></dir><file name="Setup.php" hash="b4098e246b5bd7d365bad8ab5d7ba850"/><dir name="Store"><file name="Collection.php" hash="0ef4e5e9f78fec51382b7d081ca9e21d"/><dir name="Group"><file name="Collection.php" hash="93e2f0da32c9e74b8ec1d42a1f44ff30"/></dir><file name="Group.php" hash="f61293d5e27fc020783bc2b80980aee7"/></dir><file name="Store.php" hash="9b0d5564e6e69961d4d6bc27bdf844b5"/><file name="Transaction.php" hash="9685deac936163230c49b24060ee2902"/><dir name="Translate"><file name="String.php" hash="4ad127b4362870563797866b6825393e"/></dir><file name="Translate.php" hash="1b31561145e33aedf3b1804dd0d91068"/><dir name="Type"><file name="Abstract.php" hash="b46c0dd8465eb3e838ade89040b44bdf"/><dir name="Db"><dir name="Mysqli"><file name="Setup.php" hash="cd1bb0deaff1eff54a0e45dd4e58b931"/></dir><file name="Mysqli.php" hash="0d9aac3577812aa041854a7ac24a00f6"/><dir name="Pdo"><file name="Mysql.php" hash="3adfa2525e4bed59b08493a699548690"/></dir></dir><file name="Db.php" hash="55b8e5c9b6a911680d7568cab87d0610"/></dir><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="740c96b1de4275e6963dd173a95438fd"/></dir><file name="Rewrite.php" hash="9cfc4aadc4cf8a025b4a2d9ea3bcfd40"/></dir><dir name="Variable"><file name="Collection.php" hash="7fdddf0937d178ae6c73489eff09c272"/></dir><file name="Variable.php" hash="a3df780bba1c5c578d6fd536463cbf52"/><dir name="Website"><file name="Collection.php" hash="750b2a2239ef6d9ae07ed02131766c2d"/></dir><file name="Website.php" hash="853dae59d3851157e1cc5a54cb8816ac"/></dir><file name="Resource.php" hash="14412c582d5b2ff9ec7798fa53cf895b"/><dir name="Session"><dir name="Abstract"><file name="Varien.php" hash="57a724ecaf87dd5bc98e08a2e93961d4"/><file name="Zend.php" hash="b5d7f1d72efb5bd2b6830d7efc24abc4"/></dir><file name="Abstract.php" hash="8ba76f8c0bc33b0d8bccb51474c628bd"/><file name="Exception.php" hash="0184d5aef8c4950f24d9c9b55e33a990"/></dir><file name="Session.php" hash="7c76d3143d8404e96ea1a895fd670c31"/><dir name="Source"><dir name="Email"><file name="Variables.php" hash="b56bab694181efab58d393dd64f1e351"/></dir></dir><dir name="Store"><dir name="Api"><file name="V2.php" hash="7fd9a3930fd9630156705497f2c62c08"/></dir><file name="Api.php" hash="0ab5ad47bbe72d69a39f00e112c95c7f"/><file name="Exception.php" hash="644229446b7600b3b0f62a7d31d04d5b"/><file name="Group.php" hash="3b5c1b6f11a780d380ee5c7d66588440"/></dir><file name="Store.php" hash="62f91bc1890fe319ec3da0481177dd8f"/><file name="Template.php" hash="54ef28c879c06b4ffd6543bc2baeed87"/><dir name="Translate"><file name="Expr.php" hash="7b98715309685d0f54404f343bbb19d3"/><file name="Inline.php" hash="e665357aaa6f03b9b50e1c241f8ad9ca"/><file name="String.php" hash="01ad7a2f4d605a97173f7d48a49bb652"/></dir><file name="Translate.php" hash="9c8b4914bda8eff59b146ccd38c5eab6"/><dir name="Url"><file name="Rewrite.php" hash="f389cd16c9bf3b4adff9a793f3a7e919"/><file name="Validator.php" hash="79397335f9f3495fb779708c4bb5a656"/></dir><file name="Url.php" hash="97a39d503278c52065443c6be2193c09"/><dir name="Variable"><file name="Config.php" hash="08cd03baf77e0c687c5f632197356747"/><file name="Observer.php" hash="227cf7fa5df85189e716856b94d2d6e3"/></dir><file name="Variable.php" hash="aee7b5e68f9fa865f3d29c1145fb341e"/><file name="Website.php" hash="12598e98f30d6da58b7bc678541402ad"/></dir><dir name="controllers"><file name="AjaxController.php" hash="2aa47bfbbbf0f023d232c847b9ecb55c"/><file name="IndexController.php" hash="c266dcb9c7d0e1a0e07e69172fe71b44"/></dir><dir name="etc"><file name="api.xml" hash="ba7cf89dc4f5fb0517f4bb05785d7afa"/><file name="config.xml" hash="c5d6789df290ca02a87d958d6d8fbea3"/><file name="jstranslator.xml" hash="951efd02ad67c7c34e8e47012ec7e729"/><file name="system.xml" hash="ddbf56276074d435cb62e06489fe6d3a"/><file name="wsdl.xml" hash="79501d6ccf39846b5dd551e85880dcb8"/><file name="wsi.xml" hash="31fa195d527181c946019bcd44d819d6"/></dir><file name="functions.php" hash="4d761410208f3ecb0802737ab688f521"/><dir name="sql"><dir name="core_setup"><file name="install-1.6.0.0.php" hash="13f03bc9788658d2cda0e72ff2c1701d"/><file name="mysql4-install-0.7.0.php" hash="a3d233bae0fa7a5b7b3c5ec3524309c3"/><file name="mysql4-install-0.8.0.php" hash="42fdb2ceb74d7891477166b6665615cf"/><file name="mysql4-upgrade-0.6.26-0.7.0.php" hash="3dde2857caf07bbbfc6ecd29aa6d2209"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="55a59416c1545e162dc82571da858ff3"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="b6f38708e674fe0ace61eb18e53da302"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="5bdcdbb7c71326e6b07ea0883787dc4a"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="75397f828da5c0f3f6f5a7d91d81b862"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="5a074380898a091982dac79eff8b640d"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="95802fe3132fb2cd59af950919ef8ab0"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="9da4f3ba58920d0df1520aa358531279"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="7a6b4050bab71c0bd84e7c4888c76b6d"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="02385f377a5310e41a79600d108e9895"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="6de2b44c02e261ab177e9fb472bd3ded"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="2c43486869c46354a6a9260bd87890ea"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="3e7d938d53568ce4a3dccb2882fbc0f5"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="d1385674cef3a260f28eb9f1b09e3d72"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="ce3d6592af0d12dbcc97457c30dd8ffb"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="c52cdcba3f01655608971e5391727cee"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="d9d24ad500d54dcbdb2dc6d8b3a11ddc"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="5aaff17fde7740fccb07eedd8dc6dffd"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="cc53c4239eb43ccb42f06191641292a9"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="9aa76cc83168b46caae79f9f979afe25"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="b8c4680cbea72d789854e37dc41a5e4a"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="5ba021066d74c476893a12eff7d29a31"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="2b312d32229efe61f791b1e928014afc"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="ceb5850b36d4f517699ae05d7b1329b4"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="c382354ec23fb9a3bab5d5d456319f2d"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="358c9bc1aaa48d49709575532728b61a"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="26bea4e099b572d5765eb429501951f5"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="7d5efc120db4ef3b9f18eb653d59ac8f"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="6397ae18bf2ea9b5a9c563f8de2b937f"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="22651ce5575c2661b5b2a018bdc6ece3"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="15bf575f6b5704089c7574beb542644e"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="dc555c9bc3616aff4ddb507714b6c427"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="658376e611748928b1ae13d9ba86ea13"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="bba1e63a6fa3cf32e6745b1c608779da"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="48ba89337063ff62bb06ab250c2ae6cf"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="0e600615ff00b0bf9518b2bfb379b631"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="1f72586f2850f7c89e43abb94774255a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="0771f9472fc86571c7707921564874e5"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="45a1f90f3fa10c035e0db2911435ddda"/></dir></dir></dir><dir name="Cron"><file name="Exception.php" hash="909726b7f6a1270bdd218a83934f22fb"/><dir name="Helper"><file name="Data.php" hash="a857aabad57a5bf3197775cd70f443a7"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Schedule"><file name="Collection.php" hash="0c70c626af14f196221b9b59e79a9c8e"/></dir><file name="Schedule.php" hash="c8a6446e2a9cbbb9a548a4326deb122c"/></dir><file name="Observer.php" hash="4cae430728f9bf5a842eba9f8d44e152"/><dir name="Resource"><dir name="Schedule"><file name="Collection.php" hash="583d64ef4b77ac6e520a92584ade7b85"/></dir><file name="Schedule.php" hash="42145b0ab079c0081b17ed7b6420f011"/></dir><file name="Schedule.php" hash="4501734f43a725dbca02f0f42aa899be"/></dir><dir name="etc"><file name="config.xml" hash="c30f16965965d31d71cd506ef4102eb6"/><file name="system.xml" hash="c32bfe6f6428ee760053ecf907c672b0"/></dir><dir name="sql"><dir name="cron_setup"><file name="install-1.6.0.0.php" hash="4b867e2caa21a0ae5f744ed9b5970e4f"/><file name="mysql4-install-0.7.0.php" hash="f1cc746ad6507e743334113acbb576c5"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="dd7870aaea6c018de9515bf4bb90bdb2"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="08d507d8dbeb9c9248ec0b78ee3aa931"/></dir></dir></dir><dir name="CurrencySymbol"><dir name="Block"><dir name="Adminhtml"><dir name="System"><file name="Currencysymbol.php" hash="a3a168085a87f9fdf1b8fc45f6794046"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="d5ad5212ecf126f98d7ab29d9f8e2259"/></dir><dir name="Model"><file name="Observer.php" hash="e2ab7e895b30233fa9993187ac1cc382"/><dir name="System"><file name="Currencysymbol.php" hash="5747a08bbc0e3f9c6b89fa7fb5f9d016"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="System"><file name="CurrencysymbolController.php" hash="855dc39d9751caca4fe8bd340bc6bae5"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4abd71a9d3dadd59899fe55d413e55cc"/><file name="config.xml" hash="fee9a84036ba8dd021abe65db942739e"/></dir></dir><dir name="Customer"><dir name="Block"><dir name="Account"><dir name="Dashboard"><file name="Address.php" hash="821013b2666202db2a7da4276641a580"/><file name="Block.php" hash="e8377670ebe6e7b9506efb5bffb4a993"/><file name="Hello.php" hash="d1e10c29a6ce0e672f6ec8c84d255fad"/><file name="Info.php" hash="d7460dfd9aa7a64742b1ddba58f759cb"/><file name="Newsletter.php" hash="943cf16b74808dc3baf0148b8500c5e0"/><file name="Sidebar.php" hash="8a4f30ce910fe668efdf8e10f12a357e"/></dir><file name="Dashboard.php" hash="06f0741f6cbb333efda1bb2996c08c42"/><file name="Forgotpassword.php" hash="e64679b67e1ac7e21e91219fecb459b0"/><file name="Navigation.php" hash="388a080ab136fe8d9c1dfb56f1339585"/><file name="Resetpassword.php" hash="41851f07138fe749a723435e4513058a"/></dir><file name="Account.php" hash="5b69c97f17383ac8526ed863baa160f3"/><dir name="Address"><file name="Book.php" hash="29eccd0bc6e1d73262dfd5c7f339b300"/><file name="Edit.php" hash="df180f3c09a253580bb74de174d3c42b"/><dir name="Renderer"><file name="Default.php" hash="c4dcd1d2d87d39b1b0845a2d81750908"/><file name="Interface.php" hash="b4d6e4b2d67b25ad58a189427621bd8b"/></dir></dir><dir name="Form"><file name="Edit.php" hash="9ec7f2e9b971d0ad00d26af46294db0f"/><file name="Login.php" hash="7973aed41efec43238f33ded0b906dad"/><file name="Register.php" hash="dc6405220cf29e70dc8f83688fae36df"/></dir><file name="Newsletter.php" hash="f7c3621098ec6ead2be805cc0c49b32d"/><dir name="Widget"><file name="Abstract.php" hash="c4f4cc2cbbaeac567bd153f9e75a1c31"/><file name="Dob.php" hash="8fdf08e74627ddbbe4354490ef4237cb"/><file name="Gender.php" hash="4b38e5dc380976f71b6f6526e45ddbcd"/><file name="Name.php" hash="1d50d8fbaa68c0f20d62728d268a665c"/><file name="Taxvat.php" hash="c4242fa699f2c81fb44462b065f09d8f"/></dir></dir><file name="Exception.php" hash="996e402948e8b70c1002970bec0fa24a"/><dir name="Helper"><file name="Address.php" hash="18d52e8860b783fcd15ee76c35f0ad6f"/><file name="Data.php" hash="f47276588162f9cb89d196b63366f531"/></dir><dir name="Model"><dir name="Address"><file name="Abstract.php" hash="f70776559479db49ef9fd1b32bc19799"/><dir name="Api"><file name="V2.php" hash="bef4068efa05d99f4b695a595f80563c"/></dir><file name="Api.php" hash="790be6b0a1c4ba5e583d0aec7b4a59a6"/><file name="Config.php" hash="3dbbff07c9b017d60df0b27532fd3820"/></dir><file name="Address.php" hash="36f438968b0d5c8bd20bdc8d3448e2f9"/><dir name="Api"><file name="Resource.php" hash="2e4a01e1609bb8ea7cdfd848442d02a4"/></dir><dir name="Api2"><dir name="Customer"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="d6ad6166d93fc8ec8e78efbc6d319b88"/></dir><dir name="Customer"><file name="V1.php" hash="d78c14fdf6664b1760e0fc8df6e20286"/></dir></dir><file name="Rest.php" hash="ce94a4e15c289a1cf906f01dd6e2a60c"/><file name="Validator.php" hash="f779a8fb09a407d67090004d0df5d58d"/></dir><file name="Address.php" hash="409eb46f3399a5ded6b50f9dddd72090"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="3156d49d0dc07bc1149484e09e91ddf1"/></dir><dir name="Customer"><file name="V1.php" hash="bccdbab655d4b4a8ce707cbc1027b3ca"/></dir></dir><file name="Rest.php" hash="2947725326efc03ce91c5f902199439c"/></dir><file name="Customer.php" hash="3e567b1756dc2692a0217c334b49abfb"/></dir><dir name="Attribute"><dir name="Backend"><dir name="Data"><file name="Boolean.php" hash="9ee59c520f2e8bd4c9f86b048fc8a749"/></dir></dir><dir name="Data"><file name="Abstract.php" hash="fa46e89d24103be471a163a0cb862ea3"/><file name="Boolean.php" hash="f87a2225435ee1d0aeaa24034864ed74"/><file name="Date.php" hash="32096c635513c276276750ace3a1755d"/><file name="File.php" hash="95e6ba9c7c91f2b887b8190b8639c78a"/><file name="Hidden.php" hash="e3849ef0e288e987a1a0f24ab7ea913b"/><file name="Image.php" hash="2ad19eef00078b04fb6d802817d923eb"/><file name="Multiline.php" hash="4973f70d33b4565f2c5ff18a64e81413"/><file name="Multiselect.php" hash="b3608573dc250a73756a33b3cda8c04b"/><file name="Postcode.php" hash="300817e7dfa3a13600c6c2088c9c4a27"/><file name="Select.php" hash="bbb4fd99806eb35c1428835fe4a0e53f"/><file name="Text.php" hash="a60bab2a7a3a99d372e88ef15f29c5d1"/><file name="Textarea.php" hash="937a6e3f6a7af21422bf5c266f573615"/></dir><file name="Data.php" hash="cb1788c52d49a20d86368ae5754fc8f4"/></dir><file name="Attribute.php" hash="d883ff6ff9461435b996618159da826b"/><dir name="Config"><file name="Share.php" hash="e6ae1f8c690fbe1f3e7962d608058a69"/></dir><dir name="Convert"><dir name="Adapter"><file name="Customer.php" hash="eced31f1ac93b6d5fb155c77253bbf9f"/></dir><dir name="Parser"><file name="Customer.php" hash="b9e38a9a5905981e3ecb09c0453e944c"/></dir></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="b0d2019d696f7b3399c0acfd0ad6ed12"/></dir><file name="Api.php" hash="6b8559a85ad0095c905c8b259e107f28"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="d7fc51c2b9b7d31f051b3608c75132c7"/><file name="Password.php" hash="8223c305f23b3a10a8af1370879270cc"/><file name="Shipping.php" hash="a5bc1aa8706ccecb7cb36b84d49af94e"/><file name="Store.php" hash="6c7a742f4cfe92426ca5bac532a996fc"/><file name="Website.php" hash="3bfc72b95d8479c04c702487dfb23f42"/></dir><dir name="Source"><file name="Group.php" hash="509a279e7795da3d40ca91cf32cbb2b8"/><file name="Store.php" hash="5787d0ce477645b1a1209df488a0b8bf"/><file name="Website.php" hash="decee08011303df7bdf5f4a31cd15b59"/></dir></dir></dir><file name="Customer.php" hash="e1c022b4e05d78406a7b9759b743c7ed"/><dir name="Entity"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="f28cf559636f48bc30136f21beb47cd1"/><file name="Street.php" hash="02225adae5faf5ff0a77e99926ec5e3b"/></dir><file name="Collection.php" hash="72693abf3a4c01889e8e121dcab29ee6"/><dir name="Source"><file name="Country.php" hash="79b7da835a74d80597717f6e9fca1e49"/><file name="Region.php" hash="f831c365822d395afbe4c3f3187b7b32"/></dir></dir><file name="Collection.php" hash="043361c3c5ec4dda0034d410b40acb05"/></dir><file name="Address.php" hash="788d0421722ebfe44588f3ea3f4b88df"/><dir name="Attribute"><file name="Collection.php" hash="204bc8842ac19460784ed1f5b4fb3f5c"/></dir><file name="Attribute.php" hash="ea5b7b25b580bc750e4e7b422429580c"/><dir name="Customer"><file name="Collection.php" hash="1f0a0a587b6a09ce54fc5d80f03bb6e2"/></dir><file name="Customer.php" hash="33aa5ceba3602e2509b377ef030517ad"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="7e7af4240a0fd333c3477cb059dc3854"/></dir><file name="Attribute.php" hash="1ec23f7a124bac2abf431f3a5ffb5e90"/></dir><dir name="Group"><file name="Collection.php" hash="2d1cc0d507be1b348afe005d78372281"/></dir><file name="Group.php" hash="363d54942958542f63140f09d95f019d"/><file name="Setup.php" hash="3dc7f458a9de02787d148aae3eaa483d"/><dir name="Wishlist"><file name="Collection.php" hash="abd999cdb67149af86e58cfbaf46d4cc"/></dir></dir><file name="Form.php" hash="c63e3d5b1860df4ac3f52227f9f75395"/><dir name="Group"><dir name="Api"><file name="V2.php" hash="164d48c8e863c22d8e240d33027b5fde"/></dir><file name="Api.php" hash="90f39fdb4c73301722615832da43711b"/></dir><file name="Group.php" hash="c6c477e9f48534ac24a94109a5da2c1f"/><file name="Observer.php" hash="9526803b7751a7ae9b7acb346867b144"/><dir name="Resource"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="cc958421d2051128ed518df7a6f2ddff"/><file name="Street.php" hash="9ec284220b1cdb189a52ab35c54a94b2"/></dir><file name="Collection.php" hash="20a35b9afd7b5939ec29bdc0dde2323d"/><dir name="Source"><file name="Country.php" hash="59d17eb223ee4268ad5c9ba01905a16d"/><file name="Region.php" hash="31f89e11f8d4a4ba33f85b052397470d"/></dir></dir><file name="Collection.php" hash="19b095629a337a2708b4111f0ad68809"/></dir><file name="Address.php" hash="c1b232965fffd9651a27732a179616f9"/><dir name="Attribute"><file name="Collection.php" hash="bd0cd469dbea237e11164f0e2454435e"/></dir><file name="Attribute.php" hash="5ec49e2a53540a04683203f2727e27f6"/><dir name="Customer"><file name="Collection.php" hash="869c2feee69febd39c6a136cc6eea291"/></dir><file name="Customer.php" hash="0f12fc9ce52cc48336652a8a407fb008"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="9a334a05e2fec464531fadc59c90c852"/></dir><file name="Attribute.php" hash="25a857da62ba5efb54d0854fbd123863"/></dir><dir name="Group"><file name="Collection.php" hash="3df4120be32aac2fcdebc3bbe7a0980a"/></dir><file name="Group.php" hash="fb99881b6532321cb079aebd65d8e9ca"/><file name="Setup.php" hash="ef0df08bc0ed59eeb30cd96992e805d3"/><dir name="Wishlist"><file name="Collection.php" hash="cbf54b74a8db6f96a47f5521341ff4fc"/></dir></dir><file name="Session.php" hash="114a47ead9a33f36e1afbb58d353a975"/></dir><dir name="controllers"><file name="AccountController.php" hash="affcd5ed2c512236cf0b5ac009cf007e"/><file name="AddressController.php" hash="852dce9e763c5871829425eca16b3692"/><file name="ReviewController.php" hash="ea524d5d2d446c003cb82970db7ed1fb"/></dir><dir name="etc"><file name="adminhtml.xml" hash="b4ed2331d70d4e8b2d14c7098d819189"/><file name="api.xml" hash="a1de5321dbae24f075b578dbf0e22dbf"/><file name="api2.xml" hash="a3fcbc111ede59704445d5d4d40aadd7"/><file name="config.xml" hash="6c7c6dfc8ced9ae3350110dec6acd7e6"/><file name="system.xml" hash="fb444dc8df26550e012904bcb7de860d"/><file name="wsdl.xml" hash="ee377e78b3435b0493ce59957d0fc1f3"/><file name="wsi.xml" hash="7cf579d2b5ee2eb66eee6e8194617404"/></dir><dir name="sql"><dir name="customer_setup"><file name="install-1.6.0.0.php" hash="20dffc9bb56d85f6548bc50e7d26a08f"/><file name="mysql4-data-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="38bc1d97306725dc7333afd5c792176e"/><file name="mysql4-data-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="8c4ea640410f1f9b691b59c37db3657f"/><file name="mysql4-data-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="06c269557d7b4430cc47404068a39813"/><file name="mysql4-data-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="88482fef3118d317368e87a1236256f7"/><file name="mysql4-install-0.7.0.php" hash="04a44dd04dcb2d2e79864e911b3a6504"/><file name="mysql4-install-0.8.0.php" hash="5998dd0c159dc5e96df9af243bebf42e"/><file name="mysql4-install-1.4.0.0.0.php" hash="2077b35a3b3a0a432b2ffaaf2fd065d0"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="6a7d73ce9c699def0e945f621404ad78"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="242537234acde02a82c3e0b13acf0ceb"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="fa35fa772ec5e6c27a721ae71488eba6"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="397a2572dc020fa98d2fc52bb6c3ba25"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="4b3344ee91888c116fbb05df3f743dab"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="bf85e39c873e7f47070cebd282965880"/><file name="mysql4-upgrade-0.8.12-1.4.0.0.0.php" hash="7db1053c6b940c31ca04253304fb583e"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="1d89e03b4a9452ecac62638926388965"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="fb79239b32733acf9d47c5d38656a142"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="fa3157d925f2dd083a54fb9d2d93056d"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="d04a40d512daa5765c79a5d806989e21"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="ce346c10bfbb74911271dbc399a2ce87"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="6f85596ad890aee2ac21c554c10dbe79"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="19d5e2ca97a0fa45edaf3c7a4fdf504d"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="ed869dfb8ec0a553e53693b918655d2c"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="48d15c0e5dbce10f1eae1a00e2246447"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="1ea1c94cf59c590614a53e0b3953621f"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="fb920363e06d9a3b8888473bb7a6b814"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="7217a9684a01517c8b7899c7639774a8"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="9bf57d951a5bec7a6e73832319ac2b7b"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="98c4195b96b01a92ec34c5fd1851b869"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="09de856cb89075ccd4d9b11f21ae34f1"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="7e5670a3c3c7d5fae2915d246e8eba34"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="61cc3c06b2e9ef9d27febe9c5b9ba277"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="934e684035a9403e2e1a09e6bec1b7c9"/><file name="mysql4-upgrade-1.6.0.0-1.6.1.0.php" hash="6f98825f05484a48b88bdd001105adb8"/><file name="upgrade-1.6.1.0-1.6.2.0.php" hash="7058337b86d5b3d870127f17c73bb152"/><file name="upgrade-1.6.2.0-1.6.2.0.1.php" hash="9087387cfc49db846e2612ab87c23df0"/></dir></dir></dir><dir name="Dataflow"><dir name="Helper"><file name="Data.php" hash="259a792c5405d14db08f5a46ef75d960"/></dir><dir name="Model"><dir name="Batch"><file name="Abstract.php" hash="64ddfc79a192b200760ea91c1fc3e6e5"/><file name="Export.php" hash="b1822934448d0d7b2401ff4313a676be"/><file name="Import.php" hash="fcc25c9ec5021ba3d006ec749aa078c6"/><file name="Io.php" hash="0ab36a1709cf5c2c1044643303a4e9f2"/></dir><file name="Batch.php" hash="b42ce4f80440fb4bb104e02bdc1a7a3d"/><dir name="Convert"><dir name="Action"><file name="Abstract.php" hash="d4d7dbf29e102dcdc19a63a89562e22b"/><file name="Interface.php" hash="695c5c769b2671b3e920d1d6e33949c6"/></dir><file name="Action.php" hash="29381a3662e746d4f21bccbdc72635b9"/><dir name="Adapter"><file name="Abstract.php" hash="45524f707729397c3d834e32770add52"/><dir name="Db"><file name="Table.php" hash="fb13e59cea109d0e57596aaf82416100"/></dir><dir name="Http"><file name="Curl.php" hash="cedf5c46d84ae5dd7d7cc8243ff87871"/></dir><file name="Http.php" hash="87a5c93e400c210d7bb3350f263d2a80"/><file name="Interface.php" hash="d030a0ffa9c504653d683c16034489b0"/><file name="Io.php" hash="441cf0e0df3f16e4b9413d811aea65fc"/><file name="Soap.php" hash="281382ba7bb499f8b6fbcf19fbab393d"/><file name="Std.php" hash="1fd60065cdff980190ed583d00a95938"/><dir name="Zend"><file name="Cache.php" hash="f275aaacec8f9f662b0a66545a4521c4"/><file name="Db.php" hash="ea996aa5e12b29ad27f2d8705e7a3013"/></dir></dir><dir name="Container"><file name="Abstract.php" hash="da9c7333f37be4c6aa2377eeeabe18f0"/><file name="Collection.php" hash="786d91b06fdec504e43e8aa8bee5d79c"/><file name="Generic.php" hash="207f5e2f959328fcacaf8404b791f589"/><file name="Interface.php" hash="6bd934f86e2cd74ab0f23102dd4aca32"/></dir><file name="Exception.php" hash="3ddf0c80a81234db185a6e8e43cb9555"/><dir name="Iterator"><dir name="File"><file name="Csv.php" hash="cb0b11ba8458624c7897e3195c81cb92"/></dir><file name="Http.php" hash="0b14ee48f276ca948a6cdf6e44efde9d"/><file name="Interface.php" hash="86a525f54228e550a9d09dabe0274a23"/></dir><file name="Iterator.php" hash="d2a22e289f614ffd6784ceadf59b1223"/><dir name="Mapper"><file name="Abstract.php" hash="e3c2ed05040fb0134b3adfcfe575ffba"/><file name="Column.php" hash="f1dc5ab0e3d559d7f109e6107af536bd"/><file name="Interface.php" hash="d924ed14063a1414a93ebe5661b61773"/></dir><dir name="Parser"><file name="Abstract.php" hash="1258902a603b87dd941ae646ddf39d46"/><file name="Csv.php" hash="37ef37a17f0c95de9999ce115854a48f"/><file name="Interface.php" hash="66bc02844abb8451eda7fef6d2825d52"/><file name="Serialize.php" hash="44daf34c6659149e533583da7e387414"/><dir name="Xml"><file name="Excel.php" hash="c6d66357e9ada6c67f8771637df2fd75"/></dir></dir><dir name="Profile"><file name="Abstract.php" hash="f68043073444f16d52bf6471b07e786a"/><file name="Collection.php" hash="fb6d52d730f3ea0a110859fd9cf12450"/><file name="Interface.php" hash="f01a36ec3b430860f1259a33ed9d0f1a"/></dir><file name="Profile.php" hash="5ea39e739acdcabb79e5ad5f835e12b9"/><dir name="Validator"><file name="Abstract.php" hash="9c83f722b01f1650b7b59079b54407d3"/><file name="Column.php" hash="def61f298dcc8ecc8cf7b74e82a44ee0"/><file name="Dryrun.php" hash="82bcfb3ee632c75331d85bc6c181f165"/><file name="Interface.php" hash="ef45dea87c48e2453039df41bd0b456f"/></dir></dir><file name="Convert.php" hash="cb3c1e606b746c59059fea6ff648c496"/><file name="Import.php" hash="d55933d6c174e517cf2e7b048199f238"/><dir name="Mysql4"><dir name="Batch"><file name="Abstract.php" hash="89f37f1a01e2c84ef12815ce3e361d33"/><file name="Collection.php" hash="d934775510832d88659b60be7a0486b7"/><file name="Export.php" hash="a7139b7dd1c02253a647d2bfc5ba5b1c"/><file name="Import.php" hash="a80c44303c5199b2aee830c964cb1cfe"/></dir><file name="Batch.php" hash="decb2f4dbf688e3e16d97305480de798"/><file name="Catalogold.php" hash="5130649f4ee1d3e3492c593c5e80cc50"/><dir name="Import"><file name="Collection.php" hash="ffd25ba59dd204d6dba46f35c0ff3d93"/></dir><file name="Import.php" hash="ced0f1499e7678641f82fd8c201a836b"/><dir name="Profile"><file name="Collection.php" hash="bbc3f7bcc2725ebde4cfcaf3035e256c"/><dir name="History"><file name="Collection.php" hash="d13d613ebb06bb148581b84083ec1ada"/></dir><file name="History.php" hash="db5a40e6770085136389953290cc786f"/></dir><file name="Profile.php" hash="1451956c3b5be94b9a8e8a4efb55cd32"/><file name="Session.php" hash="d346f944f3fb78ce88af566d71610fd5"/></dir><dir name="Profile"><file name="History.php" hash="96da955702716e2aa62f6698281dda29"/></dir><file name="Profile.php" hash="8596df177083b3a7075845cade6e661c"/><dir name="Resource"><dir name="Batch"><file name="Abstract.php" hash="842089dba596465433692811340178f3"/><file name="Collection.php" hash="60baf9d53706c22e8b9f49a5354a6e7b"/><file name="Export.php" hash="279531049905987d466c2d2016b25c6a"/><file name="Import.php" hash="7477aa06f7576db05b11ed0e3f02cdc3"/></dir><file name="Batch.php" hash="ea75d15ff688b148475e61ee90217a2c"/><dir name="Import"><file name="Collection.php" hash="d8244613ae3a7e864361c22cc4e3bbea"/></dir><file name="Import.php" hash="838d72c6f48918a4dcc7c31e834e352e"/><dir name="Profile"><file name="Collection.php" hash="fcedad3ae47400894b4f74ef7a62f51c"/><dir name="History"><file name="Collection.php" hash="d1026a253df730b615c7f9bfb0f533cf"/></dir><file name="History.php" hash="5cd60afb4a1b39eb1db71d639b70fae1"/></dir><file name="Profile.php" hash="c5cb1cd0e94922e6d62c315f3e5d191e"/><file name="Session.php" hash="b28dcbab2acdba5f22677f5aaee0d02b"/></dir><dir name="Session"><dir name="Adapter"><file name="Http.php" hash="738151ca364160f43b0abbed60a93a58"/></dir><dir name="Parser"><file name="Csv.php" hash="731463d50cbbeda640a9ba92fff5e1fc"/></dir></dir><file name="Session.php" hash="0447782b1e838a04630a0ecc62ae0a1c"/></dir><dir name="data"><dir name="dataflow_setup"><file name="data-install-1.6.0.0.php" hash="188899f153c2da346858b02afdd87f7b"/></dir></dir><dir name="etc"><file name="config.xml" hash="5334c398aeabb4680a83b58a44a370fd"/></dir><dir name="sql"><dir name="dataflow_setup"><file name="install-1.6.0.0.php" hash="5b9ff18abe30e6545e7011c50fd890f3"/><file name="mysql4-install-0.7.0.php" hash="23fb19ea985ee2e6034c0200d6238cdb"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="7e3fe91e971357c131e3b3d802c6bbbc"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="2a179134fbe24b9a3dd7a120655519b5"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="9818b3acaf9d9aeafe3ad6a770e17091"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="a80f42367b7786bdb3e93c5d7dce4d5e"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="bd130bd1de8c8dbe65cf6b46abf632a0"/></dir></dir></dir><dir name="Directory"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Currency"><file name="Base.php" hash="74a1248c898f0c13f29399edc4bcecf3"/></dir><dir name="Region"><file name="Updater.php" hash="5e1e11dd08c9d0a8cdd51438d894f4e6"/></dir></dir></dir><file name="Currency.php" hash="d99cb2e31840ca09759c8a2e0627af12"/><file name="Data.php" hash="3c35fcad2c306f49fb670adddfd0075b"/></dir><file name="Exception.php" hash="ef2497b7d151d153ad2356647640bab8"/><dir name="Helper"><file name="Data.php" hash="41ba650002d06330ebb962fc5aef4137"/><file name="Url.php" hash="477b8a290f2bb20086bc497cb9543274"/></dir><dir name="Model"><dir name="Country"><dir name="Api"><file name="V2.php" hash="5bb1df2f4c20b614586dcf9321bda85a"/></dir><file name="Api.php" hash="8268e2f7e8fcf78f2a308d8a435cf4e0"/><file name="Format.php" hash="7dafb6cc9cb0e1a84bf48f90c5e569d2"/></dir><file name="Country.php" hash="5fe92f89eb9559fe205836a59e16dc8f"/><dir name="Currency"><file name="Filter.php" hash="a11e3d96d50099bd18b296d8edd06783"/><dir name="Import"><file name="Abstract.php" hash="1f3b1e89455710dcccbf1c3c515efc8f"/><file name="Webservicex.php" hash="9fe20549449c01fafb91411cb6685132"/></dir></dir><file name="Currency.php" hash="a303cf84bb197b9fb15777c4bef0bd76"/><dir name="Mysql4"><dir name="Country"><file name="Collection.php" hash="3678c928f4e6e2db3a022ae541602617"/><dir name="Format"><file name="Collection.php" hash="01130dd862479752171878045bc7d1de"/></dir><file name="Format.php" hash="7fe95b624d35a7ec631eec90d45761d4"/></dir><file name="Country.php" hash="044b01f1a44898e43ac9fd9dd850f55a"/><dir name="Currency"><file name="Collection.php" hash="68bc49e5761f5dfc24c2951315a86bc8"/></dir><file name="Currency.php" hash="a80838f497ae54ae30d901772077e382"/><dir name="Region"><file name="Collection.php" hash="b6c33573748d5a75a7a279f0d147672b"/></dir><file name="Region.php" hash="3d9ddf73e10911523e264b761d0d1ed2"/></dir><file name="Observer.php" hash="d10346719072c51163bbad1eede93cd1"/><dir name="Region"><dir name="Api"><file name="V2.php" hash="01c72cb96c1b320ab29158f7349f1d89"/></dir><file name="Api.php" hash="ffe97b9610625e51203728c973ba8a88"/></dir><file name="Region.php" hash="e5ba6bc5a5b77b80c96306b1e9c566bd"/><dir name="Resource"><dir name="Country"><file name="Collection.php" hash="9619621bdf87e3acc5edf43d8deec02e"/><dir name="Format"><file name="Collection.php" hash="c9b5b28ce01bf11414f0333aa57f1c35"/></dir><file name="Format.php" hash="005b22f77dc01d31c121799891419dab"/></dir><file name="Country.php" hash="08b9f9af7e229ed7665bd28c1b77cf85"/><dir name="Currency"><file name="Collection.php" hash="8a607d6dab4fd08cd17e69cea54236ba"/></dir><file name="Currency.php" hash="95335b04f7dec59ad817b8952fae27c9"/><dir name="Region"><file name="Collection.php" hash="d8da013147cc43427c802e7d049609e1"/></dir><file name="Region.php" hash="92bed0b708c6249017f86525494f4039"/></dir></dir><dir name="controllers"><file name="CurrencyController.php" hash="f4415343212db40c49818bdb1c612d19"/></dir><dir name="data"><dir name="directory_setup"><file name="data-install-1.6.0.0.php" hash="f1886f45db34340c754ca56a4b1f4679"/><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="93506e2eb3a1182a670dd52b0e9a0b6c"/></dir></dir><dir name="etc"><file name="api.xml" hash="9ef9a4efe511f18f13cd55587946b800"/><file name="config.xml" hash="3667a9816f7dec21f509df37ff72dfe6"/><file name="system.xml" hash="15c0c34ce192a93d1d03a79cc36c69ac"/><file name="wsdl.xml" hash="cc488b81c0eae648a0ee360d6e2d9960"/><file name="wsi.xml" hash="66de37cc17e24c0c66f74c52e2df616e"/></dir><dir name="sql"><dir name="directory_setup"><file name="install-1.6.0.0.php" hash="8c6bc03af28eda85325dff02003fb5f3"/><file name="mysql4-install-0.7.0.php" hash="ed50be9e75d556d170b8f2f09640978b"/><file name="mysql4-install-0.8.0.php" hash="399d0a2488c0eb8b58879d340881c955"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="b9da92711013bee71ea3903f3d3984e1"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="a3f8d64514bbc7d9dd617d1721e3a904"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="4e98bb31849dc2e67a3d361f1d121cb5"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="593283bf4e347158ac4e940390b7968b"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="159885c2425fab133dd8033a60dcc421"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="7d63b63307c5e050cd6208d024dc2fd6"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="489f4e6a094f18e6f1e51e624bc429ef"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="f2958472269e7225f1554f33a5cd1084"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="50e58b50ae9f7bbe81a789909d50c0cf"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="fa1fb2a5e486f45abc3caf99e01d051f"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="67ae150e24711a363e4f802cfdcab2ce"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="cd974a40b3769c6e4a2dc64f7b2c79fd"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="047293510f7756891f773f8271542878"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="b0027aabf8f79431380f56cfb1e7d049"/></dir></dir></dir><dir name="Downloadable"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Downloadable.php" hash="56048c6405b753a5ed8a4450239f3d35"/></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Downloadable"><file name="Links.php" hash="9f554198b3c283ca37d26a7a8df4ce9b"/><file name="Samples.php" hash="c2f9d18218b2bee921e7b0a41f7467a7"/></dir><file name="Downloadable.php" hash="cf02a0b372642c06f0db94ccb0c0a8aa"/></dir></dir></dir></dir><dir name="Sales"><dir name="Items"><dir name="Column"><dir name="Downloadable"><file name="Name.php" hash="631d0dad25f0889e4b9011a92aef5b52"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Links.php" hash="8cad977cc94a67f990c89220fd6d670f"/><file name="Samples.php" hash="40477373d28bc238933e1638dad97da9"/><dir name="View"><file name="Type.php" hash="e2656d3fc71b842c0bd8ed04411c6f3c"/></dir></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="0b6c8e3bb7b1aaae227f55de8dd93faf"/></dir></dir><file name="Success.php" hash="739d1970dc3a9a94006406349309941f"/></dir><dir name="Customer"><dir name="Products"><file name="List.php" hash="f833ec6d4ce5a6f0260aeb115ed0c0b4"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Email"><dir name="Items"><file name="Downloadable.php" hash="554501ff67ed8ed7291e28caa08da260"/><dir name="Order"><file name="Downloadable.php" hash="725579d5c167ed8c0e01acbcd7842d05"/></dir></dir></dir><dir name="Item"><dir name="Renderer"><file name="Downloadable.php" hash="46a83ad2244b67674930de212d236c87"/></dir></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="68a5d89f4ebe3ff62ec7be374f48d9c9"/></dir></dir><file name="Data.php" hash="3db0da8c0d7c7fc48b3a54a8bc22760c"/><file name="Download.php" hash="67ba7f30b230fc82af1786fb359f7677"/><file name="File.php" hash="b0715c4767757372bd6e7f915b618648"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Downloadable.php" hash="09a673044b89f5c816c25e5cb2803b4d"/></dir></dir><dir name="Link"><dir name="Api"><file name="Uploader.php" hash="6cbaded6a2f4cd27e42c6a790186b79b"/><file name="V2.php" hash="ff22bc424e07ab5a283b9c5b06fad769"/><file name="Validator.php" hash="42339725fa8533f38b813d840211c0f6"/></dir><file name="Api.php" hash="01ddcd07ac16689604d49952502ff1f6"/><dir name="Purchased"><file name="Item.php" hash="02b25c44d44cadaaf63ef7ca7a667e03"/></dir><file name="Purchased.php" hash="e96f9c8caf0dd6e4896be9ca2b018f9e"/></dir><file name="Link.php" hash="493570d026df79c36495a4a839e2fa5e"/><dir name="Mysql4"><dir name="Indexer"><file name="Price.php" hash="e70fea9d5dce07fc5a1baf59976b13d7"/></dir><dir name="Link"><file name="Collection.php" hash="ed388d81f37e7f4048a8670fb0802845"/><dir name="Purchased"><file name="Collection.php" hash="c63f844fb9eb98fd1b9712bbe6620e68"/><dir name="Item"><file name="Collection.php" hash="e1a5c3db39f3a62f3945419bfd97dd46"/></dir><file name="Item.php" hash="b1dfd82a3be85a40e62a589a6d0f787c"/></dir><file name="Purchased.php" hash="d7d3b5ccca9a1f83d91c6d1217e305b1"/></dir><file name="Link.php" hash="85f792faa63fecab11f056b7dd56846c"/><dir name="Sample"><file name="Collection.php" hash="6fb7b3d8071cd2acee58d473e9ecd81c"/></dir><file name="Sample.php" hash="4e6bc8f05d2378616fc50fefebf87fd0"/></dir><file name="Observer.php" hash="a5b27045f263a30907db84c7566aa982"/><dir name="Product"><file name="Price.php" hash="c7fe7b1ad1375b52976b1a2b6deed954"/><file name="Type.php" hash="8b51b53f739ff7557bbc2e12c75e34b3"/></dir><dir name="Resource"><dir name="Indexer"><file name="Price.php" hash="dc636ded79cb2b64f004a833e2d9e688"/></dir><dir name="Link"><file name="Collection.php" hash="bf5ab213289fb937c00d363cd5eea038"/><dir name="Purchased"><file name="Collection.php" hash="73c14f8a473be61b4b281764644d8d96"/><dir name="Item"><file name="Collection.php" hash="1e8315a45d92b0d6ee087b41ada05a38"/></dir><file name="Item.php" hash="6da8c82b61ac6d6e09d8600d465c0fdd"/></dir><file name="Purchased.php" hash="8e7c708e3d8e9996182f2978b43a7581"/></dir><file name="Link.php" hash="456aeeba9906f495acb1117796cfba85"/><dir name="Sample"><file name="Collection.php" hash="71e0730649537c9ca3eb210bd19db073"/></dir><file name="Sample.php" hash="c6696e3e93bcc22b0e1ec1ac98aa0e38"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="77a6f2c8935c30f93b7ad0aa00ebdc8d"/><file name="Creditmemo.php" hash="fba6f8632fc601eb6841442cf1b93aa6"/><file name="Invoice.php" hash="59a257200ae36df44aa46e176f5abd64"/></dir></dir></dir></dir><file name="Sample.php" hash="d340260de97c0cfd977b32e4330be09f"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Contentdisposition.php" hash="d29af9831b28fd2e20e8c4c465bd6c84"/><file name="Orderitemstatus.php" hash="37c2103e088685ec169504ec1a51a87f"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Downloadable"><file name="FileController.php" hash="c8ced5512fd8e085929bf11e767ba736"/><dir name="Product"><file name="EditController.php" hash="5c2c152ead853deef4a24eeafe1772d2"/></dir></dir></dir><file name="CustomerController.php" hash="d6a9f90c22c222ae0badbedd0a843df4"/><file name="DownloadController.php" hash="398d0817301c16a13b4e0dfc847f33fd"/><file name="FileController.php" hash="b9fbe0fae5fb06626d8700d6322bb604"/><dir name="Product"><file name="EditController.php" hash="49f8699747f28c55c1dcb01a2a807142"/></dir></dir><dir name="data"><dir name="downloadable_setup"><file name="data-install-1.6.0.0.php" hash="cc19b745fd1ca5846fdd1845db3f2b33"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="62dc67fa5dde2cf3480fb480f419791e"/><file name="api.xml" hash="31aa15ebff558a27276adebda78aa4f6"/><file name="config.xml" hash="c4094254b3ab1e661dc121c3a63351e1"/><file name="system.xml" hash="04a379e73be393404caeff0548a72492"/><file name="wsdl.xml" hash="b3935ff3bf7e2ca40ddd304b4c78577f"/><file name="wsi.xml" hash="7eef36b29c2abf88596e63b6a042626d"/></dir><dir name="sql"><dir name="downloadable_setup"><file name="install-1.6.0.0.php" hash="dd3932165f04268824806f38d7b2184d"/><file name="mysql4-install-0.1.0.php" hash="9ec3f78c3b899bf38a87c7b600388bbf"/><file name="mysql4-install-1.4.0.0.php" hash="c6a05dc34cd65269f93966f106d55c7f"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="fc35aa0594643f2ea8a826fdbe53fc99"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="00463b0e35a08195365c44374e113dc8"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="92eceee70258db89037fb3de6f94fcd3"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="313c2be94837d1720a2f606718242889"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="9973dfbe948c32176c1177c95708eec1"/><file name="mysql4-upgrade-0.1.13-0.1.14.php" hash="f40cfded04cc448de605487d74821d02"/><file name="mysql4-upgrade-0.1.14-0.1.15.php" hash="80ae98a19e5e2a4a6755aaf37929058b"/><file name="mysql4-upgrade-0.1.15-0.1.16.php" hash="e36602bde8f3edcae6f983b1894e1598"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="a56bb38d41a70e852a7e7728682b73af"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="75251e6d97f6b5abcf5bf4df490d3a76"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="0ce9071a1722c2691e70be0ea43f3ac5"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="3bc604d7aad2fbde67d5d2008ac753c4"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="eaf25d3d9016c6e24cb3fd0d2d447764"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="32adf1130ccfad45087bf22ff9c3bf34"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="042e46edd31f51fabc98255fbcf65e4f"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="4754842f62bd3b605c43ca5d8167be34"/><file name="mysql4-upgrade-1.3.9-1.4.0.0.php" hash="444633e679726aa5fe7c5f7987e85941"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="d39db486159a5fc6aee288ef69e9e471"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="020ca7d6aa8a27dc86ef2151da389cae"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="a07a6f06c29182423b38e6fae6e8c883"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="2b9b23d89169a018c3eca46569b5d8fb"/><file name="mysql4-upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="22cf68574711222ccec98ba2fdc65c9f"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="dab960d025344aa7711419feb7e313ca"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="01dfa0c38ef8e6080f9e7d913e1106d9"/></dir></dir></dir><dir name="Eav"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><dir name="Edit"><file name="Js.php" hash="f457e60f94ee02b9e975b8863c8694a1"/><dir name="Main"><file name="Abstract.php" hash="19906c471026a2090144eb3fc6b5e674"/></dir><dir name="Options"><file name="Abstract.php" hash="0b005df36317e0f375aab120b321c1db"/></dir></dir><dir name="Grid"><file name="Abstract.php" hash="5a8bd794730e36249a4e94aae6dd42d8"/></dir></dir></dir></dir><file name="Exception.php" hash="b315f66cbda34e7ad70cb88bdb4c5054"/><dir name="Helper"><file name="Data.php" hash="075918100a9d904713683e29f52da66e"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Inputtype"><file name="Validator.php" hash="730e7490775279cac979a48f6bfa5175"/></dir><file name="Inputtype.php" hash="fc4dac046de09426b93ed421365aa0b7"/></dir></dir></dir></dir><dir name="Attribute"><dir name="Data"><file name="Abstract.php" hash="f761ffead2da8c7de9ad7aa8c79c3e7c"/><file name="Boolean.php" hash="e04b9efd1fa23305222933077c98b025"/><file name="Date.php" hash="8663a6210243d530eb77abe7665c1a3a"/><file name="File.php" hash="b036d7a410d217dd3efd9e60a3102aef"/><file name="Hidden.php" hash="12594a5b58cf9bb00b0765eb15685154"/><file name="Image.php" hash="3b59455130af820b1ed3f804aecb103d"/><file name="Multiline.php" hash="7b6932bd1130a5f63706b1e5dc317e75"/><file name="Multiselect.php" hash="2e3dcea1b97fc135d8d5547882efcbee"/><file name="Select.php" hash="0bdc4de57bc49af6e263695a8ff28232"/><file name="Text.php" hash="12ce66e6f35ef6b7655ef5dee05b6a5b"/><file name="Textarea.php" hash="2d4f82e73a0423617a7ddd3fc3111077"/></dir><file name="Data.php" hash="448572d70c4fcfc360d720e61814db24"/></dir><file name="Attribute.php" hash="f7ce82fc96be2072d78f1e5a3c743e1f"/><file name="Config.php" hash="70e96fb0ee6be35111ae133113583e19"/><dir name="Convert"><dir name="Adapter"><file name="Entity.php" hash="e219aae212f039b965bd5a18e3e61a85"/><file name="Grid.php" hash="d06ab1e664312bfa20f0372d7e7b5505"/></dir><dir name="Parser"><file name="Abstract.php" hash="3f5ad6204bd3f78f2b05fe5a0b1621d0"/></dir></dir><dir name="Entity"><file name="Abstract.php" hash="7e82128e971ccf72a9dcd149fd03f248"/><dir name="Attribute"><file name="Abstract.php" hash="2a5972b6b840fc240afbd24dbf8b9171"/><dir name="Backend"><file name="Abstract.php" hash="1dd29ec35638794dd8f9dbfe2efde022"/><file name="Array.php" hash="0167f53479794300ee94e591bce7ad10"/><file name="Datetime.php" hash="647b118e215ae7aed1899ef0db478787"/><file name="Default.php" hash="a206c8a0e2b4964bdd0bf2fa524ccd08"/><file name="Increment.php" hash="553bc73ac454e34494e30b724eca1f18"/><file name="Interface.php" hash="959f844d352eb90589bf0c873596f229"/><file name="Serialized.php" hash="79914b2c4aa1bb4571be62fe8692670d"/><file name="Store.php" hash="60829f69ff0bd50b622b219ea3ee8c08"/><dir name="Time"><file name="Created.php" hash="899f061567109f68141d244f10829ffa"/><file name="Updated.php" hash="ecb7535cfbfd268980dad0bc78419033"/></dir></dir><file name="Exception.php" hash="109776ef681e6490fc7b1b0a80e70617"/><dir name="Frontend"><file name="Abstract.php" hash="8e4e5ce460d6feffa3460c4dcebab790"/><file name="Datetime.php" hash="7ca628888ba5c844c05bcbde5feab18c"/><file name="Default.php" hash="200a0a8dbc71393ec4f49d9eda35aded"/><file name="Interface.php" hash="12deef42ecf038e870f8571c1a556ddf"/></dir><file name="Group.php" hash="ce61e64e2228b88f8f34c5dd45814e28"/><file name="Interface.php" hash="1bc811e0e9f72eefc00095f70d9ecee8"/><file name="Option.php" hash="d6a2466e265da54f75859eaf624f65a8"/><file name="Set.php" hash="840447bca8ae2315139b5c1215ee67d1"/><dir name="Source"><file name="Abstract.php" hash="d526464e1b1e49e141f02fa6547438f1"/><file name="Boolean.php" hash="920691162ac07f144a6b66a8446b37cb"/><file name="Config.php" hash="2b5feac7e0ad93c972ebad38fdff37f1"/><file name="Interface.php" hash="0cba44ed52166d30377e70d0d72ba415"/><file name="Store.php" hash="b2c0b54184dd1c70efcdcf5c79ee2563"/><file name="Table.php" hash="d24bf47d09d43ab28921519a1ea6f518"/></dir></dir><file name="Attribute.php" hash="ae7ec4019b997124fd910385864e427c"/><dir name="Collection"><file name="Abstract.php" hash="7a736ae713602ade253fde0c87250e5f"/></dir><file name="Collection.php" hash="6a4ef68ba1088e5c68cb80c2cdc14486"/><dir name="Increment"><file name="Abstract.php" hash="00b9ebf65a2b786c02894dc1c6ee7cfb"/><file name="Alphanum.php" hash="165e94df5052985607067367d624b913"/><file name="Interface.php" hash="51953d48b53f0c476b9d943f4ded4311"/><file name="Numeric.php" hash="67ead2b8125511b2e2c0c25cfe51e094"/></dir><file name="Interface.php" hash="8a4149b8db9ddec6f948f1ca4a1ae925"/><file name="Setup.php" hash="86f6091d66a69b2f1b3ef7c9701f2378"/><file name="Store.php" hash="7bc38a3a6ebb70651c69e6fba667b6b4"/><file name="Type.php" hash="962e4978dcf13fb5588d52163c5c25cd"/></dir><file name="Entity.php" hash="cbb456ebd5ed9430902bcf570c6aeb75"/><dir name="Form"><file name="Element.php" hash="a5a283f40c05249de18ae906408100e8"/><file name="Fieldset.php" hash="7d520966cfea99c90b45cb1b8052d914"/><file name="Type.php" hash="841e5544956983cb522f09ac7c0ff004"/></dir><file name="Form.php" hash="261e84f1b596accc4a431014704babcd"/><dir name="Mysql4"><file name="Config.php" hash="1c34fb876ff5e9b410da16bf220f30b2"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="2cfbb7639f5f82e4ae35ef3011b6fec3"/><dir name="Group"><file name="Collection.php" hash="285f4f80a0fceebf3b386252fea97566"/></dir><file name="Group.php" hash="7fd4d7a0f17945bfb6225072907cfd56"/><dir name="Option"><file name="Collection.php" hash="dc1650591631ca8eaae3dc1cc17d75b1"/></dir><file name="Option.php" hash="02d7909c21916e01493ee27557de0a0d"/><dir name="Set"><file name="Collection.php" hash="d8079d950a852324f0a446e74af55586"/></dir><file name="Set.php" hash="fea6b1418747ebf752f663663e192bc5"/></dir><file name="Attribute.php" hash="f278c0f8bdae9e4b614fa12f43f20c8e"/><file name="Store.php" hash="d00ea349b75294cdcd6ea223cefed406"/><dir name="Type"><file name="Collection.php" hash="b84f8f73720813dc817304888cb7a224"/></dir><file name="Type.php" hash="3960ed877c080d372af080ebc3fd32a0"/></dir><dir name="Form"><dir name="Element"><file name="Collection.php" hash="be93f8fa6518210feb97c5a16905f4e4"/></dir><file name="Element.php" hash="a55d66feca6a7ff3f1a5ec05084bede8"/><dir name="Fieldset"><file name="Collection.php" hash="a15bc9158693a98f097464c16c330be8"/></dir><file name="Fieldset.php" hash="12a161e7793a0f71d9d8a3af80219333"/><dir name="Type"><file name="Collection.php" hash="149db32da9f9e59d7db8de50e1ff7aee"/></dir><file name="Type.php" hash="6bcfecbbcd5875d55886f7179750f45b"/></dir></dir><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="d548b4b22a8b7734001b217d2ac6bafa"/></dir><file name="Attribute.php" hash="29c9d33bb98ff174d997f7cde569d0dd"/><file name="Config.php" hash="6616ac230b0b24b247b536366c7c99dc"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="3b7a049d01602b34fdb4fd806f494592"/><dir name="Group"><file name="Collection.php" hash="f97ed7a48942621f209c89a2d54a6a92"/></dir><file name="Group.php" hash="cd471de7411d0146a22c816f314d18b9"/><dir name="Option"><file name="Collection.php" hash="646546b56b58021e8a83ee1894803a38"/></dir><file name="Option.php" hash="04d094d5251ca0d36766688a05b40090"/><dir name="Set"><file name="Collection.php" hash="f38a8635900cc75cb525e3ae4b098ed9"/></dir><file name="Set.php" hash="b6c898b81f6f3cca06c60549000addbb"/></dir><file name="Attribute.php" hash="786889141b09a3793e7b3a58710524ba"/><file name="Store.php" hash="71901408b8e8538f54ef506de56a6846"/><dir name="Type"><file name="Collection.php" hash="57543b49cc8b07b313ba3901d985e672"/></dir><file name="Type.php" hash="0b70ca17c14211141cb283ac9626ae95"/></dir><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="0d4670abc14ee105f6fe12acbb5d29d8"/></dir><file name="Attribute.php" hash="e56c983585529b34c50573958d300ad2"/><dir name="Element"><file name="Collection.php" hash="47ae251bafc18344912d19ea352471eb"/></dir><file name="Element.php" hash="65c8bad698f5860417b0e81205949748"/><dir name="Fieldset"><file name="Collection.php" hash="b08b56506fd41acf167fc2ddd3fe05e4"/></dir><file name="Fieldset.php" hash="abf6b758b533ac9bbe8809402678ae88"/><dir name="Type"><file name="Collection.php" hash="5b631eb6132190118cb44de6bc1609db"/></dir><file name="Type.php" hash="af2a7d07a062c749cbc546a0a76d41f8"/></dir><dir name="Helper"><file name="Mysql4.php" hash="e6e4dcbbc8f247e4ef82f7ab0ef61fc2"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="6413dc227f9faf33e086910add0453c9"/></dir><dir name="sql"><dir name="eav_setup"><file name="install-1.6.0.0.php" hash="722926d2660111dd94355636a36b19dc"/><file name="mysql4-install-0.7.0.php" hash="4df8a8073cb0f3fb5d322a950cdd284c"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="84a05c7fdad52125ae49584bd8698c77"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="7b50d00e28b7b97197590364a9b47939"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="9eacb76babaf5066ef26e62438b435e0"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="52968b7cf7440b04c84aabe8dc042dc8"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="690f6be2bd4c1e9cb8e5ac821bdb58e5"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="696becebfcae35fdb583176cbb3aa5b7"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="bc8cc3c0697aa80da6af36efa1705982"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="96b55ff5d6899c5a6098861549cd9fc5"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="947143da56d560ecf3cafed7a884bf3d"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="0108ad00b1ddd76a9fb618f87f0dc596"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="a619ebd3dd726c2e16aee3624fa9303f"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="31528c89c2e75d2cdc5ebbc24b27638f"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="49a7eadc1efc6776947e2f9c5330c609"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="8b2016d873951011a506574dd8c2069b"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="ac862453c43d2d5f39c4b2b6c08933b4"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="31a29aa3f4e35ee52dd41a59abd102cf"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="da9679e35075468c74ebb0d71bb9863e"/></dir></dir></dir><dir name="GiftMessage"><dir name="Block"><dir name="Adminhtml"><dir name="Product"><dir name="Helper"><dir name="Form"><file name="Config.php" hash="5154b566d39a8b8b66e4bbb2d74ed14a"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Create"><file name="Form.php" hash="f9134019901e885b76514522ce21dde3"/><file name="Giftoptions.php" hash="f5c6a2820117f726f585af764ca07d44"/><file name="Items.php" hash="83ca720b431c3062b0768003d8ea4c9d"/></dir><dir name="View"><file name="Form.php" hash="52f202d2761d1237eff3af6f991ff7d5"/><file name="Giftoptions.php" hash="ab816b14b752866ed87474dd97d0f001"/><file name="Items.php" hash="f00a95f8c5831965bfe985bafc23a765"/></dir></dir></dir></dir><dir name="Message"><file name="Form.php" hash="e834e55df7be429d3fc2bfbd33649fcc"/><file name="Helper.php" hash="17113b7d2c06836a0d7fbe332c0a9cdf"/><file name="Inline.php" hash="4cad19274992d35f56fd8853007c6057"/></dir></dir><dir name="Helper"><file name="Data.php" hash="10ea94d0fd115b84e1158363fabb19ce"/><file name="Message.php" hash="d00da539a70fc191d09b38d601e81936"/><file name="Url.php" hash="157327457578fbb008b7abab95343763"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="a61c6376783dfdf1abb3687a4e242f1f"/></dir><file name="Api.php" hash="a58bbd8c921f9e43d73d14ab1b520d69"/><dir name="Entity"><dir name="Attribute"><dir name="Backend"><dir name="Boolean"><file name="Config.php" hash="78b92c2ee79783edfb27eaf067f983b9"/></dir></dir><dir name="Source"><dir name="Boolean"><file name="Config.php" hash="c112c974d52be347caf451b98508ffbc"/></dir></dir></dir></dir><file name="Message.php" hash="e56b021a943585fc34d56c4dc499eac5"/><dir name="Mysql4"><dir name="Message"><file name="Collection.php" hash="7af855f6eb09aeb51e2f8485ed262e52"/></dir><file name="Message.php" hash="ce592a39ed831acef5a21f9ec5166887"/><file name="Setup.php" hash="af4e3c623f91b0496e01fbc33b9a7fd3"/></dir><file name="Observer.php" hash="97580af238dd48f3ba681026e635c7c0"/><dir name="Resource"><dir name="Message"><file name="Collection.php" hash="97e656c306a76e7975a54fc965ac6bad"/></dir><file name="Message.php" hash="a0aaf8a407021ac7593b80afe80004c9"/><file name="Setup.php" hash="2f8354e96e353bf9811a98023e53c893"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="8b6a4caf7e95c1017bbe2babb7f50053"/></dir><dir name="etc"><file name="api.xml" hash="36c28578c5618fd1ff2e5a7f68c61c48"/><file name="config.xml" hash="ba1469847e914feaff2d0f1778b17fe1"/><file name="system.xml" hash="fc97ba6f2ebb21bc927e98845e8244e7"/><file name="wsdl.xml" hash="b99aaaac0126c6e09a7ba59fa4dbcf30"/><file name="wsi.xml" hash="ab77c7cfecb0f5d6cb7b07c0b5abc1d1"/></dir><dir name="sql"><dir name="giftmessage_setup"><file name="install-1.6.0.0.php" hash="0e2f5aa1f4ba2e33b8c8715211176ebc"/><file name="mysql4-install-0.7.0.php" hash="6f12a8246561c48cbf648ebfa29095e4"/><file name="mysql4-upgrade-0.1.3-0.7.0.php" hash="7b67a418ddd0516bc1b4f2c4f60b572b"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ffb5dab99967e503df966c977f7ccdee"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="6f8374db50c8e44ba020b053a9fb60b1"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="43a0e4f63716325c6657ca2741aec7be"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="0f02ea8f5dc80a02898a1838c923b4ba"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="220e7e8b4f5f5579aa47a30ebdb513ce"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="76476e2d699147577f5ef1814dc545e9"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="15f637bef487dfb8d721b3876dd4c009"/></dir></dir></dir><dir name="GoogleAnalytics"><dir name="Block"><file name="Ga.php" hash="5d93fb6466c6af1dd3eaac55e2d599cd"/></dir><dir name="Helper"><file name="Data.php" hash="ff423a7475e04fdffd0629c23bf0b9a1"/></dir><dir name="Model"><file name="Observer.php" hash="8b6821d360de67a8e295e23a0e44fb92"/></dir><dir name="etc"><file name="adminhtml.xml" hash="69ed770c2fc7b0d635b21f7d958a984c"/><file name="config.xml" hash="c678ddb9dcc8eb73979ee547176e116a"/><file name="system.xml" hash="50b874a48cc9ff707f1a8daa7e61187e"/></dir></dir><dir name="GoogleBase"><dir name="Block"><dir name="Adminhtml"><file name="Captcha.php" hash="8682ccc3103b836998a7241f5fba30be"/><dir name="Items"><file name="Item.php" hash="1db0f4101516299c156c5ae14dc725b8"/><file name="Product.php" hash="2182974183272530220793a5267cfb48"/><dir name="Renderer"><file name="Id.php" hash="4f6e201557fb675c2240486dc0357155"/></dir></dir><file name="Items.php" hash="4fef58288faca1a13f0e6291f98c8ff4"/><dir name="Store"><file name="Switcher.php" hash="4a2b1ab425d771b3f76ca1fc6011998f"/></dir><dir name="Types"><dir name="Edit"><file name="Attributes.php" hash="94a71b2f95a64d7dc11eb0175902daff"/><file name="Form.php" hash="2d7859e927bed715efdd1125be8ec359"/></dir><file name="Edit.php" hash="d74ba5629db21fa0be1335df693968da"/><file name="Grid.php" hash="6eb8a911bde03fee523f385b205da8cc"/><dir name="Renderer"><file name="Country.php" hash="c8dfe1aa9238fbf6fd708f044bc44760"/></dir></dir><file name="Types.php" hash="2685598f1e23c5a9946275a72d102628"/></dir></dir><dir name="Helper"><file name="Data.php" hash="37bc0f3d3b507481bf47be2a1548a77d"/></dir><dir name="Model"><file name="Attribute.php" hash="f28c15e411ac56c05ab5b2844839386e"/><file name="Config.php" hash="5e38d64b721425eafe089baf330b7230"/><file name="Item.php" hash="6558e08513fcda8e5360f8c4bd7bedb1"/><dir name="Mysql4"><dir name="Attribute"><file name="Collection.php" hash="7ed9d6b40f1fb1ab39fbe95262a9b6a7"/></dir><file name="Attribute.php" hash="c57a4307ee3edee9629289af5eed8e8a"/><dir name="Item"><file name="Collection.php" hash="ed09226cab8be78b7f5edf7787b19e10"/></dir><file name="Item.php" hash="1b3ab207714a84ba3b232e27520b4738"/><dir name="Type"><file name="Collection.php" hash="77d186c2270e0d4c6024c1de69e9793d"/></dir><file name="Type.php" hash="1c453e60ee22d7022d17eed543d645e0"/></dir><file name="Observer.php" hash="7e4cda4054813b0398673903e64a9b84"/><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="430e3049879d3c5212d840db25d1a414"/></dir><file name="Attribute.php" hash="1fb20f68d026ce9502f674eb7de85c34"/><dir name="Item"><file name="Collection.php" hash="3578a58b5942fffdb501237c128d1ccd"/></dir><file name="Item.php" hash="2b7185855bef14468e1c62220dc7ac9a"/><dir name="Type"><file name="Collection.php" hash="c0c19c5666e38638a80db13a5c312e8e"/></dir><file name="Type.php" hash="4e7c84fbf3bc054aa38263809ad62d26"/></dir><dir name="Service"><file name="Feed.php" hash="668bc5ea76b9f58930fffa049bde72ff"/><file name="Item.php" hash="ff57993f48e2145e9314a40d979f2ca7"/></dir><file name="Service.php" hash="eb5ce9a566827db732816dd3af6c8d7a"/><dir name="Source"><file name="Accounttype.php" hash="4fbcee03563066ef967481394eb2d415"/><file name="Authtype.php" hash="7a80fb028498c241230486632b5e79d5"/><file name="Country.php" hash="0c9c1c4bf86da3f6d78510d03ea71bd0"/><file name="Statuses.php" hash="b27dccdad552134bc712dc8c26c3caa1"/></dir><file name="Type.php" hash="eac85d258879244350685a1139188a5b"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Googlebase"><file name="ItemsController.php" hash="62442cd56438ece5a5915104fcf9713a"/><file name="SelectionController.php" hash="0eec3d0849636a677c9b18290e06aace"/><file name="TypesController.php" hash="8fc3a555455b1e2d768d6778c835510c"/></dir></dir><file name="ItemsController.php" hash="9f5fbb29417fca7a0c649d7141a93bff"/><file name="SelectionController.php" hash="d78c2cfd03d384249e58197b0dcc076c"/><file name="TypesController.php" hash="0b4b89d65d62abec49e622ef6e91967a"/></dir><dir name="etc"><file name="adminhtml.xml" hash="dc0f3288bb3fdba3a85e93ef25cf100d"/><file name="config.xml" hash="97ffddb040128046426286ef15fb32b2"/><file name="system.xml" hash="98e285efce9e1e40269937abb2fe2bfb"/></dir><dir name="sql"><dir name="googlebase_setup"><file name="install-1.6.0.0.php" hash="76ff642d3c525b649e36652a3932e69e"/><file name="mysql4-install-0.1.0.php" hash="67ebd661333e7e0e7517f1de4259394f"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="a24aac91bb23ff34f64ab513634b35fa"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="c121e57b3309a6a54600a34a1e3bae58"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="a678083e8be2fc92fcbb54e6d007b4f1"/></dir></dir></dir><dir name="GoogleCheckout"><dir name="Block"><dir name="Adminhtml"><dir name="Shipping"><dir name="Applicable"><file name="Countries.php" hash="aaaceb1f2572493b09c8a318e02e646d"/></dir><file name="Merchant.php" hash="4d94263d1a7d35744e015df1763dae3f"/></dir></dir><file name="Form.php" hash="47bfd0a612181b0b1b424505f74ca17d"/><file name="Link.php" hash="6377f5ca8f9fab062beeb599da52bc69"/><file name="Redirect.php" hash="3d78040e1e2305416d02662473592a47"/></dir><file name="Exception.php" hash="12645fc358c3beee8508c8da32da2570"/><dir name="Helper"><file name="Data.php" hash="94e204c83ac65084beb4cf541ba8f1b2"/></dir><dir name="Model"><dir name="Api"><file name="Debug.php" hash="7ad134e81c717a0f0e2e0e127bc78188"/><dir name="Xml"><file name="Abstract.php" hash="77ffc2761b72d955496ea712270b0ac0"/><file name="Calculate.php" hash="8a8422528f6e9216e1bb19144b6657b8"/><file name="Callback.php" hash="aa5795f89b4ee14c3591e79f88b217dd"/><file name="Checkout.php" hash="faf3733d5344d06f488a8e4a258ae944"/><file name="Order.php" hash="dfa01ee7af21c408e529c62458aea075"/></dir></dir><file name="Api.php" hash="ee8d41d87cc19af5a1ea38892191f272"/><dir name="Mysql4"><dir name="Api"><dir name="Debug"><file name="Collection.php" hash="e9ac5113f7316d077748a4c7de190705"/></dir><file name="Debug.php" hash="c6d2f59af6640ab44061c2c9c19acc1e"/></dir><file name="Notification.php" hash="748e31215bb070f23720737e1c852c51"/><file name="Setup.php" hash="7b80793bbf63d8fc704f4c60bd9889f2"/><file name="Tax.php" hash="318773b94eaff0004a464cc7ab2b348c"/></dir><file name="Notification.php" hash="b0190f3ffdb439f0e094ca7b11a5fc59"/><file name="Observer.php" hash="bf545e62e0b1f0906d21d6589cd01f4f"/><file name="Payment.php" hash="5a43a8f2d3a0d55858e301124e85a466"/><dir name="Resource"><dir name="Api"><dir name="Debug"><file name="Collection.php" hash="0a414c6c120cec48119ad95c6517c725"/></dir><file name="Debug.php" hash="1feec84555a75dda22bac3bf044176e0"/></dir><file name="Notification.php" hash="1c608204202937fcf2ceda0b4b11e36a"/><file name="Setup.php" hash="048380820676704e22056aad6897e046"/><file name="Tax.php" hash="ca3231c9d5316350a1d9b271c76dca9c"/></dir><file name="Shipping.php" hash="2800f37ec1a1039bf387b1b4e122fd9d"/><dir name="Source"><dir name="Checkout"><file name="Image.php" hash="01cf2e4310c2a43db6090e0c778a8007"/></dir><file name="Locale.php" hash="f35b68ecf8f8f92b80667a5a76602e02"/><dir name="Shipping"><file name="Carrier.php" hash="64134777cad033cd032cb7e33cde8699"/><file name="Category.php" hash="cf4392f82e27105468bdcf9db7abc7ee"/><file name="Units.php" hash="876086262c96ab035d705bc076873f0b"/><dir name="Virtual"><file name="Method.php" hash="cae76c1e5b387915069e48ed62dc7e60"/><file name="Schedule.php" hash="ab0d7346284e82b7781ce5afb68ae203"/></dir></dir></dir></dir><dir name="controllers"><file name="ApiController.php" hash="499182ad3fc6e45ddbaa1fe0eb77dac7"/><file name="RedirectController.php" hash="7a09827a26b3d8e64873f6689b81b71c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0a1368ba81853204c9e645854c1bf8d0"/><file name="config.xml" hash="f4a66774eaa3a67acfe15142f56399ce"/><file name="system.xml" hash="72ef0388e35dc5fc9761323464674ffc"/><file name="wsdl.xml" hash="6afabc0271d6e7e1fd11b3d4ee76aa86"/><file name="wsi.xml" hash="7d4dabc90cbde5a078f6beeaac4df3ab"/></dir><dir name="sql"><dir name="googlecheckout_setup"><file name="install-1.6.0.0.php" hash="6a2b19a79d8136c490536db5e4ca50f6"/><file name="mysql4-install-0.7.0.php" hash="9016b3872f45e3f8b939582eeda3819d"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="8630998c9add4fbb80a726e2f01821e6"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="3ba5674828acbd64df145188e1685620"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="6d428a3e4d2433ca33b67fecd5fba589"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="45f1f0143eda4e9fca77db4f0310a869"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="3c0408832de58dbbe4518d2a27222005"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="cd1d9c3f1000413320009b1e243bf022"/></dir></dir></dir><dir name="ImportExport"><dir name="Block"><dir name="Adminhtml"><dir name="Export"><dir name="Edit"><file name="Form.php" hash="044a5091847ff88113bfc14eb291736d"/></dir><file name="Edit.php" hash="6000346af673a3dc03b94047d0091d40"/><file name="Filter.php" hash="bcecc3b7ed252b74ee14717b845381b0"/></dir><dir name="Import"><dir name="Edit"><file name="Form.php" hash="a691467afb66a2ec6ac732a0b3dbcf52"/></dir><file name="Edit.php" hash="1dcb58a59c2e6f7d282b0a592fd9bf11"/><dir name="Frame"><file name="Result.php" hash="89c77b70f033ff095a8f984b8e4ced44"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="8f09e33bec64a1b119caec88cafe18f0"/></dir><dir name="Model"><file name="Abstract.php" hash="d5f0f4463f4e157ef32c3ae05deb92c6"/><file name="Config.php" hash="9d0aa6473cbd0a376c30f7173d2db893"/><dir name="Export"><dir name="Adapter"><file name="Abstract.php" hash="c52b0c25ae08a5a6a2fff3d50fd31c7c"/><file name="Csv.php" hash="9fffa9a662cfb8c5591fe2ee33a0216c"/></dir><dir name="Entity"><file name="Abstract.php" hash="83972b491f9d5d6d73df6ad82afa5017"/><file name="Customer.php" hash="b79c2f4552c7dfb4850058ce99c9eed9"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="08f8ec9c1f06362cbe0359d203002cee"/><file name="Configurable.php" hash="9470234c88c6e09cd77296bfc4e0ec3b"/><file name="Grouped.php" hash="a4dc0208be09a70d5dba8e3e113e0301"/><file name="Simple.php" hash="99a50d1c7bb8c81a73c302240449eba2"/></dir></dir><file name="Product.php" hash="8a88364a5c2f2545c92f90565c54447d"/></dir></dir><file name="Export.php" hash="0a99a3a9d0090dac4d11e2eb44e866e4"/><dir name="Import"><dir name="Adapter"><file name="Abstract.php" hash="743c741be31f72b82dbf19431ed691f1"/><file name="Csv.php" hash="79b1504a20d7dc6a1cdbc5ceaa3d488d"/></dir><file name="Adapter.php" hash="d0557d6fc38d8f50200e970c2eac8c5f"/><dir name="Entity"><file name="Abstract.php" hash="70b8d803edd704db584ed18876036a00"/><dir name="Customer"><file name="Address.php" hash="4de8585dc71c320a72537ad7e5caa798"/></dir><file name="Customer.php" hash="97bb6433ed690811a060628ba99a36e1"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="e2c6fe1cadad24216229b9aa91eaaaa7"/><file name="Configurable.php" hash="617d688a2896cb2e39115c22b13a3eb1"/><file name="Grouped.php" hash="bff023120645d196b18139cb95f07766"/><file name="Simple.php" hash="96d2b2f68921bd7597d121bb130e2eae"/></dir></dir><file name="Product.php" hash="5a8aa5f6e5cf528a83ef52ea186217b4"/></dir><dir name="Proxy"><dir name="Product"><file name="Resource.php" hash="f735ffe6d134d54f25155705cbdbdf1e"/></dir><file name="Product.php" hash="6208c1322e913f447c89fefa4e012cec"/></dir><file name="Uploader.php" hash="65b730cd34f10a85c54f062458801840"/></dir><file name="Import.php" hash="7e57b5a94cc2701c29b270271c3b70c4"/><dir name="Mysql4"><dir name="Import"><file name="Data.php" hash="237ca44ca4cce71b49cd61d6f334491d"/></dir><file name="Setup.php" hash="52281bf41ba4a69095d9cb9f9a53bcb0"/></dir><dir name="Resource"><dir name="Helper"><file name="Mysql4.php" hash="90214e61b3612e8935564d8f5e77be73"/></dir><dir name="Import"><file name="Data.php" hash="baf57a0d82660927b3f2baa1af4118b7"/></dir><file name="Setup.php" hash="d851639cb270a181b3f3340c15956c66"/></dir><dir name="Source"><dir name="Export"><file name="Entity.php" hash="9fb2a165ddddafb76deb528c0523122d"/><file name="Format.php" hash="259f53545b6ad2d6d664a66ac257d2eb"/></dir><dir name="Import"><file name="Behavior.php" hash="7866e4c0aa7b55a8afa14fc55b340856"/><file name="Entity.php" hash="4ade6b27b7e591e647568e2ab3077d2e"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ExportController.php" hash="a7285e9269c04ed986733be0a3991932"/><file name="ImportController.php" hash="2ab653d6f5a8c089478e136a3541036c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ed3f9a05e489fc35c6eb20e75f2c3b61"/><file name="config.xml" hash="fee2173d83695fb2daf530c7a5026e1e"/></dir><dir name="sql"><dir name="importexport_setup"><file name="install-1.6.0.0.php" hash="f9af354b3768846ed0b3036d5ad1f3bb"/><file name="mysql4-install-0.1.0.php" hash="2b6c85563059ea3e0cc5f2c5eb957bfd"/><file name="mysql4-upgrade-1.6.0.1-1.6.0.2.php" hash="768741d0d65ade275895bc5dc385823f"/></dir></dir></dir><dir name="Index"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="43912789bde66e17a1b7bc1cd4385681"/><dir name="Process"><dir name="Edit"><file name="Form.php" hash="9427ff942210a522f3102b6ee9071e23"/><dir name="Tab"><file name="Main.php" hash="2c8e83f292f63cbd042408ce09101111"/></dir><file name="Tabs.php" hash="0af6de0b8d10f008ce37144adbf047dc"/></dir><file name="Edit.php" hash="98f597a28e32b1ef2fd7ad641c5a880a"/><dir name="Grid"><file name="Massaction.php" hash="0096139d042d07df69e9905b7dfc9f22"/></dir><file name="Grid.php" hash="d63038dc20ab7b99943c533b6b5e256d"/></dir><file name="Process.php" hash="fde9d1d568ae6270367fad2526f8c845"/></dir></dir><dir name="Helper"><file name="Data.php" hash="ea285c4e6a82fad043f55155765eb1db"/></dir><dir name="Model"><file name="Event.php" hash="df0277bba24466008ce9d55d3024e7c8"/><dir name="Indexer"><file name="Abstract.php" hash="96de557cdfb60df764910fd330e30f0c"/></dir><file name="Indexer.php" hash="66f3d10cb64c6f4cb746db3a7d13dd18"/><dir name="Mysql4"><file name="Abstract.php" hash="74a294c15f2c71a85183f10cc79e0199"/><dir name="Event"><file name="Collection.php" hash="c1626454d7a045c26955fc1d40760c7c"/></dir><file name="Event.php" hash="ca5a35cdf8a30f362c69911541656dfd"/><dir name="Process"><file name="Collection.php" hash="08585394301d861a8bc4e35a27301246"/></dir><file name="Process.php" hash="740b0924742ca7f8c93d5f314ba77f1a"/><file name="Setup.php" hash="a68d4fe052a5513d2a10612f226dbbc4"/></dir><file name="Observer.php" hash="0ddc0b88e5813159c40369f400adbfd9"/><file name="Process.php" hash="a41957608d30749d69505da3b148ede1"/><dir name="Resource"><file name="Abstract.php" hash="48e4c1f1c9a326c038b992870a13f607"/><dir name="Event"><file name="Collection.php" hash="5e94602d433476dfedf566af70c8378a"/></dir><file name="Event.php" hash="8d69545a18b22a4dd344ce7c413b5c26"/><dir name="Helper"><file name="Mysql4.php" hash="ce1abbf6d49aa26de331ab2f162fe58c"/></dir><dir name="Process"><file name="Collection.php" hash="d135a5211cc9e2bd3baa4a1d739e68d8"/></dir><file name="Process.php" hash="32e4a123fb0f4c8c724a1db090e4d856"/><file name="Setup.php" hash="206d6f01211f23b1076301da1ff87bd5"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ProcessController.php" hash="497bfc42e20ca5b468095f9233a6a90e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4554200958b4e08ce9f6e7ebe7c3e797"/><file name="config.xml" hash="98f6107c39a54c80182ec34a17c2c3e0"/></dir><dir name="sql"><dir name="index_setup"><file name="install-1.6.0.0.php" hash="6a55254dbc1e15fce20aa8d9299473b0"/><file name="mysql4-install-1.4.0.0.php" hash="02a9ad57bbc0cfd8399025609aa9e90a"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="2d415a612659ebd01bf71625796c6791"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="0764a02e2b162da84109a234c5aebe9a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="482bc7e47d9c7acca2874cc6cc1ba768"/></dir></dir></dir><dir name="Install"><dir name="Block"><file name="Abstract.php" hash="1e64935d4ba5ae7e2b1f237ac8256664"/><file name="Admin.php" hash="e92d1c62df1c893d308b62e56526ab12"/><file name="Begin.php" hash="66a5a5999c1f4b4d7bf659ae44e1a6fe"/><file name="Config.php" hash="1c94a443f96842ee6a9cde98dc106640"/><dir name="Db"><file name="Main.php" hash="55833d9880a27b229baad555cb1d6542"/><dir name="Type"><file name="Mysql4.php" hash="d7a5104699596fa3628bf91206d0c54c"/></dir><file name="Type.php" hash="e88d00b635a87841798981c10f87d6ff"/></dir><file name="Download.php" hash="aefe9d6a57e105170a17871e2ec50e92"/><file name="End.php" hash="84d8f96b1ce81461a1b066352bfd9071"/><file name="Locale.php" hash="cd46dc4a542e1e2a72b2bf099e791d25"/><file name="State.php" hash="94f80a5f510a38063df5b8ad8186f987"/></dir><dir name="Controller"><file name="Action.php" hash="c72273f1eb4757e0120f65ce4e7ca6e6"/></dir><dir name="Helper"><file name="Data.php" hash="5ee9b710d92bf949ff8e0059182f0006"/></dir><dir name="Model"><file name="Config.php" hash="20c5ef6ac57ca18cfb0be3efa9f35306"/><dir name="Installer"><file name="Abstract.php" hash="6132014cf5b233c65f2d718dd6829999"/><file name="Config.php" hash="fddec22489419ba27787af26591d2987"/><file name="Console.php" hash="83f06ea2b334c3ce2893c09e4e55f600"/><file name="Data.php" hash="b46310efc2ec403ff5f774d6cd1cc8d1"/><dir name="Db"><file name="Abstract.php" hash="54f36437d4b29a2a4658678f8bdf4e92"/><file name="Mysql4.php" hash="02aaeb1c9fde849155d3a2c6f8ee3e6e"/></dir><file name="Db.php" hash="b44cc214032ae3f4252e8db576e0b141"/><file name="Env.php" hash="ca42febaa49e79e3af5e1e4ae46aa012"/><file name="Filesystem.php" hash="56862f3501e34c4b8d59efd4fbcbbae5"/><file name="Pear.php" hash="23cb0735b5f333308b70fd6b98ebd66d"/></dir><file name="Installer.php" hash="7ad221f07aecbbc117b449a8d5a6e565"/><file name="Observer.php" hash="6de94e8c691643fea7d54f502d391eae"/><file name="Session.php" hash="5fece489b4dd1f8a53537565c57b1f17"/><file name="Wizard.php" hash="c9e88af935ec2ccc5a536cf65ff2c0c5"/></dir><dir name="controllers"><file name="IndexController.php" hash="c04a06284dad0db733c537a9ad3c009b"/><file name="WizardController.php" hash="07bdc05d834c39e32b7f37571c227809"/></dir><dir name="etc"><file name="config.xml" hash="76107f4b8e638987e89001250de7f554"/><file name="install.xml" hash="6435247d406795b23c565325e2dd823e"/></dir></dir><dir name="Log"><dir name="Helper"><file name="Data.php" hash="16bbd45c918767c573d50b4bae8448f7"/></dir><dir name="Model"><file name="Aggregation.php" hash="7aac64f627713f8de899f5fe9a55d411"/><file name="Cron.php" hash="681fa4cc9ca1be0efbc92ff5c0939220"/><file name="Customer.php" hash="34cb260e6bb4ab80cd6c7e170b6b560d"/><file name="Log.php" hash="46b689b078265ecbdbdd32f318e183a6"/><dir name="Mysql4"><file name="Aggregation.php" hash="ff242fb22be21a25b20ec40ece874489"/><file name="Customer.php" hash="089a168ebfbe0528cb7d95b370951980"/><file name="Log.php" hash="5926ea8fbd0df9fbfcbb76b9ee077e02"/><dir name="Visitor"><file name="Collection.php" hash="cba4182810c6a2a913546dc3736d4c18"/><dir name="Online"><file name="Collection.php" hash="f1111eae57b7dfba9cec9bba5a89055c"/></dir><file name="Online.php" hash="62fdfc474d3ae78a049b9de75add3c53"/></dir><file name="Visitor.php" hash="bff575ed4d99a336e2bbc9cc751439d5"/></dir><dir name="Resource"><file name="Aggregation.php" hash="1b6e3bd6fe2081f628dfae7386ad9378"/><file name="Customer.php" hash="d0417639999cfa08bbb8d764d25f5e20"/><file name="Log.php" hash="f51fa2fdfcb8a5ddd1030d595113a369"/><dir name="Visitor"><file name="Collection.php" hash="d940ee8ed34cdca4b813671d4586a4d3"/><dir name="Online"><file name="Collection.php" hash="3bfc014e21fcbcc28ef3458070b2d1e7"/></dir><file name="Online.php" hash="122c4343f69193f02a5e6077054f82ad"/></dir><file name="Visitor.php" hash="948c287787bf6a1ce0d45c68187c9328"/></dir><dir name="Visitor"><file name="Online.php" hash="16a87f839ecb57a42b0cfeae7f8ff49f"/></dir><file name="Visitor.php" hash="20ac422f0beed7426029a100a5f76c34"/></dir><dir name="data"><dir name="log_setup"><file name="data-install-1.6.0.0.php" hash="938c2f0194a9ccbe7fa5436a7f1e9c2d"/></dir></dir><dir name="etc"><file name="config.xml" hash="04789314ca4b49adba44c518a3a8547c"/><file name="system.xml" hash="1b82fbdac240d1778b93ff08ec869b63"/></dir><dir name="sql"><dir name="log_setup"><file name="install-1.6.0.0.php" hash="ad7086a4a2931c08d5e0299f38732c41"/><file name="mysql4-install-0.7.0.php" hash="c81699081cbaa6212cfe5278887cb0ca"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="1dedd1478de74fb6f7ae52820772edec"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="dabd407157f2c7ec47186191fff12333"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="f5a8d49687906b9805b14aa940082c50"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="b72b50aa937bdcb4c6898be31bf959e6"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="299749f3d737dbe27ba47d78946fc59d"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="86a5f3d2f09a360380dd750881746b08"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e96587ee57c61761dff71071fe4f85c5"/></dir></dir></dir><dir name="Media"><dir name="Helper"><file name="Data.php" hash="55c474895b9156a445c077034374e9c7"/></dir><dir name="Model"><dir name="File"><file name="Image.php" hash="05c60856878b1c7d3b7b09529692ce06"/></dir><dir name="Image"><dir name="Config"><file name="Interface.php" hash="83e1e94a8d3d2c3163f868723e4b76e7"/></dir></dir><file name="Image.php" hash="e77a65f52e1bdb11512681fa849059b1"/></dir><dir name="etc"><file name="config.xml" hash="bdfee0bbf50c5194ddb3e8c9e7f24b4b"/></dir></dir><dir name="Newsletter"><dir name="Block"><file name="Subscribe.php" hash="9563160a20bab172dd1613b8abb6be27"/></dir><dir name="Helper"><file name="Data.php" hash="296a56cfe0b11b0156e620667224ecd5"/></dir><dir name="Model"><file name="Message.php" hash="d499e0cd74c67fd9b2a834219c27ee99"/><dir name="Mysql4"><dir name="Problem"><file name="Collection.php" hash="c20c4c2cc6b6227949c46d147e6d5a18"/></dir><file name="Problem.php" hash="a1a13d3d751565f9215fa80c8e4f555e"/><dir name="Queue"><file name="Collection.php" hash="1947dd0cb3cdb5b4a35edc28f6a0a626"/></dir><file name="Queue.php" hash="1711295945db1c2c46ac94cb5a12403a"/><dir name="Subscriber"><file name="Collection.php" hash="c0512d8c4388128a006a4b706c12b01c"/></dir><file name="Subscriber.php" hash="3812657d6fd62df901eb7784172e2083"/><dir name="Template"><file name="Collection.php" hash="70671613b6f599364225700d007eaf42"/></dir><file name="Template.php" hash="e65a682727d8ec47687e67d7249e7948"/></dir><file name="Observer.php" hash="ba109e1b6b4b01130509a8a04b16b2fb"/><file name="Problem.php" hash="0a42b8ee99842b3e6c993b47f9f7423e"/><file name="Queue.php" hash="517acdd5102a108eeaf10dec81a57bef"/><dir name="Resource"><dir name="Problem"><file name="Collection.php" hash="144c53e9311bae0e4aeb1fe281cc68d5"/></dir><file name="Problem.php" hash="cc33e6045a85d8ae47e9faa6a4fe0977"/><dir name="Queue"><file name="Collection.php" hash="76f76ea54b7e269650be6db266b3c623"/></dir><file name="Queue.php" hash="ce71fc4a6b48c9ab1d0947c1b0c17af0"/><dir name="Subscriber"><file name="Collection.php" hash="598b01fa44108191ffea49257d9b266a"/></dir><file name="Subscriber.php" hash="74287703f7160228f7e64f5445784fcf"/><dir name="Template"><file name="Collection.php" hash="9b9aab8ab8410a4abebc2381a98063ab"/></dir><file name="Template.php" hash="36e9b39955bb133819a34ae0bdbfbb57"/></dir><file name="Session.php" hash="241b4f6d9a2ca14edc98d4bfed463726"/><file name="Subscriber.php" hash="ab2f287a4f059475f90f1a682ffddbba"/><dir name="Template"><file name="Filter.php" hash="06a201b5e130675ec8a07ee9000b6ea7"/></dir><file name="Template.php" hash="dc1cc325ff7ca59f2d070f93ef8b63eb"/></dir><dir name="controllers"><file name="ManageController.php" hash="bc11b9df3f0920add1ff2c1c1dea259a"/><file name="SubscriberController.php" hash="a169ff102eff920651d29a5564ecb840"/></dir><dir name="data"><dir name="newsletter_setup"><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="f83c350f05655265c13cb5703b91357d"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="79cb31a448f8f373769e8fcc7ae3e8ed"/><file name="config.xml" hash="eebd2dd8765f2c0e791611a09219e854"/><file name="system.xml" hash="1d207a787b5562afb6ba18a7671bb436"/></dir><dir name="sql"><dir name="newsletter_setup"><file name="install-1.6.0.0.php" hash="85b702ed6bd50f4763ccd60c60991cf4"/><file name="mysql4-install-0.7.0.php" hash="3cb0ddfc02711a3f62c9ac0bcca08221"/><file name="mysql4-install-0.8.0.php" hash="98428900124f77412fa48f6d8a20b991"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ff142de39e7d63a27687399cf7526fb7"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="75087d621b612a229e494381959cfcc7"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="bda3c1330c52f64b5630ae411581e94a"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="80c61ce1d0f507aa18b9d8498b29c57a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="89ec8e6bc08eaca36799783da7f450fb"/></dir></dir></dir><dir name="Oauth"><dir name="Block"><dir name="Adminhtml"><dir name="Oauth"><dir name="Admin"><dir name="Token"><file name="Grid.php" hash="0bf2062dfe6603454869e71bb4b8b8b9"/></dir><file name="Token.php" hash="4a438333c12819f45eab63def9ff23d1"/></dir><dir name="Authorize"><file name="Button.php" hash="7b630e042c4e7e205ac8fd69ace8c79d"/></dir><file name="Authorize.php" hash="4b5ce2fa420fa6ff186661980b1ed211"/><dir name="AuthorizedTokens"><file name="Grid.php" hash="94672432992ecc5f4fc64f3d2e0e3cb8"/></dir><file name="AuthorizedTokens.php" hash="2c90706db7621ff6f1fbd6cd6331c5c3"/><dir name="Consumer"><dir name="Edit"><file name="Form.php" hash="b2aa8f29fbec1fb6dc16cc20597a6395"/></dir><file name="Edit.php" hash="a55be07f544fa40daf50ffe9270261e5"/><file name="Grid.php" hash="a50d9263f8d95a185d306e8725031fa5"/></dir><file name="Consumer.php" hash="c69b641dbafc6956cefd8f73af4c4a9e"/></dir></dir><dir name="Authorize"><file name="Abstract.php" hash="8d5f0b771fea99b3bc9e4286f383ae86"/><file name="Button.php" hash="4c8e49590b92f19275dbd98193542c72"/><file name="ButtonBaseAbstract.php" hash="fa18b41c456be94bcc2fa9a7e884c9cd"/></dir><file name="Authorize.php" hash="c3ba60a07f50d915afd1d0448cecd0bc"/><file name="AuthorizeBaseAbstract.php" hash="ee0fba802e9abeb38b74b5a7d1146c37"/><dir name="Customer"><dir name="Token"><file name="List.php" hash="8f252a3a5388091a8882e29804d5c3ff"/></dir></dir></dir><file name="Exception.php" hash="a142a848c9f573fd09aef6a25e914f88"/><dir name="Helper"><file name="Data.php" hash="d667c4106c09364affa04c3a01561428"/></dir><dir name="Model"><dir name="Consumer"><dir name="Validator"><file name="KeyLength.php" hash="a43f8d07b7c96ac19d263ca658f63ef7"/></dir></dir><file name="Consumer.php" hash="f6d199a4d7ecdab04c53af2971f73958"/><file name="Nonce.php" hash="3fe586e389e6fb320db545905bf69c0e"/><file name="Observer.php" hash="c453d757b96c2bcf3fa688996b1b46c0"/><dir name="Resource"><dir name="Consumer"><file name="Collection.php" hash="ab776abbce11023c9087936730370364"/></dir><file name="Consumer.php" hash="55fbb3f3fe43708677abb7bc70573c6c"/><dir name="Nonce"><file name="Collection.php" hash="aa9a6b9f1e4339d1d15d8ecf5af19332"/></dir><file name="Nonce.php" hash="8e0d07983e3a73ca12fc5e0cbc3c2f2f"/><file name="Setup.php" hash="aba55f0a8149e26bf9cb93627946cbaa"/><dir name="Token"><file name="Collection.php" hash="90ab10d8051dad65ef3c1e79a6d89041"/></dir><file name="Token.php" hash="ce45defd66a16c7dcdfc7213a07743bf"/></dir><file name="Server.php" hash="a139ee440683a4eb40b2f8da7c7a2b59"/><file name="Token.php" hash="b09d786b080033ae9132ce685c603808"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Oauth"><dir name="Admin"><file name="TokenController.php" hash="649d5c087cd7b86e8b283486022dd998"/></dir><file name="AuthorizeController.php" hash="59298640ec240e795e68effe0f698d27"/><file name="AuthorizedTokensController.php" hash="bfa8f6f69c436e84be49818adb396c02"/><file name="ConsumerController.php" hash="a7369fa6359bf46a864d7315d1c2bfc4"/></dir></dir><file name="AuthorizeController.php" hash="9137fb209874bfab78168ea4b97720b0"/><dir name="Customer"><file name="TokenController.php" hash="a980098ae0a4846480c6b04fbb026496"/></dir><file name="InitiateController.php" hash="e58a59e26ca19eb17ec7940aeb02609f"/><file name="TokenController.php" hash="53ae317fbacd491b615d0dce3faa933c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="676e9492ba1ffbc665e4302f41d0b6b7"/><file name="config.xml" hash="e871f29e82bb8287f25b2a10c34297cd"/><file name="system.xml" hash="ea08bc33ae40b562bba523e093661b20"/></dir><dir name="sql"><dir name="oauth_setup"><file name="install-1.0.0.0.php" hash="206e73751c828d991a2006a60192cd3e"/></dir></dir></dir><dir name="Page"><dir name="Block"><dir name="Html"><file name="Breadcrumbs.php" hash="472b18c2e1efce3e17078f0229e6b4f6"/><file name="Footer.php" hash="11b2854a149d689b00439e1d2754273d"/><file name="Head.php" hash="e0125d7393dc724c22932dda7f024085"/><file name="Header.php" hash="7cdf6b478657950cad703b42bb173976"/><file name="Notices.php" hash="515ab12f1963b34cc6ffc9e70db46fd2"/><file name="Pager.php" hash="c2776c8d77507f4a74161dd3234f8d45"/><file name="Toplinks.php" hash="c7d4607bffcc29ea2d6b2760dad16353"/><file name="Topmenu.php" hash="1218e00ae5ba73da2f42d1f8caec9629"/><file name="Welcome.php" hash="bf45f9025e397e9b5970b2695fd14331"/><file name="Wrapper.php" hash="cf82a41be5670090740b06b5a83a5ce9"/></dir><file name="Html.php" hash="ca4d7ca610c7c0bb13527aa4c34919d3"/><dir name="Js"><file name="Cookie.php" hash="971951999bbd122fd3edee842b7cb3a5"/><file name="Translate.php" hash="61b904aa0380a67e56f7205f11c3c057"/></dir><file name="Redirect.php" hash="abb910424df0910fa64513683f588119"/><file name="Switch.php" hash="d516efe0514ce0e85580fba3654995d6"/><dir name="Template"><file name="Container.php" hash="1bca53b823ab2037b6c0658886dcf6a8"/><dir name="Links"><file name="Block.php" hash="80682cb63bcb6e4fe72badf66c774eb7"/></dir><file name="Links.php" hash="069f09ca5ba041a7e73d965d349b1fc8"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c642420dc5f943afe8d013e6996d852b"/><file name="Html.php" hash="52d119ed1c3a46a7a268631cfb46658a"/><file name="Layout.php" hash="7409690f0d9a074dd34c7029285e420d"/></dir><dir name="Model"><file name="Config.php" hash="1b1e400ee9fdb0b0d2c39215c2d74952"/><dir name="Source"><file name="Layout.php" hash="6c8295694fa7698206c982ed4d0e147d"/></dir></dir><dir name="etc"><file name="config.xml" hash="1a4bec172059eb384103d072acd8adfc"/><file name="system.xml" hash="458ddead521196dc1d8088aebd9a6988"/></dir></dir><dir name="PageCache"><dir name="Block"><dir name="Adminhtml"><dir name="Cache"><file name="Additional.php" hash="e8daf2a79a846f5cca73efb9944b9391"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="35f5dab938f67faabbac507895bf5264"/></dir><dir name="Model"><dir name="Control"><file name="Interface.php" hash="045792bd92bbf0bb31cd29f846f9afef"/><file name="Zend.php" hash="1d54b817a1a62913950923ab3da495e5"/></dir><file name="Observer.php" hash="206b85cdfdcb5d92872b034ad569336a"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Controls.php" hash="d6d8556aa045f62d6fc5513a3cc1e8d6"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="PageCacheController.php" hash="2021a00e60beb5839031ceeb6a97c0dc"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d53fc13379c7eb962a17b0e001350ac4"/><file name="config.xml" hash="0a48635772ea8d225f9426c970f58132"/><file name="system.xml" hash="029ac90d04603eb121aab397f358fce3"/></dir></dir><dir name="Paygate"><dir name="Block"><dir name="Authorizenet"><dir name="Form"><file name="Cc.php" hash="1a99b0f06d7f02eb6a83373a39572c5a"/></dir><dir name="Info"><file name="Cc.php" hash="82a63ad26c54edb4282b47ecb2b5e6d4"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="4eaa41163c82e3a07b9082d07551d4e8"/></dir><dir name="Model"><dir name="Authorizenet"><file name="Cards.php" hash="ec7bf29531b26bb3abe1930bb6d6f14d"/><file name="Debug.php" hash="99c994cee36fefd7441c89348e71a34b"/><file name="Request.php" hash="a9d99bbb9acd1a24efeb132c1f90fa98"/><file name="Result.php" hash="f81acb4b45b21234bdd97b2a8ccceb8e"/><dir name="Source"><file name="Cctype.php" hash="485721b018fbf42bf2d986895b460623"/><file name="PaymentAction.php" hash="6dc68daaec83355738ceac05ee6e6543"/></dir></dir><file name="Authorizenet.php" hash="ebd4bc08e1cc9e8321ad561175a4cb38"/><dir name="Mysql4"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="a9ec3bc0e6e77b7227ac297737022496"/></dir><file name="Debug.php" hash="e399a6b44e7b91187264e3100cdc6a81"/></dir></dir><dir name="Resource"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="fbaaaa9acf131b5fe4dd659018f40fd1"/></dir><file name="Debug.php" hash="8b42a2035977c29b3f8055504e934ad3"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Paygate"><dir name="Authorizenet"><file name="PaymentController.php" hash="073d945d17b8b65699cc45d76cade52a"/></dir></dir></dir><dir name="Authorizenet"><file name="PaymentController.php" hash="ef8890e784b49bc7437a7234e636fb0c"/></dir></dir><dir name="etc"><file name="config.xml" hash="b70e5f90b67a1f92747a70098402f5cf"/><file name="system.xml" hash="e0067ce11e96c8508d99aae2d1c9f83b"/></dir><dir name="sql"><dir name="paygate_setup"><file name="install-1.6.0.0.php" hash="f22ceb117f5042ea82cbe287a5073b07"/><file name="mysql4-data-upgrade-0.7.0-0.7.1.php" hash="5544f6e157a90f9059e990790de69356"/><file name="mysql4-install-0.7.0.php" hash="970d13cc71f8def9c16677ee7c56f13d"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="53e58b91ac8c7939a93588e9932a1bc1"/></dir></dir></dir><dir name="Payment"><dir name="Block"><dir name="Catalog"><dir name="Product"><dir name="View"><file name="Profile.php" hash="9436c6e6d37731cc1920141e6c27c8a7"/></dir></dir></dir><dir name="Form"><file name="Banktransfer.php" hash="9f20487c061a99264743af3cbc2266ec"/><file name="Cashondelivery.php" hash="1d1143e48bf4e28bcbb5a6f84cc8972d"/><file name="Cc.php" hash="eb2b27286ac4a3a6dac413665e477e43"/><file name="Ccsave.php" hash="2ff6195d57d6e367153c3b74e497ddac"/><file name="Checkmo.php" hash="5c7e92c34c08af68c1dc897d31ca0d40"/><file name="Container.php" hash="1ccea430592b9454c0917c78ac91ffaf"/><file name="Purchaseorder.php" hash="90ca90541024272ab7a03855c44ccb22"/></dir><file name="Form.php" hash="01ea5d4e5e96319a2ab50433d599f345"/><dir name="Info"><file name="Banktransfer.php" hash="bdcef28d629fe0545063e006a172b089"/><file name="Cc.php" hash="e741644127955187feba4b6d820649a2"/><file name="Ccsave.php" hash="520feb9fc9568fd20b970c8333d7a179"/><file name="Checkmo.php" hash="f42384623045742619cf14260c768fda"/><file name="Container.php" hash="4135107c4c84e4aec1e6b474a616e118"/><file name="Purchaseorder.php" hash="7f92ac66a233d7be51e8d810bb2abca0"/></dir><file name="Info.php" hash="9ac340aa1800cbdc7e1cfdbebf6ce81a"/></dir><file name="Exception.php" hash="e632f226ac3dbb465ea27a8f4056f2f5"/><dir name="Helper"><file name="Data.php" hash="e3c220389e76e773289de02869908398"/></dir><dir name="Model"><dir name="Billing"><dir name="Agreement"><file name="MethodInterface.php" hash="89387636497ccb9e9bce392310a3ba09"/></dir><file name="AgreementAbstract.php" hash="e5cb49ba54f24888fe9cdcd18057f573"/></dir><file name="Config.php" hash="e2072dcddf83e03f78b1f41563d40d13"/><dir name="Info"><file name="Exception.php" hash="10e33f7489f2afc81567fd0e41db76ee"/></dir><file name="Info.php" hash="1583e28ed5104a7d04661297a090ffc4"/><dir name="Method"><file name="Abstract.php" hash="9352b10af707b07a5ff9b689890813fe"/><file name="Banktransfer.php" hash="874c0837a5c5a785678f48a6898a809d"/><file name="Cashondelivery.php" hash="da17e281fb800d646804a77a69a55ac2"/><file name="Cc.php" hash="7ac2fd28827102afad14322caca21da4"/><file name="Ccsave.php" hash="b5f55c77d70e96ebf264979d5db77af5"/><file name="Checkmo.php" hash="bec311bde28fa161586bdf15def4ba74"/><file name="Free.php" hash="992e5e5a38a087011ff757be10183b11"/><file name="Purchaseorder.php" hash="29c5338f4bbcfadd25f236c8bfe6046c"/></dir><file name="Observer.php" hash="070a154b4ddc572c9087b7359d31daca"/><dir name="Paygate"><file name="Request.php" hash="b4308bd428653b2607ca12715525973c"/><file name="Result.php" hash="02862193fba889b8e0de5d62ad3199e9"/></dir><dir name="Recurring"><dir name="Profile"><file name="MethodInterface.php" hash="857c4ebc288059e3235cded41cf1b89a"/></dir><file name="Profile.php" hash="9c4fa2eb7a91c475b21e0e281240848f"/></dir><dir name="Source"><file name="Cctype.php" hash="835751e6f769e2074e92916dfe28c08d"/><file name="Invoice.php" hash="03877797092339923baaacd8e103d82f"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="15b5591143d05d749a28f655ef2352bb"/><file name="config.xml" hash="9bc83e6f2c31b7ffdf9078e2117fda07"/><file name="system.xml" hash="b4d6b27feee93d6feaf05ed3bec41fa2"/></dir></dir><dir name="Paypal"><dir name="Block"><dir name="Adminhtml"><dir name="Settlement"><dir name="Details"><file name="Form.php" hash="834a85f286bdffb86f7143f960396176"/></dir><file name="Details.php" hash="6bbaf7a6de5afba0d8afb125468a0007"/><dir name="Report"><file name="Grid.php" hash="57326516fef5519d82f77b4c7bc8232a"/></dir><file name="Report.php" hash="e64375a1885ceea587e3c031550faaba"/></dir><dir name="System"><dir name="Config"><file name="ApiWizard.php" hash="02c2b3a4d16ed770bd25110ccb116579"/><dir name="Fieldset"><file name="Global.php" hash="9cc8ef44de927f0d321e3acdf12d9963"/><file name="Hint.php" hash="a23e22d6b86c0f2a2c076049a6217288"/><file name="Store.php" hash="c34eb36fb9c8294b0e1dd9d788433305"/></dir><dir name="Payflowlink"><file name="Advanced.php" hash="66c47b7006aec93d04ff9614d3f181ff"/><file name="Info.php" hash="f1dc0ace6fa1c0b0ff442c16b8f661f4"/></dir></dir></dir></dir><dir name="Express"><file name="Form.php" hash="4f34baafd7fa96dbede49c9dd7e3a314"/><dir name="Review"><file name="Billing.php" hash="e3a6b956ab1c8ca20b0900e8990d8751"/><file name="Details.php" hash="6af810d8f10f9739f8e7cc2abc0358b7"/><file name="Shipping.php" hash="97903a5628c5649da9027704208a6cec"/></dir><file name="Review.php" hash="6b0c0fc838fb3e21f1927b6d589f39cb"/><file name="Shortcut.php" hash="3600b88e975f5504d3cec9386f277a96"/></dir><dir name="Hosted"><dir name="Pro"><file name="Form.php" hash="ce858564fcd9897787bc37653b4888cb"/><file name="Iframe.php" hash="fc2d5870d207bb7205754298908c7a62"/><file name="Info.php" hash="c1aa1a0a39e0bebc0c2bac41f1761350"/></dir></dir><file name="Iframe.php" hash="2ce7b8a69fd4d89b847eed8178bfd9e1"/><file name="Logo.php" hash="672a6f777dcc1010d03bb3e26f8f2ad2"/><dir name="Payflow"><dir name="Advanced"><file name="Form.php" hash="927010606fe5fced1403d6ef58d3c270"/><file name="Iframe.php" hash="27d0fc56829f2c75b293df2e5e4650ab"/><file name="Info.php" hash="42d47a2b51ce4776f969ea5c72fd255e"/><file name="Review.php" hash="2714529f5662538bf847f0ed2e66bd41"/></dir><dir name="Link"><file name="Form.php" hash="f778d0aeee9c7b39931c0c135ae92003"/><file name="Iframe.php" hash="3c089c9890fc32657dc9fcaf126b9528"/><file name="Info.php" hash="420577d8a045b35691b7477915a147b3"/><file name="Review.php" hash="8f786f27ab15e61ddaaec8da98ac9c35"/></dir></dir><dir name="Payment"><file name="Info.php" hash="edf1baeafedfaea68696a7f662ea12ec"/></dir><dir name="Standard"><file name="Form.php" hash="e6bd8f76b93780f84d158613c5a1f3fe"/><file name="Redirect.php" hash="1615ee8b6c5d4c41f9eed1819ea37078"/></dir></dir><dir name="Controller"><dir name="Express"><file name="Abstract.php" hash="6907f1f3549442cb3bf638ac92adc300"/></dir></dir><file name="Exception.php" hash="f064680e44a8d137303062430a388493"/><dir name="Helper"><file name="Data.php" hash="5a5af4d631776f8227188cf2fdd2c2b2"/><file name="Hss.php" hash="1d6979d0bfc9001572798346939c38b1"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="c76fab7463b5e121ee9e1dc13d5f1ad9"/><file name="Nvp.php" hash="7655b8143c384af95a3f98dddb54f84a"/><file name="Standard.php" hash="78443c0ed3821e16cf146bcae3214aa7"/></dir><file name="Cart.php" hash="108a7292de820401e164bd94aae56305"/><file name="Cert.php" hash="399a4baefd14a6abd68d18169e8c0b02"/><file name="Config.php" hash="c1f04eab4178af5e9f42dca556c086bc"/><file name="Direct.php" hash="12a57331cadd9804377bf0175d80f9b8"/><dir name="Express"><file name="Checkout.php" hash="460fec8be683d9e5c2e859295ffb2e9f"/></dir><file name="Express.php" hash="103258ff8d5f94bf19ffdbc3a3562e76"/><dir name="Hostedpro"><file name="Request.php" hash="5927be4fb6b18be2780ada094120582f"/></dir><file name="Hostedpro.php" hash="b63fd29b9cfdc632f129961edc32517b"/><file name="Info.php" hash="ff802b4734daa0467e7da78db5118528"/><file name="Ipn.php" hash="dcb5d96011e850079b918a46cd5e0511"/><dir name="Method"><file name="Agreement.php" hash="026986f16e4523b01c726d70eeb62528"/></dir><dir name="Mysql4"><file name="Cert.php" hash="9c6e921398d1245cfc3340b04083052c"/><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="ecb2e8c17c810c4680652208f06cb346"/></dir><file name="Row.php" hash="c4130fbf1c94270f23bfa1433c5c3a54"/></dir><file name="Settlement.php" hash="82141afdd2c61014b045d128f1a065ac"/></dir><file name="Setup.php" hash="5dbbcae3d145dea397f258731175de06"/></dir><file name="Observer.php" hash="490a8a1b457fa97f38dd260fc5014c64"/><dir name="Payflow"><file name="Request.php" hash="39f2832eda4f104cc80781b4324f5276"/></dir><file name="Payflowadvanced.php" hash="630714a2dd19b9050a11500f393bb971"/><file name="Payflowlink.php" hash="d1672195cbd742eb8e868b8d4b17714d"/><file name="Payflowpro.php" hash="f6335eff155466c42578ae7d6ee51a17"/><dir name="Payment"><file name="Transaction.php" hash="73983d09effcf6feb2dc8e73d7e214d0"/></dir><file name="Pro.php" hash="0a16b57a5f93e5915600f8a52957883b"/><dir name="Report"><dir name="Settlement"><file name="Row.php" hash="836a4c797f2779e20e3c0b3c2c6488a8"/></dir><file name="Settlement.php" hash="25086ad2f65ba1100ef6c2e54e89c8b6"/></dir><dir name="Resource"><file name="Cert.php" hash="64f2ff21ad23f68923602d867be75f95"/><dir name="Payment"><dir name="Transaction"><file name="Collection.php" hash="cbf6b54fe1a27fcd7244c6812b7dfcc5"/></dir><file name="Transaction.php" hash="55ba2006e21cdbd346eac74fe9539d2b"/></dir><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="3ef66e51ca2d88e32414770668c95dc8"/></dir><file name="Row.php" hash="f390664275865b5e1968455eaaeb8ab7"/></dir><file name="Settlement.php" hash="ff995a3309786256c58012f9100f74f8"/></dir><file name="Setup.php" hash="7b15a771edebf6c6537cf178a666723b"/></dir><file name="Session.php" hash="917f91efbb68e339199bd0100a038223"/><file name="Standard.php" hash="32e67e33035f10d4024038e288e0bf43"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Cert.php" hash="da6a5e0a2617c4e6ef7c60313329c1c0"/><file name="Cron.php" hash="5a03e87d083d97f7847b110fdab2194d"/><file name="MerchantCountry.php" hash="277cb772d923a2030915ae89bf264422"/></dir><dir name="Source"><file name="AuthorizationAmounts.php" hash="87b53a506705aeebe9c4edc980b72339"/><file name="BuyerCountry.php" hash="0fd5b3193b83256163c229e0709ff93b"/><file name="FetchingSchedule.php" hash="9bdf4652d617dd72d83b53f583fc76aa"/><file name="Logo.php" hash="34a54b6e0d0be2510968e27f17bca9d9"/><file name="MerchantCountry.php" hash="13172a9b4519655886adedc5229b3ec9"/><dir name="PaymentActions"><file name="Express.php" hash="b9289ccb4a9ac3fdfc27dd03b5c9b0e3"/></dir><file name="PaymentActions.php" hash="a3698ca4375ec200f97ce374400759e6"/><file name="RequireBillingAddress.php" hash="cf2b85c0d79a3133fa65cba1480d6a64"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Paypal"><file name="ReportsController.php" hash="8746c8d9cbbbeb06f7dcd20e82d63312"/></dir></dir><file name="ExpressController.php" hash="6681168280fa5d994ce81c4ae1fa4915"/><file name="HostedproController.php" hash="bb6c463c16eef3cc8f1f007bc1196956"/><file name="IpnController.php" hash="44cbc268527b062c274a8c559ab83048"/><file name="PayflowController.php" hash="e6df0e3eda493a55a830692eaabc769d"/><file name="PayflowadvancedController.php" hash="713e8969bae3521d02305a68f8b9befc"/><file name="StandardController.php" hash="74fa22a2d82159ea3f788e2c2a609426"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8b894d93182a500e0505b0de6c775e0a"/><file name="config.xml" hash="10fe7c88ca81b8b3fcc09bcca3b41e72"/><file name="system.xml" hash="28113488e399f079a90b4ea06e2b4b31"/></dir><dir name="sql"><dir name="paypal_setup"><file name="install-1.6.0.0.php" hash="b2469041739bf8e14fd0966400a22c07"/><file name="mysql4-install-0.7.0.php" hash="25fcdc3e2c1c6269aaa418be249b2d9f"/><file name="mysql4-install-1.4.0.0.php" hash="f42c5ef6ac5567f2d1f6f4c15263ea74"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="d6a61cfed1b9816441d043dd880e8238"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="1716deec69cbf7fa949558a76fa43fd1"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="e624edb8630883dd02b4b51662dc331b"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="38089d012488add3dfebb8257561f113"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="97953cf10dad2b87ed38a3e16fa10ca5"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="145024349ddf84b2beab0f5f0f6d64a2"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="370588e330f0a311fbd543cb31a182bb"/></dir></dir></dir><dir name="PaypalUk"><dir name="Block"><dir name="Express"><file name="Form.php" hash="3262a3360f0f7504bde40083bc7c5fc9"/><file name="Shortcut.php" hash="50ee21c3323a47b29f57f051652fa726"/></dir></dir><dir name="Helper"><file name="Data.php" hash="d52626a050c3dbc4437ea380f4419957"/></dir><dir name="Model"><dir name="Api"><file name="Nvp.php" hash="d38680dc7d984252b4894e0a53c46a5f"/></dir><file name="Direct.php" hash="4e8940c66fada436ae962a227bcfcaff"/><dir name="Express"><file name="Checkout.php" hash="5cac6066e0985899512294fe3c6f1795"/></dir><file name="Express.php" hash="8e9ec3b446f6c86b1bec168b4f02c4a8"/><file name="Pro.php" hash="4c39dfcc680f9059b500bab26e1d3a38"/><file name="Session.php" hash="7804a12145b6c461ea21036c91e5685c"/></dir><dir name="controllers"><file name="ExpressController.php" hash="d65ac6e403d1787fcd783696aa4e185a"/></dir><dir name="etc"><file name="config.xml" hash="3bf40d759f9d9312b344003190342706"/></dir><dir name="sql"><dir name="paypaluk_setup"><file name="install-1.6.0.0.php" hash="6d940df4e0823d2e4ee6e98278255f3b"/><file name="mysql4-install-0.7.0.php" hash="c4bd6d0ae34efe416d551d070ea899bd"/></dir></dir></dir><dir name="Persistent"><dir name="Block"><dir name="Form"><file name="Remember.php" hash="4f1d0ebd0a8b61f4eddd507e6a0931e9"/></dir><dir name="Header"><file name="Additional.php" hash="af26656934fa662c099eed88fe8902f9"/></dir></dir><dir name="Helper"><file name="Data.php" hash="21d749c3401892375431b7f2563be62d"/><file name="Session.php" hash="31928a9d8217b6d1369af056f3c44308"/></dir><dir name="Model"><dir name="Observer"><file name="Session.php" hash="2397ee6037b90ca6ca8c2732582d167e"/></dir><file name="Observer.php" hash="7bfaa855baa9ab3b82c581f08003caef"/><dir name="Persistent"><file name="Config.php" hash="80062fcb197d45894cb0cfaa6b75790f"/></dir><dir name="Resource"><file name="Session.php" hash="ee9bf6e20718364f21c0da8cefb13e11"/></dir><file name="Session.php" hash="b580ad49642b38b20a37202c1172d375"/></dir><dir name="controllers"><file name="IndexController.php" hash="0f4e261ce529ab25ee2ff21ed35e7c1c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="b89f9b6e30549e5a560dd0af3a096a0b"/><file name="config.xml" hash="c90de23de7d0413496e7d3481e928d48"/><file name="persistent.xml" hash="7d0e037ae25fc83a7da3020f76243279"/><file name="system.xml" hash="6e791d0b44acaddd76e0a5c1a285ab30"/></dir><dir name="sql"><dir name="persistent_setup"><file name="install-1.0.0.0.php" hash="dc736f0b525920e5b63410f48631dc4e"/></dir></dir></dir><dir name="Poll"><dir name="Block"><file name="ActivePoll.php" hash="49dc517c263f9378e995fb1384066de7"/><file name="Poll.php" hash="7f1464a25d442d19259465d98d5e249c"/></dir><dir name="Helper"><file name="Data.php" hash="6c0231a4d71a02a629175114b6df5b01"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="6933764d5c6c308e6e9d0a08b90dce56"/></dir><file name="Answer.php" hash="8da3e716e96c38bdc5b2b0c88a66c743"/><file name="Collection.php" hash="646413f3973dc13e4e367e4af8cde6e8"/><file name="Vote.php" hash="c14a9deb2e2637e64956a1efc7aafbb8"/></dir><file name="Poll.php" hash="d23465520f4bc2b28e2a48e72c4663a7"/></dir><dir name="Poll"><file name="Answer.php" hash="c630011bf3fdc60b4a0fd22acb1ede9f"/><file name="Vote.php" hash="e79fa98bf31cd73e43ea1905ec5e2c0c"/></dir><file name="Poll.php" hash="0a5318d3c7c6c7f736c7b171e2b7f69e"/><dir name="Resource"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="ef4f1a9f2fbe71c2e733a3c516ef933a"/></dir><file name="Answer.php" hash="a6805642f07923232c9f7e17288c6f3e"/><file name="Collection.php" hash="42526c185f879dcf60d163daf56ec42f"/><file name="Vote.php" hash="b6c781d4c071f815cd64089cc3223683"/></dir><file name="Poll.php" hash="41f4c7246076d464825b6b015b9a9a0d"/></dir></dir><dir name="controllers"><file name="VoteController.php" hash="8f71373fe70eb6bb50a36a353925fdc8"/></dir><dir name="data"><dir name="poll_setup"><file name="data-install-1.6.0.0.php" hash="fa0a1fd55424be9960a4631e0d3436c8"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="deecdda9fc7f105358dcd02da13dffe2"/><file name="config.xml" hash="f671a10275ec540cc8bc30fde82d7b89"/><file name="system.xml" hash="ce81a4ae76c52e208968ed82b002ee0e"/></dir><dir name="sql"><dir name="poll_setup"><file name="install-1.6.0.0.php" hash="ea3f48661bc8a53ec06bb1349017e45b"/><file name="mysql4-install-0.7.0.php" hash="cdb4ec44b14591f5fbbf822caa0bbe03"/><file name="mysql4-upgrade-0.6.0-0.6.1.php" hash="0dbe96912764dfa69a4a5705421c0b1d"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="8c94e07b132299c863972788822ff6a2"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="cb61aa5b70f22d20e3d39d8074321c0f"/></dir></dir></dir><dir name="ProductAlert"><dir name="Block"><dir name="Email"><file name="Abstract.php" hash="4af2255f0bff0f491da10d38916ba6c9"/><file name="Price.php" hash="5604a4b6c9e3c54336dcad96ca13082a"/><file name="Stock.php" hash="1de80dd4755591436220660694e082b5"/></dir><file name="Price.php" hash="1cc2923a6501bd48f130004add6a5d4a"/><dir name="Product"><file name="View.php" hash="58ee24609ece07d10f66ef75ecf7f2d6"/></dir><file name="Stock.php" hash="820236417959d52c1f3338e4e2d05f74"/></dir><dir name="Helper"><file name="Data.php" hash="5abd985dd5667cfb921946e7d176e6b4"/></dir><dir name="Model"><file name="Email.php" hash="c7139b7a65fa1ab5d533db7c496ef8c6"/><dir name="Mysql4"><dir name="Price"><file name="Collection.php" hash="2a8da223d97f6dc24f17c81ee52ca3c3"/><dir name="Customer"><file name="Collection.php" hash="48a1610bc53342dd3db6142040313311"/></dir></dir><file name="Price.php" hash="ad88ab66cd11237eabc73f9af4f6c3d6"/><dir name="Stock"><file name="Collection.php" hash="0576ce72b50d8a098a36d8a507082714"/><dir name="Customer"><file name="Collection.php" hash="c3e20f44e2653a4cb0770bb8514cf68b"/></dir></dir><file name="Stock.php" hash="a43c6c95f3376bdcfc0b6998a74a2abb"/></dir><file name="Observer.php" hash="0f06b16f3e0c18583870b15a0eb8ee1b"/><file name="Price.php" hash="c6931f212312587aea972b1f804faad1"/><dir name="Resource"><file name="Abstract.php" hash="36e43af5fce4dee4b3ea483d2c9a75a1"/><dir name="Price"><file name="Collection.php" hash="5ff6133f80ab21b70a176a3318c21804"/><dir name="Customer"><file name="Collection.php" hash="1a13c12c8124016a8c9e8d7e8adfc112"/></dir></dir><file name="Price.php" hash="31cb3513a8bc76abd32f9282cd5aeb25"/><dir name="Stock"><file name="Collection.php" hash="1e384d8964a3232bf405441eb138a719"/><dir name="Customer"><file name="Collection.php" hash="09f60a820330bf18c5b90af454b0505e"/></dir></dir><file name="Stock.php" hash="ea6bba812542950ddab4f2eb4ce294cd"/></dir><file name="Stock.php" hash="b1139ecedef80bf13786d147a61bfe48"/></dir><dir name="controllers"><file name="AddController.php" hash="7febeb551a772af3081a974e6bd93a7a"/><file name="UnsubscribeController.php" hash="b3b48822f1fc00058c42d04dba1986ea"/></dir><dir name="etc"><file name="config.xml" hash="69e691e411250546d8e9beea80456e19"/><file name="system.xml" hash="e0cd2bce4359788ddad8a9a85a30a7e4"/></dir><dir name="sql"><dir name="productalert_setup"><file name="install-1.6.0.0.php" hash="af259503fa6985a3c039458b475a17a0"/><file name="mysql4-install-0.7.0.php" hash="cd9426c6d818ae5919e5903709a67811"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="c373194c3dc7c6c55ab8a8c7d590c476"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="0e7bf1ca596abc5fa6277035af87f521"/></dir></dir></dir><dir name="Rating"><dir name="Block"><dir name="Entity"><file name="Detailed.php" hash="7933d3cbb7244bf845a1806d5c5c07e3"/></dir></dir><dir name="Helper"><file name="Data.php" hash="0f34d930859f04973b4243fe3366800f"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Rating"><file name="Collection.php" hash="45eaa5b7999fabedf4b7a6937f4fcb6e"/><file name="Entity.php" hash="8e1a5070536f21d9075459905f9fd0e9"/><dir name="Option"><file name="Collection.php" hash="0ddc46f1effe309abfce4c9f188f3609"/><dir name="Vote"><file name="Collection.php" hash="ce7a5acbed28257f4673f86d8169582c"/></dir><file name="Vote.php" hash="8588054842f9c5fa2d268a9b07d1252d"/></dir><file name="Option.php" hash="bcdcc4d5ce1a5fbb4f0d4e5fd26df268"/></dir><file name="Rating.php" hash="ac0e4d45735bd0ecfdf58f99171e7d61"/></dir><file name="Observer.php" hash="4ad72620f893cbc1b7be99271c428a3b"/><dir name="Rating"><file name="Entity.php" hash="cad4ad56cab54e02c1d02693c5d63a99"/><dir name="Option"><file name="Vote.php" hash="dcfc31c6c7f666cf4350e7068ee79392"/></dir><file name="Option.php" hash="0ee39b2b62e4eca21346840f2ba93a7e"/></dir><file name="Rating.php" hash="651477c17438338d2c2ae2cea1e58a50"/><dir name="Resource"><dir name="Rating"><file name="Collection.php" hash="76d44fd9f1a7acd31672579eaf241cb5"/><file name="Entity.php" hash="8b92e1ca2ff73270dace3bcc08025783"/><dir name="Option"><file name="Collection.php" hash="4ee4293737b9d298d9aa7415798c7225"/><dir name="Vote"><file name="Collection.php" hash="0dea6f479497ee82f528dfd6a42bcb9c"/></dir><file name="Vote.php" hash="5ed0063cc4afe51f00b3e2bd170ef2d4"/></dir><file name="Option.php" hash="1c89a9f8338d7208b675b1622ca5f8f7"/></dir><file name="Rating.php" hash="ab5d10fae3a131b9442a8fe2bc3fe9d7"/></dir></dir><dir name="data"><dir name="rating_setup"><file name="data-install-1.6.0.0.php" hash="006e17bc18895deb43bd5e10d057d7ab"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="78f72c7de7713e31cbdd17c4cc6bb50f"/><file name="config.xml" hash="d31c061a67701de48c2c4efc73f2f8f8"/></dir><dir name="sql"><dir name="rating_setup"><file name="install-1.6.0.0.php" hash="ddef2759b2011868c98cf23782607a79"/><file name="mysql4-install-0.7.0.php" hash="f1c93ee850ff35f6d2a82b7141cd78dc"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="2a8249a8152407fd2eaac5a1b7fe11a9"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="a8f16ecbe75584f983114f2ce5242593"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="447768c453f596bb457d2ce977a47399"/></dir></dir></dir><dir name="Reports"><dir name="Block"><dir name="Product"><file name="Abstract.php" hash="f71d1beea0b2f39f275064dcabd5172e"/><file name="Compared.php" hash="4748bb6f889bf41d69c41fe2f40fb635"/><file name="Viewed.php" hash="cba8562b83b23eeb91e274857f9a557c"/><dir name="Widget"><file name="Compared.php" hash="6920579fd46c88c402096a283ef36dde"/><file name="Viewed.php" hash="aeaaae4b163fb0f2630f6a8bb0dc3af2"/></dir></dir></dir><file name="Exception.php" hash="dc836dafaa4cdae679fd13af0b5db236"/><dir name="Helper"><file name="Data.php" hash="a304c2c40c07db03cf077b88f2ff204b"/></dir><dir name="Model"><file name="Config.php" hash="897e1a53aab005b1aeb058709984285f"/><dir name="Event"><file name="Observer.php" hash="b6cc5b100e54fd05cd993bc85dacbf60"/><file name="Type.php" hash="082fc1b78b010549e406f2f244841f28"/></dir><file name="Event.php" hash="9f19bd1c58342983c5cfd0cbc0dc3131"/><file name="Flag.php" hash="d2317990180ba0cd4080366e230c1e80"/><dir name="Grouped"><file name="Collection.php" hash="d3fdc7cb90a0aca2684405fb01e7a789"/></dir><dir name="Mysql4"><dir name="Accounts"><file name="Collection.php" hash="0126842f1db2745c040d347ae1ac4f0e"/></dir><dir name="Coupons"><file name="Collection.php" hash="dbd6fde4a4fb0bdf9b3df2857d4f567a"/></dir><dir name="Customer"><file name="Collection.php" hash="7e159bd5aabbf8a303697630480dcde4"/><dir name="Orders"><file name="Collection.php" hash="2a71acc57f991b302b1693b1297dbf4e"/></dir><dir name="Totals"><file name="Collection.php" hash="7e6e640ca54609921c8d0f14c9976e54"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="01049003be8125b904753cdd7837f23b"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="7afa182983a43a54d8fbd75153f1c570"/><dir name="Type"><file name="Collection.php" hash="cbc671535dcda0084449d9884c45b43b"/></dir><file name="Type.php" hash="8e43069afc9e21bde5d6989601098a9e"/></dir><file name="Event.php" hash="4a04d5495bfb9510c8394f266628ad88"/><dir name="Invoiced"><file name="Collection.php" hash="06942b6301dfd12d2d6398ce632a3d29"/></dir><dir name="Order"><file name="Collection.php" hash="4b7baecdc57c539e3479a0942bf0960c"/></dir><dir name="Product"><file name="Collection.php" hash="6538c4bfe619e6d83e93b371bae27377"/><dir name="Downloads"><file name="Collection.php" hash="10c4dd9f03f96dfe2487f6be304f5ddc"/></dir><dir name="Index"><file name="Abstract.php" hash="d16638fd0267240476e691a27d360649"/><dir name="Collection"><file name="Abstract.php" hash="cfca6440aa1abc28c09ece92639d7aad"/></dir><dir name="Compared"><file name="Collection.php" hash="905c28a9dc5cfc179fb1d90badc47c2d"/></dir><file name="Compared.php" hash="3e7cafddcdcf2929a400cd2f8b2fd99f"/><dir name="Viewed"><file name="Collection.php" hash="81df26d072ee269fa568177c21417b50"/></dir><file name="Viewed.php" hash="15b7e9a23ac144200314ee68b9e64e01"/></dir><dir name="Lowstock"><file name="Collection.php" hash="d0fe5ad95a1518adc3f946eab9dd8d7c"/></dir><dir name="Ordered"><file name="Collection.php" hash="4775fe99c4411e485371be792c7bb80e"/></dir><dir name="Sold"><file name="Collection.php" hash="2dbbbafcb89dcd45cbc418ae5c2bd49c"/></dir><dir name="Viewed"><file name="Collection.php" hash="bf89bda3f9229d41a511479a9a8c8a75"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="b0e9eddfb8b0dcffbc4ba683a2beebf3"/></dir><dir name="Refunded"><file name="Collection.php" hash="26bcb200c34734af9ed45a425ff706af"/></dir><dir name="Report"><file name="Abstract.php" hash="48e1b3950340fb22d0b12f40a01c8e11"/><file name="Collection.php" hash="e5505d9d2d8adc729262f9daf1885515"/></dir><dir name="Review"><file name="Collection.php" hash="ab2d6d2c37cf3d00823f5fa2c89e259e"/><dir name="Customer"><file name="Collection.php" hash="04af8b0c7f10a33b820640857dc74a3a"/></dir><dir name="Product"><file name="Collection.php" hash="114befcb11f5e26c3daa6277e4724ca5"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="cac93fb9e273136289cca7385e3e78b9"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="fb646aae3713bcf4599578c7f9c23b4d"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="161f5990a2ed3dd2b913f1577c2523e2"/><dir name="Customer"><file name="Collection.php" hash="c659f5926cf5a496dc233e6998ab0db2"/></dir><dir name="Product"><file name="Collection.php" hash="7c2460e4937ee5b68b24dd9ea3cf7ae0"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="b3caede2d1e4a62ce630b6e1015e8f30"/></dir><dir name="Wishlist"><file name="Collection.php" hash="1caeb4dda599492449e2926433027e13"/><dir name="Product"><file name="Collection.php" hash="50a4d92a80801fa75754e5e1eb1ea3e3"/></dir></dir></dir><dir name="Product"><dir name="Index"><file name="Abstract.php" hash="c9cb90c8affbf50fa2dd41d2d891478c"/><file name="Compared.php" hash="f6aa933c581052a59981c8015ba846db"/><file name="Viewed.php" hash="8199979d0d0cce45d709e00bcaaa3849"/></dir></dir><file name="Report.php" hash="5d6bcfcfbb815d977ee42597c429ae4e"/><dir name="Resource"><dir name="Accounts"><file name="Collection.php" hash="ba6c2c37852e6ed927c349e0edf454fc"/></dir><dir name="Coupons"><file name="Collection.php" hash="ceb4aadf1558a2c135ee9e9f507cf9da"/></dir><dir name="Customer"><file name="Collection.php" hash="d48ba3102bbcb2236fd5995d8bbbc0d6"/><dir name="Orders"><file name="Collection.php" hash="954157842ba30f33a25b425d7f8d4492"/></dir><dir name="Totals"><file name="Collection.php" hash="1280d9b55efd91cb8bd38a03a7f9d223"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="cefb4d28c421fa325a9ac8facae92474"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="53dcb9ef6540c08051ccd81f83c8d216"/><dir name="Type"><file name="Collection.php" hash="6c0d4e1ab7f5f98f2c5c62f4530b5f9e"/></dir><file name="Type.php" hash="5042200f9a472ed4bac7e140beb55f42"/></dir><file name="Event.php" hash="43f5301c0d419a877a6ddac211a10258"/><dir name="Helper"><file name="Interface.php" hash="8cd9a6957c52fdb11e570a2fbda4a77a"/><file name="Mysql4.php" hash="c9dd5aaa071ddca6fb484a414849f234"/></dir><dir name="Invoiced"><file name="Collection.php" hash="78b00ea68f193c1c9297a258c49962a9"/></dir><dir name="Order"><file name="Collection.php" hash="4f45253383010b8333a1f7ab4b82b6a5"/></dir><dir name="Product"><file name="Collection.php" hash="bbb511e6131fd1d76ec57a449e6afb23"/><dir name="Downloads"><file name="Collection.php" hash="9efb166e01ffe1a28167e88639c1d11b"/></dir><dir name="Index"><file name="Abstract.php" hash="9337688cf9f6857b41b215409ad6a794"/><dir name="Collection"><file name="Abstract.php" hash="425d7ec971adea2641babca4e85aaa15"/></dir><dir name="Compared"><file name="Collection.php" hash="fd2dc9826bc03e310cfbac2cdfca0756"/></dir><file name="Compared.php" hash="42728d04b09e81707874cc03082e7b95"/><dir name="Viewed"><file name="Collection.php" hash="dadc5230618971508c936f767906bf30"/></dir><file name="Viewed.php" hash="460fbd445ff5da926ef495d24d10a3cf"/></dir><dir name="Lowstock"><file name="Collection.php" hash="9279d056b419608ca04f11493c826c6d"/></dir><dir name="Ordered"><file name="Collection.php" hash="f75a56659a2a991ad1f7edcaf55bc15f"/></dir><dir name="Sold"><file name="Collection.php" hash="9048008a5adf9f65acdf55649a2144ba"/></dir><dir name="Viewed"><file name="Collection.php" hash="1d30f3932255494dfffb56c7a39a5da7"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="f1c9572a9e562ff417fa0fd996e28e40"/></dir><dir name="Refunded"><file name="Collection.php" hash="638158e5cedc585cf2f36a15bf8056dd"/></dir><dir name="Report"><file name="Abstract.php" hash="2e10c513b0ae80670afaa5948ef64e04"/><dir name="Collection"><file name="Abstract.php" hash="4f5403e87a2ba87d6c54300919472ee0"/></dir><file name="Collection.php" hash="0deb27c0ede6eb896265d060fdc72307"/><dir name="Product"><dir name="Viewed"><file name="Collection.php" hash="57fe488e2c894041d45dd3d40992f159"/></dir><file name="Viewed.php" hash="525f0f6d70a8d9f2f1fc0abe2230b34d"/></dir></dir><dir name="Review"><file name="Collection.php" hash="e2a022f860283cbe55d80a6259e84e69"/><dir name="Customer"><file name="Collection.php" hash="a90c5739f27d5c4cbb6c53b396704847"/></dir><dir name="Product"><file name="Collection.php" hash="348c369575c919ad1ca5444289c50b2c"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="8fcd0296b716d8a7361cb0a8a3c96f2f"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="70cd69f5a48e8bf5bfee5bd4bc1c3609"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="5f800d8871775c0c2c8389466dab9c25"/><dir name="Customer"><file name="Collection.php" hash="7185ef35ee1720467643382225780e0f"/></dir><dir name="Product"><file name="Collection.php" hash="a94a0ee4b8cb4016e17b567279d06cbe"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="c016acec668debd358ccde9e43ad1c70"/></dir><dir name="Wishlist"><file name="Collection.php" hash="a2013185b10883121935bdda7d90901e"/><dir name="Product"><file name="Collection.php" hash="899c8515dac85132f5b5ce0526a43e0f"/></dir></dir></dir><file name="Session.php" hash="d92fb2f90629dc7b4ec957f6c4437e8c"/><file name="Test.php" hash="956d70c591891ea66bd1f714ec27b020"/><file name="Totals.php" hash="034b62b46c48987791993600c6ac4395"/></dir><dir name="data"><dir name="reports_setup"><file name="data-install-1.6.0.0.php" hash="169900a31f8823ef09dad3735575c084"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="dc3d03bbab93619e7c7d4e1e2006df57"/><file name="config.xml" hash="2a7db24d58bb3e1e1fade7ef4520afb6"/><file name="system.xml" hash="28e4a196f6065267586b791b9f277ec2"/><file name="widget.xml" hash="b229ce0b472715f6f560ee3b73aed310"/></dir><dir name="sql"><dir name="reports_setup"><file name="install-1.6.0.0.php" hash="1fab7ed4dcbbe3a40adbd3364aa6da59"/><file name="mysql4-install-0.7.1.php" hash="bb3712bda1431b7d64444d193d2c356a"/><file name="mysql4-install-1.5.0.0.php" hash="7cbf44afdce7e46a831dd49b0b0294b1"/><file name="mysql4-install-1.6.0.0.php" hash="3abee0dd47ffd6b60af557d8810ae425"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="d0a8536818427d31bac69ab2c66f7512"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="430405860718806841a68fbb8fba332b"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="deb6e7a8171f457d2a62d3aa2b9a9ffc"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="3788574fcf1b76d0213880a8db196c05"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="5deeb84f46c03d32d03c0276a8e8029f"/><file name="mysql4-upgrade-0.7.5-0.7.7.php" hash="56d679eb3e84f0853ebd3dae8b5cc10b"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="714f96bc7823d1a8645116f74988e7d8"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="31ad38c09b107cac00b8e544cf231e14"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="5b38ade19e45ec2b9e7309fa5ac8e078"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ea4b0220f4e6315b0107990ccaef5d65"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="5c2c092c16ce76ef131814be0940673d"/></dir></dir></dir><dir name="Review"><dir name="Block"><dir name="Customer"><file name="List.php" hash="6c4488d456d68141c9cdd11c0722fc3a"/><file name="Recent.php" hash="0f723e6a7cab7c56fde97b6decf0e481"/><file name="View.php" hash="d3c93b20f12b518cea23b2ba8f6d9425"/></dir><file name="Form.php" hash="e8c0df8f1969d7888a9ba93f01daa10b"/><file name="Helper.php" hash="3391cc0735893f606c1ded1fd03ef7b7"/><dir name="Product"><dir name="View"><file name="List.php" hash="f3fcc2b88259361f6ca1704419ef20db"/></dir><file name="View.php" hash="a79bd939e3734a00b0a1d60cd9453a71"/></dir><file name="View.php" hash="5e3fc9ad3470ed81057daf9357945eae"/></dir><dir name="Helper"><file name="Data.php" hash="416033195628e68d7875a761ffa67f97"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Review"><file name="Collection.php" hash="5177e8813e1915ba13a47bd8f36e4de7"/><dir name="Product"><file name="Collection.php" hash="1175535c0f8bb1b3ac192adea379abfc"/></dir><dir name="Status"><file name="Collection.php" hash="def4430c25e2ea0fb0fb965f727af7ef"/></dir><dir name="Summary"><file name="Collection.php" hash="11bc016f1f584309c2304d8a0a7f1dac"/></dir><file name="Summary.php" hash="7c76dd0a5f0044a3482cd8e2875d3f8f"/></dir><file name="Review.php" hash="91d13352a3f485c6e708fec7c82b69e1"/></dir><file name="Observer.php" hash="fba3bdf7edc47901c421030876360b6f"/><dir name="Resource"><dir name="Review"><file name="Collection.php" hash="ddb72730ade057792679d3f95041a6ee"/><dir name="Product"><file name="Collection.php" hash="d916466f1b4faf19e7307359bc65a642"/></dir><dir name="Status"><file name="Collection.php" hash="214af9091f2041f32e18c79e83770e59"/></dir><file name="Status.php" hash="7af471b9c76cb72b52a7de5a0e2c86dd"/><dir name="Summary"><file name="Collection.php" hash="325ed5ed01e2155c9d11877e33ccd56b"/></dir><file name="Summary.php" hash="9b7bf327d1d7c384f1b717b7ebd0a410"/></dir><file name="Review.php" hash="718fb1fbf9af393d6a7f90c16cdbe02c"/></dir><dir name="Review"><file name="Status.php" hash="6f86095b58133ab750750cc4ac5cc05c"/><file name="Summary.php" hash="be77df9de0db461b7690380f04cdf5ef"/></dir><file name="Review.php" hash="ceeadd0a797020313245477bea16adf8"/><file name="Session.php" hash="88772ff56536b12a33b294e779124b20"/></dir><dir name="controllers"><file name="CustomerController.php" hash="e7fa765ed78b82dc260e2bc5bfecfcf6"/><file name="ProductController.php" hash="77e39b9d971eb4d71aa69a8c3a3f5a66"/></dir><dir name="data"><dir name="review_setup"><file name="data-install-1.6.0.0.php" hash="641be66950c06a7f497f6076dadf7f6d"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d47d79d7dd79fd76b792ca15a4f0af1e"/><file name="config.xml" hash="292ff5f779e5c283a8f08a6e58c2b84d"/><file name="system.xml" hash="b9b3f4fd4184fa873c371d9f98f54680"/></dir><dir name="sql"><dir name="review_setup"><file name="install-1.6.0.0.php" hash="c16f23034023f3c4e55c7f86f892dd4c"/><file name="mysql4-install-0.7.0.php" hash="ab45c46637460efb20696739b25a9461"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="bf8da35ed7b24079d89ce6c87d0a537f"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="157a0df5ac3c8b8ea11e9368728b2cc1"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="c7361eab06662cc9a55424f827107dd8"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="5646ece8a6a8e812f7b96baa2aa0314f"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="f39b6cc5c2bc43d87682b3959426f9e9"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="ae67f2cdeafc31464298e6eea5e46d77"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="4c48bdb036e4a51e48e21bb9e3e6fb4d"/></dir></dir></dir><dir name="Rss"><dir name="Block"><file name="Abstract.php" hash="50528c12a07bfbfdb94af1b5f0af503a"/><dir name="Catalog"><file name="Abstract.php" hash="fc2c8742e6dde0180ff44cf242261bf5"/><file name="Category.php" hash="979c0d76212f7b09568c0d776b770b5c"/><file name="New.php" hash="7d56b4aca02af98de458ca4c7147e9c2"/><file name="NotifyStock.php" hash="1edd961b29b3153aed312ef0d221734a"/><file name="Review.php" hash="3c9388acf14fcc661346d6913ff47057"/><file name="Salesrule.php" hash="74e881c37e3f5c36a6993a3a69869eb8"/><file name="Special.php" hash="b1832b8d952e2afb107399bd1252c9dd"/><file name="Tag.php" hash="c52e0fadbdf5b727430c74f936c5a1ee"/></dir><file name="List.php" hash="1434c0d830b7bb7748c9c7488043ab92"/><dir name="Order"><file name="Details.php" hash="e880ec360e74edb893a3bcf67fba3636"/><file name="New.php" hash="107bdcaaf769e4a6a605c166760353b7"/><file name="Status.php" hash="140bd7ee626aefefe3bd5f2d1ba0f9a5"/></dir><file name="Wishlist.php" hash="92af1cca70ac67db1da3a7fd67fecf0d"/></dir><dir name="Helper"><file name="Catalog.php" hash="63ab83f6d08e6be34d9edff713723b75"/><file name="Data.php" hash="4d822391dbcf9eaed06f090485e7c461"/><file name="Order.php" hash="47300184ab5e49559af19340b0e2f586"/></dir><dir name="Model"><dir name="Mysql4"><file name="Order.php" hash="0e8191dd976d40fb38557c7c487199ae"/></dir><file name="Observer.php" hash="7557a41a7115bcd971f53251f73c9839"/><dir name="Resource"><file name="Order.php" hash="fdffc850ea4cdd0005f6addfb95e22ce"/></dir><file name="Rss.php" hash="036a2f6f4a72163add38351699307efc"/><file name="Session.php" hash="103d7a12dc664eb8b2be83bdb698823b"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="c5d6dcdb1dd02c0af911affb55ad8bd5"/></dir></dir></dir></dir><dir name="controllers"><file name="CatalogController.php" hash="410911835d9b37623dcf7f3f9ad3ea3d"/><file name="IndexController.php" hash="084239d4f2f2c9656eedcb3c75d66cdc"/><file name="OrderController.php" hash="6c81534459623bfcb506af07d24ee23f"/></dir><dir name="etc"><file name="adminhtml.xml" hash="176e448508c55e5e8f45c19244a65309"/><file name="config.xml" hash="34fe726557fdd5e685acaafadc690d50"/><file name="system.xml" hash="28f0400937db7a7d6e9810e1106b0d21"/></dir></dir><dir name="Rule"><dir name="Block"><file name="Actions.php" hash="47846a1cbb4f3957b07a33e306b95936"/><file name="Conditions.php" hash="c121a1bd9b327807c7f78f794b92b846"/><file name="Editable.php" hash="10bfe3a3dbca4b86acbf788e597847ce"/><file name="Newchild.php" hash="6af2308ff5d512fe665c0a1d84ffbcb4"/><file name="Rule.php" hash="51d7cbca520ab291c05d59911627c060"/></dir><dir name="Helper"><file name="Data.php" hash="d70528356b5fc6fa88fa7834e8cd533c"/></dir><dir name="Model"><file name="Abstract.php" hash="65c89021ff546aa5a8e340332af9b3a2"/><dir name="Action"><file name="Abstract.php" hash="f922df6cd8f57e83961f4a7d6234609c"/><file name="Collection.php" hash="96a59a7c055540dd1a4edb3b3a7eadfe"/><file name="Interface.php" hash="4a1420a70e45c6f9042eec65baf2bce7"/></dir><dir name="Condition"><file name="Abstract.php" hash="13caac78c3902bcf52ebc3b720ebe4d0"/><file name="Combine.php" hash="1091973457986458f4d8abb7d3a05a40"/><file name="Interface.php" hash="b317f4c6e463dbd76f8426c8526ad8aa"/><dir name="Product"><file name="Abstract.php" hash="916107fa26f8137be44d7ae007e2010e"/></dir></dir><file name="Environment.php" hash="6f5e5cfe3289b6416ea2f5154baf7908"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="ebe488829b73e63b267664f46f3b8fe9"/></dir><file name="Rule.php" hash="92d349552ce59781fc62bf31a3874c13"/></dir><dir name="Renderer"><file name="Actions.php" hash="12f9dea39a28c03e59ea652150c2a1e2"/><file name="Conditions.php" hash="234dacc8fafe7a2318f07a6c6564feb7"/></dir><dir name="Resource"><file name="Abstract.php" hash="88a870a4ee52d50b1dc14bbc882ffb02"/><dir name="Rule"><dir name="Collection"><file name="Abstract.php" hash="44470b880cd224598b0752a3dc83f3e4"/></dir><file name="Collection.php" hash="7e7f42f3a240d745f5f7a692c5555016"/></dir><file name="Rule.php" hash="4bf48012463a30da7e0005f5dfc4c727"/></dir><file name="Rule.php" hash="c1bfec334dd8e6cdd7563766abc9702c"/></dir><dir name="etc"><file name="config.xml" hash="5909403cf0fb4514b671644179dcb0aa"/></dir></dir><dir name="Sales"><dir name="Block"><dir name="Adminhtml"><dir name="Billing"><dir name="Agreement"><file name="Grid.php" hash="f48dc387cfce6b02634d5434e801bf69"/><dir name="View"><file name="Form.php" hash="c7433de04b7c0769fbfceeeefe3f403e"/><dir name="Tab"><file name="Info.php" hash="a6f05aecb9b6186ca68a72dac3894023"/><file name="Orders.php" hash="0960af90329b9b663d67bceee9c0499d"/></dir><file name="Tabs.php" hash="bc3d988ab68f1a8dd9c776de05668efc"/></dir><file name="View.php" hash="b6c42311f1f152b4bc780a060b795f99"/></dir><file name="Agreement.php" hash="841e726656ca9f9f3eff87faf9f787b3"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Agreement.php" hash="92c2e6993a76c28a1a76678e4593292a"/><dir name="Recurring"><file name="Profile.php" hash="c7640935307bbd5081bc59f458a73153"/></dir></dir></dir></dir><dir name="Recurring"><dir name="Profile"><dir name="Edit"><file name="Form.php" hash="252b1b408fcc754bea219f47d6fd3b6b"/></dir><file name="Grid.php" hash="438d430c737613be5ed3c24115a688a4"/><dir name="View"><file name="Getawayinfo.php" hash="7e363d477bcb88516f6da547fccce6b0"/><file name="Info.php" hash="02aa6bfa8ea21fea02beb3210466471a"/><file name="Items.php" hash="5ab32413cd46d0586e62c80e0c239791"/><dir name="Tab"><file name="Info.php" hash="42a71f075e4c0f62c881e5942d743e4a"/><file name="Orders.php" hash="9c882bcc716ff51308c881ee57239413"/></dir></dir><file name="View.php" hash="d106e4574a4dd1226e37a3298a21d24b"/></dir><file name="Profile.php" hash="c0b8540336a9d26c51db9b1e50aac97c"/></dir><dir name="Report"><dir name="Filter"><dir name="Form"><file name="Coupon.php" hash="bc9369c9d1bc2aceebe6a5f3b1a219bd"/><file name="Order.php" hash="40f6cbbea627b61703de51cc70b52695"/></dir><file name="Form.php" hash="4f5a87f6620aa81549d5ab773d6671d7"/></dir></dir></dir><dir name="Billing"><dir name="Agreement"><file name="View.php" hash="207c5297075b86ff544e918323fee725"/></dir><file name="Agreements.php" hash="be2bb8697e6990dc996432596840d3d7"/></dir><dir name="Guest"><file name="Links.php" hash="ef095004c5c62d195679cf70983f6d0e"/></dir><dir name="Items"><file name="Abstract.php" hash="1e2c83430b5d585614c739a323b9a0d9"/></dir><dir name="Order"><file name="Comments.php" hash="a793892a7542cbc09325e7a5a33e6c33"/><dir name="Creditmemo"><file name="Items.php" hash="82ed0746999db8ea9c2557a491c3204f"/><file name="Totals.php" hash="6e62de4dfa27bb779b0863a179520364"/></dir><file name="Creditmemo.php" hash="d19ad232fc014667447b32be2debb0ef"/><file name="Details.php" hash="e8ebbc1abc549c86ad420bd63125e30d"/><dir name="Email"><dir name="Creditmemo"><file name="Items.php" hash="4790ce4ec8b7d7c7dc3e14b1a0f6a37e"/></dir><dir name="Invoice"><file name="Items.php" hash="07a5a68a13593b79f315a12b74cc8b1e"/></dir><dir name="Items"><file name="Default.php" hash="0461aed6958d2af89508709b798f5969"/><dir name="Order"><file name="Default.php" hash="5110cd52b20a865bf08635543e1a345a"/><file name="Grouped.php" hash="c1987f11a8fa4651c76a20275d9b4de0"/></dir></dir><file name="Items.php" hash="fb989588e49199bd5f58829d5a969c4f"/><dir name="Shipment"><file name="Items.php" hash="06509b6a48b4318436099112ecfd2adb"/></dir></dir><file name="History.php" hash="f3e39acc6a6cb575d75b124c66febebd"/><dir name="Info"><file name="Buttons.php" hash="a6163995089cc2d092292d0b92edecf2"/></dir><file name="Info.php" hash="c2a7134c607f082b2e7b981b40116eb4"/><dir name="Invoice"><file name="Items.php" hash="e26d11ae4a6ca0004b75ef199d352b6d"/><file name="Totals.php" hash="8b621f65ccd3c99298c0b846feaf0436"/></dir><file name="Invoice.php" hash="57e2a3c04849ec22b5431fa816297e85"/><dir name="Item"><dir name="Renderer"><file name="Default.php" hash="97d5d02f728f7855ce11502c15d73fb4"/><file name="Grouped.php" hash="32819517bd830b7ea3e4c266185ea481"/></dir></dir><file name="Items.php" hash="396118d3ef48c5c7186a09d12f400bf9"/><dir name="Print"><file name="Creditmemo.php" hash="68aa0905c5cf238f1da557e3db0bc047"/><file name="Invoice.php" hash="376d3dcc898f09fe05250b13b6a09e71"/><file name="Shipment.php" hash="fa27b892ddf6a04886754e85e6ae5379"/></dir><file name="Print.php" hash="e26a9c16e2af1a101a2255274720bd77"/><file name="Recent.php" hash="43982971a21382cbe12b8b39c73c425c"/><dir name="Shipment"><file name="Items.php" hash="8b843a9927a8c7f17e925278f2cb29da"/></dir><file name="Shipment.php" hash="9aff65e6b8da6e7f77f554163b32f68d"/><file name="Tax.php" hash="cf1c5677a420cad5d137840a0a98aa7f"/><file name="Totals.php" hash="674ba9f860dbe913aecefa60c4dc6469"/><file name="View.php" hash="860e698d4057ddbafc2366c4fdba5d9f"/></dir><dir name="Payment"><dir name="Form"><dir name="Billing"><file name="Agreement.php" hash="94e229fe1986647dcb2e68c0b4427c48"/></dir></dir><dir name="Info"><dir name="Billing"><file name="Agreement.php" hash="0de5b5e48a5437b5d6d20ec529231e78"/></dir></dir></dir><dir name="Recurring"><dir name="Profile"><file name="View.php" hash="49e14161fbd85eecdd612c7a018291a5"/></dir><file name="Profiles.php" hash="e1bed62730a9248f4d19224f0b803b3a"/></dir><dir name="Reorder"><file name="Sidebar.php" hash="9b32519b2ec4b80f13f5990b45970922"/></dir><dir name="Widget"><dir name="Guest"><file name="Form.php" hash="2ca637176bcd55dd01159e05fc6a967a"/></dir></dir></dir><dir name="Controller"><file name="Abstract.php" hash="5bdef4e74a0c7a1a9cd86b6040298aca"/></dir><file name="Exception.php" hash="d32a391279e60d56a94ad27c11c1a985"/><dir name="Helper"><file name="Data.php" hash="191aff3b683b911acb016fb0f13a2650"/><file name="Guest.php" hash="dc4cb3745afb9b4e7440d43e9e4e30f5"/><file name="Reorder.php" hash="e8765f78d4a26b97a8da11df4316a741"/></dir><dir name="Model"><file name="Abstract.php" hash="bd7603606e41056b0df5868da367c482"/><dir name="Api"><file name="Resource.php" hash="9d6a762b09b1e9fba42c727e5a65f8a3"/></dir><dir name="Api2"><dir name="Order"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="400d082ab7d0f69fb30e012013df6e19"/></dir><dir name="Customer"><file name="V1.php" hash="11980f9d3faa2934411ff0520ed47318"/></dir></dir><file name="Rest.php" hash="76a4507eb887483618d28bc9ef6edf8f"/></dir><file name="Address.php" hash="ea6875ab74e098e5fa0f6cf34620806b"/><dir name="Comment"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b131994ea8d9ad2950be219f0ae928e3"/></dir><dir name="Customer"><file name="V1.php" hash="934910768b60cbad1755cf332cc98019"/></dir></dir><file name="Rest.php" hash="6ecb59ac578a9f86b1120fa25e912590"/></dir><file name="Comment.php" hash="c9e7d993e6929279294999f5c70e90cf"/><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="8cd01100dafd3b09b9627e599cd41018"/></dir><dir name="Customer"><file name="V1.php" hash="21f040fd53403f0f501dd3b5ad8583f6"/></dir></dir><file name="Rest.php" hash="6e23b1d819a781a1f5843a2844a05d9a"/></dir><file name="Item.php" hash="f77fe8612bb64741a244bfcf1ae58128"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b3aeec123f3e8b064cc938a2850cbc96"/></dir><dir name="Customer"><file name="V1.php" hash="a2e0576546021c9b0ddbcfef565924ba"/></dir></dir><file name="Rest.php" hash="082cf01198061f444cef9713651d0c9e"/></dir><file name="Order.php" hash="51ded2f798297a1da225c4a404b6c564"/></dir><dir name="Billing"><file name="Agreement.php" hash="7780a5122d7acabc93f784bc6d840e3d"/></dir><dir name="Config"><file name="Ordered.php" hash="60764f47a310e88e0d485187925366c7"/></dir><file name="Config.php" hash="8619a64d3c4b46fa703866dc133f342c"/><dir name="Convert"><file name="Order.php" hash="234bfe01bf30f1037ed85efadc3a07e5"/><file name="Quote.php" hash="fdeb0a5f59313030dbe73505b69e056c"/></dir><dir name="Email"><file name="Template.php" hash="21f29a412a0a7c5bca58462daf5535cf"/></dir><dir name="Entity"><dir name="Order"><dir name="Address"><file name="Collection.php" hash="0969fade22d7e71910ecc002c1300231"/></dir><file name="Address.php" hash="bc2206c5900a2850b4c37c4a8ce0e08f"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="7a0d1e8889dc8605f94eaf255d0509ab"/><file name="Child.php" hash="d28dd1945581171717b5fa88e02ee093"/><file name="Parent.php" hash="11bf52ec93e553820f1002cb9f9b40c2"/><file name="Shipping.php" hash="a74e30e2034a98615d320d5d28f33f0b"/></dir></dir><file name="Collection.php" hash="ac7a8780c77dbcc226c3ddd479740a48"/><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="f4de8e965fbab80573306c69e8ae672e"/><file name="Parent.php" hash="94721515ac62e0140f60eef1cc142f45"/></dir></dir><file name="Collection.php" hash="5b1a005cb3c9df24bbe234151c0bd006"/><dir name="Comment"><file name="Collection.php" hash="36be482200b7e1ab53782a3455930cec"/></dir><file name="Comment.php" hash="b4a5644d06832f169c948922c8ceabff"/><dir name="Item"><file name="Collection.php" hash="71128f656b564a2b760a2aed5b1a0bba"/></dir><file name="Item.php" hash="a11515f9b57d96db605b86d1f13d06e2"/></dir><file name="Creditmemo.php" hash="adb18854bc8feeded5a80e9d21038a43"/><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="829d813c6c6da6253e64ea8d8e811fe4"/><file name="Item.php" hash="9f595ca7f27452438f7e805073579031"/><file name="Order.php" hash="8bfb06cd8bdd4d9facda7687b609c39c"/><file name="Parent.php" hash="da73a8dd660e9d74c6a84e089e5571a8"/></dir></dir><file name="Collection.php" hash="9a7a710ff8fb0e0cb492ad88aafc7b73"/><dir name="Comment"><file name="Collection.php" hash="8da036074aad2a2ebeaebcc6238aa3cf"/></dir><file name="Comment.php" hash="08c48923235bcd5f937ff808c5560f02"/><dir name="Item"><file name="Collection.php" hash="a200d37b16eeb357340c925b2d923045"/></dir><file name="Item.php" hash="64d6693b6b8d88bb1da24942866beddc"/></dir><file name="Invoice.php" hash="ede9ee440c863bedf3cd59ffcdb85613"/><dir name="Item"><file name="Collection.php" hash="b21c1155c4ce677b090d8ff3633dc717"/></dir><file name="Item.php" hash="4b25bc8704db87cdbf9535ae02522840"/><dir name="Payment"><file name="Collection.php" hash="976d0500e0575d70f072cb7848cb738d"/></dir><file name="Payment.php" hash="253124697b66d6148cb79217b6e51311"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="e2e1ad7a5dcb7e19d318b12ff0c727fc"/><file name="Parent.php" hash="7fc83bacd4690396bd2eae6df31faf6f"/></dir></dir><file name="Collection.php" hash="ab04a0cf5f077913e2e7aa711881354a"/><dir name="Comment"><file name="Collection.php" hash="9d28ce489f2c8473910cd5fe94a15e9c"/></dir><file name="Comment.php" hash="81e9dbbdb8911ceb1686079bd58e38ae"/><dir name="Item"><file name="Collection.php" hash="a7a8bbd1aa5e289544206648ade7dd2f"/></dir><file name="Item.php" hash="63f8efb574732f7dc947b8e44ec700fc"/><dir name="Track"><file name="Collection.php" hash="8c4b51d41b1bd2d000c1bd702d63323b"/></dir><file name="Track.php" hash="a4d80c23e8397aa2b6967f2bbef0d5ad"/></dir><file name="Shipment.php" hash="da972a4f8afccf44834d81daa3a11b12"/><dir name="Status"><dir name="History"><file name="Collection.php" hash="ed413b30e285a458999152ba0ecc6c3a"/></dir><file name="History.php" hash="b961821cac4633715736b640f8ba4e21"/></dir></dir><file name="Order.php" hash="686e245d4561eef177d70cad2f339200"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="cdbfb75fd926222f3917038441d9757c"/><file name="Parent.php" hash="7957ddb316d8f7f608206fc144129863"/><file name="Region.php" hash="47cb48d9bc3967b4af3ee423728b84c6"/></dir><file name="Backend.php" hash="57175b6296fdcd04f07af5bad0807c77"/><dir name="Frontend"><file name="Custbalance.php" hash="36645526553efc40ede5b4336619d342"/><file name="Discount.php" hash="625e8a79616fe6f989353fc2d0d83340"/><file name="Grand.php" hash="7a59b05966c830fe332a5c68cfcae89e"/><file name="Shipping.php" hash="24efbc1fd66ff60b9ac6cbd7a323b37b"/><file name="Subtotal.php" hash="6f02007ebdc13013d279441bfe4bd661"/><file name="Tax.php" hash="dbc66fce736160f22506e4b74c5eceae"/></dir><file name="Frontend.php" hash="67a83887afe3c00d9cc02ff2597b3f59"/></dir><file name="Collection.php" hash="c865740cf549d761cce26127c0576d8a"/><dir name="Item"><file name="Collection.php" hash="f93827f7d58c10327197370567283e5f"/></dir><file name="Item.php" hash="361ded87e6417204035237cf46741160"/><dir name="Rate"><file name="Collection.php" hash="79220dc163f943533bec780ab7bb786a"/></dir><file name="Rate.php" hash="581f87e1d5a5e66d28a8b1b6af88b3f3"/></dir><file name="Address.php" hash="7324b10e85beb8780ca39345c0bca5ec"/><file name="Collection.php" hash="7289b1db2e07b3e97e72cd9ae59c80b0"/><dir name="Item"><file name="Collection.php" hash="58968e162cdaac12089fcfc4fcd88312"/></dir><file name="Item.php" hash="2d21045d611022c9305e87f511d3b784"/><dir name="Payment"><file name="Collection.php" hash="308fc70639bd4e981469612ef3335263"/></dir><file name="Payment.php" hash="a071e578e7b205bc6d31907edf714956"/></dir><file name="Quote.php" hash="dece8558209491a1a9bec060e6660054"/><dir name="Sale"><file name="Collection.php" hash="f3639c53f9aa63771383387d54cb019f"/></dir><file name="Setup.php" hash="1a3aa096ba67c15ecfa8c624609fcbd2"/></dir><dir name="Mysql4"><file name="Abstract.php" hash="6e17a3ceb908a0cb5b1ec42dedd153d9"/><dir name="Billing"><dir name="Agreement"><file name="Collection.php" hash="8eb04fca8b320456022468a265c6427b"/></dir><file name="Agreement.php" hash="cf9629a1a13e31d77870d3ac2bdbfc7f"/></dir><dir name="Collection"><file name="Abstract.php" hash="5745a045d2da0ed9c34bf4bf7bf530b7"/></dir><dir name="Order"><file name="Abstract.php" hash="2205dd76f956379d57f792b905af6b7f"/><dir name="Address"><file name="Collection.php" hash="724b01a15b6b5525fd973f0f2392084a"/></dir><file name="Address.php" hash="99aadaff06cc6161f52b8736b4264e21"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="92529e84cdaf822bc3f0da07f4dcabce"/><file name="Child.php" hash="60cc07234422ef58c1b03cfeff361f03"/><file name="Parent.php" hash="80a5a08f5d4365b3445b1d760921b264"/><file name="Shipping.php" hash="179a5046e2bf906c9e15ee9502f414d9"/></dir></dir><dir name="Collection"><file name="Abstract.php" hash="d54f76c09e175a31c06de3b0b6bd99c8"/></dir><file name="Collection.php" hash="dd8e13a6cb65ac433919144ee0eb5f85"/><dir name="Comment"><dir name="Collection"><file name="Abstract.php" hash="77c699290f59a018c1240d90d9269fb9"/></dir></dir><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="5d296403bc76c78669eb8920e894f783"/><file name="Parent.php" hash="0405ace15d33a5786cfb37adb62829f7"/></dir></dir><file name="Collection.php" hash="fbf7a098ad344066bfbd85f0d102e2cb"/><dir name="Comment"><file name="Collection.php" hash="33d5a81d8714234ec261a225e9c81e1f"/></dir><file name="Comment.php" hash="004efaf9a64c480f0c290ee388dc167d"/><dir name="Grid"><file name="Collection.php" hash="f2bdf00947c199bb493b8d5b9c6cb88f"/></dir><dir name="Item"><file name="Collection.php" hash="cffb20bf99cb35fc2f881c16f96a52ae"/></dir><file name="Item.php" hash="ec1a347292f9fbd6357c25c83c286f63"/></dir><file name="Creditmemo.php" hash="f9eaee94b078ca08a818f53aeeeb70c1"/><dir name="Grid"><file name="Collection.php" hash="c965c410d075469f6b4c37051501cf98"/></dir><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="0f6946709b59c23f65f9bc689bca7459"/><file name="Item.php" hash="34f28e83e4c6eceb42f99d573526bdf8"/><file name="Order.php" hash="ac8fd222a3ae9cbaf65cea0fff845eea"/><file name="Parent.php" hash="42d4e8c93905cee50af24e9a9e73d554"/></dir></dir><file name="Collection.php" hash="9aae2526098dffa118e4ac6e05590e83"/><dir name="Comment"><file name="Collection.php" hash="a81a8cefce34573d0ca868d696d1768c"/></dir><file name="Comment.php" hash="d7c6a0cc2a19c5831b7f68e9ca300043"/><dir name="Grid"><file name="Collection.php" hash="d1aa2062bda30405129ccadb6b9267ad"/></dir><dir name="Item"><file name="Collection.php" hash="8b4799299fb28e06f461db06f640ee65"/></dir><file name="Item.php" hash="b076d92780aba5d3cfdd4d898eb542d0"/></dir><file name="Invoice.php" hash="8e08733babc64f9ad9fc8082a63f21c8"/><dir name="Item"><file name="Collection.php" hash="516059ed8f80debbd5dfa33e9c1dc15d"/></dir><file name="Item.php" hash="6b39fd1d9eb1c6e6fadd2f2254d22f43"/><dir name="Payment"><file name="Collection.php" hash="504592dc61d7dc0f10213e1f290a9b95"/><dir name="Transaction"><file name="Collection.php" hash="0d48a55677f5587e71744c39b6d94ea7"/></dir><file name="Transaction.php" hash="b36d3b1df5c3ce2d646213d80aeca672"/></dir><file name="Payment.php" hash="c87fdc1aaf1c97ffbfd29d4d72774e4e"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="de7306b095457481a9c5f8f490ac383c"/><file name="Parent.php" hash="1fd51c2afa71cbbbd3ec4333d7fc6e78"/></dir></dir><file name="Collection.php" hash="d7e5e4a997cc0a08105c1142c9d1474e"/><dir name="Comment"><file name="Collection.php" hash="0e8b5cf8128bd6897fcdbe4d4af1c45c"/></dir><file name="Comment.php" hash="13f2ebf5e867b2843c926dd6d115c62a"/><dir name="Grid"><file name="Collection.php" hash="b4feb9b732f5d12a048f0011342bf320"/></dir><dir name="Item"><file name="Collection.php" hash="a37520f66cb8fa5a84ae3e6813d16f51"/></dir><file name="Item.php" hash="4381424f85f9e17d0b6e7add263c8c38"/><dir name="Track"><file name="Collection.php" hash="a4a55023b40acd0c339ecfc94e7c363a"/></dir><file name="Track.php" hash="d0b5aba4a76ac567c2990606336b1b95"/></dir><file name="Shipment.php" hash="19f9f728c66d5ee75af0d5b3432cff58"/><dir name="Status"><file name="Collection.php" hash="0f3d7a23c2f9f45cb8a694b672d79859"/><dir name="History"><file name="Collection.php" hash="933c72d197423ebb6772ade4f54a46cb"/></dir><file name="History.php" hash="fb25824ff44e7ca8d21639730d3a24e8"/></dir><file name="Status.php" hash="14fadc8e3b14d1c4373a10a62a36b3b8"/><dir name="Tax"><file name="Collection.php" hash="27525be786f32dab9949e16287e140b7"/></dir><file name="Tax.php" hash="1d1d0506c29e686ad916121e5f80491e"/></dir><file name="Order.php" hash="ae05d4553b8f58e1db3098c467a4ffb0"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="e9fc093442d46ebb15279f3c65726f2a"/><file name="Parent.php" hash="77ad497cdba381bae3cd3c6cf003ce16"/><file name="Region.php" hash="78fd02130afd2546caa77520a319a9c4"/></dir><file name="Backend.php" hash="37b0965c326b5bbb51024725fa22134f"/><dir name="Frontend"><file name="Custbalance.php" hash="d95ef643204c2683c4c01c1ed3fe277a"/><file name="Discount.php" hash="2ab4e37ed97fc5ddcabb5585e417a44b"/><file name="Grand.php" hash="e6fec6142d28bf5c7ed798e108a257ac"/><file name="Shipping.php" hash="de3d1c4d9b3d6e1fd3b592508d16f322"/><file name="Subtotal.php" hash="9fa4b1c6eb41e6988008656c037a45e1"/><file name="Tax.php" hash="c31fd218b7b28e58f93b89a1057dd8d6"/></dir><file name="Frontend.php" hash="e82da0f328cad210e9640c3f8f05a935"/></dir><file name="Collection.php" hash="0860a2c37e4cdad369d76db11d380c36"/><dir name="Item"><file name="Collection.php" hash="3467ccfa3d3e100b6a3ab71553b98920"/></dir><file name="Item.php" hash="c61953301ddc5cd7d3704bd022d0d72f"/><dir name="Rate"><file name="Collection.php" hash="af58177e561821f65611e5a6e41047fe"/></dir><file name="Rate.php" hash="0f19af601917214c9e87a7ba70eb6b9f"/></dir><file name="Address.php" hash="69bbaf2f106215a0a5397eb8db4ec8ec"/><file name="Collection.php" hash="b50fbbb1edab69c059c57aac52974464"/><dir name="Item"><file name="Collection.php" hash="37dc1ea1eb4f224d861264827f07165c"/><dir name="Option"><file name="Collection.php" hash="8db3da4f918597e32ddc4979c853244c"/></dir><file name="Option.php" hash="327240a45ea1837f0e6708625ae2d278"/></dir><file name="Item.php" hash="37e193105aaf064abe4b08d35dabc4c5"/><dir name="Payment"><file name="Collection.php" hash="6a455205b275a0441ff8c1982a66ccdf"/></dir><file name="Payment.php" hash="c385ee973557ab4ef43c7966a33b6f3d"/></dir><file name="Quote.php" hash="07a9bfdb23e4cac97733b652f93135d1"/><dir name="Recurring"><dir name="Profile"><file name="Collection.php" hash="4e7282f0e1119951a8a6441dd1c5d1ac"/></dir><file name="Profile.php" hash="083e635386dfe0e6ec06cf32a01350f1"/></dir><dir name="Report"><file name="Abstract.php" hash="72423a17341d840a12de7ff9b220f5d8"/><dir name="Bestsellers"><file name="Collection.php" hash="d794fac5ed9ee4d1cdf37462b8cf49a4"/></dir><file name="Bestsellers.php" hash="133f959198894b15d3c88d2d55b75b2a"/><dir name="Collection"><file name="Abstract.php" hash="47f4c3737dd55b617463f84e0c9ffbd8"/></dir><dir name="Invoiced"><dir name="Collection"><file name="Invoiced.php" hash="cd2dd7859f904b13a2b106dab184ad94"/><file name="Order.php" hash="c68c840383473257ade6194cfb9f4656"/></dir></dir><file name="Invoiced.php" hash="ade59351b22ebb7ccd5b79c4900e9ebf"/><dir name="Order"><file name="Collection.php" hash="e418067072e6f6386aaedb856e96deda"/><dir name="Updatedat"><file name="Collection.php" hash="1a76e6a7e3051acb16bf1012379e6ba2"/></dir></dir><file name="Order.php" hash="b22865544251faf56f0869884bbbe8fc"/><dir name="Refunded"><dir name="Collection"><file name="Order.php" hash="d672b8301762156d55c909a7e3b46d72"/><file name="Refunded.php" hash="ff8ea5ce713298619c6289aa277824a9"/></dir></dir><file name="Refunded.php" hash="be9f4ca5b98a6c64f1174972ec951dc0"/><dir name="Shipping"><dir name="Collection"><file name="Order.php" hash="d67dc4205049ded58dd3078bb770d332"/><file name="Shipment.php" hash="f1723ff61ce1cd9528ece72ff15a66ac"/></dir></dir><file name="Shipping.php" hash="0389607383a5b0768fac317c005c7e6e"/></dir><file name="Report.php" hash="33c1f5f714eadd74b13d5bef73a717ac"/><dir name="Sale"><file name="Collection.php" hash="fec4647b49e88c2eb14402f39cc23bdc"/></dir><file name="Setup.php" hash="846a29dfef800d3f56b6c92e9876e6ce"/></dir><file name="Observer.php" hash="b56f326698b87fe8f3baf565ebb45f27"/><dir name="Order"><file name="Address.php" hash="4fb00df3907250b80b24f3218a9299c7"/><dir name="Api"><file name="V2.php" hash="534784b31f145841147e38e8bc6a4c97"/></dir><file name="Api.php" hash="63df461d2899045c07d3b2284bd39e0c"/><file name="Config.php" hash="882b64d08c077be0bc7ef4a831be73b9"/><dir name="Creditmemo"><dir name="Api"><file name="V2.php" hash="72764469b784b6f85792b8387ce64628"/></dir><file name="Api.php" hash="781411279266eef9df7406d229650398"/><file name="Comment.php" hash="3fc0435033d31d13a7b705ac0a291c25"/><file name="Config.php" hash="df2ff760b0b3a3fbe98abdae29018594"/><file name="Item.php" hash="2d5d563684ab480f186bfc1c83fc1d53"/><dir name="Total"><file name="Abstract.php" hash="5197bd5c4aa13de9bf097a03458abcc5"/><file name="Cost.php" hash="3bfd9a985a656a90ca906d461a3de32c"/><file name="Discount.php" hash="11323f45fc371202c429bbe24c9d9844"/><file name="Grand.php" hash="bc544084c3e9575b2718d0107d8b35f0"/><file name="Shipping.php" hash="5938e8665337857feaaae1ce73ae130b"/><file name="Subtotal.php" hash="01e804e0b3f2b2e85eb0f956d658db4b"/><file name="Tax.php" hash="109eac214106a7368ff9bdacf75df7e7"/></dir></dir><file name="Creditmemo.php" hash="747365287074084ba03f82687841c526"/><dir name="Invoice"><dir name="Api"><file name="V2.php" hash="64fc796e50ef3f23b318db0a4bfb91dc"/></dir><file name="Api.php" hash="ccf13d580bccf5222bbb1d82b377489d"/><file name="Comment.php" hash="2e001d6dd47b658009f19f922a635ed0"/><file name="Config.php" hash="06fcb4ce9f75aa1389b6e2b03428566a"/><file name="Item.php" hash="d61ccc2c8fbe0ff527dd9e20116f506f"/><dir name="Total"><file name="Abstract.php" hash="9b5d109f01b1324aba99cfce481c69a5"/><file name="Cost.php" hash="35cfa418a577c927f1a452b5f62900f3"/><file name="Discount.php" hash="276b2fbd2cba85569bbb31a7a39482e5"/><file name="Grand.php" hash="d1ce60b72f0af753dd96ef22899c63f5"/><file name="Shipping.php" hash="1960cea9df2edd567c0bd0bb90221dbb"/><file name="Subtotal.php" hash="130ea45c4bb51d6548e1a1cf98c96fb1"/><file name="Tax.php" hash="1b181db6040fe4afffd1bfdc60cdffab"/></dir></dir><file name="Invoice.php" hash="a6c10f985687a7b4acbb8f85bcd49fac"/><file name="Item.php" hash="113c2e2bee875b300ebce3e8034bbfdf"/><dir name="Payment"><file name="Transaction.php" hash="79eb9928be293354eb8145ce6c730c01"/></dir><file name="Payment.php" hash="2c40800783cc5a72d7795fb4bb187920"/><dir name="Pdf"><file name="Abstract.php" hash="abf15bffb1303b181068471243da64b9"/><file name="Creditmemo.php" hash="fb3a18014b8ce2e0016b738608d4489b"/><file name="Invoice.php" hash="b07bcb04906e7060bc9a9f60eba41729"/><dir name="Items"><file name="Abstract.php" hash="37934d639d4fe43a6ae87d4f64b28c19"/><dir name="Creditmemo"><file name="Default.php" hash="804c23997acf7740ed1edb14c7a5e845"/><file name="Grouped.php" hash="8dd06cb686e4cd66e8e4f6eb35695c22"/></dir><dir name="Invoice"><file name="Default.php" hash="ca7f5bdd305e97c0c9b1c6a00744b4d7"/><file name="Grouped.php" hash="d865a39d845a1f22e22d40c319a01039"/></dir><dir name="Shipment"><file name="Default.php" hash="6997bc2a4db9b7c99c389b9b06970a34"/></dir></dir><dir name="Shipment"><file name="Packaging.php" hash="36231327f37ba1f940932dc41586dcd4"/></dir><file name="Shipment.php" hash="0818f6b1011db0313d15667291099a6e"/><dir name="Total"><file name="Default.php" hash="055649b536a9914e9f548b928d828da0"/></dir></dir><dir name="Shipment"><dir name="Api"><file name="V2.php" hash="14c2a8eb871c55826290ab7835122261"/></dir><file name="Api.php" hash="d17a4d0c91c0f506136ad3c42a62294c"/><file name="Comment.php" hash="efcadafa212c94b7282735df2da78a0b"/><file name="Item.php" hash="1b87fabc18ee0c01ba5e1127535ed999"/><file name="Track.php" hash="5e1d84a59eabc03a79ecd93a82464313"/></dir><file name="Shipment.php" hash="7532100294e2732c759735896c59cef6"/><dir name="Status"><file name="History.php" hash="e8b32821ea1300da7390d718a07e04f1"/></dir><file name="Status.php" hash="b1109818e5c6a2c030af53faf1ef9e7e"/><file name="Tax.php" hash="353827fe239a3d7b733c89a4cd88afda"/><dir name="Total"><file name="Abstract.php" hash="9a1b728591831a9aef02371ca5a6ebc0"/><dir name="Config"><file name="Base.php" hash="e4b41c96c56da8198f53e3fdd0f7c23b"/></dir></dir><file name="Total.php" hash="853bea3d7aa0b855dba937e5f9e0a4d1"/></dir><file name="Order.php" hash="ac4fa091d4383a651dbcea97cca4bf7e"/><dir name="Payment"><dir name="Method"><dir name="Billing"><file name="AgreementAbstract.php" hash="b520baa40c13572a71de6a092f4909ef"/></dir></dir></dir><dir name="Quote"><dir name="Address"><file name="Item.php" hash="1b5fb3611621203f05666c842ad15158"/><file name="Rate.php" hash="31c493c1a17997ef8b1fbf1b61f14a1e"/><dir name="Total"><file name="Abstract.php" hash="0a5ca5eda0138e65abee3c554c4145cc"/><file name="Collector.php" hash="c21fb70fe54a40848028085dc697125e"/><file name="Custbalance.php" hash="885e9d6f3b631ceebe3160765ce5df0f"/><file name="Discount.php" hash="3d1267c2d597c425b9d0a84f1d389769"/><file name="Grand.php" hash="153a3fb341eeb16345ec619ae4ae1d84"/><file name="Msrp.php" hash="1c25aaa2f4e6607029e4864adf925f8d"/><dir name="Nominal"><file name="Collector.php" hash="28815a4f3337a4d02e18b86b3ee153cf"/><dir name="Recurring"><file name="Initial.php" hash="63ca5f8b77273fb72fed55e7ebc00660"/><file name="Trial.php" hash="8aa7ca94a9292df856fab5a11dc8db60"/></dir><file name="RecurringAbstract.php" hash="d06d2d6b3ecaa369c86151823552b43c"/><file name="Shipping.php" hash="2ad9e85141d6a757843b8cfb22ec9dc2"/><file name="Subtotal.php" hash="98651d2f26257767940b8eb98d26ce83"/></dir><file name="Nominal.php" hash="9e30b872ac5583d91da86870feca3906"/><file name="Shipping.php" hash="27519b70a9d07cbda1fafe79055256b5"/><file name="Subtotal.php" hash="28a67b62fdcea9d13290c636c2db7d3a"/><file name="Tax.php" hash="5a7bb0d60ef0610e4bcdb1a1d7c55253"/></dir><file name="Total.php" hash="e535b46fe16f75a27762b0da4c2f72ab"/></dir><file name="Address.php" hash="e432e41244c07ecda876b7946fb9bb0d"/><file name="Config.php" hash="e94d3e36ab3c8d5311aedaad5bcc0044"/><dir name="Item"><file name="Abstract.php" hash="6e0ad7d6f577d5302838b7e1e5fabef5"/><file name="Option.php" hash="4d6774a3352f9c63327570128a405d14"/></dir><file name="Item.php" hash="3e59b3c0427513fe09b9f38b06d9c87f"/><file name="Payment.php" hash="d6f66e4a6672d210f7046df1c54c56d3"/></dir><file name="Quote.php" hash="6268655af7d410ee8918f8954b224765"/><dir name="Recurring"><file name="Profile.php" hash="ed1939d67661e7cd1e966d67cabd622f"/></dir><dir name="Resource"><file name="Abstract.php" hash="bb3fa9d878fa78092db0725f99485b4f"/><dir name="Billing"><dir name="Agreement"><file name="Collection.php" hash="e2de45da8bfa5dc1f284cf5d66d1ccdc"/></dir><file name="Agreement.php" hash="a01a1261aff4f694226c2ae2ac7acde9"/></dir><dir name="Collection"><file name="Abstract.php" hash="63b1475629e197a98fe40ac13629fb14"/></dir><dir name="Helper"><file name="Interface.php" hash="147730c666306422ad11b1e29813f3ff"/><file name="Mysql4.php" hash="da3d44b044f97fa3d0bf665d8f9aaa0c"/></dir><dir name="Order"><file name="Abstract.php" hash="c89bcccf0837522f8df52c2076b53250"/><dir name="Address"><file name="Collection.php" hash="cc2dd2fe5a465dbc63f5e749d2f643b5"/></dir><file name="Address.php" hash="ce727e6f55ea75c13526b5e0c7344aa8"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="380521278bea8e52217ef20c7e954de8"/><file name="Child.php" hash="e2f4672f4a28acf78d5c6db85fe38f10"/><file name="Parent.php" hash="c8e95f760159989293b6a725f9f890af"/><file name="Shipping.php" hash="610c2985dec1259c8d2bf86323299617"/></dir></dir><dir name="Collection"><file name="Abstract.php" hash="876e24623c60b619405c51dc1389fbeb"/></dir><file name="Collection.php" hash="6323ed02ae88e41f2f7a2bb0be392211"/><dir name="Comment"><dir name="Collection"><file name="Abstract.php" hash="4f87b9a306693ad16d7d28b6fbde0d65"/></dir></dir><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="05cbecbdffdd1ba3d7bcca4cab06a3af"/><file name="Parent.php" hash="140185eb8f95e9f1c00ee8930f5a0eaf"/></dir></dir><file name="Collection.php" hash="8a3c9cb01bf4d005df7d29328861ff92"/><dir name="Comment"><file name="Collection.php" hash="0468147271bde579d521f924787aa24a"/></dir><file name="Comment.php" hash="2948b4438f77d87303dc02ae044e1782"/><dir name="Grid"><file name="Collection.php" hash="88efcf06a33510572155b879f5da1112"/></dir><dir name="Item"><file name="Collection.php" hash="dcd41c105bac11fee487e707612c4a26"/></dir><file name="Item.php" hash="99fa2b7c8f7edb1bb58b42a0c91b0f8a"/></dir><file name="Creditmemo.php" hash="9cedf50e367316be7b4cd08dd467bbfe"/><dir name="Grid"><file name="Collection.php" hash="b90c3197336c59041ccd728552062068"/></dir><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="4404b290031e4ac2bc2edfb2b49945a3"/><file name="Item.php" hash="5cd01f9eaeb789332078647efa153019"/><file name="Order.php" hash="927ac8593bcec90577f11b32f0c419af"/><file name="Parent.php" hash="37ba99ebea13877b62737340a9c3ae9f"/></dir></dir><file name="Collection.php" hash="0d9d0cbf3c7fcfe874d3cc5e8cd85588"/><dir name="Comment"><file name="Collection.php" hash="f17f6670fa313175f3a68df46d046e49"/></dir><file name="Comment.php" hash="14263c1220f298a4fb96a6b3d5490516"/><dir name="Grid"><file name="Collection.php" hash="6044825c612f603479625a36d51cd5a4"/></dir><dir name="Item"><file name="Collection.php" hash="f641332d6a5056ac5a654d75d7391cf1"/></dir><file name="Item.php" hash="a54d1f3351f198c480acbfe59eec8f59"/></dir><file name="Invoice.php" hash="89cea67f80d9ff610bd4dad32d8f06ad"/><dir name="Item"><file name="Collection.php" hash="099f4fbac578ff11746eb0c9afa34c66"/></dir><file name="Item.php" hash="d293d5d6cf0e57fdc1f8a29abeec3672"/><dir name="Payment"><file name="Collection.php" hash="a52f6b8c3f5114d2d32178c054420b8e"/><dir name="Transaction"><file name="Collection.php" hash="5a3eaa4950d6d5c834406864e436ce28"/></dir><file name="Transaction.php" hash="7a6cdcb7915a88a6c9ba87eec044fe4d"/></dir><file name="Payment.php" hash="12e75efb37e93c99f95f208a40701a90"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="6f125ee051b5929a6a6420c05c77253f"/><file name="Parent.php" hash="bcc345216c895d0306f25511a331c861"/></dir></dir><file name="Collection.php" hash="85d2ef9b20e864cf59594bde9ab781c3"/><dir name="Comment"><file name="Collection.php" hash="7228dde2d9f1c859b876d5920a6dbd21"/></dir><file name="Comment.php" hash="9ce0aa25c2a8d4301dfe5793a1252e21"/><dir name="Grid"><file name="Collection.php" hash="5b119037fc8f1428216d2b6f1c14c82b"/></dir><dir name="Item"><file name="Collection.php" hash="05f59ba9fedb533f49eecd42869dc2d9"/></dir><file name="Item.php" hash="88f3b5a1c8d53066d59201baaad6fc53"/><dir name="Track"><file name="Collection.php" hash="486f084793b3e80101eb0c149857f479"/></dir><file name="Track.php" hash="f613a216ee4b46d5730286a73702324e"/></dir><file name="Shipment.php" hash="01b16a8742b10340454d64c88a2fb36b"/><dir name="Status"><file name="Collection.php" hash="3093d1e031eb5ada195d1e536d1bd93e"/><dir name="History"><file name="Collection.php" hash="45c723e4f18a95bfac834f9687da9591"/></dir><file name="History.php" hash="198380dc8ec4125b2ef30ad49cae2d99"/></dir><file name="Status.php" hash="4becc775985886e2c713a3be134e41fe"/><dir name="Tax"><file name="Collection.php" hash="48630f8428fb0e9b433d985e559e9b4f"/></dir><file name="Tax.php" hash="035d78fe8dfe3941c1f59cb87edfe913"/></dir><file name="Order.php" hash="184675e6b19edc3caea5931610e340ff"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="bfc3adb0652f589285be361b438fc46a"/><file name="Parent.php" hash="79f14031714bc48a2ac837db29b714e2"/><file name="Region.php" hash="a4b161caaaa1caa7c4a32b122df18931"/></dir><file name="Backend.php" hash="baee7114e9e70a13ff6e890f3ec92beb"/><dir name="Frontend"><file name="Custbalance.php" hash="33e6d7c62a17d0d9de17b1420b76f5a2"/><file name="Discount.php" hash="28f89e320956c98632c644b132f45ea7"/><file name="Grand.php" hash="761e3f30bb4733ec34916a603a3b11c8"/><file name="Shipping.php" hash="0341a5de87cb53e86580c0f0b8453dee"/><file name="Subtotal.php" hash="4bc601d878f277db0ffa1030bec3bc0d"/><file name="Tax.php" hash="d11b1368f86aa0eb642b4768ce259aeb"/></dir><file name="Frontend.php" hash="c856033f02e382ae3bf1444e2202b605"/></dir><file name="Collection.php" hash="db340efb958fd1a7cd202476a2d48cfc"/><dir name="Item"><file name="Collection.php" hash="1aa63a8d8d9f2166dd25695420f863d1"/></dir><file name="Item.php" hash="9ce106bd74428a1e9f22bdfab6c78052"/><dir name="Rate"><file name="Collection.php" hash="e6f9505624706001cf3769ece0542850"/></dir><file name="Rate.php" hash="03735d9f7fc040900b54d3b0f2e6c334"/></dir><file name="Address.php" hash="db89a2622b61383d74d37c1cffa63a1b"/><file name="Collection.php" hash="3536bf0fcdc50a9e0ce4941d42918e64"/><dir name="Item"><file name="Collection.php" hash="d98c418b3081916b4970ea5ad5cddf7c"/><dir name="Option"><file name="Collection.php" hash="142495ffca3915366453b019f373778f"/></dir><file name="Option.php" hash="db30d07a08675f38457f25c313836e61"/></dir><file name="Item.php" hash="cca7c49557609edd3290554feebe4396"/><dir name="Payment"><file name="Collection.php" hash="285bc9cb9be76c790093ca3d91e1b90a"/></dir><file name="Payment.php" hash="21b66bd9390d4e450fc9ebd669dda527"/></dir><file name="Quote.php" hash="c2f47503afc4f9c66bcf571fa32e6849"/><dir name="Recurring"><dir name="Profile"><file name="Collection.php" hash="d62eb78e186f22bd4acf0bbd06dbad71"/></dir><file name="Profile.php" hash="ceb18be338e89359d86ca55fdeb670fa"/></dir><dir name="Report"><file name="Abstract.php" hash="01c98d1e22afa37596efc555fe1f6807"/><dir name="Bestsellers"><file name="Collection.php" hash="babbafd1ed466e7d3a3f965a5c8a0879"/></dir><file name="Bestsellers.php" hash="1c0d728590bf20efc39662289a7899de"/><dir name="Collection"><file name="Abstract.php" hash="219df71f35fa9e8471e014c6c9ef4425"/></dir><dir name="Invoiced"><dir name="Collection"><file name="Invoiced.php" hash="7aa2dbc91a99b6fe06e4b0f3b4fc0930"/><file name="Order.php" hash="5e0f07fd9b9ff88a938244b1b3871d6c"/></dir></dir><file name="Invoiced.php" hash="97abc7fb033e4defa42ce48dd5db8d7b"/><dir name="Order"><file name="Collection.php" hash="b531be060d87b22c2c2bcb604c7979a7"/><file name="Createdat.php" hash="e86da6c1ce34083074dcb28ba8ce35f2"/><dir name="Updatedat"><file name="Collection.php" hash="cac693f2f5da7fdfdd9efb84117e2a3c"/></dir><file name="Updatedat.php" hash="868a3a96f29e348100e9016e87e9eada"/></dir><file name="Order.php" hash="c111a740c477892169762a6a840bf862"/><dir name="Refunded"><dir name="Collection"><file name="Order.php" hash="b55b59b9bb6b903419af882c5f44900d"/><file name="Refunded.php" hash="f53afcdbc3f9d7da39bafbca83ea6d6c"/></dir></dir><file name="Refunded.php" hash="4222628cd9ddc5e89937ef94dbe9cb24"/><dir name="Shipping"><dir name="Collection"><file name="Order.php" hash="1b9cc6e83990118fd00575352d010fc2"/><file name="Shipment.php" hash="1c6cc56cb505e8cde2bb39228eba1111"/></dir></dir><file name="Shipping.php" hash="64dde30a2ae898da08a920d3d2f338de"/></dir><file name="Report.php" hash="b9f5ed87c36844e2db463d9fe335d1f6"/><dir name="Sale"><file name="Collection.php" hash="34c2f31243ab65c9155999e4f4b45e6f"/></dir><file name="Setup.php" hash="d75864f53c9ddf94cbd4a39b62ce5483"/></dir><dir name="Service"><file name="Order.php" hash="96355bef3b5bef406010870313ec1642"/><file name="Quote.php" hash="514ed949b4b3c51124d0439a8ef62bc0"/></dir><dir name="Status"><file name="List.php" hash="511ffdddbb21fc65a69f7c6069143318"/></dir></dir><dir name="controllers"><dir name="Billing"><file name="AgreementController.php" hash="5cd6750e5287cde2d64866ac95fa6db3"/></dir><file name="DownloadController.php" hash="b60e374c195495126d3b91e55461f2b1"/><file name="GuestController.php" hash="935749f7139cbe2732a732aba4f9fc08"/><file name="OrderController.php" hash="d9bd0af5264adf8e0469ddf2d62c0e02"/><dir name="Recurring"><file name="ProfileController.php" hash="b9bb37e315250dfe3b67d3ab400aa32d"/></dir></dir><dir name="data"><dir name="sales_setup"><file name="data-install-1.6.0.0.php" hash="f23c333d4cb1d96e9db27bc14d57a2d9"/><file name="data-upgrade-1.6.0.4-1.6.0.5.php" hash="82aeff48403117ae7598707b7687475a"/></dir></dir><dir name="doc"><file name="invoice.txt" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="order.txt" hash="5dce876530c94ebbedbba7a234c23846"/><file name="order_actions.HTM" hash="b955e61bff753ea0534f907ef6ba9bb6"/><file name="quote.txt" hash="55ecfbdd576958ff1b1fbf16957ba9df"/><file name="test.php" hash="b5549c8453a19a0d76a4a297f022f1c2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="70d3c7c5c488ba57f34525ba3e234195"/><file name="api.xml" hash="d093edfc348879b7fe2dec114d3cd0be"/><file name="api2.xml" hash="f6d5d59215b38998e40bcecd136cf642"/><file name="config.xml" hash="d8939016e11046ca9a18054adde9f33a"/><file name="system.xml" hash="2c48fb2c02498231b507e7653fe08863"/><file name="widget.xml" hash="0b21221a0462e238fb54da795fda6cc7"/><file name="wsdl.xml" hash="1b77a06343d3e0f0c5f0b8ccc43ac33d"/><file name="wsi.xml" hash="fc3a1f0c94f62d91888ee90f61c6105e"/></dir><dir name="sql"><dir name="sales_setup"><file name="install-1.6.0.0.php" hash="8491d7e30881c52f7362b1e7bd0fcb86"/><file name="mysql4-install-0.7.0.php" hash="c3fa859432123b01ba68aaaa287252e2"/><file name="mysql4-install-0.8.11.php" hash="6dd8f6c62702e0b041531dfb1af1a8b7"/><file name="mysql4-install-0.9.0.php" hash="36cf6ce91a761598a95f8b27e6c223ed"/><file name="mysql4-install-1.4.0.0.php" hash="f4476f8eb44e7a9afa174020b506d102"/><file name="mysql4-upgrade-0.6.2-0.7.0.php" hash="a3e00558cf329875323fc5928662a16c"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="47677eca1b4e5b9539ea4e723510a116"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="a40cbe5a93bc7da1d35c2d97b933f6b0"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="fa15c837c2672487d1e6c0875ef8efb0"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="3564b476c7e137955572022fbcee9085"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="003fbdb74ef91c31a1703f1430dd49da"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="fe23c5a11116e39b00e4aed6cc52cfd7"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="af2d79e25c53252b0f199000aaaee178"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="50d6ac885b60123bb4a56ed440d46739"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="22ee8966807fcdbc8157a78fd1c0ceab"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="61ec789a63ffa95842eead4a5d78f865"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="789ca14dd06dd97fb1da5d88f87011d7"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="148247600773ff4a6eb297fd4edf8942"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="30a7c9b268b1bdb17dd41330003c6717"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="4789138b99eb2fb40037646dccf3755c"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="7c8c8bd1b4a4be30bf33c48f23116e2d"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="26e2353a2f4f982c521a0087aa7cc4b6"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="1e50b53abdb1a66b14f490a166dace09"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="07055be30200fcba70ad97515d071966"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="728cb398e2b40c978fd284bdd8768a01"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="c3e76400303b947f6f85832963e624a6"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="4c6af8dbc85b1fd9e41fc5a10c92358b"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="df6bd9c3039cf191be15f82653c9e1c1"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="5c837b091a1114c3ad2116bc46c86078"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="662378136cf1567371536c88dbd3156b"/><file name="mysql4-upgrade-0.8.28-0.8.29.php" hash="288979583473aa12a5fe783aab9ba115"/><file name="mysql4-upgrade-0.8.29-0.9.0.php" hash="26e037218cc0029aa70df740cb3f94c4"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="55be4438938bbe47b6ae6f35ca504be4"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="26e2353a2f4f982c521a0087aa7cc4b6"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="c41423c25007c192eb31b877af426f25"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="edcb180b982d7cad57c3c221547c8669"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="af29a88b4c51b6afe73484ecf374adfd"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="00d08f8af7acbff8dda0c918c4a17dbb"/><file name="mysql4-upgrade-0.9.10-0.9.11.php" hash="7270b5288c1bd55442b6cbb296bdb9db"/><file name="mysql4-upgrade-0.9.11-0.9.12.php" hash="5e0c7c7d6053b7b5761cb0d22c6fadcd"/><file name="mysql4-upgrade-0.9.12-0.9.13.php" hash="e8d2540302b7818a88afbef85211d816"/><file name="mysql4-upgrade-0.9.13-0.9.14.php" hash="dc7ecad5336261a52e58ee21f35a7721"/><file name="mysql4-upgrade-0.9.14-0.9.15.php" hash="c07de32ed657c563f6b667f37fc53744"/><file name="mysql4-upgrade-0.9.15-0.9.16.php" hash="834e6026736275dab0ee1727cf4dd05c"/><file name="mysql4-upgrade-0.9.16-0.9.17.php" hash="5fe238076f481d093502e5e375a66a2b"/><file name="mysql4-upgrade-0.9.17-0.9.18.php" hash="718999fbb1e34ea826f84fc967c81799"/><file name="mysql4-upgrade-0.9.18-0.9.19.php" hash="ca0bcd837672fd9b3d176783bf04793c"/><file name="mysql4-upgrade-0.9.19-0.9.20.php" hash="47c73fae043a94b9bc7e7432e1391b54"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="d4198d07e1e94f9ff199961ca754b085"/><file name="mysql4-upgrade-0.9.20-0.9.21.php" hash="77f5eb083483e4cec1ad1c06bdd86659"/><file name="mysql4-upgrade-0.9.21-0.9.22.php" hash="32a662417a9f1ab54452ddcbacd29a64"/><file name="mysql4-upgrade-0.9.22-0.9.23.php" hash="0fd99fe3faf053fd2ec276c7ed90378e"/><file name="mysql4-upgrade-0.9.23-0.9.24.php" hash="dd5b59547af540c0354836330aa9b3a9"/><file name="mysql4-upgrade-0.9.24-0.9.25.php" hash="082c8b9bba4f63dfd02251f5a5a15be0"/><file name="mysql4-upgrade-0.9.25-0.9.26.php" hash="938989c2f52b0ea7d76e829df0a12901"/><file name="mysql4-upgrade-0.9.26-0.9.27.php" hash="b06480b9f22f88c5708d378a22bdbf70"/><file name="mysql4-upgrade-0.9.27-0.9.28.php" hash="8eb60aed3fb4becca8e31c7d7859cd1f"/><file name="mysql4-upgrade-0.9.28-0.9.29.php" hash="57857a6523102cbf55f7bf30e8e62323"/><file name="mysql4-upgrade-0.9.29-0.9.30.php" hash="c12bf15d272d9d2756f13b23fd3d7e27"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="a801c6aa98d5106b471a49f3b9aeb1e0"/><file name="mysql4-upgrade-0.9.30-0.9.31.php" hash="1b5fa7f3e0ba46946ff3d87eeb9021e1"/><file name="mysql4-upgrade-0.9.31-0.9.32.php" hash="45967264ce38ddedc1ff8a3d70842739"/><file name="mysql4-upgrade-0.9.32-0.9.33.php" hash="b2c8ce99a42b96f2c179e02fe9fef129"/><file name="mysql4-upgrade-0.9.33-0.9.34.php" hash="3f47d16b6a58dfbfc5bd18d3237a1cdb"/><file name="mysql4-upgrade-0.9.34-0.9.35.php" hash="b753a86d088d6dddc4f4a6d88e385405"/><file name="mysql4-upgrade-0.9.35-0.9.36.php" hash="2a096f72b39842eba61be4fdf384886c"/><file name="mysql4-upgrade-0.9.36-0.9.37.php" hash="555b92ccb9b005cde7cb2dad4afda01b"/><file name="mysql4-upgrade-0.9.37-0.9.38.php" hash="959039d640a64f2dc0767e4d98f4357b"/><file name="mysql4-upgrade-0.9.38-0.9.39.php" hash="21075f477c7ea3fde3a8dee4fbeba585"/><file name="mysql4-upgrade-0.9.39-0.9.40.php" hash="4da19c6a5340fe969652d4b5a28925c7"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="20f48604c6a36364d79c2cdeb4cf7d11"/><file name="mysql4-upgrade-0.9.40-0.9.41.php" hash="4cf4fed4f9b59387cfbfbd9416c37b44"/><file name="mysql4-upgrade-0.9.41-0.9.42.php" hash="a4d2fade2d8ebee6b628185458262e2f"/><file name="mysql4-upgrade-0.9.42-0.9.43.php" hash="f60f5f616dd0fdf24ca5ed8a876f945f"/><file name="mysql4-upgrade-0.9.43-0.9.44.php" hash="b5230ab4c00bde0d24aaf5de1eeeec6a"/><file name="mysql4-upgrade-0.9.44-0.9.45.php" hash="8d831d8eb9e50f3761d9bd645080b51b"/><file name="mysql4-upgrade-0.9.45-0.9.46.php" hash="6f6cefd87cc3c6bc40552d0a1bd94a1e"/><file name="mysql4-upgrade-0.9.46-0.9.47.php" hash="8a2ae3d08a310088b18fac67a2206528"/><file name="mysql4-upgrade-0.9.47-0.9.48.php" hash="d4cd8d05bcdd08d14d5631aa3b0db6d4"/><file name="mysql4-upgrade-0.9.48-0.9.49.php" hash="a1595e1920f80b4cf056a18c934a8b0c"/><file name="mysql4-upgrade-0.9.49-0.9.50.php" hash="67954dd6119b69fdb921aa4f5e6fa8bb"/><file name="mysql4-upgrade-0.9.5-0.9.6.php" hash="ab1ca96174c4ad0c00c197a817c251e0"/><file name="mysql4-upgrade-0.9.50-0.9.51.php" hash="45e5b89ac9016a2ed35cbfc5f90cac34"/><file name="mysql4-upgrade-0.9.51-0.9.52.php" hash="78603937f6b82b5bab9881b315e6cfb7"/><file name="mysql4-upgrade-0.9.52-0.9.53.php" hash="e8ca596a12b3cc09aeaa71abb6ff3ade"/><file name="mysql4-upgrade-0.9.53-0.9.54.php" hash="9ab31eb77e250bb578a457fa98480c7b"/><file name="mysql4-upgrade-0.9.54-0.9.55.php" hash="a8828ae33833fc101bc68791b04e6af7"/><file name="mysql4-upgrade-0.9.55-0.9.56.php" hash="20184bd951afef659143b3cb6d8e6dea"/><file name="mysql4-upgrade-0.9.6-0.9.7.php" hash="ab269d593840dd2bd0f34dd1bafcbd16"/><file name="mysql4-upgrade-0.9.7-0.9.8.php" hash="b483b4187a3fa3f66c7ee90033a5ce23"/><file name="mysql4-upgrade-0.9.8-0.9.9.php" hash="eb6c4a4f17b226a426878b42d5047978"/><file name="mysql4-upgrade-0.9.9-0.9.10.php" hash="94db93c5cf9f1119387a9e45984e5c30"/><file name="mysql4-upgrade-1.3.99-1.4.0.0.php" hash="5c2f7d3d1a6107993ec7a22f6a03274f"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="1a7f0d81c39fdfc7f54b4b110ece7100"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="9aa120008e9e8c5b4eef14d9c5d28c37"/><file name="mysql4-upgrade-1.4.0.15-1.4.0.16.php" hash="6ff4f4e65edeacdb89ac5cb7b08a062c"/><file name="mysql4-upgrade-1.4.0.16-1.4.0.17.php" hash="3eee9335df0e1403c46ff32ecb0574d9"/><file name="mysql4-upgrade-1.4.0.17-1.4.0.18.php" hash="5f49e3105da9640d838d75866f06216a"/><file name="mysql4-upgrade-1.4.0.18-1.4.0.19.php" hash="f061971041bb4f929de022d05311d527"/><file name="mysql4-upgrade-1.4.0.19-1.4.0.20.php" hash="453745371cf416e68d7b9ba82af442cb"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="f985bb4a152c060d4fca1100759fa0e9"/><file name="mysql4-upgrade-1.4.0.20-1.4.0.21.php" hash="419c8473e44fac144bba4654d8635e8c"/><file name="mysql4-upgrade-1.4.0.21-1.4.0.22.php" hash="00073ba07b5d3a8d56e875e3dd1bb749"/><file name="mysql4-upgrade-1.4.0.22-1.4.0.23.php" hash="b944bd60266f674c6eacff21dc6bea31"/><file name="mysql4-upgrade-1.4.0.23-1.4.0.24.php" hash="590d9090d226ff8671cd58b6b6f4d8d1"/><file name="mysql4-upgrade-1.4.0.24-1.4.0.25.php" hash="57cc002b5c8a06716322e7793bd91cbb"/><file name="mysql4-upgrade-1.4.0.3-1.4.0.4.php" hash="2b0cd492fbf6afa006b770c8e8b5e1a1"/><file name="mysql4-upgrade-1.4.0.4-1.4.0.5.php" hash="747c5cb12a9827935fcb3a628404601a"/><file name="mysql4-upgrade-1.4.0.5-1.4.0.6.php" hash="5186b41a122b5dcba9caae4203c4a328"/><file name="mysql4-upgrade-1.4.0.6-1.4.0.7.php" hash="5ab13f4d019f2f29b5718b7802362f8b"/><file name="mysql4-upgrade-1.4.0.7-1.4.0.8.php" hash="51ced6040325e207e46832ec7d4a855c"/><file name="mysql4-upgrade-1.4.0.8-1.4.0.15.php" hash="aac3f09e20dd7e5e8d16d6852fe0ba8b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ad4bd503ee2a274ab62b14a9798b72e2"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="193580f40b48d11eeb1bd25f7941fa2e"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="91035771b0b5056393e5d6d3eaae8761"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="5a706eaac9aff7be5c12d9f4bc92cd47"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="489c4d34b85db66c5f1e39e65c2a80a7"/><file name="upgrade-1.6.0.4-1.6.0.5.php" hash="42c63eb32d65d13100641e698bc789c3"/><file name="upgrade-1.6.0.5-1.6.0.6.php" hash="aea7887d87a6bbef8f208c11117e0f3a"/><file name="upgrade-1.6.0.6-1.6.0.7.php" hash="e8bb724083d71aa80825cd4b3cbf4db0"/></dir></dir></dir><dir name="SalesRule"><file name="Exception.php" hash="f11c2ffe2fad7a1f81fb7ca19cace8f6"/><dir name="Helper"><file name="Coupon.php" hash="5e2295d1952855bc56d5ed243be40603"/><file name="Data.php" hash="a526d91c8582ac367f4dbf5f4c445cdf"/></dir><dir name="Model"><dir name="Coupon"><file name="Codegenerator.php" hash="15e4939def4c50635079f9d78386ae00"/><file name="CodegeneratorInterface.php" hash="5ba41a121e27a7505f1a4b7f2ed5d2bd"/><file name="Massgenerator.php" hash="6cc18974fdbfdd0d421e07e5f51ddf37"/></dir><file name="Coupon.php" hash="cbae409a26936d20a77829202cc8d633"/><dir name="Mysql4"><dir name="Coupon"><file name="Collection.php" hash="a9d0a648e5fcc54f59a475a2095e3d9c"/><file name="Usage.php" hash="93fbd206e6f104923a1ca4257c2c2988"/></dir><file name="Coupon.php" hash="7425636c9b1d09822a14236f8e7b8a14"/><dir name="Report"><file name="Collection.php" hash="e4e8565ce57e3a143818595193fe54b8"/><file name="Rule.php" hash="55d9169a8e142897a9b07fd1bf54f43b"/><dir name="Updatedat"><file name="Collection.php" hash="3e5674aabf69501972c58df567b7f5ec"/></dir></dir><dir name="Rule"><file name="Collection.php" hash="79cadad0eb8b7fa8427a2a3a11b4f521"/><dir name="Customer"><file name="Collection.php" hash="56de2dd3fa2310c672b35478228244b1"/></dir><file name="Customer.php" hash="ec263aca6e07b1f6995041da16eccc65"/><dir name="Product"><file name="Collection.php" hash="6e18ab35eea32bb33c34228e10752b1d"/></dir><file name="Product.php" hash="b711a1410f3f11cc5ae60284f6c82dc5"/></dir><file name="Rule.php" hash="0907aff36dd3daed176a7b224837e8eb"/></dir><file name="Observer.php" hash="87f385bca892f42a4adf6b4193930e76"/><dir name="Quote"><file name="Discount.php" hash="959d3fd90a866799d11d8cecbe780413"/><file name="Freeshipping.php" hash="8f441a3a4e206c71c967b62c95375376"/><dir name="Nominal"><file name="Discount.php" hash="3b26d401119cc27513a2a283aa4d1443"/></dir></dir><dir name="Resource"><dir name="Coupon"><file name="Collection.php" hash="6101208ecbd435f35ba1d3bcc6e93531"/><file name="Usage.php" hash="65e2b2655b27516e727bf60c1885c0b7"/></dir><file name="Coupon.php" hash="6d3b283445356c3ededc8581dd814eed"/><dir name="Report"><file name="Collection.php" hash="efd04980d36378ca9d3aae646b5169c9"/><dir name="Rule"><file name="Createdat.php" hash="9bae976aed02b34c5d3b2c1895d26861"/><file name="Updatedat.php" hash="3fb0f61085be199da7a07430cd9dd65f"/></dir><file name="Rule.php" hash="06cec9665cdefdcaf5e9d9d666258499"/><dir name="Updatedat"><file name="Collection.php" hash="adaa9de3c68e2b21073d4054d987f3f4"/></dir></dir><dir name="Rule"><file name="Collection.php" hash="52ed69a72eae48008f30b84d311f0e81"/><dir name="Customer"><file name="Collection.php" hash="62a11956bce8dc72dad898360ae3c679"/></dir><file name="Customer.php" hash="e11a8981754ee393ee049b3362472b2b"/><dir name="Product"><file name="Collection.php" hash="c7dc1c93be00a9a833dba78f35e14259"/></dir><file name="Product.php" hash="7c1d9c1c99218fcf9d62cdeecbf9837b"/></dir><file name="Rule.php" hash="5e47afa0c21bd94ba2f4b17ef6ee5a69"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="146337683c2f535de04f6455d4d5475d"/><file name="Product.php" hash="e7024cdcb7808675a432b7c41ea58ddf"/></dir><dir name="Condition"><file name="Address.php" hash="e0a48daff74a870a256788eff783df7d"/><file name="Combine.php" hash="73aaae96a91e2947ae0e1b171b2d1644"/><dir name="Product"><file name="Combine.php" hash="49238a84aa3a506ce343609c301f0580"/><file name="Found.php" hash="ec1d9f9f693534ca09b876ab835f1e41"/><file name="Subselect.php" hash="3a332790f23335947886a152aeb255b9"/></dir><file name="Product.php" hash="233b79af12c252380ecbb41f72a6ff44"/></dir><file name="Customer.php" hash="c6a061ae8fa38417cfdc8d5b2611c02e"/><file name="Product.php" hash="e78a149ae75643ad4ee4453365db2ab5"/></dir><file name="Rule.php" hash="bc839929de132906b34ebd1a31d68803"/><dir name="System"><dir name="Config"><dir name="Source"><dir name="Coupon"><file name="Format.php" hash="abcd0f1a3d38d9b8a13c3a7c5e06cf9c"/></dir></dir></dir></dir><file name="Validator.php" hash="7ac3f69e3d529b8aa185980b445678c9"/></dir><dir name="etc"><file name="adminhtml.xml" hash="d8bb175f9f83c2cccc42291b149e4123"/><file name="config.xml" hash="31a25a8c37a14dae28dfe405529d4eb5"/><file name="system.xml" hash="2012d0e9874f21739ea2e0c97256807a"/></dir><dir name="sql"><dir name="salesrule_setup"><file name="install-1.6.0.0.php" hash="38196826a9549329b3c1d350c92567fc"/><file name="mysql4-install-0.7.0.php" hash="3fb3cb024e7245f317d4519b1dae435e"/><file name="mysql4-install-1.4.0.0.0.php" hash="07f33cfb029583e73332092770bb5e9e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="eac760855668c5f33af37be87f084890"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="e23a0cfa981e3c7348f8cd574fdfc6a8"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="151cfb7fcbb898dbf60b6b350a59b58c"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="d7ea83dc457208006c4f84a02f606c0b"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="01789f28af107a4debfde2af2d689a07"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="75044c5e9d090fd40b6ded2f369b1b5e"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="0bc8be181ce2e976c18d7d9dddb13ffb"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="bf9be33a53100e20b3ba232a36d791b0"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="083a35ce478ddded3b8bfd7b1d5e477b"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="a85d2fef665ef98af16d07238fab919b"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="4aab074d5386d02f27225624abee4f08"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="09a9bc2490d77e820849f7571c6cd5c9"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="3d97b0a69ed47917a9b0c8a1df96f968"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="9e8fdbaf5029dadcfc89f833911fce39"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="7c0c456ec00bf861f2143270e22e8d1a"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="1e1ddd60404d14ddd1e1adcc86836c56"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="2b7f1de9325296a3c6cac388a0cd3f73"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="d2815407cab139cd789c41acffc22a95"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="dce0873076c4eb1f32096113d80f5f2d"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="72ba2b29497dffe914f419055813280a"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="9cf4cdd47c044ffb8b91ab6063f25d1e"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="7eaf41f844edd0be594cdcd1103cb563"/></dir></dir></dir><dir name="Sendfriend"><dir name="Block"><file name="Send.php" hash="69da7f10d220c32042913089e2166f11"/></dir><dir name="Helper"><file name="Data.php" hash="04dbef26012512b639b764f257f6bdb9"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Sendfriend"><file name="Collection.php" hash="c03505775d724df45b0603549122b6c4"/></dir><file name="Sendfriend.php" hash="2d006cdb300344179b3f63c58104cb99"/><file name="Setup.php" hash="8df6b59dedb4b515e20bfd1553d68521"/></dir><file name="Observer.php" hash="2f9dfc4ca4f757b364410494172b7c2f"/><dir name="Resource"><dir name="Sendfriend"><file name="Collection.php" hash="718c7e22b6185b461a09f2c112021f83"/></dir><file name="Sendfriend.php" hash="2703b52f6b61383fc1ce54119788ef42"/><file name="Setup.php" hash="78aeaa9a64e1f33e5afeaca36245d602"/></dir><file name="Sendfriend.php" hash="9cfdf722555a645b9a9ff71af81f183c"/></dir><dir name="controllers"><file name="ProductController.php" hash="aebef54211c5475d5f1a98bc57a71f28"/></dir><dir name="etc"><file name="config.xml" hash="760ec68bc885e0ed08d6a5535bcbff1c"/><file name="system.xml" hash="bf6a4df682c568d72ac5882cd1395a62"/></dir><dir name="sql"><dir name="sendfriend_setup"><file name="install-1.6.0.0.php" hash="aa4ee702de32ed6afce2647e424fa81e"/><file name="mysql4-install-0.7.0.php" hash="8b3eda6474c6a6c12fc625c75a1fbb60"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="c5171b7aa381d44c8056a5e9f566f00d"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="38a0eae1ac656cefccb1eb21ba346092"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="9573f6e89f56abc47dea80fc0dc7a023"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="c8edba004d11496554d4626df203e63e"/></dir></dir></dir><dir name="Shipping"><dir name="Block"><dir name="Tracking"><file name="Ajax.php" hash="5eea6dc16c7cd52fa5a2fbf6bb64a8fd"/><file name="Popup.php" hash="7f89ed27011a7690fbab2be134544583"/></dir></dir><file name="Exception.php" hash="c4e06fc0c63b8325ff966bbe702ca45d"/><dir name="Helper"><file name="Data.php" hash="b4f93ed5152bd9fb28e46cc4b4e352b9"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="b5ce1a87821453fb944fb301dd69ddcd"/><file name="Flatrate.php" hash="c818198405ddfb5cfa4bebe835002894"/><file name="Freeshipping.php" hash="194c368e90cbaca17ccfe20e216e62c1"/><file name="Interface.php" hash="4208afade8a24a3ef9119297537f349c"/><file name="Pickup.php" hash="842916b0b5e3bc6a7be8eaa0f8f325d8"/><file name="Tablerate.php" hash="06e274990aefc86abf9c21ce5b1e07b2"/></dir><file name="Config.php" hash="5851573058a5735f193bd107cc1fc239"/><file name="Info.php" hash="10c4fb5361fbc12c8a52c28bd0288e03"/><dir name="Mysql4"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="a700f1f19ca8f393de45a928b7ed5f13"/></dir><file name="Tablerate.php" hash="8fc96dc91476e5d86a12b4de4f5a0f04"/></dir></dir><dir name="Rate"><file name="Abstract.php" hash="892a3e1b431d125db1064059a63d3f3a"/><file name="Request.php" hash="8838e9c7fca53d1083e676e486af320b"/><dir name="Result"><file name="Abstract.php" hash="6e28d3ff368f351ec877ead8e612378f"/><file name="Error.php" hash="1dcc722568e0284a6f6a2744adbc8615"/><file name="Method.php" hash="751b8da3aba660f3fc68bc1fbdf018ac"/></dir><file name="Result.php" hash="4e0e2a4b43d9cedf2a5bf7eb2d644870"/></dir><dir name="Resource"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="f608dbcb0a2905a4fcff0b93a6c09f6e"/></dir><file name="Tablerate.php" hash="ad901c39eddd5fb2c5e69a4e5336ef09"/></dir></dir><dir name="Shipment"><file name="Request.php" hash="284bf64170496d0e6b7f892955558e20"/><file name="Return.php" hash="9faabe41512ab67e0e28845a47add8bd"/></dir><file name="Shipping.php" hash="7a1bac364ad9c16cc432e25d303fa78e"/><dir name="Source"><file name="HandlingAction.php" hash="8768a516b14d3d88e4451a492783146f"/><file name="HandlingType.php" hash="0fa4a63cb59b2c20e66c604a42ad36b4"/></dir><dir name="Tracking"><dir name="Result"><file name="Abstract.php" hash="a64b294401e3c13a2a41fc06c9a6f101"/><file name="Error.php" hash="6daadd786c2c7cc7e8f2238dab6a24f3"/><file name="Status.php" hash="a7b8c677fe5a0697b03d5d20d389906a"/></dir><file name="Result.php" hash="507a0428e7b300e1fb8c790b1b8ccbec"/></dir></dir><dir name="controllers"><file name="ShippingController.php" hash="f21480b80a9ddd2b483b716ad1e9e1b1"/><file name="TrackingController.php" hash="2be7db328637fa104acd2f165a7ccdd4"/></dir><dir name="etc"><file name="adminhtml.xml" hash="b90d91d5a49bc0ba9a65289c21648b76"/><file name="config.xml" hash="42128093190d5a1bb4f295dd0c5d65f1"/><file name="system.xml" hash="fec7a0f2cb598ea4d871911cd9489492"/></dir><dir name="sql"><dir name="shipping_setup"><file name="install-1.6.0.0.php" hash="57a6986294bfd6b68759310a1dde1120"/><file name="mysql4-install-0.7.0.php" hash="0c0fa4f425b6f6e1467a545bce5e9d16"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f9ef998656fda49deb570bcf1a4e31bf"/></dir></dir></dir><dir name="Sitemap"><dir name="Helper"><file name="Data.php" hash="b0a30d2363866e6ac24ba392e7b1d469"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Catalog"><file name="Category.php" hash="b14b16d58ab1094d8681085cd30a8de2"/><file name="Product.php" hash="06a65c8ce95e63ede1c5190aa7883051"/></dir><dir name="Cms"><file name="Page.php" hash="11afc85afd0ce99821d99ee055673704"/></dir><dir name="Sitemap"><file name="Collection.php" hash="1b37acb7794f711e850929a8dda265f4"/></dir><file name="Sitemap.php" hash="b5b956edefeedb7e8bffe6beaae403e0"/></dir><file name="Observer.php" hash="b408a4dd253240afaefd24d0a58abd62"/><dir name="Resource"><dir name="Catalog"><file name="Category.php" hash="3b98f94520f1c2380987235329337613"/><file name="Product.php" hash="c6bc72c42bd106756893a524db7bc6b9"/></dir><dir name="Cms"><file name="Page.php" hash="5a28127649e31029e34b3ecd6096cfd0"/></dir><dir name="Sitemap"><file name="Collection.php" hash="1219323ba9ab71f0a70c8c1d7e75d12e"/></dir><file name="Sitemap.php" hash="c5591a6ad55622cf3b4a3275ee7423c6"/></dir><file name="Sitemap.php" hash="b1eec06b20788750b38662e70b048459"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6e2e7b6ca4ed7650a29ca66add37ab66"/><file name="config.xml" hash="f107020fbe972b7bc1a39387856188f4"/><file name="system.xml" hash="d3a83ca535a697b308f94d47d1bd2575"/></dir><dir name="sql"><dir name="sitemap_setup"><file name="install-1.6.0.0.php" hash="5062dc11fe61aac68a7cadd6fda1be24"/><file name="mysql4-install-0.7.0.php" hash="fa0e715c5dde65851798542ff27ddcb6"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="562b67335fdd3a372676a8807f6318d6"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="a72472f356c173babdd67ebf490759e4"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="6d34a4eac15eab085646d17a275a30d7"/></dir></dir></dir><dir name="Tag"><dir name="Block"><file name="All.php" hash="9af4d1d4e3485615e631166db6527c45"/><dir name="Customer"><file name="Edit.php" hash="d545acbf57f1f2a22e1309946252deff"/><file name="Recent.php" hash="6c8b96bb0194273fe9fc2b1daf4d4e74"/><file name="Tags.php" hash="48be0e494a42c74fd7d1c13d3a8fc185"/><file name="View.php" hash="58f055ed8c76346ba1355b7c83a7e2a7"/></dir><file name="Popular.php" hash="70cd805a67de0d70500b16e49e0129a3"/><dir name="Product"><file name="List.php" hash="3863ca42381e220f053f477c9066c997"/><file name="Result.php" hash="407ff9f2f1f314c03892c97534cabdcb"/></dir></dir><dir name="Helper"><file name="Data.php" hash="13a70e24b974015ac60770c22be8bf29"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="8662fc7836d035577dfb3559811d2665"/></dir><file name="Api.php" hash="4b7d51eaba0db252bafb24a1152c5161"/><dir name="Entity"><dir name="Customer"><file name="Collection.php" hash="b3acfec039944ca07b7ec88b2b2e2053"/></dir></dir><dir name="Indexer"><file name="Summary.php" hash="508bade63146a25b56117e5449805c63"/></dir><dir name="Mysql4"><dir name="Customer"><file name="Collection.php" hash="121e08d163136063d0278cccd24425ea"/></dir><dir name="Indexer"><file name="Summary.php" hash="94869b320b2ac2a57073d9da6bbd8f7a"/></dir><dir name="Popular"><file name="Collection.php" hash="8561bb3654034b93d942ffd7f8c2d561"/></dir><dir name="Product"><file name="Collection.php" hash="9db0df820c0b1d76079b3e36e37f21ff"/></dir><dir name="Tag"><file name="Collection.php" hash="65f8756a029adacb7854079acde6787d"/><file name="Relation.php" hash="33733abbf9ecee8f7ce3990e8446ccf1"/></dir><file name="Tag.php" hash="d55a4d3e70edf74443c27e082f94e4c9"/></dir><dir name="Resource"><dir name="Customer"><file name="Collection.php" hash="8a991e5cc769014a2bde52f360ee9ad9"/></dir><dir name="Indexer"><file name="Summary.php" hash="aef4c980ddb9a11f64ee4f4ae6e63528"/></dir><dir name="Popular"><file name="Collection.php" hash="d8abc7053adf7b25e1f97655ddc9cfa7"/></dir><dir name="Product"><file name="Collection.php" hash="0e44d05c45ce7e0d5cf911a1a19662f1"/></dir><dir name="Tag"><file name="Collection.php" hash="88bbccf14715402d0e2719e369e343c6"/><file name="Relation.php" hash="3430e7719a830b136998215b8926aaf8"/></dir><file name="Tag.php" hash="d7fd5315bce37fe1807b051325735221"/></dir><file name="Session.php" hash="a197786e9bb14f0648ac97f5187f6b5e"/><dir name="Tag"><file name="Relation.php" hash="1b06e713d22b85acb9d72426d419b52d"/></dir><file name="Tag.php" hash="faa3cc3d3ac4de0b0d24e93e3037dbf1"/></dir><dir name="controllers"><file name="CustomerController.php" hash="ed5ef9f93ecf3634650de4b4c716072e"/><file name="IndexController.php" hash="699fae890fcf626cf5e72b390be05010"/><file name="ListController.php" hash="14e8b3afbc005554bd53d62ef43b2fe3"/><file name="ProductController.php" hash="c7351ff13c36cd43ace0740c48c9768c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6efe566061bb04523050ea0032770655"/><file name="api.xml" hash="db87bb9015deacdef6e44c74a19d64b7"/><file name="config.xml" hash="dc002590ba3443af5031f7dec70bbfde"/><file name="wsdl.xml" hash="e87343a710e0068dcc555ffc4b302a9b"/><file name="wsi.xml" hash="1d31787826a686590acf89ec2703b76e"/></dir><dir name="sql"><dir name="tag_setup"><file name="install-1.6.0.0.php" hash="cc5cc7cd4d3e635358230524a42a1682"/><file name="mysql4-install-0.7.0.php" hash="836e1d044ba9e5c3b0e1b369601d0641"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="dc1e5ec6107bf0b1f99cf6dcb18d425f"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="007e9793f023e531b9dbcf60251f1897"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="fd59b7252873889dbb13ae4322ddc96a"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="497f5a0472ca207a247da1028ed707cd"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="76b3a2e87dbfe921819f8dc8b171d329"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="d70fca00d8334bd85f62a863c1b01490"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="bd3d13b7459948545f4a6ee596a7c6cd"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="de8c32a1eead31660c9e976d90d74717"/></dir></dir></dir><dir name="Tax"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Region"><file name="Updater.php" hash="156008416c695d82525143a5c5f2954c"/></dir></dir></dir><dir name="Checkout"><file name="Discount.php" hash="3cdf0430dd1d3f55f0c50b7e330f040c"/><file name="Grandtotal.php" hash="747dddb6b6de5602b58a8df1fcb97fda"/><file name="Shipping.php" hash="10067e4f333a009e039aeaf2a31baa0b"/><file name="Subtotal.php" hash="993aa663a1c688fced63f50cc7cafdcf"/><file name="Tax.php" hash="2c8a769679b3ad4281633879fae1e83c"/></dir><dir name="Sales"><dir name="Order"><file name="Tax.php" hash="81caac522aae79dde6752ce19f02fe9f"/></dir></dir></dir><file name="Exception.php" hash="7d685f650649da0225185ae95130be35"/><dir name="Helper"><file name="Data.php" hash="15864215c3384c08b00eaf4d8f041639"/></dir><dir name="Model"><dir name="Calculation"><dir name="Rate"><file name="Title.php" hash="cd5829171c13ae725e88cc05ebdc82c2"/></dir><file name="Rate.php" hash="70cb887e7ecd28376bac64721670d6c5"/><file name="Rule.php" hash="d7b5c67fde84e656f90a6d001ad6260f"/></dir><file name="Calculation.php" hash="b175a5fff41f36e28885e8e5ad5170f4"/><dir name="Class"><dir name="Source"><file name="Customer.php" hash="5acfbb5f49b5c51b9bbba647c3206be2"/><file name="Product.php" hash="01dd7af3ead50da6a162f73832eec322"/></dir></dir><file name="Class.php" hash="f255973354e94b09f413eaa316b33c3a"/><dir name="Config"><dir name="Price"><file name="Include.php" hash="a36e4dbb8ff574c0cb97612c55e2a28a"/></dir></dir><file name="Config.php" hash="bb6485188fc04562620385403609c3e1"/><dir name="Mysql4"><dir name="Calculation"><file name="Collection.php" hash="7dfaa060ebdc666b89aafc603c2758aa"/><dir name="Rate"><file name="Collection.php" hash="59808bdfc2f355579e8343d382298eaf"/><dir name="Title"><file name="Collection.php" hash="34d95d2e956a58c5fb207c06bfc52377"/></dir><file name="Title.php" hash="33b787fc2f21017b2c759b61acc46afe"/></dir><file name="Rate.php" hash="0d11890cd8c0a26448dea793903f9d37"/><dir name="Rule"><file name="Collection.php" hash="6569e88db0fab17d3386f1c8bc9cc43f"/></dir><file name="Rule.php" hash="a851deaa49101af489034a92d443ecc2"/></dir><file name="Calculation.php" hash="d644cdef1731b881a5afce10a180cb00"/><dir name="Class"><file name="Collection.php" hash="9acf2539a90e747e4d4bcf2c046c39e7"/></dir><file name="Class.php" hash="6f990c4f9a1f22835601020571a472b2"/><dir name="Report"><file name="Collection.php" hash="6b0d7b39c97c3832c1b9382d21a63d69"/><file name="Tax.php" hash="0f3ace72d8027069c5c83b94b5abc3ce"/><dir name="Updatedat"><file name="Collection.php" hash="12a64f6c4ef2eaebc925bc802d94620a"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Collection.php" hash="5113b7b6db8fb79e2bde3ff29a7b6019"/></dir><file name="Tax.php" hash="9444a2fa24073e0643a84ffb187cbe74"/></dir></dir><file name="Setup.php" hash="8f262c8ce1c50f1121635839ca854361"/></dir><file name="Observer.php" hash="dcc94a4841ab00803c7c7d52c71707c6"/><dir name="Resource"><dir name="Calculation"><file name="Collection.php" hash="c754dc7874b2abaaaa688440a2648ff9"/><dir name="Rate"><file name="Collection.php" hash="0fd9547111b19c6800f85c6c9afcccd5"/><dir name="Title"><file name="Collection.php" hash="e9275eda335769587240aa46224fde78"/></dir><file name="Title.php" hash="1b25ba03565371e9622970b93c22a770"/></dir><file name="Rate.php" hash="dd8b6cb6d2c4f0d03ea453e39912d774"/><dir name="Rule"><file name="Collection.php" hash="a9f3680c91a0044fc5505a8b705215f8"/></dir><file name="Rule.php" hash="353aea48c8d91f65c4c6e7206624d291"/></dir><file name="Calculation.php" hash="97cb07b8c26379687e8835c638625892"/><dir name="Class"><file name="Collection.php" hash="c92c4a190da14b27b3b01d0a6f7f2f83"/></dir><file name="Class.php" hash="b4593833fd3758d671337020203f826d"/><dir name="Report"><file name="Collection.php" hash="f6ba101707fdd8b08d596cea8c79f926"/><dir name="Tax"><file name="Createdat.php" hash="5554b4b24d13946ca82a97d108868cf6"/><file name="Updatedat.php" hash="600fc285ec09244424f1c4cd09c0a3a8"/></dir><file name="Tax.php" hash="b494ab5086e76b58f71af2958b13dcf2"/><dir name="Updatedat"><file name="Collection.php" hash="90f4392922b9e7d6aeda047439f2c988"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Collection.php" hash="0f8e77db653943a771c0c63b20443b01"/><dir name="Item"><file name="Collection.php" hash="4334bac69bf3e2c02a6ca79dd102e8ca"/></dir><file name="Item.php" hash="99a1a6f77f892c7817c242373db13382"/></dir><file name="Tax.php" hash="1db748c850ede66d1546c668a7d2ead8"/></dir></dir><file name="Setup.php" hash="15b2da0f10434185908be08371538775"/></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Item.php" hash="11db2cfd388c6550d4df573773e7d2c4"/></dir><file name="Tax.php" hash="c0cdb289e80c22cbe80b041ca6c6e53a"/></dir><dir name="Pdf"><file name="Grandtotal.php" hash="e64264639f70ba68828231e3fdd58ab7"/><file name="Shipping.php" hash="e0b34d519f416bde0dac13119f0e8b81"/><file name="Subtotal.php" hash="6c3d55d57f4a69203aecf659ca1d2dab"/><file name="Tax.php" hash="d3faa72f409aa9614d35fdae9745e758"/></dir><dir name="Total"><dir name="Quote"><file name="Discount.php" hash="c6e71fc2803e1cba9494591b68be39e6"/><dir name="Nominal"><file name="Subtotal.php" hash="ff766d1a766f9a3017795a789bb6f752"/><file name="Tax.php" hash="c7c003c70bc906004896c91c776260bd"/></dir><file name="Shipping.php" hash="a8e799538ab11eaa6a8717b17d13c860"/><file name="Subtotal.php" hash="1b171a4bc1f0a318eb743b25d3d2e2df"/><file name="Tax.php" hash="ed846909fd4260dd1c434bebefa19902"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Algorithm.php" hash="ef19167fd9645c407275f2bfe513151b"/><file name="Apply.php" hash="f5b5ffb60ebca00f0c685a6eca5c9106"/><file name="PriceType.php" hash="5891375467ac81cd891ba0714bf7e0f6"/><dir name="Tax"><file name="Country.php" hash="f3970948f02dc3f6c67abbc312dfacd2"/><dir name="Display"><file name="Type.php" hash="debf77b1117d17b180b274015dd27dd2"/></dir><file name="Region.php" hash="fc1b6c03cbd3b428eac9efbe39b1cea1"/></dir></dir></dir></dir></dir><dir name="data"><dir name="tax_setup"><file name="data-install-1.6.0.0.php" hash="68c1cca3a0c67ab17a32e59203961fed"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="a85130dd5e9b7b772977c0e053f2fc31"/><file name="config.xml" hash="bce7b4bdd5c420fad30c5116a0d809c6"/><file name="system.xml" hash="9cadbf6eb0161bfb019c3d84a9f677a1"/></dir><dir name="sql"><dir name="tax_setup"><file name="install-1.6.0.0.php" hash="86d7386eb7b20385a8f648723d4c6cf3"/><file name="mysql4-install-0.7.0.php" hash="30f3d97f2064261ea7b701a8ac520a86"/><file name="mysql4-install-1.4.0.0.php" hash="fff32f8dcb71762b357c167347d90fbf"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="fdae0bc637fa6c9051804bd64bc7c4c4"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="067e565745face9c581a96982390f733"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="f72562af4b75094b66c31fd9f3d9e335"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="255f6d9d8b66a746da560b06cdb8757e"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="d82fe5d9a1affb5132764b3f757a7d88"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="02303b303e08430546e66e3e063f2955"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="75e24374ec59b0e025234d1d66ca2d89"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="2509cbe196f090c877a40100e5d48077"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="33c78bfd21a9c8e2c5cd159ac9cd942d"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="71e5f377491e5587905cc53f2564a687"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="e6f845a0bc2c52c8b0e677770e360f28"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="e644899e09945e7e72198bf838434923"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="648c7a5196e035a16e72fe7115989e6b"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="1bdae82cab2b2f2735fb1bc30d6419ee"/><file name="mysql4-upgrade-1.3.9-1.4.0.php" hash="c1a40546123cf352f4c3c8accdd9a414"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="792a535a8b78c1aa138137704d94924a"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="1e286918b3859d2002213adfa3e45182"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="1931c495aa68db2e6f18b06dca2a48b7"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="ac2d60ee06fbad9751e4a9f5b8f22d4d"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="90aeb35fe92f7c5764c2817c766828e3"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="caeb9a1082124f91dc2a57eb66b1098c"/></dir></dir></dir><dir name="Usa"><dir name="Block"><dir name="Adminhtml"><dir name="Dhl"><file name="Unitofmeasure.php" hash="ddb792898da69e13d316eff2cf806c3c"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="599f508393adf93e75ff1c256097b497"/></dir><dir name="Model"><dir name="Shipping"><dir name="Carrier"><dir name="Abstract"><dir name="Source"><file name="Mode.php" hash="0b4ea01f466c888deb1b884c59e7fff0"/><file name="Requesttype.php" hash="495d1880c6f05ff0e632b67f98a84e42"/></dir></dir><file name="Abstract.php" hash="96e3e312e2c0349cdc1d7eaabf2ed535"/><dir name="Dhl"><dir name="International"><dir name="Source"><file name="Contenttype.php" hash="59ffd1fa8bd218f28cf7ed4bd210fada"/><dir name="Method"><file name="Abstract.php" hash="0ac14f613e1736df4f4ab34c7b0c87d5"/><file name="Doc.php" hash="e9f884c3e8e3626fe54a9f1f3ab5c696"/><file name="Freedoc.php" hash="efbf765d787e8c97abe1fbb9c383edf4"/><file name="Freenondoc.php" hash="6cbeeec45a46e9196423529eb00e1ad0"/><file name="Nondoc.php" hash="9422bf8ceac0eb7f316f883364e5d86f"/><file name="Size.php" hash="fa749cd952899b92e68b1c029c2d9a2d"/><file name="Unitofmeasure.php" hash="30f691f15cb7fba5de0d75c6e4e7023e"/></dir></dir></dir><file name="International.php" hash="46990a1da2978bb4561a58aed291eaf3"/><dir name="Label"><dir name="Pdf"><file name="Page.php" hash="fe1d139836b90163a5d17f7a1b0b88f4"/><file name="PageBuilder.php" hash="929de0707b0ef77bccf7122859ca8ad2"/></dir><file name="Pdf.php" hash="ffa59558796854743e7aeb462c4d3562"/></dir><dir name="Source"><file name="Dutypaymenttype.php" hash="5379a7d901c453b9db569c26b9dd7f08"/><file name="Freemethod.php" hash="f2267de09ff1c850492384090be5b7d0"/><file name="Method.php" hash="c5aa201291609f756080ab76a345ba00"/><dir name="Protection"><file name="Rounding.php" hash="7f26645cd8c6dc2716a46f77a6eda778"/><file name="Value.php" hash="af954e3b5bb724adb2f7c53052dacdcd"/></dir><file name="Shipmenttype.php" hash="b44dc1bf10094df925e0b5fbf61db42d"/></dir></dir><file name="Dhl.php" hash="fa965e8b7bdd48de5916c13f143d702b"/><dir name="Fedex"><dir name="Source"><file name="Dropoff.php" hash="8b270552e447d84b2d521d3080cb6f07"/><file name="Freemethod.php" hash="f2560906f4dc06b5a848aa402763463e"/><file name="Method.php" hash="89882d43f6554e3a42e99f94c345c3c7"/><file name="Packaging.php" hash="c8fb95d3f6207ea9a641c6349ae2358a"/></dir></dir><file name="Fedex.php" hash="65f22c7f86d886e0f75b224c71b30f42"/><dir name="Ups"><dir name="Source"><file name="Container.php" hash="97f4b2c6849b605324441105232783fc"/><file name="DestType.php" hash="c6ec69aede404a583cfa517558a9b22e"/><file name="Freemethod.php" hash="bf9051243ba670c7279533f26c5698f8"/><file name="Method.php" hash="aec432d5e121f35b5e6a7cc99d09b00c"/><file name="Mode.php" hash="9c958de8746a229d47964a7b4c350556"/><file name="OriginShipment.php" hash="9649f9109104e55d6bcc751aea2a59f8"/><file name="Pickup.php" hash="29385108e9a06711cda23ee30e0ad315"/><file name="Type.php" hash="695fee1544f2528dc778119eee57248c"/><file name="Unitofmeasure.php" hash="66c9dd500e9aa3efc42e72366e1fed6b"/></dir></dir><file name="Ups.php" hash="d250bb3d610ebb5f15f7ea70a3e9baf6"/><dir name="Usps"><dir name="Source"><file name="Container.php" hash="5210275baddf7f4ffc99b2b4700ea4cc"/><file name="Freemethod.php" hash="c0e3ab439dee9a176335eb81aef81d79"/><file name="Machinable.php" hash="4177d27c4ab4dfce8b323406e956c399"/><file name="Method.php" hash="88d3d5125db61283edc0749d30737cdc"/><file name="Size.php" hash="9a42ba2b4c6e8d71bc104ab1b7b29d2c"/></dir></dir><file name="Usps.php" hash="36d1da82b811de523cc7ce2e1223c771"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="b000a02eb48fe067adf1110429c29f5a"/><dir name="dhl"><dir name="international"><file name="countries.xml" hash="6fae77c7bb172aca6229177e1a89ee46"/></dir></dir><file name="system.xml" hash="998e5faa1fadd1037b3f49430dcd5e3b"/><dir name="wsdl"><dir name="FedEx"><file name="RateService_v10.wsdl" hash="352ed0cd739b31d42d206aba31bf4c31"/><file name="RateService_v9.wsdl" hash="5e698519a3b3ae3dcea2105545053763"/><file name="ShipService_v10.wsdl" hash="4e661e70491a1af695c27878610054e2"/><file name="ShipService_v9.wsdl" hash="9c3779aa87540dcae41b43b16b724df6"/><file name="TrackService_v5.wsdl" hash="89cc7077a8fc439446e70bac0ca0f0c1"/></dir></dir></dir><dir name="sql"><dir name="usa_setup"><file name="install-1.6.0.0.php" hash="f4636d53d1bbaef62283e8052d7a390e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="5098430ad322674046f52184d16e3f00"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="4d79973481823e9600ecbb13c217596e"/></dir></dir></dir><dir name="Weee"><dir name="Block"><dir name="Element"><dir name="Weee"><file name="Tax.php" hash="8b42e073faf099b48adba1f096c0eb67"/></dir></dir><dir name="Renderer"><dir name="Weee"><file name="Tax.php" hash="d61e5718f87a930f12660cafddf84404"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="3a868233926c4ae5f58a64ac52bb1da5"/></dir><dir name="Model"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="52271eb2c00dce9c103942f57d9f9240"/></dir></dir></dir><dir name="Config"><dir name="Source"><file name="Display.php" hash="7b8f133ee49459d597376739a823318f"/></dir></dir><dir name="Mysql4"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="6b8564a766dba40234d8c72f322478a4"/></dir></dir></dir><file name="Setup.php" hash="b2b9dde9abe8f23dbd7b7a1732022760"/><file name="Tax.php" hash="a77f656e7e7b78de7541cbf23151a63c"/></dir><file name="Observer.php" hash="c69dc240c71ac26678ee263ff1ec5719"/><dir name="Resource"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="99d647ea309af69d86c59a725b0ea516"/></dir></dir></dir><file name="Setup.php" hash="5fe4a0bcbed97a939b9792c488f7cd58"/><file name="Tax.php" hash="3571533653661e1e62c562f0e31ba418"/></dir><file name="Tax.php" hash="a34ce77bfa3e76c49b1102691c9e79e4"/><dir name="Total"><dir name="Creditmemo"><file name="Weee.php" hash="ec583d7681534c858deb05b070cbca6d"/></dir><dir name="Invoice"><file name="Weee.php" hash="3623b16421963138af9a9e142875e65e"/></dir><dir name="Quote"><dir name="Nominal"><file name="Weee.php" hash="a1f64b488e7416ae148e1a8d3c03045e"/></dir><file name="Weee.php" hash="b2d30c1d8104e32a6f59bbb044cd3e4b"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="90c5cf42633be641368e185cbad7559d"/><file name="system.xml" hash="d68a342d836e0d370a643dc7e17cde7a"/></dir><dir name="sql"><dir name="weee_setup"><file name="install-1.6.0.0.php" hash="44bf4ab60ab0034510d0063a29eeff02"/><file name="mysql4-install-0.1.php" hash="a777fa6b4e78301fea528a41c799ca35"/><file name="mysql4-upgrade-0.1-0.2.php" hash="282843c873b06ec434c6b0e2b1b2eb6f"/><file name="mysql4-upgrade-0.10-0.11.php" hash="594944aac36c0b7e0d9f52529e8605cb"/><file name="mysql4-upgrade-0.11-0.12.php" hash="36e8cf5f5d2ee5da73a5ec2ecd066e96"/><file name="mysql4-upgrade-0.12-0.13.php" hash="04e6daf513239f20988247f6493e3889"/><file name="mysql4-upgrade-0.2-0.3.php" hash="65bf5ee420383155e38abba36b858459"/><file name="mysql4-upgrade-0.3-0.4.php" hash="43aae1ad5bd3a4c7a4965068ff91310b"/><file name="mysql4-upgrade-0.4-0.5.php" hash="019868d4a2698ef9af337ff5a8709a80"/><file name="mysql4-upgrade-0.5-0.6.php" hash="1bcd0c90ab7483af9313a6dbb45b8052"/><file name="mysql4-upgrade-0.6-0.7.php" hash="165b7d66c1607cc615af1942d881e0fe"/><file name="mysql4-upgrade-0.7-0.8.php" hash="068b63205adcdb0a9effee7aacad09f2"/><file name="mysql4-upgrade-0.8-0.9.php" hash="1863d15e4ab86bdcabe3e0dddc10ee59"/><file name="mysql4-upgrade-0.9-0.10.php" hash="2761d79020d72658157eac4990b67218"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="bb7abf99828382e0da9911e965201ee1"/></dir></dir></dir><dir name="Widget"><dir name="Block"><dir name="Adminhtml"><dir name="Widget"><file name="Chooser.php" hash="d231066ce2cc476472bf7415b18ecf3a"/><file name="Form.php" hash="a63da487f17ced99849327332b275d24"/><dir name="Instance"><dir name="Edit"><dir name="Chooser"><file name="Block.php" hash="4f819006722e951ee674bbe592b3dbc6"/><file name="Layout.php" hash="9690517235f6d2df371283279ab743f3"/><file name="Template.php" hash="3ed6de9d27341733230b9412a481b6f5"/></dir><file name="Form.php" hash="c28df0e50fda31ce264ddd03f0b0940e"/><dir name="Tab"><dir name="Main"><file name="Layout.php" hash="8dc98a717ffb578507e14fbac826df26"/></dir><file name="Main.php" hash="5bf6fd0cdfe7954bab02a4567c6b1746"/><file name="Properties.php" hash="d3b1010591810a6b64d46fe2190b45e4"/><file name="Settings.php" hash="cb8100385f49423081fac7a59804a3dc"/></dir><file name="Tabs.php" hash="7118817f34c1dc398880fb1246fc37c9"/></dir><file name="Edit.php" hash="89e000dbb5376f0eb2cb3a010fac5e33"/><file name="Grid.php" hash="3a8eeccc32383fb7ac8a5b85ce7df5f4"/></dir><file name="Instance.php" hash="2f837dade2f0121b7b1634ffa5b492e7"/><file name="Options.php" hash="9c6b5f489f224834ccf866530a8e1d45"/></dir><file name="Widget.php" hash="0c8bdc474a4448e3908f19776e3ff9e9"/></dir><file name="Interface.php" hash="56e5010e264b5ef509c5094d0d769cbf"/></dir><dir name="Helper"><file name="Data.php" hash="9b11ee8f0a5b3ead1a8b98cee06be48e"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Widget"><dir name="Instance"><file name="Collection.php" hash="37f104de2f4b817356ffd8968884765a"/></dir><file name="Instance.php" hash="a3d6a4cdf14d6fd4e4fb7227bec316d3"/></dir><file name="Widget.php" hash="15404f04e07c0a46a11f77f71450e7b1"/></dir><file name="Observer.php" hash="dd68fa5fe740213d19e12d4f14c8a109"/><dir name="Resource"><dir name="Widget"><dir name="Instance"><file name="Collection.php" hash="d1e25cf6f5b2c17faad2b0566edde7f0"/></dir><file name="Instance.php" hash="24e28eeb68731bec8a20779b44654d4f"/></dir><file name="Widget.php" hash="ae1151aaefea3af69b90282b4e503a6e"/></dir><dir name="Template"><file name="Filter.php" hash="55de8d4d6069f93d6b6094361b1a9eff"/></dir><dir name="Widget"><file name="Config.php" hash="4a3031033d34d40d9e68b05230da6b5f"/><file name="Instance.php" hash="777d5d6946a6399fecf7fba97c59d12c"/></dir><file name="Widget.php" hash="419827ac59b03642d1f572b377351dcc"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Widget"><file name="InstanceController.php" hash="2e47227d036780c4503da7423785a168"/></dir><file name="WidgetController.php" hash="d80e1eae3443830353c4361cdbb5971c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="61b198eb271f3ec61cf5f2cf345ef7f5"/><file name="config.xml" hash="40a66e9ef0095aba00bd0402cc442939"/><file name="jstranslator.xml" hash="69dcc7432880d853777d36d874ad6030"/></dir><dir name="sql"><dir name="widget_setup"><file name="install-1.6.0.0.php" hash="fcb746893ece061c8aea925646089907"/><file name="mysql4-install-1.4.0.0.0.php" hash="ef6319f6bf5a45fe667865f0553c61c1"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e2dc2a939d19953b917588cba2dc794f"/></dir></dir></dir><dir name="Wishlist"><dir name="Block"><file name="Abstract.php" hash="20cd0f3c3d82d5d32baa530bd6a28951"/><dir name="Customer"><file name="Sharing.php" hash="5bf902c9ce331555389e2693bfa699c9"/><file name="Sidebar.php" hash="f246115ae985a04cd11d9a2fe47296c7"/><dir name="Wishlist"><file name="Button.php" hash="fe05fddcbf1a2c714e40ffd3c5f284d7"/><dir name="Item"><dir name="Column"><file name="Cart.php" hash="9bc1b1a801bc8a8625865d96f7bb0275"/><file name="Comment.php" hash="7c433e98aa744d4f81b7ebbd81fd449c"/><file name="Image.php" hash="e5b015c9d614d149a874875d20923e67"/><file name="Remove.php" hash="3033e2cbe145e699bb243a03770c0bd8"/></dir><file name="Column.php" hash="1f647d85baf4edad40ab4684201c6f45"/><file name="Options.php" hash="cace64568528b35ceb6ec3ce2b0b8e6c"/></dir><file name="Items.php" hash="5951aecd31ad53ffab710c4a4e9acf36"/></dir><file name="Wishlist.php" hash="ed388d6c4da11561b6030d6269a59498"/></dir><dir name="Item"><file name="Configure.php" hash="954a3a86ee3276fa8ad4c5d62f7058c7"/></dir><file name="Links.php" hash="5fce0a116fe456bea03d06f6de025def"/><dir name="Render"><dir name="Item"><file name="Price.php" hash="af7bc74c9bdec04be262a65e8ff35993"/></dir></dir><dir name="Share"><dir name="Email"><file name="Items.php" hash="a8fcc0ca918e4f22107b0e250e75c413"/><file name="Rss.php" hash="bb28b2c24a24596cc712d3846fd073c6"/></dir><file name="Wishlist.php" hash="4adcc4ec780e0806de7a10239d557891"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="c744e441a776ffec6cf7c24430e5a2ca"/></dir><dir name="Helper"><file name="Data.php" hash="2a702c0ac8d9433030a6a13425116e16"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Summary.php" hash="784381057b69f8d62e0e28bbae29af8d"/></dir></dir><file name="Config.php" hash="f88532d99cf52c62dc6a036d5de62f2c"/><dir name="Item"><file name="Option.php" hash="21c59ebc73a1c62dbe6fc9418e0f66f7"/></dir><file name="Item.php" hash="949a3eecce91f30aca9ed8f192f50c30"/><dir name="Mysql4"><dir name="Item"><file name="Collection.php" hash="0ce6d8f0379b459367e1c8b6b7b988b3"/><dir name="Option"><file name="Collection.php" hash="97c0eabe48057cb08e8e9e02a351143d"/></dir><file name="Option.php" hash="59e727e34696caabebb456e214894f07"/></dir><file name="Item.php" hash="05b4ad3d0f7febdab9ad002f944b90b6"/><dir name="Product"><file name="Collection.php" hash="593af73f9d5a9082486050517ad8a34b"/></dir><dir name="Wishlist"><file name="Collection.php" hash="bcfc9234c3b2165ea102cac728484cf9"/></dir><file name="Wishlist.php" hash="c2925f9e5ebaae26c2928fe7ff6d0267"/></dir><file name="Observer.php" hash="6ccba0f4934d38e19e1770474333f4b0"/><dir name="Resource"><dir name="Item"><file name="Collection.php" hash="2090c977819d326b28e2818a5db2ef5b"/><dir name="Option"><file name="Collection.php" hash="f41745ee21885c33a6b59752e5e21564"/></dir><file name="Option.php" hash="f14fc366286053441d91475556805d8f"/></dir><file name="Item.php" hash="a1a8d55f406327f88ceac3444c5dd941"/><dir name="Product"><file name="Collection.php" hash="559cb0002d1c1faa70e6d1f4fb80ff38"/></dir><dir name="Wishlist"><file name="Collection.php" hash="2fac930dc9237a079316983c6b599b54"/></dir><file name="Wishlist.php" hash="e49feb69b9fdeaa514b79db4b6d995ca"/></dir><file name="Session.php" hash="f79896fb8e0247e0a5ddc73900b006a8"/><file name="Wishlist.php" hash="97bb71182939ec69afaecbbcd7981b93"/></dir><dir name="controllers"><file name="IndexController.php" hash="ed57c19ec2ebf95af54735b8cfe72f24"/><file name="SharedController.php" hash="d32581fccb1a488d4c02bcb80a464671"/></dir><dir name="etc"><file name="adminhtml.xml" hash="467f65781c397c30ed084ba773110aee"/><file name="config.xml" hash="f45ab386407540b440fa7c746cd23ded"/><file name="system.xml" hash="565e80ccc8a6e9190b89e84ade9e4c4c"/></dir><dir name="sql"><dir name="wishlist_setup"><file name="install-1.6.0.0.php" hash="72399f0a66827635dd21c176e7c38724"/><file name="mysql4-install-0.7.0.php" hash="b7bc7b61337de21124daa52f967d69b4"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="173a37ea893271e3c34a8b45153a0c62"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="c52c5a358e65aa35225dd15e4a3cea8c"/><file name="mysql4-upgrade-0.7.2-0.7.4.php" hash="ea1e27f84d5bef931e3df03936780f28"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="ab4ed775814c24d4cf06231ac2871e8b"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="3ac21b189441309cadb04dad394d9b01"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="4340d4b4040ec21b7d9405b6b8bb2387"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="04033b36a7101bc5bd685dcba002ac3b"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="7834e99ea966d02bc6d074e6c5a2f93d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="16654a3df15d5ffea2ffa5eb7692a747"/></dir></dir></dir></dir><dir name="Zend"><file name="Date.php" hash="df6de8ff9dfdb044fe51cdf32e0af534"/><file name="Mime.php" hash="fcac9b00b4f04a99cddc8289dc10a33b"/></dir></target><target name="mage"><dir name="app"><file name="Mage.php" hash="496e45c587d3c610bda0ba2dc0fb68fb"/><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="."><file name="cron.php" hash="8c11be755c57691fd7f2940f0ddc7019"/><file name="LICENSE.txt" hash="59563e7be45096d0833dade102989042"/><file name="index.php.sample" hash="3c05ef39c5bdf92444b34b6bdd483c24"/><file name=".htaccess.sample" hash="4d6365073c755f43961155bdd38659d0"/><file name="LICENSE_AFL.txt" hash="45a399f2095030865fb962263ccd7506"/><file name="LICENSE.html" hash="caf0a79ffb5e4719f9f4de286f253a61"/><file name="cron.sh" hash="459f7bea5eb0f6b36dedb2ad2bbd7868"/><file name="install.php" hash="ba6a6676644cb63bd8e04c9db072fa85"/><file name="php.ini.sample" hash="e3cbeadf5f6d9bbbff400363b6c1d5ad"/><file name="get.php" hash="02ba078881f9b141a12c0cd51d3084ad"/><file name="RELEASE_NOTES.txt" hash="3b60320726727faf6a4f0b437f938936"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="api.php" hash="6304dda413f235693b22bb21be5764f7"/></dir><dir name="errors"><file name="404.php" hash="0dca06179a4352e4a9e814fca0052527"/><file name="503.php" hash="94f3728d9bb62b3e4707c2ab504b9d9e"/><dir name="default"><file name="404.phtml" hash="1469fcc2bd470c753105c5ee7996edb3"/><file name="503.phtml" hash="9ec5cb7e8eaa1665b578478100b590f2"/><dir name="css"><file name="styles.css" hash="b531ddf051bdc04704ca5c31ac5df2ca"/></dir><dir name="images"><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/></dir><file name="page.phtml" hash="eba1622f2162795190fc7e8eefbce852"/><file name="report.phtml" hash="7fc59b2fbf61a1da5320fc677c1db2fe"/></dir><file name="design.xml" hash="3fb4f1dea472a07f8f1400105bb864ee"/><file name="local.xml.sample" hash="08c7ce351c502056fb9ee3a14a9b065a"/><file name="processor.php" hash="10494e9940f6cf58abe113078f20d3ac"/><file name="report.php" hash="e4d9b2c4fa8926cf360d2a461d603814"/><file name=".htaccess" hash="8382e66b40fe15d7a1edfc780f9be92f"/><file name=".htaccess" hash="8382e66b40fe15d7a1edfc780f9be92f"/></dir><dir name="var"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="shell"><file name="abstract.php" hash="93a5b119d03da024b1e6ec9ee6fc4095"/><file name="compiler.php" hash="810e20754b66351ea9472fcec3751ce6"/><file name="indexer.php" hash="e68b5eb64b35a1b51b0500d5e70aa6ff"/><file name="log.php" hash="ed2c3e2db2f847d9c238b9b2d0495e40"/></dir><dir name="lib"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="media"><file name=".htaccess" hash="08de5b2f5ea1ce6f51f40a19bacbf42e"/><dir name="dhl"><file name="logo.jpg" hash="68500df59e568e01333ba078a262ca27"/></dir><dir name="downloadable"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="customer"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir></dir></target><target name="mageetc"><dir name="."><file name="config.xml" hash="ae5e3519191e7c66228310f48f1fe1ff"/><file name="local.xml.template" hash="34a483f0d86fd40281973108294671a8"/><file name="local.xml.additional" hash="ff7117604a03da783701386760bde31e"/></dir><dir name="modules"><file name="Mage_All.xml" hash="c7e565cbf0f7d8c23632fe53b20ea5f1"/><file name="Mage_Bundle.xml" hash="ef8c0b59e5e40ffec259cc4bacafd529"/><file name="Mage_Api.xml" hash="1ccfdaf5da9fc0a1a5b1ba2884d002f0"/><file name="Mage_Downloadable.xml" hash="636d3d007abe288ea27d24e35cacac13"/><file name="Mage_Weee.xml" hash="0bc1f3ebdc9b6b85166a03b31d2ed09a"/><file name="Mage_Widget.xml" hash="15d52f9e84449a97c4bbc965daba153f"/><file name="Mage_Connect.xml" hash="9d49380c1936fa5b912d964a6aa53688"/><file name="Mage_ImportExport.xml" hash="7b98560049d0a0c19516dd6c7aecba8a"/><file name="Mage_PageCache.xml" hash="3539dd54faa22dc50b558cd5cc4634dd"/><file name="Mage_Persistent.xml" hash="9cb87c217c3d462f7a9858b1c60fd19e"/><file name="Mage_Authorizenet.xml" hash="92783f2d372685fe1be6b8481fe4f256"/><file name="Mage_Captcha.xml" hash="1146d8747598d59ccc59cf91199294c6"/><file name="Mage_CurrencySymbol.xml" hash="9ab962cbdb0189446ab5edb05450517a"/><file name="Mage_Api2.xml" hash="091cfd7a676009bae1fd6910ba62c9db"/><file name="Mage_Oauth.xml" hash="4d324a63d05002a251978adedb8a5594"/></dir></target></contents>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Modules</name>
4
+ <version>1.7.0.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>Collection of Magento Core Modules</summary>
10
  <description>Collection of Magento Core Modules</description>
11
+ <notes>1.7.0.1</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2012-06-20</date>
14
+ <time>11:26:47</time>
15
+ <contents><target name="magecore"><dir name="Mage"><dir name="Admin"><dir name="data"><dir name="admin_setup"><file name="data-install-1.6.0.0.php" hash="fe36434b6f214fbcf844bd32225c43ab"/></dir></dir><dir name="etc"><file name="config.xml" hash="e245fe43c6a5beba9cf687ea9a85de63"/></dir><dir name="Helper"><file name="Data.php" hash="f6629a54a742ce9332b05814416329b4"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="3d149571d410638fcab035261c324042"/><file name="Time.php" hash="6f3ee812d00b0a4772349ebaaff4876d"/></dir><file name="Resource.php" hash="2a6d8026b6969d848e7293669eb8ca12"/><dir name="Role"><file name="Generic.php" hash="7ad581bd1436ed026e8fb0195eafb15d"/><file name="Group.php" hash="f76a70690402caee754796cc0ea629f5"/><file name="Registry.php" hash="a692222fc7da6c2d70aab83bdbac3ce3"/><file name="User.php" hash="aece5a476f976b872dc27fd515859fc4"/></dir><file name="Role.php" hash="5eca8281ae1a514f7c74a82a15b100d4"/></dir><file name="Acl.php" hash="ebdb2c58cf61ba4aa049459291c7b0eb"/><file name="Config.php" hash="50e98a8e8f267df9d26558179d1c9650"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="9fbbe457f96400885f6b85081322658c"/></dir><file name="Role.php" hash="bc57470426bdc1ddab07d7a6156f2a07"/></dir><file name="Acl.php" hash="f1ad451291af12b30d1719e17cdfacc3"/><dir name="Permissions"><file name="Collection.php" hash="006a43c602b841c8fd204a27862258cd"/></dir><dir name="Role"><file name="Collection.php" hash="82616ddfea53479b4018fb6513e5fb8c"/></dir><file name="Role.php" hash="51cf5dce8eaf006ff7ef9ec33dd390b5"/><dir name="Roles"><file name="Collection.php" hash="37d9abe0fa17d509d18d18a2615be267"/><dir name="User"><file name="Collection.php" hash="18f3f4b67c27649fff9539f11e625ffc"/></dir></dir><file name="Roles.php" hash="d27d5689dc5dffeeb2e92b32826782cd"/><dir name="Rules"><file name="Collection.php" hash="392348401e26fac9560fa3a8b96140cf"/></dir><file name="Rules.php" hash="ab8a25633aabf0ff3963c4d7dde667ce"/><dir name="User"><file name="Collection.php" hash="7d218125286df4e48efacfca3a50dd5a"/></dir><file name="User.php" hash="1853ca0c84cf0610ddad0a61b9f211e0"/></dir><file name="Observer.php" hash="fd1fb678e6235d4413615c7cde1c5ecd"/><dir name="Resource"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="903698a351d55ba3afb248c0511f051c"/></dir><file name="Role.php" hash="2a9dca875f5302f0e7d77f56d1d383c7"/></dir><file name="Acl.php" hash="5cdd112bd8000cbb6412c3259abdce1e"/><dir name="Permissions"><file name="Collection.php" hash="93a6483f27f91e83a2a6a14df9096d69"/></dir><dir name="Role"><file name="Collection.php" hash="af2150da8918f51ade63d6dbb37a8aa6"/></dir><file name="Role.php" hash="6fef9a28feb88846406d1ffb23d0d003"/><dir name="Roles"><file name="Collection.php" hash="c4b14d95eb741e265c6dbdd611de705b"/><dir name="User"><file name="Collection.php" hash="d4d8e53b485da036b4c102afa9e318b0"/></dir></dir><file name="Roles.php" hash="1a843ec6901f7e6130dbc5ef20755cd2"/><dir name="Rules"><file name="Collection.php" hash="d704cc548faf899b7d85a2b0d3077cef"/></dir><file name="Rules.php" hash="bc40bce083b3adaa0301a009d776140c"/><dir name="User"><file name="Collection.php" hash="ad8696ccd03741488a651ad9e2240f39"/></dir><file name="User.php" hash="be76c342bb805696df3aa358353bc007"/></dir><file name="Role.php" hash="bfad5b92617c4ba93ce48bd69f415489"/><file name="Roles.php" hash="5e6cd07d59ff8e799cedcfa8827ad60a"/><file name="Rules.php" hash="7260e08c7085d71efbd679ff0a559976"/><file name="Session.php" hash="36e2e10aaa818d4f2717ea269eee30be"/><file name="User.php" hash="1099908fe13be08fda3f3ef7422060dd"/></dir><dir name="sql"><dir name="admin_setup"><file name="install-1.6.0.0.php" hash="36164605477c235439659dc569e05f92"/><file name="mysql4-install-0.7.0.php" hash="39b7fc848ade94ad3377c7bb6a37c6b5"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="37c3302caaa917557af2853ad65e2982"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="647ce407ab48c64232327b461ba29378"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="849fb2c6e94ca2eba632ae813a9c415b"/><file name="upgrade-1.6.0.0-1.6.1.0.php" hash="e8aa0e8d5bfea2b6bdcffc4caafc143d"/></dir></dir></dir><dir name="AdminNotification"><dir name="etc"><file name="adminhtml.xml" hash="124aee5db58b46113e610d27ba374545"/><file name="config.xml" hash="8ac18d57f8a1d671bff6157257e5da0b"/><file name="system.xml" hash="c355b2ff83bd7fa1cd1ddf5a7e1b1923"/></dir><dir name="Helper"><file name="Data.php" hash="ac6c95007add2bfb9dc63d67bebed2cd"/></dir><dir name="Model"><file name="Feed.php" hash="b029502276d335525b5019bf130b14da"/><file name="Inbox.php" hash="940d64f36c2a576700b05df7527f0196"/><dir name="Mysql4"><dir name="Inbox"><file name="Collection.php" hash="70fb886cfcebe5ea3935348d4370caa5"/></dir><file name="Inbox.php" hash="a2489c083a38b19d8975b019029c7826"/></dir><file name="Observer.php" hash="4a377ef0ed17b31a3206b7073e72f4bc"/><dir name="Resource"><dir name="Inbox"><file name="Collection.php" hash="cac7c12353c00e296d15ddd69d438ce3"/></dir><file name="Inbox.php" hash="495ab4fe4205e334451dfd728b262b99"/></dir><file name="Survey.php" hash="3f41ec7d6fe16f188f466ffd2ec8b931"/></dir><dir name="sql"><dir name="adminnotification_setup"><file name="install-1.6.0.0.php" hash="76d300304ac7041b07bb59af75da77b1"/><file name="mysql4-install-1.0.0.php" hash="fea46f32956535209096f0381ef22298"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="8e8eaefc277256429ae408012e6a1235"/></dir></dir></dir><dir name="Api"><dir name="Controller"><file name="Action.php" hash="2d23b3db952f2441c88ddcb3a9c64a44"/></dir><dir name="controllers"><file name="IndexController.php" hash="3fd8f5f4f328cc8b6b9e35f64c0a90b4"/><file name="SoapController.php" hash="5b586c4c21b6396781ea498f96f2ecc6"/><dir name="V2"><file name="SoapController.php" hash="67dfecc24b8bd4c2e537dd69b8315c93"/></dir><file name="XmlrpcController.php" hash="be34f6cab8d863d32af8cea671519ba2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="348ac9c3ead222049cd934bbee427987"/><file name="api.xml" hash="55dadf0e6da828da185e8db550802198"/><file name="config.xml" hash="ad7d5a7c0f603ba4fb774a12f18d3daa"/><file name="system.xml" hash="7ffe7a5128065a4adec312a369530d0a"/><file name="wsdl2.xml" hash="7d527421ba4b63a8a812ab6b1095891d"/><file name="wsdl.xml" hash="f0db676b04733b38f310355bb44bc3cb"/><file name="wsi.xml" hash="9fb1700cf935a26e7fada90a07fae7fe"/></dir><file name="Exception.php" hash="58480f5d304b979c754101ff43473474"/><dir name="Helper"><file name="Data.php" hash="7ef3ab2af910dc816e043fd92770f7ae"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="462394a2746c5174d86b5361aaa047d6"/><file name="Time.php" hash="102ead4725d3e24a415d6975329c6388"/></dir><file name="Resource.php" hash="06c14ff82641d81fa0208023f6ed1d33"/><dir name="Role"><file name="Generic.php" hash="01b21021fa7eb3400c67c041cbcc4766"/><file name="Group.php" hash="8531c15285eea3075ef4258c06de965f"/><file name="Registry.php" hash="5c5406c3f57fc9da5f4bc70775287c83"/><file name="User.php" hash="c10aaae2bf52af9ad1dbde17525d44cb"/></dir><file name="Role.php" hash="9f3b370769de51039aad8f1394fcac33"/></dir><file name="Acl.php" hash="6caa9b60068ecb5b6397a573c020a81d"/><file name="Config.php" hash="350792e79ca4335ee561b3d1ef02de3c"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="96bea7c2b2a4e86e5587ac0a9c9b2b20"/></dir><file name="Role.php" hash="cd4ab9e7eda2bc5247060be1103cab30"/></dir><file name="Acl.php" hash="60b7ee6d08ec1b56a87f6dceeee82409"/><dir name="Permissions"><file name="Collection.php" hash="91fe9bf777a7cf1938599e77920da120"/></dir><dir name="Role"><file name="Collection.php" hash="be5659debe9a1f83b1dd262bcd1db515"/></dir><file name="Role.php" hash="a2c97cbaa20a9840f855cd7f4eda3040"/><dir name="Roles"><file name="Collection.php" hash="cc4260a720ef58778658aceaaee34e18"/><dir name="User"><file name="Collection.php" hash="ce41ed01b2ae6e9ccac23d75e4924825"/></dir></dir><file name="Roles.php" hash="471e5177cf16d3abf06080e1d5f930e3"/><dir name="Rules"><file name="Collection.php" hash="fc9c2ef5d229acb210a0b1f8abb221c8"/></dir><file name="Rules.php" hash="95c2e05cf81d8ff94a86b34179def5eb"/><dir name="User"><file name="Collection.php" hash="df49e743a0d69cec2358d845cc164989"/></dir><file name="User.php" hash="2a99146b2d2e3586dfbb6bb7a1d71569"/></dir><dir name="Resource"><file name="Abstract.php" hash="7625ae0437c1578a9026f1e3745cf409"/><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="d0f87cbfaa513ad95b8f010a6c258cb9"/></dir><file name="Role.php" hash="2dd32716e4799a25eb0fd9b183040e50"/></dir><file name="Acl.php" hash="2634bb6b3b2bc2e7ea19fd0b696e7517"/><dir name="Permissions"><file name="Collection.php" hash="b30ba903e03845797ec2691587c4dc8a"/></dir><dir name="Role"><file name="Collection.php" hash="83d6539eee3bee8260c2d3885c5ddf6c"/></dir><file name="Role.php" hash="757e08c87fd6a395c3e5c6bb627ba443"/><dir name="Roles"><file name="Collection.php" hash="319f92471329bb33304ac6d973d83c52"/><dir name="User"><file name="Collection.php" hash="75fc7ebeb3af5042ea5a1757881207c6"/></dir></dir><file name="Roles.php" hash="c997c4e16b2e248805bea50dc61ca319"/><dir name="Rules"><file name="Collection.php" hash="b1ce3972f0087e5daac691a123a03bee"/></dir><file name="Rules.php" hash="3fb40754fa1e1c73ca4df476186d20d5"/><dir name="User"><file name="Collection.php" hash="e2d04054ac04787676016d758caf5492"/></dir><file name="User.php" hash="ac5f7acd6579fdf7d334a7a61cdd1912"/></dir><file name="Role.php" hash="b50a75387f3d291b51c48deb6c1cf9a7"/><file name="Roles.php" hash="c5ab7a6a9ef57ee5d9d544b17322f333"/><file name="Rules.php" hash="9db76c021cb90083f3d1f9c8efcae3e8"/><dir name="Server"><dir name="Adapter"><file name="Interface.php" hash="fa02e05e4a2ac7396a66f01d9920a71e"/><file name="Soap.php" hash="80f8748c140dc4383fbff468b19e445b"/><file name="Xmlrpc.php" hash="55d784076e6a70e3bed287ea63ee3a4b"/></dir><dir name="Handler"><file name="Abstract.php" hash="891806ddbda97ac80464dc0bd92215d5"/></dir><file name="Handler.php" hash="ffd0e35ca0d0928a9fe99ffafcc73e76"/><dir name="V2"><dir name="Adapter"><file name="Soap.php" hash="9f26aa53ccf670b8c85307d6ae79ecda"/></dir><file name="Handler.php" hash="985aafd186426d27bd63dd3c390ce250"/></dir><dir name="Wsi"><dir name="Adapter"><file name="Soap.php" hash="b691bba6e7eb32f9fed6927e7180c577"/></dir><file name="Handler.php" hash="2833621b6ae075e1b053285ada426037"/></dir></dir><file name="Server.php" hash="3218279bb1c457754c90c6d3e699b70e"/><file name="Session.php" hash="950810d4d18a0405d38d97f885d96ad9"/><file name="User.php" hash="c8db3c468606ab5a7a6d4e820d83aa09"/><dir name="Wsdl"><dir name="Config"><file name="Base.php" hash="8f1ba0b4721e8c9000452ca1ff3dddb7"/><file name="Element.php" hash="0d672555a65eb8534451d370370ccd79"/></dir><file name="Config.php" hash="8570470881de77dedec11eefd48e3e0a"/></dir></dir><dir name="sql"><dir name="api_setup"><file name="install-1.6.0.0.php" hash="47e95c2077fd110d92d295202a4db2bd"/><file name="mysql4-install-0.7.0.php" hash="f096cfb116484975ec6a86944ac9ea6e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="dc56a8844517eb2416978dbb9b0c2bff"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="d309c6a74eacf7c73914b08836c8e627"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="3303d916e3158a32714718c269b359e2"/></dir></dir></dir><dir name="Api2"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><file name="Buttons.php" hash="0e3ce368a7ccae3cdbfd8192be489e71"/><dir name="Edit"><file name="Form.php" hash="98064a3b32b1c0bfbca07ce2f526216b"/></dir><file name="Edit.php" hash="b4ea6350dc4cedb50ddad5690e84bd69"/><file name="Grid.php" hash="c52554296f1ef65a3bb983c3ad86b2c6"/><dir name="Tab"><file name="Resource.php" hash="5b4382d4a73f1fba596f2a9c787004d6"/></dir><file name="Tabs.php" hash="be4918f4f91a37940753058c7484c4bd"/></dir><file name="Attribute.php" hash="cfb38a5c0074c7419122c91ac0294ad1"/><dir name="Permissions"><dir name="User"><dir name="Edit"><dir name="Tab"><file name="Roles.php" hash="e77fe023073eee656414f12dd1015378"/></dir></dir></dir></dir><dir name="Roles"><file name="Buttons.php" hash="6c9f30b38675b38ebe302c80bc9c4821"/><file name="Grid.php" hash="e07a7ec078ceb476d2696e621d43bc07"/><dir name="Tab"><file name="Info.php" hash="93a3c34c7ec14441a5ed4d4ac8c72a27"/><file name="Resources.php" hash="cd283949a0e328379a83be82be7e6f98"/><file name="Users.php" hash="0054d4b0082143a4669e2b185015ad41"/></dir><file name="Tabs.php" hash="98d54c94aed557a493ba132dbd732775"/></dir><file name="Roles.php" hash="dc0a0ea4f1f4e5103ce8001c0317a693"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Api2"><file name="AttributeController.php" hash="521f80fbe233a37c8cea4c6ade5c0bf3"/><file name="RoleController.php" hash="ca0567ad2e3d3e7156b00caf2d1fa5f5"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="9334f0c541f9ebf6dee52ad3af1f9004"/><file name="config.xml" hash="cc4cc7f0a61660ae1791b313f1a9b2c1"/></dir><file name="Exception.php" hash="ad210d8b992341d8f76992d754654d32"/><dir name="Helper"><file name="Data.php" hash="7b949f2cd9696e520240a6d62e62a2fb"/></dir><dir name="Model"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Operation.php" hash="79025c8d0353fb68171c60360a3ab205"/><file name="ResourcePermission.php" hash="1e40c42a48424ca0795d5e80959ea670"/></dir><file name="Attribute.php" hash="b07876f7aa8680c35c6e1612d2ffb708"/></dir><file name="Filter.php" hash="d96ea1b1d4211225f3013039026560dd"/><dir name="Global"><file name="Role.php" hash="7e342d8a80cd4c7736adb90d411be88b"/><dir name="Rule"><file name="Permission.php" hash="10513ff4f9182d065e4eed9608eccb7e"/><file name="Privilege.php" hash="8e555a03e931206c003ba1ab4c8c4dd8"/><file name="ResourcePermission.php" hash="ce0bb92502a911216d22be559c5c024c"/><file name="Tree.php" hash="8f00a366697adde64254cec463e4f764"/></dir><file name="Rule.php" hash="058dd7ad4d34f58a35bf78a66ea48fd5"/></dir><file name="Global.php" hash="52b953eb1b8b27ff402c97aa5b81d83e"/><file name="PermissionInterface.php" hash="1395538f7d778e2a3af80a419f509d2e"/></dir><file name="Acl.php" hash="f4f126f558b2a9cb6b72cd2e18d75480"/><dir name="Auth"><dir name="Adapter"><file name="Abstract.php" hash="6facae50e40418e4e9ab0427fc53605c"/><file name="Oauth.php" hash="f4e5ae6da3ce6a9cea6eeacad2be93e0"/></dir><file name="Adapter.php" hash="d4d66cdb643d32eae3525a7c14b76ba7"/><dir name="User"><file name="Abstract.php" hash="8f9d939966ccd2751ec97cc5f107c498"/><file name="Admin.php" hash="c6d5fc4868274f6d70793dbc49a5902c"/><file name="Customer.php" hash="7e9c4771392694588632b30461081697"/><file name="Guest.php" hash="130f07a104a4a726ff548ed587355aab"/></dir><file name="User.php" hash="60390904bb062cb8c1b4ac397f83b250"/></dir><file name="Auth.php" hash="55853a7c175a258064377c7be531b5f7"/><file name="Config.php" hash="8f2ff9f42fcfbaf94292e862aa8fcd3e"/><file name="Dispatcher.php" hash="e6d5dd1b35a171335555a7c16b7036f4"/><file name="Multicall.php" hash="9354daea1e054d36c96c4ae131ba08f7"/><file name="Observer.php" hash="4fd4b96f57738ce9c16f373d7ffb9440"/><dir name="Renderer"><file name="Interface.php" hash="e05d6625044df4256d47cdecb5c028c8"/><file name="Json.php" hash="9c77c1ec5f0a99b9fdfe2fc24ff9d579"/><file name="Query.php" hash="7b2b74d1501e84954d4fb7360685e534"/><dir name="Xml"><file name="Writer.php" hash="a7612f298be0953f038b986123f09868"/></dir><file name="Xml.php" hash="ce5601cec8f23a25570534161ef2a524"/></dir><file name="Renderer.php" hash="5dcb01010f28fee449ed8b03020e297f"/><dir name="Request"><file name="Internal.php" hash="d83a9c92ee5cfa6843b33e29f5518d0f"/><dir name="Interpreter"><file name="Interface.php" hash="4feb0ca06bee2c14ca2d97acd17253e6"/><file name="Json.php" hash="516cf21923db3a3f0af71b4e4a31fd82"/><file name="Query.php" hash="2f6e5f2506b3f57c55b62f78731a7819"/><file name="Xml.php" hash="f6c091d5a5ddd3972002c7ff55b4c807"/></dir><file name="Interpreter.php" hash="f4ca14f1dcb3648892eb35c5d2af8a06"/></dir><file name="Request.php" hash="048c840f65f0cc23c38cac80874cf6c1"/><dir name="Resource"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Collection.php" hash="21689de7c53912b635c30b59012880a4"/></dir><file name="Attribute.php" hash="094b7fd6d4eca23e61bf61d02767d14e"/></dir><dir name="Global"><dir name="Role"><file name="Collection.php" hash="0ec5179b6f0c7ba218a4acf8b307df40"/></dir><file name="Role.php" hash="7fe546581a84ea0c6c34cacf53407812"/><dir name="Rule"><file name="Collection.php" hash="1808f6ca76e13f3af12c6f897c7961a2"/></dir><file name="Rule.php" hash="8a8a4500a91d2e9141be5075d3de448d"/></dir></dir><file name="Setup.php" hash="6f76e8da6908c923af439042d4cc333d"/><dir name="Validator"><file name="Eav.php" hash="9d480ef4e7a71fd57d6bb66a2b466239"/><file name="Fields.php" hash="ddc402fba96184b89c1523e467e5173f"/></dir><file name="Validator.php" hash="a8acbbd7f93e226f9700d9f6b2786462"/></dir><file name="Resource.php" hash="15e9e5d251a294dd77f26a9e7f7c8d21"/><file name="Response.php" hash="33c1e2c21996d73f04fb2f760111e8c5"/><dir name="Route"><file name="Abstract.php" hash="b384dd23d06fa269ebcaa59c803a9956"/><file name="ApiType.php" hash="df1820c9bdd957dbe4958bc2de54ae45"/><file name="Interface.php" hash="af7b93b2c3abcbe7f7ad217a695f89de"/><file name="Rest.php" hash="9e50da8458330e4d097835571e682c00"/></dir><file name="Router.php" hash="de0de528a80a5df0d883cc0a65cad4a9"/><file name="Server.php" hash="95da2c1cf51825b32eb8ddb428a8abb8"/></dir><dir name="sql"><dir name="api2_setup"><file name="install-1.0.0.0.php" hash="bbf3ad1bfa9734a50338c36132a3c628"/></dir></dir></dir><dir name="Authorizenet"><dir name="Block"><dir name="Directpost"><file name="Form.php" hash="24d6f4162ad5dba8e17d55998e0bba9f"/><file name="Iframe.php" hash="a5720b326159f70b18e89d16e2b27c0f"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Authorizenet"><dir name="Directpost"><file name="PaymentController.php" hash="838a75daf1032bc1c80a088a3db5df9c"/></dir></dir></dir><dir name="Directpost"><file name="PaymentController.php" hash="7f5289ce71ce3807baa2c473ab923ca5"/></dir></dir><dir name="etc"><file name="config.xml" hash="413e4af4f2cc7e65cae5ecece0bbfe38"/><file name="system.xml" hash="a5a0e4a98de47570231f4d59df9fcaeb"/></dir><dir name="Helper"><file name="Data.php" hash="c850d21375eaf709d13a70bd0e98c756"/></dir><dir name="Model"><dir name="Directpost"><file name="Observer.php" hash="585c1062918f2895a5cbca75816db9fd"/><file name="Request.php" hash="9c2c8c64a5839880f28a45802822a6a6"/><file name="Response.php" hash="4ac9afafb7dd35ab29002cc05bacd18b"/><file name="Session.php" hash="ad498d18c85ce5628a040a6b5b2dfe16"/></dir><file name="Directpost.php" hash="a40ab5c744d2576cfcc2afde12bf9ff1"/></dir></dir><dir name="Backup"><dir name="etc"><file name="adminhtml.xml" hash="5e2347c9a883b0dd1eb4d9077efe3011"/><file name="config.xml" hash="9435231afb7fa80d1ab43c7fab1ea545"/><file name="system.xml" hash="4adadc524ae4e5e851047c38d1e7437c"/></dir><file name="Exception.php" hash="774977b54b9124ed2fec3ca83ded9dda"/><dir name="Helper"><file name="Data.php" hash="1d90748863733bd38b2810a4de24262f"/></dir><dir name="Model"><file name="Backup.php" hash="9f114e0d4e21389636c05fb8c24423d5"/><dir name="Config"><dir name="Backend"><file name="Cron.php" hash="a98bb8af698272c6398b4d0cac3f83f4"/></dir><dir name="Source"><file name="Type.php" hash="14e04e566438d75faf600dd4c038c735"/></dir></dir><file name="Db.php" hash="3bfffffb0b2f239253a3fc0b1ae383c9"/><dir name="Fs"><file name="Collection.php" hash="e35129d1e089ff8b4c951e2e55569885"/></dir><dir name="Mysql4"><file name="Db.php" hash="227cf3a58186ef5ddd21db9f640b6e59"/></dir><file name="Observer.php" hash="f3cc01a6079ee5ab5b3a166039e8b313"/><dir name="Resource"><file name="Db.php" hash="137aef59ea6e3de1a96418508f0117ce"/><dir name="Helper"><file name="Mysql4.php" hash="7045eb35b50f66bd140bad47c4e11bdd"/></dir></dir></dir></dir><dir name="Bundle"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Bundle.php" hash="54aa3e5f1dad3461eb49d06c2088bb72"/><dir name="Options"><dir name="Type"><file name="Checkbox.php" hash="b43e310540aac602d16197b32f13f897"/><file name="Multi.php" hash="cc8d75b939562baddb65dadc88de1648"/><file name="Radio.php" hash="190cd540681478fcbab728d8b96860d8"/><file name="Select.php" hash="7e975ce52e734deafb965b0c2c54c880"/></dir></dir></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Attributes"><file name="Extend.php" hash="11404c99624c16632c25af48a098a9de"/><file name="Special.php" hash="d5baaf0cf8384145c8b42583a726a40f"/></dir><file name="Attributes.php" hash="6419dc0dc8b41fd88882c15dfc7f9ab2"/><dir name="Bundle"><dir name="Option"><dir name="Search"><file name="Grid.php" hash="9fd44f32251c4c8ff8e18193a223fc17"/></dir><file name="Search.php" hash="c368c311bc7c656d24497560c76377ae"/><file name="Selection.php" hash="73db049aebd7f90a60f136b37d8793aa"/></dir><file name="Option.php" hash="7d7208ccf375035a69f50c90edf9630d"/></dir><file name="Bundle.php" hash="5922b55a4f6acced0646a7a741deeafa"/></dir><file name="Tabs.php" hash="caec32a7304b6fa832bcf05600febae8"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="2c4cff0716912a01c1c2ae58dc58ce2e"/></dir><dir name="View"><dir name="Items"><file name="Renderer.php" hash="5da4f5467084216578cda3846db072ea"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="List"><file name="Partof.php" hash="681a9af90d3a30e41740abada1321b09"/></dir><file name="Price.php" hash="ea2796f6cc22c0730db3b31bfc8c0349"/><dir name="View"><dir name="Type"><dir name="Bundle"><dir name="Option"><file name="Checkbox.php" hash="fd45eaea774f1802d625d05721dae1ff"/><file name="Multi.php" hash="8de8d780486ac9577143c94d55181d57"/><file name="Radio.php" hash="f69fcb88b62c7b143d40cef2d62e19af"/><file name="Select.php" hash="48a71c8e6ee3460d2fe7f04d73082cb9"/></dir><file name="Option.php" hash="70f690c81e2affd82bdedc80cf146f7c"/></dir><file name="Bundle.php" hash="12b946b6695a91fca3a6be3899856e90"/></dir></dir><file name="View.php" hash="631347058dcca0749c28095612e56223"/></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="ad34d982190f451c7f336f29e0b0aca0"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="d9214601cfa26034789e9062e15e78aa"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Bundle"><dir name="Product"><file name="EditController.php" hash="7e08461da51fd55c01c588f7ac793761"/></dir><file name="SelectionController.php" hash="afddae279d7067b339074a431f6d67e6"/></dir></dir><dir name="Product"><file name="EditController.php" hash="342469992d44cd8da9514e5d6f943b3d"/></dir><file name="SelectionController.php" hash="50d4100f89bfe5cba5f47d87a438f3f3"/></dir><dir name="data"><dir name="bundle_setup"><file name="data-install-1.6.0.0.php" hash="a5a6320ba781f23c898f618391168778"/></dir></dir><dir name="etc"><file name="config.xml" hash="bb5e35b3ae5f0c4d11e8acd65963e013"/></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="de3f21b90cdf5881c584a7e716e89f6d"/></dir></dir><file name="Data.php" hash="14bd9eb25f572b393dd8796856174e26"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Bundle.php" hash="af0032f2b4f985b8cf2b0be66235adfa"/></dir></dir><dir name="Mysql4"><file name="Bundle.php" hash="458408eb988eeae85190cb013f134cca"/><dir name="Indexer"><file name="Price.php" hash="ca20397fb2093211b2a073d19470a0eb"/><file name="Stock.php" hash="19ba03eb59c24cd4f9e8b6617e3b3937"/></dir><dir name="Option"><file name="Collection.php" hash="cc804d1f83ad94cad1cf2354ce4a145a"/></dir><file name="Option.php" hash="c4f5f74929eab757b70067eac6e1093c"/><dir name="Price"><file name="Index.php" hash="40ab1b1de6933ba090175a93067d710d"/></dir><dir name="Selection"><file name="Collection.php" hash="258c1134277b324fef2d7677c775bd7f"/></dir><file name="Selection.php" hash="ca13f9a5835ef9f476aa96993dce0f2e"/></dir><file name="Observer.php" hash="f0ba07815a41fb16d2f1977df0782ccc"/><file name="Option.php" hash="866a998c3d3f74eecb24eab0a71821e1"/><dir name="Price"><file name="Index.php" hash="5cf6279937e51409da9372e5ba05ffe5"/></dir><dir name="Product"><dir name="Attribute"><dir name="Source"><dir name="Price"><file name="View.php" hash="fdae4af6579f05d3f5aa0d06ee9c54ee"/></dir></dir></dir><file name="Price.php" hash="7550303b31b1c6be2455fc8082b16e19"/><file name="Type.php" hash="245c839be9d10d67bb4158537a0d4576"/></dir><dir name="Resource"><file name="Bundle.php" hash="60822394919e1d165ef95844d472e313"/><dir name="Indexer"><file name="Price.php" hash="7fcb5b37b9e9933ed725fb65c10bbfbf"/><file name="Stock.php" hash="5fcc3e53ed97cfd8b4d21a6850e3d68d"/></dir><dir name="Option"><file name="Collection.php" hash="77543ba38dec223e4b60611ce59b769a"/></dir><file name="Option.php" hash="5784364bfa86c4767abcb2ba122b15f3"/><dir name="Price"><file name="Index.php" hash="b89d9661c1dce9a4e64849ac99ed6760"/></dir><dir name="Selection"><file name="Collection.php" hash="a9b0d76e53b5b5a6e6e92b65806cdf1a"/></dir><file name="Selection.php" hash="6b72f9be40f86fcb4e3d0574b40900eb"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="963221e5184aa1af61a3e00cb6dc3024"/><file name="Creditmemo.php" hash="0c7aef1ff80a89807b8ffdd15808d45a"/><file name="Invoice.php" hash="7304b7650796a6a4203cb0e685d4c662"/><file name="Shipment.php" hash="0588951cc08355dc80baaf4311975962"/></dir></dir></dir></dir><file name="Selection.php" hash="5c52562c5e380a7329164307c9172ec9"/><dir name="Source"><dir name="Option"><dir name="Selection"><dir name="Price"><file name="Type.php" hash="5d731b3b4880bfb78490f5f149977165"/></dir></dir><file name="Type.php" hash="287d26e18ff0475aac736c7c8f294c79"/></dir></dir></dir><dir name="sql"><dir name="bundle_setup"><file name="install-1.6.0.0.php" hash="91eaa436c6137b1940085a9669866e08"/><file name="mysql4-data-upgrade-0.1.13-0.1.14.php" hash="89c1ba2b8261f71eb3c0e19fce399784"/><file name="mysql4-install-0.1.0.php" hash="b6f367ea3602196ea9dccee4fb32dd2f"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="520e4cc5ecf6beec9e94c813b51246d4"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="87bcc2a6c362e5bf3735ce573db1923c"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="628f863db32da518d0d765aeeb7b3639"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="c2c958bd49afb3fa8cceb47ae37d9d6f"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="8276000f5e8efb1f71a534316dbe53b9"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="58ab9ba8079b8cd282a5205bf2c4b740"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="30eebb933e37a1bfbca4302db64e7135"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="80a9245478617e0e7600a46d9a6180e5"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="ec9cf608680d40b3c87cec321028cc5e"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="614f4d83a0ec2ee4ffc869d51a64bd7d"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="c54cd319712de43a667108fafdc447a0"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="3873f815240f2942428041cda16ace82"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="7068c67ecff82f2736051f66b0e02986"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="2abb63bf9907e1307fbdd813cc8d0b65"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="7efffe088bef553bc2e86e71a75fb4a6"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="01b8c33493a02bd1e5db186981777cf8"/></dir></dir></dir><dir name="Captcha"><dir name="Block"><dir name="Captcha"><file name="Zend.php" hash="50e1d921ca4908a9f59087a5ca19e85d"/></dir><file name="Captcha.php" hash="d026a9636db5e5dfb4d614de9632b8f6"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="RefreshController.php" hash="bcf7ca93f081794ecd8970e29b0b973b"/></dir><file name="RefreshController.php" hash="c224a9e6b1da57872cc11593a11426e3"/></dir><dir name="etc"><file name="config.xml" hash="1034a0b1c8ccadbb3148934d221ccaea"/><file name="system.xml" hash="94e511c00cb439c572c4090410885b4a"/></dir><dir name="Helper"><file name="Data.php" hash="88e7104e458ab6886f0945685ac86d8c"/></dir><dir name="Model"><dir name="Config"><file name="Font.php" hash="0aac116e53fcfdb6dd0eecdef43748d7"/><dir name="Form"><file name="Abstract.php" hash="6fcbf4517928069be59bf52ee43ba8bb"/><file name="Backend.php" hash="131bb2491dbe8ff4902a610ecc9b2d08"/><file name="Frontend.php" hash="93eeeb6c79331e5bcdd3cc322fa6f8e8"/></dir><file name="Mode.php" hash="708b9e66a16a4f96ca1fd33029f5ae8e"/></dir><file name="Interface.php" hash="8f5d7039a39d6f6359fe042df9347511"/><file name="Observer.php" hash="90ec19bd8252031d5f41582ea9bc8f55"/><dir name="Resource"><file name="Log.php" hash="0d6e10ef4744a0ee50d284914a3ac92c"/></dir><file name="Zend.php" hash="99428bc9078bb65913f6d4c4eafd6a61"/></dir><dir name="sql"><dir name="captcha_setup"><file name="install-1.7.0.0.0.php" hash="80a0b4674fea44103b8ff36d9cf12c87"/></dir></dir></dir><dir name="Catalog"><dir name="Block"><file name="Breadcrumbs.php" hash="1074590879f3a9f6d8fca02e8b7f3330"/><dir name="Category"><file name="View.php" hash="40ee9f6f5c159826ce50edd4ccfb670f"/><dir name="Widget"><file name="Link.php" hash="735f3409e0050d6666e6a03db29ff33c"/></dir></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="7e50369542780109c45895c6dfc4060a"/><file name="Attribute.php" hash="8167443dccdb022cd1038e9ba878b650"/><file name="Category.php" hash="8d10cd5904e7a65e4eb9d8d16e8ac0c4"/><file name="Decimal.php" hash="1bb466fd082da02c522239af7ab4bcd0"/><file name="Price.php" hash="b66012ebf3a17c788025cb1dd9d97ac6"/></dir><file name="State.php" hash="5639ecb302507249fb563e66b18c836f"/><file name="View.php" hash="8629ab2d2287fcf827255c8f67243a99"/></dir><file name="Navigation.php" hash="ec2ff655ce7315cfe9b883dd3e779b65"/><dir name="Product"><file name="Abstract.php" hash="a1c4e3e073a38a2005926501a0f2f741"/><dir name="Compare"><file name="Abstract.php" hash="af84c196986631a064985fba5868ff60"/><file name="List.php" hash="e4d9070eb81f70d317a357eb28ab934f"/><file name="Sidebar.php" hash="f10805f66efe545f4ce7037c9ac8ac8f"/></dir><file name="Gallery.php" hash="42d9708d86a753feafd7da2a40eb928b"/><dir name="List"><file name="Crosssell.php" hash="d968a651178492fc196845d9c03c20ba"/><file name="Promotion.php" hash="487b25919c860cb35a7e8403be660d84"/><file name="Random.php" hash="f9db49b97e39bd7a1d11547c1a0885f7"/><file name="Related.php" hash="5c858dee0bd46afb49d65b336059ab4d"/><file name="Toolbar.php" hash="2c2966db1d313dcb8401e9dfde7d2269"/><file name="Upsell.php" hash="23580771e1a90f3fafb8c862318fce0b"/></dir><file name="List.php" hash="9f67650ef1273df2959c839f2c09c84a"/><file name="New.php" hash="ff5014f5c9f9c6efa908caf0b264e0c8"/><dir name="Price"><file name="Template.php" hash="3e377172aac0c12f944fe12b579d7326"/></dir><file name="Price.php" hash="bf47b8eacbd9815e5125b78ab13be54a"/><file name="Send.php" hash="77052e6925bf2c8bdbb5c9e8fac89027"/><dir name="View"><file name="Abstract.php" hash="7103c1426a1ccc93abbc462f6200c8d6"/><file name="Additional.php" hash="c0451ad49d9559db418ad4456db63fea"/><file name="Attributes.php" hash="0c8fa5e24cbe9df67f98fb22214abbe5"/><file name="Description.php" hash="011f8e98e56c534a09d383a667bfb7e9"/><file name="Media.php" hash="e42aa0c9317b50d4f69d320e0b700649"/><dir name="Options"><file name="Abstract.php" hash="e78def46c8f95731c4bf044f92d94412"/><dir name="Type"><file name="Date.php" hash="99cb79fa55ba71272e9db2de760a68d2"/><file name="Default.php" hash="d613bc45af2662510c4485bb704a1fa7"/><file name="File.php" hash="6db47bb63e3a1cab3589704ade4ccfcc"/><file name="Select.php" hash="d3575d4db58ee528736a8ef265d0a83a"/><file name="Text.php" hash="3078b85a8a9b1b9a2dde1ee564e7dad6"/></dir></dir><file name="Options.php" hash="78d456aba29dc4c8c8ef195ffbe11ff2"/><file name="Price.php" hash="f644da2da793726867bc0206b7ba4cca"/><file name="Tabs.php" hash="92de42f7e618193e6204baaa85e20952"/><dir name="Type"><file name="Configurable.php" hash="0a8d71e0fce3660477630fa91319fd84"/><file name="Grouped.php" hash="12a0395866d3aad3d07d1a09f10d0a9a"/><file name="Simple.php" hash="c028910aa0d2aee65ebc963e6c4d1352"/><file name="Virtual.php" hash="e3dcbed3ba08c3a55640a2a0c4c9eebf"/></dir></dir><file name="View.php" hash="d6ebac8d4daae2a63c1e749c50c43264"/><dir name="Widget"><file name="Link.php" hash="f0474ea2b56543fddbb512774cc038c6"/><file name="New.php" hash="b3e41c465bd72a8da3da73abf1f4d4df"/></dir></dir><file name="Product.php" hash="58d561f4d013b2ca0aae3dd5a66844d6"/><dir name="Seo"><dir name="Sitemap"><file name="Abstract.php" hash="47c6bfbf140d85d45898d668d44464bc"/><file name="Category.php" hash="c9c05a49859bec99a15a048bd0f07aa4"/><file name="Product.php" hash="d10f3fcfbaf213c9a4f862b0e1f19e15"/><dir name="Tree"><file name="Category.php" hash="3825593555fc0c995cd60f9f4cd37263"/><file name="Pager.php" hash="ca0dd8270b00528f1a0471bf8675388d"/></dir></dir></dir><dir name="Widget"><file name="Link.php" hash="bd2e1d1983b56f9534071e1b77357eb1"/></dir></dir><dir name="controllers"><file name="CategoryController.php" hash="1a6e892a1858d20f8332ddbd8e9499b0"/><file name="IndexController.php" hash="0d134ce9a553b735e308f1df5de374f9"/><dir name="Product"><file name="CompareController.php" hash="798207c8ad555a5b5315ced5294b3614"/></dir><file name="ProductController.php" hash="004d1ba4c4058bf2280799be8e2e42fe"/><dir name="Seo"><file name="SitemapController.php" hash="2ec0596fa4a0fbd415802b2333851ec5"/></dir></dir><dir name="data"><dir name="catalog_setup"><file name="data-install-1.6.0.0.php" hash="b6751e7cad9b9bba7e2b1a646c83d7d2"/><file name="data-upgrade-1.6.0.0.12-1.6.0.0.13.php" hash="531a211b4322f5ae816478985b41a9b8"/><file name="data-upgrade-1.6.0.0.13-1.6.0.0.14.php" hash="ca0479a9ef589e66d86e1aeea887fc28"/><file name="data-upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="b0d625854bf6e5d921e7a4835f86d6da"/><file name="data-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="d19d6fc07a9c88b7b2e9f9d43df0eee6"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d12bb84c74502244f2ab3ac82594856e"/><file name="api2.xml" hash="459fa490e0339ad0200f9c36ce5dfc69"/><file name="api.xml" hash="b2ef10c65e1a9781f4155bcb18c11262"/><file name="config.xml" hash="17dc076d9a3a65dab69e8afca3bac63f"/><file name="convert.xml" hash="314daa20db15c3786ee8bdebaecf5dc9"/><file name="system.xml" hash="70406bf9d63de81a9469f6a262ac193f"/><file name="widget.xml" hash="36cac4df54417f0e36a49f9cee31c70e"/><file name="wsdl.xml" hash="a101248ccba69e84770f8b7a0dfeed64"/><file name="wsi.xml" hash="02a719bf1e41c505e4e4085065c67747"/></dir><file name="Exception.php" hash="ecbe9735cd01ddc2cdf76b7bb937d97a"/><dir name="Helper"><dir name="Category"><file name="Flat.php" hash="ad646b982c486a6294e9b3429230b570"/></dir><file name="Category.php" hash="241c2459715f8be01809820d4a2e12bb"/><file name="Data.php" hash="a9ab268aa04957e93da8c5ca3074c241"/><file name="Image.php" hash="cfddfa44c39972d3968838e4a226c68c"/><file name="Map.php" hash="7aca6925a0a18a6e700512d06dd598c5"/><file name="Output.php" hash="3c5bcddf3c04a4cd3ac88ec207af9c0c"/><dir name="Product"><file name="Compare.php" hash="50a40182591af964e50e588ae05c4086"/><dir name="Configuration"><file name="Interface.php" hash="09ffa79644631d8d890973b850d236b4"/></dir><file name="Configuration.php" hash="2d120f5d248e1bf4120d24ed7f579400"/><file name="Flat.php" hash="9f75370b3976414d277cf77c2e8b527e"/><file name="Options.php" hash="b3106986dc519ab73f73c93df25b1f2c"/><file name="Url.php" hash="b2bb14d9713a5aa64bd54417addf86db"/><file name="View.php" hash="f63fa14b605970df437bf3b1b61c4284"/></dir><file name="Product.php" hash="336552c9cca740c4d56eb5cd28ff5364"/></dir><dir name="Model"><file name="Abstract.php" hash="e239d687adb09dccf6889a9098fc3bc4"/><dir name="Api"><file name="Resource.php" hash="af70790ef1b0bc57653dad4457bf9885"/></dir><dir name="Api2"><dir name="Product"><dir name="Category"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="d8d9b4d0058d4e36bc5e126455628985"/></dir><dir name="Customer"><file name="V1.php" hash="76e1ecb641825a4bb18b29bf920b6cee"/></dir><dir name="Guest"><file name="V1.php" hash="da7050e643acc51b62641f7633c0da4a"/></dir></dir><file name="Rest.php" hash="f98ce6cf760dff5126f8ecfe3435e646"/></dir><file name="Category.php" hash="d9416d0cce06a62b39d3380e96b6da8e"/><dir name="Image"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="483179c635a0eaf3c015782be6ff7b5f"/></dir><dir name="Customer"><file name="V1.php" hash="81350b984763424eb2af5eadfe3b6e14"/></dir><dir name="Guest"><file name="V1.php" hash="b69fbbcc52b42f66a7593bf0ceba6dd7"/></dir></dir><file name="Rest.php" hash="0aba84924032bea4c92500bb27f1f400"/><dir name="Validator"><file name="Image.php" hash="d5a7d59c5de414a65c411ad2fa16205d"/></dir></dir><file name="Image.php" hash="7d1277758fe5593cd66cad017085fe26"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="8232773ce51ef51ecdf078364ad145d1"/></dir><dir name="Customer"><file name="V1.php" hash="5efabad21155831bbf435ebd3ae89de9"/></dir><dir name="Guest"><file name="V1.php" hash="d87ff4b7ab3bbe7286b2ff9d8c3dc87f"/></dir></dir><file name="Rest.php" hash="2ffb744a862514ccb6577bb0d8675b62"/><dir name="Validator"><file name="Product.php" hash="2b9bd3d8b2fa4f5c3daf9e3a53393d50"/></dir><dir name="Website"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="ee077e7df81f76d213ae46633f6f4ba4"/></dir></dir><file name="Rest.php" hash="9d3602216e191bf99becca9910bca0f7"/><dir name="Validator"><dir name="Admin"><file name="Website.php" hash="34f9c9b71577505c06c6eef684b43cf4"/></dir></dir></dir><file name="Website.php" hash="cf518e10f2526b9fed8d52a67d80436a"/></dir><file name="Product.php" hash="c54f775bedb69252eb2c71c0be14a352"/></dir><dir name="Attribute"><dir name="Backend"><file name="Customlayoutupdate.php" hash="a18b52aabc25ecefaf311c1a07a9ae3b"/></dir></dir><dir name="Category"><dir name="Api"><file name="V2.php" hash="00def84dff2c84f14d92f44d633ed49d"/></dir><file name="Api.php" hash="c6dc8aabece26ebdb4956ff6c42cfbca"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="cc90e8f4b0cdfd4ab7e60aa6037b6666"/></dir><file name="Api.php" hash="bd514444b417f65e16800b627f9336a7"/><dir name="Backend"><file name="Image.php" hash="3643106b16ee476e6826ea642821dfa2"/><file name="Sortby.php" hash="22e5dee30b58941f5c7e3f5245d96a06"/><file name="Urlkey.php" hash="b5fc8f0f1e6ec057c683b44f50734306"/></dir><dir name="Source"><file name="Layout.php" hash="3f510f1d8d9d04e24446e99c26f45e19"/><file name="Mode.php" hash="9ff238e86f9d29c5e548b858e1e666a0"/><file name="Page.php" hash="d529a73910fbaaebbb42505fd7803888"/><file name="Sortby.php" hash="d8f971e6e1ba1a1ac8f4b7f4362d09ff"/></dir></dir><dir name="Indexer"><file name="Flat.php" hash="0ef7e15ae6b4f82162eae4bc9dbed902"/><file name="Product.php" hash="1cb71506b0ed58d1536978adc6de915e"/></dir></dir><file name="Category.php" hash="63d7ccab50f44fe612728fae7cccec4d"/><file name="Config.php" hash="7d0dbb62b8532e88f95f5f817fbc70fc"/><dir name="Convert"><dir name="Adapter"><file name="Catalog.php" hash="80e5319248c47a1ec58290309e37f7ca"/><file name="Product.php" hash="64cceba11a4e1fc9a35d2393c38c4d27"/></dir><dir name="Parser"><file name="Product.php" hash="c88cbe081912e8728628df224f850af4"/></dir></dir><file name="Convert.php" hash="4c8901011dcaddebcc9e14f04158ac37"/><file name="Design.php" hash="967a57b42709abd07eb249399c5715bb"/><dir name="Entity"><file name="Attribute.php" hash="3ebb9516f7fc18d9c2f98ecb8bf66d54"/><dir name="Product"><dir name="Attribute"><dir name="Design"><dir name="Options"><file name="Container.php" hash="b4f01ad3d8dfafdb5e5abd755da0d2b6"/></dir></dir><dir name="Frontend"><file name="Image.php" hash="d70783b713ed056826b6399dec9cbcfb"/></dir></dir></dir></dir><dir name="Indexer"><file name="Url.php" hash="3ef9ea180c050bcf00cb92b275d2cfe7"/></dir><file name="Index.php" hash="e5643b1c63750e142f691326d9ebacb9"/><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="07209f06fd9272c285779d4eb743c25b"/><file name="Attribute.php" hash="265ed40cc812eb2d0c07ec7da682fdd1"/><file name="Category.php" hash="1cbd1b395f03ea658d9817d8b562d90a"/><file name="Decimal.php" hash="c708995dc52df027e9651d2c2056b989"/><file name="Item.php" hash="a89d7e3c9ca9c370340b38ae2c5ba159"/><dir name="Price"><file name="Algorithm.php" hash="8bf78e33f5420c26770f820e2649b1a4"/></dir><file name="Price.php" hash="6c315f95543f8c7794536c0408214f50"/></dir><file name="State.php" hash="3bf72b27ad4604c9d0c9c203d68a83ec"/></dir><file name="Layer.php" hash="380a8f7feea88685a9c53094994e9c3b"/><file name="Observer.php" hash="0b3f71501f894d1f24d9e6a360e97017"/><dir name="Product"><file name="Action.php" hash="c1f837402ab6fbf150697db0abd4f0b1"/><dir name="Api"><file name="V2.php" hash="efb641342daa72d2d9038d63b3ef6ba7"/></dir><file name="Api.php" hash="319b0a0017667788bc2cee9fc3b69c90"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="5881338f539fb64389bf925945802215"/></dir><file name="Api.php" hash="a6384296f164d33ff9b51e094aa65b15"/><dir name="Backend"><file name="Boolean.php" hash="20f58084bc44b486a0d2b481ddc598b8"/><dir name="Groupprice"><file name="Abstract.php" hash="4ee4049288aba4bfeef041e26b0b084b"/></dir><file name="Groupprice.php" hash="baf7f35610f23c2ec69f8a559037e1e3"/><file name="Media.php" hash="595b15865a43fb3a512526fdcdc58622"/><file name="Msrp.php" hash="8e625124dcc4a4fb53b41f225c7deba8"/><file name="Price.php" hash="cd4c8696d6f30b8a01cfccb84448b3a3"/><file name="Recurring.php" hash="ac71b5ab3182a80e4ff357d43f584825"/><file name="Sku.php" hash="d4505bdabef935ccdc7235be312f9ea2"/><file name="Startdate.php" hash="3f6e387a2452ca5a2f1923de09cae93a"/><file name="Tierprice.php" hash="543e4d4f4081ce31258c03c147a97ead"/><file name="Urlkey.php" hash="80a02f7bf4f52662967ce1cc31f16151"/></dir><dir name="Frontend"><file name="Image.php" hash="f5fcef402c881ab1f6da75d15b1d2761"/></dir><file name="Group.php" hash="ac34463324e9d541855add15c338b73d"/><dir name="Media"><dir name="Api"><file name="V2.php" hash="8ff116f18052afaea088d1c357dc2497"/></dir><file name="Api.php" hash="4b0d4d9f28cf4c942f723e306c401102"/></dir><dir name="Set"><dir name="Api"><file name="V2.php" hash="b6d1982ac5214df19aab12af36112a8d"/></dir><file name="Api.php" hash="ec8467bf53c46015a0cddb5603831c5d"/></dir><dir name="Source"><file name="Boolean.php" hash="629c7c7d0a2312014f308c5e9487eea4"/><file name="Countryofmanufacture.php" hash="15c1dce6e210c666de9d03a7c9e7c9d9"/><file name="Inputtype.php" hash="c000cb4b51d83179e7b71b3bcdbf0772"/><file name="Layout.php" hash="d9f49ed3759861d7d9dc635a70eb1d64"/><dir name="Msrp"><dir name="Type"><file name="Enabled.php" hash="01385f2a733cb860f07ec3cbbacb4f34"/><file name="Price.php" hash="6bd211b0bd868929b08d1d27c5f37597"/></dir><file name="Type.php" hash="be55c8ee1447f00bd577b8de92c2ce15"/></dir></dir><dir name="Tierprice"><dir name="Api"><file name="V2.php" hash="36880c5804ca1dd9c4fe8c90eb24ce26"/></dir><file name="Api.php" hash="f4d44e2afc62b73369d68e9f41ab1166"/></dir></dir><dir name="Compare"><file name="Item.php" hash="47b467433280016cd1471a33a94adddf"/><file name="List.php" hash="a7ab49b465233022ceea70ba302ca857"/></dir><dir name="Condition"><file name="Interface.php" hash="1ac8f8c1835b91c118a4db918c19b677"/></dir><file name="Condition.php" hash="5b3e909d745f43899316be5002efeffc"/><dir name="Configuration"><dir name="Item"><file name="Interface.php" hash="4e2ecbab2fc32668a78f95b50950e0ee"/><dir name="Option"><file name="Interface.php" hash="7e5f793780438f94d21ee9665074c8bb"/></dir><file name="Option.php" hash="440cd23deac75a638e00ebae18c39d74"/></dir></dir><dir name="Flat"><file name="Flag.php" hash="f11a15bc8e6009ea5dd4e5ab55cffe47"/><file name="Indexer.php" hash="aad92d7aa142c1a174da7d2beae71a61"/><file name="Observer.php" hash="6f1283bf6017e5e82f2224f9790dec5a"/></dir><file name="Image.php" hash="f8ad0f4ebab2892f9a90650ed95bf153"/><dir name="Indexer"><file name="Eav.php" hash="abb9b16e235a211089215ae6cd8c9698"/><file name="Flat.php" hash="d15cd5ce017c5de0c0a2954251e4144b"/><file name="Price.php" hash="63aac64136901de1d6b5617cbe26e678"/></dir><dir name="Link"><dir name="Api"><file name="V2.php" hash="9313cc40a69bfe3922a558cf98daaa0b"/></dir><file name="Api.php" hash="d54ff58dce479f9647c83841f2d26b6e"/></dir><file name="Link.php" hash="9d1ec334f56745a2698939733b88b7a7"/><dir name="Media"><file name="Config.php" hash="0aad1d5a6625b585955bf067bb5be148"/></dir><dir name="Option"><dir name="Api"><file name="V2.php" hash="3893d7de38413750ac593aa4c513e661"/></dir><file name="Api.php" hash="94f0b60ba05920963dd13f4c2324abe5"/><file name="Observer.php" hash="7603a6416d474e1473aefae2a54bd923"/><dir name="Type"><file name="Date.php" hash="b58c42df1c8470b5a185d7e051d57654"/><file name="Default.php" hash="3ab0d66eb311ae56a42b11113319369e"/><file name="File.php" hash="7e0ad61bc60af97302938669ea287dce"/><file name="Select.php" hash="72457483c34567c43c46ff2cf6fe40c4"/><file name="Text.php" hash="b917917c3c647488711492f84f994224"/></dir><dir name="Value"><dir name="Api"><file name="V2.php" hash="0956e892a1b24ae6db43e34307022aa3"/></dir><file name="Api.php" hash="486c8a37aba430fc617eb801ac5b24d2"/></dir><file name="Value.php" hash="703d8782247162fa6a1c1e91bd29f779"/></dir><file name="Option.php" hash="b998f1ca9ab026604c596b5f9b455161"/><file name="Status.php" hash="168355e024d2123208f0e05cc078c2d1"/><dir name="Type"><file name="Abstract.php" hash="3ecc4e061777203004afe3556610be1c"/><dir name="Api"><file name="V2.php" hash="430b76590f3c739057fe7a549d8bd9f3"/></dir><file name="Api.php" hash="95e0f6d3e00aebf6775caab41bb658c6"/><dir name="Configurable"><file name="Attribute.php" hash="bdcc9ea5651b352e0178653ec065c7ed"/><file name="Price.php" hash="6587f1141b8a716903ffcbf32ccd173a"/></dir><file name="Configurable.php" hash="70b1c396c7d5abe97e1186b052dc5776"/><dir name="Grouped"><file name="Price.php" hash="f7ffacb249d0b2f17bfd13fbbadd61b7"/></dir><file name="Grouped.php" hash="de6bcd173a2207f9a95834d3bd3363ee"/><file name="Price.php" hash="7c0d98f5422eb35b028bba4b61fd76ee"/><file name="Simple.php" hash="4de7180951c95ed418b4c88a4387bd64"/><file name="Virtual.php" hash="4c78e4d555eed902bc7f3019d64cc1b4"/></dir><file name="Type.php" hash="5bc6df528ede983a5b8adf4443411c74"/><file name="Url.php" hash="6b70e8d020e0937dd4005f0611c49170"/><file name="Visibility.php" hash="e96455ea9923fda537151303a4d5e487"/><file name="Website.php" hash="f3bd1677f142d93df79014340e4ab603"/></dir><file name="Product.php" hash="066bf714d46a398a32514aae6c166f7d"/><dir name="Resource"><file name="Abstract.php" hash="c69ccf1cb11ab39f332055be2ac0068c"/><file name="Attribute.php" hash="b929931c835da00378818a2901a3737e"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="123e73ae508559f3270334dd76cbdadd"/><dir name="Frontend"><file name="Image.php" hash="43294bc1d0d2ab8a92c8f65495c61735"/></dir><dir name="Source"><file name="Layout.php" hash="a7552f9d15d5db961b63042affcf6df2"/><file name="Mode.php" hash="aea219d00c15775f4d79d486d1eda0b3"/><file name="Page.php" hash="4dfbaa8687b9381ce82bb08160d3fed8"/></dir></dir><file name="Collection.php" hash="bf171598cfe5944661bad65a800c6cb3"/><dir name="Flat"><file name="Collection.php" hash="da4a18631e7009fb6d774f748a86657d"/></dir><file name="Flat.php" hash="88c9f5e550be4d5f740837539a899dac"/><dir name="Indexer"><file name="Product.php" hash="c763a77e4d21a16bb67518dc1baf887f"/></dir><file name="Tree.php" hash="ae88ccc5d313417c3182f4354154f9cb"/></dir><file name="Category.php" hash="532ad54ea68f4642e66828417f2903dd"/><dir name="Collection"><file name="Abstract.php" hash="4a234eb3cb36a4843ba98ef26e60cbc2"/></dir><file name="Config.php" hash="a10243503d7b9f49482a71e83e33d7c8"/><dir name="Eav"><file name="Attribute.php" hash="02aa26b6268a956cfdac3b0e7f4a7f11"/><dir name="Mysql4"><file name="Abstract.php" hash="54e0917377ba72a404cee327e909a6f5"/><file name="Attribute.php" hash="1a7f7c840d915d969631072095e58b19"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="3def3b01b469e573620e6b832be7c302"/><dir name="Frontend"><file name="Image.php" hash="e0eeb9680b38468e00f17d198c9bb17b"/></dir><dir name="Source"><file name="Layout.php" hash="631de924b75ba1015ac2e76e652fce2d"/><file name="Mode.php" hash="f76a7b1e1e4a704ebbe150b79199d31d"/><file name="Page.php" hash="564e5eafde85ccbfc3fd67f2f6680308"/></dir></dir><file name="Collection.php" hash="8c10f5224ea25a934d8d97395437e60e"/><dir name="Flat"><file name="Collection.php" hash="5730cb3c51a9e32b7c6244e4fcfd271d"/></dir><file name="Flat.php" hash="48e0c1edf7a29394dec1df8b0992a374"/><dir name="Indexer"><file name="Product.php" hash="b9fd339bef70da3f564803daf94050cb"/></dir><file name="Tree.php" hash="1ea31cd895111fcc091fb31a3ac7e525"/></dir><file name="Category.php" hash="c63953da6411b641c921f9b108692a18"/><dir name="Collection"><file name="Abstract.php" hash="d22080a250ae6c780819ae083a6f7f27"/></dir><file name="Config.php" hash="8bcbee3e72c9e916aa954234cd714e41"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="a50ca0fa8b0b7ca945307001f8398584"/><file name="Decimal.php" hash="8165a61e740a0fc18fce65a47e0d462d"/><file name="Price.php" hash="a88066d7ecde8cbabb6d0ccbc11eb8d0"/></dir></dir><dir name="Product"><file name="Action.php" hash="ee6a8745f2bb23d1e94e2c3204c313c2"/><dir name="Attribute"><dir name="Backend"><file name="Image.php" hash="78c7bf8c783b60b45f1cd41c544a7ccd"/><file name="Media.php" hash="5d6c074cdfaefdba11e8c8bcc4245f98"/><file name="Tierprice.php" hash="da0442b70a9bb702807855a9d51d4ec3"/><file name="Urlkey.php" hash="b513cb01fc5fec75313f310f686a2aac"/></dir><file name="Collection.php" hash="864df3b65e4c9e3048ad329735ea04ae"/><dir name="Frontend"><file name="Image.php" hash="5a489c59850dfad8e04f863a9891845a"/><file name="Tierprice.php" hash="975b23122653a828bf0bce4efd000e5d"/></dir></dir><file name="Collection.php" hash="2ddfa87bc7c232e59aecebdb5fb3d3b7"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="aaaa1f2ef7a009bc4d6397ffffed4015"/></dir><file name="Item.php" hash="c83ea32ffd63dc124e3098afc9c4fd20"/></dir><dir name="Flat"><file name="Indexer.php" hash="6fd41c445cadabe3a6b09acdacd9dd53"/></dir><file name="Flat.php" hash="384c5d1bed9b40124e48b8047e0fc8e4"/><dir name="Indexer"><file name="Abstract.php" hash="301d2b8800d78a3a00b5948b990710a7"/><dir name="Eav"><file name="Abstract.php" hash="adcbf9f66fd233847bbf0ca92b9211e1"/><file name="Decimal.php" hash="a83e3c4dec8eed4a91020b2a36f45d2a"/><file name="Source.php" hash="7075e79ddbff51868915191b026add29"/></dir><file name="Eav.php" hash="1b986943981148791828cabdecc013f2"/><dir name="Price"><file name="Configurable.php" hash="ef84391a8be534bb95638fc3bfa0c49e"/><file name="Default.php" hash="4977dde2e2e35763f4ae2b0f9bb6970c"/><file name="Grouped.php" hash="d5d8d8ed28242ce8d0ab0dd6924bc082"/><file name="Interface.php" hash="149ba8acd9fe55c0ab917eec67040bd3"/></dir><file name="Price.php" hash="b45551472dd16cc986f5d9da16993bbe"/></dir><dir name="Link"><file name="Collection.php" hash="4123daf2c26bb057ce367267c2830b3d"/><dir name="Product"><file name="Collection.php" hash="819caecc5d52fb6b3d794aeed663e66a"/></dir></dir><file name="Link.php" hash="c5fc040ca2124ead6230d621c18e1085"/><dir name="Option"><file name="Collection.php" hash="7acd066ce8bd9cd49106d5aec040cef0"/><dir name="Value"><file name="Collection.php" hash="13d4c83b87e425e837ed205d1ff36e3a"/></dir><file name="Value.php" hash="3764e37ca59e04ca518fc762917742c2"/></dir><file name="Option.php" hash="21988eeda41701b883a86ca11b846bf7"/><file name="Relation.php" hash="b91be9be2bb665665e96f72be33b9525"/><file name="Status.php" hash="72181542be4fac34bfef4d4f5c7be159"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="9e93e7fc78857b29db22a43b3656098c"/></dir><file name="Attribute.php" hash="3fd39e93d6c82a5f9541398773a36691"/><dir name="Product"><file name="Collection.php" hash="c1fa746bfea7155b3c9e77163362c0df"/></dir></dir><file name="Configurable.php" hash="452ed3d6d0098d7f517bebd3c9946e0e"/></dir><file name="Website.php" hash="681b6e3ff6cf694719f9a0729c58a885"/></dir><file name="Product.php" hash="25ce7dcfedd544d39994ce2d556d7422"/><dir name="Sendfriend"><file name="Collection.php" hash="8a71e561cb5376208a8f4290a4043192"/></dir><file name="Sendfriend.php" hash="8e78bdbd4832a9316756161d0e4b69f1"/><file name="Setup.php" hash="585f6be7509082f88bfbdbab1c7378db"/><file name="Url.php" hash="3f5d06db53de67458c64e72ff408fb92"/></dir></dir><dir name="Helper"><file name="Mysql4.php" hash="2deb1b4a29897ed476bea1e2f98a8c74"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="88affe38a4463292d1659764d604d55a"/><file name="Decimal.php" hash="c8eb792682b2c0cf4b83588df05007c6"/><file name="Price.php" hash="7c280394e0d2e3dbd032f17b0df6ce14"/></dir></dir><dir name="Product"><file name="Action.php" hash="597d83ca4f538c53f1ed0abbbe52c90c"/><dir name="Attribute"><dir name="Backend"><dir name="Groupprice"><file name="Abstract.php" hash="2f0e997bbd6e98e583999be75c12d4f4"/></dir><file name="Groupprice.php" hash="10654c59d462d5c383ae0afe7b55f636"/><file name="Image.php" hash="53a5b2081e9d53dd30e57fd9c2384683"/><file name="Media.php" hash="72bd1e6ef4d1715bf0cea608910a25e1"/><file name="Tierprice.php" hash="f958fa7bdd247fe11cad64ae406e88c9"/><file name="Urlkey.php" hash="99084b2cba1e4ee6bf61916649dae474"/></dir><file name="Collection.php" hash="5141c764f5d1211757d321aa54c9870e"/><dir name="Frontend"><file name="Image.php" hash="7393c64546f97ddae6bb28323662e8d9"/><file name="Tierprice.php" hash="316dd506e4dc7a74b78e42597199642e"/></dir></dir><file name="Collection.php" hash="b3043fae2aec5d3bb0e7d7e66944fa7d"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="75bbe102fb02e91cde01534fcc697378"/></dir><file name="Item.php" hash="c907ce8eef441cd95f7e53902d0534a4"/></dir><dir name="Flat"><file name="Indexer.php" hash="5d84483e8908ae1c5cc8587790df7ed0"/></dir><file name="Flat.php" hash="38c253c7a9de420a81533185348e08e8"/><dir name="Indexer"><file name="Abstract.php" hash="36be593846f08656614294573a335615"/><dir name="Eav"><file name="Abstract.php" hash="ad008ff4ac04515960b42b097d04602a"/><file name="Decimal.php" hash="24b77b22c5f81e415c74595d1aa6df6f"/><file name="Source.php" hash="4c7ce4e7b6a0f407e5993c7dc530eaab"/></dir><file name="Eav.php" hash="a6fd11c512eefd47721a8bf3cceddfdf"/><dir name="Price"><file name="Configurable.php" hash="2e2954b4835c0c444707fde57c231c50"/><file name="Default.php" hash="35646c98ff4397223986df4907e4f2e5"/><file name="Grouped.php" hash="4f2a656de333fecf3560c34c3d5758db"/><file name="Interface.php" hash="75958f5139d7b670c8a44a2c3b9c86d5"/></dir><file name="Price.php" hash="aee5a3fefbf08d366af80f98b71d06de"/></dir><dir name="Link"><file name="Collection.php" hash="8e0a19a50a521c0a50bee33d3eac9a5e"/><dir name="Product"><file name="Collection.php" hash="1b223ee5c9f970b2bdbd184df848c26f"/></dir></dir><file name="Link.php" hash="bb9f7633b95fcfa3ee64849a52d98c12"/><dir name="Option"><file name="Collection.php" hash="921b7dc60ad148820e41008b2410f8e8"/><dir name="Value"><file name="Collection.php" hash="272509d83680b04a23bd83385fdd2171"/></dir><file name="Value.php" hash="dad71291a0b390c2349e09dcdea19101"/></dir><file name="Option.php" hash="e8f57a58c9390ec0ead9c6ec57f6df0a"/><file name="Relation.php" hash="5494ae3436cb3b917ee69817570239bf"/><file name="Status.php" hash="2f0751ac600723819202a6dcdb0ea1f8"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="a4027af7b70802a80d563b1a33a6464a"/></dir><file name="Attribute.php" hash="877bf0d22fe205af3285fae73eba6757"/><dir name="Product"><file name="Collection.php" hash="49257bc4846a3c811cb2ae27d79d10b2"/></dir></dir><file name="Configurable.php" hash="a1e13fe6cbd4e80961f165b24d40fe7d"/></dir><file name="Website.php" hash="43b8718bbacc5391fd35b444c857a4c5"/></dir><file name="Product.php" hash="49632e72d3eb99816dc20e3eff782bec"/><file name="Setup.php" hash="d98f23e3626d4f0f13049eac6c7c0ade"/><file name="Url.php" hash="524c1ca379266ee33c31903e5fb96bd1"/></dir><file name="Session.php" hash="28a9ce46becf1ded26b3de3a7e174227"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Catalog"><dir name="Category"><file name="Flat.php" hash="07b4769ff1098c221aa0f3048635310a"/></dir><dir name="Product"><file name="Flat.php" hash="8ce309c61f39cda4095123f1c55c9633"/></dir><dir name="Url"><dir name="Rewrite"><file name="Suffix.php" hash="71f498b9618b37e612f459a295888659"/></dir></dir></dir></dir></dir></dir><dir name="Template"><file name="Filter.php" hash="02e34745f4f57b74de0e30414d7777f0"/></dir><file name="Url.php" hash="93b2fed53ed7e033946390c2429b1207"/></dir><dir name="sql"><dir name="catalog_setup"><file name="install-1.6.0.0.php" hash="ad921384ecb4e5321de552f37538720b"/><file name="mysql4-data-upgrade-0.7.57-0.7.58.php" hash="fbc11c2f8af6c1784786c576667ed5c1"/><file name="mysql4-data-upgrade-0.7.63-0.7.64.php" hash="3c201a02328312b90ec60c4fb6c896a4"/><file name="mysql4-data-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="a96da7aea08b757c902f4145b43bd0de"/><file name="mysql4-data-upgrade-1.4.0.0.42-1.4.0.0.43.php" hash="dc6ab330e9e997d82b9f63183a23de2c"/><file name="mysql4-install-0.7.0.php" hash="f00815b729f4daae1b2308ce6f0209da"/><file name="mysql4-install-1.4.0.0.0.php" hash="b1a02473288e0e2d975c5c0586c32714"/><file name="mysql4-upgrade-0.6.40-0.7.0.php" hash="1e0b1bc674e1a56954e1ac6fab89f143"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="3ee1d8a3c02c738e4356db7dc94db686"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5ffabf05e5dc771b47d2853d28d57b83"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="baca868a7c1baaf29b978e8c7f738b8c"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="a65c190216b1529edc9e7f3e6d667a64"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="f20973e0349f343a23436737894223e8"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="08a8555232c9706abfe7a6e65072efbb"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="b09e30e0414121de443cfdfbae7f9d2e"/><file name="mysql4-upgrade-0.7.16-0.7.17.php" hash="a65c190216b1529edc9e7f3e6d667a64"/><file name="mysql4-upgrade-0.7.17-0.7.18.php" hash="d11b2eb5ee618ec7ec200f96859dddad"/><file name="mysql4-upgrade-0.7.18-0.7.19.php" hash="1b3942e17e5fad4420b2a981b402b48a"/><file name="mysql4-upgrade-0.7.19-0.7.20.php" hash="baca868a7c1baaf29b978e8c7f738b8c"/><file name="mysql4-upgrade-0.7.20-0.7.21.php" hash="808ea0cb0ac530c99bb74cf4c8667b62"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="cce2a70fc845d74b9cd494781fe0fb97"/><file name="mysql4-upgrade-0.7.21-0.7.22.php" hash="670d05a347d1b8ed78158a1e687db37f"/><file name="mysql4-upgrade-0.7.22-0.7.23.php" hash="af63d44aedca0e8ad97bec2ef68c0474"/><file name="mysql4-upgrade-0.7.23-0.7.24.php" hash="8597fbfa1d25dfee1ff6a876549ad5f3"/><file name="mysql4-upgrade-0.7.24-0.7.25.php" hash="71699fcd8d90e7d89ec87d3d556efdf9"/><file name="mysql4-upgrade-0.7.25-0.7.26.php" hash="71699fcd8d90e7d89ec87d3d556efdf9"/><file name="mysql4-upgrade-0.7.26-0.7.27.php" hash="ef875ebea51580ee7f637806f819d9d0"/><file name="mysql4-upgrade-0.7.27-0.7.28.php" hash="10f956c6ad345bbb4de904a3719056b0"/><file name="mysql4-upgrade-0.7.28-0.7.29.php" hash="c9930230d3e9b0d9d0e51ea549f64c81"/><file name="mysql4-upgrade-0.7.29-0.7.30.php" hash="4a3af6855b9691362a746945c7fe86fa"/><file name="mysql4-upgrade-0.7.30-0.7.31.php" hash="fd4fabdcf2a59ac8afcd830c16cad57f"/><file name="mysql4-upgrade-0.7.31-0.7.32.php" hash="ee3945988e80661d7ac629c5ee5fa737"/><file name="mysql4-upgrade-0.7.32-0.7.33.php" hash="376aafc029353586ce290fe0228e3cbc"/><file name="mysql4-upgrade-0.7.33-0.7.34.php" hash="032b70722d7bf9e66ff97b0c9f596b93"/><file name="mysql4-upgrade-0.7.34-0.7.35.php" hash="166dc4ca6d158083f2c1527872f242cd"/><file name="mysql4-upgrade-0.7.35-0.7.36.php" hash="98554f5582a30e5cb714ab308f2f8eb7"/><file name="mysql4-upgrade-0.7.36-0.7.37.php" hash="ebc5b64e3b867d323d8d2bdc200d3aaa"/><file name="mysql4-upgrade-0.7.37-0.7.38.php" hash="a703dca1ded382a4387a6b02b8641109"/><file name="mysql4-upgrade-0.7.38-0.7.39.php" hash="e95e4ee289824b6178a3679c7e70ff5f"/><file name="mysql4-upgrade-0.7.39-0.7.40.php" hash="b0b7b6f06d7ae814bdd077139c73460b"/><file name="mysql4-upgrade-0.7.40-0.7.41.php" hash="73b9b80a135239b1464221fa052a2f2d"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="72b3dec5d25881cb71a0e88f1dc74b05"/><file name="mysql4-upgrade-0.7.41-0.7.42.php" hash="26f7713c9364d994a4c58380ba8e8877"/><file name="mysql4-upgrade-0.7.43-0.7.44.php" hash="be8e738ea3dfb12961b2aefdad9f8a9e"/><file name="mysql4-upgrade-0.7.44-0.7.45.php" hash="63600279c19aa5b0fbc7e1d38d51bce9"/><file name="mysql4-upgrade-0.7.45-0.7.46.php" hash="bb079b463c7e9e19450fa498388c0cb4"/><file name="mysql4-upgrade-0.7.46-0.7.47.php" hash="1a176bb9202c58c616114c82725a17b4"/><file name="mysql4-upgrade-0.7.47-0.7.48.php" hash="54792e27a4e78f44e02c17d0bbbe8518"/><file name="mysql4-upgrade-0.7.48-0.7.49.php" hash="b38d10c0fd45bbd6e799882b047bbccd"/><file name="mysql4-upgrade-0.7.49-0.7.50.php" hash="91df9a198fb03246c7b5840a91ded2ec"/><file name="mysql4-upgrade-0.7.50-0.7.51.php" hash="f391de62a2082811c51c8bbdb4be6f8a"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="63793936af40b8dc7e756ba49e2c19b5"/><file name="mysql4-upgrade-0.7.51-0.7.52.php" hash="833513052ae08631feaa20a98d1ad3c5"/><file name="mysql4-upgrade-0.7.52-0.7.53.php" hash="c76c2788c70fa181b405fcd35764963f"/><file name="mysql4-upgrade-0.7.53-0.7.54.php" hash="33b53f8c51cfd620fcad7c7a2766a490"/><file name="mysql4-upgrade-0.7.54-0.7.55.php" hash="0d2a7d8f502ff4f827bdda3f1067c1a4"/><file name="mysql4-upgrade-0.7.55-0.7.56.php" hash="8fa01581a31ed681f69b5374ca46ee01"/><file name="mysql4-upgrade-0.7.56-0.7.57.php" hash="809d0b9ff1dd1da94185b356a4212e60"/><file name="mysql4-upgrade-0.7.57-0.7.58.php" hash="20f125455e91b2837ea5d4eb7be5adbb"/><file name="mysql4-upgrade-0.7.58-0.7.59.php" hash="b462918fa818c0ed6ceb3dc73a7aa8ed"/><file name="mysql4-upgrade-0.7.59-0.7.60.php" hash="4bcbdd08ac8f0591c172b08ae52c57df"/><file name="mysql4-upgrade-0.7.60-0.7.61.php" hash="2d53b1c245a770515844a20672ea41e2"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="baca868a7c1baaf29b978e8c7f738b8c"/><file name="mysql4-upgrade-0.7.61-0.7.62.php" hash="d63196cad76c8d3df4dc0cda191f9ace"/><file name="mysql4-upgrade-0.7.62-0.7.63.php" hash="c407ff92565a8f50ac41ab4b1b39d6ad"/><file name="mysql4-upgrade-0.7.63-0.7.64.php" hash="fc1da9272be7b2c101713620a0b4dd50"/><file name="mysql4-upgrade-0.7.64-0.7.65.php" hash="c2fa13d39f8b09145666762655327595"/><file name="mysql4-upgrade-0.7.65-0.7.66.php" hash="e7ac8c9e6aa5e900aba798520e318e08"/><file name="mysql4-upgrade-0.7.66-0.7.67.php" hash="a8e01b522f5694380b81e0c5d7c87058"/><file name="mysql4-upgrade-0.7.67-0.7.68.php" hash="03122959a4f550a91ebdac6406336f3d"/><file name="mysql4-upgrade-0.7.68-0.7.69.php" hash="9d5155560c09f8e877bab758342c9931"/><file name="mysql4-upgrade-0.7.69-0.7.70.php" hash="130cd81057509e88f9f5c38dcfa0aa91"/><file name="mysql4-upgrade-0.7.70-0.7.71.php" hash="b30e3842f69d7a764ba3964e658e7e97"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="19ed39c848698bde2a4218cd3bf110b1"/><file name="mysql4-upgrade-0.7.71-0.7.72.php" hash="603905d9cd2a74997e97e5e773004571"/><file name="mysql4-upgrade-0.7.72-0.7.73.php" hash="95d812b3528500d8ecaf9d7931e75b61"/><file name="mysql4-upgrade-0.7.73-1.4.0.0.0.php" hash="f93b537e7931c9ea5153e27d85af176b"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="56a2313959d210ce135968bf9ca36306"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="0bfdcdba7e89b6d9f39054d1c9501720"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="a276d3b6cc01683e88dd64f4e8566039"/><file name="mysql4-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="0c37b58db8628a3918cda9eb5d283345"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="2e0de3d67a765d790cdf9e67bbbbca5a"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="5f23881df0672a5e78a62d08792048c0"/><file name="mysql4-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="540674bc661d67ae14c91bf5bac9aa12"/><file name="mysql4-upgrade-1.4.0.0.14-1.4.0.0.15.php" hash="4befaf7bccad74033742874bad95c388"/><file name="mysql4-upgrade-1.4.0.0.15-1.4.0.0.16.php" hash="7c248ccc0cc519f3fd849046a96bc2cd"/><file name="mysql4-upgrade-1.4.0.0.16-1.4.0.0.17.php" hash="a8577e73ede45f9984f8816d4ccbc759"/><file name="mysql4-upgrade-1.4.0.0.17-1.4.0.0.18.php" hash="7c60e1faf5ec1953a82aac0c457600d7"/><file name="mysql4-upgrade-1.4.0.0.18-1.4.0.0.19.php" hash="eff95f91245c11952840bb89b4e4b699"/><file name="mysql4-upgrade-1.4.0.0.19-1.4.0.0.20.php" hash="4930c26c4f68e36fb68cf57441fcbee6"/><file name="mysql4-upgrade-1.4.0.0.20-1.4.0.0.21.php" hash="ff8c55b1772e19344e91da10df230ea4"/><file name="mysql4-upgrade-1.4.0.0.21-1.4.0.0.22.php" hash="f5c748f679ea6b6b7943c838bb4b158b"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="3cd83d6c7423277e587f41a8e6256ef6"/><file name="mysql4-upgrade-1.4.0.0.22-1.4.0.0.23.php" hash="d2d51ee9094e2750bf1203c8d487f557"/><file name="mysql4-upgrade-1.4.0.0.23-1.4.0.0.24.php" hash="9f7b457b88c977ddd7d0b70d0e79e7b7"/><file name="mysql4-upgrade-1.4.0.0.24-1.4.0.0.25.php" hash="4b1a94dd2b77c8de7f07e5673734056c"/><file name="mysql4-upgrade-1.4.0.0.25-1.4.0.0.26.php" hash="8cf6a611ae303ce382b91e4865f1a5b0"/><file name="mysql4-upgrade-1.4.0.0.26-1.4.0.0.27.php" hash="7da42836de6e3293fbb34d80ae21fe72"/><file name="mysql4-upgrade-1.4.0.0.27-1.4.0.0.28.php" hash="191c1538540e903de7f188e636569651"/><file name="mysql4-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="700db8e90d8eb0394fac17daaaef77f1"/><file name="mysql4-upgrade-1.4.0.0.30-1.4.0.0.31.php" hash="584fc43cbcf0100c515102ca1ce45d33"/><file name="mysql4-upgrade-1.4.0.0.31-1.4.0.0.32.php" hash="9951c22a53f86c0fef8a68a96a919719"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="98caa0d03dc64c153c9a720a4533bf7c"/><file name="mysql4-upgrade-1.4.0.0.32-1.4.0.0.33.php" hash="a02773cdafa219ff1e1e779f4438085c"/><file name="mysql4-upgrade-1.4.0.0.33-1.4.0.0.34.php" hash="f470b138fbc7d70862f02683393f0eb2"/><file name="mysql4-upgrade-1.4.0.0.34-1.4.0.0.35.php" hash="183842c9657efa0c5a266aaec0d03d10"/><file name="mysql4-upgrade-1.4.0.0.35-1.4.0.0.36.php" hash="4ef10bf8d290a1dd67d4b6b47afd85c7"/><file name="mysql4-upgrade-1.4.0.0.36-1.4.0.0.37.php" hash="cb78f27e3fa9cf8799823bfb86c69d86"/><file name="mysql4-upgrade-1.4.0.0.37-1.4.0.0.38.php" hash="f58c2e86a34b7d178ade48c69e02655b"/><file name="mysql4-upgrade-1.4.0.0.38-1.4.0.0.39.php" hash="b0c6d11a391d8d74ccd3b757145a79e6"/><file name="mysql4-upgrade-1.4.0.0.39-1.4.0.0.40.php" hash="fa064fd774fdad97ccea634cf7248daf"/><file name="mysql4-upgrade-1.4.0.0.40-1.4.0.0.41.php" hash="3d0dd3713f5028b45a4eefa1c41df0bb"/><file name="mysql4-upgrade-1.4.0.0.41-1.4.0.0.42.php" hash="af02db73e1d8ba2867cfbb7d7948c126"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="60edf30f495984ca669a722ec2fe1ad0"/><file name="mysql4-upgrade-1.4.0.0.43-1.4.0.0.44.php" hash="4953a2da73a9e2f275ac0f46692f8677"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="7c3d5e56a6e7bbb66f8b1c0b252e9b7c"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="e5fc68230870e2f3573d35c51ff3c1b4"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="181e37c295a7a9c4dc1ed91f27453613"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="9745eba26bbd1d44b6bf43de3d59b69b"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="da5a2725997f77e291169459eff3943b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="53bfbfa06338f724ea0f53d5d9d61e35"/><file name="mysql4-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="77dbc527a8fe7e8e6c9932e6bcb224ec"/><file name="upgrade-1.6.0.0.10-1.6.0.0.11.php" hash="559af4e97136800c3aa4a71cd47c7974"/><file name="upgrade-1.6.0.0.11-1.6.0.0.12.php" hash="f6378269e10a7f1b05a42b649f262068"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="481e82dfe42ba1f8b2cc5a17b0834f84"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="1109e859385ac22dd74b16edc15d3bc3"/><file name="upgrade-1.6.0.0.2-1.6.0.0.3.php" hash="2e6302e49f53d0c0eb443739e0ec7040"/><file name="upgrade-1.6.0.0.3-1.6.0.0.4.php" hash="a45c56475e5bfa1c8ebaeba9af5dd67d"/><file name="upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="d035ac5b300f72bc6453139ff51ffa8c"/><file name="upgrade-1.6.0.0.5-1.6.0.0.6.php" hash="05e566bd264344819a413ea7f52e46f4"/><file name="upgrade-1.6.0.0.6-1.6.0.0.7.php" hash="a597d7ca6156515c163f015fadc15a8e"/><file name="upgrade-1.6.0.0.7-1.6.0.0.8.php" hash="1dca378cedc6298ae1f7955f1ab99d59"/><file name="upgrade-1.6.0.0.9-1.6.0.0.10.php" hash="7e36b1c18d0758782a898d8b0337351f"/></dir></dir></dir><dir name="CatalogIndex"><dir name="etc"><file name="config.xml" hash="5fddce9dbccd68858221803962d340f8"/></dir><dir name="Model"><file name="Aggregation.php" hash="3f60b7a81c15705feb9d8239409f431f"/><file name="Attribute.php" hash="bba008db612b842cef366b6040c8fd5b"/><dir name="Catalog"><dir name="Index"><file name="Flag.php" hash="32117ddffbef0c04bbaa6d0c5d64e1b6"/><dir name="Kill"><file name="Flag.php" hash="23c2d4d4aa5e5f29b4ffc5a4f3bc036e"/></dir></dir></dir><dir name="Data"><file name="Abstract.php" hash="a3713008c762c5dd87352c32bdb5848a"/><file name="Configurable.php" hash="1b3aa7b5622a143546e74b288dfb9c54"/><file name="Grouped.php" hash="f67e4d413f5179bb814edadfb66cc110"/><file name="Simple.php" hash="3dd749fdd162cffe7daba4ce12fbba9d"/><file name="Virtual.php" hash="cc54d4b230da59dec09ab4351a9adf87"/></dir><dir name="Indexer"><file name="Abstract.php" hash="83c9099e9b4b8500bf90cae15cc665de"/><file name="Eav.php" hash="2f8940d569fea99b7fb517be33a7d8b5"/><file name="Interface.php" hash="9447b75998d307179b6bdb0d02d5826a"/><file name="Minimalprice.php" hash="bf7502323fcca64b396ca3d1842e8659"/><file name="Price.php" hash="bddb2e6fdea62e69b811c012c025b2d6"/><file name="Tierprice.php" hash="1f1a133b1efe6c40d1ce5d27f3ce6332"/></dir><file name="Indexer.php" hash="e3eb1518bd5f91f1d553a22860bbe60a"/><dir name="Mysql4"><file name="Abstract.php" hash="60cee3807743cfa88ea19f27ac9055ec"/><file name="Aggregation.php" hash="05109e6f12de01522600db81606a9b85"/><file name="Attribute.php" hash="fa6ca5295da0c3d18cc7a116acdf776d"/><dir name="Data"><file name="Abstract.php" hash="885e8ff48764d76511db8373b14ba999"/><file name="Configurable.php" hash="6bfd86f3278e3fb413d506991f7e5af4"/><file name="Grouped.php" hash="25b43ed972b60dd858bd8c33dcb3dabf"/></dir><dir name="Indexer"><file name="Abstract.php" hash="87086b672e1738d938cbfd312f25f30d"/><file name="Eav.php" hash="be8defed191bd008341dfc98d05e6db2"/><file name="Minimalprice.php" hash="e03190de34652fb8c39d91c0e4f4bc2a"/><file name="Price.php" hash="856b5a8c2107c852b20b8307136d67ed"/></dir><file name="Indexer.php" hash="0c5a42df4e0a19bd6b9e1da3fa010d7a"/><file name="Price.php" hash="466b993facb467ad50c392d470ccac48"/><file name="Retreiver.php" hash="f3efb11cdd3792269c7319fe433e2cdc"/><file name="Setup.php" hash="6a366f023b08072f5edb97f9540960ae"/></dir><file name="Observer.php" hash="4183fc6a417947c12a39bd971de0818f"/><file name="Price.php" hash="925c3cf164b852a2b34c853562984bd8"/><dir name="Resource"><file name="Abstract.php" hash="23294800b973a9d7b7cde5788e48a48f"/><file name="Aggregation.php" hash="2594824a74a004b2ef5c97985fdaae0c"/><file name="Attribute.php" hash="6f2630e1a2ac1ab9936ca66173c2854c"/><dir name="Data"><file name="Abstract.php" hash="f56d652be80c9082d27fdef1cf08c712"/><file name="Configurable.php" hash="2ebeaab263dbe06c3a5981ede715bbe7"/><file name="Grouped.php" hash="611aa37d989c2ea2c1de871e9d870e3b"/></dir><dir name="Indexer"><file name="Abstract.php" hash="acaf3dfc5d93f353ead58f8509f0118b"/><file name="Eav.php" hash="4aa0c03606d56865762436af65c8f23d"/><file name="Minimalprice.php" hash="0cd07153c87ae976ed609ccf5a8b3966"/><file name="Price.php" hash="0fd6c552afb29c63eae71065437ec3c3"/></dir><file name="Indexer.php" hash="986d762097a7095f876715e9577c8c4d"/><file name="Price.php" hash="fa0b3f5c815aba74130eccc957fc09bc"/><file name="Retreiver.php" hash="4f8b6f2df25074f6d4d7d689a477e4d3"/><file name="Setup.php" hash="d49e075df52f2076d8e9daae4fc8628d"/></dir><file name="Retreiver.php" hash="6fe24f3867977d77619c1b943a2af400"/></dir><dir name="sql"><dir name="catalogindex_setup"><file name="install-1.6.0.0.php" hash="e177e42cc2fb61e19d22b4db3a04ed49"/><file name="mysql4-install-0.7.0.php" hash="6167d7ca798b1cd15ff1219571ed6c33"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="12767970d47631252390e333d56a20cd"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5b45a74c9398773eff45d033e71ebe04"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="ce10b4b83d4474cd884647c13f3aa1c2"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="75aca9dbee35535e2aa9bb85999b980b"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="c163bf47efaca52ccd7a7471e80e8eb0"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="1271021cae2497a508b06e7f462c3561"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="347db8f80919fee2c303b1ccb0695c76"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="08b5c14ce628de43d02136437e3a1efd"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="80f4768a6b6c889419c1f85635d99c65"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="f7419899fec2fe3ede3398b57c4ddd27"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="7e434e23b66826c02e6028c5aefad8f6"/></dir></dir></dir><dir name="CatalogInventory"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Field"><file name="Customergroup.php" hash="b940297ccd6615069f275a506ededdad"/><file name="Minsaleqty.php" hash="316fdd72281da965932194656e4b5b8f"/></dir></dir></dir><file name="Qtyincrements.php" hash="f06a1ef7c5ce1e187e20b8ad881a4fd9"/><dir name="Stockqty"><file name="Abstract.php" hash="0ca76f7ef8e4e429bfd3c5543dac6c1b"/><file name="Composite.php" hash="fe2237408a7ae30aaa47aab51a03812a"/><file name="Default.php" hash="bc17d2a181b8007205bdd76bfedc7c9b"/><dir name="Type"><file name="Configurable.php" hash="24b21820e7ed98dc10492130fe7aced2"/><file name="Grouped.php" hash="565eaba825ce5c9af908666e73f70e1f"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d46ea46bc3cec4a506e3ca66000248fe"/><file name="api2.xml" hash="70d86e8b3d43898ff8f35cab3b864f4a"/><file name="api.xml" hash="bad4ddce02a55c34c08d4949236bbfce"/><file name="config.xml" hash="cd62f5b65b2349a1092ab151f4d26be2"/><file name="system.xml" hash="cc13f2c3a435db12824dceeec3b96eb7"/><file name="wsdl.xml" hash="ba014e43fe68ec006ec6f628a406bd98"/><file name="wsi.xml" hash="0948e5b6f67c72b7760ed4cf1a94d1c2"/></dir><dir name="Helper"><file name="Data.php" hash="e75a6a5e64ef08ee21fc2d0759fe59ab"/><file name="Minsaleqty.php" hash="332f92bf9c4491f7a76e60942dd00529"/></dir><dir name="Model"><dir name="Api2"><dir name="Stock"><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="3c5d34a8e3ab51c40603237a035d51a0"/></dir></dir><file name="Rest.php" hash="a8dd8bfa425d241b5a3d1dee3de159fd"/><dir name="Validator"><file name="Item.php" hash="c462a6c3dbb3295450569ecf49f1560e"/></dir></dir><file name="Item.php" hash="f7e476f1171283d2bc8ff7b2dcda3d7e"/></dir></dir><dir name="Indexer"><file name="Stock.php" hash="310f4091992519e968affb7754e282b8"/></dir><dir name="Mysql4"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="8926bf265da2192b1926df7be0bbb8f0"/><file name="Default.php" hash="35e54cbf801a5e1567637ac9335170b0"/><file name="Grouped.php" hash="8f27f27223e64c3dc11bb0be61b39447"/><file name="Interface.php" hash="d2faa3750205a3df36f783ef46a56f23"/></dir><file name="Stock.php" hash="25c681a8da6e7dacd52abd28d4bae8b9"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="c8f9f8da711f687d33f4edc132795d81"/></dir><file name="Item.php" hash="b1b8b52ec72bff1754a1026248f15803"/><file name="Status.php" hash="1a9828a11800277edd59a5e08ab979eb"/></dir><file name="Stock.php" hash="1cc98bc3f5cc5cf5f6b171093a2be78f"/></dir><file name="Observer.php" hash="b4cf19fce38b0659a6ae8cce8fe30c00"/><dir name="Resource"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="a9ab92db767866dbc337ec73c340edd5"/><file name="Default.php" hash="bfcb46e289b65b0d3f87fc686d7b7dae"/><file name="Grouped.php" hash="d9d159522fbcf9f2b543d0dbd87130c6"/><file name="Interface.php" hash="418f57944072df95c0ee26b0999e91e9"/></dir><file name="Stock.php" hash="882c114ffa248f6d8a8e92a9dd44257c"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="2ac56c9c2b4bc3e90be320fa30a9da92"/></dir><file name="Item.php" hash="f48f3cd87ae90d7649fac921f4d89047"/><file name="Status.php" hash="976f8f662a45e0bea1f5aaef8ba42b3d"/></dir><file name="Stock.php" hash="99315ab13deb38fe0bce9393b21594c5"/></dir><dir name="Source"><file name="Backorders.php" hash="e14ded80cc03c5a17a65c8ee769dc2d8"/><file name="Stock.php" hash="8a197a867b96d78384344a00063d9d21"/></dir><dir name="Stock"><dir name="Item"><dir name="Api"><file name="V2.php" hash="4abe77c3dbf8dfd87922b66036ed2197"/></dir><file name="Api.php" hash="2c7f9003f69d8e60fb47212a3a4c71db"/></dir><file name="Item.php" hash="69e3003baf3e8cb527af12e20d31e826"/><file name="Status.php" hash="b915ae1e9f1a7b5eef6c6168a780cdad"/></dir><file name="Stock.php" hash="0cf0ba5ac22a3fad74c0af431b23ac23"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Minqty.php" hash="49c79733f74a42cd3d2d865b4531fce2"/><file name="Minsaleqty.php" hash="e472f4deacfd819c3539475377c25522"/><file name="Qtyincrements.php" hash="cb2f46d375d8017d201014a489049bcb"/></dir></dir></dir></dir><dir name="sql"><dir name="cataloginventory_setup"><file name="install-1.6.0.0.php" hash="16a7f02426cba493dad415f2a2f3149e"/><file name="mysql4-install-0.7.0.php" hash="5d78e89cf569ef5f7ca558767283fbfa"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ba59c4f0dd4683ab4d6363acc8395d29"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="f4fc075e1c3c0b636b8fa194fd89bc0a"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="8c3d6386edd2a13fd69a43d92c3d1ce5"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="94f04e5255a18b0666a4af44cd772dde"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="2f62d081a44d6281d7b3f3a7b4809103"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="02998282b2daade090415cc0d9506876"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="fac5d746fee27317d4fb86f2f472d5ed"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="ac35fdfe843603d067917dd453d2c723"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="0b091067008e8d036a56049701bcce00"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="12491957c4ad7d86f51b9e91277ad391"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="0873581c235353ff8f1bbdbb3c01796e"/></dir></dir></dir><dir name="CatalogRule"><dir name="etc"><file name="adminhtml.xml" hash="6ae8aca7dac869eddca21fd8e7b6e311"/><file name="config.xml" hash="5473dc610ce732425d2f9df1541573d1"/></dir><dir name="Helper"><file name="Data.php" hash="63071093b43cda6d7a4c81dd3f022d85"/></dir><dir name="Model"><file name="Flag.php" hash="5974c90ca1b6fb66ac68dba9554f27c9"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="6ada7a561f5c4fe9d812b9d178e6e9ac"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="67e3545cbc32c8c2a89f8cc3f48d727c"/></dir><file name="Price.php" hash="b1b4798085843b4500bf1da4e3c48f14"/></dir></dir><file name="Rule.php" hash="1ecb70d57b0534ac0a6f054043755ebc"/></dir><file name="Observer.php" hash="0b6fb8584d0488a88fddf224299ac166"/><dir name="Resource"><dir name="Rule"><file name="Collection.php" hash="403631d8a1e322a1600562c60eb31775"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="1f674c55ea913de934072cc3ca590b04"/></dir><file name="Price.php" hash="dc3af9df4a1a6ca8d722c333911846a3"/></dir></dir><file name="Rule.php" hash="8ea93bc4cd0078ea996df19b8827f75d"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="6e1dacddeccd1b1c22a4cbf1341fb6b9"/><file name="Product.php" hash="79a6a718be3038325b2a063883c14083"/></dir><dir name="Condition"><file name="Combine.php" hash="b051ce25e69de64c3e05cc2201c459d6"/><file name="Product.php" hash="3a4358f104703d26381fedbeff8ccb47"/></dir><dir name="Product"><file name="Price.php" hash="b4a7169455f54d6b08a118f1a7b785cc"/></dir></dir><file name="Rule.php" hash="c14eed087c5ac1f234be4fe41fb4f753"/></dir><dir name="sql"><dir name="catalogrule_setup"><file name="install-1.6.0.0.php" hash="135b8269b4d8076651cffd1b40d63bd7"/><file name="mysql4-install-0.7.0.php" hash="7a808f01476df30ed0eb5a79a43b81de"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="506f4d6cff3afd322543c614415f0592"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="4e8a989a5a3b5be5a78054d858d0f475"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="143ac8a090adc73867462e2a4943c017"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="ad12a25bcbf13f4d03453ab6cf05cefc"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="dff591762943eac332980df9d2d7c25c"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="f55ab6836c7beb103e3272e47d8836a0"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ef1786e551578d36afeb6956c9884308"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="f35af29e7f37364e76e4d4c20a6cac93"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="e5d6fabc5cf7e75887c908d32d670269"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="e3eb39c7caf34b53205359792ce0e0e1"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="aad8845369332481774240c2285c9c4d"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="4da39631e9aecf6f5228178eadfcdbf1"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="7dfcaa64230db94ce096b35c4276c104"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="7dc7d9bf6769a3cd1da48f771a685bb9"/></dir></dir></dir><dir name="CatalogSearch"><dir name="Block"><dir name="Advanced"><file name="Form.php" hash="769f38df28dc28680d329ee8d8ee0668"/><file name="Result.php" hash="0d7170f8f88cfcf00c271a9d73f6377b"/></dir><file name="Autocomplete.php" hash="fd9e0f13e32571a75dedb4c573c20c99"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="b204087ca66f5cbec8159f2112501bc4"/></dir></dir><file name="Layer.php" hash="59d1824b3d2eedbc1bc222e03c423af8"/><file name="Result.php" hash="ae5214f54d456da00e862fc043d9a16d"/><file name="Term.php" hash="7cf5548963ee03efac8cf4fd1ca2c78d"/></dir><dir name="controllers"><file name="AdvancedController.php" hash="7abc4f192b6ab188ccb3beb539d71c9c"/><file name="AjaxController.php" hash="8fe67a774e3a049c220fa42366985921"/><file name="ResultController.php" hash="722ed7e7c086285e2139140785b489ca"/><file name="TermController.php" hash="d729dbc2aaec341a4daa0bac292aea75"/></dir><dir name="etc"><file name="adminhtml.xml" hash="122ee27322dcf98cc02ce8421296d2c4"/><file name="config.xml" hash="d697b56fe2e4f932cacf9d8c234f67eb"/><file name="system.xml" hash="7b4a775828a6622bc22d69ef0ac04b6c"/></dir><dir name="Helper"><file name="Data.php" hash="5ffbba7c510f8ae2be6887803d824646"/></dir><dir name="Model"><file name="Advanced.php" hash="ddc56d01f8a4083498f4929163a6debf"/><dir name="Fulltext"><file name="Observer.php" hash="c6e18f8583ccae58fe3481d673ee50ef"/></dir><file name="Fulltext.php" hash="18eecd1ad8ed1a6b864886f416059a4a"/><dir name="Indexer"><file name="Fulltext.php" hash="da0b62835a675034f1cc30a0cc12ae77"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="c253bebe31686d8a472814187184dd59"/></dir></dir><file name="Layer.php" hash="b3e3a4ff6727299294a2ea382ee83f65"/><dir name="Mysql4"><dir name="Advanced"><file name="Collection.php" hash="eba80b0df90dabb0f68c25c16b80d910"/></dir><file name="Advanced.php" hash="fa5d1073d6943b1ce2f664aab777f0ad"/><dir name="Fulltext"><file name="Collection.php" hash="ae25c123456b02e50f54552e6f6ba906"/><file name="Engine.php" hash="a54508ec005877b6e2c1ab636081f629"/></dir><file name="Fulltext.php" hash="b40834fd609d15edab1f24bf119b5033"/><dir name="Indexer"><file name="Fulltext.php" hash="f0bf5e47c2de1396283931117c86c9f9"/></dir><dir name="Query"><file name="Collection.php" hash="9d272b36d313412bdc1250819d553b93"/></dir><file name="Query.php" hash="595c33bd9fbb04a90a0fb2e6a2b7105d"/><dir name="Search"><file name="Collection.php" hash="59282e56d8082a9c8efc61e4a462a735"/></dir></dir><file name="Query.php" hash="71c067283c798f8fd06759f848c8d93f"/><dir name="Resource"><dir name="Advanced"><file name="Collection.php" hash="e4479393be73f3f0ccc364761ca56dbd"/></dir><file name="Advanced.php" hash="2b1c7677b02989adbb48187f55344620"/><dir name="Fulltext"><file name="Collection.php" hash="9d823071d510eeac91d8ead92d40da95"/><file name="Engine.php" hash="2ce8dcc6f5ee13433fce6f8f0a262a94"/></dir><file name="Fulltext.php" hash="6a259c377be8f8e15e84e983b4910b90"/><dir name="Helper"><file name="Mysql4.php" hash="f94b4ec8bc92a8885ede4b03b706d248"/></dir><dir name="Indexer"><file name="Fulltext.php" hash="7dcb905ce92077e2687f42be421fff00"/></dir><dir name="Query"><file name="Collection.php" hash="5cb54416de9949f63fd45bdd3cba23bb"/></dir><file name="Query.php" hash="95a11f20f48c8411fd7b9cb7f32aaafd"/><dir name="Search"><file name="Collection.php" hash="62d200991af806f4a276a9a78c760e05"/></dir></dir><file name="Session.php" hash="afec49756bfe1797c812188dce83bd21"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Sitemap.php" hash="a08d917f00fb059829b7be6e5c7d824a"/></dir></dir></dir></dir><dir name="sql"><dir name="catalogsearch_setup"><file name="install-1.6.0.0.php" hash="0ed3e3e0e1ac60db4d1b50a8ffe3bb80"/><file name="mysql4-install-0.7.0.php" hash="020231e5d78d911018380ddbb60c0062"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="3da3c61b7c42a4a2165195150194ca42"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="3a95c2256f3904f92426091dbf776925"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="b86bdb64adab787bceac75c2177af387"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="8523b6cb5da58d83f1368bd9314cee34"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="38b7fda659d8aca00616066c26c81f27"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="6924f094fe5975ad1b7ed8acc7229115"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="7a556a9ce85d4879a76be9cc25da08c9"/></dir></dir></dir><dir name="Checkout"><dir name="Block"><file name="Agreements.php" hash="f6ab677693007727ff143deae9b9948d"/><dir name="Cart"><file name="Abstract.php" hash="5e72f4bd159db6adceae26d5d5d341fc"/><file name="Coupon.php" hash="572aca73ddf6f7cfa9f1487611fff79c"/><file name="Crosssell.php" hash="d4bcded4960270f8e4aec6f5b51d10d8"/><dir name="Item"><file name="Configure.php" hash="a29a73d4686f622ee9c7e7552a210de1"/><dir name="Renderer"><file name="Configurable.php" hash="54e256e5b71339f360363453d78249fa"/><file name="Grouped.php" hash="9601662647d00cfb5c9f40743c5a61ee"/></dir><file name="Renderer.php" hash="a5ac49d899363c94a40b6e6d7a76a55d"/></dir><file name="Shipping.php" hash="aa158b97343cda883c06aa283d5b7685"/><file name="Sidebar.php" hash="05efd18f9595938a3b01aeb970798394"/><file name="Totals.php" hash="77321936c587b1134a3838a09e40c451"/></dir><file name="Cart.php" hash="4ba10e876c870483b37ac07787ac39a4"/><file name="Links.php" hash="b23b11f6f2df816b7d08076c57f33ff1"/><dir name="Multishipping"><file name="Abstract.php" hash="ab2fec7149f6fbc093bf3b253c0ea35e"/><dir name="Address"><file name="Select.php" hash="6a5d38a63e70b58eff6b7d2b51e64e18"/></dir><file name="Addresses.php" hash="7061e43144eaef1b209ed996cfffa7d4"/><dir name="Billing"><file name="Items.php" hash="c170f84af7d3ed5cec7eaf80c49dac9f"/></dir><file name="Billing.php" hash="0f00c2c2a770bbe22f28ec788e2cd353"/><file name="Link.php" hash="11d799f05f145eaeb3fbeec109ea044a"/><file name="Overview.php" hash="7cdaab0ecb5bd9694478d7735bb4327b"/><dir name="Payment"><file name="Info.php" hash="30fe02c50ee97b1e052416259f60ffcd"/></dir><file name="Shipping.php" hash="94c2550a9abfbbf95c4c261766e9d1f5"/><file name="State.php" hash="35448a184d67d9c207d2ff98019dec27"/><file name="Success.php" hash="0af7214ce48a225e4b4bb2a4026bd5a3"/></dir><dir name="Onepage"><file name="Abstract.php" hash="287be10bc2e3587ddc8d752e6e27a752"/><file name="Billing.php" hash="176524420d9eaabdd834b1528152692b"/><file name="Failure.php" hash="0e62ba39c70aa42502dea949e03ff784"/><file name="Link.php" hash="e406f1765d09c09d3ad216bc14ed89e5"/><file name="Login.php" hash="19618cd9e2ee65bdd27080b7c079f76f"/><dir name="Payment"><file name="Info.php" hash="545c960584abe44fb4dfa899f75f91ac"/><file name="Methods.php" hash="8599366d2967f7b96f90bfaffceb3ce9"/></dir><file name="Payment.php" hash="1acebf34fb875a08de713663d21ccb19"/><file name="Progress.php" hash="3bebc4cbdebe862a42aab3598a6e56ed"/><dir name="Review"><file name="Info.php" hash="6d311cc255354a8fdb901878545325b4"/></dir><file name="Review.php" hash="2874287e6cc81962e1c1680174f4248e"/><dir name="Shipping"><dir name="Method"><file name="Additional.php" hash="b1893a70f3c41c1a8c797512e774094b"/><file name="Available.php" hash="9c70bf92d789b98ba4e04bfe95f1389a"/></dir><file name="Method.php" hash="156d9be1a564c1edc8865052bf976291"/></dir><file name="Shipping.php" hash="84713ba46c776059ae03a9a4ea2f6f6c"/><file name="Success.php" hash="a8c2002dd877630ff955b0dbc4dc3b9e"/></dir><file name="Onepage.php" hash="991ce99775a08593727acb79afd8ca62"/><file name="Success.php" hash="ce4753218f954432d84fca94e895674c"/><dir name="Total"><file name="Default.php" hash="ae9cfc78132ee43dc087a4223f55338d"/><file name="Nominal.php" hash="ddf730da6ecac61ca9625a5467d047d0"/><file name="Tax.php" hash="db18bfab9860b1498ab9631119e71e1f"/></dir></dir><dir name="Controller"><file name="Action.php" hash="3b24af04268e30f57789a8baa2bffaaa"/></dir><dir name="controllers"><file name="CartController.php" hash="73137f7c537be319101f1185590c5e4d"/><file name="IndexController.php" hash="f117691c13d81d1af1676092f3318d62"/><dir name="Multishipping"><file name="AddressController.php" hash="bc31b23c77d081c3d6ce6ac667890347"/></dir><file name="MultishippingController.php" hash="5e338b66a7da1fcbd44ed97418758a57"/><file name="OnepageController.php" hash="8adea880b2c85d93d0ac0620d32a7238"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2a63774ae2f98839a8e95260f97163df"/><file name="api.xml" hash="ffa6caf214932ac88b24b6e7d87f1ca8"/><file name="config.xml" hash="f2a1572f226f630b43d48471578e1c33"/><file name="jstranslator.xml" hash="2e347298e9d19a8ab0c3f6d996865a1a"/><file name="system.xml" hash="e6fcfe3a89449a57aa8471605dc5deb7"/><file name="wsdl.xml" hash="4bb393200e9ac34d92a9250d2e732e41"/><file name="wsi.xml" hash="744874dabeced7f1c1235f8e1e60d96f"/></dir><file name="Exception.php" hash="0149e79437c01368a2fa71b043a08f9e"/><dir name="Helper"><file name="Cart.php" hash="fa178a9509491f232145a5057b95ea29"/><file name="Data.php" hash="8287a9363c1ee1c863576f921a8ded16"/><file name="Url.php" hash="fd028ef4719fd0a68d790a7fbbea5b1c"/></dir><dir name="Model"><file name="Agreement.php" hash="de3c574cc7c7d3e8a514fd66c8954d37"/><dir name="Api"><dir name="Resource"><file name="Customer.php" hash="ca9dddb29df696cc2288fb7a998a7e7d"/><file name="Product.php" hash="906c8ed3a456f15d6c4747068fc3cca6"/></dir><file name="Resource.php" hash="664968dd9deafd0cef846b3a265377d1"/></dir><dir name="Cart"><dir name="Api"><file name="V2.php" hash="e19757b371135ee5eee0552d1f41ba99"/></dir><file name="Api.php" hash="f06445625052da4bb2558495438c6414"/><dir name="Coupon"><dir name="Api"><file name="V2.php" hash="23ccba9130ca6e9880c3204bc3ad0615"/></dir><file name="Api.php" hash="89e683437d8328e209f01ea15d084794"/></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="f7f70b45fbea681a81ab89827c4d3c3a"/></dir><file name="Api.php" hash="be086c3fc0c5ce9eff35898ec5740319"/></dir><file name="Interface.php" hash="3261758122a055e2f09a1c890b410357"/><dir name="Payment"><dir name="Api"><file name="V2.php" hash="09be1b30073accb318cf5e81965a2f58"/></dir><file name="Api.php" hash="f74fada0432349ec7978ff4ef63d2a4d"/></dir><dir name="Product"><dir name="Api"><file name="V2.php" hash="1cc93ae396d0844aa548575f5e62fc90"/></dir><file name="Api.php" hash="b9b8da6228bfc03c7b853e705e89c357"/></dir><dir name="Shipping"><dir name="Api"><file name="V2.php" hash="54681248c084a7b19d9ba1919bb675bf"/></dir><file name="Api.php" hash="bf61922d96521f5815e65ea01c9de358"/></dir></dir><file name="Cart.php" hash="2b8bc9e8d9543ed70e42405e8c7a5813"/><dir name="Config"><dir name="Source"><dir name="Cart"><file name="Summary.php" hash="c9ed1e80cfaaf470ce8cbda82a7a35c3"/></dir></dir></dir><dir name="Mysql4"><dir name="Agreement"><file name="Collection.php" hash="a63eb8e972a8c26f4eb93ae6ac0fa8c6"/></dir><file name="Agreement.php" hash="1a74d16d611f9c66a05f73a23c51771e"/><file name="Cart.php" hash="c4a5312dd082db78d71477f8855158cc"/><file name="Setup.php" hash="873d771a09000c1c96906107ffbcedc4"/></dir><file name="Observer.php" hash="f5584265f199d32bba88af9258c617c2"/><dir name="Resource"><dir name="Agreement"><file name="Collection.php" hash="9754ecf74f2c40b6e7d13434166a7b9f"/></dir><file name="Agreement.php" hash="85a9e772d873dbd02ea586a6717ea985"/><file name="Cart.php" hash="9ba923ee983637cb0cfc8734f5c2acf5"/><file name="Setup.php" hash="3145e3be5ecb1f8e22d214ab28e51aac"/></dir><file name="Session.php" hash="d72875a5bb4eb99cc70be708413c003a"/><dir name="Type"><file name="Abstract.php" hash="30dbff3e37183ba96011cf9b18435f07"/><dir name="Multishipping"><file name="State.php" hash="5602d11146d897f28bc361209495619a"/></dir><file name="Multishipping.php" hash="eb6c6fe95962e1f0d88d4d142a2fabd5"/><file name="Onepage.php" hash="d4a83cb917fae22177d863cfd8709ebb"/></dir></dir><dir name="sql"><dir name="checkout_setup"><file name="install-1.6.0.0.php" hash="b19e3937140c9c17c461023db860d990"/><file name="mysql4-install-0.9.1.php" hash="aa0544cc0e55cef1c6254ed41f3db20d"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="c87c8559562f85a6e5360ba9e562c274"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="13b53bdfca7e9882f2b456fbe57f2a5f"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="b2bfe2090e22dee12ea25c3ca19ff886"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="5d4d6cbfaa130b666e760d091c570d37"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="7a06a2c61405b4f34b38ec868d74e13c"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="4f9ea610cf78cee74df335677cddd929"/></dir></dir></dir><dir name="Cms"><dir name="Block"><file name="Block.php" hash="ba5e6c3cdbb3d948ea53b2ee34a27406"/><file name="Page.php" hash="c901277a65d27b370c3c0c6b2fde8ac2"/><dir name="Widget"><file name="Block.php" hash="3228659a6a2e9ec1843e44e500682a79"/><dir name="Page"><file name="Link.php" hash="1ed64fcd20b682316ce4a7acafd17ae9"/></dir></dir></dir><dir name="Controller"><file name="Router.php" hash="5c920f40a0827cc0d1c51dc694c187cb"/></dir><dir name="controllers"><file name="IndexController.php" hash="4e295ec22098607c6cfdf3623a6074fc"/><file name="PageController.php" hash="95c0376ed4fb224ed18d67efe2a06351"/></dir><dir name="data"><dir name="cms_setup"><file name="data-install-1.6.0.0.php" hash="1d2bc67e87a774458a1cceedb2c8eb7e"/><file name="data-upgrade-1.6.0.0.0-1.6.0.0.1.php" hash="8c1d9a7cb8c8676a9a8e48965cf27759"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="eeb11f76ba2fce45cb2c737ef31f7557"/><file name="config.xml" hash="fa59483a9f0f8741ccdc0d02a1379b57"/><file name="system.xml" hash="5a2e594ed8143705575ddef47f59162d"/><file name="widget.xml" hash="a05d54e5a9491e748b4b55f3cb4dfc0e"/></dir><dir name="Helper"><file name="Data.php" hash="242f41f3ab4da9084f19c3050938358f"/><file name="Page.php" hash="ba7a1a04eafa34f9e8d8519a5571e4ad"/><dir name="Wysiwyg"><file name="Images.php" hash="0e81e9fe791dc1bc3b4244ba44d325b5"/></dir></dir><dir name="Model"><file name="Block.php" hash="f07e1e77db8d69f90149525ceba58fd4"/><dir name="Mysql4"><dir name="Block"><file name="Collection.php" hash="c0d44d14f69bd63f2c245dacecabe4d5"/></dir><file name="Block.php" hash="ddc1dc02a1701f62b29524740e9be045"/><dir name="Page"><file name="Collection.php" hash="0e9d4e79895942fcbae96b74496445b2"/><file name="Service.php" hash="35fe9c6e2d19b4ca7ac2866247d3b9bd"/></dir><file name="Page.php" hash="37009ce023e2bb21d750f63ce79b1233"/></dir><file name="Observer.php" hash="9c041ba0263eb9fb58ca634a39563f69"/><file name="Page.php" hash="24cac9c33a00e1bcdc2599c060b71af6"/><dir name="Resource"><dir name="Block"><file name="Collection.php" hash="b78610285b6403e8325cf5e8a15c8b15"/></dir><file name="Block.php" hash="e7506860c285438f147b8064678e5aa6"/><dir name="Page"><file name="Collection.php" hash="4817770e29631f054c72763ffafeaeb3"/><file name="Service.php" hash="68476a4433a761bb1a60af7289526b76"/></dir><file name="Page.php" hash="e62ecf5ce5879f19e17091e5b2529dfb"/></dir><dir name="Template"><file name="Filter.php" hash="45cbc2219100683a1ce4b03526038c9b"/></dir><dir name="Wysiwyg"><file name="Config.php" hash="35449222b7dde378b821af1c7d9ed7a2"/><dir name="Images"><dir name="Storage"><file name="Collection.php" hash="af27781038b61d1753307523bbf08634"/></dir><file name="Storage.php" hash="c56e7539a8b3fba2fe7b260d8bc283ac"/></dir></dir></dir><dir name="sql"><dir name="cms_setup"><file name="install-1.6.0.0.php" hash="aeb5a8260bacd26b71720735792ff8c0"/><file name="mysql4-install-0.7.0.php" hash="47b573279526bf72b56e75b016af5682"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="0df3a64655c4e6ffa86dba4dfe52a4d8"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="d06fea18766a37e4a53548033089da44"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="bd3df25c7dce111cab98b75644f1c7e5"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="fe2e8892288e65af112a363b16037dcc"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="11f4163948a081513fe6106d5ead6ed9"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="c13fe71c25459952c95cc149a5dd220f"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="e44d34cd76c3e92e9aed8da1afb73ca2"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="ff4723316c89b623d8eec04df6a01256"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="fd55a9c11624e3e95cf5f177a56b599e"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="ca089b4e5466dd81327bc8253586c166"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="186fe629b522c284b97ef0c5c9a37fa0"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ecf58a00b2482c8229314eebf36c8f22"/></dir></dir></dir><dir name="Connect"><dir name="Block"><dir name="Adminhtml"><dir name="Extension"><dir name="Custom"><dir name="Edit"><file name="Form.php" hash="33b774864be3e01ac9f0992ccbe48bfb"/><dir name="Tab"><file name="Abstract.php" hash="05bcceba7cefc5bc4c5c80b6b733e8d8"/><file name="Authors.php" hash="9914488e439ce73e147d16538861b520"/><file name="Contents.php" hash="3b7e1df671168acf2d7608357a8fb722"/><file name="Depends.php" hash="261b6c349227f429ccc17fc455e80b95"/><file name="Grid.php" hash="2a92cb2a28523e3f3e64c78869e1f9ea"/><file name="Load.php" hash="a86b65a46c736ce8eda5a0f73739ccdf"/><file name="Local.php" hash="b18d4be2970667ae3b1c95dc20f972de"/><file name="Package.php" hash="449eb2b0d3dff55f294974038fd137e4"/><file name="Release.php" hash="98fd3f2eb72ac52bfaeef3ea925ffbba"/></dir><file name="Tabs.php" hash="96391332ca5b684af3598d6acc82c7d6"/></dir><file name="Edit.php" hash="ea4b9f107c5a98503a88f17bdb58eee5"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Extension"><file name="CustomController.php" hash="361689932cc0ff7a1f655123f6541b47"/><file name="LocalController.php" hash="3fd9a96c68fe9e83dc5824dd5c975a34"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="0849c92b3cb9a480eea756bf270cf514"/><file name="config.xml" hash="0a68ba902ff88e736c6b430c4a73dcad"/></dir><dir name="Helper"><file name="Data.php" hash="d29349ce4c3536afb19edd05c88a3935"/></dir><dir name="Model"><dir name="Extension"><file name="Collection.php" hash="665ed9ce3be66b2ec1d585d60965fea5"/></dir><file name="Extension.php" hash="f8c4e035310577d96f5d846c51100048"/><file name="Session.php" hash="a1744af9a13b5a938e56e65d76d1d892"/></dir></dir><dir name="Contacts"><dir name="controllers"><file name="IndexController.php" hash="e626399956135363017d7d0e966d9483"/></dir><dir name="etc"><file name="adminhtml.xml" hash="ce3f4bc631dabe968309fc2631a52c6a"/><file name="config.xml" hash="1585787d2375915250c939e85138bf42"/><file name="system.xml" hash="6dcc4e451eb5f648d53fdfb151ebac33"/></dir><dir name="Helper"><file name="Data.php" hash="2755a10e8f6f7f46002e8eb0acb4c9a2"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="dee0fb2dec59118810830085b70bea27"/></dir></dir></dir></dir><dir name="sql"><dir name="contacts_setup"><file name="install-1.6.0.0.php" hash="675954205671df8ec440f0e3aa4fcdcd"/><file name="mysql4-install-0.7.1.php" hash="2af700e221bd77db85fe6552f1f39c07"/><file name="mysql4-install-0.8.0.php" hash="8f8532760228f7a7095f3a40855e3167"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="24ff8169711bda652437383fb2c4dcb1"/></dir></dir></dir><dir name="Core"><dir name="Block"><file name="Abstract.php" hash="d201b545e47b5c92e75cf3885528deac"/><file name="Flush.php" hash="bd3969764b80404f0a305b87d9e03e45"/><dir name="Html"><file name="Calendar.php" hash="cb8a3effe83cca08e9433c6b49fe0797"/><file name="Date.php" hash="921598b5c9b4cd23c7b43d41900acf60"/><file name="Link.php" hash="937b25e4a650baa1753ebe4e6e62c0b0"/><file name="Select.php" hash="c0e720490f7a0e71880d522f73665edf"/></dir><file name="Messages.php" hash="219bc5e33245aa83cb4b83a3f2b0c1df"/><file name="Profiler.php" hash="79f130ab7a04a1f3761c2cd3609c5de6"/><dir name="Store"><file name="Switcher.php" hash="102600fee335b3b6d75bbc4c2cc50826"/></dir><dir name="Template"><file name="Facade.php" hash="6ed1101e829c55834a897a74ec47e72e"/><file name="Smarty.php" hash="695ffd4d0890fe67a3437b3a233a9e3b"/><file name="Zend.php" hash="80a9d9825b8d84566b32cbc6718b6393"/></dir><file name="Template.php" hash="986f3786b33443b40aefada96516dd29"/><dir name="Text"><dir name="List"><file name="Item.php" hash="1c61dc6fe3231da28e99dfdc51c011bf"/><file name="Link.php" hash="1c2e69fedb0fb0163d9fc55c1a6a82a2"/></dir><file name="List.php" hash="9c2efd46db427c2e076b27278d5fdf2d"/><dir name="Tag"><dir name="Css"><file name="Admin.php" hash="11a3004bb66d3a4b5822fb7464d74e79"/></dir><file name="Css.php" hash="6c8aae371f94c3d56aa32530d1cbab2e"/><file name="Debug.php" hash="3fb32cd11dfbed976d068c93c77bec6f"/><file name="Js.php" hash="6be4e7fc363cf4e6ab020027596bd964"/><file name="Meta.php" hash="0884207b6439ceea8432f623acd98d97"/></dir><file name="Tag.php" hash="7dc4a1389062a83ffafe9a4aba50d749"/></dir><file name="Text.php" hash="013024d9c60f89ed431b96d94503ae02"/></dir><dir name="Controller"><dir name="Front"><file name="Action.php" hash="c2fcfed24f32b0aa9f1a57797bac1cd3"/><file name="Router.php" hash="565c60314b16bbe4a73243547761d594"/></dir><dir name="Request"><file name="Http.php" hash="3a98de16f8f39462445cb9fcc599f061"/></dir><dir name="Response"><file name="Http.php" hash="20a3ac63e6f8a2fad9a0ed87784afa5a"/></dir><dir name="Varien"><file name="Action.php" hash="6baf63319b6999e8367f2bf60a4f5cd6"/><file name="Exception.php" hash="a6b6b4e5364ac24921a42fbac7f15ebb"/><file name="Front.php" hash="9bda486e7476a19b2a1602bea2cc105d"/><dir name="Router"><file name="Abstract.php" hash="ec47b08ae84c1a370bb325e8e8d29191"/><file name="Admin.php" hash="dbc3ae4dadf472dafeaa442c21e3a9ca"/><file name="Default.php" hash="7fec6ac87ec6d71fbbab171e41d226db"/><file name="Standard.php" hash="09be09a8dcee58f76c4f061697b222f2"/></dir></dir></dir><dir name="controllers"><file name="AjaxController.php" hash="2aa47bfbbbf0f023d232c847b9ecb55c"/><file name="IndexController.php" hash="c266dcb9c7d0e1a0e07e69172fe71b44"/></dir><dir name="etc"><file name="api.xml" hash="ba7cf89dc4f5fb0517f4bb05785d7afa"/><file name="config.xml" hash="c5d6789df290ca02a87d958d6d8fbea3"/><file name="jstranslator.xml" hash="951efd02ad67c7c34e8e47012ec7e729"/><file name="system.xml" hash="ddbf56276074d435cb62e06489fe6d3a"/><file name="wsdl.xml" hash="79501d6ccf39846b5dd551e85880dcb8"/><file name="wsi.xml" hash="31fa195d527181c946019bcd44d819d6"/></dir><file name="Exception.php" hash="9f9bc7b4ebea2b6aeeeb8dbbb92a201f"/><file name="functions.php" hash="4d761410208f3ecb0802737ab688f521"/><dir name="Helper"><file name="Abstract.php" hash="7f4840b530f5fcc042c39995b33403e4"/><file name="Cookie.php" hash="5a36c757bce3d03dd08d3621d8dbdfcf"/><file name="Data.php" hash="9c81ca4f01182d9032f89bb344f69468"/><dir name="File"><dir name="Storage"><file name="Database.php" hash="23af6f358c544572010aaf28b63d6f8a"/></dir><file name="Storage.php" hash="7a60abcb1714c5dc985842db95b39774"/></dir><file name="Hint.php" hash="616cd7ab573fbb0dcb3f14571ed89708"/><file name="Http.php" hash="1b61556d22653da12db336612e6d014f"/><file name="Js.php" hash="7c9bec2d96e66da7d89fe7229b8ee18a"/><file name="String.php" hash="7444bdc1c25aa3133b4d292f9f089d15"/><file name="Translate.php" hash="3b9d5940a2e36ebb6bfe4a97158b1d85"/><dir name="Url"><file name="Rewrite.php" hash="1e3a7f2c33ff26cb932ad1675eba8f1e"/></dir><file name="Url.php" hash="1988da707eb11e0aa9d1302a933dbbf3"/></dir><dir name="Model"><file name="Abstract.php" hash="50e069b1f5c0805a844b490188234a77"/><dir name="App"><file name="Area.php" hash="3ea9ce5d8cc4e68101ccf3467e6696a9"/><file name="Emulation.php" hash="3264c091cc56dff3721141adf163d6de"/></dir><file name="App.php" hash="dbff109d127dc3b039bf89c1f0cc91f6"/><file name="Cache.php" hash="52e46246d18321c602a9d87e0793d9ac"/><file name="Calculator.php" hash="c07f8db5429aab3aa73e4d0c24f5ff0f"/><dir name="Config"><file name="Base.php" hash="5bb13cde437b54514e76f2e3381dde63"/><file name="Data.php" hash="38a040ca1aabfa555ab6d3ffb907a8d9"/><file name="Element.php" hash="7cf8402ab690eb9df4efb410bc4edf61"/><file name="Options.php" hash="6b76c6cf6338c1b1ae003a96f2615a9f"/><file name="System.php" hash="0b7437d858246da9cc0ce92cd4c5495b"/></dir><file name="Config.php" hash="7f86fad3f2002da6669ae33e6d131077"/><file name="Convert.php" hash="9d0051ac793bcb026d91a43aa91c356a"/><file name="Cookie.php" hash="89c1100364a0bb5d90c52fe742c96fc6"/><file name="Date.php" hash="10bee78c44a4284a530314b275aec700"/><dir name="Design"><file name="Package.php" hash="2c0b9dfecbf075a23add77c6660810f8"/><dir name="Source"><file name="Apply.php" hash="794f99ea33945810c14ec292c8179157"/><file name="Design.php" hash="3fc2a58120f1bd38b2a4d31a79ee68c0"/></dir></dir><file name="Design.php" hash="6e7d67b8b683fdba1d8d72404bb7af36"/><dir name="Email"><file name="Info.php" hash="06e54f3f59ebc3a6ee2da4c52c95877a"/><dir name="Template"><file name="Filter.php" hash="350564d1c8b292831817db3f253416ce"/><file name="Mailer.php" hash="6b5dd49b28550b582a84aa5df11e2bd3"/></dir><file name="Template.php" hash="e4bf5830f7d4c5f1d05f22b5ee90ecae"/><file name="Transport.php" hash="3000b3c89ec4c3672f4063714457c2c3"/></dir><file name="Email.php" hash="8bb2ddec6c86261072e593c0037ecf4e"/><file name="Encryption.php" hash="9a6b331713a8f84003d17bec39339f80"/><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="42b09c9c37ded7c2f13a8dafc4a0c55c"/><dir name="Database"><file name="Abstract.php" hash="8fbec13e6f880fb7695946082eeef856"/></dir><file name="Database.php" hash="1638a2de0786c6e4bd2ce57074bdab9a"/><dir name="Directory"><file name="Database.php" hash="7026208591d1df6f977c5de04d372e24"/></dir><file name="File.php" hash="14765d22b7f720b4fb8186edebf88b54"/><file name="Flag.php" hash="6aab43b3a3f506c1030c247942ca8c17"/></dir><file name="Storage.php" hash="50b35799bfb55d3735307ff402cfbba9"/><file name="Uploader.php" hash="f51d5dec2988beb2c26a29ebfa96f787"/><dir name="Validator"><file name="AvailablePath.php" hash="4c7df510145663b4988187ebef99f07c"/><file name="NotProtectedExtension.php" hash="e544412cf41cfc3e4ff2e660fbecd51a"/></dir></dir><file name="Flag.php" hash="ea0ae17d55569220321ac16fb9a98b50"/><dir name="Input"><dir name="Filter"><file name="MaliciousCode.php" hash="ede030d253f428cc779f2b8d359ebb04"/></dir><file name="Filter.php" hash="3a62a3b63156e000bdeb93cfe43d0c33"/></dir><file name="Language.php" hash="49fe0ff25e91a7e14b31a53a22673b70"/><dir name="Layout"><file name="Data.php" hash="06452d3dfa671a2d10b0cb889b76ca3b"/><file name="Element.php" hash="90e999cf478c1d1159137b2d984f4e91"/><file name="Update.php" hash="21ebe5019d125abe9b03f466fab17fdd"/></dir><file name="Layout.php" hash="3b0109ea66479c7ce06545d90da321b6"/><dir name="Locale"><file name="Config.php" hash="996ca42a975b1bd2583b5a136c61b2be"/></dir><file name="Locale.php" hash="efec4f773c7dd20166f45f28e9ffd19e"/><dir name="Log"><file name="Adapter.php" hash="ffbafb1e16dcc03cd3cb44dda3eddc29"/></dir><dir name="Magento"><dir name="Api"><file name="V2.php" hash="3307701a7aca8217860a20a196f5d866"/></dir><file name="Api.php" hash="ecd18029a0c72c455ce81141252c417f"/></dir><dir name="Message"><file name="Abstract.php" hash="829d079deff03f1e8fbd95733de88a45"/><file name="Collection.php" hash="447f4501b09f4249bf034090eb7c4860"/><file name="Error.php" hash="4a6a992e663f0805457a4e467a8c0301"/><file name="Notice.php" hash="749cccae61099b15c222a4aa757c9a84"/><file name="Success.php" hash="bfcf685bb521806c42743c1d3216cefa"/><file name="Warning.php" hash="a53aa75b9e77ddcc0946dd7fb0066b2e"/></dir><file name="Message.php" hash="a1992fd67f29a4197a698623be6ff9b0"/><dir name="Mysql4"><file name="Abstract.php" hash="5c2785ad8f8ae63f23c748a35840aea8"/><file name="Cache.php" hash="b64a3b6a8e91e2c5fe3c77dce6e61ff0"/><dir name="Collection"><file name="Abstract.php" hash="939f12dcc8e550ce44d35c187f186c47"/></dir><dir name="Config"><dir name="Data"><file name="Collection.php" hash="43dac95a761f8e08f9d087992b59aa67"/></dir><file name="Data.php" hash="ca2ab33bf092cafc522354098d388134"/></dir><file name="Config.php" hash="14872a2aeb3e69423e839e6849412484"/><dir name="Design"><file name="Collection.php" hash="dbcd801b8bf2e3927fbc789891a2e187"/><dir name="Package"><file name="Collection.php" hash="6592b0a08f569353f9ae6d9d122d071b"/></dir><dir name="Theme"><file name="Collection.php" hash="6e2769a5738ee50644b437b1e6582029"/></dir></dir><file name="Design.php" hash="1f24b5bf3d865382f469976b2e9e7e22"/><dir name="Email"><dir name="Template"><file name="Collection.php" hash="488f592b6a77ac69ee95cb5422764cf5"/></dir><file name="Template.php" hash="22e74c6f205460fd4a0c394b0c737e81"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="f346a527298523ef6d488c7747fecd1f"/><file name="Database.php" hash="9ce566f37b19a5fd0d4ea60c33e97776"/><dir name="Directory"><file name="Database.php" hash="232acf2688ef954b536288ba85c447f2"/></dir><file name="File.php" hash="dc9d69eabcde7493c82a0be00c1488cd"/></dir></dir><file name="Flag.php" hash="d126e8e7c2c7d5af836329c7c89bbd84"/><dir name="Language"><file name="Collection.php" hash="2861119cd4f5494c227543b605e093e0"/></dir><file name="Language.php" hash="59e0e965ed873c2a88a350a14e529e84"/><file name="Layout.php" hash="a045cf4e4f7f1f214fe65cc5a16ca307"/><file name="Resource.php" hash="7f6e2d54a0da5f3b2d8e4b7b849c4f40"/><file name="Session.php" hash="c6a87083b2cb431ef9625db4db6a4f31"/><dir name="Store"><file name="Collection.php" hash="b80a06cfd3a8ffd13c191830f965f725"/><dir name="Group"><file name="Collection.php" hash="4102b63da8f7ef2a54262f9a18abbaa8"/></dir><file name="Group.php" hash="02461ac269c9ecb43d05abf9f7ed070d"/></dir><file name="Store.php" hash="8b107cfbd67b90cf11d7ab9107db9119"/><dir name="Translate"><file name="String.php" hash="255d05dfda5d9d6ec6bb3964460cc3be"/></dir><file name="Translate.php" hash="620efa1768a687c265cf9d3fec94b3b7"/><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="5c93c81eee38f5e1fc9ef4eb57d42d9f"/></dir><file name="Rewrite.php" hash="75f395f7571938a971b7cab611276a20"/></dir><dir name="Variable"><file name="Collection.php" hash="3d5dc44cfa928839092720c3704e69ea"/></dir><file name="Variable.php" hash="e6403aef5b12e63a60e813bbe302eeaf"/><dir name="Website"><file name="Collection.php" hash="2b5908336f85f9d2d999f643014f293d"/></dir><file name="Website.php" hash="5523de7e739a01be05624c6a742c3d2b"/></dir><file name="Observer.php" hash="8b8671a386f1a5b270284fa83d10e057"/><dir name="Resource"><file name="Abstract.php" hash="988736566fdb1c3e30a6f9fbf7569b30"/><file name="Cache.php" hash="1114fd36fab730863a8c81e41eb91402"/><dir name="Config"><dir name="Data"><file name="Collection.php" hash="20c7a6561624c07e25e4594e416e93a4"/></dir><file name="Data.php" hash="00de2d4aa3f8a8e68d918838873525d9"/></dir><file name="Config.php" hash="7bafbd96fdc56816b4cb48fcffbf9b26"/><dir name="Db"><file name="Abstract.php" hash="4f99998f7a39a52991f6c546b9914ed3"/><dir name="Collection"><file name="Abstract.php" hash="e04784919c99be15bd00ed897b2ac8a3"/></dir></dir><dir name="Design"><file name="Collection.php" hash="bf14fc98ce1523fd965951668a144f50"/><dir name="Package"><file name="Collection.php" hash="afc877fe2b0fe0a7520c0418aa478a41"/></dir></dir><file name="Design.php" hash="321106d4ade63611a0a97c7b2d8c4b16"/><dir name="Email"><dir name="Template"><file name="Collection.php" hash="e7c411db3bdc3def8e8b3615ce4979ec"/></dir><file name="Template.php" hash="a1652881d2af3d43d5f5aa704e4b417f"/></dir><dir name="Entity"><file name="Abstract.php" hash="0100784f110c832f658b6a268e44f169"/><file name="Table.php" hash="a424a7ffcf08e68c803b3f28754040c7"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="24b4100968e18262da7876cb2772faa5"/><file name="Database.php" hash="3f119cd4defe9b433537d9a35ee4cf7c"/><dir name="Directory"><file name="Database.php" hash="5dd263c082bfb60526792079b1355d5f"/></dir><file name="File.php" hash="accc0cc4cb2f2b0741b1a51b0515c19b"/></dir></dir><file name="Flag.php" hash="bfccf10fac18355012e051b4c01c9aee"/><dir name="Helper"><file name="Abstract.php" hash="77f2c74b5123e6fd51d5acf7c7338627"/><file name="Mysql4.php" hash="f836a6aeb9b63ddedc4250617973f488"/></dir><file name="Iterator.php" hash="0ee18077dc251fe5bfb2d3a74dd6a4fc"/><dir name="Language"><file name="Collection.php" hash="ed54c467951bd75c9a151f2127047d8f"/></dir><file name="Language.php" hash="e14359350fc4cea1efe0d832c88e67e6"/><file name="Layout.php" hash="fc502ab7e01451e3e13c48b3146aae9c"/><file name="Resource.php" hash="2899eb7ce8575284a5cd22a70542c349"/><file name="Session.php" hash="97e10bd61c8f4ff90e31caf5769362d0"/><dir name="Setup"><dir name="Query"><file name="Modifier.php" hash="5a5e0eccbb0580f3710874b463d8358d"/></dir></dir><file name="Setup.php" hash="b4098e246b5bd7d365bad8ab5d7ba850"/><dir name="Store"><file name="Collection.php" hash="0ef4e5e9f78fec51382b7d081ca9e21d"/><dir name="Group"><file name="Collection.php" hash="93e2f0da32c9e74b8ec1d42a1f44ff30"/></dir><file name="Group.php" hash="f61293d5e27fc020783bc2b80980aee7"/></dir><file name="Store.php" hash="9b0d5564e6e69961d4d6bc27bdf844b5"/><file name="Transaction.php" hash="9685deac936163230c49b24060ee2902"/><dir name="Translate"><file name="String.php" hash="4ad127b4362870563797866b6825393e"/></dir><file name="Translate.php" hash="1b31561145e33aedf3b1804dd0d91068"/><dir name="Type"><file name="Abstract.php" hash="b46c0dd8465eb3e838ade89040b44bdf"/><dir name="Db"><dir name="Mysqli"><file name="Setup.php" hash="cd1bb0deaff1eff54a0e45dd4e58b931"/></dir><file name="Mysqli.php" hash="0d9aac3577812aa041854a7ac24a00f6"/><dir name="Pdo"><file name="Mysql.php" hash="3adfa2525e4bed59b08493a699548690"/></dir></dir><file name="Db.php" hash="55b8e5c9b6a911680d7568cab87d0610"/></dir><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="740c96b1de4275e6963dd173a95438fd"/></dir><file name="Rewrite.php" hash="9cfc4aadc4cf8a025b4a2d9ea3bcfd40"/></dir><dir name="Variable"><file name="Collection.php" hash="7fdddf0937d178ae6c73489eff09c272"/></dir><file name="Variable.php" hash="a3df780bba1c5c578d6fd536463cbf52"/><dir name="Website"><file name="Collection.php" hash="750b2a2239ef6d9ae07ed02131766c2d"/></dir><file name="Website.php" hash="853dae59d3851157e1cc5a54cb8816ac"/></dir><file name="Resource.php" hash="14412c582d5b2ff9ec7798fa53cf895b"/><dir name="Session"><dir name="Abstract"><file name="Varien.php" hash="57a724ecaf87dd5bc98e08a2e93961d4"/><file name="Zend.php" hash="b5d7f1d72efb5bd2b6830d7efc24abc4"/></dir><file name="Abstract.php" hash="8ba76f8c0bc33b0d8bccb51474c628bd"/><file name="Exception.php" hash="0184d5aef8c4950f24d9c9b55e33a990"/></dir><file name="Session.php" hash="7c76d3143d8404e96ea1a895fd670c31"/><dir name="Source"><dir name="Email"><file name="Variables.php" hash="b56bab694181efab58d393dd64f1e351"/></dir></dir><dir name="Store"><dir name="Api"><file name="V2.php" hash="7fd9a3930fd9630156705497f2c62c08"/></dir><file name="Api.php" hash="0ab5ad47bbe72d69a39f00e112c95c7f"/><file name="Exception.php" hash="644229446b7600b3b0f62a7d31d04d5b"/><file name="Group.php" hash="3b5c1b6f11a780d380ee5c7d66588440"/></dir><file name="Store.php" hash="62f91bc1890fe319ec3da0481177dd8f"/><file name="Template.php" hash="54ef28c879c06b4ffd6543bc2baeed87"/><dir name="Translate"><file name="Expr.php" hash="7b98715309685d0f54404f343bbb19d3"/><file name="Inline.php" hash="e665357aaa6f03b9b50e1c241f8ad9ca"/><file name="String.php" hash="01ad7a2f4d605a97173f7d48a49bb652"/></dir><file name="Translate.php" hash="9c8b4914bda8eff59b146ccd38c5eab6"/><dir name="Url"><file name="Rewrite.php" hash="f389cd16c9bf3b4adff9a793f3a7e919"/><file name="Validator.php" hash="79397335f9f3495fb779708c4bb5a656"/></dir><file name="Url.php" hash="97a39d503278c52065443c6be2193c09"/><dir name="Variable"><file name="Config.php" hash="08cd03baf77e0c687c5f632197356747"/><file name="Observer.php" hash="227cf7fa5df85189e716856b94d2d6e3"/></dir><file name="Variable.php" hash="aee7b5e68f9fa865f3d29c1145fb341e"/><file name="Website.php" hash="12598e98f30d6da58b7bc678541402ad"/></dir><dir name="sql"><dir name="core_setup"><file name="install-1.6.0.0.php" hash="13f03bc9788658d2cda0e72ff2c1701d"/><file name="mysql4-install-0.7.0.php" hash="a3d233bae0fa7a5b7b3c5ec3524309c3"/><file name="mysql4-install-0.8.0.php" hash="42fdb2ceb74d7891477166b6665615cf"/><file name="mysql4-upgrade-0.6.26-0.7.0.php" hash="3dde2857caf07bbbfc6ecd29aa6d2209"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="55a59416c1545e162dc82571da858ff3"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="b6f38708e674fe0ace61eb18e53da302"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="5bdcdbb7c71326e6b07ea0883787dc4a"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="75397f828da5c0f3f6f5a7d91d81b862"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="5a074380898a091982dac79eff8b640d"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="95802fe3132fb2cd59af950919ef8ab0"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="9da4f3ba58920d0df1520aa358531279"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="7a6b4050bab71c0bd84e7c4888c76b6d"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="02385f377a5310e41a79600d108e9895"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="2c43486869c46354a6a9260bd87890ea"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="6de2b44c02e261ab177e9fb472bd3ded"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="3e7d938d53568ce4a3dccb2882fbc0f5"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="d1385674cef3a260f28eb9f1b09e3d72"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="ce3d6592af0d12dbcc97457c30dd8ffb"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="c52cdcba3f01655608971e5391727cee"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="d9d24ad500d54dcbdb2dc6d8b3a11ddc"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="5aaff17fde7740fccb07eedd8dc6dffd"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="cc53c4239eb43ccb42f06191641292a9"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="9aa76cc83168b46caae79f9f979afe25"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="b8c4680cbea72d789854e37dc41a5e4a"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="2b312d32229efe61f791b1e928014afc"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="5ba021066d74c476893a12eff7d29a31"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="ceb5850b36d4f517699ae05d7b1329b4"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="c382354ec23fb9a3bab5d5d456319f2d"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="358c9bc1aaa48d49709575532728b61a"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="26bea4e099b572d5765eb429501951f5"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="7d5efc120db4ef3b9f18eb653d59ac8f"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="6397ae18bf2ea9b5a9c563f8de2b937f"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="22651ce5575c2661b5b2a018bdc6ece3"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="15bf575f6b5704089c7574beb542644e"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="dc555c9bc3616aff4ddb507714b6c427"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="658376e611748928b1ae13d9ba86ea13"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="bba1e63a6fa3cf32e6745b1c608779da"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="48ba89337063ff62bb06ab250c2ae6cf"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="0e600615ff00b0bf9518b2bfb379b631"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="1f72586f2850f7c89e43abb94774255a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="0771f9472fc86571c7707921564874e5"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="45a1f90f3fa10c035e0db2911435ddda"/></dir></dir></dir><dir name="Cron"><dir name="etc"><file name="config.xml" hash="c30f16965965d31d71cd506ef4102eb6"/><file name="system.xml" hash="c32bfe6f6428ee760053ecf907c672b0"/></dir><file name="Exception.php" hash="909726b7f6a1270bdd218a83934f22fb"/><dir name="Helper"><file name="Data.php" hash="a857aabad57a5bf3197775cd70f443a7"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Schedule"><file name="Collection.php" hash="0c70c626af14f196221b9b59e79a9c8e"/></dir><file name="Schedule.php" hash="c8a6446e2a9cbbb9a548a4326deb122c"/></dir><file name="Observer.php" hash="4cae430728f9bf5a842eba9f8d44e152"/><dir name="Resource"><dir name="Schedule"><file name="Collection.php" hash="583d64ef4b77ac6e520a92584ade7b85"/></dir><file name="Schedule.php" hash="42145b0ab079c0081b17ed7b6420f011"/></dir><file name="Schedule.php" hash="4501734f43a725dbca02f0f42aa899be"/></dir><dir name="sql"><dir name="cron_setup"><file name="install-1.6.0.0.php" hash="4b867e2caa21a0ae5f744ed9b5970e4f"/><file name="mysql4-install-0.7.0.php" hash="f1cc746ad6507e743334113acbb576c5"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="dd7870aaea6c018de9515bf4bb90bdb2"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="08d507d8dbeb9c9248ec0b78ee3aa931"/></dir></dir></dir><dir name="CurrencySymbol"><dir name="Block"><dir name="Adminhtml"><dir name="System"><file name="Currencysymbol.php" hash="a3a168085a87f9fdf1b8fc45f6794046"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="System"><file name="CurrencysymbolController.php" hash="855dc39d9751caca4fe8bd340bc6bae5"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4abd71a9d3dadd59899fe55d413e55cc"/><file name="config.xml" hash="fee9a84036ba8dd021abe65db942739e"/></dir><dir name="Helper"><file name="Data.php" hash="d5ad5212ecf126f98d7ab29d9f8e2259"/></dir><dir name="Model"><file name="Observer.php" hash="e2ab7e895b30233fa9993187ac1cc382"/><dir name="System"><file name="Currencysymbol.php" hash="5747a08bbc0e3f9c6b89fa7fb5f9d016"/></dir></dir></dir><dir name="Customer"><dir name="Block"><dir name="Account"><dir name="Dashboard"><file name="Address.php" hash="821013b2666202db2a7da4276641a580"/><file name="Block.php" hash="e8377670ebe6e7b9506efb5bffb4a993"/><file name="Hello.php" hash="d1e10c29a6ce0e672f6ec8c84d255fad"/><file name="Info.php" hash="d7460dfd9aa7a64742b1ddba58f759cb"/><file name="Newsletter.php" hash="943cf16b74808dc3baf0148b8500c5e0"/><file name="Sidebar.php" hash="8a4f30ce910fe668efdf8e10f12a357e"/></dir><file name="Dashboard.php" hash="06f0741f6cbb333efda1bb2996c08c42"/><file name="Forgotpassword.php" hash="e64679b67e1ac7e21e91219fecb459b0"/><file name="Navigation.php" hash="388a080ab136fe8d9c1dfb56f1339585"/><file name="Resetpassword.php" hash="41851f07138fe749a723435e4513058a"/></dir><file name="Account.php" hash="5b69c97f17383ac8526ed863baa160f3"/><dir name="Address"><file name="Book.php" hash="29eccd0bc6e1d73262dfd5c7f339b300"/><file name="Edit.php" hash="df180f3c09a253580bb74de174d3c42b"/><dir name="Renderer"><file name="Default.php" hash="c4dcd1d2d87d39b1b0845a2d81750908"/><file name="Interface.php" hash="b4d6e4b2d67b25ad58a189427621bd8b"/></dir></dir><dir name="Form"><file name="Edit.php" hash="9ec7f2e9b971d0ad00d26af46294db0f"/><file name="Login.php" hash="7973aed41efec43238f33ded0b906dad"/><file name="Register.php" hash="dc6405220cf29e70dc8f83688fae36df"/></dir><file name="Newsletter.php" hash="f7c3621098ec6ead2be805cc0c49b32d"/><dir name="Widget"><file name="Abstract.php" hash="c4f4cc2cbbaeac567bd153f9e75a1c31"/><file name="Dob.php" hash="8fdf08e74627ddbbe4354490ef4237cb"/><file name="Gender.php" hash="4b38e5dc380976f71b6f6526e45ddbcd"/><file name="Name.php" hash="1d50d8fbaa68c0f20d62728d268a665c"/><file name="Taxvat.php" hash="c4242fa699f2c81fb44462b065f09d8f"/></dir></dir><dir name="controllers"><file name="AccountController.php" hash="affcd5ed2c512236cf0b5ac009cf007e"/><file name="AddressController.php" hash="852dce9e763c5871829425eca16b3692"/><file name="ReviewController.php" hash="ea524d5d2d446c003cb82970db7ed1fb"/></dir><dir name="etc"><file name="adminhtml.xml" hash="b4ed2331d70d4e8b2d14c7098d819189"/><file name="api2.xml" hash="a3fcbc111ede59704445d5d4d40aadd7"/><file name="api.xml" hash="a1de5321dbae24f075b578dbf0e22dbf"/><file name="config.xml" hash="6c7c6dfc8ced9ae3350110dec6acd7e6"/><file name="system.xml" hash="fb444dc8df26550e012904bcb7de860d"/><file name="wsdl.xml" hash="ee377e78b3435b0493ce59957d0fc1f3"/><file name="wsi.xml" hash="7cf579d2b5ee2eb66eee6e8194617404"/></dir><file name="Exception.php" hash="996e402948e8b70c1002970bec0fa24a"/><dir name="Helper"><file name="Address.php" hash="18d52e8860b783fcd15ee76c35f0ad6f"/><file name="Data.php" hash="f47276588162f9cb89d196b63366f531"/></dir><dir name="Model"><dir name="Address"><file name="Abstract.php" hash="f70776559479db49ef9fd1b32bc19799"/><dir name="Api"><file name="V2.php" hash="bef4068efa05d99f4b695a595f80563c"/></dir><file name="Api.php" hash="790be6b0a1c4ba5e583d0aec7b4a59a6"/><file name="Config.php" hash="3dbbff07c9b017d60df0b27532fd3820"/></dir><file name="Address.php" hash="36f438968b0d5c8bd20bdc8d3448e2f9"/><dir name="Api"><file name="Resource.php" hash="2e4a01e1609bb8ea7cdfd848442d02a4"/></dir><dir name="Api2"><dir name="Customer"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="d6ad6166d93fc8ec8e78efbc6d319b88"/></dir><dir name="Customer"><file name="V1.php" hash="d78c14fdf6664b1760e0fc8df6e20286"/></dir></dir><file name="Rest.php" hash="ce94a4e15c289a1cf906f01dd6e2a60c"/><file name="Validator.php" hash="f779a8fb09a407d67090004d0df5d58d"/></dir><file name="Address.php" hash="409eb46f3399a5ded6b50f9dddd72090"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="3156d49d0dc07bc1149484e09e91ddf1"/></dir><dir name="Customer"><file name="V1.php" hash="bccdbab655d4b4a8ce707cbc1027b3ca"/></dir></dir><file name="Rest.php" hash="2947725326efc03ce91c5f902199439c"/></dir><file name="Customer.php" hash="3e567b1756dc2692a0217c334b49abfb"/></dir><dir name="Attribute"><dir name="Backend"><dir name="Data"><file name="Boolean.php" hash="9ee59c520f2e8bd4c9f86b048fc8a749"/></dir></dir><dir name="Data"><file name="Abstract.php" hash="fa46e89d24103be471a163a0cb862ea3"/><file name="Boolean.php" hash="f87a2225435ee1d0aeaa24034864ed74"/><file name="Date.php" hash="32096c635513c276276750ace3a1755d"/><file name="File.php" hash="95e6ba9c7c91f2b887b8190b8639c78a"/><file name="Hidden.php" hash="e3849ef0e288e987a1a0f24ab7ea913b"/><file name="Image.php" hash="2ad19eef00078b04fb6d802817d923eb"/><file name="Multiline.php" hash="4973f70d33b4565f2c5ff18a64e81413"/><file name="Multiselect.php" hash="b3608573dc250a73756a33b3cda8c04b"/><file name="Postcode.php" hash="300817e7dfa3a13600c6c2088c9c4a27"/><file name="Select.php" hash="bbb4fd99806eb35c1428835fe4a0e53f"/><file name="Textarea.php" hash="937a6e3f6a7af21422bf5c266f573615"/><file name="Text.php" hash="a60bab2a7a3a99d372e88ef15f29c5d1"/></dir><file name="Data.php" hash="cb1788c52d49a20d86368ae5754fc8f4"/></dir><file name="Attribute.php" hash="d883ff6ff9461435b996618159da826b"/><dir name="Config"><file name="Share.php" hash="e6ae1f8c690fbe1f3e7962d608058a69"/></dir><dir name="Convert"><dir name="Adapter"><file name="Customer.php" hash="eced31f1ac93b6d5fb155c77253bbf9f"/></dir><dir name="Parser"><file name="Customer.php" hash="b9e38a9a5905981e3ecb09c0453e944c"/></dir></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="a38f45a3f7969dca32664a84dd79f7f4"/></dir><file name="Api.php" hash="de565b324a422b0408c8b401433a3d0e"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="d7fc51c2b9b7d31f051b3608c75132c7"/><file name="Password.php" hash="8223c305f23b3a10a8af1370879270cc"/><file name="Shipping.php" hash="a5bc1aa8706ccecb7cb36b84d49af94e"/><file name="Store.php" hash="6c7a742f4cfe92426ca5bac532a996fc"/><file name="Website.php" hash="3bfc72b95d8479c04c702487dfb23f42"/></dir><dir name="Source"><file name="Group.php" hash="509a279e7795da3d40ca91cf32cbb2b8"/><file name="Store.php" hash="5787d0ce477645b1a1209df488a0b8bf"/><file name="Website.php" hash="decee08011303df7bdf5f4a31cd15b59"/></dir></dir></dir><file name="Customer.php" hash="e1c022b4e05d78406a7b9759b743c7ed"/><dir name="Entity"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="f28cf559636f48bc30136f21beb47cd1"/><file name="Street.php" hash="02225adae5faf5ff0a77e99926ec5e3b"/></dir><file name="Collection.php" hash="72693abf3a4c01889e8e121dcab29ee6"/><dir name="Source"><file name="Country.php" hash="79b7da835a74d80597717f6e9fca1e49"/><file name="Region.php" hash="f831c365822d395afbe4c3f3187b7b32"/></dir></dir><file name="Collection.php" hash="043361c3c5ec4dda0034d410b40acb05"/></dir><file name="Address.php" hash="788d0421722ebfe44588f3ea3f4b88df"/><dir name="Attribute"><file name="Collection.php" hash="204bc8842ac19460784ed1f5b4fb3f5c"/></dir><file name="Attribute.php" hash="ea5b7b25b580bc750e4e7b422429580c"/><dir name="Customer"><file name="Collection.php" hash="1f0a0a587b6a09ce54fc5d80f03bb6e2"/></dir><file name="Customer.php" hash="33aa5ceba3602e2509b377ef030517ad"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="7e7af4240a0fd333c3477cb059dc3854"/></dir><file name="Attribute.php" hash="1ec23f7a124bac2abf431f3a5ffb5e90"/></dir><dir name="Group"><file name="Collection.php" hash="2d1cc0d507be1b348afe005d78372281"/></dir><file name="Group.php" hash="363d54942958542f63140f09d95f019d"/><file name="Setup.php" hash="3dc7f458a9de02787d148aae3eaa483d"/><dir name="Wishlist"><file name="Collection.php" hash="abd999cdb67149af86e58cfbaf46d4cc"/></dir></dir><file name="Form.php" hash="c63e3d5b1860df4ac3f52227f9f75395"/><dir name="Group"><dir name="Api"><file name="V2.php" hash="164d48c8e863c22d8e240d33027b5fde"/></dir><file name="Api.php" hash="90f39fdb4c73301722615832da43711b"/></dir><file name="Group.php" hash="c6c477e9f48534ac24a94109a5da2c1f"/><file name="Observer.php" hash="9526803b7751a7ae9b7acb346867b144"/><dir name="Resource"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="cc958421d2051128ed518df7a6f2ddff"/><file name="Street.php" hash="9ec284220b1cdb189a52ab35c54a94b2"/></dir><file name="Collection.php" hash="20a35b9afd7b5939ec29bdc0dde2323d"/><dir name="Source"><file name="Country.php" hash="59d17eb223ee4268ad5c9ba01905a16d"/><file name="Region.php" hash="31f89e11f8d4a4ba33f85b052397470d"/></dir></dir><file name="Collection.php" hash="19b095629a337a2708b4111f0ad68809"/></dir><file name="Address.php" hash="c1b232965fffd9651a27732a179616f9"/><dir name="Attribute"><file name="Collection.php" hash="bd0cd469dbea237e11164f0e2454435e"/></dir><file name="Attribute.php" hash="5ec49e2a53540a04683203f2727e27f6"/><dir name="Customer"><file name="Collection.php" hash="869c2feee69febd39c6a136cc6eea291"/></dir><file name="Customer.php" hash="0f12fc9ce52cc48336652a8a407fb008"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="9a334a05e2fec464531fadc59c90c852"/></dir><file name="Attribute.php" hash="25a857da62ba5efb54d0854fbd123863"/></dir><dir name="Group"><file name="Collection.php" hash="3df4120be32aac2fcdebc3bbe7a0980a"/></dir><file name="Group.php" hash="fb99881b6532321cb079aebd65d8e9ca"/><file name="Setup.php" hash="ef0df08bc0ed59eeb30cd96992e805d3"/><dir name="Wishlist"><file name="Collection.php" hash="cbf54b74a8db6f96a47f5521341ff4fc"/></dir></dir><file name="Session.php" hash="114a47ead9a33f36e1afbb58d353a975"/></dir><dir name="sql"><dir name="customer_setup"><file name="install-1.6.0.0.php" hash="20dffc9bb56d85f6548bc50e7d26a08f"/><file name="mysql4-data-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="38bc1d97306725dc7333afd5c792176e"/><file name="mysql4-data-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="8c4ea640410f1f9b691b59c37db3657f"/><file name="mysql4-data-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="06c269557d7b4430cc47404068a39813"/><file name="mysql4-data-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="88482fef3118d317368e87a1236256f7"/><file name="mysql4-install-0.7.0.php" hash="04a44dd04dcb2d2e79864e911b3a6504"/><file name="mysql4-install-0.8.0.php" hash="5998dd0c159dc5e96df9af243bebf42e"/><file name="mysql4-install-1.4.0.0.0.php" hash="2077b35a3b3a0a432b2ffaaf2fd065d0"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="6a7d73ce9c699def0e945f621404ad78"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="242537234acde02a82c3e0b13acf0ceb"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="fa35fa772ec5e6c27a721ae71488eba6"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="397a2572dc020fa98d2fc52bb6c3ba25"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="4b3344ee91888c116fbb05df3f743dab"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="bf85e39c873e7f47070cebd282965880"/><file name="mysql4-upgrade-0.8.12-1.4.0.0.0.php" hash="7db1053c6b940c31ca04253304fb583e"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="1d89e03b4a9452ecac62638926388965"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="fb79239b32733acf9d47c5d38656a142"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="fa3157d925f2dd083a54fb9d2d93056d"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="d04a40d512daa5765c79a5d806989e21"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="ce346c10bfbb74911271dbc399a2ce87"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="6f85596ad890aee2ac21c554c10dbe79"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="19d5e2ca97a0fa45edaf3c7a4fdf504d"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="48d15c0e5dbce10f1eae1a00e2246447"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="ed869dfb8ec0a553e53693b918655d2c"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="1ea1c94cf59c590614a53e0b3953621f"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="fb920363e06d9a3b8888473bb7a6b814"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="7217a9684a01517c8b7899c7639774a8"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="9bf57d951a5bec7a6e73832319ac2b7b"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="98c4195b96b01a92ec34c5fd1851b869"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="09de856cb89075ccd4d9b11f21ae34f1"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="7e5670a3c3c7d5fae2915d246e8eba34"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="61cc3c06b2e9ef9d27febe9c5b9ba277"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="934e684035a9403e2e1a09e6bec1b7c9"/><file name="mysql4-upgrade-1.6.0.0-1.6.1.0.php" hash="6f98825f05484a48b88bdd001105adb8"/><file name="upgrade-1.6.1.0-1.6.2.0.php" hash="7058337b86d5b3d870127f17c73bb152"/><file name="upgrade-1.6.2.0-1.6.2.0.1.php" hash="9087387cfc49db846e2612ab87c23df0"/></dir></dir></dir><dir name="Dataflow"><dir name="data"><dir name="dataflow_setup"><file name="data-install-1.6.0.0.php" hash="188899f153c2da346858b02afdd87f7b"/></dir></dir><dir name="etc"><file name="config.xml" hash="5334c398aeabb4680a83b58a44a370fd"/></dir><dir name="Helper"><file name="Data.php" hash="259a792c5405d14db08f5a46ef75d960"/></dir><dir name="Model"><dir name="Batch"><file name="Abstract.php" hash="64ddfc79a192b200760ea91c1fc3e6e5"/><file name="Export.php" hash="b1822934448d0d7b2401ff4313a676be"/><file name="Import.php" hash="fcc25c9ec5021ba3d006ec749aa078c6"/><file name="Io.php" hash="0ab36a1709cf5c2c1044643303a4e9f2"/></dir><file name="Batch.php" hash="b42ce4f80440fb4bb104e02bdc1a7a3d"/><dir name="Convert"><dir name="Action"><file name="Abstract.php" hash="d4d7dbf29e102dcdc19a63a89562e22b"/><file name="Interface.php" hash="695c5c769b2671b3e920d1d6e33949c6"/></dir><file name="Action.php" hash="29381a3662e746d4f21bccbdc72635b9"/><dir name="Adapter"><file name="Abstract.php" hash="45524f707729397c3d834e32770add52"/><dir name="Db"><file name="Table.php" hash="fb13e59cea109d0e57596aaf82416100"/></dir><dir name="Http"><file name="Curl.php" hash="cedf5c46d84ae5dd7d7cc8243ff87871"/></dir><file name="Http.php" hash="87a5c93e400c210d7bb3350f263d2a80"/><file name="Interface.php" hash="d030a0ffa9c504653d683c16034489b0"/><file name="Io.php" hash="441cf0e0df3f16e4b9413d811aea65fc"/><file name="Soap.php" hash="281382ba7bb499f8b6fbcf19fbab393d"/><file name="Std.php" hash="1fd60065cdff980190ed583d00a95938"/><dir name="Zend"><file name="Cache.php" hash="f275aaacec8f9f662b0a66545a4521c4"/><file name="Db.php" hash="ea996aa5e12b29ad27f2d8705e7a3013"/></dir></dir><dir name="Container"><file name="Abstract.php" hash="da9c7333f37be4c6aa2377eeeabe18f0"/><file name="Collection.php" hash="786d91b06fdec504e43e8aa8bee5d79c"/><file name="Generic.php" hash="207f5e2f959328fcacaf8404b791f589"/><file name="Interface.php" hash="6bd934f86e2cd74ab0f23102dd4aca32"/></dir><file name="Exception.php" hash="3ddf0c80a81234db185a6e8e43cb9555"/><dir name="Iterator"><dir name="File"><file name="Csv.php" hash="cb0b11ba8458624c7897e3195c81cb92"/></dir><file name="Http.php" hash="0b14ee48f276ca948a6cdf6e44efde9d"/><file name="Interface.php" hash="86a525f54228e550a9d09dabe0274a23"/></dir><file name="Iterator.php" hash="d2a22e289f614ffd6784ceadf59b1223"/><dir name="Mapper"><file name="Abstract.php" hash="e3c2ed05040fb0134b3adfcfe575ffba"/><file name="Column.php" hash="f1dc5ab0e3d559d7f109e6107af536bd"/><file name="Interface.php" hash="d924ed14063a1414a93ebe5661b61773"/></dir><dir name="Parser"><file name="Abstract.php" hash="1258902a603b87dd941ae646ddf39d46"/><file name="Csv.php" hash="37ef37a17f0c95de9999ce115854a48f"/><file name="Interface.php" hash="66bc02844abb8451eda7fef6d2825d52"/><file name="Serialize.php" hash="44daf34c6659149e533583da7e387414"/><dir name="Xml"><file name="Excel.php" hash="c6d66357e9ada6c67f8771637df2fd75"/></dir></dir><dir name="Profile"><file name="Abstract.php" hash="f68043073444f16d52bf6471b07e786a"/><file name="Collection.php" hash="fb6d52d730f3ea0a110859fd9cf12450"/><file name="Interface.php" hash="f01a36ec3b430860f1259a33ed9d0f1a"/></dir><file name="Profile.php" hash="5ea39e739acdcabb79e5ad5f835e12b9"/><dir name="Validator"><file name="Abstract.php" hash="9c83f722b01f1650b7b59079b54407d3"/><file name="Column.php" hash="def61f298dcc8ecc8cf7b74e82a44ee0"/><file name="Dryrun.php" hash="82bcfb3ee632c75331d85bc6c181f165"/><file name="Interface.php" hash="ef45dea87c48e2453039df41bd0b456f"/></dir></dir><file name="Convert.php" hash="cb3c1e606b746c59059fea6ff648c496"/><file name="Import.php" hash="d55933d6c174e517cf2e7b048199f238"/><dir name="Mysql4"><dir name="Batch"><file name="Abstract.php" hash="89f37f1a01e2c84ef12815ce3e361d33"/><file name="Collection.php" hash="d934775510832d88659b60be7a0486b7"/><file name="Export.php" hash="a7139b7dd1c02253a647d2bfc5ba5b1c"/><file name="Import.php" hash="a80c44303c5199b2aee830c964cb1cfe"/></dir><file name="Batch.php" hash="decb2f4dbf688e3e16d97305480de798"/><file name="Catalogold.php" hash="5130649f4ee1d3e3492c593c5e80cc50"/><dir name="Import"><file name="Collection.php" hash="ffd25ba59dd204d6dba46f35c0ff3d93"/></dir><file name="Import.php" hash="ced0f1499e7678641f82fd8c201a836b"/><dir name="Profile"><file name="Collection.php" hash="bbc3f7bcc2725ebde4cfcaf3035e256c"/><dir name="History"><file name="Collection.php" hash="d13d613ebb06bb148581b84083ec1ada"/></dir><file name="History.php" hash="db5a40e6770085136389953290cc786f"/></dir><file name="Profile.php" hash="1451956c3b5be94b9a8e8a4efb55cd32"/><file name="Session.php" hash="d346f944f3fb78ce88af566d71610fd5"/></dir><dir name="Profile"><file name="History.php" hash="96da955702716e2aa62f6698281dda29"/></dir><file name="Profile.php" hash="8596df177083b3a7075845cade6e661c"/><dir name="Resource"><dir name="Batch"><file name="Abstract.php" hash="842089dba596465433692811340178f3"/><file name="Collection.php" hash="60baf9d53706c22e8b9f49a5354a6e7b"/><file name="Export.php" hash="279531049905987d466c2d2016b25c6a"/><file name="Import.php" hash="7477aa06f7576db05b11ed0e3f02cdc3"/></dir><file name="Batch.php" hash="ea75d15ff688b148475e61ee90217a2c"/><dir name="Import"><file name="Collection.php" hash="d8244613ae3a7e864361c22cc4e3bbea"/></dir><file name="Import.php" hash="838d72c6f48918a4dcc7c31e834e352e"/><dir name="Profile"><file name="Collection.php" hash="fcedad3ae47400894b4f74ef7a62f51c"/><dir name="History"><file name="Collection.php" hash="d1026a253df730b615c7f9bfb0f533cf"/></dir><file name="History.php" hash="5cd60afb4a1b39eb1db71d639b70fae1"/></dir><file name="Profile.php" hash="c5cb1cd0e94922e6d62c315f3e5d191e"/><file name="Session.php" hash="b28dcbab2acdba5f22677f5aaee0d02b"/></dir><dir name="Session"><dir name="Adapter"><file name="Http.php" hash="738151ca364160f43b0abbed60a93a58"/></dir><dir name="Parser"><file name="Csv.php" hash="731463d50cbbeda640a9ba92fff5e1fc"/></dir></dir><file name="Session.php" hash="0447782b1e838a04630a0ecc62ae0a1c"/></dir><dir name="sql"><dir name="dataflow_setup"><file name="install-1.6.0.0.php" hash="5b9ff18abe30e6545e7011c50fd890f3"/><file name="mysql4-install-0.7.0.php" hash="23fb19ea985ee2e6034c0200d6238cdb"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="7e3fe91e971357c131e3b3d802c6bbbc"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="2a179134fbe24b9a3dd7a120655519b5"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="9818b3acaf9d9aeafe3ad6a770e17091"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="a80f42367b7786bdb3e93c5d7dce4d5e"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="bd130bd1de8c8dbe65cf6b46abf632a0"/></dir></dir></dir><dir name="Directory"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Currency"><file name="Base.php" hash="74a1248c898f0c13f29399edc4bcecf3"/></dir><dir name="Region"><file name="Updater.php" hash="5e1e11dd08c9d0a8cdd51438d894f4e6"/></dir></dir></dir><file name="Currency.php" hash="d99cb2e31840ca09759c8a2e0627af12"/><file name="Data.php" hash="3c35fcad2c306f49fb670adddfd0075b"/></dir><dir name="controllers"><file name="CurrencyController.php" hash="f4415343212db40c49818bdb1c612d19"/></dir><dir name="data"><dir name="directory_setup"><file name="data-install-1.6.0.0.php" hash="f1886f45db34340c754ca56a4b1f4679"/><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="93506e2eb3a1182a670dd52b0e9a0b6c"/></dir></dir><dir name="etc"><file name="api.xml" hash="9ef9a4efe511f18f13cd55587946b800"/><file name="config.xml" hash="3667a9816f7dec21f509df37ff72dfe6"/><file name="system.xml" hash="15c0c34ce192a93d1d03a79cc36c69ac"/><file name="wsdl.xml" hash="cc488b81c0eae648a0ee360d6e2d9960"/><file name="wsi.xml" hash="66de37cc17e24c0c66f74c52e2df616e"/></dir><file name="Exception.php" hash="ef2497b7d151d153ad2356647640bab8"/><dir name="Helper"><file name="Data.php" hash="41ba650002d06330ebb962fc5aef4137"/><file name="Url.php" hash="477b8a290f2bb20086bc497cb9543274"/></dir><dir name="Model"><dir name="Country"><dir name="Api"><file name="V2.php" hash="5bb1df2f4c20b614586dcf9321bda85a"/></dir><file name="Api.php" hash="8268e2f7e8fcf78f2a308d8a435cf4e0"/><file name="Format.php" hash="7dafb6cc9cb0e1a84bf48f90c5e569d2"/></dir><file name="Country.php" hash="5fe92f89eb9559fe205836a59e16dc8f"/><dir name="Currency"><file name="Filter.php" hash="a11e3d96d50099bd18b296d8edd06783"/><dir name="Import"><file name="Abstract.php" hash="1f3b1e89455710dcccbf1c3c515efc8f"/><file name="Webservicex.php" hash="9fe20549449c01fafb91411cb6685132"/></dir></dir><file name="Currency.php" hash="a303cf84bb197b9fb15777c4bef0bd76"/><dir name="Mysql4"><dir name="Country"><file name="Collection.php" hash="3678c928f4e6e2db3a022ae541602617"/><dir name="Format"><file name="Collection.php" hash="01130dd862479752171878045bc7d1de"/></dir><file name="Format.php" hash="7fe95b624d35a7ec631eec90d45761d4"/></dir><file name="Country.php" hash="044b01f1a44898e43ac9fd9dd850f55a"/><dir name="Currency"><file name="Collection.php" hash="68bc49e5761f5dfc24c2951315a86bc8"/></dir><file name="Currency.php" hash="a80838f497ae54ae30d901772077e382"/><dir name="Region"><file name="Collection.php" hash="b6c33573748d5a75a7a279f0d147672b"/></dir><file name="Region.php" hash="3d9ddf73e10911523e264b761d0d1ed2"/></dir><file name="Observer.php" hash="d10346719072c51163bbad1eede93cd1"/><dir name="Region"><dir name="Api"><file name="V2.php" hash="01c72cb96c1b320ab29158f7349f1d89"/></dir><file name="Api.php" hash="ffe97b9610625e51203728c973ba8a88"/></dir><file name="Region.php" hash="e5ba6bc5a5b77b80c96306b1e9c566bd"/><dir name="Resource"><dir name="Country"><file name="Collection.php" hash="9619621bdf87e3acc5edf43d8deec02e"/><dir name="Format"><file name="Collection.php" hash="c9b5b28ce01bf11414f0333aa57f1c35"/></dir><file name="Format.php" hash="005b22f77dc01d31c121799891419dab"/></dir><file name="Country.php" hash="08b9f9af7e229ed7665bd28c1b77cf85"/><dir name="Currency"><file name="Collection.php" hash="8a607d6dab4fd08cd17e69cea54236ba"/></dir><file name="Currency.php" hash="95335b04f7dec59ad817b8952fae27c9"/><dir name="Region"><file name="Collection.php" hash="d8da013147cc43427c802e7d049609e1"/></dir><file name="Region.php" hash="92bed0b708c6249017f86525494f4039"/></dir></dir><dir name="sql"><dir name="directory_setup"><file name="install-1.6.0.0.php" hash="8c6bc03af28eda85325dff02003fb5f3"/><file name="mysql4-install-0.7.0.php" hash="ed50be9e75d556d170b8f2f09640978b"/><file name="mysql4-install-0.8.0.php" hash="399d0a2488c0eb8b58879d340881c955"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="b9da92711013bee71ea3903f3d3984e1"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="a3f8d64514bbc7d9dd617d1721e3a904"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="4e98bb31849dc2e67a3d361f1d121cb5"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="159885c2425fab133dd8033a60dcc421"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="593283bf4e347158ac4e940390b7968b"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="7d63b63307c5e050cd6208d024dc2fd6"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="489f4e6a094f18e6f1e51e624bc429ef"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="f2958472269e7225f1554f33a5cd1084"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="50e58b50ae9f7bbe81a789909d50c0cf"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="fa1fb2a5e486f45abc3caf99e01d051f"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="67ae150e24711a363e4f802cfdcab2ce"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="cd974a40b3769c6e4a2dc64f7b2c79fd"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="047293510f7756891f773f8271542878"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="b0027aabf8f79431380f56cfb1e7d049"/></dir></dir></dir><dir name="Downloadable"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Downloadable.php" hash="56048c6405b753a5ed8a4450239f3d35"/></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Downloadable"><file name="Links.php" hash="9f554198b3c283ca37d26a7a8df4ce9b"/><file name="Samples.php" hash="c2f9d18218b2bee921e7b0a41f7467a7"/></dir><file name="Downloadable.php" hash="cf02a0b372642c06f0db94ccb0c0a8aa"/></dir></dir></dir></dir><dir name="Sales"><dir name="Items"><dir name="Column"><dir name="Downloadable"><file name="Name.php" hash="631d0dad25f0889e4b9011a92aef5b52"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Links.php" hash="8cad977cc94a67f990c89220fd6d670f"/><file name="Samples.php" hash="40477373d28bc238933e1638dad97da9"/><dir name="View"><file name="Type.php" hash="e2656d3fc71b842c0bd8ed04411c6f3c"/></dir></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="0b6c8e3bb7b1aaae227f55de8dd93faf"/></dir></dir><file name="Success.php" hash="739d1970dc3a9a94006406349309941f"/></dir><dir name="Customer"><dir name="Products"><file name="List.php" hash="f833ec6d4ce5a6f0260aeb115ed0c0b4"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Email"><dir name="Items"><file name="Downloadable.php" hash="554501ff67ed8ed7291e28caa08da260"/><dir name="Order"><file name="Downloadable.php" hash="725579d5c167ed8c0e01acbcd7842d05"/></dir></dir></dir><dir name="Item"><dir name="Renderer"><file name="Downloadable.php" hash="46a83ad2244b67674930de212d236c87"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Downloadable"><file name="FileController.php" hash="c8ced5512fd8e085929bf11e767ba736"/><dir name="Product"><file name="EditController.php" hash="5c2c152ead853deef4a24eeafe1772d2"/></dir></dir></dir><file name="CustomerController.php" hash="d6a9f90c22c222ae0badbedd0a843df4"/><file name="DownloadController.php" hash="398d0817301c16a13b4e0dfc847f33fd"/><file name="FileController.php" hash="b9fbe0fae5fb06626d8700d6322bb604"/><dir name="Product"><file name="EditController.php" hash="49f8699747f28c55c1dcb01a2a807142"/></dir></dir><dir name="data"><dir name="downloadable_setup"><file name="data-install-1.6.0.0.php" hash="cc19b745fd1ca5846fdd1845db3f2b33"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="62dc67fa5dde2cf3480fb480f419791e"/><file name="api.xml" hash="31aa15ebff558a27276adebda78aa4f6"/><file name="config.xml" hash="c4094254b3ab1e661dc121c3a63351e1"/><file name="system.xml" hash="04a379e73be393404caeff0548a72492"/><file name="wsdl.xml" hash="b3935ff3bf7e2ca40ddd304b4c78577f"/><file name="wsi.xml" hash="7eef36b29c2abf88596e63b6a042626d"/></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="68a5d89f4ebe3ff62ec7be374f48d9c9"/></dir></dir><file name="Data.php" hash="3db0da8c0d7c7fc48b3a54a8bc22760c"/><file name="Download.php" hash="67ba7f30b230fc82af1786fb359f7677"/><file name="File.php" hash="b0715c4767757372bd6e7f915b618648"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Downloadable.php" hash="09a673044b89f5c816c25e5cb2803b4d"/></dir></dir><dir name="Link"><dir name="Api"><file name="Uploader.php" hash="6cbaded6a2f4cd27e42c6a790186b79b"/><file name="V2.php" hash="ff22bc424e07ab5a283b9c5b06fad769"/><file name="Validator.php" hash="42339725fa8533f38b813d840211c0f6"/></dir><file name="Api.php" hash="01ddcd07ac16689604d49952502ff1f6"/><dir name="Purchased"><file name="Item.php" hash="02b25c44d44cadaaf63ef7ca7a667e03"/></dir><file name="Purchased.php" hash="e96f9c8caf0dd6e4896be9ca2b018f9e"/></dir><file name="Link.php" hash="493570d026df79c36495a4a839e2fa5e"/><dir name="Mysql4"><dir name="Indexer"><file name="Price.php" hash="e70fea9d5dce07fc5a1baf59976b13d7"/></dir><dir name="Link"><file name="Collection.php" hash="ed388d81f37e7f4048a8670fb0802845"/><dir name="Purchased"><file name="Collection.php" hash="c63f844fb9eb98fd1b9712bbe6620e68"/><dir name="Item"><file name="Collection.php" hash="e1a5c3db39f3a62f3945419bfd97dd46"/></dir><file name="Item.php" hash="b1dfd82a3be85a40e62a589a6d0f787c"/></dir><file name="Purchased.php" hash="d7d3b5ccca9a1f83d91c6d1217e305b1"/></dir><file name="Link.php" hash="85f792faa63fecab11f056b7dd56846c"/><dir name="Sample"><file name="Collection.php" hash="6fb7b3d8071cd2acee58d473e9ecd81c"/></dir><file name="Sample.php" hash="4e6bc8f05d2378616fc50fefebf87fd0"/></dir><file name="Observer.php" hash="a5b27045f263a30907db84c7566aa982"/><dir name="Product"><file name="Price.php" hash="c7fe7b1ad1375b52976b1a2b6deed954"/><file name="Type.php" hash="8b51b53f739ff7557bbc2e12c75e34b3"/></dir><dir name="Resource"><dir name="Indexer"><file name="Price.php" hash="dc636ded79cb2b64f004a833e2d9e688"/></dir><dir name="Link"><file name="Collection.php" hash="bf5ab213289fb937c00d363cd5eea038"/><dir name="Purchased"><file name="Collection.php" hash="73c14f8a473be61b4b281764644d8d96"/><dir name="Item"><file name="Collection.php" hash="1e8315a45d92b0d6ee087b41ada05a38"/></dir><file name="Item.php" hash="6da8c82b61ac6d6e09d8600d465c0fdd"/></dir><file name="Purchased.php" hash="8e7c708e3d8e9996182f2978b43a7581"/></dir><file name="Link.php" hash="456aeeba9906f495acb1117796cfba85"/><dir name="Sample"><file name="Collection.php" hash="71e0730649537c9ca3eb210bd19db073"/></dir><file name="Sample.php" hash="c6696e3e93bcc22b0e1ec1ac98aa0e38"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="77a6f2c8935c30f93b7ad0aa00ebdc8d"/><file name="Creditmemo.php" hash="fba6f8632fc601eb6841442cf1b93aa6"/><file name="Invoice.php" hash="59a257200ae36df44aa46e176f5abd64"/></dir></dir></dir></dir><file name="Sample.php" hash="d340260de97c0cfd977b32e4330be09f"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Contentdisposition.php" hash="d29af9831b28fd2e20e8c4c465bd6c84"/><file name="Orderitemstatus.php" hash="37c2103e088685ec169504ec1a51a87f"/></dir></dir></dir></dir><dir name="sql"><dir name="downloadable_setup"><file name="install-1.6.0.0.php" hash="dd3932165f04268824806f38d7b2184d"/><file name="mysql4-install-0.1.0.php" hash="9ec3f78c3b899bf38a87c7b600388bbf"/><file name="mysql4-install-1.4.0.0.php" hash="c6a05dc34cd65269f93966f106d55c7f"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="fc35aa0594643f2ea8a826fdbe53fc99"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="92eceee70258db89037fb3de6f94fcd3"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="00463b0e35a08195365c44374e113dc8"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="313c2be94837d1720a2f606718242889"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="9973dfbe948c32176c1177c95708eec1"/><file name="mysql4-upgrade-0.1.13-0.1.14.php" hash="f40cfded04cc448de605487d74821d02"/><file name="mysql4-upgrade-0.1.14-0.1.15.php" hash="80ae98a19e5e2a4a6755aaf37929058b"/><file name="mysql4-upgrade-0.1.15-0.1.16.php" hash="e36602bde8f3edcae6f983b1894e1598"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="a56bb38d41a70e852a7e7728682b73af"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="75251e6d97f6b5abcf5bf4df490d3a76"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="0ce9071a1722c2691e70be0ea43f3ac5"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="3bc604d7aad2fbde67d5d2008ac753c4"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="eaf25d3d9016c6e24cb3fd0d2d447764"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="32adf1130ccfad45087bf22ff9c3bf34"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="042e46edd31f51fabc98255fbcf65e4f"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="4754842f62bd3b605c43ca5d8167be34"/><file name="mysql4-upgrade-1.3.9-1.4.0.0.php" hash="444633e679726aa5fe7c5f7987e85941"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="d39db486159a5fc6aee288ef69e9e471"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="020ca7d6aa8a27dc86ef2151da389cae"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="a07a6f06c29182423b38e6fae6e8c883"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="2b9b23d89169a018c3eca46569b5d8fb"/><file name="mysql4-upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="22cf68574711222ccec98ba2fdc65c9f"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="01dfa0c38ef8e6080f9e7d913e1106d9"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="dab960d025344aa7711419feb7e313ca"/></dir></dir></dir><dir name="Eav"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><dir name="Edit"><file name="Js.php" hash="f457e60f94ee02b9e975b8863c8694a1"/><dir name="Main"><file name="Abstract.php" hash="19906c471026a2090144eb3fc6b5e674"/></dir><dir name="Options"><file name="Abstract.php" hash="0b005df36317e0f375aab120b321c1db"/></dir></dir><dir name="Grid"><file name="Abstract.php" hash="5a8bd794730e36249a4e94aae6dd42d8"/></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="6413dc227f9faf33e086910add0453c9"/></dir><file name="Exception.php" hash="b315f66cbda34e7ad70cb88bdb4c5054"/><dir name="Helper"><file name="Data.php" hash="075918100a9d904713683e29f52da66e"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Inputtype"><file name="Validator.php" hash="730e7490775279cac979a48f6bfa5175"/></dir><file name="Inputtype.php" hash="fc4dac046de09426b93ed421365aa0b7"/></dir></dir></dir></dir><dir name="Attribute"><dir name="Data"><file name="Abstract.php" hash="f761ffead2da8c7de9ad7aa8c79c3e7c"/><file name="Boolean.php" hash="e04b9efd1fa23305222933077c98b025"/><file name="Date.php" hash="8663a6210243d530eb77abe7665c1a3a"/><file name="File.php" hash="b036d7a410d217dd3efd9e60a3102aef"/><file name="Hidden.php" hash="12594a5b58cf9bb00b0765eb15685154"/><file name="Image.php" hash="3b59455130af820b1ed3f804aecb103d"/><file name="Multiline.php" hash="7b6932bd1130a5f63706b1e5dc317e75"/><file name="Multiselect.php" hash="2e3dcea1b97fc135d8d5547882efcbee"/><file name="Select.php" hash="0bdc4de57bc49af6e263695a8ff28232"/><file name="Textarea.php" hash="2d4f82e73a0423617a7ddd3fc3111077"/><file name="Text.php" hash="12ce66e6f35ef6b7655ef5dee05b6a5b"/></dir><file name="Data.php" hash="448572d70c4fcfc360d720e61814db24"/></dir><file name="Attribute.php" hash="f7ce82fc96be2072d78f1e5a3c743e1f"/><file name="Config.php" hash="70e96fb0ee6be35111ae133113583e19"/><dir name="Convert"><dir name="Adapter"><file name="Entity.php" hash="e219aae212f039b965bd5a18e3e61a85"/><file name="Grid.php" hash="d06ab1e664312bfa20f0372d7e7b5505"/></dir><dir name="Parser"><file name="Abstract.php" hash="3f5ad6204bd3f78f2b05fe5a0b1621d0"/></dir></dir><dir name="Entity"><file name="Abstract.php" hash="7e82128e971ccf72a9dcd149fd03f248"/><dir name="Attribute"><file name="Abstract.php" hash="2a5972b6b840fc240afbd24dbf8b9171"/><dir name="Backend"><file name="Abstract.php" hash="1dd29ec35638794dd8f9dbfe2efde022"/><file name="Array.php" hash="0167f53479794300ee94e591bce7ad10"/><file name="Datetime.php" hash="647b118e215ae7aed1899ef0db478787"/><file name="Default.php" hash="a206c8a0e2b4964bdd0bf2fa524ccd08"/><file name="Increment.php" hash="553bc73ac454e34494e30b724eca1f18"/><file name="Interface.php" hash="959f844d352eb90589bf0c873596f229"/><file name="Serialized.php" hash="79914b2c4aa1bb4571be62fe8692670d"/><file name="Store.php" hash="60829f69ff0bd50b622b219ea3ee8c08"/><dir name="Time"><file name="Created.php" hash="899f061567109f68141d244f10829ffa"/><file name="Updated.php" hash="ecb7535cfbfd268980dad0bc78419033"/></dir></dir><file name="Exception.php" hash="109776ef681e6490fc7b1b0a80e70617"/><dir name="Frontend"><file name="Abstract.php" hash="8e4e5ce460d6feffa3460c4dcebab790"/><file name="Datetime.php" hash="7ca628888ba5c844c05bcbde5feab18c"/><file name="Default.php" hash="200a0a8dbc71393ec4f49d9eda35aded"/><file name="Interface.php" hash="12deef42ecf038e870f8571c1a556ddf"/></dir><file name="Group.php" hash="ce61e64e2228b88f8f34c5dd45814e28"/><file name="Interface.php" hash="1bc811e0e9f72eefc00095f70d9ecee8"/><file name="Option.php" hash="d6a2466e265da54f75859eaf624f65a8"/><file name="Set.php" hash="840447bca8ae2315139b5c1215ee67d1"/><dir name="Source"><file name="Abstract.php" hash="d526464e1b1e49e141f02fa6547438f1"/><file name="Boolean.php" hash="920691162ac07f144a6b66a8446b37cb"/><file name="Config.php" hash="2b5feac7e0ad93c972ebad38fdff37f1"/><file name="Interface.php" hash="0cba44ed52166d30377e70d0d72ba415"/><file name="Store.php" hash="b2c0b54184dd1c70efcdcf5c79ee2563"/><file name="Table.php" hash="d24bf47d09d43ab28921519a1ea6f518"/></dir></dir><file name="Attribute.php" hash="ae7ec4019b997124fd910385864e427c"/><dir name="Collection"><file name="Abstract.php" hash="7a736ae713602ade253fde0c87250e5f"/></dir><file name="Collection.php" hash="6a4ef68ba1088e5c68cb80c2cdc14486"/><dir name="Increment"><file name="Abstract.php" hash="00b9ebf65a2b786c02894dc1c6ee7cfb"/><file name="Alphanum.php" hash="165e94df5052985607067367d624b913"/><file name="Interface.php" hash="51953d48b53f0c476b9d943f4ded4311"/><file name="Numeric.php" hash="67ead2b8125511b2e2c0c25cfe51e094"/></dir><file name="Interface.php" hash="8a4149b8db9ddec6f948f1ca4a1ae925"/><file name="Setup.php" hash="86f6091d66a69b2f1b3ef7c9701f2378"/><file name="Store.php" hash="7bc38a3a6ebb70651c69e6fba667b6b4"/><file name="Type.php" hash="962e4978dcf13fb5588d52163c5c25cd"/></dir><file name="Entity.php" hash="cbb456ebd5ed9430902bcf570c6aeb75"/><dir name="Form"><file name="Element.php" hash="a5a283f40c05249de18ae906408100e8"/><file name="Fieldset.php" hash="7d520966cfea99c90b45cb1b8052d914"/><file name="Type.php" hash="841e5544956983cb522f09ac7c0ff004"/></dir><file name="Form.php" hash="261e84f1b596accc4a431014704babcd"/><dir name="Mysql4"><file name="Config.php" hash="1c34fb876ff5e9b410da16bf220f30b2"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="2cfbb7639f5f82e4ae35ef3011b6fec3"/><dir name="Group"><file name="Collection.php" hash="285f4f80a0fceebf3b386252fea97566"/></dir><file name="Group.php" hash="7fd4d7a0f17945bfb6225072907cfd56"/><dir name="Option"><file name="Collection.php" hash="dc1650591631ca8eaae3dc1cc17d75b1"/></dir><file name="Option.php" hash="02d7909c21916e01493ee27557de0a0d"/><dir name="Set"><file name="Collection.php" hash="d8079d950a852324f0a446e74af55586"/></dir><file name="Set.php" hash="fea6b1418747ebf752f663663e192bc5"/></dir><file name="Attribute.php" hash="f278c0f8bdae9e4b614fa12f43f20c8e"/><file name="Store.php" hash="d00ea349b75294cdcd6ea223cefed406"/><dir name="Type"><file name="Collection.php" hash="b84f8f73720813dc817304888cb7a224"/></dir><file name="Type.php" hash="3960ed877c080d372af080ebc3fd32a0"/></dir><dir name="Form"><dir name="Element"><file name="Collection.php" hash="be93f8fa6518210feb97c5a16905f4e4"/></dir><file name="Element.php" hash="a55d66feca6a7ff3f1a5ec05084bede8"/><dir name="Fieldset"><file name="Collection.php" hash="a15bc9158693a98f097464c16c330be8"/></dir><file name="Fieldset.php" hash="12a161e7793a0f71d9d8a3af80219333"/><dir name="Type"><file name="Collection.php" hash="149db32da9f9e59d7db8de50e1ff7aee"/></dir><file name="Type.php" hash="6bcfecbbcd5875d55886f7179750f45b"/></dir></dir><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="d548b4b22a8b7734001b217d2ac6bafa"/></dir><file name="Attribute.php" hash="29c9d33bb98ff174d997f7cde569d0dd"/><file name="Config.php" hash="6616ac230b0b24b247b536366c7c99dc"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="3b7a049d01602b34fdb4fd806f494592"/><dir name="Group"><file name="Collection.php" hash="f97ed7a48942621f209c89a2d54a6a92"/></dir><file name="Group.php" hash="cd471de7411d0146a22c816f314d18b9"/><dir name="Option"><file name="Collection.php" hash="646546b56b58021e8a83ee1894803a38"/></dir><file name="Option.php" hash="04d094d5251ca0d36766688a05b40090"/><dir name="Set"><file name="Collection.php" hash="f38a8635900cc75cb525e3ae4b098ed9"/></dir><file name="Set.php" hash="b6c898b81f6f3cca06c60549000addbb"/></dir><file name="Attribute.php" hash="786889141b09a3793e7b3a58710524ba"/><file name="Store.php" hash="71901408b8e8538f54ef506de56a6846"/><dir name="Type"><file name="Collection.php" hash="57543b49cc8b07b313ba3901d985e672"/></dir><file name="Type.php" hash="0b70ca17c14211141cb283ac9626ae95"/></dir><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="0d4670abc14ee105f6fe12acbb5d29d8"/></dir><file name="Attribute.php" hash="e56c983585529b34c50573958d300ad2"/><dir name="Element"><file name="Collection.php" hash="47ae251bafc18344912d19ea352471eb"/></dir><file name="Element.php" hash="65c8bad698f5860417b0e81205949748"/><dir name="Fieldset"><file name="Collection.php" hash="b08b56506fd41acf167fc2ddd3fe05e4"/></dir><file name="Fieldset.php" hash="abf6b758b533ac9bbe8809402678ae88"/><dir name="Type"><file name="Collection.php" hash="5b631eb6132190118cb44de6bc1609db"/></dir><file name="Type.php" hash="af2a7d07a062c749cbc546a0a76d41f8"/></dir><dir name="Helper"><file name="Mysql4.php" hash="e6e4dcbbc8f247e4ef82f7ab0ef61fc2"/></dir></dir></dir><dir name="sql"><dir name="eav_setup"><file name="install-1.6.0.0.php" hash="722926d2660111dd94355636a36b19dc"/><file name="mysql4-install-0.7.0.php" hash="4df8a8073cb0f3fb5d322a950cdd284c"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="84a05c7fdad52125ae49584bd8698c77"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="9eacb76babaf5066ef26e62438b435e0"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="7b50d00e28b7b97197590364a9b47939"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="52968b7cf7440b04c84aabe8dc042dc8"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="690f6be2bd4c1e9cb8e5ac821bdb58e5"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="696becebfcae35fdb583176cbb3aa5b7"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="bc8cc3c0697aa80da6af36efa1705982"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="96b55ff5d6899c5a6098861549cd9fc5"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="947143da56d560ecf3cafed7a884bf3d"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="0108ad00b1ddd76a9fb618f87f0dc596"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="a619ebd3dd726c2e16aee3624fa9303f"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="31528c89c2e75d2cdc5ebbc24b27638f"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="49a7eadc1efc6776947e2f9c5330c609"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="8b2016d873951011a506574dd8c2069b"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="ac862453c43d2d5f39c4b2b6c08933b4"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="31a29aa3f4e35ee52dd41a59abd102cf"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="da9679e35075468c74ebb0d71bb9863e"/></dir></dir></dir><dir name="GiftMessage"><dir name="Block"><dir name="Adminhtml"><dir name="Product"><dir name="Helper"><dir name="Form"><file name="Config.php" hash="5154b566d39a8b8b66e4bbb2d74ed14a"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Create"><file name="Form.php" hash="f9134019901e885b76514522ce21dde3"/><file name="Giftoptions.php" hash="f5c6a2820117f726f585af764ca07d44"/><file name="Items.php" hash="83ca720b431c3062b0768003d8ea4c9d"/></dir><dir name="View"><file name="Form.php" hash="52f202d2761d1237eff3af6f991ff7d5"/><file name="Giftoptions.php" hash="ab816b14b752866ed87474dd97d0f001"/><file name="Items.php" hash="f00a95f8c5831965bfe985bafc23a765"/></dir></dir></dir></dir><dir name="Message"><file name="Form.php" hash="e834e55df7be429d3fc2bfbd33649fcc"/><file name="Helper.php" hash="17113b7d2c06836a0d7fbe332c0a9cdf"/><file name="Inline.php" hash="4cad19274992d35f56fd8853007c6057"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="8b6a4caf7e95c1017bbe2babb7f50053"/></dir><dir name="etc"><file name="api.xml" hash="36c28578c5618fd1ff2e5a7f68c61c48"/><file name="config.xml" hash="ba1469847e914feaff2d0f1778b17fe1"/><file name="system.xml" hash="fc97ba6f2ebb21bc927e98845e8244e7"/><file name="wsdl.xml" hash="b99aaaac0126c6e09a7ba59fa4dbcf30"/><file name="wsi.xml" hash="ab77c7cfecb0f5d6cb7b07c0b5abc1d1"/></dir><dir name="Helper"><file name="Data.php" hash="10ea94d0fd115b84e1158363fabb19ce"/><file name="Message.php" hash="d00da539a70fc191d09b38d601e81936"/><file name="Url.php" hash="157327457578fbb008b7abab95343763"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="a61c6376783dfdf1abb3687a4e242f1f"/></dir><file name="Api.php" hash="a58bbd8c921f9e43d73d14ab1b520d69"/><dir name="Entity"><dir name="Attribute"><dir name="Backend"><dir name="Boolean"><file name="Config.php" hash="78b92c2ee79783edfb27eaf067f983b9"/></dir></dir><dir name="Source"><dir name="Boolean"><file name="Config.php" hash="c112c974d52be347caf451b98508ffbc"/></dir></dir></dir></dir><file name="Message.php" hash="e56b021a943585fc34d56c4dc499eac5"/><dir name="Mysql4"><dir name="Message"><file name="Collection.php" hash="7af855f6eb09aeb51e2f8485ed262e52"/></dir><file name="Message.php" hash="ce592a39ed831acef5a21f9ec5166887"/><file name="Setup.php" hash="af4e3c623f91b0496e01fbc33b9a7fd3"/></dir><file name="Observer.php" hash="97580af238dd48f3ba681026e635c7c0"/><dir name="Resource"><dir name="Message"><file name="Collection.php" hash="97e656c306a76e7975a54fc965ac6bad"/></dir><file name="Message.php" hash="a0aaf8a407021ac7593b80afe80004c9"/><file name="Setup.php" hash="2f8354e96e353bf9811a98023e53c893"/></dir></dir><dir name="sql"><dir name="giftmessage_setup"><file name="install-1.6.0.0.php" hash="0e2f5aa1f4ba2e33b8c8715211176ebc"/><file name="mysql4-install-0.7.0.php" hash="6f12a8246561c48cbf648ebfa29095e4"/><file name="mysql4-upgrade-0.1.3-0.7.0.php" hash="7b67a418ddd0516bc1b4f2c4f60b572b"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ffb5dab99967e503df966c977f7ccdee"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="6f8374db50c8e44ba020b053a9fb60b1"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="43a0e4f63716325c6657ca2741aec7be"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="0f02ea8f5dc80a02898a1838c923b4ba"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="220e7e8b4f5f5579aa47a30ebdb513ce"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="76476e2d699147577f5ef1814dc545e9"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="15f637bef487dfb8d721b3876dd4c009"/></dir></dir></dir><dir name="GoogleAnalytics"><dir name="Block"><file name="Ga.php" hash="5d93fb6466c6af1dd3eaac55e2d599cd"/></dir><dir name="etc"><file name="adminhtml.xml" hash="69ed770c2fc7b0d635b21f7d958a984c"/><file name="config.xml" hash="c678ddb9dcc8eb73979ee547176e116a"/><file name="system.xml" hash="50b874a48cc9ff707f1a8daa7e61187e"/></dir><dir name="Helper"><file name="Data.php" hash="ff423a7475e04fdffd0629c23bf0b9a1"/></dir><dir name="Model"><file name="Observer.php" hash="8b6821d360de67a8e295e23a0e44fb92"/></dir></dir><dir name="GoogleBase"><dir name="Block"><dir name="Adminhtml"><file name="Captcha.php" hash="8682ccc3103b836998a7241f5fba30be"/><dir name="Items"><file name="Item.php" hash="1db0f4101516299c156c5ae14dc725b8"/><file name="Product.php" hash="2182974183272530220793a5267cfb48"/><dir name="Renderer"><file name="Id.php" hash="4f6e201557fb675c2240486dc0357155"/></dir></dir><file name="Items.php" hash="4fef58288faca1a13f0e6291f98c8ff4"/><dir name="Store"><file name="Switcher.php" hash="4a2b1ab425d771b3f76ca1fc6011998f"/></dir><dir name="Types"><dir name="Edit"><file name="Attributes.php" hash="94a71b2f95a64d7dc11eb0175902daff"/><file name="Form.php" hash="2d7859e927bed715efdd1125be8ec359"/></dir><file name="Edit.php" hash="d74ba5629db21fa0be1335df693968da"/><file name="Grid.php" hash="6eb8a911bde03fee523f385b205da8cc"/><dir name="Renderer"><file name="Country.php" hash="c8dfe1aa9238fbf6fd708f044bc44760"/></dir></dir><file name="Types.php" hash="2685598f1e23c5a9946275a72d102628"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Googlebase"><file name="ItemsController.php" hash="62442cd56438ece5a5915104fcf9713a"/><file name="SelectionController.php" hash="0eec3d0849636a677c9b18290e06aace"/><file name="TypesController.php" hash="8fc3a555455b1e2d768d6778c835510c"/></dir></dir><file name="ItemsController.php" hash="9f5fbb29417fca7a0c649d7141a93bff"/><file name="SelectionController.php" hash="d78c2cfd03d384249e58197b0dcc076c"/><file name="TypesController.php" hash="0b4b89d65d62abec49e622ef6e91967a"/></dir><dir name="etc"><file name="adminhtml.xml" hash="dc0f3288bb3fdba3a85e93ef25cf100d"/><file name="config.xml" hash="97ffddb040128046426286ef15fb32b2"/><file name="system.xml" hash="98e285efce9e1e40269937abb2fe2bfb"/></dir><dir name="Helper"><file name="Data.php" hash="37bc0f3d3b507481bf47be2a1548a77d"/></dir><dir name="Model"><file name="Attribute.php" hash="f28c15e411ac56c05ab5b2844839386e"/><file name="Config.php" hash="5e38d64b721425eafe089baf330b7230"/><file name="Item.php" hash="6558e08513fcda8e5360f8c4bd7bedb1"/><dir name="Mysql4"><dir name="Attribute"><file name="Collection.php" hash="7ed9d6b40f1fb1ab39fbe95262a9b6a7"/></dir><file name="Attribute.php" hash="c57a4307ee3edee9629289af5eed8e8a"/><dir name="Item"><file name="Collection.php" hash="ed09226cab8be78b7f5edf7787b19e10"/></dir><file name="Item.php" hash="1b3ab207714a84ba3b232e27520b4738"/><dir name="Type"><file name="Collection.php" hash="77d186c2270e0d4c6024c1de69e9793d"/></dir><file name="Type.php" hash="1c453e60ee22d7022d17eed543d645e0"/></dir><file name="Observer.php" hash="7e4cda4054813b0398673903e64a9b84"/><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="430e3049879d3c5212d840db25d1a414"/></dir><file name="Attribute.php" hash="1fb20f68d026ce9502f674eb7de85c34"/><dir name="Item"><file name="Collection.php" hash="3578a58b5942fffdb501237c128d1ccd"/></dir><file name="Item.php" hash="2b7185855bef14468e1c62220dc7ac9a"/><dir name="Type"><file name="Collection.php" hash="c0c19c5666e38638a80db13a5c312e8e"/></dir><file name="Type.php" hash="4e7c84fbf3bc054aa38263809ad62d26"/></dir><dir name="Service"><file name="Feed.php" hash="668bc5ea76b9f58930fffa049bde72ff"/><file name="Item.php" hash="ff57993f48e2145e9314a40d979f2ca7"/></dir><file name="Service.php" hash="eb5ce9a566827db732816dd3af6c8d7a"/><dir name="Source"><file name="Accounttype.php" hash="4fbcee03563066ef967481394eb2d415"/><file name="Authtype.php" hash="7a80fb028498c241230486632b5e79d5"/><file name="Country.php" hash="0c9c1c4bf86da3f6d78510d03ea71bd0"/><file name="Statuses.php" hash="b27dccdad552134bc712dc8c26c3caa1"/></dir><file name="Type.php" hash="eac85d258879244350685a1139188a5b"/></dir><dir name="sql"><dir name="googlebase_setup"><file name="install-1.6.0.0.php" hash="76ff642d3c525b649e36652a3932e69e"/><file name="mysql4-install-0.1.0.php" hash="67ebd661333e7e0e7517f1de4259394f"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="a24aac91bb23ff34f64ab513634b35fa"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="c121e57b3309a6a54600a34a1e3bae58"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="a678083e8be2fc92fcbb54e6d007b4f1"/></dir></dir></dir><dir name="GoogleCheckout"><dir name="Block"><dir name="Adminhtml"><dir name="Shipping"><dir name="Applicable"><file name="Countries.php" hash="aaaceb1f2572493b09c8a318e02e646d"/></dir><file name="Merchant.php" hash="4d94263d1a7d35744e015df1763dae3f"/></dir></dir><file name="Form.php" hash="47bfd0a612181b0b1b424505f74ca17d"/><file name="Link.php" hash="6377f5ca8f9fab062beeb599da52bc69"/><file name="Redirect.php" hash="3d78040e1e2305416d02662473592a47"/></dir><dir name="controllers"><file name="ApiController.php" hash="499182ad3fc6e45ddbaa1fe0eb77dac7"/><file name="RedirectController.php" hash="7a09827a26b3d8e64873f6689b81b71c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0a1368ba81853204c9e645854c1bf8d0"/><file name="config.xml" hash="f4a66774eaa3a67acfe15142f56399ce"/><file name="system.xml" hash="72ef0388e35dc5fc9761323464674ffc"/><file name="wsdl.xml" hash="6afabc0271d6e7e1fd11b3d4ee76aa86"/><file name="wsi.xml" hash="7d4dabc90cbde5a078f6beeaac4df3ab"/></dir><file name="Exception.php" hash="12645fc358c3beee8508c8da32da2570"/><dir name="Helper"><file name="Data.php" hash="94e204c83ac65084beb4cf541ba8f1b2"/></dir><dir name="Model"><dir name="Api"><file name="Debug.php" hash="7ad134e81c717a0f0e2e0e127bc78188"/><dir name="Xml"><file name="Abstract.php" hash="77ffc2761b72d955496ea712270b0ac0"/><file name="Calculate.php" hash="8a8422528f6e9216e1bb19144b6657b8"/><file name="Callback.php" hash="aa5795f89b4ee14c3591e79f88b217dd"/><file name="Checkout.php" hash="faf3733d5344d06f488a8e4a258ae944"/><file name="Order.php" hash="dfa01ee7af21c408e529c62458aea075"/></dir></dir><file name="Api.php" hash="ee8d41d87cc19af5a1ea38892191f272"/><dir name="Mysql4"><dir name="Api"><dir name="Debug"><file name="Collection.php" hash="e9ac5113f7316d077748a4c7de190705"/></dir><file name="Debug.php" hash="c6d2f59af6640ab44061c2c9c19acc1e"/></dir><file name="Notification.php" hash="748e31215bb070f23720737e1c852c51"/><file name="Setup.php" hash="7b80793bbf63d8fc704f4c60bd9889f2"/><file name="Tax.php" hash="318773b94eaff0004a464cc7ab2b348c"/></dir><file name="Notification.php" hash="b0190f3ffdb439f0e094ca7b11a5fc59"/><file name="Observer.php" hash="bf545e62e0b1f0906d21d6589cd01f4f"/><file name="Payment.php" hash="5a43a8f2d3a0d55858e301124e85a466"/><dir name="Resource"><dir name="Api"><dir name="Debug"><file name="Collection.php" hash="0a414c6c120cec48119ad95c6517c725"/></dir><file name="Debug.php" hash="1feec84555a75dda22bac3bf044176e0"/></dir><file name="Notification.php" hash="1c608204202937fcf2ceda0b4b11e36a"/><file name="Setup.php" hash="048380820676704e22056aad6897e046"/><file name="Tax.php" hash="ca3231c9d5316350a1d9b271c76dca9c"/></dir><file name="Shipping.php" hash="2800f37ec1a1039bf387b1b4e122fd9d"/><dir name="Source"><dir name="Checkout"><file name="Image.php" hash="01cf2e4310c2a43db6090e0c778a8007"/></dir><file name="Locale.php" hash="f35b68ecf8f8f92b80667a5a76602e02"/><dir name="Shipping"><file name="Carrier.php" hash="64134777cad033cd032cb7e33cde8699"/><file name="Category.php" hash="cf4392f82e27105468bdcf9db7abc7ee"/><file name="Units.php" hash="876086262c96ab035d705bc076873f0b"/><dir name="Virtual"><file name="Method.php" hash="cae76c1e5b387915069e48ed62dc7e60"/><file name="Schedule.php" hash="ab0d7346284e82b7781ce5afb68ae203"/></dir></dir></dir></dir><dir name="sql"><dir name="googlecheckout_setup"><file name="install-1.6.0.0.php" hash="6a2b19a79d8136c490536db5e4ca50f6"/><file name="mysql4-install-0.7.0.php" hash="9016b3872f45e3f8b939582eeda3819d"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="8630998c9add4fbb80a726e2f01821e6"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="3ba5674828acbd64df145188e1685620"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="6d428a3e4d2433ca33b67fecd5fba589"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="45f1f0143eda4e9fca77db4f0310a869"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="3c0408832de58dbbe4518d2a27222005"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="cd1d9c3f1000413320009b1e243bf022"/></dir></dir></dir><dir name="ImportExport"><dir name="Block"><dir name="Adminhtml"><dir name="Export"><dir name="Edit"><file name="Form.php" hash="044a5091847ff88113bfc14eb291736d"/></dir><file name="Edit.php" hash="6000346af673a3dc03b94047d0091d40"/><file name="Filter.php" hash="bcecc3b7ed252b74ee14717b845381b0"/></dir><dir name="Import"><dir name="Edit"><file name="Form.php" hash="a691467afb66a2ec6ac732a0b3dbcf52"/></dir><file name="Edit.php" hash="1dcb58a59c2e6f7d282b0a592fd9bf11"/><dir name="Frame"><file name="Result.php" hash="89c77b70f033ff095a8f984b8e4ced44"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ExportController.php" hash="a7285e9269c04ed986733be0a3991932"/><file name="ImportController.php" hash="2ab653d6f5a8c089478e136a3541036c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ed3f9a05e489fc35c6eb20e75f2c3b61"/><file name="config.xml" hash="fee2173d83695fb2daf530c7a5026e1e"/></dir><dir name="Helper"><file name="Data.php" hash="8f09e33bec64a1b119caec88cafe18f0"/></dir><dir name="Model"><file name="Abstract.php" hash="d5f0f4463f4e157ef32c3ae05deb92c6"/><file name="Config.php" hash="9d0aa6473cbd0a376c30f7173d2db893"/><dir name="Export"><dir name="Adapter"><file name="Abstract.php" hash="c52b0c25ae08a5a6a2fff3d50fd31c7c"/><file name="Csv.php" hash="9fffa9a662cfb8c5591fe2ee33a0216c"/></dir><dir name="Entity"><file name="Abstract.php" hash="83972b491f9d5d6d73df6ad82afa5017"/><file name="Customer.php" hash="b79c2f4552c7dfb4850058ce99c9eed9"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="08f8ec9c1f06362cbe0359d203002cee"/><file name="Configurable.php" hash="9470234c88c6e09cd77296bfc4e0ec3b"/><file name="Grouped.php" hash="a4dc0208be09a70d5dba8e3e113e0301"/><file name="Simple.php" hash="99a50d1c7bb8c81a73c302240449eba2"/></dir></dir><file name="Product.php" hash="8a88364a5c2f2545c92f90565c54447d"/></dir></dir><file name="Export.php" hash="0a99a3a9d0090dac4d11e2eb44e866e4"/><dir name="Import"><dir name="Adapter"><file name="Abstract.php" hash="743c741be31f72b82dbf19431ed691f1"/><file name="Csv.php" hash="79b1504a20d7dc6a1cdbc5ceaa3d488d"/></dir><file name="Adapter.php" hash="d0557d6fc38d8f50200e970c2eac8c5f"/><dir name="Entity"><file name="Abstract.php" hash="70b8d803edd704db584ed18876036a00"/><dir name="Customer"><file name="Address.php" hash="4de8585dc71c320a72537ad7e5caa798"/></dir><file name="Customer.php" hash="97bb6433ed690811a060628ba99a36e1"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="e2c6fe1cadad24216229b9aa91eaaaa7"/><file name="Configurable.php" hash="617d688a2896cb2e39115c22b13a3eb1"/><file name="Grouped.php" hash="bff023120645d196b18139cb95f07766"/><file name="Simple.php" hash="96d2b2f68921bd7597d121bb130e2eae"/></dir></dir><file name="Product.php" hash="5a8aa5f6e5cf528a83ef52ea186217b4"/></dir><dir name="Proxy"><dir name="Product"><file name="Resource.php" hash="f735ffe6d134d54f25155705cbdbdf1e"/></dir><file name="Product.php" hash="6208c1322e913f447c89fefa4e012cec"/></dir><file name="Uploader.php" hash="65b730cd34f10a85c54f062458801840"/></dir><file name="Import.php" hash="7e57b5a94cc2701c29b270271c3b70c4"/><dir name="Mysql4"><dir name="Import"><file name="Data.php" hash="237ca44ca4cce71b49cd61d6f334491d"/></dir><file name="Setup.php" hash="52281bf41ba4a69095d9cb9f9a53bcb0"/></dir><dir name="Resource"><dir name="Helper"><file name="Mysql4.php" hash="90214e61b3612e8935564d8f5e77be73"/></dir><dir name="Import"><file name="Data.php" hash="baf57a0d82660927b3f2baa1af4118b7"/></dir><file name="Setup.php" hash="d851639cb270a181b3f3340c15956c66"/></dir><dir name="Source"><dir name="Export"><file name="Entity.php" hash="9fb2a165ddddafb76deb528c0523122d"/><file name="Format.php" hash="259f53545b6ad2d6d664a66ac257d2eb"/></dir><dir name="Import"><file name="Behavior.php" hash="7866e4c0aa7b55a8afa14fc55b340856"/><file name="Entity.php" hash="4ade6b27b7e591e647568e2ab3077d2e"/></dir></dir></dir><dir name="sql"><dir name="importexport_setup"><file name="install-1.6.0.0.php" hash="f9af354b3768846ed0b3036d5ad1f3bb"/><file name="mysql4-install-0.1.0.php" hash="2b6c85563059ea3e0cc5f2c5eb957bfd"/><file name="mysql4-upgrade-1.6.0.1-1.6.0.2.php" hash="768741d0d65ade275895bc5dc385823f"/></dir></dir></dir><dir name="Index"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="43912789bde66e17a1b7bc1cd4385681"/><dir name="Process"><dir name="Edit"><file name="Form.php" hash="9427ff942210a522f3102b6ee9071e23"/><dir name="Tab"><file name="Main.php" hash="2c8e83f292f63cbd042408ce09101111"/></dir><file name="Tabs.php" hash="0af6de0b8d10f008ce37144adbf047dc"/></dir><file name="Edit.php" hash="98f597a28e32b1ef2fd7ad641c5a880a"/><dir name="Grid"><file name="Massaction.php" hash="0096139d042d07df69e9905b7dfc9f22"/></dir><file name="Grid.php" hash="d63038dc20ab7b99943c533b6b5e256d"/></dir><file name="Process.php" hash="fde9d1d568ae6270367fad2526f8c845"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ProcessController.php" hash="497bfc42e20ca5b468095f9233a6a90e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4554200958b4e08ce9f6e7ebe7c3e797"/><file name="config.xml" hash="98f6107c39a54c80182ec34a17c2c3e0"/></dir><dir name="Helper"><file name="Data.php" hash="ea285c4e6a82fad043f55155765eb1db"/></dir><dir name="Model"><file name="Event.php" hash="df0277bba24466008ce9d55d3024e7c8"/><dir name="Indexer"><file name="Abstract.php" hash="96de557cdfb60df764910fd330e30f0c"/></dir><file name="Indexer.php" hash="66f3d10cb64c6f4cb746db3a7d13dd18"/><dir name="Mysql4"><file name="Abstract.php" hash="74a294c15f2c71a85183f10cc79e0199"/><dir name="Event"><file name="Collection.php" hash="c1626454d7a045c26955fc1d40760c7c"/></dir><file name="Event.php" hash="ca5a35cdf8a30f362c69911541656dfd"/><dir name="Process"><file name="Collection.php" hash="08585394301d861a8bc4e35a27301246"/></dir><file name="Process.php" hash="740b0924742ca7f8c93d5f314ba77f1a"/><file name="Setup.php" hash="a68d4fe052a5513d2a10612f226dbbc4"/></dir><file name="Observer.php" hash="0ddc0b88e5813159c40369f400adbfd9"/><file name="Process.php" hash="a41957608d30749d69505da3b148ede1"/><dir name="Resource"><file name="Abstract.php" hash="48e4c1f1c9a326c038b992870a13f607"/><dir name="Event"><file name="Collection.php" hash="5e94602d433476dfedf566af70c8378a"/></dir><file name="Event.php" hash="8d69545a18b22a4dd344ce7c413b5c26"/><dir name="Helper"><file name="Mysql4.php" hash="ce1abbf6d49aa26de331ab2f162fe58c"/></dir><dir name="Process"><file name="Collection.php" hash="d135a5211cc9e2bd3baa4a1d739e68d8"/></dir><file name="Process.php" hash="32e4a123fb0f4c8c724a1db090e4d856"/><file name="Setup.php" hash="206d6f01211f23b1076301da1ff87bd5"/></dir></dir><dir name="sql"><dir name="index_setup"><file name="install-1.6.0.0.php" hash="6a55254dbc1e15fce20aa8d9299473b0"/><file name="mysql4-install-1.4.0.0.php" hash="02a9ad57bbc0cfd8399025609aa9e90a"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="2d415a612659ebd01bf71625796c6791"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="0764a02e2b162da84109a234c5aebe9a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="482bc7e47d9c7acca2874cc6cc1ba768"/></dir></dir></dir><dir name="Install"><dir name="Block"><file name="Abstract.php" hash="1e64935d4ba5ae7e2b1f237ac8256664"/><file name="Admin.php" hash="e92d1c62df1c893d308b62e56526ab12"/><file name="Begin.php" hash="66a5a5999c1f4b4d7bf659ae44e1a6fe"/><file name="Config.php" hash="1c94a443f96842ee6a9cde98dc106640"/><dir name="Db"><file name="Main.php" hash="55833d9880a27b229baad555cb1d6542"/><dir name="Type"><file name="Mysql4.php" hash="d7a5104699596fa3628bf91206d0c54c"/></dir><file name="Type.php" hash="e88d00b635a87841798981c10f87d6ff"/></dir><file name="Download.php" hash="aefe9d6a57e105170a17871e2ec50e92"/><file name="End.php" hash="84d8f96b1ce81461a1b066352bfd9071"/><file name="Locale.php" hash="cd46dc4a542e1e2a72b2bf099e791d25"/><file name="State.php" hash="94f80a5f510a38063df5b8ad8186f987"/></dir><dir name="Controller"><file name="Action.php" hash="c72273f1eb4757e0120f65ce4e7ca6e6"/></dir><dir name="controllers"><file name="IndexController.php" hash="c04a06284dad0db733c537a9ad3c009b"/><file name="WizardController.php" hash="07bdc05d834c39e32b7f37571c227809"/></dir><dir name="etc"><file name="config.xml" hash="76107f4b8e638987e89001250de7f554"/><file name="install.xml" hash="6435247d406795b23c565325e2dd823e"/></dir><dir name="Helper"><file name="Data.php" hash="5ee9b710d92bf949ff8e0059182f0006"/></dir><dir name="Model"><file name="Config.php" hash="20c5ef6ac57ca18cfb0be3efa9f35306"/><dir name="Installer"><file name="Abstract.php" hash="6132014cf5b233c65f2d718dd6829999"/><file name="Config.php" hash="fddec22489419ba27787af26591d2987"/><file name="Console.php" hash="86395b5d6e08cfc659082a6e1a149de7"/><file name="Data.php" hash="b46310efc2ec403ff5f774d6cd1cc8d1"/><dir name="Db"><file name="Abstract.php" hash="54f36437d4b29a2a4658678f8bdf4e92"/><file name="Mysql4.php" hash="02aaeb1c9fde849155d3a2c6f8ee3e6e"/></dir><file name="Db.php" hash="b44cc214032ae3f4252e8db576e0b141"/><file name="Env.php" hash="ca42febaa49e79e3af5e1e4ae46aa012"/><file name="Filesystem.php" hash="56862f3501e34c4b8d59efd4fbcbbae5"/><file name="Pear.php" hash="23cb0735b5f333308b70fd6b98ebd66d"/></dir><file name="Installer.php" hash="7ad221f07aecbbc117b449a8d5a6e565"/><file name="Observer.php" hash="6de94e8c691643fea7d54f502d391eae"/><file name="Session.php" hash="5fece489b4dd1f8a53537565c57b1f17"/><file name="Wizard.php" hash="c9e88af935ec2ccc5a536cf65ff2c0c5"/></dir></dir><dir name="Log"><dir name="data"><dir name="log_setup"><file name="data-install-1.6.0.0.php" hash="938c2f0194a9ccbe7fa5436a7f1e9c2d"/></dir></dir><dir name="etc"><file name="config.xml" hash="04789314ca4b49adba44c518a3a8547c"/><file name="system.xml" hash="1b82fbdac240d1778b93ff08ec869b63"/></dir><dir name="Helper"><file name="Data.php" hash="16bbd45c918767c573d50b4bae8448f7"/></dir><dir name="Model"><file name="Aggregation.php" hash="7aac64f627713f8de899f5fe9a55d411"/><file name="Cron.php" hash="681fa4cc9ca1be0efbc92ff5c0939220"/><file name="Customer.php" hash="34cb260e6bb4ab80cd6c7e170b6b560d"/><file name="Log.php" hash="46b689b078265ecbdbdd32f318e183a6"/><dir name="Mysql4"><file name="Aggregation.php" hash="ff242fb22be21a25b20ec40ece874489"/><file name="Customer.php" hash="089a168ebfbe0528cb7d95b370951980"/><file name="Log.php" hash="5926ea8fbd0df9fbfcbb76b9ee077e02"/><dir name="Visitor"><file name="Collection.php" hash="cba4182810c6a2a913546dc3736d4c18"/><dir name="Online"><file name="Collection.php" hash="f1111eae57b7dfba9cec9bba5a89055c"/></dir><file name="Online.php" hash="62fdfc474d3ae78a049b9de75add3c53"/></dir><file name="Visitor.php" hash="bff575ed4d99a336e2bbc9cc751439d5"/></dir><dir name="Resource"><file name="Aggregation.php" hash="1b6e3bd6fe2081f628dfae7386ad9378"/><file name="Customer.php" hash="d0417639999cfa08bbb8d764d25f5e20"/><file name="Log.php" hash="f51fa2fdfcb8a5ddd1030d595113a369"/><dir name="Visitor"><file name="Collection.php" hash="d940ee8ed34cdca4b813671d4586a4d3"/><dir name="Online"><file name="Collection.php" hash="3bfc014e21fcbcc28ef3458070b2d1e7"/></dir><file name="Online.php" hash="122c4343f69193f02a5e6077054f82ad"/></dir><file name="Visitor.php" hash="948c287787bf6a1ce0d45c68187c9328"/></dir><dir name="Visitor"><file name="Online.php" hash="16a87f839ecb57a42b0cfeae7f8ff49f"/></dir><file name="Visitor.php" hash="20ac422f0beed7426029a100a5f76c34"/></dir><dir name="sql"><dir name="log_setup"><file name="install-1.6.0.0.php" hash="ad7086a4a2931c08d5e0299f38732c41"/><file name="mysql4-install-0.7.0.php" hash="c81699081cbaa6212cfe5278887cb0ca"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="1dedd1478de74fb6f7ae52820772edec"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="dabd407157f2c7ec47186191fff12333"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="f5a8d49687906b9805b14aa940082c50"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="b72b50aa937bdcb4c6898be31bf959e6"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="299749f3d737dbe27ba47d78946fc59d"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="86a5f3d2f09a360380dd750881746b08"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e96587ee57c61761dff71071fe4f85c5"/></dir></dir></dir><dir name="Media"><dir name="etc"><file name="config.xml" hash="bdfee0bbf50c5194ddb3e8c9e7f24b4b"/></dir><dir name="Helper"><file name="Data.php" hash="55c474895b9156a445c077034374e9c7"/></dir><dir name="Model"><dir name="File"><file name="Image.php" hash="05c60856878b1c7d3b7b09529692ce06"/></dir><dir name="Image"><dir name="Config"><file name="Interface.php" hash="83e1e94a8d3d2c3163f868723e4b76e7"/></dir></dir><file name="Image.php" hash="e77a65f52e1bdb11512681fa849059b1"/></dir></dir><dir name="Newsletter"><dir name="Block"><file name="Subscribe.php" hash="9563160a20bab172dd1613b8abb6be27"/></dir><dir name="controllers"><file name="ManageController.php" hash="bc11b9df3f0920add1ff2c1c1dea259a"/><file name="SubscriberController.php" hash="a169ff102eff920651d29a5564ecb840"/></dir><dir name="data"><dir name="newsletter_setup"><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="f83c350f05655265c13cb5703b91357d"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="79cb31a448f8f373769e8fcc7ae3e8ed"/><file name="config.xml" hash="eebd2dd8765f2c0e791611a09219e854"/><file name="system.xml" hash="1d207a787b5562afb6ba18a7671bb436"/></dir><dir name="Helper"><file name="Data.php" hash="296a56cfe0b11b0156e620667224ecd5"/></dir><dir name="Model"><file name="Message.php" hash="d499e0cd74c67fd9b2a834219c27ee99"/><dir name="Mysql4"><dir name="Problem"><file name="Collection.php" hash="c20c4c2cc6b6227949c46d147e6d5a18"/></dir><file name="Problem.php" hash="a1a13d3d751565f9215fa80c8e4f555e"/><dir name="Queue"><file name="Collection.php" hash="1947dd0cb3cdb5b4a35edc28f6a0a626"/></dir><file name="Queue.php" hash="1711295945db1c2c46ac94cb5a12403a"/><dir name="Subscriber"><file name="Collection.php" hash="c0512d8c4388128a006a4b706c12b01c"/></dir><file name="Subscriber.php" hash="3812657d6fd62df901eb7784172e2083"/><dir name="Template"><file name="Collection.php" hash="70671613b6f599364225700d007eaf42"/></dir><file name="Template.php" hash="e65a682727d8ec47687e67d7249e7948"/></dir><file name="Observer.php" hash="ba109e1b6b4b01130509a8a04b16b2fb"/><file name="Problem.php" hash="0a42b8ee99842b3e6c993b47f9f7423e"/><file name="Queue.php" hash="517acdd5102a108eeaf10dec81a57bef"/><dir name="Resource"><dir name="Problem"><file name="Collection.php" hash="144c53e9311bae0e4aeb1fe281cc68d5"/></dir><file name="Problem.php" hash="cc33e6045a85d8ae47e9faa6a4fe0977"/><dir name="Queue"><file name="Collection.php" hash="76f76ea54b7e269650be6db266b3c623"/></dir><file name="Queue.php" hash="ce71fc4a6b48c9ab1d0947c1b0c17af0"/><dir name="Subscriber"><file name="Collection.php" hash="598b01fa44108191ffea49257d9b266a"/></dir><file name="Subscriber.php" hash="74287703f7160228f7e64f5445784fcf"/><dir name="Template"><file name="Collection.php" hash="9b9aab8ab8410a4abebc2381a98063ab"/></dir><file name="Template.php" hash="36e9b39955bb133819a34ae0bdbfbb57"/></dir><file name="Session.php" hash="241b4f6d9a2ca14edc98d4bfed463726"/><file name="Subscriber.php" hash="ab2f287a4f059475f90f1a682ffddbba"/><dir name="Template"><file name="Filter.php" hash="06a201b5e130675ec8a07ee9000b6ea7"/></dir><file name="Template.php" hash="dc1cc325ff7ca59f2d070f93ef8b63eb"/></dir><dir name="sql"><dir name="newsletter_setup"><file name="install-1.6.0.0.php" hash="85b702ed6bd50f4763ccd60c60991cf4"/><file name="mysql4-install-0.7.0.php" hash="3cb0ddfc02711a3f62c9ac0bcca08221"/><file name="mysql4-install-0.8.0.php" hash="98428900124f77412fa48f6d8a20b991"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ff142de39e7d63a27687399cf7526fb7"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="75087d621b612a229e494381959cfcc7"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="bda3c1330c52f64b5630ae411581e94a"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="80c61ce1d0f507aa18b9d8498b29c57a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="89ec8e6bc08eaca36799783da7f450fb"/></dir></dir></dir><dir name="Oauth"><dir name="Block"><dir name="Adminhtml"><dir name="Oauth"><dir name="Admin"><dir name="Token"><file name="Grid.php" hash="0bf2062dfe6603454869e71bb4b8b8b9"/></dir><file name="Token.php" hash="4a438333c12819f45eab63def9ff23d1"/></dir><dir name="Authorize"><file name="Button.php" hash="7b630e042c4e7e205ac8fd69ace8c79d"/></dir><dir name="AuthorizedTokens"><file name="Grid.php" hash="94672432992ecc5f4fc64f3d2e0e3cb8"/></dir><file name="AuthorizedTokens.php" hash="2c90706db7621ff6f1fbd6cd6331c5c3"/><file name="Authorize.php" hash="4b5ce2fa420fa6ff186661980b1ed211"/><dir name="Consumer"><dir name="Edit"><file name="Form.php" hash="b2aa8f29fbec1fb6dc16cc20597a6395"/></dir><file name="Edit.php" hash="a55be07f544fa40daf50ffe9270261e5"/><file name="Grid.php" hash="a50d9263f8d95a185d306e8725031fa5"/></dir><file name="Consumer.php" hash="c69b641dbafc6956cefd8f73af4c4a9e"/></dir></dir><dir name="Authorize"><file name="Abstract.php" hash="8d5f0b771fea99b3bc9e4286f383ae86"/><file name="ButtonBaseAbstract.php" hash="fa18b41c456be94bcc2fa9a7e884c9cd"/><file name="Button.php" hash="4c8e49590b92f19275dbd98193542c72"/></dir><file name="AuthorizeBaseAbstract.php" hash="ee0fba802e9abeb38b74b5a7d1146c37"/><file name="Authorize.php" hash="c3ba60a07f50d915afd1d0448cecd0bc"/><dir name="Customer"><dir name="Token"><file name="List.php" hash="8f252a3a5388091a8882e29804d5c3ff"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Oauth"><dir name="Admin"><file name="TokenController.php" hash="649d5c087cd7b86e8b283486022dd998"/></dir><file name="AuthorizeController.php" hash="59298640ec240e795e68effe0f698d27"/><file name="AuthorizedTokensController.php" hash="bfa8f6f69c436e84be49818adb396c02"/><file name="ConsumerController.php" hash="a7369fa6359bf46a864d7315d1c2bfc4"/></dir></dir><file name="AuthorizeController.php" hash="9137fb209874bfab78168ea4b97720b0"/><dir name="Customer"><file name="TokenController.php" hash="a980098ae0a4846480c6b04fbb026496"/></dir><file name="InitiateController.php" hash="e58a59e26ca19eb17ec7940aeb02609f"/><file name="TokenController.php" hash="53ae317fbacd491b615d0dce3faa933c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="676e9492ba1ffbc665e4302f41d0b6b7"/><file name="config.xml" hash="e871f29e82bb8287f25b2a10c34297cd"/><file name="system.xml" hash="ea08bc33ae40b562bba523e093661b20"/></dir><file name="Exception.php" hash="a142a848c9f573fd09aef6a25e914f88"/><dir name="Helper"><file name="Data.php" hash="d667c4106c09364affa04c3a01561428"/></dir><dir name="Model"><dir name="Consumer"><dir name="Validator"><file name="KeyLength.php" hash="a43f8d07b7c96ac19d263ca658f63ef7"/></dir></dir><file name="Consumer.php" hash="f6d199a4d7ecdab04c53af2971f73958"/><file name="Nonce.php" hash="3fe586e389e6fb320db545905bf69c0e"/><file name="Observer.php" hash="c453d757b96c2bcf3fa688996b1b46c0"/><dir name="Resource"><dir name="Consumer"><file name="Collection.php" hash="ab776abbce11023c9087936730370364"/></dir><file name="Consumer.php" hash="55fbb3f3fe43708677abb7bc70573c6c"/><dir name="Nonce"><file name="Collection.php" hash="aa9a6b9f1e4339d1d15d8ecf5af19332"/></dir><file name="Nonce.php" hash="8e0d07983e3a73ca12fc5e0cbc3c2f2f"/><file name="Setup.php" hash="aba55f0a8149e26bf9cb93627946cbaa"/><dir name="Token"><file name="Collection.php" hash="90ab10d8051dad65ef3c1e79a6d89041"/></dir><file name="Token.php" hash="ce45defd66a16c7dcdfc7213a07743bf"/></dir><file name="Server.php" hash="a139ee440683a4eb40b2f8da7c7a2b59"/><file name="Token.php" hash="b09d786b080033ae9132ce685c603808"/></dir><dir name="sql"><dir name="oauth_setup"><file name="install-1.0.0.0.php" hash="206e73751c828d991a2006a60192cd3e"/></dir></dir></dir><dir name="Page"><dir name="Block"><dir name="Html"><file name="Breadcrumbs.php" hash="472b18c2e1efce3e17078f0229e6b4f6"/><file name="Footer.php" hash="11b2854a149d689b00439e1d2754273d"/><file name="Header.php" hash="7cdf6b478657950cad703b42bb173976"/><file name="Head.php" hash="e0125d7393dc724c22932dda7f024085"/><file name="Notices.php" hash="515ab12f1963b34cc6ffc9e70db46fd2"/><file name="Pager.php" hash="c2776c8d77507f4a74161dd3234f8d45"/><file name="Toplinks.php" hash="c7d4607bffcc29ea2d6b2760dad16353"/><file name="Topmenu.php" hash="1218e00ae5ba73da2f42d1f8caec9629"/><file name="Welcome.php" hash="bf45f9025e397e9b5970b2695fd14331"/><file name="Wrapper.php" hash="cf82a41be5670090740b06b5a83a5ce9"/></dir><file name="Html.php" hash="ca4d7ca610c7c0bb13527aa4c34919d3"/><dir name="Js"><file name="Cookie.php" hash="971951999bbd122fd3edee842b7cb3a5"/><file name="Translate.php" hash="61b904aa0380a67e56f7205f11c3c057"/></dir><file name="Redirect.php" hash="abb910424df0910fa64513683f588119"/><file name="Switch.php" hash="d516efe0514ce0e85580fba3654995d6"/><dir name="Template"><file name="Container.php" hash="1bca53b823ab2037b6c0658886dcf6a8"/><dir name="Links"><file name="Block.php" hash="80682cb63bcb6e4fe72badf66c774eb7"/></dir><file name="Links.php" hash="069f09ca5ba041a7e73d965d349b1fc8"/></dir></dir><dir name="etc"><file name="config.xml" hash="1a4bec172059eb384103d072acd8adfc"/><file name="system.xml" hash="458ddead521196dc1d8088aebd9a6988"/></dir><dir name="Helper"><file name="Data.php" hash="c642420dc5f943afe8d013e6996d852b"/><file name="Html.php" hash="52d119ed1c3a46a7a268631cfb46658a"/><file name="Layout.php" hash="7409690f0d9a074dd34c7029285e420d"/></dir><dir name="Model"><file name="Config.php" hash="1b1e400ee9fdb0b0d2c39215c2d74952"/><dir name="Source"><file name="Layout.php" hash="6c8295694fa7698206c982ed4d0e147d"/></dir></dir></dir><dir name="PageCache"><dir name="Block"><dir name="Adminhtml"><dir name="Cache"><file name="Additional.php" hash="e8daf2a79a846f5cca73efb9944b9391"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="PageCacheController.php" hash="2021a00e60beb5839031ceeb6a97c0dc"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d53fc13379c7eb962a17b0e001350ac4"/><file name="config.xml" hash="0a48635772ea8d225f9426c970f58132"/><file name="system.xml" hash="029ac90d04603eb121aab397f358fce3"/></dir><dir name="Helper"><file name="Data.php" hash="35f5dab938f67faabbac507895bf5264"/></dir><dir name="Model"><dir name="Control"><file name="Interface.php" hash="045792bd92bbf0bb31cd29f846f9afef"/><file name="Zend.php" hash="1d54b817a1a62913950923ab3da495e5"/></dir><file name="Observer.php" hash="206b85cdfdcb5d92872b034ad569336a"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Controls.php" hash="d6d8556aa045f62d6fc5513a3cc1e8d6"/></dir></dir></dir></dir></dir><dir name="Paygate"><dir name="Block"><dir name="Authorizenet"><dir name="Form"><file name="Cc.php" hash="1a99b0f06d7f02eb6a83373a39572c5a"/></dir><dir name="Info"><file name="Cc.php" hash="82a63ad26c54edb4282b47ecb2b5e6d4"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Paygate"><dir name="Authorizenet"><file name="PaymentController.php" hash="073d945d17b8b65699cc45d76cade52a"/></dir></dir></dir><dir name="Authorizenet"><file name="PaymentController.php" hash="ef8890e784b49bc7437a7234e636fb0c"/></dir></dir><dir name="etc"><file name="config.xml" hash="b70e5f90b67a1f92747a70098402f5cf"/><file name="system.xml" hash="179766bed6e8437fb1ceb4fcf64657bd"/></dir><dir name="Helper"><file name="Data.php" hash="4eaa41163c82e3a07b9082d07551d4e8"/></dir><dir name="Model"><dir name="Authorizenet"><file name="Cards.php" hash="ec7bf29531b26bb3abe1930bb6d6f14d"/><file name="Debug.php" hash="99c994cee36fefd7441c89348e71a34b"/><file name="Request.php" hash="a9d99bbb9acd1a24efeb132c1f90fa98"/><file name="Result.php" hash="f81acb4b45b21234bdd97b2a8ccceb8e"/><dir name="Source"><file name="Cctype.php" hash="485721b018fbf42bf2d986895b460623"/><file name="PaymentAction.php" hash="6dc68daaec83355738ceac05ee6e6543"/></dir></dir><file name="Authorizenet.php" hash="ebd4bc08e1cc9e8321ad561175a4cb38"/><dir name="Mysql4"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="a9ec3bc0e6e77b7227ac297737022496"/></dir><file name="Debug.php" hash="e399a6b44e7b91187264e3100cdc6a81"/></dir></dir><dir name="Resource"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="fbaaaa9acf131b5fe4dd659018f40fd1"/></dir><file name="Debug.php" hash="8b42a2035977c29b3f8055504e934ad3"/></dir></dir></dir><dir name="sql"><dir name="paygate_setup"><file name="install-1.6.0.0.php" hash="f22ceb117f5042ea82cbe287a5073b07"/><file name="mysql4-data-upgrade-0.7.0-0.7.1.php" hash="5544f6e157a90f9059e990790de69356"/><file name="mysql4-install-0.7.0.php" hash="970d13cc71f8def9c16677ee7c56f13d"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="53e58b91ac8c7939a93588e9932a1bc1"/></dir></dir></dir><dir name="Payment"><dir name="Block"><dir name="Catalog"><dir name="Product"><dir name="View"><file name="Profile.php" hash="9436c6e6d37731cc1920141e6c27c8a7"/></dir></dir></dir><dir name="Form"><file name="Banktransfer.php" hash="9f20487c061a99264743af3cbc2266ec"/><file name="Cashondelivery.php" hash="1d1143e48bf4e28bcbb5a6f84cc8972d"/><file name="Cc.php" hash="eb2b27286ac4a3a6dac413665e477e43"/><file name="Ccsave.php" hash="2ff6195d57d6e367153c3b74e497ddac"/><file name="Checkmo.php" hash="5c7e92c34c08af68c1dc897d31ca0d40"/><file name="Container.php" hash="1ccea430592b9454c0917c78ac91ffaf"/><file name="Purchaseorder.php" hash="90ca90541024272ab7a03855c44ccb22"/></dir><file name="Form.php" hash="01ea5d4e5e96319a2ab50433d599f345"/><dir name="Info"><file name="Banktransfer.php" hash="bdcef28d629fe0545063e006a172b089"/><file name="Cc.php" hash="e741644127955187feba4b6d820649a2"/><file name="Ccsave.php" hash="520feb9fc9568fd20b970c8333d7a179"/><file name="Checkmo.php" hash="f42384623045742619cf14260c768fda"/><file name="Container.php" hash="4135107c4c84e4aec1e6b474a616e118"/><file name="Purchaseorder.php" hash="7f92ac66a233d7be51e8d810bb2abca0"/></dir><file name="Info.php" hash="9ac340aa1800cbdc7e1cfdbebf6ce81a"/></dir><dir name="etc"><file name="adminhtml.xml" hash="15b5591143d05d749a28f655ef2352bb"/><file name="config.xml" hash="9bc83e6f2c31b7ffdf9078e2117fda07"/><file name="system.xml" hash="422d257f6bfd7c5562c48e39d6d664b8"/></dir><file name="Exception.php" hash="e632f226ac3dbb465ea27a8f4056f2f5"/><dir name="Helper"><file name="Data.php" hash="e3c220389e76e773289de02869908398"/></dir><dir name="Model"><dir name="Billing"><dir name="Agreement"><file name="MethodInterface.php" hash="89387636497ccb9e9bce392310a3ba09"/></dir><file name="AgreementAbstract.php" hash="e5cb49ba54f24888fe9cdcd18057f573"/></dir><file name="Config.php" hash="e2072dcddf83e03f78b1f41563d40d13"/><dir name="Info"><file name="Exception.php" hash="10e33f7489f2afc81567fd0e41db76ee"/></dir><file name="Info.php" hash="1583e28ed5104a7d04661297a090ffc4"/><dir name="Method"><file name="Abstract.php" hash="9352b10af707b07a5ff9b689890813fe"/><file name="Banktransfer.php" hash="874c0837a5c5a785678f48a6898a809d"/><file name="Cashondelivery.php" hash="da17e281fb800d646804a77a69a55ac2"/><file name="Cc.php" hash="7ac2fd28827102afad14322caca21da4"/><file name="Ccsave.php" hash="b5f55c77d70e96ebf264979d5db77af5"/><file name="Checkmo.php" hash="bec311bde28fa161586bdf15def4ba74"/><file name="Free.php" hash="992e5e5a38a087011ff757be10183b11"/><file name="Purchaseorder.php" hash="29c5338f4bbcfadd25f236c8bfe6046c"/></dir><file name="Observer.php" hash="070a154b4ddc572c9087b7359d31daca"/><dir name="Paygate"><file name="Request.php" hash="b4308bd428653b2607ca12715525973c"/><file name="Result.php" hash="02862193fba889b8e0de5d62ad3199e9"/></dir><dir name="Recurring"><dir name="Profile"><file name="MethodInterface.php" hash="857c4ebc288059e3235cded41cf1b89a"/></dir><file name="Profile.php" hash="9c4fa2eb7a91c475b21e0e281240848f"/></dir><dir name="Source"><file name="Cctype.php" hash="835751e6f769e2074e92916dfe28c08d"/><file name="Invoice.php" hash="03877797092339923baaacd8e103d82f"/></dir></dir></dir><dir name="Paypal"><dir name="Block"><dir name="Adminhtml"><dir name="Settlement"><dir name="Details"><file name="Form.php" hash="834a85f286bdffb86f7143f960396176"/></dir><file name="Details.php" hash="6bbaf7a6de5afba0d8afb125468a0007"/><dir name="Report"><file name="Grid.php" hash="57326516fef5519d82f77b4c7bc8232a"/></dir><file name="Report.php" hash="e64375a1885ceea587e3c031550faaba"/></dir><dir name="System"><dir name="Config"><file name="ApiWizard.php" hash="02c2b3a4d16ed770bd25110ccb116579"/><dir name="Field"><file name="Country.php" hash="a702d688a290bec57cb0a86679a7a4f7"/><file name="Hidden.php" hash="e21538f59c3f9b15b0327fc032677c51"/></dir><dir name="Fieldset"><file name="Expanded.php" hash="932f44fe7def46c277e0c0160a5bb30f"/><file name="Global.php" hash="03298597bcfb2fac84aa59157b3d04fd"/><file name="Group.php" hash="49a4bae8d58cf576ded5078c91afdae6"/><file name="Hint.php" hash="a5005dd24e55e8cf5e75df70882b23a8"/><file name="Location.php" hash="f272cd51fb0ff69b86ef4261b88f89d5"/><file name="Payment.php" hash="f81d5f013ff1504d1985047efcf2abbd"/><file name="Store.php" hash="c34eb36fb9c8294b0e1dd9d788433305"/></dir><dir name="Payflowlink"><file name="Advanced.php" hash="ebd4c43057c987335857f8a1c19f5ef0"/><file name="Info.php" hash="0ab7bde3526390b52c56ab9a2920458a"/></dir></dir></dir></dir><dir name="Express"><file name="Form.php" hash="4f34baafd7fa96dbede49c9dd7e3a314"/><dir name="Review"><file name="Billing.php" hash="e3a6b956ab1c8ca20b0900e8990d8751"/><file name="Details.php" hash="6af810d8f10f9739f8e7cc2abc0358b7"/><file name="Shipping.php" hash="97903a5628c5649da9027704208a6cec"/></dir><file name="Review.php" hash="6b0c0fc838fb3e21f1927b6d589f39cb"/><file name="Shortcut.php" hash="3600b88e975f5504d3cec9386f277a96"/></dir><dir name="Hosted"><dir name="Pro"><file name="Form.php" hash="ce858564fcd9897787bc37653b4888cb"/><file name="Iframe.php" hash="fc2d5870d207bb7205754298908c7a62"/><file name="Info.php" hash="c1aa1a0a39e0bebc0c2bac41f1761350"/></dir></dir><file name="Iframe.php" hash="2ce7b8a69fd4d89b847eed8178bfd9e1"/><file name="Logo.php" hash="672a6f777dcc1010d03bb3e26f8f2ad2"/><dir name="Payflow"><dir name="Advanced"><file name="Form.php" hash="927010606fe5fced1403d6ef58d3c270"/><file name="Iframe.php" hash="27d0fc56829f2c75b293df2e5e4650ab"/><file name="Info.php" hash="42d47a2b51ce4776f969ea5c72fd255e"/><file name="Review.php" hash="2714529f5662538bf847f0ed2e66bd41"/></dir><dir name="Link"><file name="Form.php" hash="f778d0aeee9c7b39931c0c135ae92003"/><file name="Iframe.php" hash="3c089c9890fc32657dc9fcaf126b9528"/><file name="Info.php" hash="420577d8a045b35691b7477915a147b3"/><file name="Review.php" hash="8f786f27ab15e61ddaaec8da98ac9c35"/></dir></dir><dir name="Payment"><file name="Info.php" hash="edf1baeafedfaea68696a7f662ea12ec"/></dir><dir name="Standard"><file name="Form.php" hash="e6bd8f76b93780f84d158613c5a1f3fe"/><file name="Redirect.php" hash="1615ee8b6c5d4c41f9eed1819ea37078"/></dir></dir><dir name="Controller"><dir name="Express"><file name="Abstract.php" hash="6907f1f3549442cb3bf638ac92adc300"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Paypal"><file name="ReportsController.php" hash="8746c8d9cbbbeb06f7dcd20e82d63312"/></dir></dir><file name="ExpressController.php" hash="6681168280fa5d994ce81c4ae1fa4915"/><file name="HostedproController.php" hash="bb6c463c16eef3cc8f1f007bc1196956"/><file name="IpnController.php" hash="44cbc268527b062c274a8c559ab83048"/><file name="PayflowadvancedController.php" hash="713e8969bae3521d02305a68f8b9befc"/><file name="PayflowController.php" hash="e6df0e3eda493a55a830692eaabc769d"/><file name="StandardController.php" hash="74fa22a2d82159ea3f788e2c2a609426"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8b894d93182a500e0505b0de6c775e0a"/><file name="config.xml" hash="aa593973dc349b14beb0cd5336e0a7bb"/><file name="system.xml" hash="702b84ebf0e35ac9e95d2b25484c00f0"/></dir><file name="Exception.php" hash="f064680e44a8d137303062430a388493"/><dir name="Helper"><file name="Data.php" hash="5a5af4d631776f8227188cf2fdd2c2b2"/><file name="Hss.php" hash="1d6979d0bfc9001572798346939c38b1"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="c76fab7463b5e121ee9e1dc13d5f1ad9"/><file name="Nvp.php" hash="fa363340d68801739bd9adfc8897731f"/><file name="Standard.php" hash="78443c0ed3821e16cf146bcae3214aa7"/></dir><file name="Cart.php" hash="108a7292de820401e164bd94aae56305"/><file name="Cert.php" hash="399a4baefd14a6abd68d18169e8c0b02"/><file name="Config.php" hash="02d867c56b2321c9abaa69c4def9e8c4"/><file name="Direct.php" hash="12a57331cadd9804377bf0175d80f9b8"/><dir name="Express"><file name="Checkout.php" hash="460fec8be683d9e5c2e859295ffb2e9f"/></dir><file name="Express.php" hash="103258ff8d5f94bf19ffdbc3a3562e76"/><dir name="Hostedpro"><file name="Request.php" hash="5927be4fb6b18be2780ada094120582f"/></dir><file name="Hostedpro.php" hash="b63fd29b9cfdc632f129961edc32517b"/><file name="Info.php" hash="ff802b4734daa0467e7da78db5118528"/><file name="Ipn.php" hash="1dc413a04499039d9d09e2282697dae0"/><dir name="Method"><file name="Agreement.php" hash="026986f16e4523b01c726d70eeb62528"/></dir><dir name="Mysql4"><file name="Cert.php" hash="9c6e921398d1245cfc3340b04083052c"/><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="ecb2e8c17c810c4680652208f06cb346"/></dir><file name="Row.php" hash="c4130fbf1c94270f23bfa1433c5c3a54"/></dir><file name="Settlement.php" hash="82141afdd2c61014b045d128f1a065ac"/></dir><file name="Setup.php" hash="5dbbcae3d145dea397f258731175de06"/></dir><file name="Observer.php" hash="3b6574358818416a8d1773f4bc8b74f8"/><dir name="Payflow"><file name="Request.php" hash="39f2832eda4f104cc80781b4324f5276"/></dir><file name="Payflowadvanced.php" hash="5144db290e2768100f9aaa48afa1d5f0"/><file name="Payflowlink.php" hash="be914ea7a8831bc9da2dbdbed2662465"/><file name="Payflowpro.php" hash="21423b87898ad843311cd26fce2148a6"/><dir name="Payment"><file name="Transaction.php" hash="73983d09effcf6feb2dc8e73d7e214d0"/></dir><file name="Pro.php" hash="0a16b57a5f93e5915600f8a52957883b"/><dir name="Report"><dir name="Settlement"><file name="Row.php" hash="836a4c797f2779e20e3c0b3c2c6488a8"/></dir><file name="Settlement.php" hash="25086ad2f65ba1100ef6c2e54e89c8b6"/></dir><dir name="Resource"><file name="Cert.php" hash="64f2ff21ad23f68923602d867be75f95"/><dir name="Payment"><dir name="Transaction"><file name="Collection.php" hash="cbf6b54fe1a27fcd7244c6812b7dfcc5"/></dir><file name="Transaction.php" hash="55ba2006e21cdbd346eac74fe9539d2b"/></dir><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="3ef66e51ca2d88e32414770668c95dc8"/></dir><file name="Row.php" hash="f390664275865b5e1968455eaaeb8ab7"/></dir><file name="Settlement.php" hash="ff995a3309786256c58012f9100f74f8"/></dir><file name="Setup.php" hash="7b15a771edebf6c6537cf178a666723b"/></dir><file name="Session.php" hash="917f91efbb68e339199bd0100a038223"/><file name="Standard.php" hash="32e67e33035f10d4024038e288e0bf43"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Cert.php" hash="da6a5e0a2617c4e6ef7c60313329c1c0"/><file name="Cron.php" hash="5a03e87d083d97f7847b110fdab2194d"/><file name="MerchantCountry.php" hash="277cb772d923a2030915ae89bf264422"/></dir><dir name="Source"><file name="AuthorizationAmounts.php" hash="87b53a506705aeebe9c4edc980b72339"/><file name="BuyerCountry.php" hash="0fd5b3193b83256163c229e0709ff93b"/><file name="FetchingSchedule.php" hash="9bdf4652d617dd72d83b53f583fc76aa"/><file name="Logo.php" hash="34a54b6e0d0be2510968e27f17bca9d9"/><file name="MerchantCountry.php" hash="13172a9b4519655886adedc5229b3ec9"/><dir name="PaymentActions"><file name="Express.php" hash="b9289ccb4a9ac3fdfc27dd03b5c9b0e3"/></dir><file name="PaymentActions.php" hash="a3698ca4375ec200f97ce374400759e6"/><file name="RequireBillingAddress.php" hash="cf2b85c0d79a3133fa65cba1480d6a64"/><file name="UrlMethod.php" hash="3458ffe388eb73cb55cda5dcfac61dd6"/></dir></dir></dir></dir><dir name="sql"><dir name="paypal_setup"><file name="install-1.6.0.0.php" hash="b2469041739bf8e14fd0966400a22c07"/><file name="mysql4-install-0.7.0.php" hash="25fcdc3e2c1c6269aaa418be249b2d9f"/><file name="mysql4-install-1.4.0.0.php" hash="f42c5ef6ac5567f2d1f6f4c15263ea74"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="d6a61cfed1b9816441d043dd880e8238"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="1716deec69cbf7fa949558a76fa43fd1"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="e624edb8630883dd02b4b51662dc331b"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="38089d012488add3dfebb8257561f113"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="97953cf10dad2b87ed38a3e16fa10ca5"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="145024349ddf84b2beab0f5f0f6d64a2"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="370588e330f0a311fbd543cb31a182bb"/></dir></dir></dir><dir name="PaypalUk"><dir name="Block"><dir name="Express"><file name="Form.php" hash="3262a3360f0f7504bde40083bc7c5fc9"/><file name="Shortcut.php" hash="50ee21c3323a47b29f57f051652fa726"/></dir></dir><dir name="controllers"><file name="ExpressController.php" hash="d65ac6e403d1787fcd783696aa4e185a"/></dir><dir name="etc"><file name="config.xml" hash="3bf40d759f9d9312b344003190342706"/></dir><dir name="Helper"><file name="Data.php" hash="d52626a050c3dbc4437ea380f4419957"/></dir><dir name="Model"><dir name="Api"><file name="Nvp.php" hash="d38680dc7d984252b4894e0a53c46a5f"/></dir><file name="Direct.php" hash="4e8940c66fada436ae962a227bcfcaff"/><dir name="Express"><file name="Checkout.php" hash="5cac6066e0985899512294fe3c6f1795"/></dir><file name="Express.php" hash="8e9ec3b446f6c86b1bec168b4f02c4a8"/><file name="Pro.php" hash="4c39dfcc680f9059b500bab26e1d3a38"/><file name="Session.php" hash="7804a12145b6c461ea21036c91e5685c"/></dir><dir name="sql"><dir name="paypaluk_setup"><file name="install-1.6.0.0.php" hash="6d940df4e0823d2e4ee6e98278255f3b"/><file name="mysql4-install-0.7.0.php" hash="c4bd6d0ae34efe416d551d070ea899bd"/></dir></dir></dir><dir name="Persistent"><dir name="Block"><dir name="Form"><file name="Remember.php" hash="4f1d0ebd0a8b61f4eddd507e6a0931e9"/></dir><dir name="Header"><file name="Additional.php" hash="af26656934fa662c099eed88fe8902f9"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="0f4e261ce529ab25ee2ff21ed35e7c1c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="b89f9b6e30549e5a560dd0af3a096a0b"/><file name="config.xml" hash="c90de23de7d0413496e7d3481e928d48"/><file name="persistent.xml" hash="7d0e037ae25fc83a7da3020f76243279"/><file name="system.xml" hash="6e791d0b44acaddd76e0a5c1a285ab30"/></dir><dir name="Helper"><file name="Data.php" hash="21d749c3401892375431b7f2563be62d"/><file name="Session.php" hash="31928a9d8217b6d1369af056f3c44308"/></dir><dir name="Model"><dir name="Observer"><file name="Session.php" hash="2397ee6037b90ca6ca8c2732582d167e"/></dir><file name="Observer.php" hash="7bfaa855baa9ab3b82c581f08003caef"/><dir name="Persistent"><file name="Config.php" hash="80062fcb197d45894cb0cfaa6b75790f"/></dir><dir name="Resource"><file name="Session.php" hash="ee9bf6e20718364f21c0da8cefb13e11"/></dir><file name="Session.php" hash="b580ad49642b38b20a37202c1172d375"/></dir><dir name="sql"><dir name="persistent_setup"><file name="install-1.0.0.0.php" hash="dc736f0b525920e5b63410f48631dc4e"/></dir></dir></dir><dir name="Poll"><dir name="Block"><file name="ActivePoll.php" hash="49dc517c263f9378e995fb1384066de7"/><file name="Poll.php" hash="7f1464a25d442d19259465d98d5e249c"/></dir><dir name="controllers"><file name="VoteController.php" hash="8f71373fe70eb6bb50a36a353925fdc8"/></dir><dir name="data"><dir name="poll_setup"><file name="data-install-1.6.0.0.php" hash="fa0a1fd55424be9960a4631e0d3436c8"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="deecdda9fc7f105358dcd02da13dffe2"/><file name="config.xml" hash="f671a10275ec540cc8bc30fde82d7b89"/><file name="system.xml" hash="ce81a4ae76c52e208968ed82b002ee0e"/></dir><dir name="Helper"><file name="Data.php" hash="6c0231a4d71a02a629175114b6df5b01"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="6933764d5c6c308e6e9d0a08b90dce56"/></dir><file name="Answer.php" hash="8da3e716e96c38bdc5b2b0c88a66c743"/><file name="Collection.php" hash="646413f3973dc13e4e367e4af8cde6e8"/><file name="Vote.php" hash="c14a9deb2e2637e64956a1efc7aafbb8"/></dir><file name="Poll.php" hash="d23465520f4bc2b28e2a48e72c4663a7"/></dir><dir name="Poll"><file name="Answer.php" hash="c630011bf3fdc60b4a0fd22acb1ede9f"/><file name="Vote.php" hash="e79fa98bf31cd73e43ea1905ec5e2c0c"/></dir><file name="Poll.php" hash="0a5318d3c7c6c7f736c7b171e2b7f69e"/><dir name="Resource"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="ef4f1a9f2fbe71c2e733a3c516ef933a"/></dir><file name="Answer.php" hash="a6805642f07923232c9f7e17288c6f3e"/><file name="Collection.php" hash="42526c185f879dcf60d163daf56ec42f"/><file name="Vote.php" hash="b6c781d4c071f815cd64089cc3223683"/></dir><file name="Poll.php" hash="41f4c7246076d464825b6b015b9a9a0d"/></dir></dir><dir name="sql"><dir name="poll_setup"><file name="install-1.6.0.0.php" hash="ea3f48661bc8a53ec06bb1349017e45b"/><file name="mysql4-install-0.7.0.php" hash="cdb4ec44b14591f5fbbf822caa0bbe03"/><file name="mysql4-upgrade-0.6.0-0.6.1.php" hash="0dbe96912764dfa69a4a5705421c0b1d"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="8c94e07b132299c863972788822ff6a2"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="cb61aa5b70f22d20e3d39d8074321c0f"/></dir></dir></dir><dir name="ProductAlert"><dir name="Block"><dir name="Email"><file name="Abstract.php" hash="4af2255f0bff0f491da10d38916ba6c9"/><file name="Price.php" hash="5604a4b6c9e3c54336dcad96ca13082a"/><file name="Stock.php" hash="1de80dd4755591436220660694e082b5"/></dir><file name="Price.php" hash="1cc2923a6501bd48f130004add6a5d4a"/><dir name="Product"><file name="View.php" hash="58ee24609ece07d10f66ef75ecf7f2d6"/></dir><file name="Stock.php" hash="820236417959d52c1f3338e4e2d05f74"/></dir><dir name="controllers"><file name="AddController.php" hash="7febeb551a772af3081a974e6bd93a7a"/><file name="UnsubscribeController.php" hash="b3b48822f1fc00058c42d04dba1986ea"/></dir><dir name="etc"><file name="config.xml" hash="69e691e411250546d8e9beea80456e19"/><file name="system.xml" hash="e0cd2bce4359788ddad8a9a85a30a7e4"/></dir><dir name="Helper"><file name="Data.php" hash="5abd985dd5667cfb921946e7d176e6b4"/></dir><dir name="Model"><file name="Email.php" hash="c7139b7a65fa1ab5d533db7c496ef8c6"/><dir name="Mysql4"><dir name="Price"><file name="Collection.php" hash="2a8da223d97f6dc24f17c81ee52ca3c3"/><dir name="Customer"><file name="Collection.php" hash="48a1610bc53342dd3db6142040313311"/></dir></dir><file name="Price.php" hash="ad88ab66cd11237eabc73f9af4f6c3d6"/><dir name="Stock"><file name="Collection.php" hash="0576ce72b50d8a098a36d8a507082714"/><dir name="Customer"><file name="Collection.php" hash="c3e20f44e2653a4cb0770bb8514cf68b"/></dir></dir><file name="Stock.php" hash="a43c6c95f3376bdcfc0b6998a74a2abb"/></dir><file name="Observer.php" hash="0f06b16f3e0c18583870b15a0eb8ee1b"/><file name="Price.php" hash="c6931f212312587aea972b1f804faad1"/><dir name="Resource"><file name="Abstract.php" hash="36e43af5fce4dee4b3ea483d2c9a75a1"/><dir name="Price"><file name="Collection.php" hash="5ff6133f80ab21b70a176a3318c21804"/><dir name="Customer"><file name="Collection.php" hash="1a13c12c8124016a8c9e8d7e8adfc112"/></dir></dir><file name="Price.php" hash="31cb3513a8bc76abd32f9282cd5aeb25"/><dir name="Stock"><file name="Collection.php" hash="1e384d8964a3232bf405441eb138a719"/><dir name="Customer"><file name="Collection.php" hash="09f60a820330bf18c5b90af454b0505e"/></dir></dir><file name="Stock.php" hash="ea6bba812542950ddab4f2eb4ce294cd"/></dir><file name="Stock.php" hash="b1139ecedef80bf13786d147a61bfe48"/></dir><dir name="sql"><dir name="productalert_setup"><file name="install-1.6.0.0.php" hash="af259503fa6985a3c039458b475a17a0"/><file name="mysql4-install-0.7.0.php" hash="cd9426c6d818ae5919e5903709a67811"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="c373194c3dc7c6c55ab8a8c7d590c476"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="0e7bf1ca596abc5fa6277035af87f521"/></dir></dir></dir><dir name="Rating"><dir name="Block"><dir name="Entity"><file name="Detailed.php" hash="7933d3cbb7244bf845a1806d5c5c07e3"/></dir></dir><dir name="data"><dir name="rating_setup"><file name="data-install-1.6.0.0.php" hash="006e17bc18895deb43bd5e10d057d7ab"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="78f72c7de7713e31cbdd17c4cc6bb50f"/><file name="config.xml" hash="d31c061a67701de48c2c4efc73f2f8f8"/></dir><dir name="Helper"><file name="Data.php" hash="0f34d930859f04973b4243fe3366800f"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Rating"><file name="Collection.php" hash="45eaa5b7999fabedf4b7a6937f4fcb6e"/><file name="Entity.php" hash="8e1a5070536f21d9075459905f9fd0e9"/><dir name="Option"><file name="Collection.php" hash="0ddc46f1effe309abfce4c9f188f3609"/><dir name="Vote"><file name="Collection.php" hash="ce7a5acbed28257f4673f86d8169582c"/></dir><file name="Vote.php" hash="8588054842f9c5fa2d268a9b07d1252d"/></dir><file name="Option.php" hash="bcdcc4d5ce1a5fbb4f0d4e5fd26df268"/></dir><file name="Rating.php" hash="ac0e4d45735bd0ecfdf58f99171e7d61"/></dir><file name="Observer.php" hash="4ad72620f893cbc1b7be99271c428a3b"/><dir name="Rating"><file name="Entity.php" hash="cad4ad56cab54e02c1d02693c5d63a99"/><dir name="Option"><file name="Vote.php" hash="dcfc31c6c7f666cf4350e7068ee79392"/></dir><file name="Option.php" hash="0ee39b2b62e4eca21346840f2ba93a7e"/></dir><file name="Rating.php" hash="651477c17438338d2c2ae2cea1e58a50"/><dir name="Resource"><dir name="Rating"><file name="Collection.php" hash="76d44fd9f1a7acd31672579eaf241cb5"/><file name="Entity.php" hash="8b92e1ca2ff73270dace3bcc08025783"/><dir name="Option"><file name="Collection.php" hash="4ee4293737b9d298d9aa7415798c7225"/><dir name="Vote"><file name="Collection.php" hash="0dea6f479497ee82f528dfd6a42bcb9c"/></dir><file name="Vote.php" hash="5ed0063cc4afe51f00b3e2bd170ef2d4"/></dir><file name="Option.php" hash="1c89a9f8338d7208b675b1622ca5f8f7"/></dir><file name="Rating.php" hash="ab5d10fae3a131b9442a8fe2bc3fe9d7"/></dir></dir><dir name="sql"><dir name="rating_setup"><file name="install-1.6.0.0.php" hash="ddef2759b2011868c98cf23782607a79"/><file name="mysql4-install-0.7.0.php" hash="f1c93ee850ff35f6d2a82b7141cd78dc"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="2a8249a8152407fd2eaac5a1b7fe11a9"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="a8f16ecbe75584f983114f2ce5242593"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="447768c453f596bb457d2ce977a47399"/></dir></dir></dir><dir name="Reports"><dir name="Block"><dir name="Product"><file name="Abstract.php" hash="f71d1beea0b2f39f275064dcabd5172e"/><file name="Compared.php" hash="4748bb6f889bf41d69c41fe2f40fb635"/><file name="Viewed.php" hash="cba8562b83b23eeb91e274857f9a557c"/><dir name="Widget"><file name="Compared.php" hash="6920579fd46c88c402096a283ef36dde"/><file name="Viewed.php" hash="aeaaae4b163fb0f2630f6a8bb0dc3af2"/></dir></dir></dir><dir name="data"><dir name="reports_setup"><file name="data-install-1.6.0.0.php" hash="169900a31f8823ef09dad3735575c084"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="dc3d03bbab93619e7c7d4e1e2006df57"/><file name="config.xml" hash="2a7db24d58bb3e1e1fade7ef4520afb6"/><file name="system.xml" hash="28e4a196f6065267586b791b9f277ec2"/><file name="widget.xml" hash="b229ce0b472715f6f560ee3b73aed310"/></dir><file name="Exception.php" hash="dc836dafaa4cdae679fd13af0b5db236"/><dir name="Helper"><file name="Data.php" hash="a304c2c40c07db03cf077b88f2ff204b"/></dir><dir name="Model"><file name="Config.php" hash="897e1a53aab005b1aeb058709984285f"/><dir name="Event"><file name="Observer.php" hash="b6cc5b100e54fd05cd993bc85dacbf60"/><file name="Type.php" hash="082fc1b78b010549e406f2f244841f28"/></dir><file name="Event.php" hash="9f19bd1c58342983c5cfd0cbc0dc3131"/><file name="Flag.php" hash="d2317990180ba0cd4080366e230c1e80"/><dir name="Grouped"><file name="Collection.php" hash="d3fdc7cb90a0aca2684405fb01e7a789"/></dir><dir name="Mysql4"><dir name="Accounts"><file name="Collection.php" hash="0126842f1db2745c040d347ae1ac4f0e"/></dir><dir name="Coupons"><file name="Collection.php" hash="dbd6fde4a4fb0bdf9b3df2857d4f567a"/></dir><dir name="Customer"><file name="Collection.php" hash="7e159bd5aabbf8a303697630480dcde4"/><dir name="Orders"><file name="Collection.php" hash="2a71acc57f991b302b1693b1297dbf4e"/></dir><dir name="Totals"><file name="Collection.php" hash="7e6e640ca54609921c8d0f14c9976e54"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="01049003be8125b904753cdd7837f23b"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="7afa182983a43a54d8fbd75153f1c570"/><dir name="Type"><file name="Collection.php" hash="cbc671535dcda0084449d9884c45b43b"/></dir><file name="Type.php" hash="8e43069afc9e21bde5d6989601098a9e"/></dir><file name="Event.php" hash="4a04d5495bfb9510c8394f266628ad88"/><dir name="Invoiced"><file name="Collection.php" hash="06942b6301dfd12d2d6398ce632a3d29"/></dir><dir name="Order"><file name="Collection.php" hash="4b7baecdc57c539e3479a0942bf0960c"/></dir><dir name="Product"><file name="Collection.php" hash="6538c4bfe619e6d83e93b371bae27377"/><dir name="Downloads"><file name="Collection.php" hash="10c4dd9f03f96dfe2487f6be304f5ddc"/></dir><dir name="Index"><file name="Abstract.php" hash="d16638fd0267240476e691a27d360649"/><dir name="Collection"><file name="Abstract.php" hash="cfca6440aa1abc28c09ece92639d7aad"/></dir><dir name="Compared"><file name="Collection.php" hash="905c28a9dc5cfc179fb1d90badc47c2d"/></dir><file name="Compared.php" hash="3e7cafddcdcf2929a400cd2f8b2fd99f"/><dir name="Viewed"><file name="Collection.php" hash="81df26d072ee269fa568177c21417b50"/></dir><file name="Viewed.php" hash="15b7e9a23ac144200314ee68b9e64e01"/></dir><dir name="Lowstock"><file name="Collection.php" hash="d0fe5ad95a1518adc3f946eab9dd8d7c"/></dir><dir name="Ordered"><file name="Collection.php" hash="4775fe99c4411e485371be792c7bb80e"/></dir><dir name="Sold"><file name="Collection.php" hash="2dbbbafcb89dcd45cbc418ae5c2bd49c"/></dir><dir name="Viewed"><file name="Collection.php" hash="bf89bda3f9229d41a511479a9a8c8a75"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="b0e9eddfb8b0dcffbc4ba683a2beebf3"/></dir><dir name="Refunded"><file name="Collection.php" hash="26bcb200c34734af9ed45a425ff706af"/></dir><dir name="Report"><file name="Abstract.php" hash="48e1b3950340fb22d0b12f40a01c8e11"/><file name="Collection.php" hash="e5505d9d2d8adc729262f9daf1885515"/></dir><dir name="Review"><file name="Collection.php" hash="ab2d6d2c37cf3d00823f5fa2c89e259e"/><dir name="Customer"><file name="Collection.php" hash="04af8b0c7f10a33b820640857dc74a3a"/></dir><dir name="Product"><file name="Collection.php" hash="114befcb11f5e26c3daa6277e4724ca5"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="cac93fb9e273136289cca7385e3e78b9"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="fb646aae3713bcf4599578c7f9c23b4d"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="161f5990a2ed3dd2b913f1577c2523e2"/><dir name="Customer"><file name="Collection.php" hash="c659f5926cf5a496dc233e6998ab0db2"/></dir><dir name="Product"><file name="Collection.php" hash="7c2460e4937ee5b68b24dd9ea3cf7ae0"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="b3caede2d1e4a62ce630b6e1015e8f30"/></dir><dir name="Wishlist"><file name="Collection.php" hash="1caeb4dda599492449e2926433027e13"/><dir name="Product"><file name="Collection.php" hash="50a4d92a80801fa75754e5e1eb1ea3e3"/></dir></dir></dir><dir name="Product"><dir name="Index"><file name="Abstract.php" hash="c9cb90c8affbf50fa2dd41d2d891478c"/><file name="Compared.php" hash="f6aa933c581052a59981c8015ba846db"/><file name="Viewed.php" hash="8199979d0d0cce45d709e00bcaaa3849"/></dir></dir><file name="Report.php" hash="5d6bcfcfbb815d977ee42597c429ae4e"/><dir name="Resource"><dir name="Accounts"><file name="Collection.php" hash="ba6c2c37852e6ed927c349e0edf454fc"/></dir><dir name="Coupons"><file name="Collection.php" hash="ceb4aadf1558a2c135ee9e9f507cf9da"/></dir><dir name="Customer"><file name="Collection.php" hash="d48ba3102bbcb2236fd5995d8bbbc0d6"/><dir name="Orders"><file name="Collection.php" hash="954157842ba30f33a25b425d7f8d4492"/></dir><dir name="Totals"><file name="Collection.php" hash="1280d9b55efd91cb8bd38a03a7f9d223"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="cefb4d28c421fa325a9ac8facae92474"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="53dcb9ef6540c08051ccd81f83c8d216"/><dir name="Type"><file name="Collection.php" hash="6c0d4e1ab7f5f98f2c5c62f4530b5f9e"/></dir><file name="Type.php" hash="5042200f9a472ed4bac7e140beb55f42"/></dir><file name="Event.php" hash="43f5301c0d419a877a6ddac211a10258"/><dir name="Helper"><file name="Interface.php" hash="8cd9a6957c52fdb11e570a2fbda4a77a"/><file name="Mysql4.php" hash="c9dd5aaa071ddca6fb484a414849f234"/></dir><dir name="Invoiced"><file name="Collection.php" hash="78b00ea68f193c1c9297a258c49962a9"/></dir><dir name="Order"><file name="Collection.php" hash="4f45253383010b8333a1f7ab4b82b6a5"/></dir><dir name="Product"><file name="Collection.php" hash="bbb511e6131fd1d76ec57a449e6afb23"/><dir name="Downloads"><file name="Collection.php" hash="9efb166e01ffe1a28167e88639c1d11b"/></dir><dir name="Index"><file name="Abstract.php" hash="9337688cf9f6857b41b215409ad6a794"/><dir name="Collection"><file name="Abstract.php" hash="425d7ec971adea2641babca4e85aaa15"/></dir><dir name="Compared"><file name="Collection.php" hash="fd2dc9826bc03e310cfbac2cdfca0756"/></dir><file name="Compared.php" hash="42728d04b09e81707874cc03082e7b95"/><dir name="Viewed"><file name="Collection.php" hash="dadc5230618971508c936f767906bf30"/></dir><file name="Viewed.php" hash="460fbd445ff5da926ef495d24d10a3cf"/></dir><dir name="Lowstock"><file name="Collection.php" hash="9279d056b419608ca04f11493c826c6d"/></dir><dir name="Ordered"><file name="Collection.php" hash="f75a56659a2a991ad1f7edcaf55bc15f"/></dir><dir name="Sold"><file name="Collection.php" hash="9048008a5adf9f65acdf55649a2144ba"/></dir><dir name="Viewed"><file name="Collection.php" hash="1d30f3932255494dfffb56c7a39a5da7"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="f1c9572a9e562ff417fa0fd996e28e40"/></dir><dir name="Refunded"><file name="Collection.php" hash="638158e5cedc585cf2f36a15bf8056dd"/></dir><dir name="Report"><file name="Abstract.php" hash="2e10c513b0ae80670afaa5948ef64e04"/><dir name="Collection"><file name="Abstract.php" hash="4f5403e87a2ba87d6c54300919472ee0"/></dir><file name="Collection.php" hash="0deb27c0ede6eb896265d060fdc72307"/><dir name="Product"><dir name="Viewed"><file name="Collection.php" hash="57fe488e2c894041d45dd3d40992f159"/></dir><file name="Viewed.php" hash="525f0f6d70a8d9f2f1fc0abe2230b34d"/></dir></dir><dir name="Review"><file name="Collection.php" hash="e2a022f860283cbe55d80a6259e84e69"/><dir name="Customer"><file name="Collection.php" hash="a90c5739f27d5c4cbb6c53b396704847"/></dir><dir name="Product"><file name="Collection.php" hash="348c369575c919ad1ca5444289c50b2c"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="8fcd0296b716d8a7361cb0a8a3c96f2f"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="70cd69f5a48e8bf5bfee5bd4bc1c3609"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="5f800d8871775c0c2c8389466dab9c25"/><dir name="Customer"><file name="Collection.php" hash="7185ef35ee1720467643382225780e0f"/></dir><dir name="Product"><file name="Collection.php" hash="a94a0ee4b8cb4016e17b567279d06cbe"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="c016acec668debd358ccde9e43ad1c70"/></dir><dir name="Wishlist"><file name="Collection.php" hash="a2013185b10883121935bdda7d90901e"/><dir name="Product"><file name="Collection.php" hash="899c8515dac85132f5b5ce0526a43e0f"/></dir></dir></dir><file name="Session.php" hash="d92fb2f90629dc7b4ec957f6c4437e8c"/><file name="Test.php" hash="956d70c591891ea66bd1f714ec27b020"/><file name="Totals.php" hash="034b62b46c48987791993600c6ac4395"/></dir><dir name="sql"><dir name="reports_setup"><file name="install-1.6.0.0.php" hash="1fab7ed4dcbbe3a40adbd3364aa6da59"/><file name="mysql4-install-0.7.1.php" hash="bb3712bda1431b7d64444d193d2c356a"/><file name="mysql4-install-1.5.0.0.php" hash="7cbf44afdce7e46a831dd49b0b0294b1"/><file name="mysql4-install-1.6.0.0.php" hash="3abee0dd47ffd6b60af557d8810ae425"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="d0a8536818427d31bac69ab2c66f7512"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="430405860718806841a68fbb8fba332b"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="deb6e7a8171f457d2a62d3aa2b9a9ffc"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="3788574fcf1b76d0213880a8db196c05"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="5deeb84f46c03d32d03c0276a8e8029f"/><file name="mysql4-upgrade-0.7.5-0.7.7.php" hash="56d679eb3e84f0853ebd3dae8b5cc10b"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="714f96bc7823d1a8645116f74988e7d8"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="31ad38c09b107cac00b8e544cf231e14"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="5b38ade19e45ec2b9e7309fa5ac8e078"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ea4b0220f4e6315b0107990ccaef5d65"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="5c2c092c16ce76ef131814be0940673d"/></dir></dir></dir><dir name="Review"><dir name="Block"><dir name="Customer"><file name="List.php" hash="6c4488d456d68141c9cdd11c0722fc3a"/><file name="Recent.php" hash="0f723e6a7cab7c56fde97b6decf0e481"/><file name="View.php" hash="d3c93b20f12b518cea23b2ba8f6d9425"/></dir><file name="Form.php" hash="e8c0df8f1969d7888a9ba93f01daa10b"/><file name="Helper.php" hash="3391cc0735893f606c1ded1fd03ef7b7"/><dir name="Product"><dir name="View"><file name="List.php" hash="f3fcc2b88259361f6ca1704419ef20db"/></dir><file name="View.php" hash="a79bd939e3734a00b0a1d60cd9453a71"/></dir><file name="View.php" hash="5e3fc9ad3470ed81057daf9357945eae"/></dir><dir name="controllers"><file name="CustomerController.php" hash="e7fa765ed78b82dc260e2bc5bfecfcf6"/><file name="ProductController.php" hash="77e39b9d971eb4d71aa69a8c3a3f5a66"/></dir><dir name="data"><dir name="review_setup"><file name="data-install-1.6.0.0.php" hash="641be66950c06a7f497f6076dadf7f6d"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d47d79d7dd79fd76b792ca15a4f0af1e"/><file name="config.xml" hash="292ff5f779e5c283a8f08a6e58c2b84d"/><file name="system.xml" hash="b9b3f4fd4184fa873c371d9f98f54680"/></dir><dir name="Helper"><file name="Data.php" hash="416033195628e68d7875a761ffa67f97"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Review"><file name="Collection.php" hash="5177e8813e1915ba13a47bd8f36e4de7"/><dir name="Product"><file name="Collection.php" hash="1175535c0f8bb1b3ac192adea379abfc"/></dir><dir name="Status"><file name="Collection.php" hash="def4430c25e2ea0fb0fb965f727af7ef"/></dir><dir name="Summary"><file name="Collection.php" hash="11bc016f1f584309c2304d8a0a7f1dac"/></dir><file name="Summary.php" hash="7c76dd0a5f0044a3482cd8e2875d3f8f"/></dir><file name="Review.php" hash="91d13352a3f485c6e708fec7c82b69e1"/></dir><file name="Observer.php" hash="fba3bdf7edc47901c421030876360b6f"/><dir name="Resource"><dir name="Review"><file name="Collection.php" hash="ddb72730ade057792679d3f95041a6ee"/><dir name="Product"><file name="Collection.php" hash="d916466f1b4faf19e7307359bc65a642"/></dir><dir name="Status"><file name="Collection.php" hash="214af9091f2041f32e18c79e83770e59"/></dir><file name="Status.php" hash="7af471b9c76cb72b52a7de5a0e2c86dd"/><dir name="Summary"><file name="Collection.php" hash="325ed5ed01e2155c9d11877e33ccd56b"/></dir><file name="Summary.php" hash="9b7bf327d1d7c384f1b717b7ebd0a410"/></dir><file name="Review.php" hash="718fb1fbf9af393d6a7f90c16cdbe02c"/></dir><dir name="Review"><file name="Status.php" hash="6f86095b58133ab750750cc4ac5cc05c"/><file name="Summary.php" hash="be77df9de0db461b7690380f04cdf5ef"/></dir><file name="Review.php" hash="ceeadd0a797020313245477bea16adf8"/><file name="Session.php" hash="88772ff56536b12a33b294e779124b20"/></dir><dir name="sql"><dir name="review_setup"><file name="install-1.6.0.0.php" hash="c16f23034023f3c4e55c7f86f892dd4c"/><file name="mysql4-install-0.7.0.php" hash="ab45c46637460efb20696739b25a9461"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="bf8da35ed7b24079d89ce6c87d0a537f"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="157a0df5ac3c8b8ea11e9368728b2cc1"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="c7361eab06662cc9a55424f827107dd8"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="5646ece8a6a8e812f7b96baa2aa0314f"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="f39b6cc5c2bc43d87682b3959426f9e9"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="ae67f2cdeafc31464298e6eea5e46d77"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="4c48bdb036e4a51e48e21bb9e3e6fb4d"/></dir></dir></dir><dir name="Rss"><dir name="Block"><file name="Abstract.php" hash="50528c12a07bfbfdb94af1b5f0af503a"/><dir name="Catalog"><file name="Abstract.php" hash="fc2c8742e6dde0180ff44cf242261bf5"/><file name="Category.php" hash="979c0d76212f7b09568c0d776b770b5c"/><file name="New.php" hash="7d56b4aca02af98de458ca4c7147e9c2"/><file name="NotifyStock.php" hash="1edd961b29b3153aed312ef0d221734a"/><file name="Review.php" hash="3c9388acf14fcc661346d6913ff47057"/><file name="Salesrule.php" hash="74e881c37e3f5c36a6993a3a69869eb8"/><file name="Special.php" hash="b1832b8d952e2afb107399bd1252c9dd"/><file name="Tag.php" hash="c52e0fadbdf5b727430c74f936c5a1ee"/></dir><file name="List.php" hash="1434c0d830b7bb7748c9c7488043ab92"/><dir name="Order"><file name="Details.php" hash="e880ec360e74edb893a3bcf67fba3636"/><file name="New.php" hash="107bdcaaf769e4a6a605c166760353b7"/><file name="Status.php" hash="140bd7ee626aefefe3bd5f2d1ba0f9a5"/></dir><file name="Wishlist.php" hash="92af1cca70ac67db1da3a7fd67fecf0d"/></dir><dir name="controllers"><file name="CatalogController.php" hash="410911835d9b37623dcf7f3f9ad3ea3d"/><file name="IndexController.php" hash="084239d4f2f2c9656eedcb3c75d66cdc"/><file name="OrderController.php" hash="6c81534459623bfcb506af07d24ee23f"/></dir><dir name="etc"><file name="adminhtml.xml" hash="176e448508c55e5e8f45c19244a65309"/><file name="config.xml" hash="34fe726557fdd5e685acaafadc690d50"/><file name="system.xml" hash="28f0400937db7a7d6e9810e1106b0d21"/></dir><dir name="Helper"><file name="Catalog.php" hash="63ab83f6d08e6be34d9edff713723b75"/><file name="Data.php" hash="4d822391dbcf9eaed06f090485e7c461"/><file name="Order.php" hash="47300184ab5e49559af19340b0e2f586"/></dir><dir name="Model"><dir name="Mysql4"><file name="Order.php" hash="0e8191dd976d40fb38557c7c487199ae"/></dir><file name="Observer.php"