Mage_Core_Modules - Version 1.9.3.6

Version Notes

1.9.3.6

Download this release

Release Info

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


Code changes from version 1.9.3.5 to 1.9.3.6

RELEASE_NOTES.txt CHANGED
@@ -1,3 +1,13 @@
 
 
 
 
 
 
 
 
 
 
1
  ==== 1.9.3.5 ====
2
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1
+ ==== 1.9.3.6 ====
2
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4
+ ] NOTE: Current Release Notes are maintained at: [
5
+ ] [
6
+ ] http://devdocs.magento.com/guides/m1x/ce19-ee114/ce1.9_release-notes.html [
7
+ ] [
8
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
+
11
  ==== 1.9.3.5 ====
12
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
app/Mage.php CHANGED
@@ -171,7 +171,7 @@ final class Mage
171
  'major' => '1',
172
  'minor' => '9',
173
  'revision' => '3',
174
- 'patch' => '5',
175
  'stability' => '',
176
  'number' => '',
177
  );
171
  'major' => '1',
172
  'minor' => '9',
173
  'revision' => '3',
174
+ 'patch' => '6',
175
  'stability' => '',
176
  'number' => '',
177
  );
app/code/core/Mage/Admin/Model/Session.php CHANGED
@@ -76,6 +76,7 @@ class Mage_Admin_Model_Session extends Mage_Core_Model_Session_Abstract
76
  $parameters['factory'] : Mage::getModel('core/factory');
77
 
78
  $this->init('admin');
 
79
  }
80
 
81
  /**
@@ -98,6 +99,21 @@ class Mage_Admin_Model_Session extends Mage_Core_Model_Session_Abstract
98
  return $this;
99
  }
100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  /**
102
  * Try to login user in admin
103
  *
76
  $parameters['factory'] : Mage::getModel('core/factory');
77
 
78
  $this->init('admin');
79
+ $this->logoutIndirect();
80
  }
81
 
82
  /**
99
  return $this;
100
  }
101
 
102
+ /**
103
+ * Logout user if was logged not from admin
104
+ */
105
+ protected function logoutIndirect()
106
+ {
107
+ $user = $this->getUser();
108
+ if ($user) {
109
+ $extraData = $user->getExtra();
110
+ if (isset($extraData['indirect_login']) && $this->getIndirectLogin()) {
111
+ $this->unsetData('user');
112
+ $this->setIndirectLogin(false);
113
+ }
114
+ }
115
+ }
116
+
117
  /**
118
  * Try to login user in admin
119
  *
app/code/core/Mage/Core/Model/Email/Template/Abstract.php CHANGED
@@ -235,8 +235,11 @@ abstract class Mage_Core_Model_Email_Template_Abstract extends Mage_Core_Model_T
235
  '_theme' => $theme,
236
  )
237
  );
 
 
 
238
 
239
- if (is_readable($filePath)) {
240
  return (string) file_get_contents($filePath);
241
  }
242
 
235
  '_theme' => $theme,
236
  )
237
  );
238
+ $filePath = realpath($filePath);
239
+ $positionSkinDirectory = strpos($filePath, Mage::getBaseDir('skin'));
240
+ $validator = new Zend_Validate_File_Extension('css');
241
 
242
+ if ($validator->isValid($filePath) && $positionSkinDirectory !== false && is_readable($filePath)) {
243
  return (string) file_get_contents($filePath);
244
  }
245
 
app/code/core/Mage/Rss/Helper/Data.php CHANGED
@@ -74,7 +74,7 @@ class Mage_Rss_Helper_Data extends Mage_Core_Helper_Abstract
74
  */
75
  public function authAdmin($path)
76
  {
77
- if (!$this->_rssSession->isAdminLoggedIn()) {
78
  list($username, $password) = $this->authValidate();
79
  Mage::getSingleton('adminhtml/url')->setNoSecret(true);
80
  $user = $this->_adminSession->login($username, $password);
@@ -82,6 +82,15 @@ class Mage_Rss_Helper_Data extends Mage_Core_Helper_Abstract
82
  $user = $this->_rssSession->getAdmin();
83
  }
84
  if ($user && $user->getId() && $user->getIsActive() == '1' && $this->_adminSession->isAllowed($path)) {
 
 
 
 
 
 
 
 
 
85
  $this->_rssSession->setAdmin($user);
86
  } else {
87
  $this->authFailed();
74
  */
75
  public function authAdmin($path)
76
  {
77
+ if (!$this->_rssSession->isAdminLoggedIn() || !$this->_adminSession->isLoggedIn()) {
78
  list($username, $password) = $this->authValidate();
79
  Mage::getSingleton('adminhtml/url')->setNoSecret(true);
80
  $user = $this->_adminSession->login($username, $password);
82
  $user = $this->_rssSession->getAdmin();
83
  }
84
  if ($user && $user->getId() && $user->getIsActive() == '1' && $this->_adminSession->isAllowed($path)) {
85
+ $adminUserExtra = $user->getExtra();
86
+ if ($adminUserExtra && !is_array($adminUserExtra)) {
87
+ $adminUserExtra = Mage::helper('core/unserializeArray')->unserialize($user->getExtra());
88
+ }
89
+ if (!isset($adminUserExtra['indirect_login'])) {
90
+ $adminUserExtra = array_merge($adminUserExtra, array('indirect_login' => true));
91
+ $user->saveExtra($adminUserExtra);
92
+ }
93
+ $this->_adminSession->setIndirectLogin(true);
94
  $this->_rssSession->setAdmin($user);
95
  } else {
96
  $this->authFailed();
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Modules</name>
4
- <version>1.9.3.5</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Collection of Magento Core Modules</summary>
10
  <description>Collection of Magento Core Modules</description>
11
- <notes>1.9.3.5</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2017-09-11</date>
14
- <time>10:24:39</time>
15
- <contents><target name="magecore"><dir name="Mage"><dir name="Admin"><dir name="Helper"><file name="Block.php" hash="fc9406e4e5d450b0ccba7be4ee6d50a3"/><file name="Data.php" hash="a6c43f89a20efd9e92c2be27a93cc3e3"/><dir name="Rules"><file name="Fallback.php" hash="3dc0f9c798dfe08f671e598c3a009def"/></dir><file name="Variable.php" hash="6ff535d83f5520c7a9afad9d1f7a6755"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="ded76ff3498fc0c192dd189d782b17c5"/><file name="Time.php" hash="2c63250ffd3ca63c730e26d9f0fbdf15"/></dir><file name="Resource.php" hash="b99a5b94ef2e85d733fa392a3bd647e8"/><dir name="Role"><file name="Generic.php" hash="fc1d1bd002572a5f2b833281d4e99667"/><file name="Group.php" hash="c80eed9b9befcde627f93b51e7e57936"/><file name="Registry.php" hash="cf6e79003fec1617fd3f19c37293ed7e"/><file name="User.php" hash="83720a75323062ad854624804a9d2d95"/></dir><file name="Role.php" hash="b7ce968888213b31986d44b7e75e5c97"/></dir><file name="Acl.php" hash="a32a304e823a5e36d8761bd7cb173acb"/><file name="Block.php" hash="708e1eab4ba9cee992a332d1afcdd874"/><file name="Config.php" hash="47fd4a1fb2d2295a0d9c3aa9c1bcf12d"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="9a69e865e81c8d176b1e84e57508235a"/></dir><file name="Role.php" hash="02d14b5ee98e1a8c2ef029d7cbed238c"/></dir><file name="Acl.php" hash="2fbaad717223ee676be9c37b8585b455"/><dir name="Permissions"><file name="Collection.php" hash="212022edee3a3cf170a8c0b1145eaf39"/></dir><dir name="Role"><file name="Collection.php" hash="cf4ed12d9bc146586bb615048a3fc7fa"/></dir><file name="Role.php" hash="7fc32878ec9b1a12be65b112a774eec8"/><dir name="Roles"><file name="Collection.php" hash="d4138d47da5da51e19ae82deb7adba28"/><dir name="User"><file name="Collection.php" hash="4616e2aebe9ee4bdc79b108b0d3951b5"/></dir></dir><file name="Roles.php" hash="0c949555a69548ea55145cbe45d7ce9d"/><dir name="Rules"><file name="Collection.php" hash="d5178b0cd585089fff8ecddb0fca0ddf"/></dir><file name="Rules.php" hash="d685d777340e9f59ae5dc1ee85984c75"/><dir name="User"><file name="Collection.php" hash="9d22d9068b8debf35cae959ee28b260a"/></dir><file name="User.php" hash="1bc75bf892f2e90062d91b8376f2c6e5"/></dir><file name="Observer.php" hash="f3b6b466e491248aa28f62390521d344"/><file name="Redirectpolicy.php" hash="a18e55aa3e91c663eaaae7a9844d19a8"/><dir name="Resource"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="f5a82c548f999a6ab15246739537b0e5"/></dir><file name="Role.php" hash="90db9c7a37af464ffa0376350ca0f98e"/></dir><file name="Acl.php" hash="5bc169085961faacb2bdfd90fad8b0f6"/><dir name="Block"><file name="Collection.php" hash="09b57d2469bd1f9d3e1df2c982c96d8a"/></dir><file name="Block.php" hash="e7dce67df286791f630227ce01f1fac3"/><dir name="Permissions"><file name="Collection.php" hash="0606346d7fd9ea54ff7140ef7e10bc36"/></dir><dir name="Role"><file name="Collection.php" hash="257d08d826d4d55534913c5090ab4df8"/></dir><file name="Role.php" hash="f3ce8d3c0692b7a33e43098e8fa4a4ff"/><dir name="Roles"><file name="Collection.php" hash="221f559901e5bc884065933eea76d7a1"/><dir name="User"><file name="Collection.php" hash="26440d7f4f66baaec4c5148cbaec818e"/></dir></dir><file name="Roles.php" hash="801c7bb53ed757e8c57407a7b1bc862b"/><dir name="Rules"><file name="Collection.php" hash="32e0a4b8edadab618b7b39cbf22ff697"/></dir><file name="Rules.php" hash="c61019a50aa1252447d7ed59f8c5c1df"/><dir name="User"><file name="Collection.php" hash="3d9f886df76754805b94a29091b11c83"/></dir><file name="User.php" hash="c1586e5a686024a9edf492ab9a200cb4"/><dir name="Variable"><file name="Collection.php" hash="0ee23e1cd9bdcec329fe2af32423c893"/></dir><file name="Variable.php" hash="cc16e609989526347d4f70b10dd5f634"/></dir><file name="Role.php" hash="5251a93d9f20f0f7cc2c10c7f14bd3ec"/><file name="Roles.php" hash="5e76a1b167f030d8b88c19ae5fe8978e"/><file name="Rules.php" hash="ec7808b6b1acffcd76d17c1e106d577d"/><file name="Session.php" hash="0eece016c135b232aef3ed62671bd1ae"/><file name="User.php" hash="ea3ba64b0b81cb13c0d2183d7ee0a64f"/><file name="Variable.php" hash="98c8189798ceed425824d017f8418be7"/></dir><dir name="data"><dir name="admin_setup"><file name="data-install-1.6.0.0.php" hash="f50a871df4a94324acd968b3c1933522"/></dir></dir><dir name="etc"><file name="config.xml" hash="89b76dff351e6df6948c30e151c997c2"/></dir><dir name="sql"><dir name="admin_setup"><file name="install-1.6.0.0.php" hash="00c112830080d76276a7c5310107ddfb"/><file name="mysql4-install-0.7.0.php" hash="dc470a5aaaf075843c29628b3eed5327"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="bc077be88dfd6c970057e1e26b15c1fc"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="25b5ab2f3f9e5c9bf958845b87366f04"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="462eb00e4441dcb08a1201ee8abd1880"/><file name="upgrade-1.6.0.0-1.6.1.0.php" hash="0a9b07df924be58089dcfcb8e4d9ee42"/><file name="upgrade-1.6.1.0-1.6.1.1.php" hash="17db9a98c18624b59150109dd4cdbeaa"/><file name="upgrade-1.6.1.1-1.6.1.2.php" hash="75404fbe2a27fdb4df3d77df33b1280d"/></dir></dir></dir><dir name="AdminNotification"><dir name="Helper"><file name="Data.php" hash="bd590a85487782928dfe674763d27070"/></dir><dir name="Model"><file name="Feed.php" hash="92b7d93c19996fae7c3fba2d13f8baca"/><file name="Inbox.php" hash="090fe8681899f877159b761bda7bd305"/><dir name="Mysql4"><dir name="Inbox"><file name="Collection.php" hash="0b5056c27aa25de767eb3bd9055fe897"/></dir><file name="Inbox.php" hash="e926f7bc2fc0fe44d8096c9b220f6f9a"/></dir><file name="Observer.php" hash="e4a20f795cbc414293c416da202119c7"/><dir name="Resource"><dir name="Inbox"><file name="Collection.php" hash="686c80050f1896682576f3e45f24e26b"/></dir><file name="Inbox.php" hash="836e37f8c496d2bf622417e167f67f8e"/></dir><file name="Survey.php" hash="2ad8449db6ceb319ecede707c96be562"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9cbb991fe21fc6c2720dff95229da9b8"/><file name="config.xml" hash="eb0f7d1373fb7ec7709da494b37c5e26"/><file name="system.xml" hash="92111ebc634d3aa69d3a55a869f401f1"/></dir><dir name="sql"><dir name="adminnotification_setup"><file name="install-1.6.0.0.php" hash="1785ca811fee5690a189fed2e15617a1"/><file name="mysql4-install-1.0.0.php" hash="3577eca55b2579419260f4329cb479c0"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f6204039951fe45ce282453174acf950"/></dir></dir></dir><dir name="Api"><dir name="Controller"><file name="Action.php" hash="8eae18bf49937bc352fa109fcfa9164b"/></dir><file name="Exception.php" hash="beeac69f73309d3aaf365a064302f4f8"/><dir name="Helper"><file name="Data.php" hash="e8b56cf30af9254605f563c2f89a73f7"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="ebf90b0aefb69dd8ebb109f664744363"/><file name="Time.php" hash="62d812f342f377b4b019b28dcb75b424"/></dir><file name="Resource.php" hash="cb83f690dd3472cded226f56da5ce54f"/><dir name="Role"><file name="Generic.php" hash="8fc92bbd49be9a2378eb359a13442d5e"/><file name="Group.php" hash="c7eca57f928aecaa5cba000b9a1264d3"/><file name="Registry.php" hash="a27fcb1b92b0da41fd0bcf13ee925400"/><file name="User.php" hash="c3049730b73d4a3e84f545ff17f85519"/></dir><file name="Role.php" hash="bc9ba365f612a6b7bc48a66816be011a"/></dir><file name="Acl.php" hash="ba73d77c7f953b5a72f0e4b0527c7154"/><file name="Config.php" hash="5ce9e154c854780e2dd8104155879446"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="a9921a520e05f2d345773e65cfa03dc7"/></dir><file name="Role.php" hash="4509bdda9d8ac9339eb8d02868eae0b5"/></dir><file name="Acl.php" hash="439950f5c12344c8d34c3066e18f444e"/><dir name="Permissions"><file name="Collection.php" hash="38af81c9cec452ab4956fa7bda0c16c9"/></dir><dir name="Role"><file name="Collection.php" hash="8dcdbf0f692f95d435c36092e80da970"/></dir><file name="Role.php" hash="5d33c90f347a6e438c60caff40e7824b"/><dir name="Roles"><file name="Collection.php" hash="854ab80ff43de3c4bfa7d17047ace943"/><dir name="User"><file name="Collection.php" hash="07bb38aa64dfd091f80059d6280981da"/></dir></dir><file name="Roles.php" hash="4224cd1579f999c5a852b5c20906d811"/><dir name="Rules"><file name="Collection.php" hash="09741aa26ce7ef264f29b9a55593b837"/></dir><file name="Rules.php" hash="475cc0456c894b38ef1722688253d743"/><dir name="User"><file name="Collection.php" hash="2039516d6044e778546d7494c4f99398"/></dir><file name="User.php" hash="ed0b55b77ecffca7ebb3766d63c56e1e"/></dir><dir name="Resource"><file name="Abstract.php" hash="22397aedfa332ea9a3da9e846dbd4e95"/><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="835d25a49b720d9182d29233ae0779dd"/></dir><file name="Role.php" hash="a899e007d3297c54e3c83ddf62349f2e"/></dir><file name="Acl.php" hash="e274714b973121e96bd336c11236530a"/><dir name="Permissions"><file name="Collection.php" hash="bf6ca3bb951233a3e5ba2dd3565d274e"/></dir><dir name="Role"><file name="Collection.php" hash="ab544aa0abfc82602a76300fceff8830"/></dir><file name="Role.php" hash="b0b60f8a0db7340ef2cd01a144e4c8dc"/><dir name="Roles"><file name="Collection.php" hash="0562cc4b904064d0874582840cde5ecf"/><dir name="User"><file name="Collection.php" hash="89118032d3c8689b1220e41b28b5db00"/></dir></dir><file name="Roles.php" hash="3b3b832a06432a974dbebdcb2b769f8d"/><dir name="Rules"><file name="Collection.php" hash="f967bd6a57ea518f9a0aba65cb32bac4"/></dir><file name="Rules.php" hash="5ed1ac0109987861fb21b8633a226a1f"/><dir name="User"><file name="Collection.php" hash="43ff9de34ee295805a0c06f6bcda7bd4"/></dir><file name="User.php" hash="032c39b1ee1f0650b7097e606b27fa64"/></dir><file name="Role.php" hash="cc7fdd93aa4e37ea010774efc252c967"/><file name="Roles.php" hash="8ab7dfe1f8857a6910bec01ff71b8d1b"/><file name="Rules.php" hash="e8da177d32c3ac93fec6b2a19d0bc0f7"/><dir name="Server"><dir name="Adapter"><file name="Interface.php" hash="800a274a8b863c0560843db4ba5d555b"/><file name="Soap.php" hash="613a2076212d67de80eccc81a11a48ec"/><file name="Xmlrpc.php" hash="bb149d23bbe1b59be53092929d30de99"/></dir><dir name="Handler"><file name="Abstract.php" hash="3d41c03538099e284f12ddc1f695a941"/></dir><file name="Handler.php" hash="dd733c5750a1f21af24d95484a59a093"/><dir name="V2"><dir name="Adapter"><file name="Soap.php" hash="e927bfdf73187bbdd4b5284648c07dea"/></dir><file name="Handler.php" hash="eafef8e030d93d204bf7c150c99b837e"/></dir><dir name="Wsi"><dir name="Adapter"><file name="Soap.php" hash="68e194bcaee81c4abfd95f4e54032d3e"/></dir><file name="Handler.php" hash="38488ffbbda09cc527d02f2f69b73b3b"/></dir></dir><file name="Server.php" hash="c03e87b65b11be2638a4b7f1daae3db0"/><file name="Session.php" hash="951329e93b7cc71e13fc637c3891fae2"/><file name="User.php" hash="ae483254dc1534d5df115e7bdd0fc9f4"/><dir name="Wsdl"><dir name="Config"><file name="Base.php" hash="a9cc5f765d9ec94a530151d6ec8c7635"/><file name="Element.php" hash="105ac2cdf984b13d8ca64ae36fa60b9e"/></dir><file name="Config.php" hash="40f5682fa2fe23305d09a6b9f1699ae7"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="bfccc20ab54f37b1cfa70c96a90e68f4"/><file name="SoapController.php" hash="11678e8e6d34b382311819ff669b498c"/><dir name="V2"><file name="SoapController.php" hash="5c1a0c3534911a21cf33a392ccb8798e"/></dir><file name="XmlrpcController.php" hash="f7708538e557e952829222cff4890c08"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0f414c6580d7ae9eff5a449deb528d3c"/><file name="api.xml" hash="bf1537205ddd24ba9784cd854dd18094"/><file name="config.xml" hash="cd73f5cccdb88edb768720d011981f4d"/><file name="system.xml" hash="4f2083e918ceecb09645f6c6ed3ad15d"/><file name="wsdl.xml" hash="f0db676b04733b38f310355bb44bc3cb"/><file name="wsdl2.xml" hash="7d527421ba4b63a8a812ab6b1095891d"/><file name="wsi.xml" hash="9fb1700cf935a26e7fada90a07fae7fe"/></dir><dir name="sql"><dir name="api_setup"><file name="install-1.6.0.0.php" hash="2bae0a3fc3930b11d55fbfe2d489e1b6"/><file name="mysql4-install-0.7.0.php" hash="015156d26e7c05d5c5a637cbf68620c0"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="b21139aff5282e48f98b419f5c570e3d"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="bdda04aa78ce943c82c94724b998271f"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="c8e2e80d774eb440239225dbcef96c4e"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="62eb2721729074e2b7a43f35cab7b7de"/></dir></dir></dir><dir name="Api2"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><file name="Buttons.php" hash="1b9bcdfebc364299af0c7078ab751c48"/><dir name="Edit"><file name="Form.php" hash="d9ac23a6d8413c235cbbcd7f82e940ba"/></dir><file name="Edit.php" hash="ccf332000c89c49b5e6ebac127d357a7"/><file name="Grid.php" hash="fdb7ac85139f14d1c0e32741a3d93451"/><dir name="Tab"><file name="Resource.php" hash="2eabfb8ee0f168004eecf455765ba1b6"/></dir><file name="Tabs.php" hash="c4684f3860b8af2fef44b7663d8039d4"/></dir><file name="Attribute.php" hash="f4caa246d34060369520f73f423e6805"/><dir name="Permissions"><dir name="User"><dir name="Edit"><dir name="Tab"><file name="Roles.php" hash="3290aeda296fe96a760a58282499c43f"/></dir></dir></dir></dir><dir name="Roles"><file name="Buttons.php" hash="9a54faec0a04c0b4610c0354482d2200"/><file name="Grid.php" hash="8ec7abeb327153bb47f2f884938ad6ab"/><dir name="Tab"><file name="Info.php" hash="27539ce483d86ebe3442bc37a710bda7"/><file name="Resources.php" hash="fb66bfa2ea53f3e88dc87acb2eb8024d"/><file name="Users.php" hash="6f172d82960457dfc544c86fa0630028"/></dir><file name="Tabs.php" hash="ad3c6ecb92f0db4ddda996b16fefe623"/></dir><file name="Roles.php" hash="0e8cfad6bffff2285c95083dd402b437"/></dir></dir><file name="Exception.php" hash="a55c045ff8cecc6bebd8ab9ce7779e2d"/><dir name="Helper"><file name="Data.php" hash="10483db0d3c9b0275e93569015e6c319"/></dir><dir name="Model"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Operation.php" hash="b48faab54b6334af5a04bb17da4e5687"/><file name="ResourcePermission.php" hash="68807d76938a3bfb9638dfdce23c149f"/></dir><file name="Attribute.php" hash="0bd96f1ca4d2122b0ce3a91cbbfa14d5"/></dir><file name="Filter.php" hash="a1636920a5e1f1f4ea1959a07892a542"/><dir name="Global"><file name="Role.php" hash="43686dcf5d4fe9aa743c0afa19f1dcb5"/><dir name="Rule"><file name="Permission.php" hash="268336c700ba20fa054233b38943b726"/><file name="Privilege.php" hash="df6d5b32641524535923d5761a83c0fb"/><file name="ResourcePermission.php" hash="27406834c99eac33d4216287549f4d12"/><file name="Tree.php" hash="4a420b4632629c531526af7a2b94bf24"/></dir><file name="Rule.php" hash="890512ab88b6900b74d361f42e176292"/></dir><file name="Global.php" hash="de3d338b73a67818f894f491b1c84754"/><file name="PermissionInterface.php" hash="cce052a0f65476b7c7cfaabc969547ae"/></dir><file name="Acl.php" hash="8154896afe5cd7f378c0a4d50c7d52c7"/><dir name="Auth"><dir name="Adapter"><file name="Abstract.php" hash="fbe61bb52fc2521b64a18013e47e010c"/><file name="Oauth.php" hash="d2081e3bc882ca00cab7568122223c69"/></dir><file name="Adapter.php" hash="f7808cc676fcc26725a3b900258fde92"/><dir name="User"><file name="Abstract.php" hash="10a8b2a03c9c33d244c687f41e61def4"/><file name="Admin.php" hash="0f986691e38f7913179577d68c5fab76"/><file name="Customer.php" hash="e20c4c751a64e0e35ab710eb4069226f"/><file name="Guest.php" hash="d4dcf710f41003724ac4f14e17901ef7"/></dir><file name="User.php" hash="b1c4f2c4a8345953dc8eb4723c5a5acf"/></dir><file name="Auth.php" hash="afb7067e6ecc6c0374522e83f9caa6bc"/><file name="Config.php" hash="82bd84a128f1afdb44d482955fcd7e5b"/><file name="Dispatcher.php" hash="f358e9f02cd586d10c809f4039c14624"/><file name="Multicall.php" hash="c456ce8e2d2cbeaf8290d0b34b1d6d03"/><file name="Observer.php" hash="1677a697268fad91e6ebfd50ee6918d2"/><dir name="Renderer"><file name="Interface.php" hash="7bd87d5039ed7a7cee84f7231b6168b4"/><file name="Json.php" hash="a97910792175479114d35346c5fc6f75"/><file name="Query.php" hash="6aade6aac8ecb68285bcf621e0e2d8dd"/><dir name="Xml"><file name="Writer.php" hash="0438c9067344bc863a8f1c0cbdf13ef5"/></dir><file name="Xml.php" hash="0f30ab156c80dfb0d7e2cfb753074898"/></dir><file name="Renderer.php" hash="99279e5f8a3f4e5c77ddb97d080e5fbf"/><dir name="Request"><file name="Internal.php" hash="8017bdbc40b8160db76ba0f72b132131"/><dir name="Interpreter"><file name="Interface.php" hash="aa7dfc6ff222408c564c670c1d16924f"/><file name="Json.php" hash="01f05271b735e2729566ea2badd5859d"/><file name="Query.php" hash="937bfbba0cd21cdaca56fdea1c166978"/><file name="Xml.php" hash="6f7f2b54747b4e1539eafe8318ace83d"/></dir><file name="Interpreter.php" hash="def4d7d7709f3c15db49e57ca5cc07a6"/></dir><file name="Request.php" hash="6724228511aa074f490156c978302b5b"/><dir name="Resource"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Collection.php" hash="9f894373cca8cf943ab421cb4e6787a2"/></dir><file name="Attribute.php" hash="f227348c363d2fd38cc4d0fdc695bedc"/></dir><dir name="Global"><dir name="Role"><file name="Collection.php" hash="913c62f9acb699b6b7999853dc9f3f90"/></dir><file name="Role.php" hash="b2ef494e23cf830e34dbd3859b7a04a9"/><dir name="Rule"><file name="Collection.php" hash="7ca6ed8648ffba1799893889dc89bc2d"/></dir><file name="Rule.php" hash="aab2f188e6599e9f9530cf2bb9d4a673"/></dir></dir><file name="Setup.php" hash="ad149fd2785b454ea57c98ff44dd8b9b"/><dir name="Validator"><file name="Eav.php" hash="c46738a8eef5783ec7327c8e76635861"/><file name="Fields.php" hash="94e0364fd4b2b6d3faf0ad73a87c13cf"/></dir><file name="Validator.php" hash="92d8df3a0aed050e58f098cf1470c082"/></dir><file name="Resource.php" hash="04cfe07317997f3aeceee70a88c80306"/><file name="Response.php" hash="cba438bd1dd193e4b095529ce38f9e02"/><dir name="Route"><file name="Abstract.php" hash="67058462289b730b0c36382a5536c043"/><file name="ApiType.php" hash="50595c51d6c65f65cb1156123b492e38"/><file name="Interface.php" hash="51626e9684024017d8c379fce6bc582e"/><file name="Rest.php" hash="3b7699a2c64576736301c3bac9b24a06"/></dir><file name="Router.php" hash="8e088217f284dbb366dcf9595eb55365"/><file name="Server.php" hash="ae9bf395067ffd8ed05b8a5507beb635"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Api2"><file name="AttributeController.php" hash="fef5aa81e318dfa9a460342b8d368bd0"/><file name="RoleController.php" hash="f68e1665c2c6e4ca21e485e357d4dbd4"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="83ae8c20132da7011248496fc40473f0"/><file name="config.xml" hash="8fa6f842a6d280c6a28cc864c3c70d96"/></dir><dir name="sql"><dir name="api2_setup"><file name="install-1.0.0.0.php" hash="ddf66259b1db24891b8f1d984bfafa3b"/></dir></dir></dir><dir name="Authorizenet"><dir name="Block"><dir name="Directpost"><file name="Form.php" hash="75e7e4c65c61260e849a4da8a7af4238"/><file name="Iframe.php" hash="540441b535ac070c67fff9a044c435d3"/></dir></dir><dir name="Helper"><file name="Admin.php" hash="411c905dafb94973a7d0de1bd8435aea"/><file name="Data.php" hash="7c04786ac6b95da75a27fa69fa5c7f6d"/></dir><dir name="Model"><dir name="Directpost"><file name="Observer.php" hash="72fc30f445d124f2c75c4bc77695c29a"/><file name="Request.php" hash="1b26513747e23b790b01a7078dde25b7"/><file name="Response.php" hash="e242989709cda24d61f48b1a2a71ccf2"/><file name="Session.php" hash="c706eb1929437013cab16fba09e1809e"/></dir><file name="Directpost.php" hash="ad5e5b29e6e066d34ef63a65b0c96028"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Authorizenet"><dir name="Directpost"><file name="PaymentController.php" hash="2c02a7f65c94e89368ae488cff44dc1e"/></dir></dir></dir><dir name="Directpost"><file name="PaymentController.php" hash="b3241f0dcf7eaaad4930eff82ea36400"/></dir></dir><dir name="etc"><file name="config.xml" hash="2fc03026b1b7a23613747661bd0d9801"/><file name="system.xml" hash="89cb6c3d0e2f2c0664103b5c3592c62c"/></dir></dir><dir name="Backup"><file name="Exception.php" hash="1f942a9a52f0ff865b440a916df8c83b"/><dir name="Helper"><file name="Data.php" hash="87e51d410b55c587e8e833740d64cd31"/></dir><dir name="Model"><file name="Backup.php" hash="ee09e3fac060713ac536234eba624ccf"/><dir name="Config"><dir name="Backend"><file name="Cron.php" hash="30939f86821031f63c7727c7883e6379"/></dir><dir name="Source"><file name="Type.php" hash="73baa69d6626924d0c6c979aa6a64733"/></dir></dir><file name="Db.php" hash="fdd7b998421b580f23815c78b2a5bd30"/><dir name="Fs"><file name="Collection.php" hash="9f61afd0196969728a2f3dc21b6b2375"/></dir><dir name="Mysql4"><file name="Db.php" hash="81b8608e609a5fc9c611332c68bcc880"/></dir><file name="Observer.php" hash="16b5b74b4d1360d6e2e0b4117bcb69be"/><dir name="Resource"><file name="Db.php" hash="c3edb526409cc320cdf83d661eddf928"/><dir name="Helper"><file name="Mysql4.php" hash="818aa9080dce5c7d397c51804a03eef1"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="a5060f0d34521ec43e3a716b4a17d5fb"/><file name="config.xml" hash="c2468b3d36bb950fe8da24f4f1765f6e"/><file name="system.xml" hash="22cb1e2b2f12003a0c7c270e680f8733"/></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="cd593c8e2255f21d4a6e1f24affeef47"/><dir name="Options"><dir name="Type"><file name="Checkbox.php" hash="d24ab15d2ea27088c509c57768c2f238"/><file name="Multi.php" hash="610e219a089c91737755552253af5c48"/><file name="Radio.php" hash="a4beaab229cf84d7abe749128cef9fc2"/><file name="Select.php" hash="3576351effe06c099b285e51d7c6a3f6"/></dir></dir></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Attributes"><file name="Extend.php" hash="fc15c5b424ef7a8983abe1725e6fac23"/><file name="Special.php" hash="2257193e422c8ae7e64a8a7ae985536b"/></dir><file name="Attributes.php" hash="265124738de45769123f08dcdcd62c47"/><dir name="Bundle"><dir name="Option"><dir name="Search"><file name="Grid.php" hash="da63972faf449268f415f54b5df69ac0"/></dir><file name="Search.php" hash="4a56ab6ce4f10b39d227930068348e19"/><file name="Selection.php" hash="6c2b98371fc791c65b012e879f088226"/></dir><file name="Option.php" hash="5162c83912a50eb5a7b717a3e9da40d4"/></dir><file name="Bundle.php" hash="eb4175630820ec7f5473773858074740"/></dir><file name="Tabs.php" hash="6e35293d42b409d5d864c85432342983"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="44b7487fafc6f908430f6ecbeb312c80"/></dir><dir name="View"><dir name="Items"><file name="Renderer.php" hash="3112b959c8471e82cb0c4e1eee3eb202"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="List"><file name="Partof.php" hash="1778cb68c6026c08593c8b3ab0a88839"/></dir><file name="Price.php" hash="d3d0ccded43da23f4fadb7903023b0de"/><dir name="View"><dir name="Type"><dir name="Bundle"><dir name="Option"><file name="Checkbox.php" hash="2329e76d299a29e415fae109a3941aaa"/><file name="Multi.php" hash="f973c7df857b1bae6403306e0f2372e4"/><file name="Radio.php" hash="a06492319db83e61c83854c6ef39d2e0"/><file name="Select.php" hash="f0dd77f6afe3d8f88aaf4fad7e745bd9"/></dir><file name="Option.php" hash="2e605d579abbc4890f41f03ee4aeb57a"/></dir><file name="Bundle.php" hash="4005c2275c076a2764b8e35f67cf5ac4"/></dir></dir><file name="View.php" hash="e69335474948d8d25258283ab2bc883f"/></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="73b29ad011a354df5390f1a1a9ea5e20"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="80b6fd6245b8c55c86aa78b562c365cf"/></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="9ee0fa044f2740a3ad77597031e59d3f"/></dir></dir><file name="Data.php" hash="0ec8ac8633c3a767b53a0610065aaa3a"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Bundle.php" hash="5cd85b485a0f5132ee69b03daf474b92"/></dir></dir><dir name="Mysql4"><file name="Bundle.php" hash="d52b54d65e70385858d91a244acf1ecc"/><dir name="Indexer"><file name="Price.php" hash="3379a033895b3f99b43f17af27e1ba0c"/><file name="Stock.php" hash="bdbe0e28f11895e105580bb205a84ea2"/></dir><dir name="Option"><file name="Collection.php" hash="a302f6fbfb5fe7032238a28bc82995d9"/></dir><file name="Option.php" hash="baad3f6dbb23eb1ce2a0db63ffdf6035"/><dir name="Price"><file name="Index.php" hash="1c530eb13ce135c377c27aa81e841475"/></dir><dir name="Selection"><file name="Collection.php" hash="9c9def473a87f2fb212cac2f4399f880"/></dir><file name="Selection.php" hash="cc296820a2007c26b213d0d0ea0c5ae7"/></dir><file name="Observer.php" hash="b6e1eccd913ed6696b77f81b0ca79288"/><file name="Option.php" hash="50e693abeb90bea25cbbe5388b4673aa"/><dir name="Price"><file name="Index.php" hash="e993a2706b650f0fbcef11f979e37d39"/></dir><dir name="Product"><dir name="Attribute"><dir name="Source"><dir name="Price"><file name="View.php" hash="5c072a31d8bff30e4a87f949ad42e899"/></dir></dir></dir><file name="Price.php" hash="37c2ad14a79a706677af48cd7ec4ce0b"/><file name="Type.php" hash="43aa001de527badf6743d3412ab7be10"/></dir><dir name="Resource"><file name="Bundle.php" hash="cfc837ea70ef498207f2261f02fbc2a8"/><dir name="Indexer"><file name="Price.php" hash="f9d9061cabaa26ae6fd34b9eb5f3220d"/><file name="Stock.php" hash="cfeaf43a857a43a9bc32fab5f6080039"/></dir><dir name="Option"><file name="Collection.php" hash="9d8e78bbf3bcd2ebdbf58c8c7ef6b14b"/></dir><file name="Option.php" hash="40a96b6d66bb388fd1784611d5b3aa05"/><dir name="Price"><file name="Index.php" hash="8b0361d4d7c50c0d7f11e0efd97c41e1"/></dir><dir name="Selection"><file name="Collection.php" hash="ec2009b87db727ec1d9937fa9835a8f6"/></dir><file name="Selection.php" hash="cbfc1bdb13b582872ba97c3894eef091"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="25d6fd1a2f5b4b3a637e7fb1208ee64b"/><file name="Creditmemo.php" hash="1c3540eb640a361de69b008e047998b5"/><file name="Invoice.php" hash="0a2d19567f3a710990a141f6758acda7"/><file name="Shipment.php" hash="320e53f669ff0a169f9679f7171dadc5"/></dir></dir></dir></dir><file name="Selection.php" hash="12ad67719d608b56265be0af3b2f46d9"/><dir name="Source"><dir name="Option"><dir name="Selection"><dir name="Price"><file name="Type.php" hash="ac37ee3ffdb2bf053d5f31ec621e6b35"/></dir></dir><file name="Type.php" hash="6534383517de02ff16461568f9c379ef"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Bundle"><dir name="Product"><file name="EditController.php" hash="ce2d799c18e9484bb12a31d0bc5fff2e"/></dir><file name="SelectionController.php" hash="ef7b3daa4573e81f60ca0629741697df"/></dir></dir><dir name="Product"><file name="EditController.php" hash="aed77668fe0b0430a65f1289efbb5aae"/></dir><file name="SelectionController.php" hash="6b5c8902e9e811fb63510693fc5a081e"/></dir><dir name="data"><dir name="bundle_setup"><file name="data-install-1.6.0.0.php" hash="f3c3079daf3cb6b95f68c3466562d3f4"/></dir></dir><dir name="etc"><file name="config.xml" hash="e8cea33aa27a575e4534dcd2a633edf3"/></dir><dir name="sql"><dir name="bundle_setup"><file name="install-1.6.0.0.php" hash="90f8c6a17ff6ec15857f4a276fff7477"/><file name="mysql4-data-upgrade-0.1.13-0.1.14.php" hash="1bc13ef4b3cd253e99b219c26910a24d"/><file name="mysql4-install-0.1.0.php" hash="21847c188a6aa462b86afa910f246105"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="22823517232aaeed3ddb84ec0647b7fd"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="b5ffa479a921d5408bbbd8fbfe85c5fd"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="5e836815096f4a49c1258b83aa1d6a2e"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="038e97796a07cda6840da7896c43bc67"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="b59a588528757865104bf5fc060293e4"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="6ebfd2367677899dfc3e831eb4115ba0"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="de930e7970de52a8f1aa8f554fa911b2"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="c81c7a94c41063e0d766a41f28bfe222"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="98195ecca6e6ab7b968f1a68b415650f"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="21cc9a3e92feac9cd9ab5f4db928f9cb"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="11c2093919105b8a9eae083d020a4f62"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="b5d9ff76f02e5066f7efcad4ed74fcf9"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="e689dc74d43e348191ba176c3b6a3c4b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="a6cc8836b1ffa6ca971bf37c1b7f7526"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="a2d3b86eded1313eabba5c5148ba72eb"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="1cc0e710681344551dab0868113bdc14"/></dir></dir></dir><dir name="Captcha"><dir name="Block"><dir name="Captcha"><file name="Zend.php" hash="2fb2c164ef32326cfcaa1be55b58f240"/></dir><file name="Captcha.php" hash="542db23d4fea0b901cde927f22cef83b"/></dir><dir name="Helper"><file name="Data.php" hash="8b278cbcbbfa2d9ff78088a93538ddd1"/></dir><dir name="Model"><dir name="Config"><file name="Font.php" hash="8d31e549caaa17d1c92c9e9694219adf"/><dir name="Form"><file name="Abstract.php" hash="21724d77a364c1661f08cbcd64d211bf"/><file name="Backend.php" hash="f1a6e486a6a086d7b839a85b6d592e67"/><file name="Frontend.php" hash="ae8cf660598d5d1e6ee2c5d94923153b"/></dir><file name="Mode.php" hash="de41cabe16162b93b206883cfb5fff21"/></dir><file name="Interface.php" hash="d917a8cdc18ffcaa6e36bc8d28901249"/><file name="Observer.php" hash="8cfb1191f761f7117f102d3d739e2376"/><dir name="Resource"><file name="Log.php" hash="be9c96cbdeb881d78409f8bf475be158"/></dir><file name="Zend.php" hash="988432933b9f87130452481d6f2057a4"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="RefreshController.php" hash="8402b4a42693a59586f0ce98b377baa8"/></dir><file name="RefreshController.php" hash="ff14aa3142bf84cb7a55cafb47e82136"/></dir><dir name="etc"><file name="config.xml" hash="1891c6c970727da23fa093748435b222"/><file name="system.xml" hash="97e0181bb11001fd8f01b8f57d014802"/></dir><dir name="sql"><dir name="captcha_setup"><file name="install-1.7.0.0.0.php" hash="db60d60c22cc34d2c19cd507e05d2364"/></dir></dir></dir><dir name="Catalog"><dir name="Block"><file name="Breadcrumbs.php" hash="590216e74f468b996b23103e3cbb5898"/><dir name="Category"><file name="View.php" hash="3f75997e41e18426aa5775d9b5e17cc0"/><dir name="Widget"><file name="Link.php" hash="61588c7b5de8f9e2fe173c0422de1ca5"/></dir></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="dabc76c7b6a5337ffb4081183bba93f9"/><file name="Attribute.php" hash="bdbb158565be14eb690ec3f21280037a"/><file name="Category.php" hash="6b715d3c627de8b8570381c8c310e30b"/><file name="Decimal.php" hash="66f22705d1d63675358b4fe3ab8a72bf"/><file name="Price.php" hash="f9b08d925c9e826e7d5bff851df95789"/></dir><file name="State.php" hash="18195c0156a6594ca83ffb7e9b685b91"/><file name="View.php" hash="6286b8c4c367300904726b9b542f1ea7"/></dir><file name="Navigation.php" hash="9e68d435ff4a0a24b4e22c5a1eea2213"/><dir name="Product"><file name="Abstract.php" hash="bc42721bba24acc1f78b307ddb22c672"/><dir name="Compare"><file name="Abstract.php" hash="9b265819667504006f13fd90fd62f1dd"/><file name="List.php" hash="2766dc228e03abea253655d841a8774c"/><file name="Sidebar.php" hash="31de2e5cababa8ce9fcc98d00c1f935a"/></dir><file name="Gallery.php" hash="85ca013573a07955dd7848e72c46f193"/><dir name="List"><file name="Crosssell.php" hash="8cbaf3f6bf390342bde5408a0ebd0066"/><file name="Promotion.php" hash="ef01df208b62d4879484729229fb1b10"/><file name="Random.php" hash="baa11555bd8975b36de714e13b26dbf9"/><file name="Related.php" hash="48a13b6255686a1c1776867216a54bae"/><file name="Toolbar.php" hash="e4ca2cb14578611e3257c0791f6d58d8"/><file name="Upsell.php" hash="6f18bfff7f19e36571b6812719c28a23"/></dir><file name="List.php" hash="cda8d30d6bb082b9e7a7f8dfe91bb531"/><file name="New.php" hash="b3c2fa1af3a6f785cc7c005873a10e6f"/><dir name="Price"><file name="Template.php" hash="820470d3e9125ee8fa563499ef9b01a5"/></dir><file name="Price.php" hash="0b03f4230e4685a3213cfe9a49c02fe7"/><file name="Send.php" hash="dfc2fad446a329b25bad6750d4cb618b"/><dir name="View"><file name="Abstract.php" hash="44f15a9450ca5a16b6edc17b5ee36752"/><file name="Additional.php" hash="7918b4ac8dff3c465e3067d94aaab219"/><file name="Attributes.php" hash="c7f5dee9dd8102402470a087506a7852"/><file name="Description.php" hash="a55d0c62bc110c03436d0c02cfe1db7c"/><file name="Media.php" hash="1aadfa2c44743b00dd833af77e7a6b23"/><dir name="Options"><file name="Abstract.php" hash="623a56fdffa18ebbcf72680b904580e1"/><dir name="Type"><file name="Date.php" hash="72f30b8bc4421c516d4469a26e43b245"/><file name="Default.php" hash="342b6fa6a59fc0be30b4a6d6550fae67"/><file name="File.php" hash="181cd40d9ed923d30daebb5f065ab946"/><file name="Select.php" hash="b9a54f7ad04fd173e56c41498325db76"/><file name="Text.php" hash="adafa4d6f6768a19b4cfeea45a16db46"/></dir></dir><file name="Options.php" hash="d0cd98ca39a9b8d96fd4912df65faaf0"/><file name="Price.php" hash="6061772097dcba48f6328c05802e3de1"/><file name="Tabs.php" hash="d8c2f0c2b2ad72d85cde348fb00b056a"/><dir name="Type"><file name="Configurable.php" hash="752de8b6cf521d8ad2e60145a4aed804"/><file name="Grouped.php" hash="2161a67c91946fbdcb76074b69b68c06"/><file name="Simple.php" hash="ca2698220266f726d18c27715c548e1a"/><file name="Virtual.php" hash="fc158a9f43dd999b54e54eeeb238067a"/></dir></dir><file name="View.php" hash="e5a55c0c94feec2ae2b6bd66705a6f2f"/><dir name="Widget"><dir name="Html"><file name="Pager.php" hash="06b6d64612571c9819751488bc8191a7"/></dir><file name="Link.php" hash="487801acc24afa5558ca10107542b64f"/><file name="New.php" hash="f70bec1892f85bb842a5c02f92477a46"/></dir></dir><file name="Product.php" hash="3d318c0eab4d73a3addf4c5d65d15197"/><dir name="Seo"><dir name="Sitemap"><file name="Abstract.php" hash="6f3d87b6d9c893a4026b5d2fadef5f6b"/><file name="Category.php" hash="74df2513c60d70111f62b7a6def6202b"/><file name="Product.php" hash="e2c33ff91f2d8455b281191dbef4eea7"/><dir name="Tree"><file name="Category.php" hash="ecacf6175a990852e86deb58acacf3cd"/><file name="Pager.php" hash="ffca909fd74ad69e960861dc784fd1a3"/></dir></dir></dir><dir name="Widget"><file name="Link.php" hash="07364d660d3a2f4d8aaa1f44ed35989e"/></dir></dir><file name="Exception.php" hash="04da7e91bac0ab04f4df2d686f93f7c7"/><dir name="Helper"><dir name="Category"><file name="Flat.php" hash="f58f696cc8b23ec182a96f3b63a11b15"/><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="4af35a3cf0cafdf549b7f9e24549c1ab"/></dir><file name="Rewrite.php" hash="2ec106e7b6ff3cb7654370063acf353d"/></dir></dir><file name="Category.php" hash="7426190d4dfdcb312ac9bedc26c7bfa9"/><file name="Data.php" hash="5e30bfb43c4d719977b8f5124a9676d9"/><dir name="Flat"><file name="Abstract.php" hash="4c41110b9ba744fc7abf1e819337b8ca"/></dir><file name="Image.php" hash="72e49b7e956f6fff2cc415472613918b"/><file name="Map.php" hash="e6f0006916df636fc0c1198f37548cd4"/><file name="Output.php" hash="a6d3849fbdfc5d8e4cc5ee77172982c2"/><dir name="Product"><file name="Compare.php" hash="198c32edb6b08fccd0215f36ddb1853f"/><dir name="Configuration"><file name="Interface.php" hash="e9e9babb46ad34d0ea592f3b4eb360db"/></dir><file name="Configuration.php" hash="9fcdf7710d12a67093b41f9f283ba156"/><file name="Flat.php" hash="499d27bae6c68752ecc59d0fb354fb87"/><file name="Options.php" hash="c65446496a1ae6d4e10aeb4aefc8614d"/><dir name="Type"><file name="Composite.php" hash="b846e55921bd0c19b67f5a741282a3e9"/></dir><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="e79967d4c8d57ce9db7a19c345ab0889"/></dir><file name="Rewrite.php" hash="bf01011707af68afc5d1ce532887cb6f"/></dir><file name="Url.php" hash="3f4a1f025e392ea0ad71d674952d3a77"/><file name="View.php" hash="16708f9a689eb8e976af1547aa00b759"/></dir><file name="Product.php" hash="badab711a9bfa604387cccdff618cea9"/></dir><dir name="Model"><file name="Abstract.php" hash="2345f84b02691e85b8bf364a7b4f1749"/><dir name="Api"><file name="Resource.php" hash="51bb7b4e903be5a26904287497b57219"/></dir><dir name="Api2"><dir name="Product"><dir name="Category"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="e1989831b0f9c2aee6bbaaf390bd566a"/></dir><dir name="Customer"><file name="V1.php" hash="525d59ad555d04037cdfed349de092db"/></dir><dir name="Guest"><file name="V1.php" hash="0f89b3853bfafe8fb0af0abaf2fe0d50"/></dir></dir><file name="Rest.php" hash="8d07ba3a97be9eb5c989597c34886fab"/></dir><file name="Category.php" hash="d66345adb0f2dcb06ff614a6ea7d31d7"/><dir name="Image"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="f4074ec4f4f678422090fe98886cebff"/></dir><dir name="Customer"><file name="V1.php" hash="0cf1f011a411506c0a3f10a724c52bbe"/></dir><dir name="Guest"><file name="V1.php" hash="8e6cc4dea1ae52cc4bf3c4b76aaaacaf"/></dir></dir><file name="Rest.php" hash="b44f8e8a598ddfb1c288933baca88c57"/><dir name="Validator"><file name="Image.php" hash="14704b70f690e3f3e37bb8089bfb4340"/></dir></dir><file name="Image.php" hash="e69ca5753a526c2320f2ebe1e27de3d8"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b254c436290949f9cb6229ed7ba49d44"/></dir><dir name="Customer"><file name="V1.php" hash="b429a462b5b4efc529a361995c2c524b"/></dir><dir name="Guest"><file name="V1.php" hash="af810ae55a4e8ec4ad76d2607fe65c2c"/></dir></dir><file name="Rest.php" hash="33c6c19b047dc6c38e51476aff85ab27"/><dir name="Validator"><file name="Product.php" hash="4004be47fb3239f6b45878ded0e4254e"/></dir><dir name="Website"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="02104b958247aa27b84243a960125528"/></dir></dir><file name="Rest.php" hash="610a20a16d3ba4dedaf4a2a15ef39238"/><dir name="Validator"><dir name="Admin"><file name="Website.php" hash="aadb6e65ef76be7ef890ae50c5280ee6"/></dir></dir></dir><file name="Website.php" hash="97e324a48c4d1bf3e374e8b04a602f48"/></dir><file name="Product.php" hash="305e5c307ab3f48b82ce790bb5e4b9b5"/></dir><dir name="Attribute"><dir name="Backend"><file name="Customlayoutupdate.php" hash="541c3c79d81386980ebd642601ab7b84"/><dir name="Urlkey"><file name="Abstract.php" hash="0d86dd563a8c204df0edc9b8fad343cd"/></dir></dir></dir><dir name="Category"><dir name="Api"><file name="V2.php" hash="63f191bb48a5e99e79b0b30c1511daa7"/></dir><file name="Api.php" hash="9b6040e6a12c94af386e480c73432391"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="a3bc8d3ef00cc13d14dc0165476d3963"/></dir><file name="Api.php" hash="74f629bde799a81b7f61ada6ba90c580"/><dir name="Backend"><file name="Image.php" hash="e396df41c8072dbf5ddcdec196c69766"/><file name="Sortby.php" hash="0eaa75ee2664ea5fa47c4d5639d17639"/><file name="Urlkey.php" hash="4cfb2caabdda0b658685f78c9bfb7a7c"/></dir><dir name="Source"><file name="Layout.php" hash="f2817d898f81c8764b201d15f55a5d08"/><file name="Mode.php" hash="db302910771be354f33b22a43dd68653"/><file name="Page.php" hash="e1c83f5740bb711f25ace4901cc4552b"/><file name="Sortby.php" hash="2c37a216e23e9bfcb9b6eb05c28fbd65"/></dir></dir><dir name="Indexer"><file name="Flat.php" hash="25158a81a7710c9c83ede44c7292203e"/><file name="Product.php" hash="ced096c68bae3e63253a715afe78d4a5"/></dir><file name="Url.php" hash="7988d2a07325bc437d73a5b0e8d415b1"/></dir><file name="Category.php" hash="5d4174bded4b244c7e560b5303bb58aa"/><file name="Config.php" hash="baf2acb1d65defa52a9ab7d555f96a70"/><dir name="Convert"><dir name="Adapter"><file name="Catalog.php" hash="efd75b28a43c2e97e08185a96010d168"/><file name="Product.php" hash="7aea3054c2b4e0382bace2be51a9ee1e"/></dir><dir name="Parser"><file name="Product.php" hash="4e50ad037cef637e051905e57ed5a5e0"/></dir></dir><file name="Convert.php" hash="007508ba2a91f9427a351ed96962cf2b"/><file name="Design.php" hash="84093efca7a864fcb5c7e951119ab3c1"/><dir name="Entity"><file name="Attribute.php" hash="49fe50221e17095a4e8e99e5b43c5844"/><dir name="Product"><dir name="Attribute"><dir name="Design"><dir name="Options"><file name="Container.php" hash="d9203532ce93934a4546ae0ddbb0c0e7"/></dir></dir><dir name="Frontend"><file name="Image.php" hash="d4b89768f15c3a63ae8aba2dc56534aa"/></dir></dir></dir></dir><file name="Factory.php" hash="a772398995a8757db6333617e6c00622"/><file name="Index.php" hash="c49ef3cab4e96a2e589ae8efb1ca0a13"/><dir name="Indexer"><file name="Url.php" hash="c400b631dd758db73c6bc4e88eb3a1c3"/></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="1d77f2926eb4ea0cb27954100e6d012c"/><file name="Attribute.php" hash="f6c8fe55ac633d56bd5887f3bcc3c2c7"/><file name="Category.php" hash="83564f60e208ae3885ecf56175a2f1f7"/><file name="Decimal.php" hash="b2b807a3a1fb33427b659e9e52eed874"/><file name="Item.php" hash="0db39ffd0e838fcb13a48b589afef52a"/><dir name="Price"><file name="Algorithm.php" hash="f5d3061b5386dbf0f7b398ed7aa79eab"/></dir><file name="Price.php" hash="6f61a38839b9960904e025c52101f951"/></dir><file name="State.php" hash="7bda7dc7b2e92aa2f76333dde24b8039"/></dir><file name="Layer.php" hash="e7bea7e0d3bb198afdb5a72c925d0599"/><file name="Observer.php" hash="c44f7f47b66b7f0fd4b0ad572e6885c8"/><dir name="Product"><file name="Action.php" hash="675113278d7f27e8dd3d9ac8ab174f54"/><dir name="Api"><file name="V2.php" hash="731b26fff3eadd449ca204753f551298"/></dir><file name="Api.php" hash="3020236d3b481fba930e6c2f9c0b9e64"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="c669ea14e7b93afbed603ea41df7dfc3"/></dir><file name="Api.php" hash="b4cc6f2f8d7fe62659d0022c7ea858c8"/><dir name="Backend"><file name="Boolean.php" hash="8eae8e0ff5e1a44e6c3f8c6703c24346"/><dir name="Groupprice"><file name="Abstract.php" hash="ef4ddcbf8649358e899e96522c0723e9"/></dir><file name="Groupprice.php" hash="70088f56d4c6ce6486f0603b15ada2b1"/><file name="Media.php" hash="80e00e4a9f54703b9fe3d45c43e3de4b"/><file name="Msrp.php" hash="61917f055ac731b6dcb2381c7f04fa1c"/><file name="Price.php" hash="e2a467dfed03e5876c8ae02d69c09cfe"/><file name="Recurring.php" hash="bd225b94dc2d023a2973136f10eb18c9"/><file name="Sku.php" hash="55020f0d205b9698463b2e2d96601231"/><dir name="Startdate"><file name="Specialprice.php" hash="7b1f92724cccd69d6141b0f9f49133ce"/></dir><file name="Startdate.php" hash="20a784aba7af237b231e316c6aa471b6"/><file name="Tierprice.php" hash="33d20556361d976a7aa21e66cdb1ca83"/><file name="Urlkey.php" hash="8761e894ae9c9a0f72b7dc1ef4a5dc77"/></dir><dir name="Frontend"><file name="Image.php" hash="b00cc070d4977adfabe5855c88974bbf"/></dir><file name="Group.php" hash="b39ec9a3b0ae9243cb9f2f5372650338"/><dir name="Media"><dir name="Api"><file name="V2.php" hash="0ab2f8aa622b6a7fe5657a3481bace65"/></dir><file name="Api.php" hash="079f9aed1dd95d435e3e079092a8ae6c"/></dir><dir name="Set"><dir name="Api"><file name="V2.php" hash="a85564df53ea462848a0760b2480dfcf"/></dir><file name="Api.php" hash="eb800e3cf30deed8f84572fa0fbe0a22"/></dir><dir name="Source"><file name="Boolean.php" hash="2fede30869b6ee2c2dc93183ed214b5e"/><file name="Countryofmanufacture.php" hash="7adf3d15a94f16cfa3c0e9631c59177c"/><file name="Inputtype.php" hash="02ed0c9e9a2e4c3ab6fbb3fcd516e00a"/><file name="Layout.php" hash="7fadadf1ee05cfb60ec8b60c27dcf5af"/><dir name="Msrp"><dir name="Type"><file name="Enabled.php" hash="7f009ec958571256a50f4a1a615bff39"/><file name="Price.php" hash="f33bf698fd6809bed6633c6762bf24a4"/></dir><file name="Type.php" hash="73c500476a2edfd62e5e0b62c67d837d"/></dir></dir><dir name="Tierprice"><dir name="Api"><file name="V2.php" hash="ebde2c91db0bff22e0554a557665aec0"/></dir><file name="Api.php" hash="942bfb8de26bb21d4542fa7f3e1e97f0"/></dir></dir><dir name="Compare"><file name="Item.php" hash="e36b94952546032f75f7e5fa0c0a39e7"/><file name="List.php" hash="6d4ec5118d096ca53390075f6c003ca2"/></dir><dir name="Condition"><file name="Interface.php" hash="a4d09256c768573dd4a762060da522c5"/></dir><file name="Condition.php" hash="aa05d8e20c980cfdd9e98159c2a08820"/><dir name="Configuration"><dir name="Item"><file name="Interface.php" hash="1bd8259940557901a365629de4408fd0"/><dir name="Option"><file name="Interface.php" hash="61a1310efb5baf0d3c6fb17cf1067b0a"/></dir><file name="Option.php" hash="9086a6f44c3b444091fcd4ac8153530a"/></dir></dir><dir name="Flat"><file name="Flag.php" hash="f8c7f7bb6bc3e075365ba04a60223912"/><file name="Indexer.php" hash="2d284a31fcbb7c748f354f34c64d6b01"/><file name="Observer.php" hash="50e7962ef23ddc9b936767b2d731512f"/></dir><file name="Image.php" hash="5fca6359bd0c0238d064747cfec9b891"/><dir name="Indexer"><file name="Eav.php" hash="f7e86d21d19071a4a9796d935237a2d9"/><file name="Flat.php" hash="3ce0a4180c6a9e6d2aa5487bfc4667dc"/><file name="Price.php" hash="90e31c7485372c9a94effec58d43e5e4"/></dir><dir name="Link"><dir name="Api"><file name="V2.php" hash="6f3b84df494b92917837c5e4b37bfe93"/></dir><file name="Api.php" hash="5dce35b222db08248027180214b269d5"/></dir><file name="Link.php" hash="0c43a226d127fe71dca227d7b0b8ebda"/><dir name="Media"><file name="Config.php" hash="c9fd26808c7160a2d76c62f8c6b6a2e6"/></dir><dir name="Option"><dir name="Api"><file name="V2.php" hash="604075ef9372bdd4ed3cb4b70f433643"/></dir><file name="Api.php" hash="5a6aec5ce2c122b2d7707ad8a589c43b"/><file name="Observer.php" hash="381758dbc271ffd9988d94cd46db5117"/><dir name="Type"><file name="Date.php" hash="7aac99e6bce556e215811d2f9e64520b"/><file name="Default.php" hash="5832a7342c982b5187c1f77061974c41"/><file name="File.php" hash="dca8b4a36c5bdc59d7652804cfc414b7"/><file name="Select.php" hash="e02502d8cb7811d864cb54ee0ea4fb93"/><file name="Text.php" hash="daf0dba82160df3babf1d6636731a17b"/></dir><dir name="Value"><dir name="Api"><file name="V2.php" hash="e9e1a972ba0b3723b1fe9794ebdc19b4"/></dir><file name="Api.php" hash="ca3a3a550eec0fa016b995076ce42f44"/></dir><file name="Value.php" hash="7aa7375c8ba4da7cd4206f11a62fbe98"/></dir><file name="Option.php" hash="7cfe7ae5edd4349df5de18b636627f7e"/><file name="Status.php" hash="3ca09cf55690eba162ef77001a608da8"/><dir name="Type"><file name="Abstract.php" hash="10675bcafe3aa0097fe0531b66fd1a14"/><dir name="Api"><file name="V2.php" hash="7197a8182a27cb5785ce427704ce77a2"/></dir><file name="Api.php" hash="0320407996c7e844c8b1fb8cb103c39e"/><dir name="Configurable"><file name="Attribute.php" hash="195158a147ba75320c5301a87997fea3"/><file name="Price.php" hash="7b7102d9c295727e03b538c2400efd0b"/></dir><file name="Configurable.php" hash="f430f6e3051f18c4ba91f42d957e1b72"/><dir name="Grouped"><file name="Price.php" hash="390c4877c1b9970d194aa93a36a24cd0"/></dir><file name="Grouped.php" hash="bcf02adc47fb9bd03b41e5cac284a70d"/><file name="Price.php" hash="4c76aecb7c9ef09021349df77c6e8ac7"/><file name="Simple.php" hash="31f1ef1eaf57781caec32f1ca6db981d"/><file name="Virtual.php" hash="0ee2bf98a71546f4406075e48537bd1c"/></dir><file name="Type.php" hash="7ca80e4f844aef2ac7c1f56184d1ef9d"/><file name="Url.php" hash="c5ca3bd92594126b49a0bc1f23086c66"/><file name="Visibility.php" hash="362ebd79283a5129ac1a5dc48f388eec"/><file name="Website.php" hash="3d9bd2e7f1284232be7dbc1563491297"/></dir><file name="Product.php" hash="4a738760925bf5d972a80ff3b3a1a09f"/><dir name="Resource"><file name="Abstract.php" hash="7ea659eb8dee5ed58286feeaec9ed86c"/><file name="Attribute.php" hash="183a36be8ea7e397c5752e0ae9f636aa"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="8fc1387bc51a5ac71cb895c94ddbfa40"/><dir name="Frontend"><file name="Image.php" hash="5f2b8ad6091192458cb7aec29a1fa2ad"/></dir><dir name="Source"><file name="Layout.php" hash="d9982fea625926cac10713b4195ca630"/><file name="Mode.php" hash="69ed5cd1cb1d662015afb0bfc4b382ea"/><file name="Page.php" hash="8402f269ed5f98ac0c65f68fd178bdd5"/></dir></dir><file name="Collection.php" hash="4cbd5d41cbf225c524fad2f705a196f6"/><dir name="Flat"><file name="Collection.php" hash="cdd9e809c1f2e492498438ab9b7eaaea"/></dir><file name="Flat.php" hash="6c02596b1bc1266bbb9a01123ce0f583"/><dir name="Indexer"><file name="Product.php" hash="486cd30c424a6b79b5d8c276611a9d03"/></dir><file name="Tree.php" hash="9ae1c4b06d9e1f549e040210d2364bbc"/></dir><file name="Category.php" hash="e1f882bbaf02adcda1174ca218aacb5a"/><dir name="Collection"><file name="Abstract.php" hash="042e8ec4efe569b37bda527eed044111"/></dir><file name="Config.php" hash="b58b4fe5c46d6fb280333b4c04932999"/><dir name="Eav"><file name="Attribute.php" hash="43b82ea437cbba57a79526977d7948e2"/><dir name="Mysql4"><file name="Abstract.php" hash="6dbaf295417d821002580ecbe014a2d0"/><file name="Attribute.php" hash="80a6c4be37bca60436ce8bf69e11a80d"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="d97dcec767f25085bcc7d7cd02773248"/><dir name="Frontend"><file name="Image.php" hash="a82da415e138e69023518f82fbcaa09e"/></dir><dir name="Source"><file name="Layout.php" hash="1de675e90c78952c9da5b3c1d68955ba"/><file name="Mode.php" hash="c33435df03504b81c4b6930ae44f6c49"/><file name="Page.php" hash="62df7b0014acad2d4561feb4dde22ab5"/></dir></dir><file name="Collection.php" hash="ff8d14ca1b9182419f7cb6f61be1bb47"/><dir name="Flat"><file name="Collection.php" hash="ebf3b440ca661587c3137b89686f2e59"/></dir><file name="Flat.php" hash="c01aaee785dc1f52354606e7cfb11430"/><dir name="Indexer"><file name="Product.php" hash="0a633b5b317b94a3ffa14346d4b03066"/></dir><file name="Tree.php" hash="2c40b5030d0e339b4188532aa012f279"/></dir><file name="Category.php" hash="a6f76d99b75814efa4cca73802711e21"/><dir name="Collection"><file name="Abstract.php" hash="8c6d49d73153b0ed6291b59001300799"/></dir><file name="Config.php" hash="2e877a164dd9fa4f6216a02960598405"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="fe79b932eea08b96187d3831f095e3fe"/><file name="Decimal.php" hash="2cf7c6de7241fce80782f03000264da2"/><file name="Price.php" hash="ddd783856c04d872ae12c49bcfc02b52"/></dir></dir><dir name="Product"><file name="Action.php" hash="0a075d325f6297bcea05a97e713bd9ae"/><dir name="Attribute"><dir name="Backend"><file name="Image.php" hash="bbb5ec689a17e7e947dd267ecf00bd72"/><file name="Media.php" hash="ec532b7483af5e188385ef189778e4c5"/><file name="Tierprice.php" hash="6abbfa8cd31b25feef7be8f51c260d3f"/><file name="Urlkey.php" hash="951cd7ddfd7a3ab0fe79df964ca013d6"/></dir><file name="Collection.php" hash="d76e8af736d7c2e68aa939e3eedb545e"/><dir name="Frontend"><file name="Image.php" hash="835d2b9c01c79f712c076d91a5cae1d7"/><file name="Tierprice.php" hash="ea064cd573dcc77b5c5fa7dc32401332"/></dir></dir><file name="Collection.php" hash="cc2dff7de6f39f0817c34dfe24184aa6"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="150d73ba3ffe8b7d91e86af07e4ed940"/></dir><file name="Item.php" hash="1155eb7be44a76cef0545a8d56b2a122"/></dir><dir name="Flat"><file name="Indexer.php" hash="8752aaf92e5f6869fdae472f1191dc6a"/></dir><file name="Flat.php" hash="999330abcc7bd54e1c66f3f2a1b1fe94"/><dir name="Indexer"><file name="Abstract.php" hash="8f1d26e3b703c74817b78af1178757bc"/><dir name="Eav"><file name="Abstract.php" hash="a1ef399d83f357c33860493f55b65323"/><file name="Decimal.php" hash="028f0990c60143e7ef5806138ed99841"/><file name="Source.php" hash="e26c43d2e33a692ed17e41bbf5bacbc8"/></dir><file name="Eav.php" hash="3d9320a2783580806e248084cf670871"/><dir name="Price"><file name="Configurable.php" hash="bfd3de06ddd5ca6291e9a2d669b2ae86"/><file name="Default.php" hash="0128508a0f5b96d318d2cdad49960d68"/><file name="Grouped.php" hash="8fe9576c2c9998a89b30c58abd5d496c"/><file name="Interface.php" hash="e7cf51a99eeb0bac0be794da85eac7e2"/></dir><file name="Price.php" hash="fcd4e2f65768cd2b15844b780623f8b1"/></dir><dir name="Link"><file name="Collection.php" hash="b0fbcc299427118c3c628945a53f39ff"/><dir name="Product"><file name="Collection.php" hash="72eed145c75c7897298d8051ca0993e6"/></dir></dir><file name="Link.php" hash="0f220c33c60ba6dbc16c657e6665387f"/><dir name="Option"><file name="Collection.php" hash="dadcb2cfe063f9b309826ae43e84d6a8"/><dir name="Value"><file name="Collection.php" hash="b6d3e3a66c39094ff6c5e813ce84440b"/></dir><file name="Value.php" hash="25fbba2f234ad0709925d161dd739cac"/></dir><file name="Option.php" hash="d63c5a06cdc8ec9132de205e1551087e"/><file name="Relation.php" hash="94bd86556cf0b14b55592fb5246f06d6"/><file name="Status.php" hash="f0aeb3eb4d171a557ecde4c6b2b807a8"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="b4bb28f1a8dd798868fbd14545513665"/></dir><file name="Attribute.php" hash="0136019a2c9706ce33c8f10e589f4778"/><dir name="Product"><file name="Collection.php" hash="14d529913102b06cd61b265abb36e632"/></dir></dir><file name="Configurable.php" hash="fe8f1fd9af3bf9b7c2cff1de7d4b8d61"/></dir><file name="Website.php" hash="8065a00dd7b206532f1f55ad73f480ab"/></dir><file name="Product.php" hash="d17fd9daa9dc5f8fb66d28837abb1e66"/><dir name="Sendfriend"><file name="Collection.php" hash="011fbcea919c1371cbbcfea3dd622b1e"/></dir><file name="Sendfriend.php" hash="88e67de998842fceae50ce335a45415b"/><file name="Setup.php" hash="317d981792ba58f12869df409590bbb0"/><file name="Url.php" hash="7af8c55839368617e1ba9d80d78d42fe"/></dir></dir><dir name="Helper"><file name="Mysql4.php" hash="8e28559f16228e92e53634c952ef4451"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="453ce6fb776dd0dedde25d44769207fa"/><file name="Decimal.php" hash="f18aa6bc50575429c632b16ed738e69a"/><file name="Price.php" hash="4d9a5b89399d99f4d4e38d5e4fce24ff"/></dir></dir><dir name="Product"><file name="Action.php" hash="cdbd1919c009bd792310724a90be0016"/><dir name="Attribute"><dir name="Backend"><dir name="Groupprice"><file name="Abstract.php" hash="b19b6387df26fdfb58eba0f4b07654da"/></dir><file name="Groupprice.php" hash="394006442cc820a7bb831989d9173187"/><file name="Image.php" hash="91a30438570e39fab482592fb36bb537"/><file name="Media.php" hash="dd82e66754f394833bafd227fc0f394a"/><file name="Tierprice.php" hash="512ebed3678bbf74b534c292e99c05f3"/><file name="Urlkey.php" hash="58892183ca635fdd8b1cadcde46289f6"/></dir><file name="Collection.php" hash="70a8a9785f0dd9cdbacee61ad7004ba2"/><dir name="Frontend"><file name="Image.php" hash="7e924471e2a351cc4b4df3aeb2a18195"/><file name="Tierprice.php" hash="f3b9435c5627cfc65bc0a83fae373b8a"/></dir></dir><file name="Collection.php" hash="ed171fb9d9aa6de9a1faf2e984144038"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="d02269623058e6e34a977288115bf0fe"/></dir><file name="Item.php" hash="e1b427afd8995ca0880188965718c6a4"/></dir><dir name="Flat"><file name="Indexer.php" hash="7edaf073fc50769482c746d24c2a50e6"/></dir><file name="Flat.php" hash="f04dd1cacb230046428bab410222f0f3"/><dir name="Indexer"><file name="Abstract.php" hash="e9eea687325781a934d1287a66ee330c"/><dir name="Eav"><file name="Abstract.php" hash="882264909bed53b2e593341a9cb0cc3b"/><file name="Decimal.php" hash="4031af741a91854e0e5bfb74e2e6a213"/><file name="Source.php" hash="e96c80ea16783a607581e81599955631"/></dir><file name="Eav.php" hash="eedbc4c1c059b9284052ddae4813153d"/><dir name="Price"><file name="Configurable.php" hash="ad6b098445b34032e644506d9f8ea35d"/><file name="Default.php" hash="c70b26c3d49f515222ba92c09f75e64e"/><file name="Grouped.php" hash="2df45f74e63068082be92422697bb244"/><file name="Interface.php" hash="35f11bc26a0517905a3f331449328620"/></dir><file name="Price.php" hash="bc847da0940008d301c9bf80ffd0dade"/></dir><dir name="Link"><file name="Collection.php" hash="fd4bb69c9415c6cc4bf5a8add6a8f3f2"/><dir name="Product"><file name="Collection.php" hash="af7f2f7ec372c7f8a8ecdfba421ae843"/></dir></dir><file name="Link.php" hash="7f2fd9ef31c7744d7307804190684efc"/><dir name="Option"><file name="Collection.php" hash="046e0f88b4829c13fcc00a4911a6ee2c"/><dir name="Value"><file name="Collection.php" hash="e9b2667031439603c79a4134253aee13"/></dir><file name="Value.php" hash="714feb0f86921138f664f1883ac25095"/></dir><file name="Option.php" hash="c3318f037e2c619f71e809029b0788bc"/><file name="Relation.php" hash="7242bed7fa3472a43018b33ae02cee4c"/><file name="Status.php" hash="13cfd78977d9f60ed0bd0dc1aa8c1b1f"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="629ee3ca7b8890f9a2aad0fb811ebbc9"/></dir><file name="Attribute.php" hash="4f469183b38e27471904028c8d888473"/><dir name="Product"><file name="Collection.php" hash="eae76c911c34170c5432236049986aae"/></dir></dir><file name="Configurable.php" hash="d7a8201338dadbbaa1187c8c2957ef28"/></dir><file name="Website.php" hash="4d47ed9dee6eec8e22a97d9f0ca3fbe7"/></dir><file name="Product.php" hash="c8a186e561bbbd3dfefe1a964b838cbd"/><file name="Setup.php" hash="35d9d6d2bae38fbf892d278d3fa6a290"/><file name="Url.php" hash="b4b5072b8ecd12989a4ea5480935057e"/></dir><file name="Session.php" hash="796adfd2ce9c6d4da6122f3993a0a1e9"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Catalog"><dir name="Category"><file name="Flat.php" hash="b1c4c5c555b1bfdaf77f89e794e9d3eb"/></dir><dir name="Product"><file name="Flat.php" hash="aebfbb384191e2b5fb76f0a20b581916"/></dir><dir name="Url"><dir name="Rewrite"><file name="Suffix.php" hash="0375405401d1a53f79af7f049b99ac1b"/></dir></dir></dir></dir></dir></dir><dir name="Template"><file name="Filter.php" hash="08bc7b98d80ec99d5cfe168fc824f76b"/></dir><file name="Url.php" hash="b74dd9f3320a99751c2b5bf20cae18a4"/></dir><dir name="controllers"><file name="CategoryController.php" hash="693fcd8e901d3714a927fd8c41fe7775"/><file name="IndexController.php" hash="d76865375aa5b20986647bb8e68dc5ee"/><dir name="Product"><file name="CompareController.php" hash="2d53f6cd58015db2152e1e172e805e0f"/></dir><file name="ProductController.php" hash="9150004e27158c8d3218144fd4e445dd"/><dir name="Seo"><file name="SitemapController.php" hash="34daa27420a0b7cf645269d7e06ead26"/></dir></dir><dir name="data"><dir name="catalog_setup"><file name="data-install-1.6.0.0.php" hash="36eca9afc031613eb88fe3947b9ece70"/><file name="data-upgrade-1.6.0.0.12-1.6.0.0.13.php" hash="d91887b8ff57573b10bdad340030011c"/><file name="data-upgrade-1.6.0.0.13-1.6.0.0.14.php" hash="898013c8eb2d2b339f1d09c9cfc1ed0b"/><file name="data-upgrade-1.6.0.0.19.1.3-1.6.0.0.19.1.4.php" hash="2399635f7d4a966d0947fea1de00d345"/><file name="data-upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="c7b02de35018fb4abc89204f63cff4a9"/><file name="data-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="538eefa441e5f2cd0ed06d2beb279374"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d2ceea2db772d3b9527d20c058b6ff39"/><file name="api.xml" hash="d1abf4dc0f124f81637b97daa04b52f1"/><file name="api2.xml" hash="b7448be0327e5245d09feacb5e631cab"/><file name="config.xml" hash="2913db7980a3017624be55116fd4f957"/><file name="convert.xml" hash="4842c0f29827c57894a1bb500b87201c"/><file name="system.xml" hash="e359322deab9f9e2e0861195406971b1"/><file name="widget.xml" hash="aac890e7becb93747ef9096b707ad2ec"/><file name="wsdl.xml" hash="fa198392d766134085b3c2ec1be4a0e9"/><file name="wsi.xml" hash="0acfd65c613ccb83404317500078a85d"/></dir><dir name="sql"><dir name="catalog_setup"><file name="install-1.6.0.0.php" hash="a190f79d12e29ff1686730e3face0dee"/><file name="mysql4-data-upgrade-0.7.57-0.7.58.php" hash="bb12315b2c446d2cf4d530ceb767ca7a"/><file name="mysql4-data-upgrade-0.7.63-0.7.64.php" hash="bdcef5beda87f6d08bf8643f859424d7"/><file name="mysql4-data-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="6e47de7f26c0fce3f3faab1bc76d157c"/><file name="mysql4-data-upgrade-1.4.0.0.42-1.4.0.0.43.php" hash="7f2175b10bb17a0b9d9817b8d722b0d4"/><file name="mysql4-install-0.7.0.php" hash="8be9ff18ceb0b2ad9c19766a5001d4a7"/><file name="mysql4-install-1.4.0.0.0.php" hash="222a57974322b76c0fc1c045366dae49"/><file name="mysql4-upgrade-0.6.40-0.7.0.php" hash="db75f3f66d96bb2b84ddf87de759194c"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="51b41496d8e20b00bef8ea617094b34f"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="6464cd153e066ac7cba358b2c120f639"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="ef6a80e798565834909634178242209a"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="33af8d6a26d9de484b07883f47e69070"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="a6c73dfa7a57efd9324d8bad15df0b37"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="fbd0b2ab20701e06e39d6b7940f5777e"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="9a0c9de855c045487101b748f5acece3"/><file name="mysql4-upgrade-0.7.16-0.7.17.php" hash="33af8d6a26d9de484b07883f47e69070"/><file name="mysql4-upgrade-0.7.17-0.7.18.php" hash="9ff2f5ce88aae26fc0c46ec05e36cc50"/><file name="mysql4-upgrade-0.7.18-0.7.19.php" hash="a00b854c5b47a7ad83a1c331afaf9c88"/><file name="mysql4-upgrade-0.7.19-0.7.20.php" hash="ef6a80e798565834909634178242209a"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="a8dbd6478f9246f3e7ee00838b301a2e"/><file name="mysql4-upgrade-0.7.20-0.7.21.php" hash="b10d9464e68fc826372ba3f5714f6a82"/><file name="mysql4-upgrade-0.7.21-0.7.22.php" hash="d722a5d39b0dddcd0b4b5fa06061245d"/><file name="mysql4-upgrade-0.7.22-0.7.23.php" hash="c6cbfa76f3f6f0f2410878f2b4f2e037"/><file name="mysql4-upgrade-0.7.23-0.7.24.php" hash="7cec22ec4032f381a95e9add1729a694"/><file name="mysql4-upgrade-0.7.24-0.7.25.php" hash="adec784da2defaeceb062e2bb81dcbed"/><file name="mysql4-upgrade-0.7.25-0.7.26.php" hash="adec784da2defaeceb062e2bb81dcbed"/><file name="mysql4-upgrade-0.7.26-0.7.27.php" hash="93950d1e1860a78fb48c41e1969a88f0"/><file name="mysql4-upgrade-0.7.27-0.7.28.php" hash="a7c3e914e640b23acef0c70b06633a35"/><file name="mysql4-upgrade-0.7.28-0.7.29.php" hash="9d60c478ae8048d42465984b225df9cf"/><file name="mysql4-upgrade-0.7.29-0.7.30.php" hash="f931ebfa51db8813bd6aea8f401e52ec"/><file name="mysql4-upgrade-0.7.30-0.7.31.php" hash="d66b1110ed029c8021bf5d040be71a60"/><file name="mysql4-upgrade-0.7.31-0.7.32.php" hash="389248fb4c203bda94a033c49f368881"/><file name="mysql4-upgrade-0.7.32-0.7.33.php" hash="6303eeddd9c30d72ad2581dc3bb945db"/><file name="mysql4-upgrade-0.7.33-0.7.34.php" hash="20f9be568c3bb6fc9db6d06c72f6e7bb"/><file name="mysql4-upgrade-0.7.34-0.7.35.php" hash="02ec16e1d68ed65b19fe67c38c6d487a"/><file name="mysql4-upgrade-0.7.35-0.7.36.php" hash="96bc2198336659af3f6b71658a4f173f"/><file name="mysql4-upgrade-0.7.36-0.7.37.php" hash="2572037235287a2d92732e5f12886587"/><file name="mysql4-upgrade-0.7.37-0.7.38.php" hash="86a151ffffb45f54d8c6d728fefa4297"/><file name="mysql4-upgrade-0.7.38-0.7.39.php" hash="35f56d6563f5d107cea4a2d75eacf2b0"/><file name="mysql4-upgrade-0.7.39-0.7.40.php" hash="a66a39767c9af2c6e31ceccf13dc0acc"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="4a82ed75cf7596c6e113bc0f2e02a97e"/><file name="mysql4-upgrade-0.7.40-0.7.41.php" hash="e86b4593377d368bf40814039cb7ce8b"/><file name="mysql4-upgrade-0.7.41-0.7.42.php" hash="89c06a329b409df3f892a27ab7d42c68"/><file name="mysql4-upgrade-0.7.43-0.7.44.php" hash="644792ed4cb86dfefe0a0c321865b619"/><file name="mysql4-upgrade-0.7.44-0.7.45.php" hash="4926265ef4265ebd4af5a497151618ca"/><file name="mysql4-upgrade-0.7.45-0.7.46.php" hash="7f1008b84e341f208a9707cabadbd3f8"/><file name="mysql4-upgrade-0.7.46-0.7.47.php" hash="290a751a9670c52cfa7eda5bb974ff74"/><file name="mysql4-upgrade-0.7.47-0.7.48.php" hash="db05924057d74bf31f63c7491d532036"/><file name="mysql4-upgrade-0.7.48-0.7.49.php" hash="646d8540ac7a0c71006089c9e77b225f"/><file name="mysql4-upgrade-0.7.49-0.7.50.php" hash="b1f3c3ede60a67a9bc733a2eef769aac"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="7d0d4f90ecafa65e2f24f471445634ca"/><file name="mysql4-upgrade-0.7.50-0.7.51.php" hash="6d2009a9af51d8049e88f7c2e8763b35"/><file name="mysql4-upgrade-0.7.51-0.7.52.php" hash="18793e97fa706b36c9bdf5caf7b73fff"/><file name="mysql4-upgrade-0.7.52-0.7.53.php" hash="de40756ac38a73da17213012d5ee40b9"/><file name="mysql4-upgrade-0.7.53-0.7.54.php" hash="a5848fee13a8beadda0f79f65daddd58"/><file name="mysql4-upgrade-0.7.54-0.7.55.php" hash="39a34bdf3969b36d01447755dc50701f"/><file name="mysql4-upgrade-0.7.55-0.7.56.php" hash="2212d3414461dace27515cf6022efe88"/><file name="mysql4-upgrade-0.7.56-0.7.57.php" hash="1ee964106b645ad546d0a3a8ff2cbb1c"/><file name="mysql4-upgrade-0.7.57-0.7.58.php" hash="6dc2b6b22f5e7cb1c573e8a766489c08"/><file name="mysql4-upgrade-0.7.58-0.7.59.php" hash="4485520a12841ffdd014c8b47d4ec498"/><file name="mysql4-upgrade-0.7.59-0.7.60.php" hash="9643db652432d955026488edc41b22d5"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ef6a80e798565834909634178242209a"/><file name="mysql4-upgrade-0.7.60-0.7.61.php" hash="05962b94381896b8c0a6079f928d1b2a"/><file name="mysql4-upgrade-0.7.61-0.7.62.php" hash="8a2adad7acfae0b20aaafeda3073a391"/><file name="mysql4-upgrade-0.7.62-0.7.63.php" hash="41f05409f1f2ababad405f40e2e7c4e1"/><file name="mysql4-upgrade-0.7.63-0.7.64.php" hash="dda54148cc9ee4c350471ef1df7d87f9"/><file name="mysql4-upgrade-0.7.64-0.7.65.php" hash="be1b7efe441cbc07dc7d7d8043301327"/><file name="mysql4-upgrade-0.7.65-0.7.66.php" hash="6750dc0f92410c6c923a6a13db0b445b"/><file name="mysql4-upgrade-0.7.66-0.7.67.php" hash="a451bf56537adb126d88218764e0f3ab"/><file name="mysql4-upgrade-0.7.67-0.7.68.php" hash="9719a188b2d99291ddd65342efab5064"/><file name="mysql4-upgrade-0.7.68-0.7.69.php" hash="cf1c20028c0d3e4bf25d3ea3830a8f8d"/><file name="mysql4-upgrade-0.7.69-0.7.70.php" hash="9d7ae242dbb4a901710858b813e96df5"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="331de730c2cd4a0bd50094b988315b59"/><file name="mysql4-upgrade-0.7.70-0.7.71.php" hash="6a2c6ac88ad3a6d2e7cd03d72d967a70"/><file name="mysql4-upgrade-0.7.71-0.7.72.php" hash="4507e8188333abd2f30b935b397b4fee"/><file name="mysql4-upgrade-0.7.72-0.7.73.php" hash="b6b15121527d6899094febf6f24ccb24"/><file name="mysql4-upgrade-0.7.73-1.4.0.0.0.php" hash="cd0b8ae9cb2bea9020e1240a247a2f16"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="4dc6a81363eff41c5a51fd93315d92f8"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="1ee5af2922b261f064ae8cf7c2953c25"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="bb8826b930d8b0b6ef29e4b6d13766b5"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="97788faffbe83f5cc9360968af8f725f"/><file name="mysql4-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="b8ca25059c1f20ba9ccedfd30f3b760f"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="bbfa429af5c09cd523067ecfc8f2f20d"/><file name="mysql4-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="9d2559a583fcb01389d1a8e09f8e7a2c"/><file name="mysql4-upgrade-1.4.0.0.14-1.4.0.0.15.php" hash="3aca25291fe1601c2d018315de29b5de"/><file name="mysql4-upgrade-1.4.0.0.15-1.4.0.0.16.php" hash="802073028cea653a86e51180813a1342"/><file name="mysql4-upgrade-1.4.0.0.16-1.4.0.0.17.php" hash="3938106dedc73cb0f2fbf8bd36d63a1e"/><file name="mysql4-upgrade-1.4.0.0.17-1.4.0.0.18.php" hash="c1d094745de4e4bbb8bd6e2864ef3f4a"/><file name="mysql4-upgrade-1.4.0.0.18-1.4.0.0.19.php" hash="a53673cace3b52e4f60c63937b5ef067"/><file name="mysql4-upgrade-1.4.0.0.19-1.4.0.0.20.php" hash="3285dfdfdd4c830b24b1c7ec08ef8105"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="0394ed1855209a683ccec3c957bf3d23"/><file name="mysql4-upgrade-1.4.0.0.20-1.4.0.0.21.php" hash="902adeaeb210e488052420e67c91bc51"/><file name="mysql4-upgrade-1.4.0.0.21-1.4.0.0.22.php" hash="1b4d3e935d048e422aad01463663c7ca"/><file name="mysql4-upgrade-1.4.0.0.22-1.4.0.0.23.php" hash="708d0bcd9e20fc17181e561757c9908f"/><file name="mysql4-upgrade-1.4.0.0.23-1.4.0.0.24.php" hash="895cd8b838b3b6c583f5b474de056e0f"/><file name="mysql4-upgrade-1.4.0.0.24-1.4.0.0.25.php" hash="62ae33d8d51396307a61c8ebdc5ebc0b"/><file name="mysql4-upgrade-1.4.0.0.25-1.4.0.0.26.php" hash="b1311d1d56cd6c6e91fd4ac4d02183cc"/><file name="mysql4-upgrade-1.4.0.0.26-1.4.0.0.27.php" hash="b98afda728c8c0e55ff54db727d93a7b"/><file name="mysql4-upgrade-1.4.0.0.27-1.4.0.0.28.php" hash="cbb6734b5a0a0412e040738a1830a6e2"/><file name="mysql4-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="e9b84d12682af76c8da61f168b287a9e"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="90c0a516e996334f43b966fdfc391b6d"/><file name="mysql4-upgrade-1.4.0.0.30-1.4.0.0.31.php" hash="1dc783194aaaf510a6e492f21c4b08e0"/><file name="mysql4-upgrade-1.4.0.0.31-1.4.0.0.32.php" hash="7ded6c4f41955f95428bfef6a67bdb7b"/><file name="mysql4-upgrade-1.4.0.0.32-1.4.0.0.33.php" hash="9e948fb477fef70de9d8d23e2fadd688"/><file name="mysql4-upgrade-1.4.0.0.33-1.4.0.0.34.php" hash="3afc288187c2b13ede46da37138fb44e"/><file name="mysql4-upgrade-1.4.0.0.34-1.4.0.0.35.php" hash="6e75475481e1998266764eefc398a700"/><file name="mysql4-upgrade-1.4.0.0.35-1.4.0.0.36.php" hash="14e41a7a2d56141d65e9677bcab028af"/><file name="mysql4-upgrade-1.4.0.0.36-1.4.0.0.37.php" hash="ae470220b3d606daaa024c7fa3249542"/><file name="mysql4-upgrade-1.4.0.0.37-1.4.0.0.38.php" hash="eb86eaabf2b08c7aa65e961dbe2790e9"/><file name="mysql4-upgrade-1.4.0.0.38-1.4.0.0.39.php" hash="4a57886ec974c5359574eb9ea9cf0f7f"/><file name="mysql4-upgrade-1.4.0.0.39-1.4.0.0.40.php" hash="2b00bad5794dfee9b3fde2b5fd3a9a7b"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="e0f7f3b10968e714ba07cc5eb244e31b"/><file name="mysql4-upgrade-1.4.0.0.40-1.4.0.0.41.php" hash="465d551b852f340e11ae8a39f6775867"/><file name="mysql4-upgrade-1.4.0.0.41-1.4.0.0.42.php" hash="ce4534c15528aa85fb4103954c98e772"/><file name="mysql4-upgrade-1.4.0.0.43-1.4.0.0.44.php" hash="410f96787d2818abf6a6d35dacab5d9c"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="c54f8c23a5aecae23c1288fca7f1272c"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="dabe2b468b2c07377f1480c433b22070"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="68f64db5e2c7d1ba0d388fb0295d22a9"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="9406153d60f4773bcfa02410290642e6"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="4fd6db4d56901570f60aad5e0057f58f"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="2acaed6d85236f8636d92fbc782a8568"/><file name="mysql4-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="e0164fd9e411365d3e8ec8509efaff77"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="9af1f0f9e54cba17a7b757157d15bae5"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="0d1012fe93e97b50a1a6bd21b778bf8a"/><file name="upgrade-1.6.0.0.10-1.6.0.0.11.php" hash="239d49a8d996f76ca0d3a7e6bdbbb67a"/><file name="upgrade-1.6.0.0.11-1.6.0.0.12.php" hash="92e6c780f304dcb53707f0ba98ea31b9"/><file name="upgrade-1.6.0.0.14-1.6.0.0.15.php" hash="a8747e2aba3f93bb9e48055305787e91"/><file name="upgrade-1.6.0.0.15-1.6.0.0.18.php" hash="663698651d7ebaf84818a737a5a02e45"/><file name="upgrade-1.6.0.0.18-1.6.0.0.19.php" hash="f007deefaff24fd1b84558612dc968b3"/><file name="upgrade-1.6.0.0.19.1.1-1.6.0.0.19.1.2.php" hash="9a4c424c3efe85959e312326a1ea5e52"/><file name="upgrade-1.6.0.0.19.1.2-1.6.0.0.19.1.3.php" hash="884027a4d86d7c7545b6dec2902ac885"/><file name="upgrade-1.6.0.0.19.1.4-1.6.0.0.19.1.5.php" hash="06dfd828d0fe0bad7e65373acaf45d05"/><file name="upgrade-1.6.0.0.2-1.6.0.0.3.php" hash="0dca9a1b8f61f8ebd13b06903a86a4cb"/><file name="upgrade-1.6.0.0.3-1.6.0.0.4.php" hash="23ced171d63f5999ff810132ed3f8e01"/><file name="upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="5a545b9ece276c05ddc8848fd96da6b8"/><file name="upgrade-1.6.0.0.5-1.6.0.0.6.php" hash="4dc9907a69744f12b82b9e6ca92ab925"/><file name="upgrade-1.6.0.0.6-1.6.0.0.7.php" hash="21e9a165b79d55ce912789eed815bbbc"/><file name="upgrade-1.6.0.0.7-1.6.0.0.8.php" hash="bd62576d368e51028f0e2bea3c66abc1"/><file name="upgrade-1.6.0.0.9-1.6.0.0.10.php" hash="10f1947d29666db0b041fb589cba7fe9"/></dir></dir></dir><dir name="CatalogIndex"><dir name="Model"><file name="Aggregation.php" hash="60cef163c57ca8bb3e8690c589decdac"/><file name="Attribute.php" hash="5e5a4696256395295bea3da45af7bec5"/><dir name="Catalog"><dir name="Index"><file name="Flag.php" hash="5f1b3fa3f5337d5636d0548c466e68c5"/><dir name="Kill"><file name="Flag.php" hash="feab0b25175fffbb8e1f375ecb43a212"/></dir></dir></dir><dir name="Data"><file name="Abstract.php" hash="b84d9b274e78f3d055803754fdf7165f"/><file name="Configurable.php" hash="87a90d82092a6966eb1badf4209ed8fa"/><file name="Grouped.php" hash="e7716f7b63a5f71254d5ec104b32d2df"/><file name="Simple.php" hash="8da32fec7ab07a3b2333fbce56b1ee19"/><file name="Virtual.php" hash="f02494f4ea6a7208e0063fd97756235a"/></dir><dir name="Indexer"><file name="Abstract.php" hash="d245560796bb31db3970fa3af88ae9e1"/><file name="Eav.php" hash="693cdd7750d7169765b5495ffaf2cdcf"/><file name="Interface.php" hash="02ae9ceec98517bde3890974428d9777"/><file name="Minimalprice.php" hash="56cc6237ab833e903e65db499a527286"/><file name="Price.php" hash="431202565ecc986745539f1520e29816"/><file name="Tierprice.php" hash="e356879341dbcb9190740a746af6d349"/></dir><file name="Indexer.php" hash="ac2d81085431f030f18c913dd10f3015"/><dir name="Mysql4"><file name="Abstract.php" hash="be13ddaff4b63761a2a30964c3c8747e"/><file name="Aggregation.php" hash="f2848fd2f96072bc4d3350986c1c69f1"/><file name="Attribute.php" hash="159dd1bc5a6600a91a028c13c30b4de5"/><dir name="Data"><file name="Abstract.php" hash="aa485e30b7cf65df9c3af594e4498520"/><file name="Configurable.php" hash="d668db6613da213a70317f90554be3bc"/><file name="Grouped.php" hash="32a363fb149a97d3b93694cfc072cd74"/></dir><dir name="Indexer"><file name="Abstract.php" hash="a7f127f9c9bf5f27f35848b03144f296"/><file name="Eav.php" hash="aa6a2ccdfcf06a01a2499e934b96dd21"/><file name="Minimalprice.php" hash="2ad6c51a7deba35460c1ad98ccfe6e81"/><file name="Price.php" hash="d0334cc9da42dd22952b50b7937c9e03"/></dir><file name="Indexer.php" hash="38b091e49f8f31002ac86fe7362c472d"/><file name="Price.php" hash="012cfa4f114f30d12f72d410e652c580"/><file name="Retreiver.php" hash="6cd441eaa8b22dd6789784507d7ec4b2"/><file name="Setup.php" hash="738ce6e7e9bc02cceeb66886e4be6bda"/></dir><file name="Observer.php" hash="60279cd43d34326d2599101d264ed031"/><file name="Price.php" hash="cb923e9f2b7b8b4a5fb6219168cbefcd"/><dir name="Resource"><file name="Abstract.php" hash="c88b07fa59b4967ac202882cb21e0caf"/><file name="Aggregation.php" hash="07393e0892971d6bfadc28c17c944ca2"/><file name="Attribute.php" hash="6e1d88bfbe039eb83ca6660f006461f8"/><dir name="Data"><file name="Abstract.php" hash="8c6928cc2ff936d7d6eecb2ed018ece9"/><file name="Configurable.php" hash="31e122679b8194d27734f5affb3b9a86"/><file name="Grouped.php" hash="e0e9861493299113c371cea8fef7f0e3"/></dir><dir name="Indexer"><file name="Abstract.php" hash="43fee0a8a68edaf0157e887d21fc2665"/><file name="Eav.php" hash="e6ebf62f73008831a06263d3a6753e2b"/><file name="Minimalprice.php" hash="2e1f08c7f528dbe77dd1a4a31f52eaf2"/><file name="Price.php" hash="f7280fe3461b01d0108a3d63b39bff0b"/></dir><file name="Indexer.php" hash="00256c752e56bf87b6a83b56600a3a45"/><file name="Price.php" hash="74e315ac0d71bd492235277c79341654"/><file name="Retreiver.php" hash="58acab13daf6f41e5c8abcf3e2d0a290"/><file name="Setup.php" hash="b3f924f4bc7e8fef4ef2c94713c4ebc8"/></dir><file name="Retreiver.php" hash="433563def1a6f4d4aa7c5007ed38e480"/></dir><dir name="etc"><file name="config.xml" hash="6492f81935b38b07b6af0887f6b38ad2"/></dir><dir name="sql"><dir name="catalogindex_setup"><file name="install-1.6.0.0.php" hash="ab6f7cdfc698dce37619e28904de7ad8"/><file name="mysql4-install-0.7.0.php" hash="33ad864096cca00c99c61c276f79fc06"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="bf879c3bd24ed529efb06d42f3bf0a8b"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="89a9c12485cb95211274c9f5e73f284d"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="628e2d554d8e8996daec26a475ed780d"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="62bccc96c55f333f20d9cda686a56f22"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="c0a64dd4b2dd26bfbc0c0f09e684873f"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="c9952e2249429715a4540de0fcbe632a"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="fc3031f6bc5bc39e8ae0e5b702b66696"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="5b7fc4f9ff653a31796f3b2050481421"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="d1f8e10891c260192b45b185b45dbdf6"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="a9051f4d92f570110d7eee10e51fe5fd"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="98fade292a5922bce4d6b02a89e959af"/></dir></dir></dir><dir name="CatalogInventory"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Field"><file name="Customergroup.php" hash="eb25b19672a56569392d363cc0bf5ba6"/><file name="Minsaleqty.php" hash="86d1aeef4b5496c9cc3361a885814648"/></dir></dir></dir><file name="Qtyincrements.php" hash="3460e7944c098ef4e0591e35e249860a"/><dir name="Stockqty"><file name="Abstract.php" hash="f3e8b7313d56131d4e802f7f7680c539"/><file name="Composite.php" hash="27c86344f44608fad8f34c8221fddbfd"/><file name="Default.php" hash="467b69a588547a3edda528f7e5f363f3"/><dir name="Type"><file name="Configurable.php" hash="6e019cb386468de258a468b59daf2c59"/><file name="Grouped.php" hash="0bdf7306fd551d834185092df2390f67"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="9a5249b20c5b5939ec7af6d12f3da353"/><file name="Minsaleqty.php" hash="ca8ab628ae187c3792624d76260fcf11"/></dir><dir name="Model"><dir name="Api2"><dir name="Stock"><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="733bf8ecf0f0dabad1f6e04fe5639acc"/></dir></dir><file name="Rest.php" hash="64eab54f483ea14bde6731b37ccc5f46"/><dir name="Validator"><file name="Item.php" hash="16687ea97638a57afab566d8b22ea20c"/></dir></dir><file name="Item.php" hash="37a672855b98df53abdc3f7d3fbcf0c4"/></dir></dir><dir name="Indexer"><file name="Stock.php" hash="ed1f2b6ff4e625b5bc14c7fd38e8a499"/></dir><dir name="Mysql4"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="9760989916198d4c6eaac9c819537327"/><file name="Default.php" hash="bf2afb2efd4ddbf1a59eb46b8a0dcaf1"/><file name="Grouped.php" hash="ce99e77d35a4e637ce2e2916194d1ed6"/><file name="Interface.php" hash="945832791b8b6012c6d8e6c0003eba13"/></dir><file name="Stock.php" hash="327ca5e2bc714b30faff2dfe870114c9"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="8d81b683d7f95264944e3b55ac3e63cf"/></dir><file name="Item.php" hash="36cee22d8e44fcb58eff1142cd6c1495"/><file name="Status.php" hash="a72e2d4cc36980b308a4a2a3e12f3b89"/></dir><file name="Stock.php" hash="99fe31fc15c924c551ae18ac10351ea7"/></dir><file name="Observer.php" hash="7e453066a4b698be862ae2aae33d0692"/><dir name="Resource"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="1fc87a3e462fd99292344f613fafba1e"/><file name="Default.php" hash="86f2c9a66788934cc2fbdc0aec2eade8"/><file name="Grouped.php" hash="5317ef78e837ae3ef27ae7b97f53e23a"/><file name="Interface.php" hash="b4310cc129e2fce091dbc7b55ff592fb"/></dir><file name="Stock.php" hash="502d083aaafda69ff8e8b2166240d605"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="4002a89669f75a9e2af97f65877d1e93"/></dir><file name="Item.php" hash="5342bf879d1844561673b654bc60d47b"/><file name="Status.php" hash="99ffd5abb90f5bc0c9ba17274057cd4a"/></dir><file name="Stock.php" hash="61e940d822fcd3ac2614519a6b46610f"/></dir><dir name="Source"><file name="Backorders.php" hash="5cb214ebedd83466711c2aac8d23230a"/><file name="Stock.php" hash="2d6c56fa99ac4e003ba75c11e2881ba0"/></dir><dir name="Stock"><dir name="Item"><dir name="Api"><file name="V2.php" hash="fb777d15aa0188d4dcdf31722c082213"/></dir><file name="Api.php" hash="e1bedad2686e6f3c278bfae794f31d7d"/></dir><file name="Item.php" hash="5dadc650947cab651d4ce4dd74178c45"/><file name="Status.php" hash="d7e599e66db5423829fd9469975bbb08"/></dir><file name="Stock.php" hash="d34e70739f763ad81ef0e9d6cb1cce70"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Minqty.php" hash="0386e3b4535529e3016183b68d79c716"/><file name="Minsaleqty.php" hash="da5bdda90b302307bf5a072d33aff415"/><file name="Qtyincrements.php" hash="1afba239b0fd472a5709d3de9fab26d3"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8ff9179a33503a7b6e015204e436c6a5"/><file name="api.xml" hash="3b2f5f13ccaae27a918ae22fd34338be"/><file name="api2.xml" hash="961a039e5a7fa0213b23a75474c3e888"/><file name="config.xml" hash="99a4f8dbdffadd15e38ca419a11a6976"/><file name="system.xml" hash="f1910edb50bc29f6688bd48d92856763"/><file name="wsdl.xml" hash="cfad5924eb32b8fb7ccf79309e5966df"/><file name="wsi.xml" hash="ec7bdd8cb2bc5dd12c0a4d865fe3d313"/></dir><dir name="sql"><dir name="cataloginventory_setup"><file name="install-1.6.0.0.php" hash="1682cb879d72831395fdd09bb839c18c"/><file name="mysql4-install-0.7.0.php" hash="3b32b5fa6ca5d3ff35bf0f587669d178"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="f460cae12925aa422565d5a1ffb7de7e"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="04b3387e3177ecd730f37b379b001314"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="66136f81697a4bc8180fdcf8b8301531"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="3f2ffac57b3fffc239abf5646b720956"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="e243e2a267e195d16e7eee97c27e28ce"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="39515c5aa30e0ee2923f067092dd28df"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="846ac845aa98e32fab4ab0617996a936"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="b78c85fa82e75efe2d717646571f9aa1"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="177fc3349f35be043e0dafde741a30ce"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="e42cac340630969e5db01dbf2fceda4c"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="68d27c90eb86eb74c846717de0a0b8b5"/></dir></dir></dir><dir name="CatalogRule"><dir name="Helper"><file name="Data.php" hash="8ee0218e51aa3bba4f74a5d154c5a168"/></dir><dir name="Model"><dir name="Action"><dir name="Index"><dir name="Refresh"><file name="Row.php" hash="08fde6ef67aab07d8e7c340984f10850"/></dir><file name="Refresh.php" hash="fdd4ec6a117ad399840b354a275d630c"/></dir></dir><file name="Flag.php" hash="dd644948d3edf27cf5952c4c9f9c67f8"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="c65d800f9e364d90abeacea3d2ae2ef1"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="23f16640316455a07d107da86641b70c"/></dir><file name="Price.php" hash="08a36b18518a1658b807f996520cd32b"/></dir></dir><file name="Rule.php" hash="c7af39e797e770d89ebc8c721cf64309"/></dir><file name="Observer.php" hash="0f7bb4eca52fdd345687448a6b0f7a36"/><dir name="Resource"><dir name="Rule"><file name="Collection.php" hash="1788b67c2855b1daf23634e24a553c5d"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="e29172e24a909b94bf2275654869a1d8"/></dir><file name="Price.php" hash="28575dcb17a466199977f3bf2ed95ce2"/></dir></dir><file name="Rule.php" hash="2fe18c099ca432de0718440f3ba26df5"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="aa55c515957f45d5d40257d32a0ca5e3"/><file name="Product.php" hash="9571c2f2ae18cfb58e9743eb6df8145d"/></dir><dir name="Condition"><file name="Combine.php" hash="9ea0fa6c3959e4a51ba5b8496d1f2f5a"/><file name="Product.php" hash="5fc9b8c1368db71192f3b7f075d3e663"/></dir><dir name="Product"><file name="Price.php" hash="21131d21041d06e55108cc6f607379c1"/></dir></dir><file name="Rule.php" hash="9c11de9233144692198083c9c5928f8f"/></dir><dir name="etc"><file name="adminhtml.xml" hash="95d1d7d9dd6a8f5d4b2735131282783f"/><file name="config.xml" hash="5c54b18ef3b9768b55b55f819bf83e6d"/></dir><dir name="sql"><dir name="catalogrule_setup"><file name="install-1.6.0.0.php" hash="7eaafe66abce83b3e4f260750dc4ca98"/><file name="mysql4-install-0.7.0.php" hash="d7efd6170d5a3cc0afbaef173d1f3d70"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="41b93ab7b9086ea4a8d9d7ed433c10e6"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="cc8b349a477e5bdc8dbd9ca1a52a8677"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="5b8c1e35670dc3326d22c3c53caf4798"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="dc2c9296e6865bd1d961f78f25d542ad"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="007985f93091a7245701f1141948699a"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="d4b69c988abbc78bcd03079dbceb4ffe"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="0f14a77122029e38f26e7ccf3712c563"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="7071b5fd4f696022bccea633f85a0a13"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="cc940227382995c2fecc459ed8497194"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="c1342fde96eeb01cdef1dde439ff0068"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="5d5d9d99d680379c33f4ed85d938ced5"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="9638a8d41872ccdb397a83fe9f583511"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="bb0f7e487247116e6a26f0e429a163a5"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="32ff5f97cf9b16dacc1ff79a62edff44"/></dir></dir></dir><dir name="CatalogSearch"><dir name="Block"><dir name="Advanced"><file name="Form.php" hash="85c85e586ab8ec207faf9dc8c07ffe4a"/><file name="Result.php" hash="0131e9cfc874158a6470b2d9a73dc014"/></dir><file name="Autocomplete.php" hash="33ee6e0481fe27092d85ae144efd4e09"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="150b9b818f811440c76b9973f68f267d"/></dir></dir><file name="Layer.php" hash="4d1e1b333e85eda9337e44fa248b8a28"/><file name="Result.php" hash="746cfbe96aa681ebeb44bbb0469222c2"/><file name="Term.php" hash="203afe743aff440e7f38e9ad2df4515a"/></dir><dir name="Helper"><file name="Data.php" hash="86f01e7de3935f870cc4ef530a67719c"/></dir><dir name="Model"><file name="Advanced.php" hash="0f7d026367dc1b4b1a96c8aea87d0441"/><dir name="Fulltext"><file name="Observer.php" hash="e19cb1d4993522433634d47a5a394f3b"/></dir><file name="Fulltext.php" hash="53b70a26d839f8b6d6c2f667363e7a63"/><dir name="Indexer"><file name="Fulltext.php" hash="ebc4d21554919bb59997effc66c49062"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="2ef712a3afe2235c73a83a994fcb3dc9"/></dir></dir><file name="Layer.php" hash="1cbf21abf86ef5a261552de4093dc5fb"/><dir name="Mysql4"><dir name="Advanced"><file name="Collection.php" hash="92555a8d2b100b05c9e217fb12f0bf94"/></dir><file name="Advanced.php" hash="2c6153c7d1a08ce5be2b555c36f0b886"/><dir name="Fulltext"><file name="Collection.php" hash="8b464675f27876ec4f9cd681dab0185c"/><file name="Engine.php" hash="f69694096e25e362de70f4ee9565b837"/></dir><file name="Fulltext.php" hash="2688588945cdf070a1c390359b6e09f9"/><dir name="Indexer"><file name="Fulltext.php" hash="ee81211e67cee1ec19fe37ea0f63b879"/></dir><dir name="Query"><file name="Collection.php" hash="1db4fd196e9cefbb818bdc738fc8b397"/></dir><file name="Query.php" hash="33f42d5a3fbed6839ad3996d79650ec8"/><dir name="Search"><file name="Collection.php" hash="100de96f9c425796420a1bd5f02db86b"/></dir></dir><file name="Query.php" hash="da08fc4cd6647f59235d06c9afd5fe65"/><dir name="Resource"><dir name="Advanced"><file name="Collection.php" hash="82da163d566a352a5902236024d5d865"/></dir><file name="Advanced.php" hash="941dbb5291ec4305b2d41e950b77a4cf"/><dir name="Fulltext"><file name="Collection.php" hash="1e62a38f02de2b9181ca312ed45c4bd9"/><file name="Engine.php" hash="7bfb45785c29f86e46b7824913386188"/></dir><file name="Fulltext.php" hash="bf2866e7db3d692481fea58d5fbcb940"/><dir name="Helper"><file name="Mysql4.php" hash="280ae70b9c7d364c3f43eb7da6c5bc7b"/></dir><dir name="Indexer"><file name="Fulltext.php" hash="f460722ecf333a54b0321f097bf31957"/></dir><dir name="Query"><file name="Collection.php" hash="c2488fce10ce5d6e74a98724e98313c5"/></dir><file name="Query.php" hash="8530a95bbfbb04db2eafdba952cdca72"/><dir name="Search"><file name="Collection.php" hash="3a9cf5ac6bbba866135238509202fd40"/></dir></dir><file name="Session.php" hash="21a0b0590d44b2c8e6062d06ce9ff52a"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Sitemap.php" hash="a3a284dbcf1b146b2d04ed7d1aab311a"/></dir></dir></dir></dir><dir name="controllers"><file name="AdvancedController.php" hash="44e6c43c987327b6ac99ec62fae95478"/><file name="AjaxController.php" hash="a0632f07c88d72d084ea2fe1a22df973"/><file name="ResultController.php" hash="df161656fe79f6c8f76c4389fdd974fd"/><file name="TermController.php" hash="7b641d87b2c03d3b9703036219486a64"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a0bcd72439780780056ed81729622671"/><file name="config.xml" hash="5d6296b3a3464698dddff4b420f92321"/><file name="system.xml" hash="c70b6c3f11afa046069fdd3a903344c5"/></dir><dir name="sql"><dir name="catalogsearch_setup"><file name="install-1.6.0.0.php" hash="92cdc22d55c0e949a11dbec3a9eaf3a3"/><file name="mysql4-install-0.7.0.php" hash="01dcd73378454ea7c5587af3bed4802a"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="769faa4ac005b9421fdc2243913a853c"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="ea43931f2f54b40cf0db13f8954ef632"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="299ac9ebce99cb5cb94fb4ede5caae94"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="62c28e3e48607392ea7394973cb824ee"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="02b38d7d742215e5d9d964e713c9dda8"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ec12eb0976f0234bf5f00b19cc7bc8b2"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="b8bcb9f888b99a83e2779b62f943316b"/><file name="upgrade-1.6.0.0-1.8.2.0.php" hash="ef84b6da31993fef99bbd7021ceaadea"/></dir></dir></dir><dir name="Checkout"><dir name="Block"><file name="Agreements.php" hash="edbbb56c8076c4c6f9def19530a96e7d"/><dir name="Cart"><file name="Abstract.php" hash="901a5142083d530a680638ed425419bb"/><file name="Coupon.php" hash="ef3de3d31843f041b606d07aea1e7ea6"/><file name="Crosssell.php" hash="dbe7eeab93332995ecc1dc33fa598285"/><dir name="Item"><file name="Configure.php" hash="29570f0ba5dd5419cd4f60efccfc6bf0"/><dir name="Renderer"><file name="Configurable.php" hash="b87abe5dcbedf884ad712f000872b362"/><file name="Grouped.php" hash="66c2f047ebab8142f611635254349d14"/></dir><file name="Renderer.php" hash="927b69b83ed410c0b8dc2878664b43b8"/></dir><file name="Minicart.php" hash="33a35f84758eb96c5bf78641939972bf"/><file name="Shipping.php" hash="495e7fb71fdd1588f22e89c05f99b209"/><file name="Sidebar.php" hash="48d1ca23137df7733fa2ebbdd1171df1"/><file name="Totals.php" hash="f0ca1cfb3eec7e5d74efdba148af6a34"/></dir><file name="Cart.php" hash="f00a63fbbf71ef667125131872b5c2cd"/><file name="Links.php" hash="5884b4b569e73a0253b70c8c4069400c"/><dir name="Multishipping"><file name="Abstract.php" hash="dd8a3b6f5875ef7d5f4e6e13202b59ab"/><dir name="Address"><file name="Select.php" hash="d4f26089fa26ed1b6529f01e1207c98d"/></dir><file name="Addresses.php" hash="f4b1bb17ac210fe234a109646d8f2742"/><dir name="Billing"><file name="Items.php" hash="10ecf85b2301eb5f7107018fd6ef78e3"/></dir><file name="Billing.php" hash="f123ed661cba84fefe43831176b239d1"/><file name="Link.php" hash="943fc5e34784b586c564b071605ca0ef"/><file name="Overview.php" hash="af302834d1a62023b106d99ded0636e3"/><dir name="Payment"><file name="Info.php" hash="c5fe2c4c8bc11a08e202bbe62faf763b"/></dir><file name="Shipping.php" hash="ece198105deae18034b82623ab31244c"/><file name="State.php" hash="76387a07d765fee355b6d14fb36c6365"/><file name="Success.php" hash="a85ca6ed660235cdd3e09b1102068f22"/></dir><dir name="Onepage"><file name="Abstract.php" hash="d534b931178a07527745dd0d4aeef9e0"/><file name="Billing.php" hash="0c248527ccb1e35434fe08b09f0e34d5"/><file name="Failure.php" hash="517d6799044bbf9739648a98c269f8f0"/><file name="Link.php" hash="13a3bd728e0be90aedb9128e71cb330e"/><file name="Login.php" hash="76fc49d195c759b5094a4010393154b3"/><dir name="Payment"><file name="Info.php" hash="ad433a44dd760597613fb057e64fb517"/><file name="Methods.php" hash="e72c1c2d1ea95f382a300687e1cd0d65"/></dir><file name="Payment.php" hash="22d8f6af26820ecacf12d91babaa6f21"/><file name="Progress.php" hash="48db21ef216b70c5510467cab47ba1ab"/><dir name="Review"><file name="Info.php" hash="aab4e775ad6bde968f773209239b66a1"/></dir><file name="Review.php" hash="346066fe907256e9782a8e6072d18861"/><dir name="Shipping"><dir name="Method"><file name="Additional.php" hash="eb7b5693dcc222364d31df121523c7e6"/><file name="Available.php" hash="b591ce6be235ca6e09adf048e4ff8fe0"/></dir><file name="Method.php" hash="0f42e9c7226d46b347e1ed153e50bd49"/></dir><file name="Shipping.php" hash="fe2fb0da161f7f9f92c77d8572e3db15"/><file name="Success.php" hash="fd3a23e38a97227d893965e31760389a"/></dir><file name="Onepage.php" hash="a3d7319d6b6eaf525b13ff4b5d4b1949"/><file name="Success.php" hash="c0f8b76f1f760e5eb26dbf824a18efe4"/><dir name="Total"><file name="Default.php" hash="23c6d9fbd60d93691f86a94a682a932e"/><file name="Nominal.php" hash="567cac28353dbef48f3efed824392f09"/><file name="Tax.php" hash="28425c3a5fc487b91ae7b75f790e3040"/></dir></dir><dir name="Controller"><file name="Action.php" hash="9ab91c9b829370254c07b7e9166395cd"/></dir><file name="Exception.php" hash="f888eb68fa670e71031cabc8b866dc39"/><dir name="Helper"><file name="Cart.php" hash="81d7df978bbd8974146ffca6d13afebe"/><file name="Data.php" hash="ed0768618718022eab8e6b83b21200f7"/><file name="Url.php" hash="0a2b6b700ef4d4846797367866897b6c"/></dir><dir name="Model"><file name="Agreement.php" hash="0c93b7f13b3164dbc33d87b527521e23"/><dir name="Api"><dir name="Resource"><file name="Customer.php" hash="278934926f4c9f19f49b973dc462f2f3"/><file name="Product.php" hash="b0a603238337c10e11988c95db6a6bc9"/></dir><file name="Resource.php" hash="11339699eabc89cabf818aba84ae017b"/></dir><dir name="Cart"><dir name="Api"><file name="V2.php" hash="6e5f1e303135e06dca8b3b25551b8b3e"/></dir><file name="Api.php" hash="95c5c624a6d0856d1d84226f9d6026bc"/><dir name="Coupon"><dir name="Api"><file name="V2.php" hash="e0771b98babffe46a408188ce5fb0bec"/></dir><file name="Api.php" hash="e6f307b2717c2b761af92d1faacc7816"/></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="72620344ecbdce72b2ed490681075264"/></dir><file name="Api.php" hash="1f1453d74d6ff19ab14f54c6629f74f9"/></dir><file name="Interface.php" hash="48ee2c9e546007a68ccaa7eb883aa215"/><dir name="Payment"><dir name="Api"><file name="V2.php" hash="59d1c295803d3d9b6d1c69aae6502823"/></dir><file name="Api.php" hash="88abb8822f98d264013ba064d699fc52"/></dir><dir name="Product"><dir name="Api"><file name="V2.php" hash="dc76cbb4c3d5719fbe90b7632b380a6d"/></dir><file name="Api.php" hash="4ee73dce729797f476dde38acd551215"/></dir><dir name="Shipping"><dir name="Api"><file name="V2.php" hash="f5aea9ac9d46b17573fe036ac0ede546"/></dir><file name="Api.php" hash="d91ee32480d3558f65eb1e916e01db59"/></dir></dir><file name="Cart.php" hash="bddb19638540757baf94b36d4746ba29"/><dir name="Config"><dir name="Source"><dir name="Cart"><file name="Summary.php" hash="0d77b36bc8ef6ae8376a53a65b371efd"/></dir></dir></dir><dir name="Mysql4"><dir name="Agreement"><file name="Collection.php" hash="6f54030386e4c0017e23ec07b0a08bc8"/></dir><file name="Agreement.php" hash="bd23ae0da9ba5d2a549338e5c02db756"/><file name="Cart.php" hash="947d56432d628a5ef086aa39368ec4eb"/><file name="Setup.php" hash="409c6eb0a7fc57f2f15a18b44b69c12e"/></dir><file name="Observer.php" hash="760e5571e9e6056be3b48f9d80a10f1e"/><dir name="Resource"><dir name="Agreement"><file name="Collection.php" hash="3f3f4ec920798255914d4875da0e20df"/></dir><file name="Agreement.php" hash="8f1cabcc167d70d7a66f5eaf695e5443"/><file name="Cart.php" hash="1dbdeaa51cee5134e84de8e1bd3e2d11"/><file name="Setup.php" hash="5c703c12ea887ceac97d12b306c9ccdf"/></dir><file name="Session.php" hash="d8965257509d76490267923acb596160"/><dir name="Type"><file name="Abstract.php" hash="fb7993038afd3bcdcdc07c01fff36600"/><dir name="Multishipping"><file name="State.php" hash="2f986856bfc95e2af8169f6cc463b7d1"/></dir><file name="Multishipping.php" hash="04a0ec632bed5c3e744b1cb6792cf664"/><file name="Onepage.php" hash="f0504b8f9b77dd2c7a7843768bce86ee"/></dir></dir><dir name="controllers"><file name="CartController.php" hash="bb59726fda388954646df70270c67e92"/><file name="IndexController.php" hash="0ad403e5abff321f35723e4a1f574eb5"/><dir name="Multishipping"><file name="AddressController.php" hash="0f8bf7799bc74461a8b6d5ae5b75443b"/></dir><file name="MultishippingController.php" hash="d744d587d59d336d264fa0f16ee4583a"/><file name="OnepageController.php" hash="3406786ac53fd3df0538ba50c365ef39"/></dir><dir name="etc"><file name="adminhtml.xml" hash="371b2471bdedf082a358021ffd211811"/><file name="api.xml" hash="b7967352f284e92833d55ca0b68840fe"/><file name="config.xml" hash="c57623b51827b6f576167621637e9562"/><file name="jstranslator.xml" hash="2e2de89b98af915e4ea1272c75cc1bfd"/><file name="system.xml" hash="f02f46ae436beadfdb3522e9a3dc5804"/><file name="wsdl.xml" hash="9a10e25803e84713f5031a168dd0c624"/><file name="wsi.xml" hash="2567bee4ef18e1b426c700ce66c3bcb1"/></dir><dir name="sql"><dir name="checkout_setup"><file name="install-1.6.0.0.php" hash="ddfbf2f09cde278b42c6bf37d6436d97"/><file name="mysql4-install-0.9.1.php" hash="5758e258d67930673a39f46c77a1198d"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="d68bc41709df517d96950a88f86e5e8c"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="b17127b6e458feededff23b30b7455ab"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="88ff62408fe8488de215927eb400a70a"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="6ea70e4a786843a3416cc6eb8fa19a83"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="c09d7a7b448e2669e875ed516882e655"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f9491be89b004c1897edb5b8ddf4c23a"/></dir></dir></dir><dir name="Cms"><dir name="Block"><file name="Block.php" hash="898d35381156ccb9132b25bf532424a4"/><file name="Page.php" hash="814206506f6d685818bcab9d152bd097"/><dir name="Widget"><file name="Block.php" hash="ea1c7f3d19a92bc2daaf99310ca1b17a"/><dir name="Page"><file name="Link.php" hash="c6dcf852bc58964ddfa98f69a1d4fe20"/></dir></dir></dir><dir name="Controller"><file name="Router.php" hash="92339edffa16c8bc02b830c852e24459"/></dir><dir name="Helper"><file name="Data.php" hash="a27b18bb6606cc74cc9544afe6f9cecb"/><file name="Page.php" hash="3d64a543a9d8f5afc4a7c5ebb7fb1e56"/><dir name="Wysiwyg"><file name="Images.php" hash="b25bb43610442ee5fcecd77696d27a99"/></dir></dir><dir name="Model"><dir name="Adminhtml"><dir name="Template"><file name="Filter.php" hash="91a633f687233966724003d6c8ca6b68"/></dir></dir><file name="Block.php" hash="cdb0877ce8154c7fc9289d8f88145423"/><dir name="Mysql4"><dir name="Block"><file name="Collection.php" hash="da313a2687e3b734e5514d47d3f5b2b7"/></dir><file name="Block.php" hash="d74eeb67029e29da29bc597acf108188"/><dir name="Page"><file name="Collection.php" hash="ceb766207962e73f2a02ba7a23322b5d"/><file name="Service.php" hash="1058f18c3534d9149a641b917f9a3a9b"/></dir><file name="Page.php" hash="04138c11bbbed349943fecaf7e200d6f"/></dir><file name="Observer.php" hash="f3a4c7c074677ed0101861ca087275a4"/><file name="Page.php" hash="51418776f947994d3608be03a8d84768"/><dir name="Resource"><dir name="Block"><file name="Collection.php" hash="70bb70746439849a8ba28fc3e2f483be"/></dir><file name="Block.php" hash="b22aa29b7947f8d602a26aef38c77cf0"/><dir name="Page"><file name="Collection.php" hash="69057e31451ef04b92ebf6c1682601fd"/><file name="Service.php" hash="efa358cdad063029d8fd04dc53c0376f"/></dir><file name="Page.php" hash="ffb2f968c1f08f8e7841d9ab4645edae"/></dir><dir name="Template"><file name="Filter.php" hash="d107b19078a69e3404fc569cf485dbd3"/></dir><dir name="Wysiwyg"><file name="Config.php" hash="b6ec6e1377c340eaeb83d7a32ac3bb8d"/><dir name="Images"><dir name="Storage"><file name="Collection.php" hash="46efd5a245d1820ef3804cb8a26420ae"/></dir><file name="Storage.php" hash="5145bb4efe11277cc53b9b30ff0e5cc9"/></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="3f1f3d576126977265321eda18c2bb49"/><file name="PageController.php" hash="f0c715192539226906d3ce01bbee4ab2"/></dir><dir name="data"><dir name="cms_setup"><file name="data-install-1.6.0.0.php" hash="bc49da8c6f539fa236aefca2f68171cc"/><file name="data-upgrade-1.6.0.0.0-1.6.0.0.1.php" hash="174c8ce8031d1e1e7e14252c502421f9"/><file name="data-upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="e8cd1e4ad66e7492f498ab20f3abae8c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2856e9933d867318ff8b96f9ef3ccb40"/><file name="config.xml" hash="4bf93b88faa4fc90885cd43b51ab8b05"/><file name="system.xml" hash="d11ec9373c94da03f18100a248a12b5d"/><file name="widget.xml" hash="2c0c8f0ccd137e2167a367e19231a839"/></dir><dir name="sql"><dir name="cms_setup"><file name="install-1.6.0.0.php" hash="951e550832696995ca7db6e50b76b89c"/><file name="mysql4-install-0.7.0.php" hash="3dbc2f19304283a084a88d30907ff314"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="c2c8b98a04ff58e4e2088b1460f3e1cc"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="e3a934d93d1e38c76543ac106b82c6ad"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="701fc6f9f7e749d113255aa68107296b"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="a8774786b34e87f171428aeb8d3a419b"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="a18f5a93bbc03dbddfe96d5eb0928ff4"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="b82f611d0b49508d181e03a4bffe3968"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="d8c391f28cef8488e819cd6385c6eb9b"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="70dc834e54a738e6a068b852b1f8c584"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="0f1595c6bb7f247623bbdbc7db7ff603"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="324073c7fb6e8dde3387835f99b47535"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="f26c1face16c3ccbafeff8ec5bf7094c"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="b6eed60749b6540e70dff21cdb950520"/></dir></dir></dir><dir name="ConfigurableSwatches"><dir name="Block"><dir name="Catalog"><dir name="Layer"><dir name="State"><file name="Swatch.php" hash="68c0c2ec35b8ff282fa6f560e7f1ada1"/></dir></dir><dir name="Media"><dir name="Js"><file name="Abstract.php" hash="e88eaba835ba298fa215a7a4d5c957d3"/><file name="List.php" hash="b48ea1505ca5204d62f48e32ee80640d"/><file name="Product.php" hash="4fb403ffe236e98bbb107638428e403c"/></dir></dir><dir name="Product"><dir name="List"><file name="Price.php" hash="72f20eaa031a239e85e7504e68a5c3ad"/></dir><dir name="View"><dir name="Type"><dir name="Configurable"><file name="Swatches.php" hash="04f3bcfe21d1bd482c51c54c8aa97ba7"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="3a715ffda5107de9be1889a441568aeb"/><dir name="List"><file name="Price.php" hash="9338164655aee6d91d69c2d0c0e19e23"/></dir><file name="Mediafallback.php" hash="738b5a138c273b6c4e021e8f8f86ec88"/><file name="Productimg.php" hash="441ebcb9a0a0d320ccc7ca34ac8dcb30"/><file name="Productlist.php" hash="fc962c063fcea86108309d6df79190c7"/><file name="Swatchdimensions.php" hash="bb21de54e3c87a9ca7075869c372e0a4"/></dir><dir name="Model"><file name="Observer.php" hash="103dfffc8b189944337b367afa5dcedb"/><dir name="Resource"><dir name="Catalog"><dir name="Product"><dir name="Attribute"><dir name="Super"><file name="Collection.php" hash="0bdd9ca22cf63817056cb4fff18bb4bd"/></dir></dir><dir name="Type"><dir name="Configurable"><dir name="Product"><file name="Collection.php" hash="f975a63851234ac187d215d7a4f56b82"/></dir></dir><file name="Configurable.php" hash="ebe3e3dbd052453a062740c47c95120d"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Catalog"><dir name="Product"><dir name="Configattribute"><file name="Select.php" hash="15e78dac56542709170c1fc52acc6700"/></dir><file name="Configattribute.php" hash="094d0a9546e36006e5f474e0de220f36"/></dir></dir></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7a09e37524e0177f99d5152c22d163da"/><file name="config.xml" hash="868227b573099b33060b4006caf0bf4c"/><file name="jstranslator.xml" hash="77f02485b3ab5c0e969b5b8743080b5a"/><file name="system.xml" hash="be14fad46886d2a72fb8a27dfac51837"/></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="cdb9381d7a3a9958684f4d4ed2410334"/><dir name="Tab"><file name="Abstract.php" hash="e334fff7715f08d2eb32bf0bb6332126"/><file name="Authors.php" hash="7c0da39bbd5dc5d7d81eaf7a5a6af300"/><file name="Contents.php" hash="4356f221f09c4ddd5c34e2a3132dcbaf"/><file name="Depends.php" hash="5887983acfa04c00e9822488bbf2c23d"/><file name="Grid.php" hash="b9cc8a7d1cc4f277ea10f0aee2ec788b"/><file name="Load.php" hash="8e25ad7028d6153ef14a96f6f3ca656f"/><file name="Local.php" hash="e29a881ace6fe58b6979aaacaa673477"/><file name="Package.php" hash="0cfb6bb00929030d680e6cd4f5b6beae"/><file name="Release.php" hash="a73d0a9489a4c9030999875c2d16dfd5"/></dir><file name="Tabs.php" hash="8356ce97e05d78822536c6a8bf7efbf8"/></dir><file name="Edit.php" hash="714af3c40e26323c6f5abf1a8546fe95"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="b2a66818f723c0baa74a47b5c4fa4ea5"/></dir><dir name="Model"><dir name="Extension"><file name="Collection.php" hash="3747b27f2c0383e138ea898f984068d2"/></dir><file name="Extension.php" hash="b3e808c324a354e632d938566cd65593"/><file name="Session.php" hash="83321f9e79643266ddd763a3a702f8c2"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Extension"><file name="CustomController.php" hash="8a4c9e9161e3f4d03ed7058f879d4465"/><file name="LocalController.php" hash="32938ccd079f27b5e2ad4d96acde6123"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ba2d6fa47dda89417a1661ba6f6528bc"/><file name="config.xml" hash="c1b5dbcc219ac320a895659f5afc0884"/></dir></dir><dir name="Contacts"><dir name="Helper"><file name="Data.php" hash="fc8c76ff8afa6fe4cf85329a350aed35"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="6afd2f3eaa8823b8a7d952a203d210f3"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="23a8dc980b41f95f7286896b3a09ad66"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6789eddc6f2b4f4e44efa8de10704f35"/><file name="config.xml" hash="06b52882d60ca3358ed0e01bd9e3185a"/><file name="system.xml" hash="52cf021b9c0aab905f32b874e413f9f5"/></dir><dir name="sql"><dir name="contacts_setup"><file name="install-1.6.0.0.php" hash="7ee5562569d41719b95923c92623f826"/><file name="mysql4-install-0.7.1.php" hash="1d5f4873ff08a538c3bbd1879d594ae5"/><file name="mysql4-install-0.8.0.php" hash="f331a208905275a2065aeb24dbaec8cf"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="316c9cfc4c81d1799c440a60493a4591"/></dir></dir></dir><dir name="Core"><dir name="Block"><file name="Abstract.php" hash="edc0ee18da691761dde31a613f6640a9"/><file name="Flush.php" hash="c20785e1cadaf8739519beb208b31f24"/><dir name="Html"><file name="Calendar.php" hash="c82fadd9ab2a875bdba006c609d83d4a"/><file name="Date.php" hash="95d49613ac71023717e32113de68dee9"/><file name="Link.php" hash="1426c1af9d755567d97985dd18122ca5"/><file name="Select.php" hash="677d8e98b4cb8ca2a93581d67cb481ee"/></dir><file name="Messages.php" hash="eac529eed16b1bbf47ab10db60442a86"/><file name="Profiler.php" hash="d31f3c6395b2912e548d477a45c5d185"/><dir name="Store"><file name="Switcher.php" hash="415d3fa4b84684fabb08106585489747"/></dir><dir name="Template"><file name="Facade.php" hash="aaa3f6b58c7ca940f968f0a5a3c75e6a"/><file name="Smarty.php" hash="e0503f50490908b5860f1c58bfd18606"/><file name="Zend.php" hash="57ceaf7e4855bac62ecb77ec8bf93bab"/></dir><file name="Template.php" hash="9e8edeee071b84ff7e6fb636a61fd276"/><dir name="Text"><dir name="List"><file name="Item.php" hash="a7d5698ffceaadb373aa2b1233236ffa"/><file name="Link.php" hash="6ffb7165581a10239a56e584e9868b27"/></dir><file name="List.php" hash="6e3f1c83271a306bad23ad6ff0f8d6f7"/><dir name="Tag"><dir name="Css"><file name="Admin.php" hash="94bd166aa8d1a272a0280f41f1667fb1"/></dir><file name="Css.php" hash="661dbe86a0f077cb58b4c171c0aba181"/><file name="Debug.php" hash="39d919aa752c9efe0df0289dc0eae2cb"/><file name="Js.php" hash="79a243528ef224f138840b6cfd67ac5a"/><file name="Meta.php" hash="f817c97fa3293f5af3b090972537afe8"/></dir><file name="Tag.php" hash="4519c6e362de2a79f184d47ffe3630d1"/></dir><file name="Text.php" hash="f06ae4b3130f776f17d0c3f252fd12ef"/></dir><dir name="Controller"><dir name="Front"><file name="Action.php" hash="34de94053f9bced14915e8c09e40957b"/><file name="Router.php" hash="28c85d6153b05dee30c5d00d17312da6"/></dir><dir name="Request"><file name="Http.php" hash="b88f7dcd8f9300fec6188d1e228ea078"/></dir><dir name="Response"><file name="Http.php" hash="ff66297573126d656cfbfbc103268239"/></dir><dir name="Varien"><file name="Action.php" hash="25e7833fe501427583b9cc5a2d531ac3"/><file name="Exception.php" hash="f396e81903dfcf7f699f962663696d86"/><file name="Front.php" hash="4295201822daf9058cba300a54339ecd"/><dir name="Router"><file name="Abstract.php" hash="af6e44f74a7f0efd2aac392f86f4e104"/><file name="Admin.php" hash="c9da62eb398c0c4833f086bc6021fc60"/><file name="Default.php" hash="07fd8dc8b5e9c84efd115cdb9770b374"/><file name="Standard.php" hash="a18fe2f190c4a0e9735e260d78048560"/></dir></dir></dir><file name="Exception.php" hash="c533c09b1ec124a466b508d27b5ecfe8"/><dir name="Helper"><file name="Abstract.php" hash="38b3334df4660f7877bb736dd0230734"/><file name="Array.php" hash="13e6c97aa24c0292eadf199e2d3e6331"/><file name="Cookie.php" hash="f92047e4097bddcd25f057a5aa1a77d2"/><file name="Data.php" hash="f13da9defa175851be4c1e4671f4ab15"/><dir name="File"><dir name="Storage"><file name="Database.php" hash="57769a46cb685183713ae4888a18ce17"/></dir><file name="Storage.php" hash="b36e27ba0a2eda8039573c4a46f493da"/></dir><file name="Hint.php" hash="a02e0b79ba4711001d241e67e8eea9f3"/><file name="Http.php" hash="c6f118771af7ada5c569a823936c7d3e"/><file name="Js.php" hash="b724dc4f511b6d83af51653b59eab4e4"/><file name="String.php" hash="78be6fd1eca2ea820305d03c1185729c"/><file name="Translate.php" hash="872d9ec19dc8b9d55ad15aaecd048e5a"/><file name="UnserializeArray.php" hash="57c981ebe6423175100f7cd03ca63e79"/><dir name="Url"><file name="Rewrite.php" hash="c103422ee16348216a1fd42d9a70949f"/></dir><file name="Url.php" hash="f367f3aa0ff05e9b95b27e06dba46b32"/></dir><dir name="Model"><file name="Abstract.php" hash="695b544ad07193c6cfe2418311230b8c"/><dir name="App"><file name="Area.php" hash="879e45d5dafa78078e0dd7ad727605c3"/><file name="Emulation.php" hash="4c729f8b2a5dc8b419bfbd05cdc010b9"/></dir><file name="App.php" hash="20d34619ad713b56021069a710d24da8"/><file name="Cache.php" hash="289e338d47364632dc9288e8d5ff0347"/><file name="Calculator.php" hash="31b47bf1d4a5b892738256d372ddb4fa"/><dir name="Config"><file name="Base.php" hash="b8bc3e99a89607a4efd29202b44b0472"/><file name="Data.php" hash="2b33c57aa189626e77e04381060ce9e6"/><file name="Element.php" hash="a5419a0ab3f8898095268907cf0cac6f"/><file name="Options.php" hash="eef0664dc80b93453c42fa1dbf7978d4"/><file name="System.php" hash="13cb6a682e162b50efcc753e22e10c03"/></dir><file name="Config.php" hash="8e373d483081810bda5cf141f271056e"/><file name="Convert.php" hash="18696600aec89d399cc8e250ee4d00eb"/><file name="Cookie.php" hash="4714ff56635e45854ecfe6c0355ba620"/><file name="Date.php" hash="ec1ada91e12f50ac08c69e57ec45da04"/><dir name="Design"><file name="Config.php" hash="188636948698ea64d7eb4b583e3f1a5e"/><file name="Fallback.php" hash="37fec1a90cb4884b9a119f25206806cf"/><file name="Package.php" hash="386303ac962fe2ea7700a0ccd6d5f149"/><dir name="Source"><file name="Apply.php" hash="35cdb63c7401b7fa7be0d51b3340859c"/><file name="Design.php" hash="18b2c51821bef1f2f4591d980f80b0fe"/></dir></dir><file name="Design.php" hash="c4d1eeacbaf61a0c4ae257a95f75da92"/><file name="Domainpolicy.php" hash="55872e0468e1a42d1dd89ac29d7a2ec1"/><dir name="Email"><file name="Info.php" hash="6d2bafdee51d05f5da2f87dc5602ec70"/><file name="Queue.php" hash="862cc6a388c9b72527e38a1ad5b0dd82"/><dir name="Template"><file name="Abstract.php" hash="427b2f18b2d6ebca7f2aac8ba85160df"/><file name="Filter.php" hash="aa1870c42b9fa3baf3cd17d281e1072c"/><file name="Mailer.php" hash="3c77ef8aff1c9218970a0bc6a9e30172"/></dir><file name="Template.php" hash="7a6f811aafe25ce4cfae040e099bf863"/><file name="Transport.php" hash="8eb108d72bd330e20b66afd62d904fa0"/></dir><file name="Email.php" hash="78dd73224072fb6547a218a104abe887"/><file name="Encryption.php" hash="2911fc2a793ea792e144614f22d69387"/><file name="Factory.php" hash="c9d9db6a43d61edd0e59cefdff2cd131"/><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="b8c52d68754745bfa37d2f2443a87515"/><dir name="Database"><file name="Abstract.php" hash="e2951151d8a9f46335b784557bc87bda"/></dir><file name="Database.php" hash="db27a6b9cce2e125992c7550c9b3ff72"/><dir name="Directory"><file name="Database.php" hash="ef5c34daa3e287d0f2f4ac04b69d3bd5"/></dir><file name="File.php" hash="39201fe1e06542a788c212f37c54a0da"/><file name="Flag.php" hash="3d7393aa09042bd4a277297a8158d400"/></dir><file name="Storage.php" hash="0be89988936c9b5c8781ecc038907fd6"/><file name="Uploader.php" hash="ffa4b2d3b6b5a9d646616ad5f94f5a18"/><dir name="Validator"><file name="AvailablePath.php" hash="2d4fc0579755f207c390e06081e5a375"/><file name="Image.php" hash="4d6a61efe3f5868ffbff58a5d30c71b2"/><file name="NotProtectedExtension.php" hash="1db942ab499cd3be53a6bcf310e45451"/></dir></dir><file name="Flag.php" hash="e787605aa1582ffc85371dbb675a895a"/><dir name="Input"><dir name="Filter"><file name="MaliciousCode.php" hash="8f54a865f6ac2e548911e11b93ecba81"/></dir><file name="Filter.php" hash="3acc5da092bff7c58d4e04d7d408a9f2"/></dir><file name="Language.php" hash="79221faa5359d31326bf1b1983c6ac5f"/><dir name="Layout"><file name="Data.php" hash="8c095fc875ab1f8659be5cf697695a3f"/><file name="Element.php" hash="54af7e9a43caa7f46bc4bed8e7b57a55"/><file name="Update.php" hash="bf143b6942445929f348678dab3a7cca"/></dir><file name="Layout.php" hash="6992dff1369205c4d63da3c0f3d18c42"/><dir name="Locale"><file name="Config.php" hash="c126a5723210a8ec7a53c670919acd60"/></dir><file name="Locale.php" hash="8f3227d5a710630855aa900f32fe8231"/><dir name="Log"><file name="Adapter.php" hash="6ab9de01f6ec8efc92e242314c28cd0f"/></dir><file name="Logger.php" hash="7bf6970727cd6c6e7777300130d1da5d"/><dir name="Magento"><dir name="Api"><file name="V2.php" hash="9300a839c60ada30fba4ca6cc8fb173d"/></dir><file name="Api.php" hash="dadd89edc2d57ca42395b7a4b613b0c3"/></dir><dir name="Message"><file name="Abstract.php" hash="88253eb2854f31583c921f94c26e1652"/><file name="Collection.php" hash="a771a49f8447320dd2fb31fd2c55c914"/><file name="Error.php" hash="fddc7b2afba3c6f75a08fa2783d89d6b"/><file name="Notice.php" hash="203a96d86350599741c6f26054e52be5"/><file name="Success.php" hash="e575de8ab611b8a14fdaa7320a0c2c2f"/><file name="Warning.php" hash="672f607a57662837f9b55f48a36db6e2"/></dir><file name="Message.php" hash="4867491a0c875041e4a43f1fe1f59e7b"/><dir name="Mysql4"><file name="Abstract.php" hash="1e078f6b3e58edfd264d809983977044"/><file name="Cache.php" hash="b8945dd5d5c5fb50049862282ef9a1f9"/><dir name="Collection"><file name="Abstract.php" hash="10e4f48cd0dc9e6d2109d6b8a30bf50b"/></dir><dir name="Config"><dir name="Data"><file name="Collection.php" hash="32378cb58c332dc40a30ead52c630901"/></dir><file name="Data.php" hash="8c903ffebc2518be3ad6199418c17877"/></dir><file name="Config.php" hash="2e27f5daa019ea6ca7830f1b3368d193"/><dir name="Design"><file name="Collection.php" hash="bf8a06e046bc3f69d19b7228d3d52a0b"/><dir name="Package"><file name="Collection.php" hash="69c509908c344050a2035fe5c42a05c8"/></dir><dir name="Theme"><file name="Collection.php" hash="911b5db07c655986233354fca3b4f2d6"/></dir></dir><file name="Design.php" hash="56a876db3e6dc2dec34f1a798311bf79"/><dir name="Email"><dir name="Template"><file name="Collection.php" hash="e8ba5c613a2037851954ad5e83a925f0"/></dir><file name="Template.php" hash="16b954727bd8b14c80e7d6492e55adaa"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="7fb3e3ef379ea963dea07e20aa85a94a"/><file name="Database.php" hash="4e1bb5639e15ea36085d246ac8c4d645"/><dir name="Directory"><file name="Database.php" hash="06f4b19b344870f2cdc4dedf17710117"/></dir><file name="File.php" hash="3853698b4e4cd021cf30d5c14f9e250c"/></dir></dir><file name="Flag.php" hash="34c199fe09a9bbb4c975396075366b9a"/><dir name="Language"><file name="Collection.php" hash="6d5b356b725270bc35630d0018fd085f"/></dir><file name="Language.php" hash="353da97dea8bd634abc403e4a95540cc"/><file name="Layout.php" hash="ae73b12498f8a183e7ea02803273ec0d"/><file name="Resource.php" hash="f402b5d3c97bafe898c78cdeb030eb77"/><file name="Session.php" hash="e37a6c383e3e2ffcbcd46f61d6233156"/><dir name="Store"><file name="Collection.php" hash="eca9a24e542c28b6e57d4afff4481412"/><dir name="Group"><file name="Collection.php" hash="3e6830967d36560c0924623bd909a8ae"/></dir><file name="Group.php" hash="781410d69489e96cf24a4bb233e4c6de"/></dir><file name="Store.php" hash="059d278191231cb4880299bdb95a777d"/><dir name="Translate"><file name="String.php" hash="b119b1a8c1a08b194a3b66f25c553600"/></dir><file name="Translate.php" hash="7e172b99d6a2c7f7c4ed9c2545d98202"/><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="9868e898f7c987bb930a31da49bf883a"/></dir><file name="Rewrite.php" hash="eec92dbd2f80648311c340de0ef4e590"/></dir><dir name="Variable"><file name="Collection.php" hash="acd0c28c5bbaba48fa8808097bb676fe"/></dir><file name="Variable.php" hash="70399e215ef281af34112915e9c01c97"/><dir name="Website"><file name="Collection.php" hash="cb5b29e314a2080b124a50acea9fcdf0"/></dir><file name="Website.php" hash="476d6420625f5d44e74f20d1162e9b40"/></dir><file name="Observer.php" hash="57fabb31d05f0c57d63136bab6e284ea"/><dir name="Resource"><file name="Abstract.php" hash="f60bc5a2f5705a7850bfc3a43694a36e"/><file name="Cache.php" hash="4dee69ffa40080c0d0e6416c965f6ee3"/><dir name="Config"><dir name="Data"><file name="Collection.php" hash="766aae4a993676b0663327a50d86fc7d"/></dir><file name="Data.php" hash="aa8d6957a183939bb3b99d75debf6172"/></dir><file name="Config.php" hash="9408810ea25765e692d8b4cc5067ca1a"/><dir name="Db"><file name="Abstract.php" hash="74b20c5fd86441c7fcdf011e81b32372"/><dir name="Collection"><file name="Abstract.php" hash="c6039490538afaa2061c19221cacb685"/></dir></dir><dir name="Design"><file name="Collection.php" hash="714be58c3007d5a4006a7c0e14997203"/><dir name="Package"><file name="Collection.php" hash="215cf557198d9cf584e873c6829b45e4"/></dir></dir><file name="Design.php" hash="931013a8831e07fcacda53fce3941592"/><dir name="Email"><dir name="Queue"><file name="Collection.php" hash="52f922770addf48910ffaa61380042b1"/></dir><file name="Queue.php" hash="b49a064ca2d0eb42d90603cc41027108"/><dir name="Template"><file name="Collection.php" hash="e66a724a9d83881a81b01fe232450b2a"/></dir><file name="Template.php" hash="c99e3778175c0ef9b34fb5ca99226c39"/></dir><dir name="Entity"><file name="Abstract.php" hash="5aca6f554d31795b7b48cf282ae03a33"/><file name="Table.php" hash="85f19f5d8c16978f8618a175ee3d2090"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="bd14b6cf43dddcf1c399e5d6c8aefe24"/><file name="Database.php" hash="6f796b96fddfb7ddc0a543f9420d5648"/><dir name="Directory"><file name="Database.php" hash="a2729590d8122571f45a8be738d31282"/></dir><file name="File.php" hash="c6a19e3117c057f98258006d04ae0e5a"/></dir></dir><file name="Flag.php" hash="ed3cf855b63936540fa1bcb6ef366156"/><dir name="Helper"><file name="Abstract.php" hash="57279fc88854d761b5c950e02949db34"/><file name="Mysql4.php" hash="a9c2de2c75a0dc4a052bc3dc25f6064b"/></dir><file name="Iterator.php" hash="ec5bf9ccb53ee6315bf95ba5c7118093"/><dir name="Language"><file name="Collection.php" hash="5a7126f75df608151b8fb8bc2caf2131"/></dir><file name="Language.php" hash="69dc6a910b7430b5b92b3d2ea16557aa"/><file name="Layout.php" hash="202bf646180511808ba332ef2148ca09"/><file name="Resource.php" hash="43fccf4f6ce7d955e7a09b01a687e7c1"/><file name="Session.php" hash="fc5a9129aba7060864489f6ec9f46512"/><dir name="Setup"><dir name="Query"><file name="Modifier.php" hash="ae2ee2ea6a3db11b0117d752e31b208b"/></dir></dir><file name="Setup.php" hash="65fbbe659f51047b6e305c20d2614cb1"/><dir name="Store"><file name="Collection.php" hash="3025c54ac6ee1b23cee071aeb1936c76"/><dir name="Group"><file name="Collection.php" hash="ea79d58df33070191e28ecf30058ca4a"/></dir><file name="Group.php" hash="2f72d2652f4aa2e0d5db887c0b92ca5e"/></dir><file name="Store.php" hash="8b264d0ce58217ca17c931bea48f0e0c"/><file name="Transaction.php" hash="9a912def4c5703b6420d8c7624604526"/><dir name="Translate"><file name="String.php" hash="c3f4cc508056a672a479c920bec20914"/></dir><file name="Translate.php" hash="6fb0ccd00effeeeb63a49e4f43e2ada0"/><dir name="Type"><file name="Abstract.php" hash="5df8546c2d23b70f2c1cde1650a02520"/><dir name="Db"><dir name="Mysqli"><file name="Setup.php" hash="fd45312eea4b16775782d8542bd69db3"/></dir><file name="Mysqli.php" hash="95babdbeb591b3f3af888d2d9cf6e7fa"/><dir name="Pdo"><file name="Mysql.php" hash="a3cd3d93a107ea7952ed0991c7926ec3"/></dir></dir><file name="Db.php" hash="285b000ac92a8e5a67c62e0b05673b5c"/></dir><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="9850a8c2839b9f68f229c043fa3604bd"/></dir><file name="Rewrite.php" hash="69f4a283136a2a443f5fc54177ae8498"/></dir><dir name="Variable"><file name="Collection.php" hash="13d19f3d119d4bb56fea9b0274718868"/></dir><file name="Variable.php" hash="a42bdf56481b8ad842ab1440bd56de47"/><dir name="Website"><file name="Collection.php" hash="23caf87a0cdbfee1abf6b398c170d3bd"/></dir><file name="Website.php" hash="14acbd9d4ba152ade010585f0f388e4f"/></dir><file name="Resource.php" hash="ad7bf9e86e35b75a25d9e3023b1a6847"/><dir name="Session"><dir name="Abstract"><file name="Varien.php" hash="d92217ea6b69281977b01d7be9439fb0"/><file name="Zend.php" hash="4821d101778be6577fbfff8e3fd252d0"/></dir><file name="Abstract.php" hash="707649689168a7e169cd507628a495c0"/><file name="Exception.php" hash="b321d788dde945c4a8943682fda3715f"/></dir><file name="Session.php" hash="997890aefbe5eeb3a2d39f998d28c0c1"/><dir name="Source"><dir name="Email"><file name="Variables.php" hash="a10d4149810a58d1752bd5b17fbda092"/></dir></dir><dir name="Store"><dir name="Api"><file name="V2.php" hash="297e2f767b7d482b9b7da4f70f20b4dc"/></dir><file name="Api.php" hash="28bf70c11f3d09e78eac20dea94a96f6"/><file name="Exception.php" hash="dd354e23c3406d41a53d3aff886f8ac4"/><file name="Group.php" hash="6bb9a7c61af5fc7f0bcb265fc92c39fb"/><file name="Observer.php" hash="a3016632acc3bdcd5a097ea4d9b111f5"/></dir><file name="Store.php" hash="e0fb2b6daec0514631a40c4bb023d252"/><file name="Template.php" hash="69df39e9b8a7431de3f99fb47a342920"/><dir name="Translate"><file name="Expr.php" hash="66c46d90b602d43ff0ebb00824cecd07"/><file name="Inline.php" hash="4c33f9ca847fb4035d5c8b993b1066f8"/><file name="String.php" hash="4647bca2cf4e101bca1eeee85daeeebc"/></dir><file name="Translate.php" hash="4ab8d34bd88069431ae8294c252242b5"/><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="0a3c9a7aa92bbf225997a6cf7f00eacd"/><file name="Request.php" hash="a75bd200da8788625c03c40faf80c75c"/></dir><file name="Rewrite.php" hash="420839bcb3baf49aca639df56ef5597e"/><file name="Validator.php" hash="69c34dedbd4fd32575419b656e0ead14"/></dir><file name="Url.php" hash="bc1e9c77248bed49e0c3085a0e839aa5"/><dir name="Variable"><file name="Config.php" hash="fd27c3c419e7871635ae6c4009e58f9c"/><file name="Observer.php" hash="b52f6129b01e4e1b0c50e8dd9213a85b"/></dir><file name="Variable.php" hash="46afad77e3cd079de9a10e4de2f09f60"/><file name="Website.php" hash="81f4c04ab91ea9b02f6277c4775e1009"/></dir><dir name="controllers"><file name="AjaxController.php" hash="92474328ef66300166fecd475f9982af"/><file name="IndexController.php" hash="23b3f5f480ab1c81458306aa1359bc3f"/></dir><dir name="etc"><file name="api.xml" hash="42a4894dd5b648d55fc2a057e7669332"/><file name="config.xml" hash="6be956117f7fae415d9ee3f53bb2941d"/><file name="jstranslator.xml" hash="25450c6d4f1ac7b7cf5728e02087d22d"/><file name="system.xml" hash="12578c37db07b6210448e1eadd1a97f3"/><file name="wsdl.xml" hash="79501d6ccf39846b5dd551e85880dcb8"/><file name="wsi.xml" hash="31fa195d527181c946019bcd44d819d6"/></dir><file name="functions.php" hash="644bd073184b870dcdcb96813a9b44f8"/><dir name="sql"><dir name="core_setup"><file name="install-1.6.0.0.php" hash="82d3eb38f917c551b2a28667be3486ac"/><file name="mysql4-data-upgrade-1.6.0.2-1.6.0.3.php" hash="0dd16d1eb1df53cf1f4e67b2964a95bb"/><file name="mysql4-install-0.7.0.php" hash="81839bb121b4aba1b544d56fc40a61ae"/><file name="mysql4-install-0.8.0.php" hash="195af144c51ab0e03d7bbb5efe4495bd"/><file name="mysql4-upgrade-0.6.26-0.7.0.php" hash="671c4be258b4188af2616602cf801f63"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="d22091168dfa8cc21ec1be007668b0e9"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="cf088167a0b996a149681df3c3660505"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="d7997cc173c4985beb2516a17ee1c40b"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="453d8041523980b8ce852c4e1f51874d"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="ec79d25bb9e6e7c69f5c38954900844b"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="598100a4f24242b83a01e59d545a98cb"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="59f7348db03779d7a12ce8d92c5201e6"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="5c8a8c443f4418187cf1d5204d065f03"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="f719492480caac4725b2185a5b6fa516"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="7f570c7fc88bf54d74741a647567803d"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="24e4a7a605b0145c950df457cd23c417"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="e512e19fd69b610ef3dad3304e0f0197"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="7cbcb845a688bb3668ca4c4adeb2455a"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="e7bfafd831c4e826799610fb3f01621a"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="2c125fab1d4c13902defefd5384c89b2"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="9e4d8f7290a8974ed17e8dec61fbdb0a"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="614abca2eed72111c65eeb48a9f8f0a1"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="c7870e25d5b0622b414757ebb2d0d458"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="f6333b602267698a7ff8ce547deec53a"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="851497fab7c02bcf4dd12ad8b6fabc2c"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="3794b80f80e7cbf681ce203c4cb4e288"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="a1adec1b9397533cb3e7717896795889"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="3ee69cba745ec91fd3b8f89fc95afd98"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="33c1c872629e5b686707886c437de647"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="53675a8aa8692822f1b93c393cd064b8"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="faf73e04e27f76f86828ca9c77d50d57"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="e32aa6a22fcc07e692b498fc91f7d06b"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="10f198e6de144487f661996a270d105b"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="804a433b8d024631b529cb5b4300b254"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="d93e030d2060799f5ae56867bb24f644"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="119085e4b14f0d97c1277006eb595a2a"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="740e13f6ff329eceae542b4139a1e6ef"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="5057b3772d17819dca8741c4b16e1e3b"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="a1362939a92c7394a5a98e2316ebb77f"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="da3346b0a0569fed7cbaf51b0296e788"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="05ae1864ed86eaf1e1b3c369767aca85"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ca65e4a5104ca3a27211541a112b5fce"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="43de19d0194473cd652d03a9c7aa5d1b"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="94973964e31b0325698f70a0dfbbc5cf"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="05e29e034eef9b9db8de1f35d79a915b"/><file name="upgrade-1.6.0.5-1.6.0.6.php" hash="26190c37cc49c7a3c103f47459123064"/><file name="upgrade-1.6.0.6-1.6.0.7.php" hash="131c0dd0afe4303c6cc4b6f1f67c0696"/></dir></dir></dir><dir name="Cron"><file name="Exception.php" hash="19ed70425b8c4b5d68b2c93c538cda6b"/><dir name="Helper"><file name="Data.php" hash="46b8b87c633524622800767ed30c8edd"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Schedule"><file name="Collection.php" hash="049aebf9a763447e16a471b0bb8e4a3b"/></dir><file name="Schedule.php" hash="28a6e3ea4100e9dfc00da4f280ab2377"/></dir><file name="Observer.php" hash="72945b05d04c8fb2937cb817602dd2d8"/><dir name="Resource"><dir name="Schedule"><file name="Collection.php" hash="81a956586d63d4182b270722f0693ceb"/></dir><file name="Schedule.php" hash="b889301b39dd75cb4b9b471987f13ddd"/></dir><file name="Schedule.php" hash="d1fd1707f6c3ba3a19084094332b5184"/></dir><dir name="etc"><file name="config.xml" hash="a3bdf914b02f0c2b8bb39b09cde4a7e4"/><file name="system.xml" hash="f66528d7b5891bca6ae8f56a048f9e68"/></dir><dir name="sql"><dir name="cron_setup"><file name="install-1.6.0.0.php" hash="1a9530f9505b962466056a0ad9d04588"/><file name="mysql4-install-0.7.0.php" hash="da3a96f23f74c5da8538ba0bb395cbb7"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="f5340fc1382a252d2d9a018d76e69860"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="3c1e70bb2b13312f0222c98f2236a410"/></dir></dir></dir><dir name="CurrencySymbol"><dir name="Block"><dir name="Adminhtml"><dir name="System"><file name="Currencysymbol.php" hash="13de8397994dd9d5b029122e465cff36"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="ae52ec3fd0f43b983fae92c66bb3863d"/></dir><dir name="Model"><file name="Observer.php" hash="1514b4080d6ac3d44df02c2f4d4fe847"/><dir name="System"><file name="Currencysymbol.php" hash="367f05a245a6fa2006191090875ea55f"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="System"><file name="CurrencysymbolController.php" hash="3e363c56b108152cc367f385d715ca38"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8e1ca98fab2043dd49184480dbffad60"/><file name="config.xml" hash="b7b4a108ce86f8cb7e9c28ecebd4ea1d"/></dir></dir><dir name="Customer"><dir name="Block"><dir name="Account"><file name="Changeforgotten.php" hash="ba049e9c7100c8b52e7ba0a84fbba6d0"/><dir name="Dashboard"><file name="Address.php" hash="0e67f221f4debb2d3b6d7ea96f326ba3"/><file name="Block.php" hash="baf0d71fed51d3fea77061cd6bf46220"/><file name="Hello.php" hash="7ba5a1e49240bb183a3e3d4d8b7d0389"/><file name="Info.php" hash="327aa0cddf4d3608190d881e8832d667"/><file name="Newsletter.php" hash="fb26ae41c116e700cde34347af903787"/><file name="Sidebar.php" hash="dd4a752f78c39271960f4b4f7bea8215"/></dir><file name="Dashboard.php" hash="e24aa55c08d84168f209dea8ade8c9fc"/><file name="Forgotpassword.php" hash="d7fbf534c030ad31ddcdc184e9451dac"/><file name="Navigation.php" hash="336bbd6fc54367ad2082712e4fa39e9a"/><file name="Resetpassword.php" hash="c0106a1e5560e80acea90aa71281c0eb"/></dir><file name="Account.php" hash="89d12fad2690f0aec56e1a6207e7fa96"/><dir name="Address"><file name="Book.php" hash="61878595ff02257c8bce1c8d6f546d15"/><file name="Edit.php" hash="0e28b0acf9298421652b2e6d08977a54"/><dir name="Renderer"><file name="Default.php" hash="72250f0dc3b33b1dc3c543ebb5d60654"/><file name="Interface.php" hash="0ad5ec47c58a0d7f742db9b684affa4a"/></dir></dir><dir name="Form"><file name="Edit.php" hash="9562c84c0b5d83402b108f5cdb3453e0"/><file name="Login.php" hash="5ab8db300476a83166b573ccf07647fe"/><file name="Register.php" hash="83db89e6f3393473fbf6115cd5732118"/></dir><file name="Newsletter.php" hash="dbfff4176a294169b15c2b0c576a18b9"/><dir name="Widget"><file name="Abstract.php" hash="4e0b801f15d0f29caaf7c762acf18053"/><file name="Dob.php" hash="007c3f46a028d703814724006ffff22f"/><file name="Gender.php" hash="f0a310f94b5e0473034c6e7165f8dda9"/><file name="Name.php" hash="de63ed393df8921fb2400581d7eae516"/><file name="Taxvat.php" hash="fc946e719a1d9c0d2edb31886f6f8895"/></dir></dir><file name="Exception.php" hash="2cd6945b5ed0ad8df7cd85a49d78a4b1"/><dir name="Helper"><file name="Address.php" hash="fa3b5ecffa944623d98fca0a67bf9b90"/><file name="Data.php" hash="308af1bb76bb12e3be5f7fbb1a36cf0f"/></dir><dir name="Model"><dir name="Address"><file name="Abstract.php" hash="388a263eb0439fee9c51441c84855754"/><dir name="Api"><file name="V2.php" hash="6bf0f8eba6435f7ebcea18ad91d34e47"/></dir><file name="Api.php" hash="f90ad05f1ac4dc21bf3d92cfc2e7b8db"/><file name="Config.php" hash="d6299599ef6f5f9d530e465fd941f23f"/></dir><file name="Address.php" hash="dfc234e05162a88923cb767ca9557196"/><dir name="Api"><file name="Resource.php" hash="a14fea3220186103998adaf4b57b8d64"/></dir><dir name="Api2"><dir name="Customer"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="d47ba822ae1e95b77ef785c7cb96cf5a"/></dir><dir name="Customer"><file name="V1.php" hash="e797c9eb22747ea3e71c2081666a6325"/></dir></dir><file name="Rest.php" hash="2f28442734cd14534d443bcee45e532e"/><file name="Validator.php" hash="91aa97c13e626e980e232f124af9efe9"/></dir><file name="Address.php" hash="3755efd3e8e3a06e6cc32c59a99f4cb6"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="aa441da4c8df572193768e8742b63777"/></dir><dir name="Customer"><file name="V1.php" hash="9e69e7be2f9240c93e5060fdc4dc4c9d"/></dir></dir><file name="Rest.php" hash="18ee350a70e8513a5e53cc75a791a315"/></dir><file name="Customer.php" hash="5befc4d047aa0c5e801d467b765ffb8e"/></dir><dir name="Attribute"><dir name="Backend"><dir name="Data"><file name="Boolean.php" hash="50e105c6362e378831e654d6e4ead292"/></dir></dir><dir name="Data"><file name="Abstract.php" hash="5b090acfd6d305a515deb4fae4a1ce69"/><file name="Boolean.php" hash="36ffce040d93fc6dd538ba6a10e76992"/><file name="Date.php" hash="6affeb45326583837f3ccf01176bf9c6"/><file name="File.php" hash="859627aa0ddf3661636da6fdbc937dd5"/><file name="Hidden.php" hash="96794439fff400e64ae2582e73f8b123"/><file name="Image.php" hash="5516e2a8247303ca8b5a7dcb3971ef06"/><file name="Multiline.php" hash="88fd74dad82a134befd7476a07355ef7"/><file name="Multiselect.php" hash="cca7871c524d5af3c56713ee0f3e90f9"/><file name="Postcode.php" hash="cbacb1d97ee0162098b335ae98c2c650"/><file name="Select.php" hash="72d282c32b67e739c5985224d1db76f4"/><file name="Text.php" hash="1b8c1cf8eb6c4b9f9b0d507ed028696a"/><file name="Textarea.php" hash="880c202b4f0be6ed7816988fd446c3ce"/></dir><file name="Data.php" hash="f17d5484625b850aa64f228f863e1d0b"/></dir><file name="Attribute.php" hash="51404baaed25d0d4c319c91b1e609676"/><dir name="Config"><file name="Share.php" hash="0b2f6c6788189fcb1d149360fc5a2d31"/></dir><dir name="Convert"><dir name="Adapter"><file name="Customer.php" hash="8387be784199e0d9d4009a88ca96f462"/></dir><dir name="Parser"><file name="Customer.php" hash="ce1866fee5e5e493305e0634cac22b05"/></dir></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="d0c31450be733788bf643d19f3377380"/></dir><file name="Api.php" hash="6cda6e73e866124daff0245d44fb2529"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="6b2ea18d5737797812be7f94e6423844"/><file name="Password.php" hash="3cf7737075c32ba0ee7b9c96ae664c30"/><file name="Shipping.php" hash="97946940b52bc5bf4609c1a81ddab681"/><file name="Store.php" hash="460913bcb43a7413c8835222c8f6e8b0"/><file name="Website.php" hash="fa22ac3e632f8996c81ebf42b43d9239"/></dir><dir name="Source"><file name="Group.php" hash="bedf76351139e053abe693b1e3ff31f1"/><file name="Store.php" hash="4301bb76b08bd104e9abbe30620197c9"/><file name="Website.php" hash="e47b9ac2f2404b07e2a410ffddb080e6"/></dir></dir></dir><file name="Customer.php" hash="2709b08be0d60fc63d824b67f288e943"/><dir name="Entity"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="c586674918f2c7fe34c23a21714241c2"/><file name="Street.php" hash="7e62be1df1e2f49905464a071d5f4f9b"/></dir><file name="Collection.php" hash="6cc1d88be61a166e572b52206786b8de"/><dir name="Source"><file name="Country.php" hash="f26bc0992e0ba9663a826579e7ab57d2"/><file name="Region.php" hash="496d518d194227c43b8a38e1aa332599"/></dir></dir><file name="Collection.php" hash="e24efd5ef06f68f4e16d3a927c9bf2ef"/></dir><file name="Address.php" hash="fa20c0682c28e23d83440a253e7cc09a"/><dir name="Attribute"><file name="Collection.php" hash="1f1f14b8090fef6383f8933706834b53"/></dir><file name="Attribute.php" hash="8e7426d7bcd44a7eb23d7bdb81d7aa2c"/><dir name="Customer"><file name="Collection.php" hash="c1cf2b3f9c06d39ef03cef96eb8c95f5"/></dir><file name="Customer.php" hash="803119477ec441d906d778a29ac312bd"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="8f8e9d5b9ab0ecb41474aa20fd5267de"/></dir><file name="Attribute.php" hash="46e3b7ee9c4f7baa04fdbfdac91f93a6"/></dir><dir name="Group"><file name="Collection.php" hash="a043931a08752c5c134b1188ce53f2e9"/></dir><file name="Group.php" hash="4c3d43a2a67ddcb39810ccc3919b61a3"/><file name="Setup.php" hash="6d09a44f2ea9b30bcbb3b4187b63547d"/><dir name="Wishlist"><file name="Collection.php" hash="b0f1243606995f4566cab43ea382a2fa"/></dir></dir><file name="Flowpassword.php" hash="51dbb4bff0ed1a9f48801e1716963b22"/><file name="Form.php" hash="0611c43f216bf036f183dbcb871f82d7"/><dir name="Group"><dir name="Api"><file name="V2.php" hash="fcb5b8ae7d1a2301487ea250f5928566"/></dir><file name="Api.php" hash="38a3c4555e4f6ce99a1cc827ab0105ab"/></dir><file name="Group.php" hash="80266a178b82b73df3a5a48261bd585e"/><file name="Observer.php" hash="6c39370435d600e06b0e3f79ec9356a8"/><dir name="Resource"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="6ea9c7109bb908c1c16701ccd73f61db"/><file name="Street.php" hash="56b41f3598f4c2c7ecc6a50cd95325fc"/></dir><file name="Collection.php" hash="288898014091fe144e5be5aa4bc45561"/><dir name="Source"><file name="Country.php" hash="ecf0938d05dba823887fc5e42ef6a5b3"/><file name="Region.php" hash="9e5d1150cc866b0ef99cc4466b9976f3"/></dir></dir><file name="Collection.php" hash="62e4249595d599c2237cbc57408626f0"/></dir><file name="Address.php" hash="3c297046dee05e831eac396957560c2f"/><dir name="Attribute"><file name="Collection.php" hash="cec5d4d3d17ec365c5eede14fc51305e"/></dir><file name="Attribute.php" hash="dee4f6777a43c134e27f2391c8d7f1a2"/><dir name="Customer"><file name="Collection.php" hash="7b5d9cd11249df00d340041a0b852aa1"/></dir><file name="Customer.php" hash="923adee1384139de3779efbec6a49560"/><dir name="Flowpassword"><file name="Collection.php" hash="9a6b31348ccb3b93988b279e42874c1e"/></dir><file name="Flowpassword.php" hash="34e33c13df841331d38f975d157ff617"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="c1000bc8e247602d0c5fb5a1bce926da"/></dir><file name="Attribute.php" hash="3cfc0049cebbdccc1863ee1f61ec26ff"/></dir><dir name="Group"><file name="Collection.php" hash="39aad0e2cf150c90149a11364f3e79af"/></dir><file name="Group.php" hash="0561b1a41a79d41dd6eaa610d37e78b1"/><file name="Setup.php" hash="b651f710efd46ac98ad14be77f0207ea"/><dir name="Wishlist"><file name="Collection.php" hash="c78daf99710071c1bf3ff3809ba5ce1c"/></dir></dir><file name="Session.php" hash="eba960837f9272820dd3c811b4932da6"/></dir><dir name="controllers"><file name="AccountController.php" hash="aa2dad9193b607be6cebc21cf2d471ab"/><file name="AddressController.php" hash="d3ffca0137453b097ef75f108ebdf0fc"/><file name="ReviewController.php" hash="5656944b28a31cd5fa318199c07cbb97"/></dir><dir name="data"><dir name="customer_setup"><file name="data-upgrade-1.6.2.0.2-1.6.2.0.3.php" hash="feca7fac3cbe6654f8cf59d2ed646c54"/><file name="data-upgrade-1.6.2.0.4-1.6.2.0.5.php" hash="647832c4cd09cff9a99b328c049d02a5"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2a025de1b773e628b6383cf957112d06"/><file name="api.xml" hash="f5746ace8ff60e2461f9cad08594e33c"/><file name="api2.xml" hash="19e97f115c6ee92b42c7abe89391252e"/><file name="config.xml" hash="af6e6910a2467beb62a7fd3f0b963aa4"/><file name="system.xml" hash="74f061fbf26dfcf1949685dde0ba6b3d"/><file name="wsdl.xml" hash="b31ebf1de4a58469781b383f455991f5"/><file name="wsi.xml" hash="4c81aee30c525677be5c38e078b98408"/></dir><dir name="sql"><dir name="customer_setup"><file name="install-1.6.0.0.php" hash="9cef8f6136fc78f4b4d3e0e5da7ddd6e"/><file name="mysql4-data-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="55afca27596de569e3770cf271c7364a"/><file name="mysql4-data-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="0ec0d8821a7861ebc612e62824f456cd"/><file name="mysql4-data-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="7a01143a71377266c28d9a79111ea0d2"/><file name="mysql4-data-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="eb7a2f08b00a46c46ebc5e4b5e7ae5b3"/><file name="mysql4-install-0.7.0.php" hash="073a2b82243d03c3dee0a4f85663ba19"/><file name="mysql4-install-0.8.0.php" hash="7ec0e7a5d9184b60460e8cf7b0b1952d"/><file name="mysql4-install-1.4.0.0.0.php" hash="e8107158a2ea47d4f2a5b3d7dee113dc"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="aea4c668c5a489ddded79e52f6496ecd"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="d60059b785a0f8b72f6b95c4f0710056"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="ec3725165f64a86d3669b6016732922b"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="674d6662d10fee5b7d98aece6778c2b1"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="9d63d9358ff29f7d60211df5ce7bb577"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="3ed58dcede30962b9a7c5dacd0fc3676"/><file name="mysql4-upgrade-0.8.12-1.4.0.0.0.php" hash="a43e736979b89f5eb2c9868688d62685"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="4c09ceb496ab6b112379412eb395c367"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="605df300a032c68e500cd3407694d6b8"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="b9a1fe49d58299dd27a25b06b066a9e0"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="551b98a30b9d4fa404cc3cd7cec38703"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="c19d75ab3ebf6c21575ce74cb9d04b9e"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="84ece67207689326a459d78c57f045c0"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="a4c872f56e6a186d3b7b3dba32e22b58"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="b69b349e40e9cac1027398c02a227749"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="4dea91739a66127219b3cba94e2d1bd3"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="6c294826144b6697f7fbb06d5f2702fd"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="c44b18c89b65bebd89c3db29e7d55e55"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="12881b3353bdf774c84e4ade1308ec4e"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="815e16a120442f793b6dcfe60dba594d"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="22d7199d02123142c614a65daadac3e6"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="cd4dce564a3360c642fa383a04fc32a4"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="cf5f6964c564db0b734efd972b60d3d6"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="19b9cbd25ceed44dc0e266ff595b7be8"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="df8b0a3a64709d1e9fceed7e63a0c117"/><file name="mysql4-upgrade-1.6.0.0-1.6.1.0.php" hash="9a5f9455c52787754a295b744cfef400"/><file name="upgrade-1.6.1.0-1.6.2.0.php" hash="50d8533c47f2132dcb2243075e4d08fe"/><file name="upgrade-1.6.2.0-1.6.2.0.1.php" hash="9b97e97f08c4646d03b7e815a82a9b5d"/><file name="upgrade-1.6.2.0.1-1.6.2.0.2.php" hash="d60e281680e6e16883a965d5e14d7b07"/><file name="upgrade-1.6.2.0.3-1.6.2.0.4.php" hash="003018918552502f79cdcc34b6bbf157"/><file name="upgrade-1.6.2.0.4-1.6.2.0.5.php" hash="d38c7088d83b749eafebbb0e8851ad8d"/></dir></dir></dir><dir name="Dataflow"><dir name="Helper"><file name="Data.php" hash="1fdea0e174b3730296c3ddc328196a49"/></dir><dir name="Model"><dir name="Batch"><file name="Abstract.php" hash="fd23e6b3cbfe4da17658329ba7e59994"/><file name="Export.php" hash="43ae83020d1cdc35475f4d150226b7ff"/><file name="Import.php" hash="f742e941a5bb5ede722d9085c25ff639"/><file name="Io.php" hash="d40c451ba9f6e1ae84d0476550fcc3e8"/></dir><file name="Batch.php" hash="5bf3c5dca0bd8530fbb322158e38321a"/><dir name="Convert"><dir name="Action"><file name="Abstract.php" hash="7e3e7b4ea99d210915079bd31f2f3522"/><file name="Interface.php" hash="160689c2b8b12312a090c187c6faf58b"/></dir><file name="Action.php" hash="031eb93d6002c0d613cf92888f2b0cbf"/><dir name="Adapter"><file name="Abstract.php" hash="1578acfad442cb78e4e57eb59c9f443c"/><dir name="Db"><file name="Table.php" hash="176370740cf20e649a3947556bc58af1"/></dir><dir name="Http"><file name="Curl.php" hash="e8106211ec7445d473c6a22097338084"/></dir><file name="Http.php" hash="976aa4d60aa89e4390fdec405f835688"/><file name="Interface.php" hash="df6db8dbb63f6cf9e02f8ef10d460e94"/><file name="Io.php" hash="4120750233bfbf501c0ea9e13c42b880"/><file name="Soap.php" hash="bbaefa528a9a1211b2bc45af68516a40"/><file name="Std.php" hash="6fbfaa53dc8272fc6941f8f255f8294a"/><dir name="Zend"><file name="Cache.php" hash="ac643dff5561eca359ddacad02f08f72"/><file name="Db.php" hash="b47e0be7c6922c0c525847a85c06c0c5"/></dir></dir><dir name="Container"><file name="Abstract.php" hash="3630bc5459578ec354c6df54497b2416"/><file name="Collection.php" hash="a6983b1f64b4a9d39f27090edebd87cc"/><file name="Generic.php" hash="63d972f7bce17c1761d2143b7b6732ff"/><file name="Interface.php" hash="7f87e3e7972885873d838bd240910fb5"/></dir><file name="Exception.php" hash="61bc3e9b6804d16fb4bf8c7c262261aa"/><dir name="Iterator"><dir name="File"><file name="Csv.php" hash="dce5cbcc3a0aef340341f34f9da3ea84"/></dir><file name="Http.php" hash="a676225e183d4c762f2e15ce0a65d9e5"/><file name="Interface.php" hash="af18c639837b0731047d8ddabc2c9149"/></dir><file name="Iterator.php" hash="60c16c540872c57b982cc3ceda467edb"/><dir name="Mapper"><file name="Abstract.php" hash="e0a579ef8cfab6c64864cdb119c266a1"/><file name="Column.php" hash="8857eb854002f10bff01597311e34cb2"/><file name="Interface.php" hash="6194d09f65443cf192e542c61115149e"/></dir><dir name="Parser"><file name="Abstract.php" hash="ba37a77629fd51118edfc78676958d2d"/><file name="Csv.php" hash="68234ad054b3722f0f7064a2643f72aa"/><file name="Interface.php" hash="25171296a4542a4f876289e6accc347b"/><file name="Serialize.php" hash="35be8c7ddbd667c089f0f86ddf0e2080"/><dir name="Xml"><file name="Excel.php" hash="caf045b4b68639eb5cff140bd8e397a2"/></dir></dir><dir name="Profile"><file name="Abstract.php" hash="15d52152035d00c6dbc9366433ef108d"/><file name="Collection.php" hash="7f3d1fd3a835ac2dd7dff65ff718c2e7"/><file name="Interface.php" hash="7ca8b17d3d67fc3a4a494164c4dbddd6"/></dir><file name="Profile.php" hash="230be1c96c5a278b602cdc61a4ae39f5"/><dir name="Validator"><file name="Abstract.php" hash="b4744ebc94dbabb5f534c6abb2a74941"/><file name="Column.php" hash="839ecc00664ea72596535941ea6d4a86"/><file name="Dryrun.php" hash="fcf2f0544d72de45bec56da7eabe8fa2"/><file name="Interface.php" hash="7a0f10e413ec1d5b29648d0c5a334f05"/></dir></dir><file name="Convert.php" hash="8de6dcd43e60bf2fe92e8eab6bc947e6"/><file name="Import.php" hash="a7d92a1172d905025782e74818d4597e"/><dir name="Mysql4"><dir name="Batch"><file name="Abstract.php" hash="752d16874995374c2c8af2552bef1da2"/><file name="Collection.php" hash="79285892db5f4b8a5650655d3804d638"/><file name="Export.php" hash="cfa105f56392fa706fd1013ab9092e0d"/><file name="Import.php" hash="8494b1cf0278c8cfabfd1b98749cc058"/></dir><file name="Batch.php" hash="72c04f2d1174b5bb75a6bb50fbf45ce5"/><file name="Catalogold.php" hash="d3981560091ae700301fdd6c2665df68"/><dir name="Import"><file name="Collection.php" hash="e5ebee9cd2a99ac025d27cf65145befe"/></dir><file name="Import.php" hash="1b4430c8d33d1f8aafd26efe231d0b88"/><dir name="Profile"><file name="Collection.php" hash="a51f9af9cc6846683b35b62101197966"/><dir name="History"><file name="Collection.php" hash="80fef54f0d51615318c0f2d789f4b0c2"/></dir><file name="History.php" hash="4308271512c6c609043f2c67afb2ff15"/></dir><file name="Profile.php" hash="5413056151f5aa5006a01bdc2a86aab5"/><file name="Session.php" hash="7017ffda96f2077742823b871f326824"/></dir><dir name="Profile"><file name="History.php" hash="044e20bbf78ccd9f3b41ade4f83f40f7"/></dir><file name="Profile.php" hash="0d09c2e8442badb218d63762d8298006"/><dir name="Resource"><dir name="Batch"><file name="Abstract.php" hash="165bb960709dc9a1779bbc3107be35d4"/><file name="Collection.php" hash="b888e03dfd358b875c6379d5908b8fd1"/><file name="Export.php" hash="edcd61f7d3b7e55625fd65937b2bce50"/><file name="Import.php" hash="492bdf5207e2bd47d89ed44ebcf68f2d"/></dir><file name="Batch.php" hash="73b8b047bff11fd36711565c0831e344"/><dir name="Import"><file name="Collection.php" hash="f23c2b9896010f2d29217bca4337dc05"/></dir><file name="Import.php" hash="7492a797188c5217b7f7f081ce3c6bbf"/><dir name="Profile"><file name="Collection.php" hash="b5344c80512b42ad76adddc968d62ee4"/><dir name="History"><file name="Collection.php" hash="c5a9b79bb6cd4c8efb3a1bb9619f9851"/></dir><file name="History.php" hash="5d98ab9812ced4d61930501ed132d0b6"/></dir><file name="Profile.php" hash="765a490eaf63a3f66fbd605b09c498e3"/><file name="Session.php" hash="64a2ea86a9a86535ec95e218f4d8d5c9"/></dir><dir name="Session"><dir name="Adapter"><file name="Http.php" hash="dce812ccc3d20708695b23814451339d"/></dir><dir name="Parser"><file name="Csv.php" hash="714546a1a33d073d1559aa0d52741cd8"/></dir></dir><file name="Session.php" hash="8cc8e54cb2da750de3a09a44aba078db"/></dir><dir name="data"><dir name="dataflow_setup"><file name="data-install-1.6.0.0.php" hash="1514d8ed9b1a6cefb1802cb69735d8fb"/></dir></dir><dir name="etc"><file name="config.xml" hash="e5b0109594ed65ab8b91a0b3c568ab51"/></dir><dir name="sql"><dir name="dataflow_setup"><file name="install-1.6.0.0.php" hash="4ff648a208e6d6ab53a59a492cd9748f"/><file name="mysql4-install-0.7.0.php" hash="352eb76911fef6400f0c2f10af3ef66a"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="f821c26ec2575b8d11370151b2f6b2a6"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="504a8bf9388470ab7a89854e2d38afb9"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="d348338b0296c64900b3c9097f3bad8c"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="843369d2d103228cdd5f6bb273f53449"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="5cb5811e29106b888837c871422fa55c"/></dir></dir></dir><dir name="Directory"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Currency"><file name="Base.php" hash="7b08c40922a73bf0871d24c1854b1dbe"/></dir><dir name="Region"><file name="Updater.php" hash="e3712fdcc9b865c169786c93053755b1"/></dir></dir></dir><file name="Currency.php" hash="fefe19f1439a528b3e0ac7ef7268f2e6"/><file name="Data.php" hash="6321773e625f3998835e1ec2b32dc7a3"/></dir><file name="Exception.php" hash="d67a505c11f1dddbdfd7cd3a8a8fe6e3"/><dir name="Helper"><file name="Data.php" hash="75acbc20d057975436095d3d992cde87"/><file name="Url.php" hash="222097e0090d97a8709ae16773c695c8"/></dir><dir name="Model"><dir name="Country"><dir name="Api"><file name="V2.php" hash="e9f0a9d34c6d3c443fc8276adef146b0"/></dir><file name="Api.php" hash="1e1ce2a1edca715cec58a581dfd6c6e3"/><file name="Format.php" hash="8968793939ebc87884f8154ad648ff84"/></dir><file name="Country.php" hash="8a4bfb9c15a46089606fb8473efacfd3"/><dir name="Currency"><file name="Filter.php" hash="f6c19c24e3f2038a114b8a779e330d53"/><dir name="Import"><file name="Abstract.php" hash="e288877f73d8687fd63b2cd686430e51"/><file name="Webservicex.php" hash="914b4dd8e3b43a22cf33a8a2e69c6447"/></dir></dir><file name="Currency.php" hash="17bca467bcafc0d2f62886b7d74ad807"/><dir name="Mysql4"><dir name="Country"><file name="Collection.php" hash="361e36cc98ad3606e19cf919c3af2e74"/><dir name="Format"><file name="Collection.php" hash="31ac3c24221d5129c7d04cd9ce2a975a"/></dir><file name="Format.php" hash="d701b2af4a8e0f57c42b0c7384bee137"/></dir><file name="Country.php" hash="592018cde3012cee50fac41f8add98e6"/><dir name="Currency"><file name="Collection.php" hash="b80c891e0ec38e91241519a251dcf635"/></dir><file name="Currency.php" hash="2dfc39ce7a45b290d5f17126a5c87d16"/><dir name="Region"><file name="Collection.php" hash="02e649afa179cc8d7234029449b8ca5b"/></dir><file name="Region.php" hash="51d3418d30aa2fe179e79c5d6f27b893"/></dir><file name="Observer.php" hash="8129af260054edfde1c843a355b9c1d1"/><dir name="Region"><dir name="Api"><file name="V2.php" hash="668dea54913e326f06422d2153b85825"/></dir><file name="Api.php" hash="ffe3801152efc05e0cc80c7b5bfdc12f"/></dir><file name="Region.php" hash="9f2ae1307623f31b3a4d1d2d928058c0"/><dir name="Resource"><dir name="Country"><file name="Collection.php" hash="bc1ae4be720a5d08de42b76d9cf823e1"/><dir name="Format"><file name="Collection.php" hash="37d5772a3275f9e36caca650e9de9a8d"/></dir><file name="Format.php" hash="cc98e98b45237bc5d4f6c0deaf1fc636"/></dir><file name="Country.php" hash="ec6de55ee9c2fcf2ebc9bb059251e0ae"/><dir name="Currency"><file name="Collection.php" hash="25f76c9c7204317c2764e2ad51016e1e"/></dir><file name="Currency.php" hash="8b3aa937afd7fd477115b185ba2fa3d6"/><dir name="Region"><file name="Collection.php" hash="6f55b81e54b701de14fdf2be6cffea09"/></dir><file name="Region.php" hash="8dd90ca847955f34e6f21c879901d2d3"/></dir></dir><dir name="controllers"><file name="CurrencyController.php" hash="74f7ad501efc682d049e97621065359c"/></dir><dir name="data"><dir name="directory_setup"><file name="data-install-1.6.0.0.php" hash="d7019de4f63de341b24ad8d22298cca4"/><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="895bb4df1c2e5dd6723d4c11ba2d90c0"/><file name="data-upgrade-1.6.0.2-1.6.0.3.php" hash="2076cd590ef9b0a72eb3db5337d4ec61"/></dir></dir><dir name="etc"><file name="api.xml" hash="8a04708f245cf96136cae7cb939258cf"/><file name="config.xml" hash="65ff14484566df4a65065d7ff3cfc23e"/><file name="system.xml" hash="a34e06df3583f0649c1e97106b83288a"/><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="06f2d41192983cec26d1170dad144afe"/><file name="mysql4-install-0.7.0.php" hash="1328a0b0df01701ef128bd6f88b93a26"/><file name="mysql4-install-0.8.0.php" hash="492ec193494d9fb5b813535cfed6c18e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="dca446f5c8c935146527df381f51ced9"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="7b4273fa56c2e4f5972e2d2059cb520a"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="7a91e56dd0c0c5a51f0ca899d7f8d119"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="11626a7ad520d4734121c8e73251bc8a"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="d04f987ad4c937db4564eec054da8059"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="36590ddf37cebf23daec18c5fa7893f5"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="5a4617ae5d44d79ae5356372cd5b5afd"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="5c9bb4011e05525cdd708406e856fdb9"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="d73ce9dd2b59ca1e68e38249cee70975"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="497ead4a413964cb78cb8d10e7641795"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="205d0bf29bcc4eb66055b9f3a5f7243b"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="9e83b8e534628415fea6842cb0e47d02"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="8dc867bed7b7c6e1b4a0fdbeb6bad812"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="1183ec6ddf2bd1b6eb2e1a7da84a1071"/><file name="mysql4-upgrade-1.6.0.1-1.6.0.2.php" hash="2faf91c81950ecb9afdd466637bd3d13"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="19ccf96a2c1adb4fc3593b0f993b5e6a"/></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="0894765db9e0784743e18da0e9199d36"/></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Downloadable"><file name="Links.php" hash="dbf41e7f8d650af681e58d8a63cb590b"/><file name="Samples.php" hash="e084e44714479a6539ad2d7d1c4cab5b"/></dir><file name="Downloadable.php" hash="2ae804be8eb5cb17ae93eb48d7037cba"/></dir></dir></dir></dir><dir name="Sales"><dir name="Items"><dir name="Column"><dir name="Downloadable"><file name="Name.php" hash="a981178381039bb88f4aaeada8874d4c"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Links.php" hash="098d2cefab7227eb521d6e23607b42f5"/><file name="Samples.php" hash="af2ffa45b8d6bfd580bf4f9c6e65129d"/><dir name="View"><file name="Type.php" hash="70541d8f7d4613cefb9160e5a2ec3477"/></dir></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="28a6c9641376ea3ba04a8b9f9afff08d"/></dir></dir><file name="Success.php" hash="98fc15e65d6a70bb9a5e1ad6dac68bd6"/></dir><dir name="Customer"><dir name="Products"><file name="List.php" hash="99e755ca46160be97802dd4f9ff2eae7"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Email"><dir name="Items"><file name="Downloadable.php" hash="00e13a60f0f2c6a3e1d7655a02594b54"/><dir name="Order"><file name="Downloadable.php" hash="589b20168675a5a989af0fcee4cd31ef"/></dir></dir></dir><dir name="Item"><dir name="Renderer"><file name="Downloadable.php" hash="c09cbd14d85e1ccced0630b2114bff8f"/></dir></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="9f640dadb85b46159ad3d3bd556c1b54"/></dir></dir><file name="Data.php" hash="9ffc79ed8e3d1dd6486903334c92cb8c"/><file name="Download.php" hash="690e613aef32ae2440f29923403cbaf3"/><file name="File.php" hash="82afcb0b81efa91d77f4ad716d7a3001"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Downloadable.php" hash="3dd4cfe071f320459ee929dc27798d24"/></dir></dir><dir name="Link"><dir name="Api"><file name="Uploader.php" hash="551bd50f442a61550fbf5a7b09e70804"/><file name="V2.php" hash="0dc2d683b7806823c8f6e95043ecfbc0"/><file name="Validator.php" hash="c9ec8c468ea80cadabdd9ad709c0c31f"/></dir><file name="Api.php" hash="4362e6bfcfce8b4e936ee9ec6c6d90d8"/><dir name="Purchased"><file name="Item.php" hash="4b929ce508290f2566835e2e05afa802"/></dir><file name="Purchased.php" hash="513f1e1a7e766a9dd6cf6f81d9622b80"/></dir><file name="Link.php" hash="149a267c4def220c9fb20271e0c3f8f5"/><dir name="Mysql4"><dir name="Indexer"><file name="Price.php" hash="a84b42aab89569670b21fc8ead61fb6e"/></dir><dir name="Link"><file name="Collection.php" hash="9a7d878b591a2d4f557034cb4e6056ee"/><dir name="Purchased"><file name="Collection.php" hash="f75f55be4ec4c99e9ba9a9ba1a4b1df0"/><dir name="Item"><file name="Collection.php" hash="1d7d940a928131b10ae7d4d97fd6cf37"/></dir><file name="Item.php" hash="64dbdde2da976db76b09b4ec62ee3919"/></dir><file name="Purchased.php" hash="1f1819639cbe039f91dcd51a10f488ed"/></dir><file name="Link.php" hash="212849e13510868a08acdd6d4b8571ef"/><dir name="Sample"><file name="Collection.php" hash="01b11e2a969820577ec0b7460e6eed50"/></dir><file name="Sample.php" hash="3d74e9b5ca2077ce1208bf467c8cbf3e"/></dir><file name="Observer.php" hash="e357c3defc958384cb957ee2e780e02d"/><dir name="Product"><file name="Price.php" hash="a96d7d249ffa339848e01578635be53a"/><file name="Type.php" hash="a1d0980c294b9e410596106108cbcfe2"/></dir><dir name="Resource"><dir name="Indexer"><file name="Price.php" hash="e7be2efaf4d1d49fe4af7b8d8d94a852"/></dir><dir name="Link"><file name="Collection.php" hash="55b61bfc4d1199f9dea54b469da79fcf"/><dir name="Purchased"><file name="Collection.php" hash="9a57a12d104d2bbb04c3d38f5faa4b14"/><dir name="Item"><file name="Collection.php" hash="43fe275af4aa4241c52526d0553ef2de"/></dir><file name="Item.php" hash="cbb92d4603e88fc9725786532d151b30"/></dir><file name="Purchased.php" hash="308941508ffe151fcdc51aa969ba7e4d"/></dir><file name="Link.php" hash="937047d7fc134c56fec25b5b8520229a"/><dir name="Sample"><file name="Collection.php" hash="9c4256a354085ac41522fe33c2814660"/></dir><file name="Sample.php" hash="a1351635f703ed8be972515f9044137b"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="cdc0b36559ee086a9aae7cd5305cf16a"/><file name="Creditmemo.php" hash="e99f489a160c8435393423fb90ff5986"/><file name="Invoice.php" hash="2a5e2e39d5d8c836c81d729a96550d87"/></dir></dir></dir></dir><file name="Sample.php" hash="b8082fcd39b6970e5f67f4710c6bc525"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Contentdisposition.php" hash="e5a1e6ba692e80c7c6da3db851912b52"/><file name="Orderitemstatus.php" hash="e5e0acf837fe03bf6b81f15171e5f6cd"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Downloadable"><file name="FileController.php" hash="b9249be12b6b185500f7da4908657bdd"/><dir name="Product"><file name="EditController.php" hash="ec6515453a5adfc23e900e12f073316b"/></dir></dir></dir><file name="CustomerController.php" hash="5caa09a747d68f6693af16e008cfdae2"/><file name="DownloadController.php" hash="f872bab9afdcbd0940bc9e44ab2a5938"/><file name="FileController.php" hash="14caa8c0fc4ac11d2d096e2c6615264f"/><dir name="Product"><file name="EditController.php" hash="d3e08a7942812426fb07836213364517"/></dir></dir><dir name="data"><dir name="downloadable_setup"><file name="data-install-1.6.0.0.php" hash="89fff0d4db1333c703acd652fe0fb08f"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="9fd63bbca8e244b79c61cb444843653e"/><file name="api.xml" hash="b6f1baaa298434a18dc214fff32a8847"/><file name="config.xml" hash="c5effe8c17268426fac8bf7542a33149"/><file name="system.xml" hash="fbaf7e3ca4dd90b05e9cedc814a00703"/><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="3eb4477e6935eae2720f444fef195c9a"/><file name="mysql4-install-0.1.0.php" hash="cd480dee92186ef67470a6caa3a4d0fe"/><file name="mysql4-install-1.4.0.0.php" hash="a9b8d2479225ac1e452505f4fe7d50a2"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="2781d18502c9ba94eeb48145941d6832"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="1ad6d60b409f3039a431648fb2070da8"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="faea32d564461a3f947fe09878df78df"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="221e093c9667643a92b655a7e40930d3"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="8546536e9110444a25d7e5adbee8d42c"/><file name="mysql4-upgrade-0.1.13-0.1.14.php" hash="2f54141b81010abd0122c5988585b379"/><file name="mysql4-upgrade-0.1.14-0.1.15.php" hash="762800a3acc5cf604c0d89e827117993"/><file name="mysql4-upgrade-0.1.15-0.1.16.php" hash="237592e82b8d0ad00596ba93f4de16e1"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="45d577110c8ac3bd6062a57b7a8c6434"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="63430cac137876118649136f438c2fa1"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="5e8bad9feee32515835887d9ac4de452"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="d61d3fc9096637380f5c6fd14694e421"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="46957e0a002a5bb4b679bfcb6f7fff4b"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="01776c5e746ea853dbcfb210fa44c15b"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="7218ee35b7aaf93aac82e676ac658253"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="a12179cadff16fcc047556f52118ae14"/><file name="mysql4-upgrade-1.3.9-1.4.0.0.php" hash="b0c1d1fdaedfbb57f014c34ad3464174"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="ac887d712d06ea77791f3c578935f954"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="bcc9357c627be89ada2c573767c7d6f5"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="087374b707e0db89d8c61d82b401dc67"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="61da820a8d06e8681178e26538871962"/><file name="mysql4-upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="42684744f395dc228cf2f6bdad4839ca"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="ab18f618d263990ffe708a91b4d7952a"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="d1910ca64ede8998a179c384da9ec77e"/></dir></dir></dir><dir name="Eav"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><dir name="Edit"><file name="Js.php" hash="e111610ff9541d8da03f6421a0e2cec2"/><dir name="Main"><file name="Abstract.php" hash="8186b26de7d833842625487e3ea16768"/></dir><dir name="Options"><file name="Abstract.php" hash="b72f6081fd8b0afb8e5991ffce05995a"/></dir></dir><dir name="Grid"><file name="Abstract.php" hash="9c3c278d4a31e3a3ff65604b939984d0"/></dir></dir></dir></dir><file name="Exception.php" hash="90d0503f251cc73702a4599892807ee1"/><dir name="Helper"><file name="Data.php" hash="a233a736e818e1c3ec5c4f63a56b0420"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Inputtype"><file name="Validator.php" hash="5cc0f6d86bdfedfa12febb22925a0ac0"/></dir><file name="Inputtype.php" hash="e082282a8f60de87c61905ac9b35603e"/></dir></dir></dir></dir><dir name="Attribute"><dir name="Data"><file name="Abstract.php" hash="a66de8031e3939d9a7b51bcd60d03b1c"/><file name="Boolean.php" hash="c5e66fdfc9b4e5f651f0cae1ed34601f"/><file name="Date.php" hash="a8b3520999890cde32670c1dada4d5cc"/><file name="Datetime.php" hash="652c82c49213bf7e8cf22ed67b499761"/><file name="File.php" hash="a185e6f012e7790ecbf0a60747cebc31"/><file name="Hidden.php" hash="9d0e59cfba62065ac176cf35a0cd4ad2"/><file name="Image.php" hash="9154140e693f42b0000060c48ec2bd26"/><file name="Multiline.php" hash="8321ea6a682198a0590bf997d47fa818"/><file name="Multiselect.php" hash="17f9f8d8edf19fa8374f524492707bb0"/><file name="Select.php" hash="5547a85555bee4af0891c0326caeaa5f"/><file name="Text.php" hash="3765daefe88e6c6fc0736b92c14744bd"/><file name="Textarea.php" hash="fbbb8227aeebbea724158932d9e74b27"/></dir><file name="Data.php" hash="db29d370563c0a9fcbe6db11278c5ef4"/></dir><file name="Attribute.php" hash="750b28994722deaf4773c426e3bbdb81"/><file name="Config.php" hash="61dcd06cf981da4148a496095ed9999e"/><dir name="Convert"><dir name="Adapter"><file name="Entity.php" hash="ba19a83ab3c4d6d81a993cc987d60861"/><file name="Grid.php" hash="53137d67d98126fa16015d2f6aa91fb2"/></dir><dir name="Parser"><file name="Abstract.php" hash="f68f2b73ee799d0fb0e66eed22e5b4ae"/></dir></dir><dir name="Entity"><file name="Abstract.php" hash="f2d68bbd384cfb9a94a46110f93d3a34"/><dir name="Attribute"><file name="Abstract.php" hash="03bdae94fe40321a79346b90809bfb05"/><dir name="Backend"><file name="Abstract.php" hash="f70e765bbad62e1f2843fe61286da22b"/><file name="Array.php" hash="bd5f1380d5684b55bc7c41e7affe87b5"/><file name="Datetime.php" hash="039a7d453555865987fa99bc030650ad"/><file name="Default.php" hash="41e3e76508a74a269e24d344f1736063"/><file name="Increment.php" hash="6c4029b7bb31e20eaaf25b48d1c23620"/><file name="Interface.php" hash="3516ef5fac97e320663fbeaec2c36630"/><file name="Serialized.php" hash="1cdb9da249a1c6184f0679c2e6ee132d"/><file name="Store.php" hash="6c2f6b25b3857c2ca11f8c8621316d45"/><dir name="Time"><file name="Created.php" hash="635caac539e4a3f3befd5915ff22c22e"/><file name="Updated.php" hash="72c69bc4982cca60458cf8aa8be0100c"/></dir></dir><file name="Exception.php" hash="fa0c1087b1754911bc1002fa4dcbd3a5"/><dir name="Frontend"><file name="Abstract.php" hash="2d4f352d54fe128408e84eea2108a8f4"/><file name="Datetime.php" hash="0ec5e78ecbadc2f49f6794d5f13ffc6d"/><file name="Default.php" hash="7c04d0aefe06db1801b6ebd5e8009f20"/><file name="Interface.php" hash="7045ac648860ea9777c3672994f01402"/></dir><file name="Group.php" hash="35b73d513606562e1c26a8d633ee8573"/><file name="Interface.php" hash="ebf16f3b89e8d303066f93b04a3dd572"/><file name="Option.php" hash="f87e1f2ac338d69e138a8e102a5b79b7"/><file name="Set.php" hash="849304f98cbe376135f5b46777fd5ae2"/><dir name="Source"><file name="Abstract.php" hash="9a088ed28d5bf9d9a0c1d47cae41c21d"/><file name="Boolean.php" hash="a0df0b2a34652d4c1d052aae2eaeedcd"/><file name="Config.php" hash="1cb9fa529afbf479ae0603d24059e146"/><file name="Interface.php" hash="e86c52e52d253d457d07838ae4278def"/><file name="Store.php" hash="e1606486a0ae95608f32b166b4bc203c"/><file name="Table.php" hash="e0ba018335460224bc054b1e11017371"/></dir></dir><file name="Attribute.php" hash="bcc446c95cba311bdd136a72490406f0"/><dir name="Collection"><file name="Abstract.php" hash="77cd02aa8ffb7c3b1de94ec4e251e5f7"/></dir><file name="Collection.php" hash="6cd9f1648a555236415eff843cfc7583"/><dir name="Increment"><file name="Abstract.php" hash="129ae78ca7e9587c82ecf68493c28488"/><file name="Alphanum.php" hash="4ace6f294fd56324ead9280b750199b8"/><file name="Interface.php" hash="dbf133e915f3c83d5d78617a36ce5b25"/><file name="Numeric.php" hash="f5c15ab5dd37e924e550a26eff7858b1"/></dir><file name="Interface.php" hash="5026d91d095260e7fbc02593153e4119"/><file name="Setup.php" hash="ca5fc860a541579c2a377eef27343481"/><file name="Store.php" hash="766083efaeb910f345b8952e490d0f91"/><file name="Type.php" hash="21ed5eebe04063e9c53e723df428e611"/></dir><file name="Entity.php" hash="e9c6fc41c9af70fa6bfc8f6b44b21c87"/><dir name="Form"><file name="Element.php" hash="64a50406a287ff40131f7460e6146c7c"/><file name="Fieldset.php" hash="6e75ee889f1e325aff2d25a07e4d4818"/><file name="Type.php" hash="ba1ebf5272e9c240c343bc4a7e4893aa"/></dir><file name="Form.php" hash="3cd05f0ffdf75df618f8dfeb40f98588"/><dir name="Mysql4"><file name="Config.php" hash="5f01884e468826c3d08f13926d507d65"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="97385b005eb72354f07e92221113a36a"/><dir name="Group"><file name="Collection.php" hash="11fbd8ded000475c8717a49e3f8626de"/></dir><file name="Group.php" hash="60d686a0702799432d2c465caa1ea93d"/><dir name="Option"><file name="Collection.php" hash="e84bd88dd75fd712dbddbc8da75abcd9"/></dir><file name="Option.php" hash="e1ccaa55c14cb3bce2b6083787db1f32"/><dir name="Set"><file name="Collection.php" hash="c6a40d529c8ced03c78c5fc13347b640"/></dir><file name="Set.php" hash="7fdd8e62698ace513580df5f9bc95bf7"/></dir><file name="Attribute.php" hash="c0d82dfb29ab31342f75b645d7fc30e3"/><file name="Store.php" hash="630c32bdc20b06dc1c43fdc1698e7499"/><dir name="Type"><file name="Collection.php" hash="7b590fbd73e436b99b35bb6bb1d688fc"/></dir><file name="Type.php" hash="ca5c45a35f9df6ecb5cbc28b1040f82d"/></dir><dir name="Form"><dir name="Element"><file name="Collection.php" hash="a13be45c67a1e33634fd38df029a1839"/></dir><file name="Element.php" hash="48670c378944766edac7d0006b917b65"/><dir name="Fieldset"><file name="Collection.php" hash="f7eed336eacbc256bbb0d8bf0c0afdac"/></dir><file name="Fieldset.php" hash="c3d3bb69b83d034d10050c42e3bce9b4"/><dir name="Type"><file name="Collection.php" hash="3637ad4471ca55be96456388c0f36a88"/></dir><file name="Type.php" hash="efd60e3460c9f8fb30a6fb62e5c3d5b4"/></dir></dir><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="17abf7a6f156c8f80dfdffa032850140"/></dir><file name="Attribute.php" hash="2340ccf889b5f48830d7a6148d69da5c"/><file name="Config.php" hash="8c407fe896868d3b3b4e8e897035ebfd"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="6803e5e0fa5ea90ff353c0bf38abb8ce"/><dir name="Group"><file name="Collection.php" hash="ab6870d285a3df0b8f994ba7cb4bea91"/></dir><file name="Group.php" hash="cfd1f47bf0e496759dccd0c2a5a36bcf"/><dir name="Option"><file name="Collection.php" hash="6533283a70f39ea05fe01c0716bb1f73"/></dir><file name="Option.php" hash="e237ebd715ac4c63a7370d94fd40feeb"/><dir name="Set"><file name="Collection.php" hash="4032058099eb85d1542c4cfc96696b05"/></dir><file name="Set.php" hash="bc1271b01f7864437d9dbb83be87ff4a"/></dir><file name="Attribute.php" hash="28bb3100686c4c832ad9a204db9b6aff"/><file name="Store.php" hash="3f36d70264bb4d42e1012589d6261718"/><dir name="Type"><file name="Collection.php" hash="100029dcf73d834d69ec5c5417c4d901"/></dir><file name="Type.php" hash="9e133119fb3c3aa75b3d562bf4ece19c"/></dir><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="40eb9aafc156ba2cd959399fe9f4fcec"/></dir><file name="Attribute.php" hash="67f7a51de22ecc55035950bdbbf694b3"/><dir name="Element"><file name="Collection.php" hash="6df54dcb319d3a77a49f2acccc094e2c"/></dir><file name="Element.php" hash="13d34cf5e6cdcf46640ad2c00a34047b"/><dir name="Fieldset"><file name="Collection.php" hash="0f0afba198e0f953d9b1b30e2465f856"/></dir><file name="Fieldset.php" hash="a6f4eda9c69520a783aa5594637f2d31"/><dir name="Type"><file name="Collection.php" hash="c7d728935fd9e8344188512c0b5c2ab0"/></dir><file name="Type.php" hash="741d13f3e162ec39a565dbb7954217e6"/></dir><dir name="Helper"><file name="Mysql4.php" hash="93012ab2f097afc5be2603394a77c929"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="7b6bbb092b813b7ed1685fc90bb0278c"/></dir><dir name="sql"><dir name="eav_setup"><file name="install-1.6.0.0.php" hash="8ab61d8cc587d1988e18d6aa151a3ca9"/><file name="mysql4-install-0.7.0.php" hash="158bbc3301ac32e21a5319712de73c90"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ba384a11f5d959eeab936a8b39d98e23"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="7ebc2d585da738aaa1751f85424a4299"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="c20b0734054479cd52b737f65438a133"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="9a034c3ac269ad8a384fe343b4f3dab3"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="a3d1275adf82f5333a1be05d8a2ff4c8"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="ac2bbafcbdc0fafdf2c2112f556065fa"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="d25b8a3206748c71086bef0d2a25e564"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="1fd4bcc59e4cbdad654755f240c6487c"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="1b1f00eb5aec31cd42014e6c2aca8edd"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="44733ed20b470c33c2893859dbdccc0d"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="167c35eeead204ce6f309aab0097be27"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="384cdcd74258e6d0679b0e8859e5e93f"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="f6594fe7d11cc47d986c07d025a79705"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="e6f3f4292afd260ce74d62e8b0182749"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="cce9cc325e8e6f2e9db272514fa20530"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="7252a54a41d129578d7e1d0d30762d41"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="a1133b7360a164e99c998f0e2b005292"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="8b7af1d7a138dc5727eda03d74a38c68"/></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="ddf91ae09144bd4477e695a8597739f9"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Create"><file name="Form.php" hash="61d7667bfe5e37aa2834c71350a70be8"/><file name="Giftoptions.php" hash="73f5dfd0b1d79036878b92d168ee4d02"/><file name="Items.php" hash="cf7479ae2dd0b398f0b2a4cdad24cf03"/></dir><dir name="View"><file name="Form.php" hash="251d47716a3599106e7cae5ba6bd5230"/><file name="Giftoptions.php" hash="70de447d18a4a2d42db1f32fb9ba7b4a"/><file name="Items.php" hash="83b830d0d32564dc0dc9039b1c0553c4"/></dir></dir></dir></dir><dir name="Message"><file name="Form.php" hash="27267f2c93174a27d343e3a7bbcfc7c5"/><file name="Helper.php" hash="3344e122f503aa1a106d7daa63322d95"/><file name="Inline.php" hash="07aa797aaafcbee8a63988c6b4ab4720"/></dir></dir><dir name="Helper"><file name="Data.php" hash="8c2be88f8505415f7e8d4b8acb538030"/><file name="Message.php" hash="d4b16096e2cc7ffe24bc371045628ede"/><file name="Url.php" hash="c6601416aa9189328b2dac5d638b916a"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="6737516b648d9588b4e62ac357edbda2"/></dir><file name="Api.php" hash="880b3dd0fdb5519547eb77e6db4d100a"/><dir name="Entity"><dir name="Attribute"><dir name="Backend"><dir name="Boolean"><file name="Config.php" hash="4848816a65ba47d8f40a8a010753ae9a"/></dir></dir><dir name="Source"><dir name="Boolean"><file name="Config.php" hash="db4a118235474d7dc65417352df58a7c"/></dir></dir></dir></dir><file name="Message.php" hash="851e3d40ded2aa686e0f65fa30fdfcda"/><dir name="Mysql4"><dir name="Message"><file name="Collection.php" hash="c3c99aa63e76725a6902aa7d1b3f3b05"/></dir><file name="Message.php" hash="5757785d2d3af7d723e80b635fabf607"/><file name="Setup.php" hash="f3417a53889d6bafe5971b00a207faf3"/></dir><file name="Observer.php" hash="945557910044d203095cc697cbdbca6a"/><dir name="Resource"><dir name="Message"><file name="Collection.php" hash="e25199a26a4ed4fa9a252401d8bc3df6"/></dir><file name="Message.php" hash="d54e4dbf073030bedd796485176a8ab4"/><file name="Setup.php" hash="7e72607c4e14a668f9c04edc270a39a5"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="370cd44a543868a7f2fb21f90c7166ef"/></dir><dir name="etc"><file name="api.xml" hash="c07bc2e7e57a81bf3db941507e622842"/><file name="config.xml" hash="c18fcaf38a79878f35d0b32218210ff8"/><file name="system.xml" hash="651ef34a627f315843e7fe2c4676331a"/><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="3eedd545b600d1b3e9f1efe6f61fd66c"/><file name="mysql4-install-0.7.0.php" hash="bb6f5582870e664a9e8810e9f321c3a7"/><file name="mysql4-upgrade-0.1.3-0.7.0.php" hash="afd839cbb037e3945ac1a4160ed652b1"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="b8a90d824d5273c5ba5caee5cec81096"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="a901190f5d8508179ff4a2ce38119427"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="55c6c3f2f36bcc5e960be10418977245"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="49695f624fccc6c0eb96855c54a926ce"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="b13cb489f9e3a897b23707592fb5358b"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="91635d60ebd34a8ae02347b51e3f787a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="7aa5d6515be6b2772a6ef8d577a63eaa"/></dir></dir></dir><dir name="GoogleAnalytics"><dir name="Block"><file name="Ga.php" hash="9b4edfe344ffc1b867b97bd9edc4be2f"/></dir><dir name="Helper"><file name="Data.php" hash="99c435d3e34212f3c360daa43cac4589"/></dir><dir name="Model"><file name="Observer.php" hash="1521b6cbe1676108413b4043e4b4e784"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Type.php" hash="ee2288134f9476e1c6648b099f9d7267"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="c0e6ccdb5cfd898cb4b0ba902dc892b9"/><file name="config.xml" hash="7bb689966f79618bba1fd05ea16e794b"/><file name="system.xml" hash="e244ebd14e291647e9f758042dab6234"/></dir><dir name="sql"><dir name="googleanalytics_setup"><file name="install-1.6.0.0.php" hash="5afebfd6601bf97f1b90982a6a5af2bc"/></dir></dir></dir><dir name="GoogleBase"><dir name="Block"><dir name="Adminhtml"><file name="Captcha.php" hash="e3ecc26926f8fbd4bb5bc03b7ad674a6"/><dir name="Items"><file name="Item.php" hash="1b974bda147becfc89f0eaa06310cbbf"/><file name="Product.php" hash="76806a0e59bfd5d2d0ae12340d3f2fac"/><dir name="Renderer"><file name="Id.php" hash="3979c787eb7c36b8ef4903e48f90e748"/></dir></dir><file name="Items.php" hash="fbd87b97413b5294c7fe6cfc1667f18a"/><dir name="Store"><file name="Switcher.php" hash="e4007591577eb4b472b9485c510cdfe7"/></dir><dir name="Types"><dir name="Edit"><file name="Attributes.php" hash="64bd528f1aaaaea226553ca1753f00ab"/><file name="Form.php" hash="a43608115f56934d66c2238a61b282a2"/></dir><file name="Edit.php" hash="5e7fcc76027701ceeaf58ba4d9717f16"/><file name="Grid.php" hash="22a1f420f9b83833d3f08e004729d172"/><dir name="Renderer"><file name="Country.php" hash="3efa7020fb1ca0ab24cb0142513ac7c6"/></dir></dir><file name="Types.php" hash="61b3ef306729a4783640bc685a0e79a2"/></dir></dir><dir name="Helper"><file name="Data.php" hash="ccf6d475924bc981f16f0cacf8ec4663"/></dir><dir name="Model"><file name="Attribute.php" hash="42f6061534da4232f96cdc5a50a5ee74"/><file name="Config.php" hash="263467df14e3e225b4cda949f351d85d"/><file name="Item.php" hash="4bd629e12d707fffb513e639e026dd2d"/><dir name="Mysql4"><dir name="Attribute"><file name="Collection.php" hash="087891b994699dfd60170db3c2260573"/></dir><file name="Attribute.php" hash="ae90fcf67fab42542e91cb0e8f81e364"/><dir name="Item"><file name="Collection.php" hash="181a1f38e76ed023a7626e75b0f92fe0"/></dir><file name="Item.php" hash="0e5acaea5cda8ed8847c230fc1a61d8b"/><dir name="Type"><file name="Collection.php" hash="77636d0484353730d3986402275164e8"/></dir><file name="Type.php" hash="74197c9a41ea7c621ef18d1f6e0dd53f"/></dir><file name="Observer.php" hash="d2999dc09d3054b03e9a67f729281626"/><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="fe418c46b692d3c0a4b3c24ed7f5ea82"/></dir><file name="Attribute.php" hash="0dbd1257a66fb43780aec9bfb2c9f811"/><dir name="Item"><file name="Collection.php" hash="82c5c7205849f9c148b83ffaac853cf1"/></dir><file name="Item.php" hash="54db8bfc53c7627a2b409e15bdbfefce"/><dir name="Type"><file name="Collection.php" hash="8c6173f04b352ac4f8394a181b38e08f"/></dir><file name="Type.php" hash="44269c505c34a1ce3215f40ef6cefe9f"/></dir><dir name="Service"><file name="Feed.php" hash="0aad48b4f00beaeb5615ef0a48a1da7b"/><file name="Item.php" hash="487c3aaec8fe7e584f2a26104bd81ff7"/></dir><file name="Service.php" hash="ed42b0af198c9c9972643eab50478098"/><dir name="Source"><file name="Accounttype.php" hash="5cc8e0a012b9012499709e404668ecaf"/><file name="Authtype.php" hash="51c540d2b793491f9e26d300aaea6ad0"/><file name="Country.php" hash="73e31196a538abb41c72fb2f7ef32ffd"/><file name="Statuses.php" hash="2764d1abd57ec4a4618fa34ebe6c417a"/></dir><file name="Type.php" hash="32f8f184357c83ab7e07b2e03f91c3b7"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Googlebase"><file name="ItemsController.php" hash="5a768313c1c92fa8429c989f161dc288"/><file name="SelectionController.php" hash="c63443ebe6e93b9bf424b7f6f01d9489"/><file name="TypesController.php" hash="573bd2f27ed97265544a4267ba43a7a8"/></dir></dir><file name="ItemsController.php" hash="bcf04ea1233786825d8ca91e9b22ccf1"/><file name="SelectionController.php" hash="5209c3e3ea319a4b914d88bd0a0c17ec"/><file name="TypesController.php" hash="302e557674c62e1f542e784ba60f2636"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a4ced4511045d35aad1fd6986738e6ef"/><file name="config.xml" hash="33c2449023ef1361dba41bba928c88cf"/><file name="system.xml" hash="9936516b05c85c42bf855c2d96e88e4d"/></dir><dir name="sql"><dir name="googlebase_setup"><file name="install-1.6.0.0.php" hash="3aa01718671682428089f24ff6974537"/><file name="mysql4-install-0.1.0.php" hash="b419341f28a6b272bac12eafa716b6ea"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="3d40f900be8a3f6c9e9a3b2cc48bf803"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="fd61753e3d05f717148236ee64bf3d8d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="2a552203ff7239098fc5f6d1aed03ad4"/></dir></dir></dir><dir name="GoogleCheckout"><dir name="Model"><file name="Payment.php" hash="f28ebfedac35e61eadb35c64f28a2ea6"/></dir><dir name="etc"><file name="config.xml" hash="9522b469d5566ae9e483f3f20859120e"/></dir></dir><dir name="ImportExport"><dir name="Block"><dir name="Adminhtml"><dir name="Export"><dir name="Edit"><file name="Form.php" hash="94a9690ab905403e753c6aef07f6762e"/></dir><file name="Edit.php" hash="df05ec2d5183e2412d34850837a1ac4c"/><file name="Filter.php" hash="686e5f168995959b35db34261918f722"/></dir><dir name="Import"><dir name="Edit"><file name="Form.php" hash="2b139cb3d797c0cad0ced1c9310f75fa"/></dir><file name="Edit.php" hash="22836c1fbbcd96116281baf245271874"/><dir name="Frame"><file name="Result.php" hash="cdf650d1f62d74d0b9b2934bdf3a54d6"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="a3cca3c34d2a8b618fdb80e8fde2699f"/></dir><dir name="Model"><file name="Abstract.php" hash="ad0a9a35cfa2e379da36f602553a87cb"/><file name="Config.php" hash="5b494db38204adf0a79f66a1acee2e9a"/><dir name="Export"><dir name="Adapter"><file name="Abstract.php" hash="48402373fc4b37b5412657d5d23235a1"/><file name="Csv.php" hash="385fa69f4f14ebb74fc21950d6f311b5"/></dir><dir name="Entity"><file name="Abstract.php" hash="467aa28465d6fe9977ec380c353490cb"/><file name="Customer.php" hash="2a8b58e4d786c2a804b6a71a293614b2"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="0b3deb702e05b87d27fb3543cb29129c"/><file name="Configurable.php" hash="89445c6d39403ec9d728966b87c8d5d2"/><file name="Grouped.php" hash="bac66f0aa89bd7675cceb8d08de9b5be"/><file name="Simple.php" hash="df71077aafc22e1a29fcf3d8437cf3e7"/></dir></dir><file name="Product.php" hash="119d802f341ff9bee299e8950d2d8de1"/></dir></dir><file name="Export.php" hash="1f2eabdb4263c6a6086e0b235e4d48d7"/><dir name="Import"><dir name="Adapter"><file name="Abstract.php" hash="34ad9673845c1271f55fa455396d8f12"/><file name="Csv.php" hash="d62d1206809df25865f311791e88ecd6"/></dir><file name="Adapter.php" hash="750e4798e45bdfa3ade97ea17a9557ec"/><dir name="Entity"><file name="Abstract.php" hash="fef960797ea4835c165e6099efae7c58"/><dir name="Customer"><file name="Address.php" hash="683df438d74655feab33abbe2a83ee13"/></dir><file name="Customer.php" hash="34b27b6cc8f28e62e19855e79ecfcfe0"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="468cac4020ae412b458eb850890f931b"/><file name="Configurable.php" hash="65ce88b3c024be30ebc0917ebf990f98"/><file name="Grouped.php" hash="fa6973da969a599c25082f95e1ed4ec2"/><file name="Simple.php" hash="c9b4046521ee7b5730ec5b4ca2f183da"/></dir></dir><file name="Product.php" hash="8b73fdf6e8dd56db18babea19e6f4936"/></dir><dir name="Proxy"><dir name="Product"><file name="Resource.php" hash="44eeeb4f4436755b8982fc10077866ed"/></dir><file name="Product.php" hash="2e660fef2caa3cb78030d2bd3d3d5a8e"/></dir><file name="Uploader.php" hash="40017598d08f35f1309c9b483e576f7d"/></dir><file name="Import.php" hash="4241bd7a7e44ba70f9391d2f632b8a58"/><dir name="Mysql4"><dir name="Import"><file name="Data.php" hash="a4b69895138991b6a384fc941a486d79"/></dir><file name="Setup.php" hash="da3d7f9f8b767413a9006f573a7352ac"/></dir><dir name="Product"><dir name="Attribute"><dir name="Backend"><file name="Urlkey.php" hash="d10d908cb1ad504ed9c0a40a69e79c96"/></dir></dir></dir><dir name="Resource"><dir name="Helper"><file name="Mysql4.php" hash="a924955baa87dc9f6e37c2cf59d2cf94"/></dir><dir name="Import"><file name="Data.php" hash="e8a315428f2fd2f53324770b8c52a2cd"/></dir><file name="Setup.php" hash="b0b35e25ed2691bb52c51f5aa2b2d902"/></dir><dir name="Source"><dir name="Export"><file name="Entity.php" hash="d097f23753691fd6b99a23e5db8a3e37"/><file name="Format.php" hash="2a9831118c97892f817a3cf71bd4a5d2"/></dir><dir name="Import"><file name="Behavior.php" hash="39debdfde4ff5bdafe8fb3f7417cdda6"/><file name="Entity.php" hash="d084a416f85c33610e6f8acd92e9080a"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ExportController.php" hash="d646da08380c7c7abc77890a56738124"/><file name="ImportController.php" hash="b45688588da8a5a690b03413e7f52df6"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2b5fd0ba7489999d3d8616c9f34cc3bf"/><file name="config.xml" hash="6b7d81e6af20ebbfbbcf912a00e6ee6c"/><file name="system.xml" hash="2d89d2ffd2f6956e00bc9fb6954f95b5"/></dir><dir name="sql"><dir name="importexport_setup"><file name="install-1.6.0.0.php" hash="b8ec5bee9794164f8aec9f163bcb81d9"/><file name="mysql4-install-0.1.0.php" hash="7134d2f78bae80141c850cbe6ca8d924"/><file name="mysql4-upgrade-1.6.0.1-1.6.0.2.php" hash="7deb6382ac9eb61f3b7809192167e400"/></dir></dir></dir><dir name="Index"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="c32cd8714f4ed772b0e98126b24337fb"/><dir name="Process"><dir name="Edit"><file name="Form.php" hash="8c71fb98f327daace437504f8852559c"/><dir name="Tab"><file name="Main.php" hash="a629e8c381e93ee34c8bee849e40c894"/></dir><file name="Tabs.php" hash="b9c4812603dcfecc1a8e76a84d9941d3"/></dir><file name="Edit.php" hash="9a33dcb0b2ac81702cd1e3009d4a019e"/><dir name="Grid"><file name="Massaction.php" hash="d7d7ebdf36dc55a458d8fc559dd0ef0e"/></dir><file name="Grid.php" hash="c6b0f2dbbdac60d9810ce30e7730560d"/></dir><file name="Process.php" hash="4de4d0788900e27b239ae1a1ad55e29d"/></dir></dir><file name="Exception.php" hash="dd74b012cf9deeb20ff51d7d9ed16513"/><dir name="Helper"><file name="Data.php" hash="522e1c436a01a34b3589b806f146b0f0"/></dir><dir name="Model"><file name="Event.php" hash="07717beb49870c50a259c7f2943d226b"/><dir name="Indexer"><file name="Abstract.php" hash="9c4b7998fe629eb618d8251041788169"/></dir><file name="Indexer.php" hash="884e769dee3d9584b09f6186352dd5f7"/><dir name="Lock"><dir name="Storage"><file name="Db.php" hash="738c9781f3a34d2c6dbfc42eee26be81"/><file name="Interface.php" hash="37eae021303b5644024b56826e32639a"/></dir></dir><file name="Lock.php" hash="e580dff384d6e7436aacf33bb3f68346"/><dir name="Mysql4"><file name="Abstract.php" hash="477ddc13ecbf9e99ef32f8d88609c382"/><dir name="Event"><file name="Collection.php" hash="8795659b34c867a98b4b71d42f9a2c20"/></dir><file name="Event.php" hash="1a62bc4fe89f02130a083846c3c412f5"/><dir name="Process"><file name="Collection.php" hash="4bcd29c0debdf0509e35bce713997780"/></dir><file name="Process.php" hash="c94a06a5ed63dbf8869e1aedd648a8c2"/><file name="Setup.php" hash="54a6af779491f727b4507a3e682da8af"/></dir><file name="Observer.php" hash="2f23648e92fe0e23cd3699cfad90b812"/><file name="Process.php" hash="0c25a0f4f537d3310df414493474a2c4"/><dir name="Resource"><file name="Abstract.php" hash="f2e09b98ac6b14f17e690918fa507244"/><dir name="Event"><file name="Collection.php" hash="28e942fe95491b23badf5a305e0a6c59"/></dir><file name="Event.php" hash="279bb06a9eb7afebf214f2a9e57992a6"/><dir name="Helper"><dir name="Lock"><file name="Interface.php" hash="170c3c0404f11ebfe848545930834384"/></dir><file name="Mysql4.php" hash="00082a6f62286390b13701e5c75595be"/></dir><dir name="Lock"><file name="Resource.php" hash="cb5457be983e995023649b5245e2045b"/></dir><dir name="Process"><file name="Collection.php" hash="013696372fd2220b802825ec6e591f3c"/></dir><file name="Process.php" hash="7bdf56c37e983bb4992250de5f97e52e"/><file name="Setup.php" hash="e8d7279eddc41bc014c7f69acfea8673"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ProcessController.php" hash="2cdd28829e3c8cb35ce1f79468fbed8b"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="b788f706ceed425cf1417693776372d6"/><file name="config.xml" hash="bd7f91c80e9f2ffe5a9354199f2c0ab2"/></dir><dir name="sql"><dir name="index_setup"><file name="install-1.6.0.0.php" hash="bb4956c2be5ecc21951443f0f5ff3140"/><file name="mysql4-install-1.4.0.0.php" hash="67ec705297843227186179361f9e113f"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="d2a129d7208a0e05a57dd1001dfa86a4"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="938285c4676ecc124c4d1f5f0a0ed94d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="be784e1cbc75dcb56705148f32a3ed3d"/></dir></dir></dir><dir name="Install"><dir name="Block"><file name="Abstract.php" hash="6902c1431c4b45148e754c2858f2ecd3"/><file name="Admin.php" hash="197ecc0070ee4b5ac96caca08584a584"/><file name="Begin.php" hash="ca99f58043905d311c5dee2e68a6418e"/><file name="Config.php" hash="33c19d1e9f2ea155e54b14f7619841f2"/><dir name="Db"><file name="Main.php" hash="a24dda5bb19a0412e21230120034b524"/><dir name="Type"><file name="Mysql4.php" hash="4ab2cb7310334bf353ea2e0ea5c1222d"/></dir><file name="Type.php" hash="f81a4f666193eb5d76edea3b3a569cb3"/></dir><file name="Download.php" hash="d70c6de666e0d2eab07a5fe11c5433d8"/><file name="End.php" hash="7d791af735a61ab7857c522f4d93819a"/><file name="Locale.php" hash="8d7585b29f85f305018881ce6c527f7a"/><file name="State.php" hash="4dbd65f205c863965690560e905a21b1"/></dir><dir name="Controller"><file name="Action.php" hash="4a6959b2aaebf4994ce784d8973d78a2"/><dir name="Router"><file name="Install.php" hash="21f02464a980428c48a91bb697fa61c5"/></dir></dir><dir name="Helper"><file name="Data.php" hash="77d3431900e7832b29f277f6771317da"/></dir><dir name="Model"><file name="Config.php" hash="bdb50a753fa9835c2ac9dc73ad7e4f18"/><dir name="Installer"><file name="Abstract.php" hash="781ac9d2ea5d84dfe397a03586bdbbd0"/><file name="Config.php" hash="259c438bf0adc1d4b80f5bd07cdde8ed"/><file name="Console.php" hash="3a59edcda3d99ab4aa173d96cd0bd648"/><file name="Data.php" hash="57bb1fe690685c2acacae620c0948bc4"/><dir name="Db"><file name="Abstract.php" hash="3914db0d1c73d6f931587f41ffe7054c"/><file name="Mysql4.php" hash="28f0a788e0d14e7d6aecab48f9b73826"/></dir><file name="Db.php" hash="398ff81927a68d8ade7beaf39c44d849"/><file name="Env.php" hash="15716e0fb9326e1f53f4ff6776c57145"/><file name="Filesystem.php" hash="b1cea033f845676603e68a8f70be6d66"/><file name="Pear.php" hash="0d95232215ee61327d274c9e9dc863af"/></dir><file name="Installer.php" hash="a4365cb912ac154bc8184570dc89a547"/><file name="Observer.php" hash="c5fe6d648294914b3c77d555e0589d4e"/><file name="Session.php" hash="fd09a02f14c893338ff528af0b0103c5"/><file name="Wizard.php" hash="f45bd37428d46a8361bc5b257c29592a"/></dir><dir name="controllers"><file name="IndexController.php" hash="f1546c0b4140dd1d725da5a511d4fcb2"/><file name="WizardController.php" hash="44da79dcc080a730ff2737f1e26c836e"/></dir><dir name="etc"><file name="config.xml" hash="b8595b386412639dab18910bb8a577e5"/><file name="install.xml" hash="be9dca24525f7b8918d340479ac2c069"/></dir></dir><dir name="Log"><dir name="Helper"><file name="Data.php" hash="77b7c7e3021da5e9b5108902e2dbf892"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Loglevel.php" hash="dff53e61389d6d0caa1351ed6705d424"/></dir></dir></dir></dir><file name="Aggregation.php" hash="d2f7449c9cb370baa6b126394f32a674"/><file name="Cron.php" hash="78f4b3becd273f6d80b323a6a4a3d113"/><file name="Customer.php" hash="07334c582ef162e676b048b826a6ce62"/><file name="Log.php" hash="b9c3fa80e03cbd0655230e4dc25bb99d"/><dir name="Mysql4"><file name="Aggregation.php" hash="e95b44645ae1950dcde0fbcb46738e30"/><file name="Customer.php" hash="bd64c30b49d670b90b4c1c0682b13a2c"/><file name="Log.php" hash="b4d90f475c002e60c736272fee5bfa60"/><dir name="Visitor"><file name="Collection.php" hash="4d4b2fe79d74d0367ec482e4eea32e49"/><dir name="Online"><file name="Collection.php" hash="f17615f3bc29ff108fd9ea946c49fa1b"/></dir><file name="Online.php" hash="1bb31f7da34f1896da43f6ee5baa7d87"/></dir><file name="Visitor.php" hash="ef8e25838b9f4ea447bcedee589aea07"/></dir><dir name="Resource"><file name="Aggregation.php" hash="6320fbc0d61d5381e97325d2df716a6e"/><file name="Customer.php" hash="cc96dd7e3ab9a4be2639e28c3646c874"/><file name="Log.php" hash="86e1a855a2cb793527021209efd13eb0"/><dir name="Visitor"><file name="Collection.php" hash="3916cfd7b4c924ce1ba0dd0fbc54be8a"/><dir name="Online"><file name="Collection.php" hash="1217b0e80c7442546c5ed456b849b3d2"/></dir><file name="Online.php" hash="1cc54c70cc920c6f52f3c7aa07d460dc"/></dir><file name="Visitor.php" hash="1983f99bb9a27ebafd5c48ec0d5ab697"/></dir><dir name="Visitor"><file name="Online.php" hash="ea4ef04360881d07e27bb028051aba6f"/></dir><file name="Visitor.php" hash="07ea18654c5691572851fae0cc450570"/></dir><dir name="data"><dir name="log_setup"><file name="data-install-1.6.0.0.php" hash="890c914a1c774eb4f03d58a604fc801e"/></dir></dir><dir name="etc"><file name="config.xml" hash="5a15f2b582293e574daf8fb2e2f98511"/><file name="system.xml" hash="e88266bc78c4f9634cdd5caff8a10009"/></dir><dir name="sql"><dir name="log_setup"><file name="install-1.6.0.0.php" hash="fa8f43d0436bc5b82462d32af9d27d33"/><file name="mysql4-install-0.7.0.php" hash="86b670a50725cfdddb9545b24b2f4139"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="fc688ce1b1ef6e39d5a13e4ffc9fde46"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="0028ea47d4d20b4c4a46c174b3abd159"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="1da6d2b8156f8644a35fa3de46f18377"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="367f2d7bb54b24bafc8916d6c8ccc277"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="d6969bbd1dfa65fc377958e5ea4995bd"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="020ba4053b5a1fe2fae4999cda08ae04"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="35ac926ff8193438ff2c7b5aec23d2fb"/><file name="mysql4-upgrade-1.6.0.0-1.6.1.0.php" hash="e39090471dd60d09390ffa0475bac0f1"/><file name="mysql4-upgrade-1.6.1.0-1.6.1.1.php" hash="f18aaf1cbe5500179ce83dcc9315f17e"/></dir></dir></dir><dir name="Media"><dir name="Helper"><file name="Data.php" hash="c3eb8a807df343d94ca9105d3e7d2dcf"/></dir><dir name="Model"><dir name="File"><file name="Image.php" hash="c75e9d513b4ee917cde3b04618eb9012"/></dir><dir name="Image"><dir name="Config"><file name="Interface.php" hash="515c906705888ead78cabe00d4197c92"/></dir></dir><file name="Image.php" hash="6118cf5507df643d7f4abdcb95dadd40"/></dir><dir name="etc"><file name="config.xml" hash="77b8320c9d809a754076c1d6f3785cc6"/></dir></dir><dir name="Newsletter"><dir name="Block"><file name="Subscribe.php" hash="90165f5ccc6a4ffcb4ee42f04740a9d6"/></dir><dir name="Helper"><file name="Data.php" hash="e97998fcc72c23dc22806187ee7a7b5c"/></dir><dir name="Model"><file name="Message.php" hash="48fb42e5e94e2b43ad89047b33beffb7"/><dir name="Mysql4"><dir name="Problem"><file name="Collection.php" hash="c8788dec4308705c1478191108f764e0"/></dir><file name="Problem.php" hash="148adcab21e515694bb338e13a33e313"/><dir name="Queue"><file name="Collection.php" hash="3dfcab91cc61a0ef9dfdd029e14e5142"/></dir><file name="Queue.php" hash="04f9b8a875d33753d83211c4775ffa5e"/><dir name="Subscriber"><file name="Collection.php" hash="868d469ab94ad01c20720c8ea435d45c"/></dir><file name="Subscriber.php" hash="66303ed4b8b33818cf92c325094d94e6"/><dir name="Template"><file name="Collection.php" hash="8e9733edb3b35c2663651a74c53f7fe5"/></dir><file name="Template.php" hash="3e887aa04f00405161d6bc5e6fab955b"/></dir><file name="Observer.php" hash="981b3df06c9a269c6ad644b07583245c"/><file name="Problem.php" hash="bec6866c71dc54f9fe2b11f79958d6a5"/><file name="Queue.php" hash="7b120dfbc7637b79347b367a70dd74e6"/><dir name="Resource"><dir name="Problem"><file name="Collection.php" hash="1af4ad0bc367fa519678f8f68cb2f63f"/></dir><file name="Problem.php" hash="e04a3e295be18432f7e07ecc39db06f2"/><dir name="Queue"><file name="Collection.php" hash="5cad78fc6ac394506f4835c891df5a79"/></dir><file name="Queue.php" hash="fa9769de2e349773ab35a4229893c86e"/><dir name="Subscriber"><file name="Collection.php" hash="a2e18092aec1ebc5d6fac12423cc423b"/></dir><file name="Subscriber.php" hash="7ba3fdc246335d44afff9f82aa4dc7ab"/><dir name="Template"><file name="Collection.php" hash="910485de3e7a177b065d0059d11535a3"/></dir><file name="Template.php" hash="de372c36a4d0a938a4d2395bd1ee62fd"/></dir><file name="Session.php" hash="1d55ef04e7029a8caeb719f185168752"/><file name="Subscriber.php" hash="1d6f47cbc98ea4ca9ace0c898769cb51"/><dir name="Template"><file name="Filter.php" hash="428a91314af221f793d03abbb822920a"/></dir><file name="Template.php" hash="a0585fb775c50d70c56d614f8e5ddf50"/></dir><dir name="controllers"><file name="ManageController.php" hash="761c7bb08065579fbdbaf1d7074bc892"/><file name="SubscriberController.php" hash="6995dc1433b0dc3e7c1669113888d4a2"/></dir><dir name="data"><dir name="newsletter_setup"><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="e98c5d60be2ab712a0f2f6968703cb60"/><file name="data-upgrade-1.6.0.1-1.6.0.2.php" hash="cc6e922c33f4060b87ed77ed7f1c9b32"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4491e5a080e48603065d3182fc42a242"/><file name="config.xml" hash="47fa4a22de6ebdf8a5b7b96beee15475"/><file name="system.xml" hash="6510d68004acfa8d580a46abdc7b2223"/></dir><dir name="sql"><dir name="newsletter_setup"><file name="install-1.6.0.0.php" hash="2c1f7b663b037293ed04a78a0c4bbfb4"/><file name="mysql4-install-0.7.0.php" hash="1829ff4265d06172e76a034afd0cf31e"/><file name="mysql4-install-0.8.0.php" hash="3cdbed56d20798018d22294f5418c41e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ade3bb429c3bedc0c50894eff8357baa"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="ea8b87711dc2432b464c356f838f3c4e"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="1fcb5201c366ff25ea62a5f41dca9595"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="23ead47d597a78fcec8ae09b01092618"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="a42b05cbeb6c0ce8c6caeadab56cb838"/></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="87577642a01ec280e5e1ce42b791d5ba"/></dir><file name="Token.php" hash="eacefe102e671e1d8d1b7fc896be09dc"/></dir><dir name="Authorize"><file name="Button.php" hash="e77aa3f58568ca796c463eab154eab34"/></dir><file name="Authorize.php" hash="31b26ff372e835cec834323e2b309c08"/><dir name="AuthorizedTokens"><file name="Grid.php" hash="46bba3e8f4b4b93f4cadc14868215ea7"/></dir><file name="AuthorizedTokens.php" hash="2193577d6a4c6b8c69059cfe7f07de47"/><dir name="Consumer"><dir name="Edit"><file name="Form.php" hash="d63d0eb92dff2479be10409b1874c83f"/></dir><file name="Edit.php" hash="844594d73450202a244284c4283d5381"/><file name="Grid.php" hash="483a78dfbbb5c2c3a8f14dba5fdf4098"/></dir><file name="Consumer.php" hash="fbf4bbbf46b5ccb56850e758830b90ec"/></dir></dir><dir name="Authorize"><file name="Abstract.php" hash="1ef3c8460afd199145803d1279585885"/><file name="Button.php" hash="f99546aeeb3e2943179eb347244b6a9a"/><file name="ButtonBaseAbstract.php" hash="cf7e5f62c49630ed4c546c91e6f3b813"/></dir><file name="Authorize.php" hash="b40dfdc6ec76857eaae0fc89190174d0"/><file name="AuthorizeBaseAbstract.php" hash="36de82f42d93ef49e71eae76d8a34814"/><dir name="Customer"><dir name="Token"><file name="List.php" hash="0978a84305217a73922180cd7b452c33"/></dir></dir></dir><file name="Exception.php" hash="b02e850cc310127bc618f887c81c9954"/><dir name="Helper"><file name="Data.php" hash="b2654c45285b25c378e5f41fc2fc7ded"/></dir><dir name="Model"><dir name="Consumer"><dir name="Validator"><file name="KeyLength.php" hash="b7032595902dc041fb704c13e818acaa"/></dir></dir><file name="Consumer.php" hash="868d5ba12b77c4e2c0708395b006841f"/><file name="Nonce.php" hash="afc0a7f7df13dd34829b89b1a4abbd25"/><file name="Observer.php" hash="c26b8f3b9d0a276c0e21aad86f284909"/><dir name="Resource"><dir name="Consumer"><file name="Collection.php" hash="7c84185db90bab949e5e92b94b7d7ad3"/></dir><file name="Consumer.php" hash="29cf411378299a9d933a4b94fc998a24"/><dir name="Nonce"><file name="Collection.php" hash="4a958097c40de623ecf203c1725a60b3"/></dir><file name="Nonce.php" hash="2c49cdb7c3171302b260004e5109eb16"/><file name="Setup.php" hash="9b48905029d9447843cbded5a72e460c"/><dir name="Token"><file name="Collection.php" hash="730f22f13526a489fbdfa850d0c0535e"/></dir><file name="Token.php" hash="bf9f64082ad5f124b92fbf59765f24bd"/></dir><file name="Server.php" hash="9a8ee325e35904f60bc13accaa37264a"/><file name="Token.php" hash="0a0366fac18ee4738ff5c84db3d3d622"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Oauth"><dir name="Admin"><file name="TokenController.php" hash="54b976441083ca34e0d494afee7de031"/></dir><file name="AuthorizeController.php" hash="7dcb33fa7eecc6ec99ab9278aa5531b5"/><file name="AuthorizedTokensController.php" hash="95e46ef7269075e7a6048dbd76bbdc9e"/><file name="ConsumerController.php" hash="568d426564659c730879afcd1778033b"/></dir></dir><file name="AuthorizeController.php" hash="5080bd30a00ea92ba56361191af92c43"/><dir name="Customer"><file name="TokenController.php" hash="f490915ef729e3db88e86122620e8426"/></dir><file name="InitiateController.php" hash="9729e84b9f25a14dc27a8ec91a2abf9a"/><file name="TokenController.php" hash="712e903461cfc64513d47c7119f42c62"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a279446d78ab461c5d363f9eb6626b5c"/><file name="config.xml" hash="5a849d92d8633c73d00e8fb1e4ebcf2e"/><file name="system.xml" hash="d40a28d7e95aa7324635b44718271739"/></dir><dir name="sql"><dir name="oauth_setup"><file name="install-1.0.0.0.php" hash="270cd8366972805b61d8562d4f29d5dc"/></dir></dir></dir><dir name="Page"><dir name="Block"><dir name="Html"><file name="Breadcrumbs.php" hash="f991fcb342faff3eea8aa3a497ca4ad8"/><file name="CookieNotice.php" hash="e950f9aa82d14ef35c5e0fb4e92daedc"/><file name="Footer.php" hash="03aab94ed397dfd9ae38902b659dc3cd"/><file name="Head.php" hash="ef3a3084c76740cd98deeaee1648fb53"/><file name="Header.php" hash="cf025a3bd3982082acfbe963b37a5e05"/><file name="Notices.php" hash="d64d8bd36ca5cb895950bf67f60ef97c"/><file name="Pager.php" hash="49403d11b0dfe090e141f78eee646f36"/><file name="Toplinks.php" hash="4d36af93c7c82c0404b0ffcb13129b0f"/><dir name="Topmenu"><file name="Renderer.php" hash="9acb47c4b8b2021792a0bcc88dd1cb71"/></dir><file name="Topmenu.php" hash="623f865cc0ae6eef2d3a4412b5882110"/><file name="Welcome.php" hash="3f9025b8c2ea7bca72cc3c5ea05ec7ea"/><file name="Wrapper.php" hash="188a1d66d24a473b5a2bb5c546f51f5e"/></dir><file name="Html.php" hash="5044393b95e3d9c73c7add2dcdf57a1e"/><dir name="Js"><file name="Cookie.php" hash="b2044941f5422984bf1613d0b94a054c"/><file name="Translate.php" hash="8bcd2cb632043cd249a839e4a112fc68"/></dir><file name="Redirect.php" hash="33d15f3427e07675a9a67d7103efec2f"/><file name="Switch.php" hash="88787ce544248154f0ed84146757fdea"/><dir name="Template"><file name="Container.php" hash="c8025c89fe3ffdc81ef8381ca9b2603a"/><dir name="Links"><file name="Block.php" hash="887dc1bb5dcb40d8ed3b638a83397fe3"/></dir><file name="Links.php" hash="893927e56ce466021ace32cfb2c0844d"/></dir></dir><dir name="Helper"><file name="Data.php" hash="658510b4c8c7cc386d78f057ac01f163"/><file name="Html.php" hash="2af036c7b14b256f256c7db64d003f49"/><file name="Layout.php" hash="6648de4cf432211d323cbce5dc9e23ca"/></dir><dir name="Model"><file name="Config.php" hash="200e4bb31d84fcf15035f64c85a13f89"/><dir name="Source"><file name="Layout.php" hash="d00882ca6272ba2bb3e97599fa998ebd"/></dir></dir><dir name="etc"><file name="config.xml" hash="8f5abe229624c53c0ad9d5ab1a0b2218"/><file name="system.xml" hash="96fe148dccab4d0025bb329f266b48f2"/></dir></dir><dir name="PageCache"><dir name="Block"><dir name="Adminhtml"><dir name="Cache"><file name="Additional.php" hash="50a4426171234bb21890f13b1528511b"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="db835c52e1cb185767546efae0d132af"/></dir><dir name="Model"><dir name="Control"><file name="Interface.php" hash="03d86da937719b04c4d708ef325a986e"/><file name="Zend.php" hash="f87121f3ecef691823fbf4d4d99a2273"/></dir><file name="Observer.php" hash="74a187bc620930ff7f1054671a063017"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Controls.php" hash="ee4ba358f79d04a0ea774f48ae8c9aff"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="PageCacheController.php" hash="c3863350d6ce6c17a6b83e043b455c5c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="1b2e108d3ee0f412a8d8e2f9aab75635"/><file name="config.xml" hash="0bae6d48cc3da3f59b555f1cffe84888"/><file name="system.xml" hash="0d7bd93668b17b9f47fc4dd8b9bc4be0"/></dir></dir><dir name="Paygate"><dir name="Block"><dir name="Authorizenet"><dir name="Form"><file name="Cc.php" hash="6033c56549a27958c57d4ff78779cfd7"/></dir><dir name="Info"><file name="Cc.php" hash="591965ad865312d57cf362c026a20fd4"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="dba6eb8db81deffd039c9d64584ae7bf"/></dir><dir name="Model"><dir name="Authorizenet"><file name="Cards.php" hash="d6fb248f65a151b2177ce900328d1b7a"/><file name="Debug.php" hash="fce72af205cb8771867a9c3a1bd839e4"/><file name="Request.php" hash="6e347160e4e16205f35ab2ef257adba1"/><file name="Result.php" hash="b358be783cbd2c10f913bbd94c47fb2d"/><dir name="Source"><file name="Cctype.php" hash="9cba7bc3a7d51b06ee1a4e6c296a73ee"/><file name="PaymentAction.php" hash="19d09e95620aefef82bcef7b11d7bf01"/></dir></dir><file name="Authorizenet.php" hash="df055fc6750475ea2892eff17a983af9"/><dir name="Mysql4"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="3806a67900ed2c659a27c0b0d6848b71"/></dir><file name="Debug.php" hash="8322b19e37639c27558139c7dc0df7e2"/></dir></dir><dir name="Resource"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="af3339b3f7eb87fb0cb3ad5ee01c9ad4"/></dir><file name="Debug.php" hash="1fc8792c0db070250f8a192ecc852740"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Paygate"><dir name="Authorizenet"><file name="PaymentController.php" hash="c07217afdbef9a335a731feafa24153c"/></dir></dir></dir><dir name="Authorizenet"><file name="PaymentController.php" hash="f4c4ad55c1a95d840103e73078331c74"/></dir></dir><dir name="etc"><file name="config.xml" hash="6df6665516f5a71afbf3252be8e117ae"/><file name="system.xml" hash="847f0ca9e56c13395852999c4f0bd047"/></dir><dir name="sql"><dir name="paygate_setup"><file name="install-1.6.0.0.php" hash="048efb0b3a88d840bb27b0b18abce04b"/><file name="mysql4-data-upgrade-0.7.0-0.7.1.php" hash="bc1ea7b293c81fa69c1547483687b10a"/><file name="mysql4-install-0.7.0.php" hash="cae91df94d82a5f6646edb8b14741028"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="1d78518d523fadec9e6c6b4cea73d632"/></dir></dir></dir><dir name="Payment"><dir name="Block"><dir name="Catalog"><dir name="Product"><dir name="View"><file name="Profile.php" hash="177fb2c41ae20ea2c6c4d1b68ac89e78"/></dir></dir></dir><dir name="Form"><file name="Banktransfer.php" hash="d288413181a99c5f0afefbb2e4f4ed2f"/><file name="Cashondelivery.php" hash="694ad42ec3cfcae2c76b50a6b7efd1b0"/><file name="Cc.php" hash="9e199c59c32a70dd81da1f6e0a57ce34"/><file name="Ccsave.php" hash="0a19afa507a97f84222155ce6c7ac7a9"/><file name="Checkmo.php" hash="9676db9db3f06d78f0f088aa44bbf022"/><file name="Container.php" hash="870cac27a5432f57c9db4b3523e88b4b"/><file name="Purchaseorder.php" hash="96fdabdf29a64232816c1ec19f5b50f8"/></dir><file name="Form.php" hash="bd21632fff3f84b4c55e08e1fead54c5"/><dir name="Info"><file name="Banktransfer.php" hash="ebbedf00e590b16b970e50c642c70a3b"/><file name="Cc.php" hash="879a7812e93ad2af85c451c238afab48"/><file name="Ccsave.php" hash="7fc24a23db7223a04a39b2bf7741aaad"/><file name="Checkmo.php" hash="aea5280126efbb6d6f397f4463f28346"/><file name="Container.php" hash="0a9a91fa88d479a46ea739e67df0ee2b"/><file name="Purchaseorder.php" hash="bc7b6bc46169dcafd9f1067bd21fc0d3"/></dir><file name="Info.php" hash="df1a067a96372eeb0b10655342b30010"/></dir><file name="Exception.php" hash="87b5b99fa44bb6615966125858fbe734"/><dir name="Helper"><file name="Data.php" hash="fd6b44a0cb90a2acedd406144c773d22"/></dir><dir name="Model"><dir name="Billing"><dir name="Agreement"><file name="MethodInterface.php" hash="8ab8a5774531901cec5b8b12f716108d"/></dir><file name="AgreementAbstract.php" hash="c261387b125d7b4dacaed7523bd68f3f"/></dir><file name="Config.php" hash="b283917097f30ad91afe2277375c89d5"/><dir name="Info"><file name="Exception.php" hash="77cf716c223a37fc82769f5e40e9a57e"/></dir><file name="Info.php" hash="4915f66db7879aa3941635aa4733bad8"/><dir name="Method"><file name="Abstract.php" hash="014bce1895a314d6312da3319550215b"/><file name="Banktransfer.php" hash="16b46c51cc39884bb8ba6aab132da3c4"/><file name="Cashondelivery.php" hash="0c6308eedecaf6d3ad31e18f3662155a"/><file name="Cc.php" hash="39fd1c44b669c320012a3f15c0b45666"/><file name="Ccsave.php" hash="46c4f3b223f6c23ab39cca636715ba84"/><file name="Checkmo.php" hash="cf3c9c811d58dd0d2b9666a3d36790d8"/><file name="Free.php" hash="19a22a757611417b48fcbeb751aa5c76"/><file name="Purchaseorder.php" hash="de401082f2feb12ff9eacf5c708ee04b"/></dir><file name="Observer.php" hash="121d74c44f6ad55920c735d49503e4c4"/><dir name="Paygate"><file name="Request.php" hash="3e0085e87c11900e6840a3bb0e1f503b"/><file name="Result.php" hash="479b843f80334c1d7b79a99edf74cbe9"/></dir><dir name="Recurring"><dir name="Profile"><file name="MethodInterface.php" hash="fbf42fa7d4991ed025794a6699ad756d"/></dir><file name="Profile.php" hash="f2340bbd82a1250ef4ee440fc228c269"/></dir><dir name="Source"><file name="Cctype.php" hash="aae8dbf57842e2e9823513ce2d6eca07"/><file name="Invoice.php" hash="88d7e2470321fbc7d7bcb267b02c96bb"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="df7aee1daab22711cc82001cfe07e802"/><file name="config.xml" hash="8e82b4e2313120f93051be2a6a2c9668"/><file name="system.xml" hash="818abf61a7c2e8f0705045ae764594a2"/></dir></dir><dir name="Paypal"><dir name="Block"><dir name="Adminhtml"><dir name="Settlement"><dir name="Details"><file name="Form.php" hash="e5b9fdd5a6685d541276696c0327767d"/></dir><file name="Details.php" hash="cbc8bcda62170c2dc9440588a7a40350"/><dir name="Report"><file name="Grid.php" hash="c7f38c4032c5f4b7fcf4f19025031231"/></dir><file name="Report.php" hash="9e83f05f54f1b4bb9c2532d9aab8581f"/></dir><dir name="System"><dir name="Config"><file name="ApiWizard.php" hash="f249a4d8a0e29b98f4195fe3e548c6e7"/><file name="BmlApiWizard.php" hash="388d1c38ea21817847d7e4d2b6a9b174"/><dir name="Field"><file name="Country.php" hash="0ced16a241514400526adbb56977b281"/><file name="Hidden.php" hash="1d47c5d610e2e9c99531b4ed05d310b6"/><file name="SolutionType.php" hash="4d58c24d6c1fb67b6c983cd03702251c"/></dir><dir name="Fieldset"><file name="Deprecated.php" hash="ae380939111503e8a39d8f1b59827543"/><file name="Expanded.php" hash="5890da581470286843f21ef228b885d3"/><file name="Global.php" hash="1ed6987780660633c91bd794b386249f"/><file name="Group.php" hash="eece6a248fff737dcf5a9a4796296c37"/><file name="Hint.php" hash="ba265aea048de6c9ca296ab3cc5316b7"/><file name="Location.php" hash="88077b2ed4cd5f0989b723c26da1a1af"/><file name="PathDependent.php" hash="8a46ce8d28ac2618402490104a69b8fe"/><file name="Payment.php" hash="e99d151e8b4a904a2a10b3b7c914900c"/><file name="Store.php" hash="b79e68ca1266edd62239a21ce17427e0"/></dir><dir name="Payflowlink"><file name="Advanced.php" hash="7d3c80eec88b130bb07063675c8c0807"/><file name="Info.php" hash="50b2f9bc80765611c177cee8f4181c06"/></dir></dir></dir></dir><dir name="Bml"><file name="Banners.php" hash="35bd3f7387517aac7448c6cfca52e421"/><file name="Form.php" hash="31ee71c9e2f4be982e445324060410b5"/></dir><dir name="Express"><file name="Form.php" hash="2816fcf35c86ac03e5aecf4a5e1cd3da"/><dir name="Review"><file name="Billing.php" hash="ab65d78ea26c6954fbea7aa3b0f94710"/><file name="Details.php" hash="4031aa191f568a4395c61a29b695d4f0"/><file name="Shipping.php" hash="433a18a914cb3fe2f7f24b4870c5a337"/></dir><file name="Review.php" hash="b5659089597f24e7c254dc1d4b3f0ef2"/><file name="Shortcut.php" hash="d5ba10fb758c8c1c072202a0c0a42ca9"/></dir><dir name="Hosted"><dir name="Pro"><file name="Form.php" hash="8c4c4db3c035d205a18227918f163a37"/><file name="Iframe.php" hash="40415e2259edc254e88dddb8d5e5779b"/><file name="Info.php" hash="2cb57828f52a47141ea7487370157971"/></dir></dir><file name="Iframe.php" hash="4a6943edec11f3e0acebaee3f99affaf"/><file name="Logo.php" hash="644197d185e36c659d21f8235775ce1d"/><dir name="Payflow"><dir name="Advanced"><file name="Form.php" hash="99f7c61658b2f48ca9c506e1bc6d0cd3"/><file name="Iframe.php" hash="9125ab249263b6a1d119ef2cba822846"/><file name="Info.php" hash="13474928b17987e99a7753b994326ed7"/><file name="Review.php" hash="6345a4651148d0270cbbc7525a8a2fd0"/></dir><dir name="Link"><file name="Form.php" hash="2eedcd560a004230cfef948190ea1888"/><file name="Iframe.php" hash="e98d80d6893145a013956bdf4560bfcd"/><file name="Info.php" hash="f559a893472759d265277ab7a3312972"/><file name="Review.php" hash="2a7d335209f8e2082024b1905f2e288e"/></dir></dir><dir name="Payment"><file name="Info.php" hash="9fb0a1242b2e6abab1a5c580cdc2b9e1"/></dir><dir name="Standard"><file name="Form.php" hash="5e8d44717db3c461f01f52fbb1fee675"/><file name="Redirect.php" hash="d95bf19f31428d9ac8dd3eecb049ea1e"/></dir></dir><dir name="Controller"><dir name="Express"><file name="Abstract.php" hash="91079718601cd1e5493b1c2ebdf3b29d"/></dir></dir><file name="Exception.php" hash="52e9b46f04489b2f5293e3aaa5f193a5"/><dir name="Helper"><file name="Checkout.php" hash="cc47cb51dc1237c9310e244821d5d88f"/><file name="Data.php" hash="5765b5978c401bb75e3b56f952debc25"/><file name="Hss.php" hash="f09845ad41eac4b35650d7ef299e4abe"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="1f033620494a6bf64f37059d1cf6837c"/><file name="Nvp.php" hash="e895e85a068bcf479d6ad0d0d9addf8a"/><file name="ProcessableException.php" hash="2de90c8f558621439ced439d4c238b0a"/><file name="Standard.php" hash="3c60ed388ab696f96a2cb1e55f9e4481"/></dir><file name="Bml.php" hash="2e9a70be7fcb18fd620fb81293ae7a15"/><file name="Cart.php" hash="927022eeceb4c98927f693ead4b1efe7"/><file name="Cert.php" hash="65d12a6ef98665bb43f5644210ab0723"/><file name="Config.php" hash="2262949907b03bfd85d292fc06012ec9"/><file name="Direct.php" hash="23056fed58d1a60a9d6c2acadbfba531"/><dir name="Express"><file name="Checkout.php" hash="666fa132a57bc2fa3072d9e53ef295db"/></dir><file name="Express.php" hash="524a8f76d3dbc89de24d2d28883aff95"/><dir name="Hostedpro"><file name="Request.php" hash="8a5c8539fcdebe70802dede8885c9a7e"/></dir><file name="Hostedpro.php" hash="66311a423896cfb9e8f6893667eb5c81"/><file name="Info.php" hash="0b5f6386c2e638255ca68392fac1f57e"/><file name="Ipn.php" hash="dbbad4769f9163980478e25d59ec87ff"/><dir name="Method"><file name="Agreement.php" hash="3e5c0201146adaec141aba9331383b76"/></dir><dir name="Mysql4"><file name="Cert.php" hash="e4c614c2f5e31b5c137fa79952ce34c5"/><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="1db3d35fa5bd6f8e62b5e656d4140437"/></dir><file name="Row.php" hash="f87109231daaeeaaff88e90a1c388158"/></dir><file name="Settlement.php" hash="f3c80fc26c12f29a07ee3ebb0592f8f4"/></dir><file name="Setup.php" hash="070aca9490e7d7fef0ce2721728fb8fa"/></dir><file name="Observer.php" hash="343774917f36a91b429444e10e5a2296"/><dir name="Payflow"><file name="Request.php" hash="3feb4bcc8c9ed29152e4bb5fa2655d6c"/></dir><file name="Payflowadvanced.php" hash="faa6480fd5f7dff3760404c3d9c56d06"/><file name="Payflowlink.php" hash="68a9d812cfa0681f351d271ea1a25058"/><file name="Payflowpro.php" hash="00588992018fd9cab87a67056892bf60"/><dir name="Payment"><file name="Transaction.php" hash="f69848160317424680ae4b74c03a01ec"/></dir><file name="Pro.php" hash="3e321e3c58ee77fd65fd6b31aaf8a121"/><dir name="Report"><dir name="Settlement"><file name="Row.php" hash="eaf6d45f6d35cb5b1100ae53cc6e4c02"/></dir><file name="Settlement.php" hash="3361f2eb8c6ac9455e31bf694128e249"/></dir><dir name="Resource"><file name="Cert.php" hash="0f0784636c1048df5db13cdff16f1b5c"/><dir name="Payment"><dir name="Transaction"><file name="Collection.php" hash="d620b8cdf75d558c2ffedac64aee6f68"/></dir><file name="Transaction.php" hash="f0a353ff6f66f8b906c9319b55731123"/></dir><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="0edf8f3bdda803361cc96eacf05f9e64"/></dir><file name="Row.php" hash="3dea6b7df930311797f57b4981a825df"/></dir><file name="Settlement.php" hash="4a852619f5cd7526c15498abc690d784"/></dir><file name="Setup.php" hash="ad54a2dc8421bbb6e218ab847eb0157d"/></dir><file name="Session.php" hash="0e52fbc305314b8303e2768866088927"/><file name="Standard.php" hash="4ebf165592b8d143e77f85598cfac648"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Cert.php" hash="b681c77e7b6a1ec074e243f78db21378"/><file name="Cron.php" hash="f9cea41b4cdf8affcaa6a2de583eebaa"/><file name="MerchantCountry.php" hash="c2ffdf97055b49fa64ac20c8401b16ef"/></dir><dir name="Source"><file name="AuthorizationAmounts.php" hash="43cf2b07ee2871aff97a2f9b00bd422a"/><file name="BmlPosition.php" hash="857fa235c3d616e3201b60c9f16dd63f"/><file name="BmlSize.php" hash="f6ad47b26fe2336050fc459da1234012"/><file name="BuyerCountry.php" hash="d1125fce7a0bb6ec201feea65df7e96e"/><file name="FetchingSchedule.php" hash="161e4378ba1b36cd6719111288643a54"/><file name="Logo.php" hash="98f42440d7afa63e67a5573f505319ce"/><file name="MerchantCountry.php" hash="b698f98f9302ab02913c6f8fd61b61f0"/><dir name="PaymentActions"><file name="Express.php" hash="1de95e97374bd2a3798d3935420c5703"/></dir><file name="PaymentActions.php" hash="05edd94d9e97f67e3dfb06428e2d17c8"/><file name="RequireBillingAddress.php" hash="23bbd209c36544d1cdc6102a9cbc75b0"/><file name="UrlMethod.php" hash="6b4b63e4db055261fd12ea7eb7be22e2"/><file name="YesnoShortcut.php" hash="2da6b46e2d208d6a43242c96bd3a7e66"/></dir></dir></dir></dir><file name="UnavailableException.php" hash="99001c6d9c99d1524adc49cb85ec96cb"/><dir name="controllers"><dir name="Adminhtml"><dir name="Paypal"><file name="ReportsController.php" hash="ef7f12981249d0c5d3a1d6ad52a00af8"/></dir></dir><file name="BmlController.php" hash="494bd2cef11fd4163cf4508686562188"/><file name="ExpressController.php" hash="a577dce6efaf5fe6458bee9be962f0ec"/><file name="HostedproController.php" hash="e84941f2bf640f691f0bdeae79a87e1c"/><file name="IpnController.php" hash="53d79ef135d0cc95d6bdb25724b78bef"/><file name="PayflowController.php" hash="f6c5548f28fc823d94445291f8d7b8d8"/><file name="PayflowadvancedController.php" hash="b285ffce0d573a7b11c5cc97eb40d464"/><file name="StandardController.php" hash="ab15fb114adfc27dc6cf7b35714bb93f"/></dir><dir name="data"><dir name="paypal_setup"><file name="data-install-1.6.0.5.php" hash="82d9852303a512f4bf0ab831731f95b7"/><file name="data-upgrade-1.6.0.2-1.6.0.3.php" hash="a8f121f3f178ae1b42b9af8a6cf70737"/><file name="data-upgrade-1.6.0.4-1.6.0.5.php" hash="ccb9775824ca2f3833d57d1c254c9df6"/><file name="data-upgrade-1.6.0.5-1.6.0.6.php" hash="8e9a82be1cdd53eab9d521f4bbebf02e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="41f4761de03e49e2b0f15f9cf2c09500"/><file name="config.xml" hash="333bbdfa30049f6a592443174aa1124b"/><file name="system.xml" hash="99c563720e194591a4c70df62832b926"/></dir><dir name="sql"><dir name="paypal_setup"><file name="install-1.6.0.0.php" hash="a469c1645e461247ba2d45091cacf46f"/><file name="mysql4-install-0.7.0.php" hash="8a4d7d0e32b897849b9ed182618cfba3"/><file name="mysql4-install-1.4.0.0.php" hash="861caa8922fe21190378b1e1b1be5a11"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="d9026658150083112a9a477b26c93cd4"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="84d5b3b7cdc508c61e9f6171a3760d8b"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="1bcbc91075bd5c09113eb04878f86ae1"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="a63fdd125291c15c96bf95b8af666c95"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ebc82d9d5c469a88eb351e76042d5e51"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="0bd6a67c5e268ee544580fc52dbada08"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="0c907a98175600ccd1ceb837a403fe93"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="7de700b1fdde8dbe81032c23e24ada62"/></dir></dir></dir><dir name="PaypalUk"><dir name="Block"><dir name="Bml"><file name="Form.php" hash="b8587bb312604e79fc56f1e2c95851d0"/></dir><dir name="Express"><file name="Form.php" hash="ab8d6bcb8f39a9fc8693add8bb28d142"/><file name="Shortcut.php" hash="c934c7452bf6f799ab5eb3802dc3d05a"/></dir></dir><dir name="Helper"><file name="Data.php" hash="affb65965b8506f74ec579e3dc31f11f"/></dir><dir name="Model"><dir name="Api"><dir name="Express"><file name="Nvp.php" hash="e23e1274b29120a703f8feaf5feb3c10"/></dir><file name="Nvp.php" hash="4119db427637448394b30823707feef2"/></dir><file name="Bml.php" hash="07663320785979059297d1f68040d40d"/><file name="Direct.php" hash="f8e18ae227952ffd2ce3d28d89d211c4"/><dir name="Express"><file name="Checkout.php" hash="56db8706940006ee1723600b8839dcf8"/><file name="Pro.php" hash="f7996a02b7831f5655d721dd09dbb863"/></dir><file name="Express.php" hash="e5ec7a4b91dd659e77a6b8e45072f34f"/><file name="Pro.php" hash="f15a60c08f055d020b67812508dbaf34"/><file name="Session.php" hash="479e0f59e3068e17d1bc1b931486de10"/></dir><dir name="controllers"><file name="BmlController.php" hash="a172c46b5c88ba77cc86dc8c1bfb59f0"/><file name="ExpressController.php" hash="e4fc997f978a3f20062593a77e1efcbf"/></dir><dir name="etc"><file name="config.xml" hash="89875093f2f718104c448faef9890759"/></dir><dir name="sql"><dir name="paypaluk_setup"><file name="install-1.6.0.0.php" hash="09c6363a8cfeb315b24bf0fd7af38815"/><file name="mysql4-install-0.7.0.php" hash="33b0cef1a049e53c37f4b0a146e9d1f1"/></dir></dir></dir><dir name="Persistent"><dir name="Block"><dir name="Form"><file name="Remember.php" hash="333819d9ae4c9c1ae21658f486533b13"/></dir><dir name="Header"><file name="Additional.php" hash="10c1305d86df9738a70b3bc713736ea4"/></dir></dir><dir name="Helper"><file name="Data.php" hash="0d8f817fef415f7eaa1a689b7d8808f2"/><file name="Session.php" hash="d6b450f1ea3a9eed8fcffa150cfe014d"/></dir><dir name="Model"><dir name="Observer"><file name="Session.php" hash="189c0308ec2f5382cc59af22d1d5a875"/></dir><file name="Observer.php" hash="8c12d74012669ce2f73fbfd77be77281"/><dir name="Persistent"><file name="Config.php" hash="42fe0ac0cd68cc114178e9fc27b4f742"/></dir><dir name="Resource"><file name="Session.php" hash="ffa5af83cb7feee8b7567cba7cbe532e"/></dir><file name="Session.php" hash="83e4fbfa07189633e2a468e560206eac"/></dir><dir name="controllers"><file name="IndexController.php" hash="890098199a92d1c36c949b70eb2fc98f"/></dir><dir name="etc"><file name="adminhtml.xml" hash="e0b68cb0d29e4f576509a3008be30cdd"/><file name="config.xml" hash="c5c06dc6a1703ae9012a69e17f6b103b"/><file name="persistent.xml" hash="f946fe7d047c8c278e1973f28955a7cc"/><file name="system.xml" hash="13c4e7c48262c8cee85e3b4238af098a"/></dir><dir name="sql"><dir name="persistent_setup"><file name="install-1.0.0.0.php" hash="82392709bb0485996d6a719abd30b231"/></dir></dir></dir><dir name="Poll"><dir name="Block"><file name="ActivePoll.php" hash="9d4dd3295aff282ce7c047a86c19beea"/><file name="Poll.php" hash="f39732e4ded4e7eedd55124a480819cf"/></dir><dir name="Helper"><file name="Data.php" hash="12d08eb1c5e1ed2ed817120806c97ce8"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="208e9a3a7c7d73fc792589d408713786"/></dir><file name="Answer.php" hash="5e21ed907384a62a8d8ed4d32f1d3c55"/><file name="Collection.php" hash="7e9a6d63368026ab14d077e8737e3b2a"/><file name="Vote.php" hash="2feec63bb9b4b2dcd48a5bc9d7e59294"/></dir><file name="Poll.php" hash="c2bb5286e3949ee542e56896c46c83d2"/></dir><dir name="Poll"><file name="Answer.php" hash="3a11632e250fe985c2c486c0634e80ce"/><file name="Vote.php" hash="83379319f239e8e979d95417db90a642"/></dir><file name="Poll.php" hash="01c804752ecde379ae176b4accd2cf08"/><dir name="Resource"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="9d79a54ee63b81002e7ea6d6a144fa2f"/></dir><file name="Answer.php" hash="03ee7869fc60762dd91b04cf4173ccff"/><file name="Collection.php" hash="328170d83a3fc0e0b640337c0c9b4053"/><file name="Vote.php" hash="04e1e11d975b1912c4b0ea92846b29b9"/></dir><file name="Poll.php" hash="f9107cb2951ecfe9608312b915d02b01"/></dir></dir><dir name="controllers"><file name="VoteController.php" hash="8b50c739a704b988fbb963e54bb6140a"/></dir><dir name="data"><dir name="poll_setup"><file name="data-install-1.6.0.0.php" hash="b1ebd6ebf260727fabb12edaa5bf718b"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4ce724cdd5f9f64e41b9c85fe7ebc8c8"/><file name="config.xml" hash="a7733999ba43dde67c91de87dba8a158"/><file name="system.xml" hash="ea0e25de8fab306c65f85050e96323db"/></dir><dir name="sql"><dir name="poll_setup"><file name="install-1.6.0.0.php" hash="c3a053dd443decf692d1b1d757b1a8b7"/><file name="mysql4-install-0.7.0.php" hash="f329a97aa38a93dc7c8d7dc2093c98ce"/><file name="mysql4-upgrade-0.6.0-0.6.1.php" hash="7988501bb0249e9dc86d2735cc859ef2"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="355386de84256066b8f83bdbe166966a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="2e6810d2ae9ddc4479be28277ec498d7"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="00b7e17931f71719221ecff3466e6855"/></dir></dir></dir><dir name="ProductAlert"><dir name="Block"><dir name="Email"><file name="Abstract.php" hash="225b1174b83bf9842bd3911460805707"/><file name="Price.php" hash="4d91be108a830bcf6f395917eb48b7f4"/><file name="Stock.php" hash="827ca19c2f52bc7f1d7a268f41fe85e8"/></dir><file name="Price.php" hash="a55f93ec80e2e019a40e09cd24ed190c"/><dir name="Product"><file name="View.php" hash="95eeb0ea7e599217005aa7482f574f8a"/></dir><file name="Stock.php" hash="87c1d1020e7b6f00dea8d267ecac61e0"/></dir><dir name="Helper"><file name="Data.php" hash="5f59f1bbf53ac2a0c5957e2d6a868907"/></dir><dir name="Model"><file name="Email.php" hash="62211d554c40447b09267f5f8582cc00"/><dir name="Mysql4"><dir name="Price"><file name="Collection.php" hash="0396232e9ceaea1f1ad8c2ea2fb7bb83"/><dir name="Customer"><file name="Collection.php" hash="4b636dbca91f797d2ff2982a23aca276"/></dir></dir><file name="Price.php" hash="3798c79c2dd9a05bba2befae549821fd"/><dir name="Stock"><file name="Collection.php" hash="5fbd104a1b19b6bc4796728283bd519e"/><dir name="Customer"><file name="Collection.php" hash="de60fd212fa33814c90dda0b506c0885"/></dir></dir><file name="Stock.php" hash="6a68e66d99eddfcd1b35a7d11140ff10"/></dir><file name="Observer.php" hash="ccfbe1294d264e9c1625a830fd03dafc"/><file name="Price.php" hash="08c6a60d8fbc5c87660c03c2f2a9ee02"/><dir name="Resource"><file name="Abstract.php" hash="962282802b54cd53d8ee99c30f11fccb"/><dir name="Price"><file name="Collection.php" hash="39b17fe210ac54fdf1d397221a6d07e3"/><dir name="Customer"><file name="Collection.php" hash="01477662ad780c40948cee9fcbd028e2"/></dir></dir><file name="Price.php" hash="f2f9c90ae8ba3579a1a18d3f164acbe1"/><dir name="Stock"><file name="Collection.php" hash="2bf4b357d27c4b479f339629b643f146"/><dir name="Customer"><file name="Collection.php" hash="8c18030b3c7f4b52105d004386030379"/></dir></dir><file name="Stock.php" hash="e6b66cfbba145e70963e8ab48006c461"/></dir><file name="Stock.php" hash="5930fb795ac3e7b13252d03a68efeac1"/></dir><dir name="controllers"><file name="AddController.php" hash="287b8f88273d42a1133abc7a16c9a350"/><file name="UnsubscribeController.php" hash="b2f7fd4b794230cafde3c8ef541c915e"/></dir><dir name="etc"><file name="config.xml" hash="9f495dd8376ce0b7ca10513a5a5ae92d"/><file name="system.xml" hash="719dbd705ac6d1174df149ff978f19ed"/></dir><dir name="sql"><dir name="productalert_setup"><file name="install-1.6.0.0.php" hash="a4714952faba9fd667a39e8fdecf0a8f"/><file name="mysql4-install-0.7.0.php" hash="4fec003c5fcefb6ed96d2c8f421ad61a"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="0b4408408f6ff0054957d73a0268142e"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="82cc39f904bc05bbeaa58fb326eed66b"/></dir></dir></dir><dir name="Rating"><dir name="Block"><dir name="Entity"><file name="Detailed.php" hash="5b2c246c58b3973bf079c6323dfc4291"/></dir></dir><dir name="Helper"><file name="Data.php" hash="2ae5f42052d5a9bb5fc4c759bd437a0c"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Rating"><file name="Collection.php" hash="98b8bb8cf75a40985be12250c359e4d2"/><file name="Entity.php" hash="ab6b476cb18067f88027898bbbb075bd"/><dir name="Option"><file name="Collection.php" hash="3ed1b12dae6506f14d6edfec825e4505"/><dir name="Vote"><file name="Collection.php" hash="3812ae6882681b138fab0ed11d81c3bb"/></dir><file name="Vote.php" hash="de1ce59afd0fc091dadba951f7e46e97"/></dir><file name="Option.php" hash="fe79670b93585fe9364937ff96fcf90b"/></dir><file name="Rating.php" hash="db82336946dc3d047aec8e37241ae958"/></dir><file name="Observer.php" hash="5849a33fe1c821fffc75ee15e69a55f8"/><dir name="Rating"><file name="Entity.php" hash="7fd93675f8aea244a2d0393aeeddbb86"/><dir name="Option"><file name="Vote.php" hash="9765a36573defea0530e9a86b455367d"/></dir><file name="Option.php" hash="7ab99eaf3748505e39632fe7ad81cac2"/></dir><file name="Rating.php" hash="883e56e21530eb1a20d5b248bd4534e1"/><dir name="Resource"><dir name="Rating"><file name="Collection.php" hash="e626f83de7bdff1c5698290eac1de146"/><file name="Entity.php" hash="fdacaaaf2ad847c5ea4bef8107c622e9"/><dir name="Option"><file name="Collection.php" hash="6a7b3b862590bd2edf6f39b6d7a81e7b"/><dir name="Vote"><file name="Collection.php" hash="6a2753601a5f70a4ad58183f6dfbdeff"/></dir><file name="Vote.php" hash="99086c9274a25b1b09dd83cd77baff81"/></dir><file name="Option.php" hash="cccf28dce22249e4e5b9254c5ea4af11"/></dir><file name="Rating.php" hash="2cf06073f51b4c4e3c30d4c8dae0d529"/></dir></dir><dir name="data"><dir name="rating_setup"><file name="data-install-1.6.0.0.php" hash="4e15aecb4a0f516fd448494b346962c9"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="abf5bc5fc9594032e42c5262d43df141"/><file name="config.xml" hash="d0037270ef3898d66addac3e45c6fab9"/></dir><dir name="sql"><dir name="rating_setup"><file name="install-1.6.0.0.php" hash="c459c3433a33cd40a0dcd2d1f0d728df"/><file name="mysql4-install-0.7.0.php" hash="22f4371dec83720aec05d2289aa33b3a"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="c1cffd8df87f22dd3e7c0c63aa318338"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="3ae0b12a0b9f99fd61a2b8e8b3bd76f7"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ff25b0cf4eead12cdea807d72bfbe834"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="cc7b4719d7b7171050e6e89d008f888f"/></dir></dir></dir><dir name="Reports"><dir name="Block"><dir name="Product"><file name="Abstract.php" hash="618f916cb328bee34177a44b1b8221b5"/><file name="Compared.php" hash="512f58ad5f3b54879481e90b1807baab"/><file name="Viewed.php" hash="916b03dbbc0a68d4de7ad2be3d7bc26b"/><dir name="Widget"><file name="Compared.php" hash="74a13802738e7d4f1dda322693277642"/><file name="Viewed.php" hash="d5bce87735cb2310fd42cf375051d6aa"/></dir></dir></dir><file name="Exception.php" hash="e4cb46947359c3920baa2dd2f383ec9f"/><dir name="Helper"><file name="Data.php" hash="e133f1644a3dadb9cb4e3c27e5242a63"/></dir><dir name="Model"><file name="Config.php" hash="466aa431dc8dc22aec7de0830ceccc35"/><dir name="Event"><file name="Observer.php" hash="d2d8b4b5e576d347db7e07750a215cb8"/><file name="Type.php" hash="da9a516b6abca0af80711cfbce13ecab"/></dir><file name="Event.php" hash="62849419a25cebdc5f59f7599f7d40a8"/><file name="Flag.php" hash="e8420f008083dd2897e243b6890dd816"/><dir name="Grouped"><file name="Collection.php" hash="fce1a8636b71e8b68adad5ba94d587e4"/></dir><dir name="Mysql4"><dir name="Accounts"><file name="Collection.php" hash="c43c6d376971152f8071daa402b1edfe"/></dir><dir name="Coupons"><file name="Collection.php" hash="215bac9d192f4e523cc7c3ced24c3d26"/></dir><dir name="Customer"><file name="Collection.php" hash="3a57467ab9a8c8ed8b101fd3bd4d9de9"/><dir name="Orders"><file name="Collection.php" hash="5f50161b3f87726d13556c60de33fc65"/></dir><dir name="Totals"><file name="Collection.php" hash="6b8f5c4560b150a9b63a06ebd8281ef0"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="3efe68986197b4643d255232e4b30b27"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="3f9b8fc2a1af148e8e26868e0533a767"/><dir name="Type"><file name="Collection.php" hash="da2d081bca4231b71e188cafe3dfe5cd"/></dir><file name="Type.php" hash="80cfeb6063f15022e3959276c2f7f457"/></dir><file name="Event.php" hash="eabd64bf88500f36dc159ba18998dd1a"/><dir name="Invoiced"><file name="Collection.php" hash="596250559346d847f871f60efcacea9b"/></dir><dir name="Order"><file name="Collection.php" hash="8c15df59b61ac9da86805fb74f2a9bad"/></dir><dir name="Product"><file name="Collection.php" hash="e1a6d4fc36e68edc04c39a320e3c6cdb"/><dir name="Downloads"><file name="Collection.php" hash="d32469a3d343bc4060da89ec48d6c640"/></dir><dir name="Index"><file name="Abstract.php" hash="3dba64a9f30b6797b5a35f97c1eabd42"/><dir name="Collection"><file name="Abstract.php" hash="bdcc7e8a4eaea95d6e98e43455a0d202"/></dir><dir name="Compared"><file name="Collection.php" hash="2585fdd6da8bc3042932c8a152de8541"/></dir><file name="Compared.php" hash="f0779232b1141e8441864d846b68cbd2"/><dir name="Viewed"><file name="Collection.php" hash="f14514c3a00996b8b09bb80b7f8b6658"/></dir><file name="Viewed.php" hash="c6c7c35613230985502ebb7d071ba19a"/></dir><dir name="Lowstock"><file name="Collection.php" hash="8da81a9d3e31b0fb501b9551d937f400"/></dir><dir name="Ordered"><file name="Collection.php" hash="4c9d3d8a300c92f4e59fa1cf0bc2e5a3"/></dir><dir name="Sold"><file name="Collection.php" hash="d6d265aed97e1809e2464a5d43ea1d4c"/></dir><dir name="Viewed"><file name="Collection.php" hash="eff42b4102e0d1d82de7c6bb1188b56c"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="2bc4c24ef71a09eccbf5ef65f373ad45"/></dir><dir name="Refunded"><file name="Collection.php" hash="2ff3e3a83c3c5a0191e513257d2b72a6"/></dir><dir name="Report"><file name="Abstract.php" hash="3eecb8325b82a49cde6e27cdc5eafffc"/><file name="Collection.php" hash="20b54baab302dd188736d0dd63bdb087"/></dir><dir name="Review"><file name="Collection.php" hash="4f2ec56ada2d858e160208bb521235b5"/><dir name="Customer"><file name="Collection.php" hash="65bab90d56934dcd3a42639a0bcba208"/></dir><dir name="Product"><file name="Collection.php" hash="ff10648d46a1e8c2eea9a53dafed813b"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="14e845b57982b0e7dfc81862c46bffbd"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="cb1d5db0cfda4b2ec87103c0e85b79ed"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="f15e93858b8bdce3ecb04c115840e3c8"/><dir name="Customer"><file name="Collection.php" hash="80852db6816412e229adfa3a8f5ce6c4"/></dir><dir name="Product"><file name="Collection.php" hash="d72784e5dc3adbce557c1492b86dc98e"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="97636b94741f9c0b3cc95f9592deb3f9"/></dir><dir name="Wishlist"><file name="Collection.php" hash="132ed2a5e8dec030ccfae67bfb90e66a"/><dir name="Product"><file name="Collection.php" hash="f115da5e0ab3d7075fcc4ed4fa7b6a73"/></dir></dir></dir><dir name="Product"><dir name="Index"><file name="Abstract.php" hash="292191f33cea4107c1b90ff1ef94d664"/><file name="Compared.php" hash="7ec52d013ae0ce0af0f1cfa159e05603"/><file name="Viewed.php" hash="482edac3fa73667bea4ecf181862b561"/></dir></dir><file name="Report.php" hash="add4596330bdaf4b65c71986d1812095"/><dir name="Resource"><dir name="Accounts"><file name="Collection.php" hash="3179184134fc5150f0c44484aafb7235"/></dir><dir name="Coupons"><file name="Collection.php" hash="504549c647246bce472e05f116d588e2"/></dir><dir name="Customer"><file name="Collection.php" hash="c04b1a04cd26767559f06e1df86b63eb"/><dir name="Orders"><file name="Collection.php" hash="551d89363386b8a2c3b9efd9e4ff5ea2"/></dir><dir name="Totals"><file name="Collection.php" hash="d89aeac40995c68f7ae257fa20e19c25"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="dd4efb67b43fa97ec444d188c40fb5da"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="9d2351a8247320cdc4a9b1c8668a40db"/><dir name="Type"><file name="Collection.php" hash="a3ad810297f289f83ad5c45a8c172edf"/></dir><file name="Type.php" hash="58f8c8afd6d4f406d3670dc3845218e3"/></dir><file name="Event.php" hash="47c620238575bee46c63de87f13673c8"/><dir name="Helper"><file name="Interface.php" hash="73deb4e5f18bc4a8769be383b181950d"/><file name="Mysql4.php" hash="a31f1566292c8877017f7f0093810012"/></dir><dir name="Invoiced"><file name="Collection.php" hash="b35d7b6a5a7d603d9883aed3beb0e4cc"/></dir><dir name="Order"><file name="Collection.php" hash="b123044edf30fc232fe670c1057ef195"/></dir><dir name="Product"><file name="Collection.php" hash="a7069193f3f6c6fc2e7f82f03bddd6f5"/><dir name="Downloads"><file name="Collection.php" hash="51303306d7b75326b273829cfa572be6"/></dir><dir name="Index"><file name="Abstract.php" hash="b5437b47c39a6ed1698fa2086dbe1ab0"/><dir name="Collection"><file name="Abstract.php" hash="11ee683efccf1e55fcc5393ff64ccc60"/></dir><dir name="Compared"><file name="Collection.php" hash="b7943b8e1c565523408aad78b53120e2"/></dir><file name="Compared.php" hash="d1f2c9e010d53364eeacdd2e53a87180"/><dir name="Viewed"><file name="Collection.php" hash="260a26e937fdbdd1b55556612fc31fa5"/></dir><file name="Viewed.php" hash="78fc9ec66828889d83f48d3a67951b79"/></dir><dir name="Lowstock"><file name="Collection.php" hash="77144957dd08fe3c7efd9c9e3b666cfe"/></dir><dir name="Ordered"><file name="Collection.php" hash="1b6cd31bc074cf961f9df372d63802bd"/></dir><dir name="Sold"><file name="Collection.php" hash="60f992a0a0bf13d7c46c7fc4f8e89a62"/></dir><dir name="Viewed"><file name="Collection.php" hash="c5ae6f69bf83af5f0c7086c4b291b4e0"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="3677cc0579ff217a62b289187bee32a2"/></dir><dir name="Refunded"><file name="Collection.php" hash="fee69182f49ac48ad70de392d9a1f059"/></dir><dir name="Report"><file name="Abstract.php" hash="00a3abd2a156adb029374767f8552d90"/><dir name="Collection"><file name="Abstract.php" hash="b6d1020b6c47f9f080170841b8217945"/></dir><file name="Collection.php" hash="db0c889ead22299b24cb3037af46435a"/><dir name="Product"><dir name="Viewed"><file name="Collection.php" hash="b3eb71f52fdfb50a61455d047680c928"/></dir><file name="Viewed.php" hash="8d6b6bd9f4a8ef9c9eae7f6476949640"/></dir></dir><dir name="Review"><file name="Collection.php" hash="a1ffbcfcaf4a1500d57c6ac9ae2b5959"/><dir name="Customer"><file name="Collection.php" hash="3ed0398d28f85d15e3822cd3ce608849"/></dir><dir name="Product"><file name="Collection.php" hash="219fa0fc46e5d6d051fe65c66667e065"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="bd423bb0efda9ee7270ee7432150ce60"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="79f226c24928c53425d20f5f62da5e51"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="ae3597e4e450133bf33f987aa8660128"/><dir name="Customer"><file name="Collection.php" hash="ae3287e1d1898fa056b384916f6d63f3"/></dir><dir name="Product"><file name="Collection.php" hash="a4187c548638cb0a1361fe8d97e5bad9"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="311a4e8a9a132084b8c30bcf594a18fa"/></dir><dir name="Wishlist"><file name="Collection.php" hash="f53acf2c4ec3e25663face13ba167418"/><dir name="Product"><file name="Collection.php" hash="5199a9f0c8d3b3c5c0fe4de21fc0fcf1"/></dir></dir></dir><file name="Session.php" hash="383b996046646860e1b7eacf13052b33"/><file name="Test.php" hash="a1539b9551cb74f18e55092c12af6096"/><file name="Totals.php" hash="d60836b049bea319b0b0b1b9cd948538"/></dir><dir name="data"><dir name="reports_setup"><file name="data-install-1.6.0.0.php" hash="64e590b1e59baf77702b2c4d76f9d40c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="94e3c3fccd2049580c5a0a2afca86822"/><file name="config.xml" hash="616f260b124342bbc2d920d543186a7d"/><file name="system.xml" hash="69dd7f7f48521cbcbb94998398aa1bb2"/><file name="widget.xml" hash="2619d73f00c0ad6ec41f65d18844d2d2"/></dir><dir name="sql"><dir name="reports_setup"><file name="install-1.6.0.0.php" hash="55d87d974e8f41e8186951d6e6a6453c"/><file name="mysql4-install-0.7.1.php" hash="af21e4d6ecc6f6cba44266ceff019665"/><file name="mysql4-install-1.5.0.0.php" hash="ca1e72a29297b875beab69f7e07d943e"/><file name="mysql4-install-1.6.0.0.php" hash="8c1e61af4cbb974fb17ef83598a62fd3"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="fd855e42f7bd7ca2cd1446a7e2ac1dc4"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="f387183a1ad7a224e955db466cc3b944"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="f3ec598107ef92012a77499caf197285"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="3f9099993e152399e44a03fc99e8921e"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="0d82502e2f991d34c8347e5b33baed29"/><file name="mysql4-upgrade-0.7.5-0.7.7.php" hash="73127b2b03b6e35547d2a7e92a7c88b5"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="f8b50afa490f91af4993a756da5f31fc"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="0447ab3fb5ca596d0ffd87457bc1e147"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="2c8daf97427822879993a1291dca7cc6"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ba35d7d93f4a69daf9b5c02a432a2ae6"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="a904cac0afff0781926ee2fbd051ad2c"/></dir></dir></dir><dir name="Review"><dir name="Block"><dir name="Customer"><file name="List.php" hash="d4ed74456baf632e208aacad66246090"/><file name="Recent.php" hash="bf27ed44aa69d3697fad933b5eaedf05"/><file name="View.php" hash="6549771994b2f38aa3edd6f1f54aa46b"/></dir><file name="Form.php" hash="fa4c875b6d1fb7340ce47273e8d5d5f1"/><file name="Helper.php" hash="82af82c26198d10b426aa54328a4c703"/><dir name="Product"><dir name="View"><file name="List.php" hash="28e079affe95d8bc1296e2b9fd78940c"/></dir><file name="View.php" hash="d2f879449b87a98482cb947345761d32"/></dir><file name="View.php" hash="84adb1538187560453b7893409017f16"/></dir><dir name="Helper"><file name="Data.php" hash="4dc02867d5b9f46f28cfcdfd10603406"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Review"><file name="Collection.php" hash="231e5f945a79346a45f701a5d268eda4"/><dir name="Product"><file name="Collection.php" hash="4ecfe1e0e5c02a89d359dfb686625232"/></dir><dir name="Status"><file name="Collection.php" hash="d7a44c0e2f8db27750ff47757d8f0b0a"/></dir><dir name="Summary"><file name="Collection.php" hash="9bbc9847103c276c7025540f8dc3bc3e"/></dir><file name="Summary.php" hash="3d1a092028b1e95c83e273dcc0119382"/></dir><file name="Review.php" hash="df557b484b3e07ff02ad677f7dab3299"/></dir><file name="Observer.php" hash="187c150a04e4b65e988a3005fa4237b1"/><dir name="Resource"><dir name="Review"><file name="Collection.php" hash="675220689581b730d89f374d79309ac8"/><dir name="Product"><file name="Collection.php" hash="dd3b3f69e9f4f141f274d2ea2fd0da29"/></dir><dir name="Status"><file name="Collection.php" hash="0e5b2bf7db77106fdc296c8710646afc"/></dir><file name="Status.php" hash="37a64630b5f72e75f1579541036cd80d"/><dir name="Summary"><file name="Collection.php" hash="9fd5a10f8b10702411d54eb2ad374b86"/></dir><file name="Summary.php" hash="ce2ff031cd84af1344a2a10de9648a24"/></dir><file name="Review.php" hash="935a614113f447822f700b2f8a976661"/></dir><dir name="Review"><file name="Status.php" hash="da5e61e4c13ca0acf794db1557d82920"/><file name="Summary.php" hash="f58309df17a08c40df1542853bb5f631"/></dir><file name="Review.php" hash="665618cb6781da84fa55cf8b40215d21"/><file name="Session.php" hash="d98c19a1a026f4da5cb9cd180240b97c"/></dir><dir name="controllers"><file name="CustomerController.php" hash="b5c2aa2641f850992dc20bb1f32a19f0"/><file name="ProductController.php" hash="0300db9b002d4dd138447574f50837ee"/></dir><dir name="data"><dir name="review_setup"><file name="data-install-1.6.0.0.php" hash="de2be6d3f19e27b4e499c553fe15c3fd"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ddee265b27463e15ee5cafd6bea819b9"/><file name="config.xml" hash="984479d706500aa237fbb240bffd02ce"/><file name="system.xml" hash="ea5feec72f38653dfd06e195edfd8d32"/></dir><dir name="sql"><dir name="review_setup"><file name="install-1.6.0.0.php" hash="8bc0a1ace2757b8b778b619029c997d9"/><file name="mysql4-install-0.7.0.php" hash="69ec4c803e21e3ae9553029f54a8b7b1"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="bd703982ba7a03195f9138fe189f7cac"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="8007490fae6dd3e8459384e8afc873a3"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="d9ef2ad5e2ae3ef8529356343b8d8ce7"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="b95be53f50d2c278a1f4fb3b5ce4404a"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="170011207009ec195877616c83c2dcf1"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="c63218005a52bddeaa8d2b77705b3a56"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="aafb202ed6c8c2a0ed5dbb2342faf67d"/></dir></dir></dir><dir name="Rss"><dir name="Block"><file name="Abstract.php" hash="d273da82fd45fb8dd9351ba4c2ec092b"/><dir name="Catalog"><file name="Abstract.php" hash="f5630e12d79342e899045f6adea1140d"/><file name="Category.php" hash="b8c58a1e9225c122898442aeea062cb4"/><file name="New.php" hash="f6d7f2e3e9f9622fb01b608b3817c5a4"/><file name="NotifyStock.php" hash="a6dee76401689ea0660bd584be6af8c3"/><file name="Review.php" hash="c9d6e99cc343b6b4e7af22193c81cdb0"/><file name="Salesrule.php" hash="5511bdb820a02ce38b1468831baba8a4"/><file name="Special.php" hash="a7fcfe03c15df11c3172ca1a5807c230"/><file name="Tag.php" hash="5da379dbd2fca217d43116a540756147"/></dir><file name="List.php" hash="c134cf1fc245edc20a4c577b8d88a20e"/><dir name="Order"><file name="Details.php" hash="314358ddd4793aaaeb84c9fdb66c06ae"/><file name="New.php" hash="f0d622f6dd96d43f7555e44cdef37531"/><file name="Status.php" hash="b6e4865169441895e13267783571f55c"/></dir><file name="Wishlist.php" hash="6bd895d709d4edcdd5308eb922ab0c98"/></dir><dir name="Controller"><file name="Abstract.php" hash="d1fc9e52d31ea0e960c0d6a8564aea9f"/></dir><dir name="Helper"><file name="Catalog.php" hash="3fd6dce9be030cb1d36141a46731b950"/><file name="Data.php" hash="225b88b2961b2990f6102a4ef1679199"/><file name="Order.php" hash="8afc4606ab57e5a3b4fe41592bfbc3f0"/></dir><dir name="Model"><dir name="Mysql4"><file name="Order.php" hash="7169ae348d8a0ab3381370b80f1f1310"/></dir><file name="Observer.php" hash="7dcfc7b899e712dc0deb9cf984c70a23"/><dir name="Resource"><file name="Order.php" hash="78c23647a4d6eeb0af7d2b8fa60690b2"/></dir><file name="Rss.php" hash="263a3701ec8e994693c27b0e2202949a"/><file name="Session.php" hash="2f38ecb9b1a5ced808a2033cc2822c87"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="c2d7f8edefc8e462a89b36f4c10cb852"/></dir></dir></dir></dir><dir name="controllers"><file name="CatalogController.php" hash="7f5f0d1785a4a59e9479451e6f4fdf64"/><file name="IndexController.php" hash="a0525ee88af3d612321e5d49a4e77c00"/><file name="OrderController.php" hash="e1d86b1a31c22bdb4f33cb938dc74f49"/></dir><dir name="data"><dir name="rss_setup"><file name="data-install-1.6.0.0.php" hash="8d869c58ac26994bf46e811d856e4cd0"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ba3ed9cb817c8aded8e36f61ea4310f4"/><file name="config.xml" hash="e142806805d879797e731ab26e248c18"/><file name="system.xml" hash="5ad2ba45ac1723a8436e2c73f3ab1a8a"/></dir></dir><dir name="Rule"><dir name="Block"><file name="Actions.php" hash="395847c0358336f97c023d2be4ffc6f0"/><file name="Conditions.php" hash="003c8e3d6dbcdc857384775a4bdd0b1a"/><file name="Editable.php" hash="8812c2ce0f94ea69edfc87956f614e19"/><file name="Newchild.php" hash="eb091bd20136f68a2bb771aee0d7a51d"/><file name="Rule.php" hash="b00b3a6da259aa4087e759d740ae6ae2"/></dir><dir name="Helper"><file name="Data.php" hash="089eb8a04ed0ca2db695f19ece8049da"/></dir><dir name="Model"><file name="Abstract.php" hash="cbbe40af9a7f82b4434fdb5a783747ca"/><dir name="Action"><file name="Abstract.php" hash="72501e4716510d141d20b1897a041243"/><file name="Collection.php" hash="4095648890ac8f3ba928567d8d509d79"/><file name="Interface.php" hash="0ab0329b65bddad7c5c1ca74768f267f"/></dir><dir name="Condition"><file name="Abstract.php" hash="2bef786dc6bee0760a295b50ad3dee8e"/><file name="Combine.php" hash="0f940099687e013bef37c22fd54853c7"/><file name="Interface.php" hash="f6694ab833d736c3d526f2281e0d02cc"/><dir name="Product"><file name="Abstract.php" hash="382e2c6be77e1cf92e05c1b32138e838"/></dir></dir><file name="Environment.php" hash="5d0ddb7e378f883c6d5cac6ca1442458"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="9055182f4b776910d29756bf20ea69a4"/></dir><file name="Rule.php" hash="5d39880b7a3ad3bf1c0981ce3d127905"/></dir><dir name="Renderer"><file name="Actions.php" hash="f8abf05b23b0a39a1b7739af292d3fec"/><file name="Conditions.php" hash="1badbc8582a6e4336df5cbcd27156991"/></dir><dir name="Resource"><file name="Abstract.php" hash="05d6340fa9a502475db03d00c294db3d"/><dir name="Rule"><dir name="Collection"><file name="Abstract.php" hash="f61d8968f3ab88a1ab901a494e49a552"/></dir><file name="Collection.php" hash="6eef58067be05940d8af4df476cdfe1d"/><dir name="Condition"><file name="SqlBuilder.php" hash="798b6d8a50414805517f156135314227"/></dir></dir><file name="Rule.php" hash="2bd54608a57fb2993a5be6709a669122"/></dir><file name="Rule.php" hash="869d1fcb02a4d6646d52494b27d34d3b"/></dir><dir name="etc"><file name="config.xml" hash="de86bad5708febfb14fdc2b05f820246"/></dir></dir><dir name="Sales"><dir name="Block"><dir name="Adminhtml"><dir name="Billing"><dir name="Agreement"><file name="Grid.php" hash="eb8b90651c61f10963f5e5f91aa16d88"/><dir name="View"><file name="Form.php" hash="a350c962ed6f6ebff4b81d226e2f788a"/><dir name="Tab"><file name="Info.php" hash="cfc1c5e3ae16493488ea81f1dff965fc"/><file name="Orders.php" hash="c55553fc7fb363a9fc1e6e9101029cc3"/></dir><file name="Tabs.php" hash="d7a386e4565962b33f36719e7d1b6702"/></dir><file name="View.php" hash="eed852d2495fb5625abd9071a1bdcc01"/></dir><file name="Agreement.php" hash="e9d14a515d39fb6b7d5bb14be2e40837"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Agreement.php" hash="1de03b04ac9228e42f0989ae2b7e8833"/><dir name="Recurring"><file name="Profile.php" hash="74e0b2c497e6774f7390e6a9d5252d53"/></dir></dir></dir></dir><dir name="Recurring"><dir name="Profile"><dir name="Edit"><file name="Form.php" hash="b79f266ec7e74255a96f3a48463a2f86"/></dir><file name="Grid.php" hash="8c358d95db163e210eeef4a16d46ae5f"/><dir name="View"><file name="Getawayinfo.php" hash="0985b9bfe11ecf38746b31c632b7a760"/><file name="Info.php" hash="247eb8db469244c5cdf45eae73d8b03e"/><file name="Items.php" hash="b7ef1d635ba54a9223fdc2cf0b745af1"/><dir name="Tab"><file name="Info.php" hash="11e87ece2401df9b8995c2dddbae48de"/><file name="Orders.php" hash="2305c2f0aadd1f7a4e74a3083b2c4207"/></dir></dir><file name="View.php" hash="42e76a2a90f87338506621e1700858ed"/></dir><file name="Profile.php" hash="2dae9cfb76cdea482713639b10eabf76"/></dir><dir name="Report"><dir name="Filter"><dir name="Form"><file name="Coupon.php" hash="f6ca86ee921aa91af39b1a9f26780135"/><file name="Order.php" hash="80ee5593d869e872c192bf2e6a6b036e"/></dir><file name="Form.php" hash="77863f18119305ac7415ade2d9e4602e"/></dir></dir></dir><dir name="Billing"><dir name="Agreement"><file name="View.php" hash="390dedf14a95d30a5d43b6ac194b6d86"/></dir><file name="Agreements.php" hash="f9c1cb89a33ad8c1f0c7d4367c8b932e"/></dir><dir name="Guest"><file name="Links.php" hash="cd82d28625fa65cc4211cd54ebf87c70"/></dir><dir name="Items"><file name="Abstract.php" hash="5956cc9aa42292248c64380dfb3648bf"/></dir><dir name="Order"><file name="Comments.php" hash="4691c7a8276b8bcad62345a5dc528b54"/><dir name="Creditmemo"><file name="Items.php" hash="368e9817460b0e74947671639a66502e"/><file name="Totals.php" hash="852cf0fc4c8d0cbf6482fe3dbab6517f"/></dir><file name="Creditmemo.php" hash="547dac98aa7b45cb2d67a507f3d2d635"/><file name="Details.php" hash="c5af633789f0bbb9dc1eab9df46fdbe0"/><dir name="Email"><dir name="Creditmemo"><file name="Items.php" hash="1ca6dc46f49bf202bf5d463f79f85e2b"/></dir><dir name="Invoice"><file name="Items.php" hash="3418b7ad721d070b89a16008f4f79698"/></dir><dir name="Items"><file name="Default.php" hash="4684f78cc62ae538e21a96ecfcf58ab5"/><dir name="Order"><file name="Default.php" hash="79a61a5a4740cdcd32b8a8f563b33112"/><file name="Grouped.php" hash="c08e76bb61959e3ac1b5de6a9427e6ab"/></dir></dir><file name="Items.php" hash="50bfc5033de5784f363f7ba7ef3a1cfb"/><dir name="Shipment"><file name="Items.php" hash="19baaa02d07ba6c625415e57a166f7e6"/></dir></dir><file name="History.php" hash="fd256c073ba771eae1950496c55f8857"/><dir name="Info"><file name="Buttons.php" hash="14757574666305a953510863e759b280"/></dir><file name="Info.php" hash="da273d1e6a4243dfa7a0b0dbbc19fdda"/><dir name="Invoice"><file name="Items.php" hash="32379fa0918cc6d9bd34d56c25f4d3a8"/><file name="Totals.php" hash="8a50a51a137e4c373245f250271aa48d"/></dir><file name="Invoice.php" hash="1b2be59d1d1adc42f4cd5c3de6f0a93c"/><dir name="Item"><dir name="Renderer"><file name="Default.php" hash="1fe359920805f0bb04f2a529a988b7cf"/><file name="Grouped.php" hash="06de11fa4947babe00be8ab426b95837"/></dir></dir><file name="Items.php" hash="783e8d6419f7f9fb7d7b7c41fac3ea7e"/><dir name="Print"><file name="Creditmemo.php" hash="56b9375982e7ca9a01a9ddeda2e4b28e"/><file name="Invoice.php" hash="1bfa49c558f7dad71d49bf6f07133e84"/><file name="Shipment.php" hash="d7b3b950fd25dd490c7739d3b815aa0f"/></dir><file name="Print.php" hash="42a40d073ab7a8064efe5cfa9926ca7f"/><file name="Recent.php" hash="4722c16f398edf5a7cfe7c403467b871"/><dir name="Shipment"><file name="Items.php" hash="b8796b5a4101589730157ce38700a1aa"/></dir><file name="Shipment.php" hash="f47b46c695b2ae41b545cc431d411aa3"/><file name="Tax.php" hash="7ddb7b77eb096e3941626e8ce6bf4d3b"/><file name="Totals.php" hash="198e07bdb6bd995a9d05114f2bcbc8c0"/><file name="View.php" hash="5dd5baf85e8feb76833dd02e9e409abe"/></dir><dir name="Payment"><dir name="Form"><dir name="Billing"><file name="Agreement.php" hash="20364adbcfb10d06fe6bc4d7328036ec"/></dir></dir><dir name="Info"><dir name="Billing"><file name="Agreement.php" hash="56d54547297128b8e19c4195000651e3"/></dir></dir></dir><dir name="Recurring"><dir name="Profile"><file name="View.php" hash="5e59e6df1667be5c99b5325246616199"/></dir><file name="Profiles.php" hash="e1dc2bae064658d69d3fe40a70c97ede"/></dir><dir name="Reorder"><file name="Sidebar.php" hash="1e012752e08ac087710437ee1b0ff144"/></dir><dir name="Widget"><dir name="Guest"><file name="Form.php" hash="673c6b8f42d908fb0ee0f254e2d39695"/></dir></dir></dir><dir name="Controller"><file name="Abstract.php" hash="ff7e1d8d0cbdc01edb1343049b7789de"/></dir><file name="Exception.php" hash="723bd0a577bc3eb5bf5fbf9dab21f39f"/><dir name="Helper"><file name="Data.php" hash="433fd015a7cf497458d2a50046f81b7a"/><file name="Guest.php" hash="4ed93bcd11043230dd9c6f8d3fc0b565"/><file name="Reorder.php" hash="70a14f0e21a2c419546bcd6b0dee2bc5"/></dir><dir name="Model"><file name="Abstract.php" hash="a36f8dd1a2428297503c3cfe3beb56ee"/><dir name="Api"><file name="Resource.php" hash="a5dc0c5dd510896f42d48633d5f19c09"/></dir><dir name="Api2"><dir name="Order"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="4cef63039fd48a74a100d57ab4ac280d"/></dir><dir name="Customer"><file name="V1.php" hash="0374d05d287d80b5303211821a5929a3"/></dir></dir><file name="Rest.php" hash="3455d5f65bd233a4dfb98b11b0d16c40"/></dir><file name="Address.php" hash="f29224d8eb7fb58d1a81e7c60fa0af85"/><dir name="Comment"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="ff546b1dd3951e91db029efec2fbbe21"/></dir><dir name="Customer"><file name="V1.php" hash="8503c552145c7727fd6471debcf43121"/></dir></dir><file name="Rest.php" hash="ff1dc21b8ac8f6374a7cbd5b7e44ffce"/></dir><file name="Comment.php" hash="e36f303d68773b2c62a3d09dc303e4c0"/><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="2c277a186f40daf977642a7194d99fca"/></dir><dir name="Customer"><file name="V1.php" hash="9da928370f22309e3ab840fe633e8107"/></dir></dir><file name="Rest.php" hash="7196a0136969b63048e14004c0816935"/></dir><file name="Item.php" hash="a02d1ad9f44c69a0c08e67b014838ba6"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b33a7a18d708952cb7dd9de97d5809d2"/></dir><dir name="Customer"><file name="V1.php" hash="1d5292750cec00387f1a6c94b91d10bf"/></dir></dir><file name="Rest.php" hash="779f00151e2f63e4e3a09f4cf7a43707"/></dir><file name="Order.php" hash="a7ee4fee0f30fad39be351b55532d805"/></dir><dir name="Billing"><file name="Agreement.php" hash="8c196c3fa72604b53f722696f1e8198d"/></dir><dir name="Config"><file name="Ordered.php" hash="353da6544fe695bc2ceaffd0aa97f483"/></dir><file name="Config.php" hash="df8733db60db4c5e742e93d749d0a758"/><dir name="Convert"><file name="Order.php" hash="02dbc0a2fbf18bb88bdd40ed3cc2ec3f"/><file name="Quote.php" hash="7df80c7e2240980b23f014889790947e"/></dir><dir name="Email"><file name="Template.php" hash="49e15f2a476b64a8a7404298c6820535"/></dir><dir name="Entity"><dir name="Order"><dir name="Address"><file name="Collection.php" hash="89cdfeb72b8d56f5e7653576dafe14a5"/></dir><file name="Address.php" hash="13909272d23ce091df3ecb15cb6a0942"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="02d96f19e7d4508e8361ab2d1bb5724d"/><file name="Child.php" hash="b191e18124265b6c8f49fd2f7b327d34"/><file name="Parent.php" hash="20571fea8aa7cb3e250c8148a64479b6"/><file name="Shipping.php" hash="8699be937ea348de6b3052ccc73b1081"/></dir></dir><file name="Collection.php" hash="6ea3bc0964d1e5aeda010dc4cf67d49c"/><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="1d6dd40c8f81e8f7a7ade2d448cf3e00"/><file name="Parent.php" hash="991ee800f7f23168ee76cb2dc7fac649"/></dir></dir><file name="Collection.php" hash="bc693230b173a9fc0871d1412eea7220"/><dir name="Comment"><file name="Collection.php" hash="c2a15cf9307f50b2913715f7a812697b"/></dir><file name="Comment.php" hash="9c524ceecede7e4c366a01355f2f97a5"/><dir name="Item"><file name="Collection.php" hash="686bf88d6cdfc8f7991866d130b444ee"/></dir><file name="Item.php" hash="7ab4f7b77e3affea165bddfc0b9fccd9"/></dir><file name="Creditmemo.php" hash="3d1946e55bd6eedd8dc54011de1f30dd"/><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="e2f2f552704526e6cd2bddae9a88d974"/><file name="Item.php" hash="a5b9ff9efaa7aa751771cad51281b810"/><file name="Order.php" hash="bd32df42b9367872e0a5764b36e300e5"/><file name="Parent.php" hash="5aac853f8219db843ff6c41e7692026f"/></dir></dir><file name="Collection.php" hash="ca71ea36eb6a3a402005f58884ff7b18"/><dir name="Comment"><file name="Collection.php" hash="6ed0dab29875e7b02468525878c38be2"/></dir><file name="Comment.php" hash="e49f0a425d8bc9e0e0a62deedc0c1f4e"/><dir name="Item"><file name="Collection.php" hash="4f0fdbd6012c148994cda33b38c90f21"/></dir><file name="Item.php" hash="5d551ea63f0053dce267acdfadc12a7d"/></dir><file name="Invoice.php" hash="93665aba271a4e1f7ed6baff3bde8a1a"/><dir name="Item"><file name="Collection.php" hash="915f198dcd0ca06423cf41af0ad2d052"/></dir><file name="Item.php" hash="7c590ce9b9efd3bdf4ce88ad1c9c8806"/><dir name="Payment"><file name="Collection.php" hash="56526a3629708e460d914e9adc20cb07"/></dir><file name="Payment.php" hash="c85fb9192b272e26c5edeaffb76aa42c"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="eda437a083a28fd47b80c70f72877b2a"/><file name="Parent.php" hash="9a565b81b6a91569a601538cb647b6d8"/></dir></dir><file name="Collection.php" hash="3eaef32001968ea27d189e4e54da0677"/><dir name="Comment"><file name="Collection.php" hash="ebb31e40588100b5bbfc41c33162585f"/></dir><file name="Comment.php" hash="a5d40b2b9cb4257b65b033a347ce7775"/><dir name="Item"><file name="Collection.php" hash="99ef694fb25872ebcee1bfc7208b166d"/></dir><file name="Item.php" hash="b00f9f5b9961187889d786bc319817cf"/><dir name="Track"><file name="Collection.php" hash="0ae345d31c65254c7be0663153b6e9d5"/></dir><file name="Track.php" hash="5e0346d66c49df6f1003dacbcac719a1"/></dir><file name="Shipment.php" hash="f30e55597d83f4e5b3caef85461418d0"/><dir name="Status"><dir name="History"><file name="Collection.php" hash="c0534c0928e5e1d7ea7c9848b723eeac"/></dir><file name="History.php" hash="3a414c6f48c068f3379a00528e7f660e"/></dir></dir><file name="Order.php" hash="b44e74a6d119ebef703a7da9d697ff0d"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="51e558af495e9947e8246e63dd535d64"/><file name="Parent.php" hash="e41070013415688c44ee0e4565069a2e"/><file name="Region.php" hash="dd7475fa4bc36195b54633b339b31889"/></dir><file name="Backend.php" hash="2ee9ddabeded084016b90cc07ca89a20"/><dir name="Frontend"><file name="Custbalance.php" hash="93c091700f80a671d4794ae7f0bb1cab"/><file name="Discount.php" hash="f618fa53539a67f2d8bc6fc47d951dbc"/><file name="Grand.php" hash="ce259c647652b1244492daf8b82222cf"/><file name="Shipping.php" hash="44bae3e95bfd720c6dee1f392a8cd4b7"/><file name="Subtotal.php" hash="0854247081871e7f6640bdd9cd347f88"/><file name="Tax.php" hash="61ff5fddedf3330d61470482f16e5bbc"/></dir><file name="Frontend.php" hash="54fd11e8e93532a55dc16b9a59d61c2e"/></dir><file name="Collection.php" hash="442f0dbf965625a7f558bbec6802269b"/><dir name="Item"><file name="Collection.php" hash="2beb173f73922e4f951cc1e19526f5a6"/></dir><file name="Item.php" hash="a6a40eda2306a40c7e0c9c90ffa17fcd"/><dir name="Rate"><file name="Collection.php" hash="8b8ad7aeb267536db0daf15ec9cfd4af"/></dir><file name="Rate.php" hash="0da64bb686c276cb26e90e8b03d0e358"/></dir><file name="Address.php" hash="6989135e6adf1b01d817b40a83e59fe7"/><file name="Collection.php" hash="a6f72352594ec828955f8db1b0f6f941"/><dir name="Item"><file name="Collection.php" hash="1a79fa6909536ca665a3436e95666b52"/></dir><file name="Item.php" hash="3b4c1f7ada492e7baac874bff0322128"/><dir name="Payment"><file name="Collection.php" hash="819f09c1f72c0adcf24949fbde7e9ec8"/></dir><file name="Payment.php" hash="38fcf7391953fb5ee75cedf3c967dec9"/></dir><file name="Quote.php" hash="1a6c892bda92470a69230062605ab477"/><dir name="Sale"><file name="Collection.php" hash="4432ed7f5cdaa957e365683966e8ca58"/></dir><file name="Setup.php" hash="8a7f2ab39db8301feed0fe656a7fa5f3"/></dir><dir name="Mysql4"><file name="Abstract.php" hash="9afb22f085a6b1b4f37874c2175c95cc"/><dir name="Billing"><dir name="Agreement"><file name="Collection.php" hash="6723060be53a20a73bd6d45b503dda74"/></dir><file name="Agreement.php" hash="1deb9d79699e20062409d8ed2988e87c"/></dir><dir name="Collection"><file name="Abstract.php" hash="44957aef0b54d1e5730781388cfeffef"/></dir><dir name="Order"><file name="Abstract.php" hash="4dd334d2684dc083793795eb7e8750c2"/><dir name="Address"><file name="Collection.php" hash="6bfd88b525bed4fd8605df18459cbcdf"/></dir><file name="Address.php" hash="98bc4416f09846473a386a95c68d4b5f"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="62075f6e56a948d5af7b1e11e1cfae65"/><file name="Child.php" hash="0e545f4266ca38da792108c43df25803"/><file name="Parent.php" hash="d6927e04189291494551d2276eb8328f"/><file name="Shipping.php" hash="7bd5c259150339deb64b445a5512b784"/></dir></dir><dir name="Collection"><file name="Abstract.php" hash="b207a8b2fe16896496721cd35fce5e9e"/></dir><file name="Collection.php" hash="5ee19dd9680c0941b99736b08ee5d776"/><dir name="Comment"><dir name="Collection"><file name="Abstract.php" hash="4bf191704a2c72395485da5035297cec"/></dir></dir><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="1a02a7d8dae5587ba9806240e7a38fc9"/><file name="Parent.php" hash="45e36d912fd25392ca26ea7bb95e472d"/></dir></dir><file name="Collection.php" hash="7af13ed3cff507ca19ce11dee59a4b35"/><dir name="Comment"><file name="Collection.php" hash="f0d1c907b728b4d0e6b51fced5f954a2"/></dir><file name="Comment.php" hash="d785b5f24803a41880101ead12a009ec"/><dir name="Grid"><file name="Collection.php" hash="ba5c7254ecfc7ba1d735361462870c4b"/></dir><dir name="Item"><file name="Collection.php" hash="38180553287edb06758da6f4d7935b7b"/></dir><file name="Item.php" hash="499e05cb3ad71bad057af23c21ba3cdb"/></dir><file name="Creditmemo.php" hash="a94eca9a7d055557cbaefbd7ce50b4ac"/><dir name="Grid"><file name="Collection.php" hash="82edc1d3d85dff3f538cd87498ddf0cb"/></dir><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="32f079b113a20fd97a9e524edd26916a"/><file name="Item.php" hash="9808ee91199138f5477acf0bb0dc2d93"/><file name="Order.php" hash="e2085d290a8c6369216771344941d524"/><file name="Parent.php" hash="306cbb3d5a4de9b038b15cc4e81d8572"/></dir></dir><file name="Collection.php" hash="40c81ee2541654e00689f1e60b614a35"/><dir name="Comment"><file name="Collection.php" hash="720191ca7b35ef083b9d56d90e022357"/></dir><file name="Comment.php" hash="790622b097491c5ecc6b21a7bd5e6f1e"/><dir name="Grid"><file name="Collection.php" hash="792049e70f75e83d3bb2368b43138473"/></dir><dir name="Item"><file name="Collection.php" hash="6d3a87b4763c05dbabb2e27df4aa39f0"/></dir><file name="Item.php" hash="1423181cbabf9d1d3ecd7f3cb8e2560f"/></dir><file name="Invoice.php" hash="90916c54957dd5ae93ea002930081118"/><dir name="Item"><file name="Collection.php" hash="d3941f4868e6cd32342e347802461596"/></dir><file name="Item.php" hash="03e5d04309fb6d970eae56ef41bc9576"/><dir name="Payment"><file name="Collection.php" hash="80c853d84dd42a17b71108494f9ea378"/><dir name="Transaction"><file name="Collection.php" hash="2dacf6c3c964ea8c321a11fce074b283"/></dir><file name="Transaction.php" hash="0ca4a468f88834ca13db7e84c391088b"/></dir><file name="Payment.php" hash="7685dd34d9b6f64ce2856e4fe03f4668"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="cd45b72bce68b0eaf0145e0bff0ddbca"/><file name="Parent.php" hash="9ae73e0f7a23bffa2a3aa9fa156d61a7"/></dir></dir><file name="Collection.php" hash="35ae0805760722b05637a88eb9ef883d"/><dir name="Comment"><file name="Collection.php" hash="c1fb1652837586d541593ae84f4bb9cb"/></dir><file name="Comment.php" hash="bb346eb48619d88b8f5a879d2b8910f9"/><dir name="Grid"><file name="Collection.php" hash="2a30f42eaf8182b8fb24a478e8baca89"/></dir><dir name="Item"><file name="Collection.php" hash="ce958be641f841f426370359bf4552c6"/></dir><file name="Item.php" hash="bbb59c1a747dfef01f3e7b4f7eddc0d7"/><dir name="Track"><file name="Collection.php" hash="47818aa2bc218fd85ac9a64d398af427"/></dir><file name="Track.php" hash="5d3e6cefc2bca69f235fa15c22a82f89"/></dir><file name="Shipment.php" hash="6e14894d6099715a68588cd7955d077f"/><dir name="Status"><file name="Collection.php" hash="8db7a0b5164a4a3482a0ba36cecebf90"/><dir name="History"><file name="Collection.php" hash="49287a3534866b18bba73316afeeedc3"/></dir><file name="History.php" hash="6d67c2b403b3da893b06401565385fb2"/></dir><file name="Status.php" hash="3261af68f4a4ab5f55887f0d7e14b30b"/><dir name="Tax"><file name="Collection.php" hash="e06cf4f599a162135f77e0907db42651"/></dir><file name="Tax.php" hash="06ad11c0b903887f6ca66b5d508e9a99"/></dir><file name="Order.php" hash="c5994c7451f0c7b5ef526b751b43a63a"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="ec2cba07e84bdf153575185c82d4b628"/><file name="Parent.php" hash="abfe7ab89799727e255fefa43aa41b66"/><file name="Region.php" hash="36c6bb42a18b528f8cc942428cedf988"/></dir><file name="Backend.php" hash="598976560e5ebbb0fcae2e7d7b0502dc"/><dir name="Frontend"><file name="Custbalance.php" hash="f2089c13534c0d0d3239b188bf12d70c"/><file name="Discount.php" hash="b7c165f49fb20092530056e0a17c0eb2"/><file name="Grand.php" hash="f761fce14066eebe3a1dd56314480552"/><file name="Shipping.php" hash="47987234d1ca343f3eb9951d78a51601"/><file name="Subtotal.php" hash="9bbf74937997949578b03a11873b0465"/><file name="Tax.php" hash="6cc373dec66b3e1cb22fba66d8722e8d"/></dir><file name="Frontend.php" hash="fc4887d7b5a36982a8bf2e972e5986f6"/></dir><file name="Collection.php" hash="056ec6e830770a89ef93a9f5c5b8dbc5"/><dir name="Item"><file name="Collection.php" hash="18de68c96c0e609acc1476418a8a357a"/></dir><file name="Item.php" hash="6982e1231d4998991db0519a8518685c"/><dir name="Rate"><file name="Collection.php" hash="a16250758875b1b583bff4572fdd56f0"/></dir><file name="Rate.php" hash="bafb6da1d72fe914374106c88337d42b"/></dir><file name="Address.php" hash="c9755266e25a5f3fcf175ed1b5cc02b0"/><file name="Collection.php" hash="d0515bede7c19803330c18a9cb72ae73"/><dir name="Item"><file name="Collection.php" hash="fce835b8c6ab174a69298119758f584f"/><dir name="Option"><file name="Collection.php" hash="c6fff4ef0d6887ef926d4771dcdb9044"/></dir><file name="Option.php" hash="6dd95f1db606b466cee6dd6a61e8e331"/></dir><file name="Item.php" hash="4f2a929458748303c5fb5da4d1b59330"/><dir name="Payment"><file name="Collection.php" hash="74e70857c5c4a1351c5c0be5dfbe78b6"/></dir><file name="Payment.php" hash="275149f48e9c6c3d21401de4407ba893"/></dir><file name="Quote.php" hash="43653838ff424f7dbf8e6eaaf0ec7640"/><dir name="Recurring"><dir name="Profile"><file name="Collection.php" hash="2786bad6b46493f490ee58889dbf9fbe"/></dir><file name="Profile.php" hash="4e35668c50670bdd0686336160458354"/></dir><dir name="Report"><file name="Abstract.php" hash="72f9213a1925c164548beda7a90bff2a"/><dir name="Bestsellers"><file name="Collection.php" hash="df1774143886bc3b52df037b0bfb1855"/></dir><file name="Bestsellers.php" hash="8f6c96d9f85aa3e1d827623f859aeab9"/><dir name="Collection"><file name="Abstract.php" hash="d84e5bb25bdeb2ed4c115264bfdb08bd"/></dir><dir name="Invoiced"><dir name="Collection"><file name="Invoiced.php" hash="a518bdcb6cfd2ee684a57722d161deaf"/><file name="Order.php" hash="691fe1b818bd878aff8d05d211bff94b"/></dir></dir><file name="Invoiced.php" hash="2bff6fdce5bcad8a294a2bb74a539444"/><dir name="Order"><file name="Collection.php" hash="2e67ac1f64ade106bf3c532fc71ad97e"/><dir name="Updatedat"><file name="Collection.php" hash="1bd3de8acbea2a7a1a72415a5eb114d9"/></dir></dir><file name="Order.php" hash="8168e4a917a70a048456908d020bfb5a"/><dir name="Refunded"><dir name="Collection"><file name="Order.php" hash="186807ed5b850acb05421efd46e12b5a"/><file name="Refunded.php" hash="404f2db7ccf46ada3246c7a9e3f2abcf"/></dir></dir><file name="Refunded.php" hash="0fa825b29025b0608e09225c1b9ebc0e"/><dir name="Shipping"><dir name="Collection"><file name="Order.php" hash="e3800c81a21f80c7088ef574f100eeca"/><file name="Shipment.php" hash="7d2f088bfb368f902fa3318338739998"/></dir></dir><file name="Shipping.php" hash="8e6f7891e6a19e89176180bd3600a09c"/></dir><file name="Report.php" hash="94fa7121ef65e1cbce8c3a8e6f61423a"/><dir name="Sale"><file name="Collection.php" hash="b9633d7a1b85d31ed6a55bf63d61bc51"/></dir><file name="Setup.php" hash="72ee8a279683812083070dc1c0ae9cf8"/></dir><file name="Observer.php" hash="b378df4b6a296fb5191508dc0987e0be"/><dir name="Order"><file name="Address.php" hash="8b5d7e404f5cba870a0a619e18a7fbba"/><dir name="Api"><file name="V2.php" hash="bcaad4738e786b584c1902731c1e2f25"/></dir><file name="Api.php" hash="90eed7991f56b9f67d192473c917dacd"/><file name="Config.php" hash="33c76887e997f1e2adaa9732f3d57f2e"/><dir name="Creditmemo"><dir name="Api"><file name="V2.php" hash="074271cd0aadaf966d3ca352d45e6851"/></dir><file name="Api.php" hash="4ff29f69ba5755b5a4cb48bfc1e8b477"/><file name="Comment.php" hash="ee41a865cd00b684f7d71745f2801dca"/><file name="Config.php" hash="6aeab2f27e959b5db10886b318014fc6"/><file name="Item.php" hash="170fcf42f8c798a216ea408f795cfcbe"/><dir name="Total"><file name="Abstract.php" hash="3fa58d2ecd591a1dd5565793e05b144c"/><file name="Cost.php" hash="a0b6ba7a1b1c62dcdaff3e6d72a29261"/><file name="Discount.php" hash="03c646751c483b02c2c44d6f2068002b"/><file name="Grand.php" hash="2461ea83f0fe32ff00f042bcfeb07b1a"/><file name="Shipping.php" hash="7f3177446530490bbd14ae9a6e1c1f3c"/><file name="Subtotal.php" hash="f660951bd63ad9bf561a558a9a8ae8ea"/><file name="Tax.php" hash="075b3fe143835a96ff1039c92c90b383"/></dir></dir><file name="Creditmemo.php" hash="3b6623947fe5849127327fa54a84e650"/><dir name="Invoice"><dir name="Api"><file name="V2.php" hash="e7c8520f86e407b177ce69e065cbc723"/></dir><file name="Api.php" hash="cc7cf0b0eba0ed6598aef874a3ab0ef4"/><file name="Comment.php" hash="da5711b8ac3a0532e8d0014c2dd94bc4"/><file name="Config.php" hash="dccc2dce3f08aa644d8aff76ad00c61e"/><file name="Item.php" hash="6524fbdc6340cdd35ee2b6899ea59f63"/><dir name="Total"><file name="Abstract.php" hash="58628cb4995579d9202ef1956494e06a"/><file name="Cost.php" hash="5a8b5db09e9d602b0a09d9beb2a8ac47"/><file name="Discount.php" hash="8e61759e07c74f0681f85fa251f16d5c"/><file name="Grand.php" hash="b841f4b5a5c916f3d5ce7d538b0b857a"/><file name="Shipping.php" hash="aad1e9ccb154d1dd479aa61fb7c4b387"/><file name="Subtotal.php" hash="5b84f4b3d392d3e0d7dde35070b896a8"/><file name="Tax.php" hash="6712807dde4624c53ec9306630807a08"/></dir></dir><file name="Invoice.php" hash="1b8adf0249820bff8e9bbe305426c9d5"/><file name="Item.php" hash="9e8a5fe986efc0fb7151673c89c7ff1f"/><dir name="Payment"><file name="Transaction.php" hash="a5209ce30722a981e4efda2a4e571272"/></dir><file name="Payment.php" hash="d5dbe333a5743762db5ee01a2d164c4e"/><dir name="Pdf"><file name="Abstract.php" hash="ce65a2292fd6ae6de63d82652af871cc"/><file name="Creditmemo.php" hash="20e8efd60a2d5cabf4709658bb4eb9e5"/><file name="Invoice.php" hash="f1e4328ab74f862068a7eb3bafad5aa1"/><dir name="Items"><file name="Abstract.php" hash="dbca7d41d403baef25192e5638d44bf3"/><dir name="Creditmemo"><file name="Default.php" hash="845ad11a4bca7b516b7740470ae9368e"/><file name="Grouped.php" hash="f91b7015e3bb2e6533a6e359a20389c6"/></dir><dir name="Invoice"><file name="Default.php" hash="3d800b9351395c1c1142c51e2fd9941f"/><file name="Grouped.php" hash="37ead4a34b0b85aa125e688a31902c08"/></dir><dir name="Shipment"><file name="Default.php" hash="cdc9cd665a819e2c8d98d8bf9cd3f4d8"/></dir></dir><dir name="Shipment"><file name="Packaging.php" hash="1732719df1bff43743a74a1e77c40f9a"/></dir><file name="Shipment.php" hash="f9d96fd34e9053ed64e7c1269f247316"/><dir name="Total"><file name="Default.php" hash="1a299ca89ac56ac82796bea113977a16"/></dir></dir><dir name="Shipment"><dir name="Api"><file name="V2.php" hash="b39d50c655f1aa35819fc3809af8c465"/></dir><file name="Api.php" hash="a9153e5a93790a1f1ba49205bb840896"/><file name="Comment.php" hash="0b7a2f1ed5a3cf14e06a99d1408d4c55"/><file name="Item.php" hash="2f3823cbf02a3ad22723dc9925a3c115"/><file name="Track.php" hash="669bef2d4ebc0a101ec1408d6041cde0"/></dir><file name="Shipment.php" hash="9456e2039aeeeb1fcfe11b55a7d9c628"/><dir name="Status"><file name="History.php" hash="0e1b2d2058301c4e027f8bc4caae907f"/></dir><file name="Status.php" hash="8dbf8cf570184d72e859f753cfc16e27"/><file name="Tax.php" hash="81a9acd812c8180e53b690c922ba5395"/><dir name="Total"><file name="Abstract.php" hash="73805f282b9b7522cb572fc78d80c96f"/><dir name="Config"><file name="Base.php" hash="91e708db9d25c15046a2ea46a908b0a1"/></dir></dir><file name="Total.php" hash="33b3bd9cb176909987458e6af66b362d"/></dir><file name="Order.php" hash="b173146f9109f43fc347b30cdc44cc64"/><dir name="Payment"><dir name="Method"><dir name="Billing"><file name="AgreementAbstract.php" hash="ad96020c95d8faeece3b13f9f7d4015e"/></dir></dir></dir><dir name="Quote"><dir name="Address"><file name="Item.php" hash="09b76a1641fa38de94591ecf15743273"/><file name="Rate.php" hash="a4d08d27b7fc5f1cbbdb9d45715f8be0"/><dir name="Total"><file name="Abstract.php" hash="88b7fab40960eb93017771c7ec10f8b4"/><file name="Collector.php" hash="755892eaf3f8973dac24e0294c8c9152"/><file name="Custbalance.php" hash="c4e51ea08aaf4447e8e62e736ee7c434"/><file name="Discount.php" hash="89ac4a5e4b564e272bdc43157366501a"/><file name="Grand.php" hash="fee21eadbdcc41473256a14fa775861b"/><file name="Msrp.php" hash="bdddefc8b602f2a2d8cd743eeb463ca3"/><dir name="Nominal"><file name="Collector.php" hash="6f453f37ccf6163bfcf037db3831c6c4"/><dir name="Recurring"><file name="Initial.php" hash="4364501e7ac32efbee333e1b8a1d04fd"/><file name="Trial.php" hash="9ff152451dd60f82d6e5f978e3784b6b"/></dir><file name="RecurringAbstract.php" hash="c3c6dec43e8edb7dbf45bdbc89439a80"/><file name="Shipping.php" hash="17ca25223472f2e0a1dde8b8d98b655a"/><file name="Subtotal.php" hash="4d2a5203da2f854de35eb169062d0c75"/></dir><file name="Nominal.php" hash="7e8baf7c925fe9cfdc4862487ee5f90c"/><file name="Shipping.php" hash="6c32c633d2b36caa835582b7e4675105"/><file name="Subtotal.php" hash="09378fb73eb8f04382a0bcc89b2bb132"/><file name="Tax.php" hash="374178f35632de6e1715dfcf5fbf1415"/></dir><file name="Total.php" hash="230984195e73c5f9c0f1a40c42209e2b"/></dir><file name="Address.php" hash="ad3907095e80a8b0135a88f17a8b32ed"/><file name="Config.php" hash="9e24919a12b893cfce316d75ebeb1701"/><dir name="Item"><file name="Abstract.php" hash="0b2f5069e03c2c6b9d59de2eb93d16e8"/><file name="Option.php" hash="98084f6dac645edb7abd108e138fa6e1"/></dir><file name="Item.php" hash="4ff093f59b4db98738c402ec61efed29"/><file name="Payment.php" hash="33b2af3fa5ffdd45b5ac81a8598c3adc"/></dir><file name="Quote.php" hash="e0f402749fa8833e61dab1ecede1c7db"/><dir name="Recurring"><file name="Profile.php" hash="9dee0ee811b78a36d238a0750f11637d"/></dir><dir name="Resource"><file name="Abstract.php" hash="e3ff88c9c1756c106945ce1bf68138a2"/><dir name="Billing"><dir name="Agreement"><file name="Collection.php" hash="a122c1c5af27235a6c3f349be13f3356"/></dir><file name="Agreement.php" hash="4d6195db8b3f01a8a06893c81e89e950"/></dir><dir name="Collection"><file name="Abstract.php" hash="461b0df6d59f413ce4d291d9a8670fc9"/></dir><dir name="Helper"><file name="Interface.php" hash="df4651e9662f200c37bc822bd3dae958"/><file name="Mysql4.php" hash="001e2ebf07381b72abcfb6dbada37cd6"/></dir><dir name="Order"><file name="Abstract.php" hash="9fa253f874c4c21962c3ff38d6dca512"/><dir name="Address"><file name="Collection.php" hash="a47d80aaf8672535dbd2bbbe82ec9baa"/></dir><file name="Address.php" hash="7a302ec65ec584d36a5ad72e2df52d07"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="520fe67ee67f6b8039bee570c37ecfd0"/><file name="Child.php" hash="2a56dda85ae5ddd887701f8f0dbbaa68"/><file name="Parent.php" hash="3bfc188483c90c1e3534dc3f8d016e8a"/><file name="Shipping.php" hash="bfb7ec561aae8cf42fe37b5d093f94fb"/></dir></dir><dir name="Collection"><file name="Abstract.php" hash="0059b7b105a3e66d7e138e10b67fb384"/></dir><file name="Collection.php" hash="b05df044090ae24e418b18d072819d10"/><dir name="Comment"><dir name="Collection"><file name="Abstract.php" hash="886a402f8a0fd8b702b28365180b8928"/></dir></dir><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="9c46f7467e97268463e55942fe014a8c"/><file name="Parent.php" hash="b36ab00c7399dfb436891485f0faed6c"/></dir></dir><file name="Collection.php" hash="ad648795e72344ba9437eeb4e2d4861f"/><dir name="Comment"><file name="Collection.php" hash="7985cc826ccff3fd22b7d20cba4b1d5b"/></dir><file name="Comment.php" hash="f0e03491b15ec2ff4b9c979678158909"/><dir name="Grid"><file name="Collection.php" hash="5ffeaf82382366a4abb34f00a3e38179"/></dir><dir name="Item"><file name="Collection.php" hash="bda3a23534a4dd888a657707d4e77ba7"/></dir><file name="Item.php" hash="354691695e7980f0aaec430ea0fe9abb"/></dir><file name="Creditmemo.php" hash="b351f23efc2897210f114cf0af5be100"/><dir name="Grid"><file name="Collection.php" hash="7baf02b228327ab410d682f316fb6f08"/></dir><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="8f629561ba4ea644b42ec05dc654c44d"/><file name="Item.php" hash="70d4d9656d54d697a1c6342d3c8fb7b9"/><file name="Order.php" hash="636566baa8d446e1eddcf4f6622f0ebd"/><file name="Parent.php" hash="4cc57ddf6cb75853b7b365bc22b64993"/></dir></dir><file name="Collection.php" hash="74fd2eb257baf29dfcbd5ea84bfcaec0"/><dir name="Comment"><file name="Collection.php" hash="f1a815800aa5edc856ca94c28cedbc08"/></dir><file name="Comment.php" hash="584108c9a84f308b27609e918ab2d042"/><dir name="Grid"><file name="Collection.php" hash="9418eebc2f40b7aba0e60df4559db488"/></dir><dir name="Item"><file name="Collection.php" hash="589d3acfb5bcd1abeeae3be9569cc466"/></dir><file name="Item.php" hash="352e1beef6dfbfd43f143ec9b88db5d0"/></dir><file name="Invoice.php" hash="904752eeac34bf247b6ccedb72c96f4f"/><dir name="Item"><file name="Collection.php" hash="9eea827ff60243e7c2b4f72ca2a93357"/></dir><file name="Item.php" hash="017731173ca129726b0722edbeb25b72"/><dir name="Payment"><file name="Collection.php" hash="7b9d9669300e6d3a9e50cad5f55ecd60"/><dir name="Transaction"><file name="Collection.php" hash="b6008020b16d5a40f7f001a0f76bc180"/></dir><file name="Transaction.php" hash="3c4c7c3ac386795efb7afcfeb9438f79"/></dir><file name="Payment.php" hash="32091691be316856e7241f69396fd6ff"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="73eca39b59c13597c165c492e4f5f959"/><file name="Parent.php" hash="00c60a550f8720741ac9b3848d9cd384"/></dir></dir><file name="Collection.php" hash="2d8ba50a677a6896f32f7048c21f0a1f"/><dir name="Comment"><file name="Collection.php" hash="4722659a6d086ede29b848144bbe6aab"/></dir><file name="Comment.php" hash="ad080801c2b8d2ee6cc8e26f20613ba8"/><dir name="Grid"><file name="Collection.php" hash="42b54d1852e766bba87f0bf2d5d8b4ac"/></dir><dir name="Item"><file name="Collection.php" hash="90eb8ed55732c1a5f3f01e4c25a1d93b"/></dir><file name="Item.php" hash="325446f39c583f1c8acf22a10cddbb0b"/><dir name="Track"><file name="Collection.php" hash="e227bb312df4cff2e2d98fd050e7b5aa"/></dir><file name="Track.php" hash="0a5beef339374edbf4eea0b2dbd9de2b"/></dir><file name="Shipment.php" hash="e1d7c2c23d262c68ee9c12375c349893"/><dir name="Status"><file name="Collection.php" hash="a9589653dcb2ec4d6e5ce44c7deb040f"/><dir name="History"><file name="Collection.php" hash="454e76763d0949e26c69111abb23e424"/></dir><file name="History.php" hash="89fbf35965fa06e032e512f6a879740f"/></dir><file name="Status.php" hash="e987b60f5d8052eb284da226e8019713"/><dir name="Tax"><file name="Collection.php" hash="1f4c6130bdd8d060465b01675a87999d"/></dir><file name="Tax.php" hash="a77677ae64a8d881c91d399cd89e72c4"/></dir><file name="Order.php" hash="61888ed699fe2aa9a57b8eb27d3371a2"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="26a8318a824d89e018e1a70f97672679"/><file name="Parent.php" hash="87cb8717206872bfd1f4292a3005df15"/><file name="Region.php" hash="5872ae9b3797e6c4704791f390951da2"/></dir><file name="Backend.php" hash="b17262878c64c044279cb93184383e1f"/><dir name="Frontend"><file name="Custbalance.php" hash="642813eccdf6105fed3014149e6793a8"/><file name="Discount.php" hash="209a486667eea30052b5076da9ca029a"/><file name="Grand.php" hash="547c07b3a979865d6cda640a537ebb65"/><file name="Shipping.php" hash="92d3f19e7de14ec3f96eac1351851e9a"/><file name="Subtotal.php" hash="10ae6624e9c37f495123247986aa8cc8"/><file name="Tax.php" hash="b8ff0a58832295680a9ea1308d310614"/></dir><file name="Frontend.php" hash="c56f6081d742a2448bb79b5a184ffa4d"/></dir><file name="Collection.php" hash="09357a12a0ea670eeb9609a66b6ed593"/><dir name="Item"><file name="Collection.php" hash="4e3c55e3cbc829df949871047aa54c53"/></dir><file name="Item.php" hash="a49a6efe26afd771d4cee8e9cbbc8993"/><dir name="Rate"><file name="Collection.php" hash="4e5d2a360df589a87c057d8a713e3dd6"/></dir><file name="Rate.php" hash="e42d679e1b76f5ecd21633ca6ceccf1e"/></dir><file name="Address.php" hash="5d5a4a11cc2ca5925e79e6c64255d519"/><file name="Collection.php" hash="0a5972e650be8256ca8008c69d292f0a"/><dir name="Item"><file name="Collection.php" hash="094d1b1d731371bb1913cda6facae81c"/><dir name="Option"><file name="Collection.php" hash="dd317d1a8ff1f376492983b4684b77ef"/></dir><file name="Option.php" hash="ff91228921eb110a5318dd7ae8f0aa4b"/></dir><file name="Item.php" hash="a523703024c71069bafd925a4dd0418b"/><dir name="Payment"><file name="Collection.php" hash="18d70923e23d9f543c39b3422d796e89"/></dir><file name="Payment.php" hash="0636e58d953474f0fdcdf133966ec884"/></dir><file name="Quote.php" hash="ee91375874eed31804a364fd620e5016"/><dir name="Recurring"><dir name="Profile"><file name="Collection.php" hash="84f7e91234ddd363ea87effcb501c2bc"/></dir><file name="Profile.php" hash="b7d21aef97eab03f706935901ff0dcdd"/></dir><dir name="Report"><file name="Abstract.php" hash="f0b4935a6c256008a6fecb3a95371c04"/><dir name="Bestsellers"><file name="Collection.php" hash="61455c08fc974f338f250ff9686e51ca"/></dir><file name="Bestsellers.php" hash="f6091c23f0dc40456b56276a30c86f40"/><dir name="Collection"><file name="Abstract.php" hash="1a85bfdb4339d8b1c232267bec446e5a"/></dir><dir name="Invoiced"><dir name="Collection"><file name="Invoiced.php" hash="cbef7c13c05bb8507bf61b7b14df6453"/><file name="Order.php" hash="099680aa7e2b13990094b88372a61c3a"/></dir></dir><file name="Invoiced.php" hash="bff6a226bbfa0da99e83420b93f8724b"/><dir name="Order"><file name="Collection.php" hash="1337eca0377c865a05740dcd6d6fc07e"/><file name="Createdat.php" hash="05476fc382b541044dce2d55aa4c06aa"/><dir name="Updatedat"><file name="Collection.php" hash="18f5abdccbaea940140376ca19518fa5"/></dir><file name="Updatedat.php" hash="e1938a15f08e5bf8583a2b64d97d2eba"/></dir><file name="Order.php" hash="c0c7408faa413bb4a3305cbbb1fcab61"/><dir name="Refunded"><dir name="Collection"><file name="Order.php" hash="18c0f949be812c068eaad2cfef54d96d"/><file name="Refunded.php" hash="d717bc01806d35c8fd50b7da3d3388cb"/></dir></dir><file name="Refunded.php" hash="4cf3eac1262e6f604adb530fb3d34896"/><dir name="Shipping"><dir name="Collection"><file name="Order.php" hash="ea5a8eacb8db5c4defcbdda845e35b9f"/><file name="Shipment.php" hash="b03ec5fb4789bd51f6146003238a712d"/></dir></dir><file name="Shipping.php" hash="c50e12739c4bc61b0c9f7c46ba9d0068"/></dir><file name="Report.php" hash="9f2055ad9b6de2961ba8fbc68d46e06f"/><dir name="Sale"><file name="Collection.php" hash="1f9f0d7d56306574802af2e764978bde"/></dir><file name="Setup.php" hash="6611a5994b7c5de508e478683d0c95a3"/></dir><dir name="Service"><file name="Order.php" hash="4c717d98dac6c95f864f5bf84c9b7793"/><file name="Quote.php" hash="3ffa1ecf1c7e8a39899e9efa24492f06"/></dir><dir name="Status"><file name="List.php" hash="8047eeb9dfcf4e52b61936cce7ce30e5"/></dir></dir><dir name="controllers"><dir name="Billing"><file name="AgreementController.php" hash="ee984449032f49bb295adb931cb379ac"/></dir><file name="DownloadController.php" hash="ecdc7f30d780da97959fd769ebdcb03b"/><file name="GuestController.php" hash="72e9765589b2c0e058dc4a23d25d7f87"/><file name="OrderController.php" hash="e4439831de7a7d4bbc72d13925b16db6"/><dir name="Recurring"><file name="ProfileController.php" hash="b2caea2071e9a938bfa52702a227a054"/></dir></dir><dir name="data"><dir name="sales_setup"><file name="data-install-1.6.0.0.php" hash="9ac143fc4618feb4e04a4b73ccd0be4c"/><file name="data-upgrade-1.6.0.4-1.6.0.5.php" hash="52ded1180fdf429c30a3090b1042d05f"/></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="e68881b5b5182da3e14c974396e74d5c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="4a491ffbad4f24a0dc3e498beed9f339"/><file name="api.xml" hash="878959d448019e036560b5562906ffe2"/><file name="api2.xml" hash="e8b5dbba5ff5021dc47935e542e3451f"/><file name="config.xml" hash="78b62f19c9f74277776c16b9632b1034"/><file name="system.xml" hash="44bd2cf868ab65ca851b1321b323378b"/><file name="widget.xml" hash="4e9736066aaafdd506a4976b502d61c9"/><file name="wsdl.xml" hash="ed13de1dde6408ab508892374ef57b81"/><file name="wsi.xml" hash="6aba2f44765955ec8bcd1afcebfb0800"/></dir><dir name="sql"><dir name="sales_setup"><file name="install-1.6.0.0.php" hash="110b79db53f77c950ae86faab5ce047d"/><file name="mysql4-install-0.7.0.php" hash="a9d2c78f8d8e5baf25b321fae5cc0256"/><file name="mysql4-install-0.8.11.php" hash="881408c6bad2eec32b24e85a267fa946"/><file name="mysql4-install-0.9.0.php" hash="82104cd02bffd6c58a44bee06dfc7405"/><file name="mysql4-install-1.4.0.0.php" hash="696ea5f0e6efbb938d24799767213e2e"/><file name="mysql4-upgrade-0.6.2-0.7.0.php" hash="ceea0b5b7886baa8ecd8d5d374d4e445"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="1e0a4137d3fadd53295c2af96c0b1e49"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="9fcb3beb65424a4670f12cdfffa74f32"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="1c5fda4f61af35e43cd436b58a67d30d"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="6d88188440dae8ef405261504ca1f375"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="e4b8e9b014e8e38c02f09cc65434b4ae"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="fe78cb9056e08dd2833defb09bc57023"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="b8bb11071ff39ca63cbf6047122834c0"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="8ae36f8c10e25b9cb330ecce0dd09be9"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="42d330c3fdc5746a8d6bc177b2ea091b"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="709338a2ddb03993d9bc5014c128e725"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="b44e4e49f4e1424c45841445c63c40e5"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="6edffb6677d9992c51e06255f23583f3"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="6043c1d4bd8ec951c33bddf0d502b449"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="d1e80c73135918f1278da899af295d80"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="4b60c63e7ba0bee90ce587403e096b3c"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="94a3e2be1bf1a9818a0acb4463b2e4cf"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="ffef537312c362fe88601506aeb4e642"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="7d45c67734df1d1aab77b29139fceecc"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="89e64e6df60d34f8ba2564f939226575"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="0a0eb90e2945c4005c3d3025aa2c9844"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="21348530805866dd8d59741891d89a13"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="5e3e47bbb5813a88173a8db5114e516e"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="2215b4f3408dce97982787be262f9487"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="75b327247fe81ccbc65e14446b2078e5"/><file name="mysql4-upgrade-0.8.28-0.8.29.php" hash="ce29f3e06b6667d5a801c30f93c694a2"/><file name="mysql4-upgrade-0.8.29-0.9.0.php" hash="6c9b239422e5d4a90e252ce038cc56d2"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="74d7861ec3d39fac065dfe5e52cf0419"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="94a3e2be1bf1a9818a0acb4463b2e4cf"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="2a9be44708a9d862186039da74204682"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="f158061656fd128979c8ceb708b35b6f"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="b8f1f388f8da3cba35bc06eebda9b660"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="1617aea2a91ebab44969abe94ddb80f4"/><file name="mysql4-upgrade-0.9.10-0.9.11.php" hash="e1292bc8ec53d625ed54136bbfef66bd"/><file name="mysql4-upgrade-0.9.11-0.9.12.php" hash="6fdae6e99b6f67779adcc89ebd4fddcb"/><file name="mysql4-upgrade-0.9.12-0.9.13.php" hash="2daa0c23acc5499e72b86f4cae3d34f6"/><file name="mysql4-upgrade-0.9.13-0.9.14.php" hash="06765b54f599b85b6c60231cc5704467"/><file name="mysql4-upgrade-0.9.14-0.9.15.php" hash="2edf947c129c93d620bc32bc2c8a256b"/><file name="mysql4-upgrade-0.9.15-0.9.16.php" hash="d5bb240932e75babde0ac357522e8e82"/><file name="mysql4-upgrade-0.9.16-0.9.17.php" hash="1613152af35bb655df33c416eb71d57c"/><file name="mysql4-upgrade-0.9.17-0.9.18.php" hash="fdfb6cfef4bf12bd78cb0a01a9159365"/><file name="mysql4-upgrade-0.9.18-0.9.19.php" hash="7d779a021bf43cb26cb49dc2c5423f32"/><file name="mysql4-upgrade-0.9.19-0.9.20.php" hash="7b6eea2f09a298a9c6c2d5ad3c50a33c"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="1859315e30abd7af7605f95fa8338f5d"/><file name="mysql4-upgrade-0.9.20-0.9.21.php" hash="5378e1a5ef45392438ee1b9d58d03dd2"/><file name="mysql4-upgrade-0.9.21-0.9.22.php" hash="4a07b742d2c119c1a904a4d441c50995"/><file name="mysql4-upgrade-0.9.22-0.9.23.php" hash="7cf74956969f5914f00a96ac91820295"/><file name="mysql4-upgrade-0.9.23-0.9.24.php" hash="e4e79f230ac9ed7dc1308a086a4326ca"/><file name="mysql4-upgrade-0.9.24-0.9.25.php" hash="e338bb5af8649e9870ab901d35dbaa63"/><file name="mysql4-upgrade-0.9.25-0.9.26.php" hash="848d0e7014fe22fb4a60f77fdd96970a"/><file name="mysql4-upgrade-0.9.26-0.9.27.php" hash="0ba923d9de1792c9faa0d0068319ca0e"/><file name="mysql4-upgrade-0.9.27-0.9.28.php" hash="11b42f144107e737dc5bd3d9e3ee2a65"/><file name="mysql4-upgrade-0.9.28-0.9.29.php" hash="e3e05fb7225c2d166cad4979e093bb25"/><file name="mysql4-upgrade-0.9.29-0.9.30.php" hash="48bfae80495037eaf7e3ebeecd9a97ed"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="0b08d0b6f0ef3db38198b019741a4ba7"/><file name="mysql4-upgrade-0.9.30-0.9.31.php" hash="47e9fd57a83d114fd8e3351461a419e9"/><file name="mysql4-upgrade-0.9.31-0.9.32.php" hash="17c07222dc046f8d1c0adf790bb4b647"/><file name="mysql4-upgrade-0.9.32-0.9.33.php" hash="880838a87480bfd7bc966a2ca58c7813"/><file name="mysql4-upgrade-0.9.33-0.9.34.php" hash="cfd9b0d93b43068d66701d0d4c787f6d"/><file name="mysql4-upgrade-0.9.34-0.9.35.php" hash="3d62a244d505ecf1d495224e9f256e23"/><file name="mysql4-upgrade-0.9.35-0.9.36.php" hash="8e424dfa05b74e45f76094a8c1b29224"/><file name="mysql4-upgrade-0.9.36-0.9.37.php" hash="ea58efb1e4a2f0af00df3df801114dce"/><file name="mysql4-upgrade-0.9.37-0.9.38.php" hash="959e78e31085ee87bbd5977886fc535c"/><file name="mysql4-upgrade-0.9.38-0.9.39.php" hash="f8b74916754d7a42302d17a95c7bb6a5"/><file name="mysql4-upgrade-0.9.39-0.9.40.php" hash="7a1627e225ac4d9a7fd90d9f39726a8c"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="441f7307cc20bad2fbbb5e3a0e32e357"/><file name="mysql4-upgrade-0.9.40-0.9.41.php" hash="0e328e69d311ff186a4059414de6c336"/><file name="mysql4-upgrade-0.9.41-0.9.42.php" hash="6dc615a44ffa77ca6f45f9a4a358e4b9"/><file name="mysql4-upgrade-0.9.42-0.9.43.php" hash="3e666a256b8aef542a4827ab7f871c0c"/><file name="mysql4-upgrade-0.9.43-0.9.44.php" hash="3c8f05cb0f5df6b6ad7713bfc4fc8cba"/><file name="mysql4-upgrade-0.9.44-0.9.45.php" hash="f9636babe7eb1aafd70881221f3cb337"/><file name="mysql4-upgrade-0.9.45-0.9.46.php" hash="845c34034eda65e7ebabfa7c93322812"/><file name="mysql4-upgrade-0.9.46-0.9.47.php" hash="c0ccd2a7fd4605ce685eb42169cf3d5a"/><file name="mysql4-upgrade-0.9.47-0.9.48.php" hash="6b04ea90d7527a16aa5150fa5e9ec0a8"/><file name="mysql4-upgrade-0.9.48-0.9.49.php" hash="899a1236933e99c699e85f35053e810b"/><file name="mysql4-upgrade-0.9.49-0.9.50.php" hash="c189c7f0c51ef2042c1a74c053ec8b2e"/><file name="mysql4-upgrade-0.9.5-0.9.6.php" hash="42f41f47b589db9ecbc04424790eb217"/><file name="mysql4-upgrade-0.9.50-0.9.51.php" hash="dc5285110ef9fd5efbaf1fc6137cfbdd"/><file name="mysql4-upgrade-0.9.51-0.9.52.php" hash="c28c2d8d5ec6fbe2ee8f95144ef8db9b"/><file name="mysql4-upgrade-0.9.52-0.9.53.php" hash="dcfd0c1fd4cd0407d1e57134c68bcf67"/><file name="mysql4-upgrade-0.9.53-0.9.54.php" hash="f24e523d0fff9f68bdc158e5365022c3"/><file name="mysql4-upgrade-0.9.54-0.9.55.php" hash="e43f25286ed5aa46cc056fd882f0967a"/><file name="mysql4-upgrade-0.9.55-0.9.56.php" hash="73ed2eac14d4c58862d1e0515dd7e16c"/><file name="mysql4-upgrade-0.9.6-0.9.7.php" hash="e9014d0fa275ada15e55b283e2c9b4b8"/><file name="mysql4-upgrade-0.9.7-0.9.8.php" hash="4fd48d221003324f92a68134e401d629"/><file name="mysql4-upgrade-0.9.8-0.9.9.php" hash="406daea8fff3951c3f21e928fffc98ab"/><file name="mysql4-upgrade-0.9.9-0.9.10.php" hash="fe899a0b433198f770bbf0cff24f9d57"/><file name="mysql4-upgrade-1.3.99-1.4.0.0.php" hash="1111366ba92ddd90cb1322a411b5897d"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="31e98ab27fa4b0adc074d6de8d503236"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="b399c09c99023ab3234b1c8998ca98b6"/><file name="mysql4-upgrade-1.4.0.15-1.4.0.16.php" hash="1cfaafbad01a1d1d9b9b63513939b6b4"/><file name="mysql4-upgrade-1.4.0.16-1.4.0.17.php" hash="8561f38e209351f3b3733c4af7c6b9c4"/><file name="mysql4-upgrade-1.4.0.17-1.4.0.18.php" hash="d503087c93ef1cbed8c8f4061655c8ba"/><file name="mysql4-upgrade-1.4.0.18-1.4.0.19.php" hash="01c93e8ff5eb72e02a50bab7bb81cd8b"/><file name="mysql4-upgrade-1.4.0.19-1.4.0.20.php" hash="79c47e0dbae0a2e7ed4fcec119cb9088"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="88ee578331bd113da81e30886580fc6e"/><file name="mysql4-upgrade-1.4.0.20-1.4.0.21.php" hash="40ef612b415e4acf3db7e0d9fdcce11a"/><file name="mysql4-upgrade-1.4.0.21-1.4.0.22.php" hash="765081049ce2fee6fe78dc0644bf1617"/><file name="mysql4-upgrade-1.4.0.22-1.4.0.23.php" hash="030dd89445a2147d8c923f12ddbcd05b"/><file name="mysql4-upgrade-1.4.0.23-1.4.0.24.php" hash="8e775c36e98161db9fb712f18900b414"/><file name="mysql4-upgrade-1.4.0.24-1.4.0.25.php" hash="32454566670a4bd6bfb5dac30a87e2ca"/><file name="mysql4-upgrade-1.4.0.3-1.4.0.4.php" hash="7b7ea15f123131f6c1f6937baad14443"/><file name="mysql4-upgrade-1.4.0.4-1.4.0.5.php" hash="82c7ed626ca89039783236d23d4a644d"/><file name="mysql4-upgrade-1.4.0.5-1.4.0.6.php" hash="1f69d31ce75b5d60acadbbb60e0bb757"/><file name="mysql4-upgrade-1.4.0.6-1.4.0.7.php" hash="169957d037ae1df8fdb2b78882f11b90"/><file name="mysql4-upgrade-1.4.0.7-1.4.0.8.php" hash="d0abd18293e1f006ae24164ed8cd9f7f"/><file name="mysql4-upgrade-1.4.0.8-1.4.0.15.php" hash="344e9d955c8ea423c565d6f755a57e80"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="92bb87c0074e17a2ccd8241c700bab72"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="2d34a0b3ad16b3fd1f6c48a9fa3558a7"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="f415a23ee219230c18059fe7d8798b21"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="4d91e8f371b6624f460deff7bbe5563a"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="51a93ec4558168751008a5f6b34d65a1"/><file name="upgrade-1.6.0.4-1.6.0.5.php" hash="317bd85184b2abaacacc5ae0bdd37597"/><file name="upgrade-1.6.0.5-1.6.0.6.php" hash="0a6426b36049966888e7b54b7e22f9e7"/><file name="upgrade-1.6.0.6-1.6.0.7.php" hash="de37f03aeb539810dac7187aae150943"/><file name="upgrade-1.6.0.7-1.6.0.8.php" hash="22b188bb18e4ae659be05b4fa1048c2f"/><file name="upgrade-1.6.0.8-1.6.0.9.php" hash="9f8311952df6a8af9611781a65a0e162"/><file name="upgrade-1.6.0.9-1.6.0.10.php" hash="9a212975bc67dc2fd8666ce48564531c"/></dir></dir></dir><dir name="SalesRule"><file name="Exception.php" hash="30d326b083bb49430a571f20d74ce058"/><dir name="Helper"><file name="Coupon.php" hash="7c616ce7144506e79c20744cd6611016"/><file name="Data.php" hash="f125fcbc13f8bb57f60f581c599aea0e"/></dir><dir name="Model"><dir name="Coupon"><file name="Codegenerator.php" hash="5576da367a0fb126912b2541a6c6561d"/><file name="CodegeneratorInterface.php" hash="2c7aa2daf249a517d8667234f627a447"/><file name="Massgenerator.php" hash="51833bbc241d1f86bd1b52ca809370d7"/></dir><file name="Coupon.php" hash="c3b8baa5002331145ca5eae9f15abe2d"/><dir name="Mysql4"><dir name="Coupon"><file name="Collection.php" hash="648895de235357f770503126790b4c1f"/><file name="Usage.php" hash="03b14d10e4cbe084a1b744654abf1a44"/></dir><file name="Coupon.php" hash="2c67b882f6f38deabfd0217d307b5f6a"/><dir name="Report"><file name="Collection.php" hash="b434df98a934a791ef0640bdf9409db7"/><file name="Rule.php" hash="750beb5832563d8262ea3e4e9bc3758f"/><dir name="Updatedat"><file name="Collection.php" hash="e9d7e9ab42028d0b5de6b446e1aba35d"/></dir></dir><dir name="Rule"><file name="Collection.php" hash="0db9a76e19ada037e654e0155f7a8b59"/><dir name="Customer"><file name="Collection.php" hash="bab0bc92ee52704e225f6f3b709bfc3a"/></dir><file name="Customer.php" hash="88eb129539426ec993c763bcc3a9434c"/><dir name="Product"><file name="Collection.php" hash="154c67e58e5c48f73140c1fa6d474bc4"/></dir><file name="Product.php" hash="aca1e832c2041c2e27ae59beb0180487"/></dir><file name="Rule.php" hash="fd66b6c157147ee40594d4eda503fc57"/></dir><file name="Observer.php" hash="a4bfcb25408a4f31323f75a218d41893"/><dir name="Quote"><file name="Discount.php" hash="a49802ae19d8eda925a046dd2f9991a3"/><file name="Freeshipping.php" hash="9d3b0a4547bbc46793734977ffa496d0"/><dir name="Nominal"><file name="Discount.php" hash="da9f40bfd137382a908373936b493362"/></dir></dir><dir name="Resource"><dir name="Coupon"><file name="Collection.php" hash="c9896bd0c5b58c6015b4298aaf5dfbd4"/><file name="Usage.php" hash="59834b41eac3210a1b34b43211373d8e"/></dir><file name="Coupon.php" hash="cca17ba608c1b3fcd5f71973628437fa"/><dir name="Report"><file name="Collection.php" hash="ce2ce890a8c314b126119547ed5c9846"/><dir name="Rule"><file name="Createdat.php" hash="dcfa85e1ff0a3497a1dbc8595de746b9"/><file name="Updatedat.php" hash="67bd92b5a51ea346fe925de8b63bbf36"/></dir><file name="Rule.php" hash="9d6529d6d8c2123ea7a2244122248757"/><dir name="Updatedat"><file name="Collection.php" hash="8641d24f4313fde590dad64319497940"/></dir></dir><dir name="Rule"><file name="Collection.php" hash="4e741f28573b5feab458e4e4486be1cf"/><dir name="Customer"><file name="Collection.php" hash="c3cdf7649be0cc38542f43b4f85c43e7"/></dir><file name="Customer.php" hash="60e3d0ec5c8734dcf995430f6fc268d1"/><dir name="Product"><file name="Collection.php" hash="e1f21ba81d709349831d760b6a1b0137"/></dir><file name="Product.php" hash="2e04964a60f857f2c1b413fba5851cef"/></dir><file name="Rule.php" hash="2151a5e415b1c18e84672bfd6c182e2d"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="93a02ed83c28ef63a58677d9e7f40fd7"/><file name="Product.php" hash="b5bc0743ec9d37a5fbfabee67b40701a"/></dir><dir name="Condition"><file name="Address.php" hash="8e0121a696bb30f8b9a5722b8e5cb605"/><file name="Combine.php" hash="3085a13b80a2fcef634d08e952a5ac5c"/><dir name="Product"><dir name="Attribute"><file name="Assigned.php" hash="0068cb1cbbfd8f47a73fec734ba98a4b"/></dir><file name="Combine.php" hash="980b23f98f13077deed242a9e8a3c8d9"/><file name="Found.php" hash="dd29d33cc59410696be3d65bbe378961"/><file name="Subselect.php" hash="fdee14447c4c57fdc7d881406ac02451"/></dir><file name="Product.php" hash="858ef7de1b50ce4080b981d8b8a93827"/></dir><file name="Customer.php" hash="3c9fd4705a402b9fb49b1c452aef545a"/><file name="Product.php" hash="ab2d38ece2ff08df7e2fc98d90b071b4"/></dir><file name="Rule.php" hash="4a60b278c8fafcc449baa634be461506"/><dir name="System"><dir name="Config"><dir name="Source"><dir name="Coupon"><file name="Format.php" hash="cb6917330fe7e74a0faef42c329ef0fd"/></dir></dir></dir></dir><file name="Validator.php" hash="b5dd4b49fdb8d3d02022d307cdaac7ab"/></dir><dir name="etc"><file name="adminhtml.xml" hash="225bd146cd65f89b35a8cbf8c607d6a8"/><file name="config.xml" hash="91196595012db059ec3726a5d7a5fb91"/><file name="system.xml" hash="4b43576016900985effca7b4bced2df3"/></dir><dir name="sql"><dir name="salesrule_setup"><file name="install-1.6.0.0.php" hash="0fe444d62e8e7527a73911a4083067e3"/><file name="mysql4-install-0.7.0.php" hash="673ff6d6d23feb81d3a2eb3c19a7e35b"/><file name="mysql4-install-1.4.0.0.0.php" hash="63a61d462bd588059f5e927e669aac4e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="0722bc5b25e1aa670689e7be858690bf"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="9a929d70ce03e0d8253eafa406a7bf57"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="cf65bed30a711929089f67d6012da4f5"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="c8eca3175ce765cfeac8fdc57a7c133c"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="5b45c036cb71e1e7c335e8623ab3e5a6"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="b527fe0ec7b88045f6a2a2a43467caf4"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="33f5f3345b8ace07cd728da20d62d1ba"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="c2bea7e3d52c3ae19c0d901de8ff4262"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ffe141e04b84a06ef4542403a9d74243"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="7cd72ee92b1d22cd352b868cb75777da"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="348046750da4aba0c54d3cd3238693c8"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="3220ddd060b64d74d5c926aa054b3b75"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="d1815b52d9980e75eec35854f1aaafea"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="3f8ae6b1e3f4503b15831759ea65a144"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="f99e75d217ff76bd1cb084dac416f529"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="6ebc16cdd23ec647606f4b6078ed11d2"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="ef77cb4c4b4d743c7efbd41423e89b37"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="b21fe4c3cf187378e225c3abad67b17a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="850fab34858c4a2865c1d7db63c7e111"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="d86cd0a0096dfb4201a6d5118c13ceed"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="162ae5b9a1b52a6e1c47e4ddfd9bc3cd"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="b8007eb6247909c46737e81f20d1a4a2"/></dir></dir></dir><dir name="Sendfriend"><dir name="Block"><file name="Send.php" hash="e8d1b2fd480b7b5660f26a88aff2f312"/></dir><dir name="Helper"><file name="Data.php" hash="56bfbe885b91b1172ed7fc02ee3acfc7"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Sendfriend"><file name="Collection.php" hash="7832e7c6c0b90fdda552a11c38dfffb4"/></dir><file name="Sendfriend.php" hash="1ded2709c8aebca3ea7a1e431f140e44"/><file name="Setup.php" hash="1a2ed72341304a84afd3c748be986c2e"/></dir><file name="Observer.php" hash="06539907cfeecfd8ac1c83c58a3d558e"/><dir name="Resource"><dir name="Sendfriend"><file name="Collection.php" hash="29eaf21421b7853dd502af43e2ee2ec6"/></dir><file name="Sendfriend.php" hash="f207c38c12b2a345779d4129c96a8df4"/><file name="Setup.php" hash="fa87b74de288064959ad151c80166f80"/></dir><file name="Sendfriend.php" hash="7a8c2d826fa09882a2fdf988ff5aca24"/></dir><dir name="controllers"><file name="ProductController.php" hash="7de452b85a5007f74a51ec1735f6136b"/></dir><dir name="etc"><file name="config.xml" hash="ae7dea9a559b8894b2a64483d8e2fd41"/><file name="system.xml" hash="a94514081abd7d6c7161fc9a45e3ad5e"/></dir><dir name="sql"><dir name="sendfriend_setup"><file name="install-1.6.0.0.php" hash="364799324e1763940c6f4df425150633"/><file name="mysql4-install-0.7.0.php" hash="3ea8e5daac1c6c4bf8846b93c6f0681d"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="6949e6318889da60e8a3c9c40482379e"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="6ec52ccc028315947d1f364d041bc302"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="0f819664cce04753fa044dd20dce0192"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ac6ed64d122619e51f371d10a8a8b56b"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="b5c0dea54b2c89f33ffe08fa0b86563a"/></dir></dir></dir><dir name="Shipping"><dir name="Block"><dir name="Tracking"><file name="Ajax.php" hash="afae367cf6dff1bfe13957288af5b1e7"/><file name="Popup.php" hash="9de50bd8572228092b8a004c9ef0bd3e"/></dir></dir><file name="Exception.php" hash="efafd03e8456b4c98b727298c347882b"/><dir name="Helper"><file name="Data.php" hash="4666c40fc2bf636963609ce2d59311bb"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="7e0522645671635e3f38a25c4228ca7f"/><file name="Flatrate.php" hash="ba6c6b2c171f914ff092a88e1ce605e9"/><file name="Freeshipping.php" hash="9648c98eeb915c9545dab85499fe7a05"/><file name="Interface.php" hash="16876d19b177db33568d1c655599139d"/><file name="Pickup.php" hash="0bec21c749c555a5cd6cdba1b9533e9b"/><file name="Tablerate.php" hash="17dcf5a33d6bfc9182b923068fa8feac"/></dir><file name="Config.php" hash="5b1afd3daa1dcf3f7458c3816577525b"/><file name="Info.php" hash="fa208567acc1e9629cac978d6e0f5be0"/><dir name="Mysql4"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="d397747f415d2137c88365d00aa6b29b"/></dir><file name="Tablerate.php" hash="31956d3fc6c587d8e9275a8fde793119"/></dir></dir><dir name="Rate"><file name="Abstract.php" hash="6af67315af6ac683cb6bfdc567212207"/><file name="Request.php" hash="386ded21f5c37b7eb4fd03663694b2b9"/><dir name="Result"><file name="Abstract.php" hash="de7429b1ac327e69d408c65eb332b731"/><file name="Error.php" hash="39caf64a63cf512ba6dd98014fc97def"/><file name="Method.php" hash="a5b5f621cace41f78fc9570ad6949837"/></dir><file name="Result.php" hash="136715a7580e1e8ed2d13f3343c2ca98"/></dir><dir name="Resource"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="f9d51d8f43f3646d85a7bdcc3330352e"/></dir><file name="Tablerate.php" hash="4fc74f74eda153a51154bb92f31873ae"/></dir></dir><dir name="Shipment"><file name="Request.php" hash="912af0391adec02c594b45aafb11b7ba"/><file name="Return.php" hash="e7b96b2f8143c93fef1a3676f7354433"/></dir><file name="Shipping.php" hash="c1b594917dfbb90b5b4448b66d729f4e"/><dir name="Source"><file name="HandlingAction.php" hash="cf6ad32e144ef45f455afc10a3d05dff"/><file name="HandlingType.php" hash="f053b8106cefc9b97c96c106d3792a1d"/></dir><dir name="Tracking"><dir name="Result"><file name="Abstract.php" hash="4a56497227046e9d3d2cdc4bc0256838"/><file name="Error.php" hash="092f2545700ba32f2636883ab98d5ba0"/><file name="Status.php" hash="ca32255bcd5384e8b58038351033faa6"/></dir><file name="Result.php" hash="381fc1c560238211cdf2dc1c2d2544b0"/></dir></dir><dir name="controllers"><file name="ShippingController.php" hash="0ea96ab2a8f8cc96511c1fc24ce00114"/><file name="TrackingController.php" hash="4a1b36410c4b134f72f61456a4c7b335"/></dir><dir name="etc"><file name="adminhtml.xml" hash="178b68d8d7a4ca752f96123bf3893b37"/><file name="config.xml" hash="6c392178060cb396bb0b61285234e161"/><file name="system.xml" hash="3cedbf8e7fbc33162cf763e0ac988fdb"/></dir><dir name="sql"><dir name="shipping_setup"><file name="install-1.6.0.0.php" hash="fe5c87ef8b62c28e5985068080344b71"/><file name="mysql4-install-0.7.0.php" hash="86297079acd8b3aac0f5b6379106f5a1"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="0ee4430266d54ee94cb378f2a5f21ee9"/></dir></dir></dir><dir name="Sitemap"><dir name="Helper"><file name="Data.php" hash="1200fc7b8217c435b0d80b84359482f7"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Catalog"><file name="Category.php" hash="42055add5a5f9c3a4776f84ef2127977"/><file name="Product.php" hash="f2edb19adeb10d9793c2a2467cbc00ac"/></dir><dir name="Cms"><file name="Page.php" hash="6a3f958cec85ef508733d9d922d5dfc4"/></dir><dir name="Sitemap"><file name="Collection.php" hash="46f2e806ad5f7b99b1b24b13813676e9"/></dir><file name="Sitemap.php" hash="cc28cb180bd969bec94c6f26bb94964d"/></dir><file name="Observer.php" hash="76b6299e8295bf55025b5823365a10c7"/><dir name="Resource"><dir name="Catalog"><file name="Abstract.php" hash="43315c7994817dbfbb4506ab73b45270"/><file name="Category.php" hash="1c9b5d285273926457704353b91012b2"/><file name="Product.php" hash="a5968449d872c03633c7fff1cfcea1a1"/></dir><dir name="Cms"><file name="Page.php" hash="7f27cfdb5b03e7ae5c7708ab01b9bb0f"/></dir><dir name="Sitemap"><file name="Collection.php" hash="3f9dbe76823b80023547483192d8e604"/></dir><file name="Sitemap.php" hash="f320e9933280fccb2dd7194c644b6087"/></dir><file name="Sitemap.php" hash="ab955cfcb55419ab85d23616b74d32cb"/></dir><dir name="etc"><file name="adminhtml.xml" hash="5911847a32ce55a6f5dc4c8fbce06f85"/><file name="config.xml" hash="51c724cedc77b5f5130c679364245d1c"/><file name="system.xml" hash="a10f1b242351496f9f691a89156d4e54"/></dir><dir name="sql"><dir name="sitemap_setup"><file name="install-1.6.0.0.php" hash="20150beee26d69e9dc68b9ec68c2facf"/><file name="mysql4-install-0.7.0.php" hash="b006c991a93e5e434067397193b2326b"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="be58d2282c10f1bacaa426d25b136a40"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="9291016ce79b169e73e8054de3236d68"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="4b9b363df397200a3f142b4ac0eba3ee"/></dir></dir></dir><dir name="Tag"><dir name="Block"><file name="All.php" hash="5371e579e2dc3d4ecfce920fec0f7e01"/><dir name="Customer"><file name="Edit.php" hash="72e956678d45c1c02baa704cc39361d4"/><file name="Recent.php" hash="ef9157707f7e9497ee38dcd543f16db2"/><file name="Tags.php" hash="ad9fe7ab0cbcdeff9b45a35c9a3ff3f8"/><file name="View.php" hash="f6e098651205ecd87e016b6f7a394a3e"/></dir><file name="Popular.php" hash="cbf9226084f976627ebcab63f4927990"/><dir name="Product"><file name="List.php" hash="ab54acbc97e1226f887e5974a49a3c27"/><file name="Result.php" hash="5e2389648663aeba3d355e5346c64f24"/></dir></dir><dir name="Helper"><file name="Data.php" hash="a8fa758a4a518f8b4b70c4edb3e98d4f"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="a98e5c7838a65a8edef737d7cc95c45d"/></dir><file name="Api.php" hash="cf2da9bf7d251e6242407ba0c3b3530a"/><dir name="Entity"><dir name="Customer"><file name="Collection.php" hash="291ee2170f208b4e0cc378e31c81ce86"/></dir></dir><dir name="Indexer"><file name="Summary.php" hash="527c6046553b9e723438d76cb659d71b"/></dir><dir name="Mysql4"><dir name="Customer"><file name="Collection.php" hash="f6688552af76c395c0399af129e42e7d"/></dir><dir name="Indexer"><file name="Summary.php" hash="788f9bd792c32b867419bff9d817caa5"/></dir><dir name="Popular"><file name="Collection.php" hash="e1b57cb4886f8f55517e430a0f598390"/></dir><dir name="Product"><file name="Collection.php" hash="1b42c7671635e112a9dd29a9938e9ea9"/></dir><dir name="Tag"><file name="Collection.php" hash="042182c94468f8dbf01b25e49939e82e"/><file name="Relation.php" hash="a70a883b602e57f48bb9a7d236351106"/></dir><file name="Tag.php" hash="2ef96a80277c09f9b3f80e966f174e59"/></dir><dir name="Resource"><dir name="Customer"><file name="Collection.php" hash="aa9b4d9cf04e8d063c7de75d341e006d"/></dir><dir name="Indexer"><file name="Summary.php" hash="e6a034bee38fdd44d45a1cf9c5454e95"/></dir><dir name="Popular"><file name="Collection.php" hash="c09fffb148c2a3a232b59f4677721222"/></dir><dir name="Product"><file name="Collection.php" hash="c8828b29bf1a0c751597739741a0bccf"/></dir><dir name="Tag"><file name="Collection.php" hash="686854d70fc94f2aa466831fd548266a"/><file name="Relation.php" hash="68232ac61d736874a3d5548cc2e4e9b7"/></dir><file name="Tag.php" hash="307f77e495a89f5f057835b5327b911d"/></dir><file name="Session.php" hash="54ea2cea2f489970276155dd4bb372bc"/><dir name="Tag"><file name="Relation.php" hash="c89c5e78aa104c34cc3f138b7b0aac47"/></dir><file name="Tag.php" hash="cdf03ba9c49b6722210fc6a02b4eedd0"/></dir><dir name="controllers"><file name="CustomerController.php" hash="ca3f384d2c4aa8820bdf190fcbb94131"/><file name="IndexController.php" hash="2dbd17b1e6a3cd2af6a9f68580d5c61c"/><file name="ListController.php" hash="59db440f81235eb351568096f2854c3e"/><file name="ProductController.php" hash="03db8ea3fb0069d8949ad93e77c87679"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2a8e07d9bcb11744a666322bba5d7a0e"/><file name="api.xml" hash="6ba8c9308cf37e343f73cfc8a9318a69"/><file name="config.xml" hash="ec475d0a0964e7a270fc65809e185a15"/><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="c29f9c3132cb5004faf9a40391357fb0"/><file name="mysql4-install-0.7.0.php" hash="466970216774f88e428d93dd833f760d"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="102b8ba9a19af9bac16e53d0121112b4"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="ea36eb482c1b71744e6c38de6762b25a"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="c8dc94872f04ecc0850bb0eb4a4838e9"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="80ba0c211544936130226d3d8c2bfb48"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="31d932d329e13a0b721c9e1aa7eefe4e"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="64db47a305770b8225e521d5e9441251"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ecf294c769b60e51496315f5cad7363b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="d5ebb91098aa04d0b14cd05e665e123f"/></dir></dir></dir><dir name="Tax"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Region"><file name="Updater.php" hash="2320443eec9f560e1ad465f122ed7189"/></dir></dir><file name="Notifications.php" hash="78804ab65a0b62f07f6f77c7d220d59c"/></dir><dir name="Checkout"><file name="Discount.php" hash="d2b22367bb03bdb7e09ecaa79a3ddb8b"/><file name="Grandtotal.php" hash="a7d6af3c3e1367354c984e73214fd81b"/><file name="Shipping.php" hash="442497bc1e5a17fc3d8f66f090dbbfb4"/><file name="Subtotal.php" hash="401a0fc1f2498527d0cfbbde7cf3d186"/><file name="Tax.php" hash="40e443a7821b5eef2c4622861cc0d5e3"/></dir><dir name="Sales"><dir name="Order"><file name="Tax.php" hash="b7e77e69ea8fe15e905279a6e81ea3f1"/></dir></dir></dir><file name="Exception.php" hash="cc97da20b10a5fd1eef7a5b397473c73"/><dir name="Helper"><file name="Data.php" hash="d5c9b29199975371c4639864397aeecd"/></dir><dir name="Model"><dir name="Calculation"><dir name="Rate"><file name="Title.php" hash="eff97c093936d87842c83456eb26c72f"/></dir><file name="Rate.php" hash="02eb9b2685d8546dfa201feb2f6bdbe4"/><file name="Rule.php" hash="8a30ff2df7ee50584c4d0c273d7ecd4a"/></dir><file name="Calculation.php" hash="83033b3273bc198aa085e999f0955f76"/><dir name="Class"><dir name="Source"><file name="Customer.php" hash="60efb530235816f276f7e61617b8aafa"/><file name="Product.php" hash="36ac93544d04eefed941d2fc5022c29f"/></dir></dir><file name="Class.php" hash="81be1061087a0ed11f13ec6b1f337180"/><dir name="Config"><file name="Notification.php" hash="8d8f5509bf53eeb74ebe3547fadada4d"/><dir name="Price"><file name="Include.php" hash="7580a97b56d1f05e447dce79acf7412a"/></dir></dir><file name="Config.php" hash="fcb0373225adde032c97d76e2cb966c2"/><dir name="Mysql4"><dir name="Calculation"><file name="Collection.php" hash="d009414c64da256a3ce723ded7bf1e6c"/><dir name="Rate"><file name="Collection.php" hash="1cea8176c33f1736637aed72330eb5b1"/><dir name="Title"><file name="Collection.php" hash="c8faf19248f3bb70675a83941c8be13b"/></dir><file name="Title.php" hash="4d60fe76d51a5e8022e24e0d0cf61974"/></dir><file name="Rate.php" hash="5a90f57ff9d4d88a2833721e24367d4a"/><dir name="Rule"><file name="Collection.php" hash="67fbbf25ab10c113fa3d495f9e4e73c3"/></dir><file name="Rule.php" hash="fe32f951268a25013b5bce9faf33658b"/></dir><file name="Calculation.php" hash="923f7726f74811efb4ea7a6da21a29e0"/><dir name="Class"><file name="Collection.php" hash="a6387ea5adda7d766955fd30161090c9"/></dir><file name="Class.php" hash="cdecd335df7a6c5111b930735554d724"/><dir name="Report"><file name="Collection.php" hash="aa4fb55337c566f838cc1cc3e71e6a93"/><file name="Tax.php" hash="15f0fcaf5378736991230fe086f56d44"/><dir name="Updatedat"><file name="Collection.php" hash="9429e883d1d8b60e5019bbda29597e1b"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Collection.php" hash="f7d822f287bae3138885609cb8e888b9"/></dir><file name="Tax.php" hash="aea5daad3ca17c10f55f41f40a9ebdfa"/></dir></dir><file name="Setup.php" hash="f69b944b28796eb364ea0c9d1c1552c5"/></dir><file name="Observer.php" hash="cf0de9c834f04945561f925fc778fd0d"/><dir name="Resource"><dir name="Calculation"><file name="Collection.php" hash="456329a856ea71b48b8edf6328cfa34e"/><dir name="Rate"><file name="Collection.php" hash="3515d632676fe8c410d8ffacfb293b78"/><dir name="Title"><file name="Collection.php" hash="0a9286670c799ecbe0eb02c05321030b"/></dir><file name="Title.php" hash="37b38559c0c7913c4d450115b2d8198c"/></dir><file name="Rate.php" hash="30b1aadf74a03f61901304588f307798"/><dir name="Rule"><file name="Collection.php" hash="5038667cc7ff73d34acc21f6ceb56835"/></dir><file name="Rule.php" hash="b57750e0b2cb27c6f08a0d2de60ec0d7"/></dir><file name="Calculation.php" hash="bb3009a68c282aa1bf98841a2ea45dd8"/><dir name="Class"><file name="Collection.php" hash="e5b578b8c9edfc0c14d0e3127e2fb326"/></dir><file name="Class.php" hash="9836943a01a9dc0b0465d60442164c7b"/><dir name="Report"><file name="Collection.php" hash="6c279acbc587a9702344559925ca91fc"/><dir name="Tax"><file name="Createdat.php" hash="09c60679529dbfaa3b09ea943857448e"/><file name="Updatedat.php" hash="f89f8f5520cc0efe737cdecf780daa38"/></dir><file name="Tax.php" hash="715e636a8f2661a837da15201a55d340"/><dir name="Updatedat"><file name="Collection.php" hash="b31e6810cc9923ee67ae5064cdea9bf8"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Collection.php" hash="20d7ccca1232f39bc0578d0e65694c33"/><dir name="Item"><file name="Collection.php" hash="c1e12d6e7fbbdcb5e3a91a0df6760362"/></dir><file name="Item.php" hash="81925013e2d6ec9f165c7db80aeac0a1"/></dir><file name="Tax.php" hash="d4d8978d38375772c0796352487e51ca"/></dir></dir><file name="Setup.php" hash="713c595f7fe204d376dc1c41e2571f55"/></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Item.php" hash="864cd0dac8c010c70ef4f44200c88fdc"/></dir><file name="Tax.php" hash="cf958f708f593ad169c2f66efe2e236f"/></dir><dir name="Pdf"><file name="Grandtotal.php" hash="b27c4007d9b90f50a98dfb9b0b5a90d8"/><file name="Shipping.php" hash="3df8e71747cd140d61487c8877f96f27"/><file name="Subtotal.php" hash="9062cbae0c1d56fa1ecd0f395abe4837"/><file name="Tax.php" hash="1da5645322652899aa6a3e2f518b80ac"/></dir><dir name="Total"><dir name="Quote"><file name="Discount.php" hash="b4f055cc529f977dae230edc1241776e"/><dir name="Nominal"><file name="Subtotal.php" hash="79ae3130154b48ffd4f750ca65d3e93d"/><file name="Tax.php" hash="3be2fc5f20c2eca6c83f7fccba01d748"/></dir><file name="Shipping.php" hash="e41ed3f14c324b689c60e0b042e7b67c"/><file name="Subtotal.php" hash="1c5ac5b1e6796d3c3420b30053469d69"/><file name="Tax.php" hash="1d94ac9ac1477c752d3665c867905624"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Algorithm.php" hash="04215e661b81c56e228902d44dba4f81"/><file name="Apply.php" hash="a71df6c29edb40974604b1540af7d0c6"/><file name="PriceType.php" hash="74d4578e17a16805dabc89a7b770c029"/><dir name="Tax"><file name="Country.php" hash="91bbf2efe4a8a33ca752f6bec367f509"/><dir name="Display"><file name="Type.php" hash="34ed9b07756468791f7a01f3a581ceef"/></dir><file name="Region.php" hash="5ae1bcdd09b2c4beb3441325ef948771"/></dir></dir></dir></dir></dir><dir name="data"><dir name="tax_setup"><file name="data-install-1.6.0.0.php" hash="27422c73884137274e753f239480d593"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="a9fcb1b93e24570810f974f360c42c65"/><file name="config.xml" hash="8fa8f08a2b9d44cb31d39b3ceb99cdda"/><file name="system.xml" hash="86d1d8cdd1d0a74cb75549bd307e7c16"/></dir><dir name="sql"><dir name="tax_setup"><file name="install-1.6.0.0.php" hash="2e67641e059034ff6ebe8488475ec9b3"/><file name="mysql4-install-0.7.0.php" hash="92365b1115eac789b008105785fac741"/><file name="mysql4-install-1.4.0.0.php" hash="eac72ffa7d64cfb4fab2536e0d785473"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="e0d22151ed9281fd4ca06232ccb4c1c1"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="cc55e540aead6538e46b064efb925dfa"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5e5248263b8a8a90ce8ebc6015ae9897"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="3f8c4ad55f4e77dccacba6903cddff02"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="54b278741f62fea936f550239d47bc90"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="d59b330a51599d40e0fcfa4da6af2753"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="29249336b31e95bf21af0f17a867d561"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="f9369df3888aa50231692e6fa88624be"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="bd280eb15643517131739532a44f3045"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="8cd515d303ffb60cd7b1f249c07bfc71"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="63087bcfa056805d4557d0943b66da70"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="a59bd987cfdd6f4714c7499375011b43"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="45ec3b342f9764fb50444af0afc6df3c"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="58991310adc7fd5f992ad8b04048e05d"/><file name="mysql4-upgrade-1.3.9-1.4.0.php" hash="aa1a65db97dfd0cedba1bd66809f86c8"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="d79efef012820fbb3fe7a39beba08da3"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="c235a03f0613f14429d2a7604e0fd7bc"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="c552b44e27cba6b8894462e21b133588"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="feda533189e1b36e875e52ef87e399dc"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="703bbf15811e95287bd0b3b65267aeb6"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="d978e1f88b6786a3cdb77ea1ff2ade53"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="cac878b7eeb51208efebbfb3a1397499"/></dir></dir></dir><dir name="Uploader"><dir name="Block"><file name="Abstract.php" hash="2edc9f40431f83f6ba63cd82e60895aa"/><file name="Multiple.php" hash="ebd3b546eeb6d7ae1b4ec852b64d79f1"/><file name="Single.php" hash="faec37a64e42101c553a972cdbedf1a8"/></dir><dir name="Helper"><file name="Data.php" hash="159dc31bc264a3d09f8a1af9faf0b26c"/><file name="File.php" hash="bbb1ccf3005b29b6130c571d6b6f2be6"/></dir><dir name="Model"><dir name="Config"><file name="Abstract.php" hash="6a1b08cc9a3bc7d17651a33512c297d0"/><file name="Browsebutton.php" hash="ae8f4c81730df40c4b169edad9c17926"/><file name="Misc.php" hash="27be1dafd1b18712b65b052d94801a6a"/><file name="Uploader.php" hash="1753d1dc15b5079bc606167256f2b149"/></dir></dir><dir name="etc"><file name="config.xml" hash="cf5f9de83038a94f35560212c2c3b170"/><file name="jstranslator.xml" hash="0ca6aab45f6e93f292af2a7ffdb4e82a"/></dir></dir><dir name="Usa"><dir name="Block"><dir name="Adminhtml"><dir name="Dhl"><file name="Unitofmeasure.php" hash="8c47714ce5b975c00dc03918feca5256"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="c7034c095463cd5542259b867928d9f9"/></dir><dir name="Model"><dir name="Shipping"><dir name="Carrier"><dir name="Abstract"><dir name="Source"><file name="Mode.php" hash="071a81d7f1a33f7f0ce23dea6994b51d"/><file name="Requesttype.php" hash="bb315ffd9d4c265f6762ba2689f58505"/></dir></dir><file name="Abstract.php" hash="31c20f784d780e44c028cc4b04f817db"/><dir name="Dhl"><file name="Abstract.php" hash="e122544b2f3a4c6a53935f8f966afd48"/><dir name="International"><dir name="Source"><file name="Contenttype.php" hash="80a06de262cafdfb554244e565032acf"/><dir name="Method"><file name="Abstract.php" hash="8312055ecf448aa634ad73b4252cd44b"/><file name="Doc.php" hash="69c561e3d08528a9335178ec643ceb24"/><file name="Freedoc.php" hash="95b49cb668bb55955524d6b5f658f126"/><file name="Freenondoc.php" hash="4131b515c94e5ccfdb06492e071f8974"/><file name="Nondoc.php" hash="ebceb46c51fe7f976316d900a2cc123f"/><file name="Size.php" hash="33ae7c7f41f4dd7a208edf97d9f2afe7"/><file name="Unitofmeasure.php" hash="d2104d50f5fd0aa1a3a1b0ee871597d5"/></dir></dir></dir><file name="International.php" hash="c5cfdaf5b9f80d3f070ad0b77801b55d"/><dir name="Label"><dir name="Pdf"><file name="Page.php" hash="ce8a66de0addff9880e99793bace1a3f"/><file name="PageBuilder.php" hash="170a286bad74bb475d58af588f84c6e8"/></dir><file name="Pdf.php" hash="91064f29c13a4af8ee3745be83b79973"/></dir><dir name="Source"><file name="Dutypaymenttype.php" hash="586d1bba3993463b899ca943246632ca"/><file name="Freemethod.php" hash="136c58bc14b3f58a764d0a206020288d"/><file name="Method.php" hash="830fcb9d8e827c42b36ce60b01e2f2b3"/><dir name="Protection"><file name="Rounding.php" hash="63813967f28c3e80f4380af8382d7f3b"/><file name="Value.php" hash="dfa1baff3c372332f1c97d1be266eec4"/></dir><file name="Shipmenttype.php" hash="bab794383f0d7d43ea2feeebea89222b"/></dir></dir><file name="Dhl.php" hash="e2aa3118442e3167597c6ddb02f73752"/><dir name="Fedex"><dir name="Source"><file name="Dropoff.php" hash="754f10627d7c24c705b3c0f5ad32b6cf"/><file name="Freemethod.php" hash="1e185f6d827f11f2460cbbc0d855df7a"/><file name="Method.php" hash="cb23859927bc202cdb178fa26de7ff28"/><file name="Packaging.php" hash="eb3821d217b172e5ba00506af17225b8"/><file name="Unitofmeasure.php" hash="300a18d3074ec425b44f9783cc5f4624"/></dir></dir><file name="Fedex.php" hash="05b94da1cf84270caef15f280695b672"/><dir name="Ups"><dir name="Source"><file name="Container.php" hash="ca732a3cff61fcce0268e1aab9f27cd3"/><file name="DestType.php" hash="6229f09acf0ed0d9d8d98834ef2eed6d"/><file name="Freemethod.php" hash="86426453661ccbe1d18c9e80d951f7ca"/><file name="Method.php" hash="9cb0d28169ff70153b9fbe7ccb69d21e"/><file name="Mode.php" hash="3f65dffe26c3789477f6bda10d1fef2e"/><file name="OriginShipment.php" hash="a2ba8ed53d32dc4bcf50aa722d1b69dc"/><file name="Pickup.php" hash="6e17e0ca1a05a6d8feafc210fe72906a"/><file name="Type.php" hash="222404b303e139efd4b6001abdaa4c99"/><file name="Unitofmeasure.php" hash="01131d3f6c6126c92926ea5159f3a3ae"/></dir></dir><file name="Ups.php" hash="cbfb2560463f651d7be560b28d84dac0"/><dir name="Usps"><dir name="Source"><file name="Container.php" hash="4ffc93fa3fe79ce358e799063423e063"/><file name="Freemethod.php" hash="94288b9388db6998a6326b22195958e1"/><file name="Machinable.php" hash="1c0b0155cfef279e69d8e297f13ad15c"/><file name="Method.php" hash="c1bb67f4449e5f1d5418ca7e1cd46e54"/><file name="Size.php" hash="37da215b2ca993f3730eb86d28efbded"/></dir></dir><file name="Usps.php" hash="a1b39969a929532a427d5399be9b10cf"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="774d8625f9c74b77fdd7704b6a78b502"/><dir name="dhl"><dir name="international"><file name="countries.xml" hash="c01576c76b96244249488ff0e39708d8"/></dir></dir><file name="system.xml" hash="5fdc3af547af078e647511636885b636"/><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="64d5771cabb861e26c75ba50e87025c6"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="94823247458a8f38a8706bfd8cd4d71b"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="6d9030a6540efe4296196d4f62f58c9c"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="4d290377c8af4d6d4712700236393923"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="1682f35425f7f7403baa1d7eb7bbda90"/></dir></dir></dir><dir name="Weee"><dir name="Block"><dir name="Element"><dir name="Weee"><file name="Tax.php" hash="13d7af51ffdbaacf44b124d0b8e0b81e"/></dir></dir><dir name="Renderer"><dir name="Weee"><file name="Tax.php" hash="ae4e907cf73877f8515ae1555356cc26"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="bb8ffee78ba50dece1c35a0118b53b47"/></dir><dir name="Model"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="2aee9af8fa9637fe9463e0a118d977e2"/></dir></dir></dir><dir name="Config"><dir name="Source"><file name="Display.php" hash="511e1e781f4b615d306acd62d2965382"/><dir name="Fpt"><file name="Tax.php" hash="99c23ff5a1744e31e1fc4f19ea51a3bf"/></dir></dir></dir><dir name="Mysql4"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="0ee584e8adff887f837edab898104199"/></dir></dir></dir><file name="Setup.php" hash="4be1dc2c3bfedac1f8c82d1097155fd7"/><file name="Tax.php" hash="b2d6aa2d1b4041ba711f5474c647724d"/></dir><file name="Observer.php" hash="b0de85e2f6538a9dc569b9f95f1a6258"/><dir name="Resource"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="8a21660667e2deb6002977da3a71435b"/></dir></dir></dir><file name="Setup.php" hash="72a4de260d5f1259f886a018778d6210"/><file name="Tax.php" hash="9b26538e0a04bdc32cafbe66441341c4"/></dir><file name="Tax.php" hash="cfebe995e978939133d9579cb94373dc"/><dir name="Total"><dir name="Creditmemo"><file name="Weee.php" hash="f8b7e4a813d647680ca70867f400aa01"/></dir><dir name="Invoice"><file name="Weee.php" hash="c51b3f3faee2e82639a549ff880866fd"/></dir><dir name="Quote"><dir name="Nominal"><file name="Weee.php" hash="b0c08939cd7b91fb41b38ed55d92f81b"/></dir><file name="Weee.php" hash="7cd99959444698a049168951614afaf0"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="6ccdcce9c0407c53f24c0c2b6b315d76"/><file name="system.xml" hash="dbd65660fe11e7d0e0fb17a18f4fb70d"/></dir><dir name="sql"><dir name="weee_setup"><file name="install-1.6.0.0.php" hash="df76d84b49de010b02caff10d93022db"/><file name="mysql4-install-0.1.php" hash="a8b914e73224adff7da176f4309b0496"/><file name="mysql4-upgrade-0.1-0.2.php" hash="84f8e84c3d68fc007bc2a0926fe25487"/><file name="mysql4-upgrade-0.10-0.11.php" hash="10e6071f0a9f5485cb9a5295e640c6fe"/><file name="mysql4-upgrade-0.11-0.12.php" hash="434afe19a6077f982dd22d5c98712a93"/><file name="mysql4-upgrade-0.12-0.13.php" hash="d03576ccb575b953f24af5b37cfcf164"/><file name="mysql4-upgrade-0.2-0.3.php" hash="594946206ca2dd8ad60f034b1ad83984"/><file name="mysql4-upgrade-0.3-0.4.php" hash="89eece341208eae616819dedab409112"/><file name="mysql4-upgrade-0.4-0.5.php" hash="9678073dcee88b6d1908587a854fdff0"/><file name="mysql4-upgrade-0.5-0.6.php" hash="782d6391f4fe6b3b3088b9c4ba2a3a41"/><file name="mysql4-upgrade-0.6-0.7.php" hash="b862b916059325d1757647ccb7367ebb"/><file name="mysql4-upgrade-0.7-0.8.php" hash="79a4463b2c6eb0fdfa111454ee1b1f91"/><file name="mysql4-upgrade-0.8-0.9.php" hash="7137ec0db6a8a0b641ddfb993f482af6"/><file name="mysql4-upgrade-0.9-0.10.php" hash="bade680275ab78850fa1dea267f9e2a3"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="bee4923defac8b0e52e8b440558cffe7"/></dir></dir></dir><dir name="Widget"><dir name="Block"><dir name="Adminhtml"><dir name="Widget"><file name="Chooser.php" hash="de8a690c0754dc6401075387f59db964"/><file name="Form.php" hash="cc6abe0aba214678ade5a5c7b712368f"/><dir name="Instance"><dir name="Edit"><dir name="Chooser"><file name="Block.php" hash="7ecfc5f40fcbfd3b423fce679b97d4d3"/><file name="Layout.php" hash="336e4ba5509dd05b7fe43d2595a73c35"/><file name="Template.php" hash="99195dbe6dae16d89f0fce9adced3712"/></dir><file name="Form.php" hash="6a3537c874764877e677135586372258"/><dir name="Tab"><dir name="Main"><file name="Layout.php" hash="a06a15c1107711324f31804b44681b04"/></dir><file name="Main.php" hash="0e65099e40c70ee6f5b64179de0b6cc1"/><file name="Properties.php" hash="232c932500ed1f7f46b81af6912614de"/><file name="Settings.php" hash="b325d036ecc2b09de794a325d79f60b8"/></dir><file name="Tabs.php" hash="aefaf43c46553aa9cbc8aff2d429e126"/></dir><file name="Edit.php" hash="0eacfd33a98101e71dc75004c2eda3bc"/><file name="Grid.php" hash="bce3f72bcd2e0b4bbb97493d48e84dd5"/></dir><file name="Instance.php" hash="50698286d97adfcd64f457a95af45aa3"/><file name="Options.php" hash="c07b96528ab02e62f01bf0491a442fad"/></dir><file name="Widget.php" hash="56d0cfe2be0917036fb2fa464a69ab43"/></dir><file name="Interface.php" hash="9e38e76a4f085977a945f714a0ba0ca7"/></dir><dir name="Helper"><file name="Data.php" hash="0103c9a68ad4cf0f86466ea5d06072af"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Widget"><dir name="Instance"><file name="Collection.php" hash="7153f583e8437f5a1934c30f616c793e"/></dir><file name="Instance.php" hash="c91120d875df54e7a46c234e797f6d47"/></dir><file name="Widget.php" hash="78e867dabadd44e18cc1671e44baf4a3"/></dir><file name="Observer.php" hash="cb836d230b4b4365d0ea1c5543c99fb7"/><dir name="Resource"><dir name="Widget"><dir name="Instance"><file name="Collection.php" hash="73288c0d5e030afe7d43bfec4c871a84"/></dir><file name="Instance.php" hash="353bd828fcea553bde6d73e4b0d6868c"/></dir><file name="Widget.php" hash="357b3d256686f8de572ecfe643b8d5df"/></dir><dir name="Template"><file name="Filter.php" hash="9ca877dd5c8c80a2c742ab1c39e93e27"/></dir><dir name="Widget"><file name="Config.php" hash="8492cd6ded792f4f2af16f488cced7f6"/><file name="Instance.php" hash="a5394db28ff7f79375e55837b1d1bd52"/></dir><file name="Widget.php" hash="af31c5460e91ba829fe9ae55daccc167"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Widget"><file name="InstanceController.php" hash="b67d61024e4001535f91ba191c6eb5f2"/></dir><file name="WidgetController.php" hash="58f4f2d03199b840de758beb8ce5369f"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4fd05ad1036dc485c1837bfe1e3b2afa"/><file name="config.xml" hash="5b9a151ef5d9ab00f5329e0dbd55f3b7"/><file name="jstranslator.xml" hash="e476c7433b0147fb3b032d2d52fcfdb0"/></dir><dir name="sql"><dir name="widget_setup"><file name="install-1.6.0.0.php" hash="ddccff4efd7b3f404481c327540d77bc"/><file name="mysql4-install-1.4.0.0.0.php" hash="fcb5887efd1aead68430d8d435ce8970"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="56fe849d37b83aeeccac695eb3ac4fd1"/></dir></dir></dir><dir name="Wishlist"><dir name="Block"><file name="Abstract.php" hash="c5936fc3b01f6183fc11a7ed27ad6d47"/><dir name="Customer"><file name="Sharing.php" hash="54f16b53176cbaf5145c3c3394c90da5"/><file name="Sidebar.php" hash="497cb35587875fff2a3c038355bd4491"/><dir name="Wishlist"><file name="Button.php" hash="e29374afab5e89fb64440a3139009679"/><dir name="Item"><dir name="Column"><file name="Cart.php" hash="93f7c1cee110fcbbef1c50c4379da7a3"/><file name="Comment.php" hash="7a01ae66b0a82254d52aed1bb0b7d6a5"/><file name="Image.php" hash="603b1518aa55916066c5a3a725578d2a"/><file name="Remove.php" hash="c6fb05896d59957aad196fdd53374000"/></dir><file name="Column.php" hash="99b1b52995ac7db0f20f51c8b2193754"/><file name="Options.php" hash="726302cea172f61d06cdba6643584197"/></dir><file name="Items.php" hash="78e17a4e3183357de7050562e17f2a32"/></dir><file name="Wishlist.php" hash="9819abe03ad5fa5156923db48017ce7f"/></dir><dir name="Item"><file name="Configure.php" hash="1f75646c8c1b364b94ba7a141dd60c60"/></dir><file name="Links.php" hash="33d8e980dacf34114a0cc2d8ff71fc87"/><dir name="Render"><dir name="Item"><file name="Price.php" hash="8b14fdcb439fd4ed63435fb6aeb3b102"/></dir></dir><dir name="Share"><dir name="Email"><file name="Items.php" hash="b3874179e7cdacfeded545ebacb50898"/><file name="Rss.php" hash="ab2df1a6f9dcd74a9492e72ce39b73ff"/></dir><file name="Wishlist.php" hash="dc531d9cd182dc1eb6b3f0a889da623d"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="8f5076a12d8668113cfa18364f835169"/></dir><dir name="Helper"><file name="Data.php" hash="b3d9783460998248ef93b080514dd379"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Summary.php" hash="0c46b4e850fde3a81b89111bf4ab5b66"/></dir></dir><file name="Config.php" hash="8c8e4d74530ed6100d984a1318327dcd"/><dir name="Item"><file name="Option.php" hash="3f665c8e2f19281b6a9338af0717e5cc"/></dir><file name="Item.php" hash="75288060fd8c9d5b982d4a7adcb4d88c"/><dir name="Mysql4"><dir name="Item"><file name="Collection.php" hash="80b0b78a86f32d473ed0e17948d4e188"/><dir name="Option"><file name="Collection.php" hash="ee69537d9a08e2925ae2a100c395999e"/></dir><file name="Option.php" hash="ebc332534c0f6849630c1f51fd4445f5"/></dir><file name="Item.php" hash="fdfdabb8c68320a5a09d17ddad7f4359"/><dir name="Product"><file name="Collection.php" hash="3a1fa7b4cbc7e5534d773ed8bb11e3a1"/></dir><dir name="Wishlist"><file name="Collection.php" hash="cc9bdaea3eb2085e17ffdb783977c5f2"/></dir><file name="Wishlist.php" hash="ec3bb2e9e6218fe83b3d867fdbfb2d70"/></dir><file name="Observer.php" hash="93f024d6e24684145e8d97d9207621ad"/><dir name="Resource"><dir name="Item"><file name="Collection.php" hash="fa429c7e077728c2a5949c14709a1f66"/><dir name="Option"><file name="Collection.php" hash="5d90f9149020aceb1fe7f83489fea7bd"/></dir><file name="Option.php" hash="07c5974aceaf133d3df43f6da3e0c37c"/></dir><file name="Item.php" hash="033fc4bd987f3cadb143605d0488f72c"/><dir name="Product"><file name="Collection.php" hash="9d43a683715c290a0b299a555fb7c201"/></dir><dir name="Wishlist"><file name="Collection.php" hash="0b7c106a5230c31cdfeca44c22636632"/></dir><file name="Wishlist.php" hash="db98aa3165c41ac822acc515864dc091"/></dir><file name="Session.php" hash="762f296192b00f6f0ddd5db40f8c5216"/><file name="Wishlist.php" hash="3c3c5dd7f88ae56f257784518ad0f0a5"/></dir><dir name="controllers"><file name="IndexController.php" hash="707df9d923fb3ca78d64f735aac7c9d8"/><file name="SharedController.php" hash="d683165e7ee5e3d635a92855f6ddbbd0"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a208acdcb55e1065c76f7b0cefc4030a"/><file name="config.xml" hash="d525c45c27ab45b6fbb707e9268e051d"/><file name="system.xml" hash="1d26f9090d4042e4bf9cae3d355180a2"/></dir><dir name="sql"><dir name="wishlist_setup"><file name="install-1.6.0.0.php" hash="554b19c0e08d4a9c2bae3d44c7f52ce1"/><file name="mysql4-install-0.7.0.php" hash="f5d63007398c8e49d2dfc62a04b5ff71"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ec4f357d8de36006760e0f556ce47479"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5e84b811fd93b03d7e22f2ed26343c90"/><file name="mysql4-upgrade-0.7.2-0.7.4.php" hash="15855583abfd3dbe53d5c86eea6a6e3d"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="1b834c64b3d4748372c0f142bcfa8562"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="83081316eed79a041040777f0aff8581"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="fe5c793b4a60487e7f26fecee51e8027"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="9b22781e6e77f69328b2bf19633c33d4"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="44ea47c2fe4f6b65c05df6793d5bfd0c"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="24346ecd9aabe85d7dc315f92da35bb5"/></dir></dir></dir></dir><dir name="Zend"><file name="Date.php" hash="95bf218944785f606f22c2ea0c077f5d"/><dir name="Db"><file name="Select.php" hash="28f3efa5f9797af22f899fb525dbb44f"/><file name="Statement.php" hash="4b5b39a1e1c651ab9d6db332c882fdf7"/></dir><file name="Mime.php" hash="f216d84221e3d7601822b4c95948aeaf"/><dir name="Serializer"><dir name="Adapter"><file name="PhpCode.php" hash="d19044ca7b67e672bb9627f572f1a069"/></dir></dir><dir name="Validate"><file name="Hostname.php" hash="08c032ea8831e62e79c792e274220aa9"/></dir><dir name="Xml"><file name="Security.php" hash="7366a7b9e2dab5551b557f49d900d6a1"/></dir></dir></target><target name="mage"><dir name="app"><file name="Mage.php" hash="79537b496d7ecafaa1d4fbf03dfc4f30"/><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/><file name="bootstrap.php" hash="38278b27c72503685be7271a244edc93"/></dir><dir name="."><file name="cron.php" hash="f58b7c6edc872e1472c62fc1f48cfa85"/><file name="LICENSE.txt" hash="59563e7be45096d0833dade102989042"/><file name="index.php.sample" hash="b52e1c098d7fe1711889378f56aa76f2"/><file name=".htaccess.sample" hash="971c336db60ac86ae96b5c5871be1e8c"/><file name="LICENSE_AFL.txt" hash="45a399f2095030865fb962263ccd7506"/><file name="LICENSE.html" hash="caf0a79ffb5e4719f9f4de286f253a61"/><file name="cron.sh" hash="617dbf0e9eb91ec8baaa7e1234c6f6b0"/><file name="install.php" hash="f45267f9b3631a174799d58937e29eea"/><file name="php.ini.sample" hash="d7412c2f78440a96fc2d9378ccf460cb"/><file name="get.php" hash="2072f9791a28361097d60a65e7ead28f"/><file name="RELEASE_NOTES.txt" hash="688e2060a8be33b5bcbf76aeb33962f1"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="api.php" hash="9e834e439bc9df9f4882220ca75a098d"/></dir><dir name="errors"><file name="404.php" hash="aa6c78b49f03ab2f07eb84f09f684179"/><file name="503.php" hash="3d1d68b7fec09e74af1d64efe403da43"/><dir name="default"><file name="404.phtml" hash="62d5cef9c406ca826e423283bc62f444"/><file name="503.phtml" hash="db230c764b704c4af62b813690cb1ee3"/><dir name="css"><file name="styles.css" hash="464d6d4be9a45fcc1eceb78a1f034edd"/></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="5baa3d3be96002cb60cef726194f1b3a"/><file name="report.phtml" hash="df18b929d127264156422997a94ad9fc"/></dir><file name="design.xml" hash="25beca687aaf6eadbd17e55bb07e95ca"/><file name="local.xml.sample" hash="70a46b914532d52e06277aaaedc8a80a"/><file name="processor.php" hash="c342b0110b157b86c6eb19c11df549e5"/><file name="report.php" hash="8cd5c5c568c6f714a414b94721a24b74"/><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="72057440e875896b0a3677b6ca52200c"/><file name="compiler.php" hash="92b87b0a535b533f33245e5fc3302530"/><file name="indexer.php" hash="d5563294ad04b3e49a8b1cc976d296cc"/><file name="log.php" hash="5ea74aa4ff17e76420e974d854482b18"/><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></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="3151d17cd395cae6352130d876f3a889"/><file name="local.xml.template" hash="6783246b3fd3de53197343c9eb872974"/><file name="local.xml.additional" hash="b324082256340d40b1c8eb212c205a32"/></dir><dir name="modules"><file name="Mage_All.xml" hash="8fae5e1dbc1755187d49c402ab1f8db4"/><file name="Mage_Bundle.xml" hash="ba142e49eca2840609bce65472047682"/><file name="Mage_Api.xml" hash="7b52a2f87a5b2c728c5a980bffc23e79"/><file name="Mage_Downloadable.xml" hash="f2f4f095b6523f0925c26695d6c8c460"/><file name="Mage_Weee.xml" hash="d3a5a34948ce5a1de0d31fab9bd2588d"/><file name="Mage_Widget.xml" hash="f69122f896b856bc50e20e71deff9522"/><file name="Mage_Connect.xml" hash="76b0a201c90820552d3b28ecb8ab35a2"/><file name="Mage_ImportExport.xml" hash="bc07f70e551179a4bf01ca28d51d20b4"/><file name="Mage_PageCache.xml" hash="01d42d307c75df993b69e484902b91a0"/><file name="Mage_Persistent.xml" hash="38b45e494bb6d05ff46520b388029b4f"/><file name="Mage_Authorizenet.xml" hash="0046278f7877c7217d96cb9662960555"/><file name="Mage_Captcha.xml" hash="0bf2ab37b09826012db7a3b7ff66ad52"/><file name="Mage_CurrencySymbol.xml" hash="85198e0215733fbee822c993c753ee72"/><file name="Mage_Api2.xml" hash="7df6181984a40743c8b59a770541ad4f"/><file name="Mage_Oauth.xml" hash="d802275a5b4592297173af66e20efeed"/><file name="Mage_ConfigurableSwatches.xml" hash="7b7dc861ede72fee57ee11645c09011a"/></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Varien</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_Google_Checkout</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1.11</min><max>1.51.1.11</max></package><package><name>Lib_Js_Mage</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_Js_Prototype</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_Phpseclib</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Mage_Locale_en_US</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_Mage</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_Magento</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_Credis</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_Pelago</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_Unserialize</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package><package><name>Lib_IDNA2</name><channel>community</channel><min>1.9.3.5</min><max>1.9.3.5</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Modules</name>
4
+ <version>1.9.3.6</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.9.3.6</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2017-09-14</date>
14
+ <time>17:34:29</time>
15
+ <contents><target name="magecore"><dir name="Mage"><dir name="Admin"><dir name="Helper"><file name="Block.php" hash="fc9406e4e5d450b0ccba7be4ee6d50a3"/><file name="Data.php" hash="a6c43f89a20efd9e92c2be27a93cc3e3"/><dir name="Rules"><file name="Fallback.php" hash="3dc0f9c798dfe08f671e598c3a009def"/></dir><file name="Variable.php" hash="6ff535d83f5520c7a9afad9d1f7a6755"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="ded76ff3498fc0c192dd189d782b17c5"/><file name="Time.php" hash="2c63250ffd3ca63c730e26d9f0fbdf15"/></dir><file name="Resource.php" hash="b99a5b94ef2e85d733fa392a3bd647e8"/><dir name="Role"><file name="Generic.php" hash="fc1d1bd002572a5f2b833281d4e99667"/><file name="Group.php" hash="c80eed9b9befcde627f93b51e7e57936"/><file name="Registry.php" hash="cf6e79003fec1617fd3f19c37293ed7e"/><file name="User.php" hash="83720a75323062ad854624804a9d2d95"/></dir><file name="Role.php" hash="b7ce968888213b31986d44b7e75e5c97"/></dir><file name="Acl.php" hash="a32a304e823a5e36d8761bd7cb173acb"/><file name="Block.php" hash="708e1eab4ba9cee992a332d1afcdd874"/><file name="Config.php" hash="47fd4a1fb2d2295a0d9c3aa9c1bcf12d"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="9a69e865e81c8d176b1e84e57508235a"/></dir><file name="Role.php" hash="02d14b5ee98e1a8c2ef029d7cbed238c"/></dir><file name="Acl.php" hash="2fbaad717223ee676be9c37b8585b455"/><dir name="Permissions"><file name="Collection.php" hash="212022edee3a3cf170a8c0b1145eaf39"/></dir><dir name="Role"><file name="Collection.php" hash="cf4ed12d9bc146586bb615048a3fc7fa"/></dir><file name="Role.php" hash="7fc32878ec9b1a12be65b112a774eec8"/><dir name="Roles"><file name="Collection.php" hash="d4138d47da5da51e19ae82deb7adba28"/><dir name="User"><file name="Collection.php" hash="4616e2aebe9ee4bdc79b108b0d3951b5"/></dir></dir><file name="Roles.php" hash="0c949555a69548ea55145cbe45d7ce9d"/><dir name="Rules"><file name="Collection.php" hash="d5178b0cd585089fff8ecddb0fca0ddf"/></dir><file name="Rules.php" hash="d685d777340e9f59ae5dc1ee85984c75"/><dir name="User"><file name="Collection.php" hash="9d22d9068b8debf35cae959ee28b260a"/></dir><file name="User.php" hash="1bc75bf892f2e90062d91b8376f2c6e5"/></dir><file name="Observer.php" hash="f3b6b466e491248aa28f62390521d344"/><file name="Redirectpolicy.php" hash="a18e55aa3e91c663eaaae7a9844d19a8"/><dir name="Resource"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="f5a82c548f999a6ab15246739537b0e5"/></dir><file name="Role.php" hash="90db9c7a37af464ffa0376350ca0f98e"/></dir><file name="Acl.php" hash="5bc169085961faacb2bdfd90fad8b0f6"/><dir name="Block"><file name="Collection.php" hash="09b57d2469bd1f9d3e1df2c982c96d8a"/></dir><file name="Block.php" hash="e7dce67df286791f630227ce01f1fac3"/><dir name="Permissions"><file name="Collection.php" hash="0606346d7fd9ea54ff7140ef7e10bc36"/></dir><dir name="Role"><file name="Collection.php" hash="257d08d826d4d55534913c5090ab4df8"/></dir><file name="Role.php" hash="f3ce8d3c0692b7a33e43098e8fa4a4ff"/><dir name="Roles"><file name="Collection.php" hash="221f559901e5bc884065933eea76d7a1"/><dir name="User"><file name="Collection.php" hash="26440d7f4f66baaec4c5148cbaec818e"/></dir></dir><file name="Roles.php" hash="801c7bb53ed757e8c57407a7b1bc862b"/><dir name="Rules"><file name="Collection.php" hash="32e0a4b8edadab618b7b39cbf22ff697"/></dir><file name="Rules.php" hash="c61019a50aa1252447d7ed59f8c5c1df"/><dir name="User"><file name="Collection.php" hash="3d9f886df76754805b94a29091b11c83"/></dir><file name="User.php" hash="c1586e5a686024a9edf492ab9a200cb4"/><dir name="Variable"><file name="Collection.php" hash="0ee23e1cd9bdcec329fe2af32423c893"/></dir><file name="Variable.php" hash="cc16e609989526347d4f70b10dd5f634"/></dir><file name="Role.php" hash="5251a93d9f20f0f7cc2c10c7f14bd3ec"/><file name="Roles.php" hash="5e76a1b167f030d8b88c19ae5fe8978e"/><file name="Rules.php" hash="ec7808b6b1acffcd76d17c1e106d577d"/><file name="Session.php" hash="7fb881c54dfd9e8953f2884ae0b140d8"/><file name="User.php" hash="ea3ba64b0b81cb13c0d2183d7ee0a64f"/><file name="Variable.php" hash="98c8189798ceed425824d017f8418be7"/></dir><dir name="data"><dir name="admin_setup"><file name="data-install-1.6.0.0.php" hash="f50a871df4a94324acd968b3c1933522"/></dir></dir><dir name="etc"><file name="config.xml" hash="89b76dff351e6df6948c30e151c997c2"/></dir><dir name="sql"><dir name="admin_setup"><file name="install-1.6.0.0.php" hash="00c112830080d76276a7c5310107ddfb"/><file name="mysql4-install-0.7.0.php" hash="dc470a5aaaf075843c29628b3eed5327"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="bc077be88dfd6c970057e1e26b15c1fc"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="25b5ab2f3f9e5c9bf958845b87366f04"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="462eb00e4441dcb08a1201ee8abd1880"/><file name="upgrade-1.6.0.0-1.6.1.0.php" hash="0a9b07df924be58089dcfcb8e4d9ee42"/><file name="upgrade-1.6.1.0-1.6.1.1.php" hash="17db9a98c18624b59150109dd4cdbeaa"/><file name="upgrade-1.6.1.1-1.6.1.2.php" hash="75404fbe2a27fdb4df3d77df33b1280d"/></dir></dir></dir><dir name="AdminNotification"><dir name="Helper"><file name="Data.php" hash="bd590a85487782928dfe674763d27070"/></dir><dir name="Model"><file name="Feed.php" hash="92b7d93c19996fae7c3fba2d13f8baca"/><file name="Inbox.php" hash="090fe8681899f877159b761bda7bd305"/><dir name="Mysql4"><dir name="Inbox"><file name="Collection.php" hash="0b5056c27aa25de767eb3bd9055fe897"/></dir><file name="Inbox.php" hash="e926f7bc2fc0fe44d8096c9b220f6f9a"/></dir><file name="Observer.php" hash="e4a20f795cbc414293c416da202119c7"/><dir name="Resource"><dir name="Inbox"><file name="Collection.php" hash="686c80050f1896682576f3e45f24e26b"/></dir><file name="Inbox.php" hash="836e37f8c496d2bf622417e167f67f8e"/></dir><file name="Survey.php" hash="2ad8449db6ceb319ecede707c96be562"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9cbb991fe21fc6c2720dff95229da9b8"/><file name="config.xml" hash="eb0f7d1373fb7ec7709da494b37c5e26"/><file name="system.xml" hash="92111ebc634d3aa69d3a55a869f401f1"/></dir><dir name="sql"><dir name="adminnotification_setup"><file name="install-1.6.0.0.php" hash="1785ca811fee5690a189fed2e15617a1"/><file name="mysql4-install-1.0.0.php" hash="3577eca55b2579419260f4329cb479c0"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f6204039951fe45ce282453174acf950"/></dir></dir></dir><dir name="Api"><dir name="Controller"><file name="Action.php" hash="8eae18bf49937bc352fa109fcfa9164b"/></dir><file name="Exception.php" hash="beeac69f73309d3aaf365a064302f4f8"/><dir name="Helper"><file name="Data.php" hash="e8b56cf30af9254605f563c2f89a73f7"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="ebf90b0aefb69dd8ebb109f664744363"/><file name="Time.php" hash="62d812f342f377b4b019b28dcb75b424"/></dir><file name="Resource.php" hash="cb83f690dd3472cded226f56da5ce54f"/><dir name="Role"><file name="Generic.php" hash="8fc92bbd49be9a2378eb359a13442d5e"/><file name="Group.php" hash="c7eca57f928aecaa5cba000b9a1264d3"/><file name="Registry.php" hash="a27fcb1b92b0da41fd0bcf13ee925400"/><file name="User.php" hash="c3049730b73d4a3e84f545ff17f85519"/></dir><file name="Role.php" hash="bc9ba365f612a6b7bc48a66816be011a"/></dir><file name="Acl.php" hash="ba73d77c7f953b5a72f0e4b0527c7154"/><file name="Config.php" hash="5ce9e154c854780e2dd8104155879446"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="a9921a520e05f2d345773e65cfa03dc7"/></dir><file name="Role.php" hash="4509bdda9d8ac9339eb8d02868eae0b5"/></dir><file name="Acl.php" hash="439950f5c12344c8d34c3066e18f444e"/><dir name="Permissions"><file name="Collection.php" hash="38af81c9cec452ab4956fa7bda0c16c9"/></dir><dir name="Role"><file name="Collection.php" hash="8dcdbf0f692f95d435c36092e80da970"/></dir><file name="Role.php" hash="5d33c90f347a6e438c60caff40e7824b"/><dir name="Roles"><file name="Collection.php" hash="854ab80ff43de3c4bfa7d17047ace943"/><dir name="User"><file name="Collection.php" hash="07bb38aa64dfd091f80059d6280981da"/></dir></dir><file name="Roles.php" hash="4224cd1579f999c5a852b5c20906d811"/><dir name="Rules"><file name="Collection.php" hash="09741aa26ce7ef264f29b9a55593b837"/></dir><file name="Rules.php" hash="475cc0456c894b38ef1722688253d743"/><dir name="User"><file name="Collection.php" hash="2039516d6044e778546d7494c4f99398"/></dir><file name="User.php" hash="ed0b55b77ecffca7ebb3766d63c56e1e"/></dir><dir name="Resource"><file name="Abstract.php" hash="22397aedfa332ea9a3da9e846dbd4e95"/><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="835d25a49b720d9182d29233ae0779dd"/></dir><file name="Role.php" hash="a899e007d3297c54e3c83ddf62349f2e"/></dir><file name="Acl.php" hash="e274714b973121e96bd336c11236530a"/><dir name="Permissions"><file name="Collection.php" hash="bf6ca3bb951233a3e5ba2dd3565d274e"/></dir><dir name="Role"><file name="Collection.php" hash="ab544aa0abfc82602a76300fceff8830"/></dir><file name="Role.php" hash="b0b60f8a0db7340ef2cd01a144e4c8dc"/><dir name="Roles"><file name="Collection.php" hash="0562cc4b904064d0874582840cde5ecf"/><dir name="User"><file name="Collection.php" hash="89118032d3c8689b1220e41b28b5db00"/></dir></dir><file name="Roles.php" hash="3b3b832a06432a974dbebdcb2b769f8d"/><dir name="Rules"><file name="Collection.php" hash="f967bd6a57ea518f9a0aba65cb32bac4"/></dir><file name="Rules.php" hash="5ed1ac0109987861fb21b8633a226a1f"/><dir name="User"><file name="Collection.php" hash="43ff9de34ee295805a0c06f6bcda7bd4"/></dir><file name="User.php" hash="032c39b1ee1f0650b7097e606b27fa64"/></dir><file name="Role.php" hash="cc7fdd93aa4e37ea010774efc252c967"/><file name="Roles.php" hash="8ab7dfe1f8857a6910bec01ff71b8d1b"/><file name="Rules.php" hash="e8da177d32c3ac93fec6b2a19d0bc0f7"/><dir name="Server"><dir name="Adapter"><file name="Interface.php" hash="800a274a8b863c0560843db4ba5d555b"/><file name="Soap.php" hash="613a2076212d67de80eccc81a11a48ec"/><file name="Xmlrpc.php" hash="bb149d23bbe1b59be53092929d30de99"/></dir><dir name="Handler"><file name="Abstract.php" hash="3d41c03538099e284f12ddc1f695a941"/></dir><file name="Handler.php" hash="dd733c5750a1f21af24d95484a59a093"/><dir name="V2"><dir name="Adapter"><file name="Soap.php" hash="e927bfdf73187bbdd4b5284648c07dea"/></dir><file name="Handler.php" hash="eafef8e030d93d204bf7c150c99b837e"/></dir><dir name="Wsi"><dir name="Adapter"><file name="Soap.php" hash="68e194bcaee81c4abfd95f4e54032d3e"/></dir><file name="Handler.php" hash="38488ffbbda09cc527d02f2f69b73b3b"/></dir></dir><file name="Server.php" hash="c03e87b65b11be2638a4b7f1daae3db0"/><file name="Session.php" hash="951329e93b7cc71e13fc637c3891fae2"/><file name="User.php" hash="ae483254dc1534d5df115e7bdd0fc9f4"/><dir name="Wsdl"><dir name="Config"><file name="Base.php" hash="a9cc5f765d9ec94a530151d6ec8c7635"/><file name="Element.php" hash="105ac2cdf984b13d8ca64ae36fa60b9e"/></dir><file name="Config.php" hash="40f5682fa2fe23305d09a6b9f1699ae7"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="bfccc20ab54f37b1cfa70c96a90e68f4"/><file name="SoapController.php" hash="11678e8e6d34b382311819ff669b498c"/><dir name="V2"><file name="SoapController.php" hash="5c1a0c3534911a21cf33a392ccb8798e"/></dir><file name="XmlrpcController.php" hash="f7708538e557e952829222cff4890c08"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0f414c6580d7ae9eff5a449deb528d3c"/><file name="api.xml" hash="bf1537205ddd24ba9784cd854dd18094"/><file name="config.xml" hash="cd73f5cccdb88edb768720d011981f4d"/><file name="system.xml" hash="4f2083e918ceecb09645f6c6ed3ad15d"/><file name="wsdl.xml" hash="f0db676b04733b38f310355bb44bc3cb"/><file name="wsdl2.xml" hash="7d527421ba4b63a8a812ab6b1095891d"/><file name="wsi.xml" hash="9fb1700cf935a26e7fada90a07fae7fe"/></dir><dir name="sql"><dir name="api_setup"><file name="install-1.6.0.0.php" hash="2bae0a3fc3930b11d55fbfe2d489e1b6"/><file name="mysql4-install-0.7.0.php" hash="015156d26e7c05d5c5a637cbf68620c0"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="b21139aff5282e48f98b419f5c570e3d"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="bdda04aa78ce943c82c94724b998271f"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="c8e2e80d774eb440239225dbcef96c4e"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="62eb2721729074e2b7a43f35cab7b7de"/></dir></dir></dir><dir name="Api2"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><file name="Buttons.php" hash="1b9bcdfebc364299af0c7078ab751c48"/><dir name="Edit"><file name="Form.php" hash="d9ac23a6d8413c235cbbcd7f82e940ba"/></dir><file name="Edit.php" hash="ccf332000c89c49b5e6ebac127d357a7"/><file name="Grid.php" hash="fdb7ac85139f14d1c0e32741a3d93451"/><dir name="Tab"><file name="Resource.php" hash="2eabfb8ee0f168004eecf455765ba1b6"/></dir><file name="Tabs.php" hash="c4684f3860b8af2fef44b7663d8039d4"/></dir><file name="Attribute.php" hash="f4caa246d34060369520f73f423e6805"/><dir name="Permissions"><dir name="User"><dir name="Edit"><dir name="Tab"><file name="Roles.php" hash="3290aeda296fe96a760a58282499c43f"/></dir></dir></dir></dir><dir name="Roles"><file name="Buttons.php" hash="9a54faec0a04c0b4610c0354482d2200"/><file name="Grid.php" hash="8ec7abeb327153bb47f2f884938ad6ab"/><dir name="Tab"><file name="Info.php" hash="27539ce483d86ebe3442bc37a710bda7"/><file name="Resources.php" hash="fb66bfa2ea53f3e88dc87acb2eb8024d"/><file name="Users.php" hash="6f172d82960457dfc544c86fa0630028"/></dir><file name="Tabs.php" hash="ad3c6ecb92f0db4ddda996b16fefe623"/></dir><file name="Roles.php" hash="0e8cfad6bffff2285c95083dd402b437"/></dir></dir><file name="Exception.php" hash="a55c045ff8cecc6bebd8ab9ce7779e2d"/><dir name="Helper"><file name="Data.php" hash="10483db0d3c9b0275e93569015e6c319"/></dir><dir name="Model"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Operation.php" hash="b48faab54b6334af5a04bb17da4e5687"/><file name="ResourcePermission.php" hash="68807d76938a3bfb9638dfdce23c149f"/></dir><file name="Attribute.php" hash="0bd96f1ca4d2122b0ce3a91cbbfa14d5"/></dir><file name="Filter.php" hash="a1636920a5e1f1f4ea1959a07892a542"/><dir name="Global"><file name="Role.php" hash="43686dcf5d4fe9aa743c0afa19f1dcb5"/><dir name="Rule"><file name="Permission.php" hash="268336c700ba20fa054233b38943b726"/><file name="Privilege.php" hash="df6d5b32641524535923d5761a83c0fb"/><file name="ResourcePermission.php" hash="27406834c99eac33d4216287549f4d12"/><file name="Tree.php" hash="4a420b4632629c531526af7a2b94bf24"/></dir><file name="Rule.php" hash="890512ab88b6900b74d361f42e176292"/></dir><file name="Global.php" hash="de3d338b73a67818f894f491b1c84754"/><file name="PermissionInterface.php" hash="cce052a0f65476b7c7cfaabc969547ae"/></dir><file name="Acl.php" hash="8154896afe5cd7f378c0a4d50c7d52c7"/><dir name="Auth"><dir name="Adapter"><file name="Abstract.php" hash="fbe61bb52fc2521b64a18013e47e010c"/><file name="Oauth.php" hash="d2081e3bc882ca00cab7568122223c69"/></dir><file name="Adapter.php" hash="f7808cc676fcc26725a3b900258fde92"/><dir name="User"><file name="Abstract.php" hash="10a8b2a03c9c33d244c687f41e61def4"/><file name="Admin.php" hash="0f986691e38f7913179577d68c5fab76"/><file name="Customer.php" hash="e20c4c751a64e0e35ab710eb4069226f"/><file name="Guest.php" hash="d4dcf710f41003724ac4f14e17901ef7"/></dir><file name="User.php" hash="b1c4f2c4a8345953dc8eb4723c5a5acf"/></dir><file name="Auth.php" hash="afb7067e6ecc6c0374522e83f9caa6bc"/><file name="Config.php" hash="82bd84a128f1afdb44d482955fcd7e5b"/><file name="Dispatcher.php" hash="f358e9f02cd586d10c809f4039c14624"/><file name="Multicall.php" hash="c456ce8e2d2cbeaf8290d0b34b1d6d03"/><file name="Observer.php" hash="1677a697268fad91e6ebfd50ee6918d2"/><dir name="Renderer"><file name="Interface.php" hash="7bd87d5039ed7a7cee84f7231b6168b4"/><file name="Json.php" hash="a97910792175479114d35346c5fc6f75"/><file name="Query.php" hash="6aade6aac8ecb68285bcf621e0e2d8dd"/><dir name="Xml"><file name="Writer.php" hash="0438c9067344bc863a8f1c0cbdf13ef5"/></dir><file name="Xml.php" hash="0f30ab156c80dfb0d7e2cfb753074898"/></dir><file name="Renderer.php" hash="99279e5f8a3f4e5c77ddb97d080e5fbf"/><dir name="Request"><file name="Internal.php" hash="8017bdbc40b8160db76ba0f72b132131"/><dir name="Interpreter"><file name="Interface.php" hash="aa7dfc6ff222408c564c670c1d16924f"/><file name="Json.php" hash="01f05271b735e2729566ea2badd5859d"/><file name="Query.php" hash="937bfbba0cd21cdaca56fdea1c166978"/><file name="Xml.php" hash="6f7f2b54747b4e1539eafe8318ace83d"/></dir><file name="Interpreter.php" hash="def4d7d7709f3c15db49e57ca5cc07a6"/></dir><file name="Request.php" hash="6724228511aa074f490156c978302b5b"/><dir name="Resource"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Collection.php" hash="9f894373cca8cf943ab421cb4e6787a2"/></dir><file name="Attribute.php" hash="f227348c363d2fd38cc4d0fdc695bedc"/></dir><dir name="Global"><dir name="Role"><file name="Collection.php" hash="913c62f9acb699b6b7999853dc9f3f90"/></dir><file name="Role.php" hash="b2ef494e23cf830e34dbd3859b7a04a9"/><dir name="Rule"><file name="Collection.php" hash="7ca6ed8648ffba1799893889dc89bc2d"/></dir><file name="Rule.php" hash="aab2f188e6599e9f9530cf2bb9d4a673"/></dir></dir><file name="Setup.php" hash="ad149fd2785b454ea57c98ff44dd8b9b"/><dir name="Validator"><file name="Eav.php" hash="c46738a8eef5783ec7327c8e76635861"/><file name="Fields.php" hash="94e0364fd4b2b6d3faf0ad73a87c13cf"/></dir><file name="Validator.php" hash="92d8df3a0aed050e58f098cf1470c082"/></dir><file name="Resource.php" hash="04cfe07317997f3aeceee70a88c80306"/><file name="Response.php" hash="cba438bd1dd193e4b095529ce38f9e02"/><dir name="Route"><file name="Abstract.php" hash="67058462289b730b0c36382a5536c043"/><file name="ApiType.php" hash="50595c51d6c65f65cb1156123b492e38"/><file name="Interface.php" hash="51626e9684024017d8c379fce6bc582e"/><file name="Rest.php" hash="3b7699a2c64576736301c3bac9b24a06"/></dir><file name="Router.php" hash="8e088217f284dbb366dcf9595eb55365"/><file name="Server.php" hash="ae9bf395067ffd8ed05b8a5507beb635"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Api2"><file name="AttributeController.php" hash="fef5aa81e318dfa9a460342b8d368bd0"/><file name="RoleController.php" hash="f68e1665c2c6e4ca21e485e357d4dbd4"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="83ae8c20132da7011248496fc40473f0"/><file name="config.xml" hash="8fa6f842a6d280c6a28cc864c3c70d96"/></dir><dir name="sql"><dir name="api2_setup"><file name="install-1.0.0.0.php" hash="ddf66259b1db24891b8f1d984bfafa3b"/></dir></dir></dir><dir name="Authorizenet"><dir name="Block"><dir name="Directpost"><file name="Form.php" hash="75e7e4c65c61260e849a4da8a7af4238"/><file name="Iframe.php" hash="540441b535ac070c67fff9a044c435d3"/></dir></dir><dir name="Helper"><file name="Admin.php" hash="411c905dafb94973a7d0de1bd8435aea"/><file name="Data.php" hash="7c04786ac6b95da75a27fa69fa5c7f6d"/></dir><dir name="Model"><dir name="Directpost"><file name="Observer.php" hash="72fc30f445d124f2c75c4bc77695c29a"/><file name="Request.php" hash="1b26513747e23b790b01a7078dde25b7"/><file name="Response.php" hash="e242989709cda24d61f48b1a2a71ccf2"/><file name="Session.php" hash="c706eb1929437013cab16fba09e1809e"/></dir><file name="Directpost.php" hash="ad5e5b29e6e066d34ef63a65b0c96028"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Authorizenet"><dir name="Directpost"><file name="PaymentController.php" hash="2c02a7f65c94e89368ae488cff44dc1e"/></dir></dir></dir><dir name="Directpost"><file name="PaymentController.php" hash="b3241f0dcf7eaaad4930eff82ea36400"/></dir></dir><dir name="etc"><file name="config.xml" hash="2fc03026b1b7a23613747661bd0d9801"/><file name="system.xml" hash="89cb6c3d0e2f2c0664103b5c3592c62c"/></dir></dir><dir name="Backup"><file name="Exception.php" hash="1f942a9a52f0ff865b440a916df8c83b"/><dir name="Helper"><file name="Data.php" hash="87e51d410b55c587e8e833740d64cd31"/></dir><dir name="Model"><file name="Backup.php" hash="ee09e3fac060713ac536234eba624ccf"/><dir name="Config"><dir name="Backend"><file name="Cron.php" hash="30939f86821031f63c7727c7883e6379"/></dir><dir name="Source"><file name="Type.php" hash="73baa69d6626924d0c6c979aa6a64733"/></dir></dir><file name="Db.php" hash="fdd7b998421b580f23815c78b2a5bd30"/><dir name="Fs"><file name="Collection.php" hash="9f61afd0196969728a2f3dc21b6b2375"/></dir><dir name="Mysql4"><file name="Db.php" hash="81b8608e609a5fc9c611332c68bcc880"/></dir><file name="Observer.php" hash="16b5b74b4d1360d6e2e0b4117bcb69be"/><dir name="Resource"><file name="Db.php" hash="c3edb526409cc320cdf83d661eddf928"/><dir name="Helper"><file name="Mysql4.php" hash="818aa9080dce5c7d397c51804a03eef1"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="a5060f0d34521ec43e3a716b4a17d5fb"/><file name="config.xml" hash="c2468b3d36bb950fe8da24f4f1765f6e"/><file name="system.xml" hash="22cb1e2b2f12003a0c7c270e680f8733"/></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="cd593c8e2255f21d4a6e1f24affeef47"/><dir name="Options"><dir name="Type"><file name="Checkbox.php" hash="d24ab15d2ea27088c509c57768c2f238"/><file name="Multi.php" hash="610e219a089c91737755552253af5c48"/><file name="Radio.php" hash="a4beaab229cf84d7abe749128cef9fc2"/><file name="Select.php" hash="3576351effe06c099b285e51d7c6a3f6"/></dir></dir></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Attributes"><file name="Extend.php" hash="fc15c5b424ef7a8983abe1725e6fac23"/><file name="Special.php" hash="2257193e422c8ae7e64a8a7ae985536b"/></dir><file name="Attributes.php" hash="265124738de45769123f08dcdcd62c47"/><dir name="Bundle"><dir name="Option"><dir name="Search"><file name="Grid.php" hash="da63972faf449268f415f54b5df69ac0"/></dir><file name="Search.php" hash="4a56ab6ce4f10b39d227930068348e19"/><file name="Selection.php" hash="6c2b98371fc791c65b012e879f088226"/></dir><file name="Option.php" hash="5162c83912a50eb5a7b717a3e9da40d4"/></dir><file name="Bundle.php" hash="eb4175630820ec7f5473773858074740"/></dir><file name="Tabs.php" hash="6e35293d42b409d5d864c85432342983"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="44b7487fafc6f908430f6ecbeb312c80"/></dir><dir name="View"><dir name="Items"><file name="Renderer.php" hash="3112b959c8471e82cb0c4e1eee3eb202"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="List"><file name="Partof.php" hash="1778cb68c6026c08593c8b3ab0a88839"/></dir><file name="Price.php" hash="d3d0ccded43da23f4fadb7903023b0de"/><dir name="View"><dir name="Type"><dir name="Bundle"><dir name="Option"><file name="Checkbox.php" hash="2329e76d299a29e415fae109a3941aaa"/><file name="Multi.php" hash="f973c7df857b1bae6403306e0f2372e4"/><file name="Radio.php" hash="a06492319db83e61c83854c6ef39d2e0"/><file name="Select.php" hash="f0dd77f6afe3d8f88aaf4fad7e745bd9"/></dir><file name="Option.php" hash="2e605d579abbc4890f41f03ee4aeb57a"/></dir><file name="Bundle.php" hash="4005c2275c076a2764b8e35f67cf5ac4"/></dir></dir><file name="View.php" hash="e69335474948d8d25258283ab2bc883f"/></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="73b29ad011a354df5390f1a1a9ea5e20"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="80b6fd6245b8c55c86aa78b562c365cf"/></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="9ee0fa044f2740a3ad77597031e59d3f"/></dir></dir><file name="Data.php" hash="0ec8ac8633c3a767b53a0610065aaa3a"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Bundle.php" hash="5cd85b485a0f5132ee69b03daf474b92"/></dir></dir><dir name="Mysql4"><file name="Bundle.php" hash="d52b54d65e70385858d91a244acf1ecc"/><dir name="Indexer"><file name="Price.php" hash="3379a033895b3f99b43f17af27e1ba0c"/><file name="Stock.php" hash="bdbe0e28f11895e105580bb205a84ea2"/></dir><dir name="Option"><file name="Collection.php" hash="a302f6fbfb5fe7032238a28bc82995d9"/></dir><file name="Option.php" hash="baad3f6dbb23eb1ce2a0db63ffdf6035"/><dir name="Price"><file name="Index.php" hash="1c530eb13ce135c377c27aa81e841475"/></dir><dir name="Selection"><file name="Collection.php" hash="9c9def473a87f2fb212cac2f4399f880"/></dir><file name="Selection.php" hash="cc296820a2007c26b213d0d0ea0c5ae7"/></dir><file name="Observer.php" hash="b6e1eccd913ed6696b77f81b0ca79288"/><file name="Option.php" hash="50e693abeb90bea25cbbe5388b4673aa"/><dir name="Price"><file name="Index.php" hash="e993a2706b650f0fbcef11f979e37d39"/></dir><dir name="Product"><dir name="Attribute"><dir name="Source"><dir name="Price"><file name="View.php" hash="5c072a31d8bff30e4a87f949ad42e899"/></dir></dir></dir><file name="Price.php" hash="37c2ad14a79a706677af48cd7ec4ce0b"/><file name="Type.php" hash="43aa001de527badf6743d3412ab7be10"/></dir><dir name="Resource"><file name="Bundle.php" hash="cfc837ea70ef498207f2261f02fbc2a8"/><dir name="Indexer"><file name="Price.php" hash="f9d9061cabaa26ae6fd34b9eb5f3220d"/><file name="Stock.php" hash="cfeaf43a857a43a9bc32fab5f6080039"/></dir><dir name="Option"><file name="Collection.php" hash="9d8e78bbf3bcd2ebdbf58c8c7ef6b14b"/></dir><file name="Option.php" hash="40a96b6d66bb388fd1784611d5b3aa05"/><dir name="Price"><file name="Index.php" hash="8b0361d4d7c50c0d7f11e0efd97c41e1"/></dir><dir name="Selection"><file name="Collection.php" hash="ec2009b87db727ec1d9937fa9835a8f6"/></dir><file name="Selection.php" hash="cbfc1bdb13b582872ba97c3894eef091"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="25d6fd1a2f5b4b3a637e7fb1208ee64b"/><file name="Creditmemo.php" hash="1c3540eb640a361de69b008e047998b5"/><file name="Invoice.php" hash="0a2d19567f3a710990a141f6758acda7"/><file name="Shipment.php" hash="320e53f669ff0a169f9679f7171dadc5"/></dir></dir></dir></dir><file name="Selection.php" hash="12ad67719d608b56265be0af3b2f46d9"/><dir name="Source"><dir name="Option"><dir name="Selection"><dir name="Price"><file name="Type.php" hash="ac37ee3ffdb2bf053d5f31ec621e6b35"/></dir></dir><file name="Type.php" hash="6534383517de02ff16461568f9c379ef"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Bundle"><dir name="Product"><file name="EditController.php" hash="ce2d799c18e9484bb12a31d0bc5fff2e"/></dir><file name="SelectionController.php" hash="ef7b3daa4573e81f60ca0629741697df"/></dir></dir><dir name="Product"><file name="EditController.php" hash="aed77668fe0b0430a65f1289efbb5aae"/></dir><file name="SelectionController.php" hash="6b5c8902e9e811fb63510693fc5a081e"/></dir><dir name="data"><dir name="bundle_setup"><file name="data-install-1.6.0.0.php" hash="f3c3079daf3cb6b95f68c3466562d3f4"/></dir></dir><dir name="etc"><file name="config.xml" hash="e8cea33aa27a575e4534dcd2a633edf3"/></dir><dir name="sql"><dir name="bundle_setup"><file name="install-1.6.0.0.php" hash="90f8c6a17ff6ec15857f4a276fff7477"/><file name="mysql4-data-upgrade-0.1.13-0.1.14.php" hash="1bc13ef4b3cd253e99b219c26910a24d"/><file name="mysql4-install-0.1.0.php" hash="21847c188a6aa462b86afa910f246105"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="22823517232aaeed3ddb84ec0647b7fd"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="b5ffa479a921d5408bbbd8fbfe85c5fd"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="5e836815096f4a49c1258b83aa1d6a2e"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="038e97796a07cda6840da7896c43bc67"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="b59a588528757865104bf5fc060293e4"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="6ebfd2367677899dfc3e831eb4115ba0"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="de930e7970de52a8f1aa8f554fa911b2"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="c81c7a94c41063e0d766a41f28bfe222"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="98195ecca6e6ab7b968f1a68b415650f"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="21cc9a3e92feac9cd9ab5f4db928f9cb"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="11c2093919105b8a9eae083d020a4f62"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="b5d9ff76f02e5066f7efcad4ed74fcf9"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="e689dc74d43e348191ba176c3b6a3c4b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="a6cc8836b1ffa6ca971bf37c1b7f7526"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="a2d3b86eded1313eabba5c5148ba72eb"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="1cc0e710681344551dab0868113bdc14"/></dir></dir></dir><dir name="Captcha"><dir name="Block"><dir name="Captcha"><file name="Zend.php" hash="2fb2c164ef32326cfcaa1be55b58f240"/></dir><file name="Captcha.php" hash="542db23d4fea0b901cde927f22cef83b"/></dir><dir name="Helper"><file name="Data.php" hash="8b278cbcbbfa2d9ff78088a93538ddd1"/></dir><dir name="Model"><dir name="Config"><file name="Font.php" hash="8d31e549caaa17d1c92c9e9694219adf"/><dir name="Form"><file name="Abstract.php" hash="21724d77a364c1661f08cbcd64d211bf"/><file name="Backend.php" hash="f1a6e486a6a086d7b839a85b6d592e67"/><file name="Frontend.php" hash="ae8cf660598d5d1e6ee2c5d94923153b"/></dir><file name="Mode.php" hash="de41cabe16162b93b206883cfb5fff21"/></dir><file name="Interface.php" hash="d917a8cdc18ffcaa6e36bc8d28901249"/><file name="Observer.php" hash="8cfb1191f761f7117f102d3d739e2376"/><dir name="Resource"><file name="Log.php" hash="be9c96cbdeb881d78409f8bf475be158"/></dir><file name="Zend.php" hash="988432933b9f87130452481d6f2057a4"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="RefreshController.php" hash="8402b4a42693a59586f0ce98b377baa8"/></dir><file name="RefreshController.php" hash="ff14aa3142bf84cb7a55cafb47e82136"/></dir><dir name="etc"><file name="config.xml" hash="1891c6c970727da23fa093748435b222"/><file name="system.xml" hash="97e0181bb11001fd8f01b8f57d014802"/></dir><dir name="sql"><dir name="captcha_setup"><file name="install-1.7.0.0.0.php" hash="db60d60c22cc34d2c19cd507e05d2364"/></dir></dir></dir><dir name="Catalog"><dir name="Block"><file name="Breadcrumbs.php" hash="590216e74f468b996b23103e3cbb5898"/><dir name="Category"><file name="View.php" hash="3f75997e41e18426aa5775d9b5e17cc0"/><dir name="Widget"><file name="Link.php" hash="61588c7b5de8f9e2fe173c0422de1ca5"/></dir></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="dabc76c7b6a5337ffb4081183bba93f9"/><file name="Attribute.php" hash="bdbb158565be14eb690ec3f21280037a"/><file name="Category.php" hash="6b715d3c627de8b8570381c8c310e30b"/><file name="Decimal.php" hash="66f22705d1d63675358b4fe3ab8a72bf"/><file name="Price.php" hash="f9b08d925c9e826e7d5bff851df95789"/></dir><file name="State.php" hash="18195c0156a6594ca83ffb7e9b685b91"/><file name="View.php" hash="6286b8c4c367300904726b9b542f1ea7"/></dir><file name="Navigation.php" hash="9e68d435ff4a0a24b4e22c5a1eea2213"/><dir name="Product"><file name="Abstract.php" hash="bc42721bba24acc1f78b307ddb22c672"/><dir name="Compare"><file name="Abstract.php" hash="9b265819667504006f13fd90fd62f1dd"/><file name="List.php" hash="2766dc228e03abea253655d841a8774c"/><file name="Sidebar.php" hash="31de2e5cababa8ce9fcc98d00c1f935a"/></dir><file name="Gallery.php" hash="85ca013573a07955dd7848e72c46f193"/><dir name="List"><file name="Crosssell.php" hash="8cbaf3f6bf390342bde5408a0ebd0066"/><file name="Promotion.php" hash="ef01df208b62d4879484729229fb1b10"/><file name="Random.php" hash="baa11555bd8975b36de714e13b26dbf9"/><file name="Related.php" hash="48a13b6255686a1c1776867216a54bae"/><file name="Toolbar.php" hash="e4ca2cb14578611e3257c0791f6d58d8"/><file name="Upsell.php" hash="6f18bfff7f19e36571b6812719c28a23"/></dir><file name="List.php" hash="cda8d30d6bb082b9e7a7f8dfe91bb531"/><file name="New.php" hash="b3c2fa1af3a6f785cc7c005873a10e6f"/><dir name="Price"><file name="Template.php" hash="820470d3e9125ee8fa563499ef9b01a5"/></dir><file name="Price.php" hash="0b03f4230e4685a3213cfe9a49c02fe7"/><file name="Send.php" hash="dfc2fad446a329b25bad6750d4cb618b"/><dir name="View"><file name="Abstract.php" hash="44f15a9450ca5a16b6edc17b5ee36752"/><file name="Additional.php" hash="7918b4ac8dff3c465e3067d94aaab219"/><file name="Attributes.php" hash="c7f5dee9dd8102402470a087506a7852"/><file name="Description.php" hash="a55d0c62bc110c03436d0c02cfe1db7c"/><file name="Media.php" hash="1aadfa2c44743b00dd833af77e7a6b23"/><dir name="Options"><file name="Abstract.php" hash="623a56fdffa18ebbcf72680b904580e1"/><dir name="Type"><file name="Date.php" hash="72f30b8bc4421c516d4469a26e43b245"/><file name="Default.php" hash="342b6fa6a59fc0be30b4a6d6550fae67"/><file name="File.php" hash="181cd40d9ed923d30daebb5f065ab946"/><file name="Select.php" hash="b9a54f7ad04fd173e56c41498325db76"/><file name="Text.php" hash="adafa4d6f6768a19b4cfeea45a16db46"/></dir></dir><file name="Options.php" hash="d0cd98ca39a9b8d96fd4912df65faaf0"/><file name="Price.php" hash="6061772097dcba48f6328c05802e3de1"/><file name="Tabs.php" hash="d8c2f0c2b2ad72d85cde348fb00b056a"/><dir name="Type"><file name="Configurable.php" hash="752de8b6cf521d8ad2e60145a4aed804"/><file name="Grouped.php" hash="2161a67c91946fbdcb76074b69b68c06"/><file name="Simple.php" hash="ca2698220266f726d18c27715c548e1a"/><file name="Virtual.php" hash="fc158a9f43dd999b54e54eeeb238067a"/></dir></dir><file name="View.php" hash="e5a55c0c94feec2ae2b6bd66705a6f2f"/><dir name="Widget"><dir name="Html"><file name="Pager.php" hash="06b6d64612571c9819751488bc8191a7"/></dir><file name="Link.php" hash="487801acc24afa5558ca10107542b64f"/><file name="New.php" hash="f70bec1892f85bb842a5c02f92477a46"/></dir></dir><file name="Product.php" hash="3d318c0eab4d73a3addf4c5d65d15197"/><dir name="Seo"><dir name="Sitemap"><file name="Abstract.php" hash="6f3d87b6d9c893a4026b5d2fadef5f6b"/><file name="Category.php" hash="74df2513c60d70111f62b7a6def6202b"/><file name="Product.php" hash="e2c33ff91f2d8455b281191dbef4eea7"/><dir name="Tree"><file name="Category.php" hash="ecacf6175a990852e86deb58acacf3cd"/><file name="Pager.php" hash="ffca909fd74ad69e960861dc784fd1a3"/></dir></dir></dir><dir name="Widget"><file name="Link.php" hash="07364d660d3a2f4d8aaa1f44ed35989e"/></dir></dir><file name="Exception.php" hash="04da7e91bac0ab04f4df2d686f93f7c7"/><dir name="Helper"><dir name="Category"><file name="Flat.php" hash="f58f696cc8b23ec182a96f3b63a11b15"/><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="4af35a3cf0cafdf549b7f9e24549c1ab"/></dir><file name="Rewrite.php" hash="2ec106e7b6ff3cb7654370063acf353d"/></dir></dir><file name="Category.php" hash="7426190d4dfdcb312ac9bedc26c7bfa9"/><file name="Data.php" hash="5e30bfb43c4d719977b8f5124a9676d9"/><dir name="Flat"><file name="Abstract.php" hash="4c41110b9ba744fc7abf1e819337b8ca"/></dir><file name="Image.php" hash="72e49b7e956f6fff2cc415472613918b"/><file name="Map.php" hash="e6f0006916df636fc0c1198f37548cd4"/><file name="Output.php" hash="a6d3849fbdfc5d8e4cc5ee77172982c2"/><dir name="Product"><file name="Compare.php" hash="198c32edb6b08fccd0215f36ddb1853f"/><dir name="Configuration"><file name="Interface.php" hash="e9e9babb46ad34d0ea592f3b4eb360db"/></dir><file name="Configuration.php" hash="9fcdf7710d12a67093b41f9f283ba156"/><file name="Flat.php" hash="499d27bae6c68752ecc59d0fb354fb87"/><file name="Options.php" hash="c65446496a1ae6d4e10aeb4aefc8614d"/><dir name="Type"><file name="Composite.php" hash="b846e55921bd0c19b67f5a741282a3e9"/></dir><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="e79967d4c8d57ce9db7a19c345ab0889"/></dir><file name="Rewrite.php" hash="bf01011707af68afc5d1ce532887cb6f"/></dir><file name="Url.php" hash="3f4a1f025e392ea0ad71d674952d3a77"/><file name="View.php" hash="16708f9a689eb8e976af1547aa00b759"/></dir><file name="Product.php" hash="badab711a9bfa604387cccdff618cea9"/></dir><dir name="Model"><file name="Abstract.php" hash="2345f84b02691e85b8bf364a7b4f1749"/><dir name="Api"><file name="Resource.php" hash="51bb7b4e903be5a26904287497b57219"/></dir><dir name="Api2"><dir name="Product"><dir name="Category"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="e1989831b0f9c2aee6bbaaf390bd566a"/></dir><dir name="Customer"><file name="V1.php" hash="525d59ad555d04037cdfed349de092db"/></dir><dir name="Guest"><file name="V1.php" hash="0f89b3853bfafe8fb0af0abaf2fe0d50"/></dir></dir><file name="Rest.php" hash="8d07ba3a97be9eb5c989597c34886fab"/></dir><file name="Category.php" hash="d66345adb0f2dcb06ff614a6ea7d31d7"/><dir name="Image"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="f4074ec4f4f678422090fe98886cebff"/></dir><dir name="Customer"><file name="V1.php" hash="0cf1f011a411506c0a3f10a724c52bbe"/></dir><dir name="Guest"><file name="V1.php" hash="8e6cc4dea1ae52cc4bf3c4b76aaaacaf"/></dir></dir><file name="Rest.php" hash="b44f8e8a598ddfb1c288933baca88c57"/><dir name="Validator"><file name="Image.php" hash="14704b70f690e3f3e37bb8089bfb4340"/></dir></dir><file name="Image.php" hash="e69ca5753a526c2320f2ebe1e27de3d8"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b254c436290949f9cb6229ed7ba49d44"/></dir><dir name="Customer"><file name="V1.php" hash="b429a462b5b4efc529a361995c2c524b"/></dir><dir name="Guest"><file name="V1.php" hash="af810ae55a4e8ec4ad76d2607fe65c2c"/></dir></dir><file name="Rest.php" hash="33c6c19b047dc6c38e51476aff85ab27"/><dir name="Validator"><file name="Product.php" hash="4004be47fb3239f6b45878ded0e4254e"/></dir><dir name="Website"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="02104b958247aa27b84243a960125528"/></dir></dir><file name="Rest.php" hash="610a20a16d3ba4dedaf4a2a15ef39238"/><dir name="Validator"><dir name="Admin"><file name="Website.php" hash="aadb6e65ef76be7ef890ae50c5280ee6"/></dir></dir></dir><file name="Website.php" hash="97e324a48c4d1bf3e374e8b04a602f48"/></dir><file name="Product.php" hash="305e5c307ab3f48b82ce790bb5e4b9b5"/></dir><dir name="Attribute"><dir name="Backend"><file name="Customlayoutupdate.php" hash="541c3c79d81386980ebd642601ab7b84"/><dir name="Urlkey"><file name="Abstract.php" hash="0d86dd563a8c204df0edc9b8fad343cd"/></dir></dir></dir><dir name="Category"><dir name="Api"><file name="V2.php" hash="63f191bb48a5e99e79b0b30c1511daa7"/></dir><file name="Api.php" hash="9b6040e6a12c94af386e480c73432391"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="a3bc8d3ef00cc13d14dc0165476d3963"/></dir><file name="Api.php" hash="74f629bde799a81b7f61ada6ba90c580"/><dir name="Backend"><file name="Image.php" hash="e396df41c8072dbf5ddcdec196c69766"/><file name="Sortby.php" hash="0eaa75ee2664ea5fa47c4d5639d17639"/><file name="Urlkey.php" hash="4cfb2caabdda0b658685f78c9bfb7a7c"/></dir><dir name="Source"><file name="Layout.php" hash="f2817d898f81c8764b201d15f55a5d08"/><file name="Mode.php" hash="db302910771be354f33b22a43dd68653"/><file name="Page.php" hash="e1c83f5740bb711f25ace4901cc4552b"/><file name="Sortby.php" hash="2c37a216e23e9bfcb9b6eb05c28fbd65"/></dir></dir><dir name="Indexer"><file name="Flat.php" hash="25158a81a7710c9c83ede44c7292203e"/><file name="Product.php" hash="ced096c68bae3e63253a715afe78d4a5"/></dir><file name="Url.php" hash="7988d2a07325bc437d73a5b0e8d415b1"/></dir><file name="Category.php" hash="5d4174bded4b244c7e560b5303bb58aa"/><file name="Config.php" hash="baf2acb1d65defa52a9ab7d555f96a70"/><dir name="Convert"><dir name="Adapter"><file name="Catalog.php" hash="efd75b28a43c2e97e08185a96010d168"/><file name="Product.php" hash="7aea3054c2b4e0382bace2be51a9ee1e"/></dir><dir name="Parser"><file name="Product.php" hash="4e50ad037cef637e051905e57ed5a5e0"/></dir></dir><file name="Convert.php" hash="007508ba2a91f9427a351ed96962cf2b"/><file name="Design.php" hash="84093efca7a864fcb5c7e951119ab3c1"/><dir name="Entity"><file name="Attribute.php" hash="49fe50221e17095a4e8e99e5b43c5844"/><dir name="Product"><dir name="Attribute"><dir name="Design"><dir name="Options"><file name="Container.php" hash="d9203532ce93934a4546ae0ddbb0c0e7"/></dir></dir><dir name="Frontend"><file name="Image.php" hash="d4b89768f15c3a63ae8aba2dc56534aa"/></dir></dir></dir></dir><file name="Factory.php" hash="a772398995a8757db6333617e6c00622"/><file name="Index.php" hash="c49ef3cab4e96a2e589ae8efb1ca0a13"/><dir name="Indexer"><file name="Url.php" hash="c400b631dd758db73c6bc4e88eb3a1c3"/></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="1d77f2926eb4ea0cb27954100e6d012c"/><file name="Attribute.php" hash="f6c8fe55ac633d56bd5887f3bcc3c2c7"/><file name="Category.php" hash="83564f60e208ae3885ecf56175a2f1f7"/><file name="Decimal.php" hash="b2b807a3a1fb33427b659e9e52eed874"/><file name="Item.php" hash="0db39ffd0e838fcb13a48b589afef52a"/><dir name="Price"><file name="Algorithm.php" hash="f5d3061b5386dbf0f7b398ed7aa79eab"/></dir><file name="Price.php" hash="6f61a38839b9960904e025c52101f951"/></dir><file name="State.php" hash="7bda7dc7b2e92aa2f76333dde24b8039"/></dir><file name="Layer.php" hash="e7bea7e0d3bb198afdb5a72c925d0599"/><file name="Observer.php" hash="c44f7f47b66b7f0fd4b0ad572e6885c8"/><dir name="Product"><file name="Action.php" hash="675113278d7f27e8dd3d9ac8ab174f54"/><dir name="Api"><file name="V2.php" hash="731b26fff3eadd449ca204753f551298"/></dir><file name="Api.php" hash="3020236d3b481fba930e6c2f9c0b9e64"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="c669ea14e7b93afbed603ea41df7dfc3"/></dir><file name="Api.php" hash="b4cc6f2f8d7fe62659d0022c7ea858c8"/><dir name="Backend"><file name="Boolean.php" hash="8eae8e0ff5e1a44e6c3f8c6703c24346"/><dir name="Groupprice"><file name="Abstract.php" hash="ef4ddcbf8649358e899e96522c0723e9"/></dir><file name="Groupprice.php" hash="70088f56d4c6ce6486f0603b15ada2b1"/><file name="Media.php" hash="80e00e4a9f54703b9fe3d45c43e3de4b"/><file name="Msrp.php" hash="61917f055ac731b6dcb2381c7f04fa1c"/><file name="Price.php" hash="e2a467dfed03e5876c8ae02d69c09cfe"/><file name="Recurring.php" hash="bd225b94dc2d023a2973136f10eb18c9"/><file name="Sku.php" hash="55020f0d205b9698463b2e2d96601231"/><dir name="Startdate"><file name="Specialprice.php" hash="7b1f92724cccd69d6141b0f9f49133ce"/></dir><file name="Startdate.php" hash="20a784aba7af237b231e316c6aa471b6"/><file name="Tierprice.php" hash="33d20556361d976a7aa21e66cdb1ca83"/><file name="Urlkey.php" hash="8761e894ae9c9a0f72b7dc1ef4a5dc77"/></dir><dir name="Frontend"><file name="Image.php" hash="b00cc070d4977adfabe5855c88974bbf"/></dir><file name="Group.php" hash="b39ec9a3b0ae9243cb9f2f5372650338"/><dir name="Media"><dir name="Api"><file name="V2.php" hash="0ab2f8aa622b6a7fe5657a3481bace65"/></dir><file name="Api.php" hash="079f9aed1dd95d435e3e079092a8ae6c"/></dir><dir name="Set"><dir name="Api"><file name="V2.php" hash="a85564df53ea462848a0760b2480dfcf"/></dir><file name="Api.php" hash="eb800e3cf30deed8f84572fa0fbe0a22"/></dir><dir name="Source"><file name="Boolean.php" hash="2fede30869b6ee2c2dc93183ed214b5e"/><file name="Countryofmanufacture.php" hash="7adf3d15a94f16cfa3c0e9631c59177c"/><file name="Inputtype.php" hash="02ed0c9e9a2e4c3ab6fbb3fcd516e00a"/><file name="Layout.php" hash="7fadadf1ee05cfb60ec8b60c27dcf5af"/><dir name="Msrp"><dir name="Type"><file name="Enabled.php" hash="7f009ec958571256a50f4a1a615bff39"/><file name="Price.php" hash="f33bf698fd6809bed6633c6762bf24a4"/></dir><file name="Type.php" hash="73c500476a2edfd62e5e0b62c67d837d"/></dir></dir><dir name="Tierprice"><dir name="Api"><file name="V2.php" hash="ebde2c91db0bff22e0554a557665aec0"/></dir><file name="Api.php" hash="942bfb8de26bb21d4542fa7f3e1e97f0"/></dir></dir><dir name="Compare"><file name="Item.php" hash="e36b94952546032f75f7e5fa0c0a39e7"/><file name="List.php" hash="6d4ec5118d096ca53390075f6c003ca2"/></dir><dir name="Condition"><file name="Interface.php" hash="a4d09256c768573dd4a762060da522c5"/></dir><file name="Condition.php" hash="aa05d8e20c980cfdd9e98159c2a08820"/><dir name="Configuration"><dir name="Item"><file name="Interface.php" hash="1bd8259940557901a365629de4408fd0"/><dir name="Option"><file name="Interface.php" hash="61a1310efb5baf0d3c6fb17cf1067b0a"/></dir><file name="Option.php" hash="9086a6f44c3b444091fcd4ac8153530a"/></dir></dir><dir name="Flat"><file name="Flag.php" hash="f8c7f7bb6bc3e075365ba04a60223912"/><file name="Indexer.php" hash="2d284a31fcbb7c748f354f34c64d6b01"/><file name="Observer.php" hash="50e7962ef23ddc9b936767b2d731512f"/></dir><file name="Image.php" hash="5fca6359bd0c0238d064747cfec9b891"/><dir name="Indexer"><file name="Eav.php" hash="f7e86d21d19071a4a9796d935237a2d9"/><file name="Flat.php" hash="3ce0a4180c6a9e6d2aa5487bfc4667dc"/><file name="Price.php" hash="90e31c7485372c9a94effec58d43e5e4"/></dir><dir name="Link"><dir name="Api"><file name="V2.php" hash="6f3b84df494b92917837c5e4b37bfe93"/></dir><file name="Api.php" hash="5dce35b222db08248027180214b269d5"/></dir><file name="Link.php" hash="0c43a226d127fe71dca227d7b0b8ebda"/><dir name="Media"><file name="Config.php" hash="c9fd26808c7160a2d76c62f8c6b6a2e6"/></dir><dir name="Option"><dir name="Api"><file name="V2.php" hash="604075ef9372bdd4ed3cb4b70f433643"/></dir><file name="Api.php" hash="5a6aec5ce2c122b2d7707ad8a589c43b"/><file name="Observer.php" hash="381758dbc271ffd9988d94cd46db5117"/><dir name="Type"><file name="Date.php" hash="7aac99e6bce556e215811d2f9e64520b"/><file name="Default.php" hash="5832a7342c982b5187c1f77061974c41"/><file name="File.php" hash="dca8b4a36c5bdc59d7652804cfc414b7"/><file name="Select.php" hash="e02502d8cb7811d864cb54ee0ea4fb93"/><file name="Text.php" hash="daf0dba82160df3babf1d6636731a17b"/></dir><dir name="Value"><dir name="Api"><file name="V2.php" hash="e9e1a972ba0b3723b1fe9794ebdc19b4"/></dir><file name="Api.php" hash="ca3a3a550eec0fa016b995076ce42f44"/></dir><file name="Value.php" hash="7aa7375c8ba4da7cd4206f11a62fbe98"/></dir><file name="Option.php" hash="7cfe7ae5edd4349df5de18b636627f7e"/><file name="Status.php" hash="3ca09cf55690eba162ef77001a608da8"/><dir name="Type"><file name="Abstract.php" hash="10675bcafe3aa0097fe0531b66fd1a14"/><dir name="Api"><file name="V2.php" hash="7197a8182a27cb5785ce427704ce77a2"/></dir><file name="Api.php" hash="0320407996c7e844c8b1fb8cb103c39e"/><dir name="Configurable"><file name="Attribute.php" hash="195158a147ba75320c5301a87997fea3"/><file name="Price.php" hash="7b7102d9c295727e03b538c2400efd0b"/></dir><file name="Configurable.php" hash="f430f6e3051f18c4ba91f42d957e1b72"/><dir name="Grouped"><file name="Price.php" hash="390c4877c1b9970d194aa93a36a24cd0"/></dir><file name="Grouped.php" hash="bcf02adc47fb9bd03b41e5cac284a70d"/><file name="Price.php" hash="4c76aecb7c9ef09021349df77c6e8ac7"/><file name="Simple.php" hash="31f1ef1eaf57781caec32f1ca6db981d"/><file name="Virtual.php" hash="0ee2bf98a71546f4406075e48537bd1c"/></dir><file name="Type.php" hash="7ca80e4f844aef2ac7c1f56184d1ef9d"/><file name="Url.php" hash="c5ca3bd92594126b49a0bc1f23086c66"/><file name="Visibility.php" hash="362ebd79283a5129ac1a5dc48f388eec"/><file name="Website.php" hash="3d9bd2e7f1284232be7dbc1563491297"/></dir><file name="Product.php" hash="4a738760925bf5d972a80ff3b3a1a09f"/><dir name="Resource"><file name="Abstract.php" hash="7ea659eb8dee5ed58286feeaec9ed86c"/><file name="Attribute.php" hash="183a36be8ea7e397c5752e0ae9f636aa"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="8fc1387bc51a5ac71cb895c94ddbfa40"/><dir name="Frontend"><file name="Image.php" hash="5f2b8ad6091192458cb7aec29a1fa2ad"/></dir><dir name="Source"><file name="Layout.php" hash="d9982fea625926cac10713b4195ca630"/><file name="Mode.php" hash="69ed5cd1cb1d662015afb0bfc4b382ea"/><file name="Page.php" hash="8402f269ed5f98ac0c65f68fd178bdd5"/></dir></dir><file name="Collection.php" hash="4cbd5d41cbf225c524fad2f705a196f6"/><dir name="Flat"><file name="Collection.php" hash="cdd9e809c1f2e492498438ab9b7eaaea"/></dir><file name="Flat.php" hash="6c02596b1bc1266bbb9a01123ce0f583"/><dir name="Indexer"><file name="Product.php" hash="486cd30c424a6b79b5d8c276611a9d03"/></dir><file name="Tree.php" hash="9ae1c4b06d9e1f549e040210d2364bbc"/></dir><file name="Category.php" hash="e1f882bbaf02adcda1174ca218aacb5a"/><dir name="Collection"><file name="Abstract.php" hash="042e8ec4efe569b37bda527eed044111"/></dir><file name="Config.php" hash="b58b4fe5c46d6fb280333b4c04932999"/><dir name="Eav"><file name="Attribute.php" hash="43b82ea437cbba57a79526977d7948e2"/><dir name="Mysql4"><file name="Abstract.php" hash="6dbaf295417d821002580ecbe014a2d0"/><file name="Attribute.php" hash="80a6c4be37bca60436ce8bf69e11a80d"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="d97dcec767f25085bcc7d7cd02773248"/><dir name="Frontend"><file name="Image.php" hash="a82da415e138e69023518f82fbcaa09e"/></dir><dir name="Source"><file name="Layout.php" hash="1de675e90c78952c9da5b3c1d68955ba"/><file name="Mode.php" hash="c33435df03504b81c4b6930ae44f6c49"/><file name="Page.php" hash="62df7b0014acad2d4561feb4dde22ab5"/></dir></dir><file name="Collection.php" hash="ff8d14ca1b9182419f7cb6f61be1bb47"/><dir name="Flat"><file name="Collection.php" hash="ebf3b440ca661587c3137b89686f2e59"/></dir><file name="Flat.php" hash="c01aaee785dc1f52354606e7cfb11430"/><dir name="Indexer"><file name="Product.php" hash="0a633b5b317b94a3ffa14346d4b03066"/></dir><file name="Tree.php" hash="2c40b5030d0e339b4188532aa012f279"/></dir><file name="Category.php" hash="a6f76d99b75814efa4cca73802711e21"/><dir name="Collection"><file name="Abstract.php" hash="8c6d49d73153b0ed6291b59001300799"/></dir><file name="Config.php" hash="2e877a164dd9fa4f6216a02960598405"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="fe79b932eea08b96187d3831f095e3fe"/><file name="Decimal.php" hash="2cf7c6de7241fce80782f03000264da2"/><file name="Price.php" hash="ddd783856c04d872ae12c49bcfc02b52"/></dir></dir><dir name="Product"><file name="Action.php" hash="0a075d325f6297bcea05a97e713bd9ae"/><dir name="Attribute"><dir name="Backend"><file name="Image.php" hash="bbb5ec689a17e7e947dd267ecf00bd72"/><file name="Media.php" hash="ec532b7483af5e188385ef189778e4c5"/><file name="Tierprice.php" hash="6abbfa8cd31b25feef7be8f51c260d3f"/><file name="Urlkey.php" hash="951cd7ddfd7a3ab0fe79df964ca013d6"/></dir><file name="Collection.php" hash="d76e8af736d7c2e68aa939e3eedb545e"/><dir name="Frontend"><file name="Image.php" hash="835d2b9c01c79f712c076d91a5cae1d7"/><file name="Tierprice.php" hash="ea064cd573dcc77b5c5fa7dc32401332"/></dir></dir><file name="Collection.php" hash="cc2dff7de6f39f0817c34dfe24184aa6"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="150d73ba3ffe8b7d91e86af07e4ed940"/></dir><file name="Item.php" hash="1155eb7be44a76cef0545a8d56b2a122"/></dir><dir name="Flat"><file name="Indexer.php" hash="8752aaf92e5f6869fdae472f1191dc6a"/></dir><file name="Flat.php" hash="999330abcc7bd54e1c66f3f2a1b1fe94"/><dir name="Indexer"><file name="Abstract.php" hash="8f1d26e3b703c74817b78af1178757bc"/><dir name="Eav"><file name="Abstract.php" hash="a1ef399d83f357c33860493f55b65323"/><file name="Decimal.php" hash="028f0990c60143e7ef5806138ed99841"/><file name="Source.php" hash="e26c43d2e33a692ed17e41bbf5bacbc8"/></dir><file name="Eav.php" hash="3d9320a2783580806e248084cf670871"/><dir name="Price"><file name="Configurable.php" hash="bfd3de06ddd5ca6291e9a2d669b2ae86"/><file name="Default.php" hash="0128508a0f5b96d318d2cdad49960d68"/><file name="Grouped.php" hash="8fe9576c2c9998a89b30c58abd5d496c"/><file name="Interface.php" hash="e7cf51a99eeb0bac0be794da85eac7e2"/></dir><file name="Price.php" hash="fcd4e2f65768cd2b15844b780623f8b1"/></dir><dir name="Link"><file name="Collection.php" hash="b0fbcc299427118c3c628945a53f39ff"/><dir name="Product"><file name="Collection.php" hash="72eed145c75c7897298d8051ca0993e6"/></dir></dir><file name="Link.php" hash="0f220c33c60ba6dbc16c657e6665387f"/><dir name="Option"><file name="Collection.php" hash="dadcb2cfe063f9b309826ae43e84d6a8"/><dir name="Value"><file name="Collection.php" hash="b6d3e3a66c39094ff6c5e813ce84440b"/></dir><file name="Value.php" hash="25fbba2f234ad0709925d161dd739cac"/></dir><file name="Option.php" hash="d63c5a06cdc8ec9132de205e1551087e"/><file name="Relation.php" hash="94bd86556cf0b14b55592fb5246f06d6"/><file name="Status.php" hash="f0aeb3eb4d171a557ecde4c6b2b807a8"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="b4bb28f1a8dd798868fbd14545513665"/></dir><file name="Attribute.php" hash="0136019a2c9706ce33c8f10e589f4778"/><dir name="Product"><file name="Collection.php" hash="14d529913102b06cd61b265abb36e632"/></dir></dir><file name="Configurable.php" hash="fe8f1fd9af3bf9b7c2cff1de7d4b8d61"/></dir><file name="Website.php" hash="8065a00dd7b206532f1f55ad73f480ab"/></dir><file name="Product.php" hash="d17fd9daa9dc5f8fb66d28837abb1e66"/><dir name="Sendfriend"><file name="Collection.php" hash="011fbcea919c1371cbbcfea3dd622b1e"/></dir><file name="Sendfriend.php" hash="88e67de998842fceae50ce335a45415b"/><file name="Setup.php" hash="317d981792ba58f12869df409590bbb0"/><file name="Url.php" hash="7af8c55839368617e1ba9d80d78d42fe"/></dir></dir><dir name="Helper"><file name="Mysql4.php" hash="8e28559f16228e92e53634c952ef4451"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="453ce6fb776dd0dedde25d44769207fa"/><file name="Decimal.php" hash="f18aa6bc50575429c632b16ed738e69a"/><file name="Price.php" hash="4d9a5b89399d99f4d4e38d5e4fce24ff"/></dir></dir><dir name="Product"><file name="Action.php" hash="cdbd1919c009bd792310724a90be0016"/><dir name="Attribute"><dir name="Backend"><dir name="Groupprice"><file name="Abstract.php" hash="b19b6387df26fdfb58eba0f4b07654da"/></dir><file name="Groupprice.php" hash="394006442cc820a7bb831989d9173187"/><file name="Image.php" hash="91a30438570e39fab482592fb36bb537"/><file name="Media.php" hash="dd82e66754f394833bafd227fc0f394a"/><file name="Tierprice.php" hash="512ebed3678bbf74b534c292e99c05f3"/><file name="Urlkey.php" hash="58892183ca635fdd8b1cadcde46289f6"/></dir><file name="Collection.php" hash="70a8a9785f0dd9cdbacee61ad7004ba2"/><dir name="Frontend"><file name="Image.php" hash="7e924471e2a351cc4b4df3aeb2a18195"/><file name="Tierprice.php" hash="f3b9435c5627cfc65bc0a83fae373b8a"/></dir></dir><file name="Collection.php" hash="ed171fb9d9aa6de9a1faf2e984144038"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="d02269623058e6e34a977288115bf0fe"/></dir><file name="Item.php" hash="e1b427afd8995ca0880188965718c6a4"/></dir><dir name="Flat"><file name="Indexer.php" hash="7edaf073fc50769482c746d24c2a50e6"/></dir><file name="Flat.php" hash="f04dd1cacb230046428bab410222f0f3"/><dir name="Indexer"><file name="Abstract.php" hash="e9eea687325781a934d1287a66ee330c"/><dir name="Eav"><file name="Abstract.php" hash="882264909bed53b2e593341a9cb0cc3b"/><file name="Decimal.php" hash="4031af741a91854e0e5bfb74e2e6a213"/><file name="Source.php" hash="e96c80ea16783a607581e81599955631"/></dir><file name="Eav.php" hash="eedbc4c1c059b9284052ddae4813153d"/><dir name="Price"><file name="Configurable.php" hash="ad6b098445b34032e644506d9f8ea35d"/><file name="Default.php" hash="c70b26c3d49f515222ba92c09f75e64e"/><file name="Grouped.php" hash="2df45f74e63068082be92422697bb244"/><file name="Interface.php" hash="35f11bc26a0517905a3f331449328620"/></dir><file name="Price.php" hash="bc847da0940008d301c9bf80ffd0dade"/></dir><dir name="Link"><file name="Collection.php" hash="fd4bb69c9415c6cc4bf5a8add6a8f3f2"/><dir name="Product"><file name="Collection.php" hash="af7f2f7ec372c7f8a8ecdfba421ae843"/></dir></dir><file name="Link.php" hash="7f2fd9ef31c7744d7307804190684efc"/><dir name="Option"><file name="Collection.php" hash="046e0f88b4829c13fcc00a4911a6ee2c"/><dir name="Value"><file name="Collection.php" hash="e9b2667031439603c79a4134253aee13"/></dir><file name="Value.php" hash="714feb0f86921138f664f1883ac25095"/></dir><file name="Option.php" hash="c3318f037e2c619f71e809029b0788bc"/><file name="Relation.php" hash="7242bed7fa3472a43018b33ae02cee4c"/><file name="Status.php" hash="13cfd78977d9f60ed0bd0dc1aa8c1b1f"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="629ee3ca7b8890f9a2aad0fb811ebbc9"/></dir><file name="Attribute.php" hash="4f469183b38e27471904028c8d888473"/><dir name="Product"><file name="Collection.php" hash="eae76c911c34170c5432236049986aae"/></dir></dir><file name="Configurable.php" hash="d7a8201338dadbbaa1187c8c2957ef28"/></dir><file name="Website.php" hash="4d47ed9dee6eec8e22a97d9f0ca3fbe7"/></dir><file name="Product.php" hash="c8a186e561bbbd3dfefe1a964b838cbd"/><file name="Setup.php" hash="35d9d6d2bae38fbf892d278d3fa6a290"/><file name="Url.php" hash="b4b5072b8ecd12989a4ea5480935057e"/></dir><file name="Session.php" hash="796adfd2ce9c6d4da6122f3993a0a1e9"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Catalog"><dir name="Category"><file name="Flat.php" hash="b1c4c5c555b1bfdaf77f89e794e9d3eb"/></dir><dir name="Product"><file name="Flat.php" hash="aebfbb384191e2b5fb76f0a20b581916"/></dir><dir name="Url"><dir name="Rewrite"><file name="Suffix.php" hash="0375405401d1a53f79af7f049b99ac1b"/></dir></dir></dir></dir></dir></dir><dir name="Template"><file name="Filter.php" hash="08bc7b98d80ec99d5cfe168fc824f76b"/></dir><file name="Url.php" hash="b74dd9f3320a99751c2b5bf20cae18a4"/></dir><dir name="controllers"><file name="CategoryController.php" hash="693fcd8e901d3714a927fd8c41fe7775"/><file name="IndexController.php" hash="d76865375aa5b20986647bb8e68dc5ee"/><dir name="Product"><file name="CompareController.php" hash="2d53f6cd58015db2152e1e172e805e0f"/></dir><file name="ProductController.php" hash="9150004e27158c8d3218144fd4e445dd"/><dir name="Seo"><file name="SitemapController.php" hash="34daa27420a0b7cf645269d7e06ead26"/></dir></dir><dir name="data"><dir name="catalog_setup"><file name="data-install-1.6.0.0.php" hash="36eca9afc031613eb88fe3947b9ece70"/><file name="data-upgrade-1.6.0.0.12-1.6.0.0.13.php" hash="d91887b8ff57573b10bdad340030011c"/><file name="data-upgrade-1.6.0.0.13-1.6.0.0.14.php" hash="898013c8eb2d2b339f1d09c9cfc1ed0b"/><file name="data-upgrade-1.6.0.0.19.1.3-1.6.0.0.19.1.4.php" hash="2399635f7d4a966d0947fea1de00d345"/><file name="data-upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="c7b02de35018fb4abc89204f63cff4a9"/><file name="data-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="538eefa441e5f2cd0ed06d2beb279374"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d2ceea2db772d3b9527d20c058b6ff39"/><file name="api.xml" hash="d1abf4dc0f124f81637b97daa04b52f1"/><file name="api2.xml" hash="b7448be0327e5245d09feacb5e631cab"/><file name="config.xml" hash="2913db7980a3017624be55116fd4f957"/><file name="convert.xml" hash="4842c0f29827c57894a1bb500b87201c"/><file name="system.xml" hash="e359322deab9f9e2e0861195406971b1"/><file name="widget.xml" hash="aac890e7becb93747ef9096b707ad2ec"/><file name="wsdl.xml" hash="fa198392d766134085b3c2ec1be4a0e9"/><file name="wsi.xml" hash="0acfd65c613ccb83404317500078a85d"/></dir><dir name="sql"><dir name="catalog_setup"><file name="install-1.6.0.0.php" hash="a190f79d12e29ff1686730e3face0dee"/><file name="mysql4-data-upgrade-0.7.57-0.7.58.php" hash="bb12315b2c446d2cf4d530ceb767ca7a"/><file name="mysql4-data-upgrade-0.7.63-0.7.64.php" hash="bdcef5beda87f6d08bf8643f859424d7"/><file name="mysql4-data-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="6e47de7f26c0fce3f3faab1bc76d157c"/><file name="mysql4-data-upgrade-1.4.0.0.42-1.4.0.0.43.php" hash="7f2175b10bb17a0b9d9817b8d722b0d4"/><file name="mysql4-install-0.7.0.php" hash="8be9ff18ceb0b2ad9c19766a5001d4a7"/><file name="mysql4-install-1.4.0.0.0.php" hash="222a57974322b76c0fc1c045366dae49"/><file name="mysql4-upgrade-0.6.40-0.7.0.php" hash="db75f3f66d96bb2b84ddf87de759194c"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="51b41496d8e20b00bef8ea617094b34f"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="6464cd153e066ac7cba358b2c120f639"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="ef6a80e798565834909634178242209a"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="33af8d6a26d9de484b07883f47e69070"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="a6c73dfa7a57efd9324d8bad15df0b37"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="fbd0b2ab20701e06e39d6b7940f5777e"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="9a0c9de855c045487101b748f5acece3"/><file name="mysql4-upgrade-0.7.16-0.7.17.php" hash="33af8d6a26d9de484b07883f47e69070"/><file name="mysql4-upgrade-0.7.17-0.7.18.php" hash="9ff2f5ce88aae26fc0c46ec05e36cc50"/><file name="mysql4-upgrade-0.7.18-0.7.19.php" hash="a00b854c5b47a7ad83a1c331afaf9c88"/><file name="mysql4-upgrade-0.7.19-0.7.20.php" hash="ef6a80e798565834909634178242209a"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="a8dbd6478f9246f3e7ee00838b301a2e"/><file name="mysql4-upgrade-0.7.20-0.7.21.php" hash="b10d9464e68fc826372ba3f5714f6a82"/><file name="mysql4-upgrade-0.7.21-0.7.22.php" hash="d722a5d39b0dddcd0b4b5fa06061245d"/><file name="mysql4-upgrade-0.7.22-0.7.23.php" hash="c6cbfa76f3f6f0f2410878f2b4f2e037"/><file name="mysql4-upgrade-0.7.23-0.7.24.php" hash="7cec22ec4032f381a95e9add1729a694"/><file name="mysql4-upgrade-0.7.24-0.7.25.php" hash="adec784da2defaeceb062e2bb81dcbed"/><file name="mysql4-upgrade-0.7.25-0.7.26.php" hash="adec784da2defaeceb062e2bb81dcbed"/><file name="mysql4-upgrade-0.7.26-0.7.27.php" hash="93950d1e1860a78fb48c41e1969a88f0"/><file name="mysql4-upgrade-0.7.27-0.7.28.php" hash="a7c3e914e640b23acef0c70b06633a35"/><file name="mysql4-upgrade-0.7.28-0.7.29.php" hash="9d60c478ae8048d42465984b225df9cf"/><file name="mysql4-upgrade-0.7.29-0.7.30.php" hash="f931ebfa51db8813bd6aea8f401e52ec"/><file name="mysql4-upgrade-0.7.30-0.7.31.php" hash="d66b1110ed029c8021bf5d040be71a60"/><file name="mysql4-upgrade-0.7.31-0.7.32.php" hash="389248fb4c203bda94a033c49f368881"/><file name="mysql4-upgrade-0.7.32-0.7.33.php" hash="6303eeddd9c30d72ad2581dc3bb945db"/><file name="mysql4-upgrade-0.7.33-0.7.34.php" hash="20f9be568c3bb6fc9db6d06c72f6e7bb"/><file name="mysql4-upgrade-0.7.34-0.7.35.php" hash="02ec16e1d68ed65b19fe67c38c6d487a"/><file name="mysql4-upgrade-0.7.35-0.7.36.php" hash="96bc2198336659af3f6b71658a4f173f"/><file name="mysql4-upgrade-0.7.36-0.7.37.php" hash="2572037235287a2d92732e5f12886587"/><file name="mysql4-upgrade-0.7.37-0.7.38.php" hash="86a151ffffb45f54d8c6d728fefa4297"/><file name="mysql4-upgrade-0.7.38-0.7.39.php" hash="35f56d6563f5d107cea4a2d75eacf2b0"/><file name="mysql4-upgrade-0.7.39-0.7.40.php" hash="a66a39767c9af2c6e31ceccf13dc0acc"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="4a82ed75cf7596c6e113bc0f2e02a97e"/><file name="mysql4-upgrade-0.7.40-0.7.41.php" hash="e86b4593377d368bf40814039cb7ce8b"/><file name="mysql4-upgrade-0.7.41-0.7.42.php" hash="89c06a329b409df3f892a27ab7d42c68"/><file name="mysql4-upgrade-0.7.43-0.7.44.php" hash="644792ed4cb86dfefe0a0c321865b619"/><file name="mysql4-upgrade-0.7.44-0.7.45.php" hash="4926265ef4265ebd4af5a497151618ca"/><file name="mysql4-upgrade-0.7.45-0.7.46.php" hash="7f1008b84e341f208a9707cabadbd3f8"/><file name="mysql4-upgrade-0.7.46-0.7.47.php" hash="290a751a9670c52cfa7eda5bb974ff74"/><file name="mysql4-upgrade-0.7.47-0.7.48.php" hash="db05924057d74bf31f63c7491d532036"/><file name="mysql4-upgrade-0.7.48-0.7.49.php" hash="646d8540ac7a0c71006089c9e77b225f"/><file name="mysql4-upgrade-0.7.49-0.7.50.php" hash="b1f3c3ede60a67a9bc733a2eef769aac"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="7d0d4f90ecafa65e2f24f471445634ca"/><file name="mysql4-upgrade-0.7.50-0.7.51.php" hash="6d2009a9af51d8049e88f7c2e8763b35"/><file name="mysql4-upgrade-0.7.51-0.7.52.php" hash="18793e97fa706b36c9bdf5caf7b73fff"/><file name="mysql4-upgrade-0.7.52-0.7.53.php" hash="de40756ac38a73da17213012d5ee40b9"/><file name="mysql4-upgrade-0.7.53-0.7.54.php" hash="a5848fee13a8beadda0f79f65daddd58"/><file name="mysql4-upgrade-0.7.54-0.7.55.php" hash="39a34bdf3969b36d01447755dc50701f"/><file name="mysql4-upgrade-0.7.55-0.7.56.php" hash="2212d3414461dace27515cf6022efe88"/><file name="mysql4-upgrade-0.7.56-0.7.57.php" hash="1ee964106b645ad546d0a3a8ff2cbb1c"/><file name="mysql4-upgrade-0.7.57-0.7.58.php" hash="6dc2b6b22f5e7cb1c573e8a766489c08"/><file name="mysql4-upgrade-0.7.58-0.7.59.php" hash="4485520a12841ffdd014c8b47d4ec498"/><file name="mysql4-upgrade-0.7.59-0.7.60.php" hash="9643db652432d955026488edc41b22d5"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ef6a80e798565834909634178242209a"/><file name="mysql4-upgrade-0.7.60-0.7.61.php" hash="05962b94381896b8c0a6079f928d1b2a"/><file name="mysql4-upgrade-0.7.61-0.7.62.php" hash="8a2adad7acfae0b20aaafeda3073a391"/><file name="mysql4-upgrade-0.7.62-0.7.63.php" hash="41f05409f1f2ababad405f40e2e7c4e1"/><file name="mysql4-upgrade-0.7.63-0.7.64.php" hash="dda54148cc9ee4c350471ef1df7d87f9"/><file name="mysql4-upgrade-0.7.64-0.7.65.php" hash="be1b7efe441cbc07dc7d7d8043301327"/><file name="mysql4-upgrade-0.7.65-0.7.66.php" hash="6750dc0f92410c6c923a6a13db0b445b"/><file name="mysql4-upgrade-0.7.66-0.7.67.php" hash="a451bf56537adb126d88218764e0f3ab"/><file name="mysql4-upgrade-0.7.67-0.7.68.php" hash="9719a188b2d99291ddd65342efab5064"/><file name="mysql4-upgrade-0.7.68-0.7.69.php" hash="cf1c20028c0d3e4bf25d3ea3830a8f8d"/><file name="mysql4-upgrade-0.7.69-0.7.70.php" hash="9d7ae242dbb4a901710858b813e96df5"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="331de730c2cd4a0bd50094b988315b59"/><file name="mysql4-upgrade-0.7.70-0.7.71.php" hash="6a2c6ac88ad3a6d2e7cd03d72d967a70"/><file name="mysql4-upgrade-0.7.71-0.7.72.php" hash="4507e8188333abd2f30b935b397b4fee"/><file name="mysql4-upgrade-0.7.72-0.7.73.php" hash="b6b15121527d6899094febf6f24ccb24"/><file name="mysql4-upgrade-0.7.73-1.4.0.0.0.php" hash="cd0b8ae9cb2bea9020e1240a247a2f16"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="4dc6a81363eff41c5a51fd93315d92f8"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="1ee5af2922b261f064ae8cf7c2953c25"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="bb8826b930d8b0b6ef29e4b6d13766b5"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="97788faffbe83f5cc9360968af8f725f"/><file name="mysql4-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="b8ca25059c1f20ba9ccedfd30f3b760f"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="bbfa429af5c09cd523067ecfc8f2f20d"/><file name="mysql4-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="9d2559a583fcb01389d1a8e09f8e7a2c"/><file name="mysql4-upgrade-1.4.0.0.14-1.4.0.0.15.php" hash="3aca25291fe1601c2d018315de29b5de"/><file name="mysql4-upgrade-1.4.0.0.15-1.4.0.0.16.php" hash="802073028cea653a86e51180813a1342"/><file name="mysql4-upgrade-1.4.0.0.16-1.4.0.0.17.php" hash="3938106dedc73cb0f2fbf8bd36d63a1e"/><file name="mysql4-upgrade-1.4.0.0.17-1.4.0.0.18.php" hash="c1d094745de4e4bbb8bd6e2864ef3f4a"/><file name="mysql4-upgrade-1.4.0.0.18-1.4.0.0.19.php" hash="a53673cace3b52e4f60c63937b5ef067"/><file name="mysql4-upgrade-1.4.0.0.19-1.4.0.0.20.php" hash="3285dfdfdd4c830b24b1c7ec08ef8105"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="0394ed1855209a683ccec3c957bf3d23"/><file name="mysql4-upgrade-1.4.0.0.20-1.4.0.0.21.php" hash="902adeaeb210e488052420e67c91bc51"/><file name="mysql4-upgrade-1.4.0.0.21-1.4.0.0.22.php" hash="1b4d3e935d048e422aad01463663c7ca"/><file name="mysql4-upgrade-1.4.0.0.22-1.4.0.0.23.php" hash="708d0bcd9e20fc17181e561757c9908f"/><file name="mysql4-upgrade-1.4.0.0.23-1.4.0.0.24.php" hash="895cd8b838b3b6c583f5b474de056e0f"/><file name="mysql4-upgrade-1.4.0.0.24-1.4.0.0.25.php" hash="62ae33d8d51396307a61c8ebdc5ebc0b"/><file name="mysql4-upgrade-1.4.0.0.25-1.4.0.0.26.php" hash="b1311d1d56cd6c6e91fd4ac4d02183cc"/><file name="mysql4-upgrade-1.4.0.0.26-1.4.0.0.27.php" hash="b98afda728c8c0e55ff54db727d93a7b"/><file name="mysql4-upgrade-1.4.0.0.27-1.4.0.0.28.php" hash="cbb6734b5a0a0412e040738a1830a6e2"/><file name="mysql4-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="e9b84d12682af76c8da61f168b287a9e"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="90c0a516e996334f43b966fdfc391b6d"/><file name="mysql4-upgrade-1.4.0.0.30-1.4.0.0.31.php" hash="1dc783194aaaf510a6e492f21c4b08e0"/><file name="mysql4-upgrade-1.4.0.0.31-1.4.0.0.32.php" hash="7ded6c4f41955f95428bfef6a67bdb7b"/><file name="mysql4-upgrade-1.4.0.0.32-1.4.0.0.33.php" hash="9e948fb477fef70de9d8d23e2fadd688"/><file name="mysql4-upgrade-1.4.0.0.33-1.4.0.0.34.php" hash="3afc288187c2b13ede46da37138fb44e"/><file name="mysql4-upgrade-1.4.0.0.34-1.4.0.0.35.php" hash="6e75475481e1998266764eefc398a700"/><file name="mysql4-upgrade-1.4.0.0.35-1.4.0.0.36.php" hash="14e41a7a2d56141d65e9677bcab028af"/><file name="mysql4-upgrade-1.4.0.0.36-1.4.0.0.37.php" hash="ae470220b3d606daaa024c7fa3249542"/><file name="mysql4-upgrade-1.4.0.0.37-1.4.0.0.38.php" hash="eb86eaabf2b08c7aa65e961dbe2790e9"/><file name="mysql4-upgrade-1.4.0.0.38-1.4.0.0.39.php" hash="4a57886ec974c5359574eb9ea9cf0f7f"/><file name="mysql4-upgrade-1.4.0.0.39-1.4.0.0.40.php" hash="2b00bad5794dfee9b3fde2b5fd3a9a7b"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="e0f7f3b10968e714ba07cc5eb244e31b"/><file name="mysql4-upgrade-1.4.0.0.40-1.4.0.0.41.php" hash="465d551b852f340e11ae8a39f6775867"/><file name="mysql4-upgrade-1.4.0.0.41-1.4.0.0.42.php" hash="ce4534c15528aa85fb4103954c98e772"/><file name="mysql4-upgrade-1.4.0.0.43-1.4.0.0.44.php" hash="410f96787d2818abf6a6d35dacab5d9c"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="c54f8c23a5aecae23c1288fca7f1272c"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="dabe2b468b2c07377f1480c433b22070"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="68f64db5e2c7d1ba0d388fb0295d22a9"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="9406153d60f4773bcfa02410290642e6"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="4fd6db4d56901570f60aad5e0057f58f"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="2acaed6d85236f8636d92fbc782a8568"/><file name="mysql4-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="e0164fd9e411365d3e8ec8509efaff77"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="9af1f0f9e54cba17a7b757157d15bae5"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="0d1012fe93e97b50a1a6bd21b778bf8a"/><file name="upgrade-1.6.0.0.10-1.6.0.0.11.php" hash="239d49a8d996f76ca0d3a7e6bdbbb67a"/><file name="upgrade-1.6.0.0.11-1.6.0.0.12.php" hash="92e6c780f304dcb53707f0ba98ea31b9"/><file name="upgrade-1.6.0.0.14-1.6.0.0.15.php" hash="a8747e2aba3f93bb9e48055305787e91"/><file name="upgrade-1.6.0.0.15-1.6.0.0.18.php" hash="663698651d7ebaf84818a737a5a02e45"/><file name="upgrade-1.6.0.0.18-1.6.0.0.19.php" hash="f007deefaff24fd1b84558612dc968b3"/><file name="upgrade-1.6.0.0.19.1.1-1.6.0.0.19.1.2.php" hash="9a4c424c3efe85959e312326a1ea5e52"/><file name="upgrade-1.6.0.0.19.1.2-1.6.0.0.19.1.3.php" hash="884027a4d86d7c7545b6dec2902ac885"/><file name="upgrade-1.6.0.0.19.1.4-1.6.0.0.19.1.5.php" hash="06dfd828d0fe0bad7e65373acaf45d05"/><file name="upgrade-1.6.0.0.2-1.6.0.0.3.php" hash="0dca9a1b8f61f8ebd13b06903a86a4cb"/><file name="upgrade-1.6.0.0.3-1.6.0.0.4.php" hash="23ced171d63f5999ff810132ed3f8e01"/><file name="upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="5a545b9ece276c05ddc8848fd96da6b8"/><file name="upgrade-1.6.0.0.5-1.6.0.0.6.php" hash="4dc9907a69744f12b82b9e6ca92ab925"/><file name="upgrade-1.6.0.0.6-1.6.0.0.7.php" hash="21e9a165b79d55ce912789eed815bbbc"/><file name="upgrade-1.6.0.0.7-1.6.0.0.8.php" hash="bd62576d368e51028f0e2bea3c66abc1"/><file name="upgrade-1.6.0.0.9-1.6.0.0.10.php" hash="10f1947d29666db0b041fb589cba7fe9"/></dir></dir></dir><dir name="CatalogIndex"><dir name="Model"><file name="Aggregation.php" hash="60cef163c57ca8bb3e8690c589decdac"/><file name="Attribute.php" hash="5e5a4696256395295bea3da45af7bec5"/><dir name="Catalog"><dir name="Index"><file name="Flag.php" hash="5f1b3fa3f5337d5636d0548c466e68c5"/><dir name="Kill"><file name="Flag.php" hash="feab0b25175fffbb8e1f375ecb43a212"/></dir></dir></dir><dir name="Data"><file name="Abstract.php" hash="b84d9b274e78f3d055803754fdf7165f"/><file name="Configurable.php" hash="87a90d82092a6966eb1badf4209ed8fa"/><file name="Grouped.php" hash="e7716f7b63a5f71254d5ec104b32d2df"/><file name="Simple.php" hash="8da32fec7ab07a3b2333fbce56b1ee19"/><file name="Virtual.php" hash="f02494f4ea6a7208e0063fd97756235a"/></dir><dir name="Indexer"><file name="Abstract.php" hash="d245560796bb31db3970fa3af88ae9e1"/><file name="Eav.php" hash="693cdd7750d7169765b5495ffaf2cdcf"/><file name="Interface.php" hash="02ae9ceec98517bde3890974428d9777"/><file name="Minimalprice.php" hash="56cc6237ab833e903e65db499a527286"/><file name="Price.php" hash="431202565ecc986745539f1520e29816"/><file name="Tierprice.php" hash="e356879341dbcb9190740a746af6d349"/></dir><file name="Indexer.php" hash="ac2d81085431f030f18c913dd10f3015"/><dir name="Mysql4"><file name="Abstract.php" hash="be13ddaff4b63761a2a30964c3c8747e"/><file name="Aggregation.php" hash="f2848fd2f96072bc4d3350986c1c69f1"/><file name="Attribute.php" hash="159dd1bc5a6600a91a028c13c30b4de5"/><dir name="Data"><file name="Abstract.php" hash="aa485e30b7cf65df9c3af594e4498520"/><file name="Configurable.php" hash="d668db6613da213a70317f90554be3bc"/><file name="Grouped.php" hash="32a363fb149a97d3b93694cfc072cd74"/></dir><dir name="Indexer"><file name="Abstract.php" hash="a7f127f9c9bf5f27f35848b03144f296"/><file name="Eav.php" hash="aa6a2ccdfcf06a01a2499e934b96dd21"/><file name="Minimalprice.php" hash="2ad6c51a7deba35460c1ad98ccfe6e81"/><file name="Price.php" hash="d0334cc9da42dd22952b50b7937c9e03"/></dir><file name="Indexer.php" hash="38b091e49f8f31002ac86fe7362c472d"/><file name="Price.php" hash="012cfa4f114f30d12f72d410e652c580"/><file name="Retreiver.php" hash="6cd441eaa8b22dd6789784507d7ec4b2"/><file name="Setup.php" hash="738ce6e7e9bc02cceeb66886e4be6bda"/></dir><file name="Observer.php" hash="60279cd43d34326d2599101d264ed031"/><file name="Price.php" hash="cb923e9f2b7b8b4a5fb6219168cbefcd"/><dir name="Resource"><file name="Abstract.php" hash="c88b07fa59b4967ac202882cb21e0caf"/><file name="Aggregation.php" hash="07393e0892971d6bfadc28c17c944ca2"/><file name="Attribute.php" hash="6e1d88bfbe039eb83ca6660f006461f8"/><dir name="Data"><file name="Abstract.php" hash="8c6928cc2ff936d7d6eecb2ed018ece9"/><file name="Configurable.php" hash="31e122679b8194d27734f5affb3b9a86"/><file name="Grouped.php" hash="e0e9861493299113c371cea8fef7f0e3"/></dir><dir name="Indexer"><file name="Abstract.php" hash="43fee0a8a68edaf0157e887d21fc2665"/><file name="Eav.php" hash="e6ebf62f73008831a06263d3a6753e2b"/><file name="Minimalprice.php" hash="2e1f08c7f528dbe77dd1a4a31f52eaf2"/><file name="Price.php" hash="f7280fe3461b01d0108a3d63b39bff0b"/></dir><file name="Indexer.php" hash="00256c752e56bf87b6a83b56600a3a45"/><file name="Price.php" hash="74e315ac0d71bd492235277c79341654"/><file name="Retreiver.php" hash="58acab13daf6f41e5c8abcf3e2d0a290"/><file name="Setup.php" hash="b3f924f4bc7e8fef4ef2c94713c4ebc8"/></dir><file name="Retreiver.php" hash="433563def1a6f4d4aa7c5007ed38e480"/></dir><dir name="etc"><file name="config.xml" hash="6492f81935b38b07b6af0887f6b38ad2"/></dir><dir name="sql"><dir name="catalogindex_setup"><file name="install-1.6.0.0.php" hash="ab6f7cdfc698dce37619e28904de7ad8"/><file name="mysql4-install-0.7.0.php" hash="33ad864096cca00c99c61c276f79fc06"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="bf879c3bd24ed529efb06d42f3bf0a8b"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="89a9c12485cb95211274c9f5e73f284d"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="628e2d554d8e8996daec26a475ed780d"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="62bccc96c55f333f20d9cda686a56f22"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="c0a64dd4b2dd26bfbc0c0f09e684873f"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="c9952e2249429715a4540de0fcbe632a"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="fc3031f6bc5bc39e8ae0e5b702b66696"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="5b7fc4f9ff653a31796f3b2050481421"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="d1f8e10891c260192b45b185b45dbdf6"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="a9051f4d92f570110d7eee10e51fe5fd"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="98fade292a5922bce4d6b02a89e959af"/></dir></dir></dir><dir name="CatalogInventory"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Field"><file name="Customergroup.php" hash="eb25b19672a56569392d363cc0bf5ba6"/><file name="Minsaleqty.php" hash="86d1aeef4b5496c9cc3361a885814648"/></dir></dir></dir><file name="Qtyincrements.php" hash="3460e7944c098ef4e0591e35e249860a"/><dir name="Stockqty"><file name="Abstract.php" hash="f3e8b7313d56131d4e802f7f7680c539"/><file name="Composite.php" hash="27c86344f44608fad8f34c8221fddbfd"/><file name="Default.php" hash="467b69a588547a3edda528f7e5f363f3"/><dir name="Type"><file name="Configurable.php" hash="6e019cb386468de258a468b59daf2c59"/><file name="Grouped.php" hash="0bdf7306fd551d834185092df2390f67"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="9a5249b20c5b5939ec7af6d12f3da353"/><file name="Minsaleqty.php" hash="ca8ab628ae187c3792624d76260fcf11"/></dir><dir name="Model"><dir name="Api2"><dir name="Stock"><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="733bf8ecf0f0dabad1f6e04fe5639acc"/></dir></dir><file name="Rest.php" hash="64eab54f483ea14bde6731b37ccc5f46"/><dir name="Validator"><file name="Item.php" hash="16687ea97638a57afab566d8b22ea20c"/></dir></dir><file name="Item.php" hash="37a672855b98df53abdc3f7d3fbcf0c4"/></dir></dir><dir name="Indexer"><file name="Stock.php" hash="ed1f2b6ff4e625b5bc14c7fd38e8a499"/></dir><dir name="Mysql4"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="9760989916198d4c6eaac9c819537327"/><file name="Default.php" hash="bf2afb2efd4ddbf1a59eb46b8a0dcaf1"/><file name="Grouped.php" hash="ce99e77d35a4e637ce2e2916194d1ed6"/><file name="Interface.php" hash="945832791b8b6012c6d8e6c0003eba13"/></dir><file name="Stock.php" hash="327ca5e2bc714b30faff2dfe870114c9"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="8d81b683d7f95264944e3b55ac3e63cf"/></dir><file name="Item.php" hash="36cee22d8e44fcb58eff1142cd6c1495"/><file name="Status.php" hash="a72e2d4cc36980b308a4a2a3e12f3b89"/></dir><file name="Stock.php" hash="99fe31fc15c924c551ae18ac10351ea7"/></dir><file name="Observer.php" hash="7e453066a4b698be862ae2aae33d0692"/><dir name="Resource"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="1fc87a3e462fd99292344f613fafba1e"/><file name="Default.php" hash="86f2c9a66788934cc2fbdc0aec2eade8"/><file name="Grouped.php" hash="5317ef78e837ae3ef27ae7b97f53e23a"/><file name="Interface.php" hash="b4310cc129e2fce091dbc7b55ff592fb"/></dir><file name="Stock.php" hash="502d083aaafda69ff8e8b2166240d605"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="4002a89669f75a9e2af97f65877d1e93"/></dir><file name="Item.php" hash="5342bf879d1844561673b654bc60d47b"/><file name="Status.php" hash="99ffd5abb90f5bc0c9ba17274057cd4a"/></dir><file name="Stock.php" hash="61e940d822fcd3ac2614519a6b46610f"/></dir><dir name="Source"><file name="Backorders.php" hash="5cb214ebedd83466711c2aac8d23230a"/><file name="Stock.php" hash="2d6c56fa99ac4e003ba75c11e2881ba0"/></dir><dir name="Stock"><dir name="Item"><dir name="Api"><file name="V2.php" hash="fb777d15aa0188d4dcdf31722c082213"/></dir><file name="Api.php" hash="e1bedad2686e6f3c278bfae794f31d7d"/></dir><file name="Item.php" hash="5dadc650947cab651d4ce4dd74178c45"/><file name="Status.php" hash="d7e599e66db5423829fd9469975bbb08"/></dir><file name="Stock.php" hash="d34e70739f763ad81ef0e9d6cb1cce70"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Minqty.php" hash="0386e3b4535529e3016183b68d79c716"/><file name="Minsaleqty.php" hash="da5bdda90b302307bf5a072d33aff415"/><file name="Qtyincrements.php" hash="1afba239b0fd472a5709d3de9fab26d3"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8ff9179a33503a7b6e015204e436c6a5"/><file name="api.xml" hash="3b2f5f13ccaae27a918ae22fd34338be"/><file name="api2.xml" hash="961a039e5a7fa0213b23a75474c3e888"/><file name="config.xml" hash="99a4f8dbdffadd15e38ca419a11a6976"/><file name="system.xml" hash="f1910edb50bc29f6688bd48d92856763"/><file name="wsdl.xml" hash="cfad5924eb32b8fb7ccf79309e5966df"/><file name="wsi.xml" hash="ec7bdd8cb2bc5dd12c0a4d865fe3d313"/></dir><dir name="sql"><dir name="cataloginventory_setup"><file name="install-1.6.0.0.php" hash="1682cb879d72831395fdd09bb839c18c"/><file name="mysql4-install-0.7.0.php" hash="3b32b5fa6ca5d3ff35bf0f587669d178"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="f460cae12925aa422565d5a1ffb7de7e"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="04b3387e3177ecd730f37b379b001314"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="66136f81697a4bc8180fdcf8b8301531"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="3f2ffac57b3fffc239abf5646b720956"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="e243e2a267e195d16e7eee97c27e28ce"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="39515c5aa30e0ee2923f067092dd28df"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="846ac845aa98e32fab4ab0617996a936"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="b78c85fa82e75efe2d717646571f9aa1"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="177fc3349f35be043e0dafde741a30ce"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="e42cac340630969e5db01dbf2fceda4c"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="68d27c90eb86eb74c846717de0a0b8b5"/></dir></dir></dir><dir name="CatalogRule"><dir name="Helper"><file name="Data.php" hash="8ee0218e51aa3bba4f74a5d154c5a168"/></dir><dir name="Model"><dir name="Action"><dir name="Index"><dir name="Refresh"><file name="Row.php" hash="08fde6ef67aab07d8e7c340984f10850"/></dir><file name="Refresh.php" hash="fdd4ec6a117ad399840b354a275d630c"/></dir></dir><file name="Flag.php" hash="dd644948d3edf27cf5952c4c9f9c67f8"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="c65d800f9e364d90abeacea3d2ae2ef1"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="23f16640316455a07d107da86641b70c"/></dir><file name="Price.php" hash="08a36b18518a1658b807f996520cd32b"/></dir></dir><file name="Rule.php" hash="c7af39e797e770d89ebc8c721cf64309"/></dir><file name="Observer.php" hash="0f7bb4eca52fdd345687448a6b0f7a36"/><dir name="Resource"><dir name="Rule"><file name="Collection.php" hash="1788b67c2855b1daf23634e24a553c5d"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="e29172e24a909b94bf2275654869a1d8"/></dir><file name="Price.php" hash="28575dcb17a466199977f3bf2ed95ce2"/></dir></dir><file name="Rule.php" hash="2fe18c099ca432de0718440f3ba26df5"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="aa55c515957f45d5d40257d32a0ca5e3"/><file name="Product.php" hash="9571c2f2ae18cfb58e9743eb6df8145d"/></dir><dir name="Condition"><file name="Combine.php" hash="9ea0fa6c3959e4a51ba5b8496d1f2f5a"/><file name="Product.php" hash="5fc9b8c1368db71192f3b7f075d3e663"/></dir><dir name="Product"><file name="Price.php" hash="21131d21041d06e55108cc6f607379c1"/></dir></dir><file name="Rule.php" hash="9c11de9233144692198083c9c5928f8f"/></dir><dir name="etc"><file name="adminhtml.xml" hash="95d1d7d9dd6a8f5d4b2735131282783f"/><file name="config.xml" hash="5c54b18ef3b9768b55b55f819bf83e6d"/></dir><dir name="sql"><dir name="catalogrule_setup"><file name="install-1.6.0.0.php" hash="7eaafe66abce83b3e4f260750dc4ca98"/><file name="mysql4-install-0.7.0.php" hash="d7efd6170d5a3cc0afbaef173d1f3d70"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="41b93ab7b9086ea4a8d9d7ed433c10e6"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="cc8b349a477e5bdc8dbd9ca1a52a8677"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="5b8c1e35670dc3326d22c3c53caf4798"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="dc2c9296e6865bd1d961f78f25d542ad"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="007985f93091a7245701f1141948699a"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="d4b69c988abbc78bcd03079dbceb4ffe"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="0f14a77122029e38f26e7ccf3712c563"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="7071b5fd4f696022bccea633f85a0a13"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="cc940227382995c2fecc459ed8497194"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="c1342fde96eeb01cdef1dde439ff0068"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="5d5d9d99d680379c33f4ed85d938ced5"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="9638a8d41872ccdb397a83fe9f583511"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="bb0f7e487247116e6a26f0e429a163a5"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="32ff5f97cf9b16dacc1ff79a62edff44"/></dir></dir></dir><dir name="CatalogSearch"><dir name="Block"><dir name="Advanced"><file name="Form.php" hash="85c85e586ab8ec207faf9dc8c07ffe4a"/><file name="Result.php" hash="0131e9cfc874158a6470b2d9a73dc014"/></dir><file name="Autocomplete.php" hash="33ee6e0481fe27092d85ae144efd4e09"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="150b9b818f811440c76b9973f68f267d"/></dir></dir><file name="Layer.php" hash="4d1e1b333e85eda9337e44fa248b8a28"/><file name="Result.php" hash="746cfbe96aa681ebeb44bbb0469222c2"/><file name="Term.php" hash="203afe743aff440e7f38e9ad2df4515a"/></dir><dir name="Helper"><file name="Data.php" hash="86f01e7de3935f870cc4ef530a67719c"/></dir><dir name="Model"><file name="Advanced.php" hash="0f7d026367dc1b4b1a96c8aea87d0441"/><dir name="Fulltext"><file name="Observer.php" hash="e19cb1d4993522433634d47a5a394f3b"/></dir><file name="Fulltext.php" hash="53b70a26d839f8b6d6c2f667363e7a63"/><dir name="Indexer"><file name="Fulltext.php" hash="ebc4d21554919bb59997effc66c49062"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="2ef712a3afe2235c73a83a994fcb3dc9"/></dir></dir><file name="Layer.php" hash="1cbf21abf86ef5a261552de4093dc5fb"/><dir name="Mysql4"><dir name="Advanced"><file name="Collection.php" hash="92555a8d2b100b05c9e217fb12f0bf94"/></dir><file name="Advanced.php" hash="2c6153c7d1a08ce5be2b555c36f0b886"/><dir name="Fulltext"><file name="Collection.php" hash="8b464675f27876ec4f9cd681dab0185c"/><file name="Engine.php" hash="f69694096e25e362de70f4ee9565b837"/></dir><file name="Fulltext.php" hash="2688588945cdf070a1c390359b6e09f9"/><dir name="Indexer"><file name="Fulltext.php" hash="ee81211e67cee1ec19fe37ea0f63b879"/></dir><dir name="Query"><file name="Collection.php" hash="1db4fd196e9cefbb818bdc738fc8b397"/></dir><file name="Query.php" hash="33f42d5a3fbed6839ad3996d79650ec8"/><dir name="Search"><file name="Collection.php" hash="100de96f9c425796420a1bd5f02db86b"/></dir></dir><file name="Query.php" hash="da08fc4cd6647f59235d06c9afd5fe65"/><dir name="Resource"><dir name="Advanced"><file name="Collection.php" hash="82da163d566a352a5902236024d5d865"/></dir><file name="Advanced.php" hash="941dbb5291ec4305b2d41e950b77a4cf"/><dir name="Fulltext"><file name="Collection.php" hash="1e62a38f02de2b9181ca312ed45c4bd9"/><file name="Engine.php" hash="7bfb45785c29f86e46b7824913386188"/></dir><file name="Fulltext.php" hash="bf2866e7db3d692481fea58d5fbcb940"/><dir name="Helper"><file name="Mysql4.php" hash="280ae70b9c7d364c3f43eb7da6c5bc7b"/></dir><dir name="Indexer"><file name="Fulltext.php" hash="f460722ecf333a54b0321f097bf31957"/></dir><dir name="Query"><file name="Collection.php" hash="c2488fce10ce5d6e74a98724e98313c5"/></dir><file name="Query.php" hash="8530a95bbfbb04db2eafdba952cdca72"/><dir name="Search"><file name="Collection.php" hash="3a9cf5ac6bbba866135238509202fd40"/></dir></dir><file name="Session.php" hash="21a0b0590d44b2c8e6062d06ce9ff52a"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Sitemap.php" hash="a3a284dbcf1b146b2d04ed7d1aab311a"/></dir></dir></dir></dir><dir name="controllers"><file name="AdvancedController.php" hash="44e6c43c987327b6ac99ec62fae95478"/><file name="AjaxController.php" hash="a0632f07c88d72d084ea2fe1a22df973"/><file name="ResultController.php" hash="df161656fe79f6c8f76c4389fdd974fd"/><file name="TermController.php" hash="7b641d87b2c03d3b9703036219486a64"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a0bcd72439780780056ed81729622671"/><file name="config.xml" hash="5d6296b3a3464698dddff4b420f92321"/><file name="system.xml" hash="c70b6c3f11afa046069fdd3a903344c5"/></dir><dir name="sql"><dir name="catalogsearch_setup"><file name="install-1.6.0.0.php" hash="92cdc22d55c0e949a11dbec3a9eaf3a3"/><file name="mysql4-install-0.7.0.php" hash="01dcd73378454ea7c5587af3bed4802a"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="769faa4ac005b9421fdc2243913a853c"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="ea43931f2f54b40cf0db13f8954ef632"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="299ac9ebce99cb5cb94fb4ede5caae94"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="62c28e3e48607392ea7394973cb824ee"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="02b38d7d742215e5d9d964e713c9dda8"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ec12eb0976f0234bf5f00b19cc7bc8b2"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="b8bcb9f888b99a83e2779b62f943316b"/><file name="upgrade-1.6.0.0-1.8.2.0.php" hash="ef84b6da31993fef99bbd7021ceaadea"/></dir></dir></dir><dir name="Checkout"><dir name="Block"><file name="Agreements.php" hash="edbbb56c8076c4c6f9def19530a96e7d"/><dir name="Cart"><file name="Abstract.php" hash="901a5142083d530a680638ed425419bb"/><file name="Coupon.php" hash="ef3de3d31843f041b606d07aea1e7ea6"/><file name="Crosssell.php" hash="dbe7eeab93332995ecc1dc33fa598285"/><dir name="Item"><file name="Configure.php" hash="29570f0ba5dd5419cd4f60efccfc6bf0"/><dir name="Renderer"><file name="Configurable.php" hash="b87abe5dcbedf884ad712f000872b362"/><file name="Grouped.php" hash="66c2f047ebab8142f611635254349d14"/></dir><file name="Renderer.php" hash="927b69b83ed410c0b8dc2878664b43b8"/></dir><file name="Minicart.php" hash="33a35f84758eb96c5bf78641939972bf"/><file name="Shipping.php" hash="495e7fb71fdd1588f22e89c05f99b209"/><file name="Sidebar.php" hash="48d1ca23137df7733fa2ebbdd1171df1"/><file name="Totals.php" hash="f0ca1cfb3eec7e5d74efdba148af6a34"/></dir><file name="Cart.php" hash="f00a63fbbf71ef667125131872b5c2cd"/><file name="Links.php" hash="5884b4b569e73a0253b70c8c4069400c"/><dir name="Multishipping"><file name="Abstract.php" hash="dd8a3b6f5875ef7d5f4e6e13202b59ab"/><dir name="Address"><file name="Select.php" hash="d4f26089fa26ed1b6529f01e1207c98d"/></dir><file name="Addresses.php" hash="f4b1bb17ac210fe234a109646d8f2742"/><dir name="Billing"><file name="Items.php" hash="10ecf85b2301eb5f7107018fd6ef78e3"/></dir><file name="Billing.php" hash="f123ed661cba84fefe43831176b239d1"/><file name="Link.php" hash="943fc5e34784b586c564b071605ca0ef"/><file name="Overview.php" hash="af302834d1a62023b106d99ded0636e3"/><dir name="Payment"><file name="Info.php" hash="c5fe2c4c8bc11a08e202bbe62faf763b"/></dir><file name="Shipping.php" hash="ece198105deae18034b82623ab31244c"/><file name="State.php" hash="76387a07d765fee355b6d14fb36c6365"/><file name="Success.php" hash="a85ca6ed660235cdd3e09b1102068f22"/></dir><dir name="Onepage"><file name="Abstract.php" hash="d534b931178a07527745dd0d4aeef9e0"/><file name="Billing.php" hash="0c248527ccb1e35434fe08b09f0e34d5"/><file name="Failure.php" hash="517d6799044bbf9739648a98c269f8f0"/><file name="Link.php" hash="13a3bd728e0be90aedb9128e71cb330e"/><file name="Login.php" hash="76fc49d195c759b5094a4010393154b3"/><dir name="Payment"><file name="Info.php" hash="ad433a44dd760597613fb057e64fb517"/><file name="Methods.php" hash="e72c1c2d1ea95f382a300687e1cd0d65"/></dir><file name="Payment.php" hash="22d8f6af26820ecacf12d91babaa6f21"/><file name="Progress.php" hash="48db21ef216b70c5510467cab47ba1ab"/><dir name="Review"><file name="Info.php" hash="aab4e775ad6bde968f773209239b66a1"/></dir><file name="Review.php" hash="346066fe907256e9782a8e6072d18861"/><dir name="Shipping"><dir name="Method"><file name="Additional.php" hash="eb7b5693dcc222364d31df121523c7e6"/><file name="Available.php" hash="b591ce6be235ca6e09adf048e4ff8fe0"/></dir><file name="Method.php" hash="0f42e9c7226d46b347e1ed153e50bd49"/></dir><file name="Shipping.php" hash="fe2fb0da161f7f9f92c77d8572e3db15"/><file name="Success.php" hash="fd3a23e38a97227d893965e31760389a"/></dir><file name="Onepage.php" hash="a3d7319d6b6eaf525b13ff4b5d4b1949"/><file name="Success.php" hash="c0f8b76f1f760e5eb26dbf824a18efe4"/><dir name="Total"><file name="Default.php" hash="23c6d9fbd60d93691f86a94a682a932e"/><file name="Nominal.php" hash="567cac28353dbef48f3efed824392f09"/><file name="Tax.php" hash="28425c3a5fc487b91ae7b75f790e3040"/></dir></dir><dir name="Controller"><file name="Action.php" hash="9ab91c9b829370254c07b7e9166395cd"/></dir><file name="Exception.php" hash="f888eb68fa670e71031cabc8b866dc39"/><dir name="Helper"><file name="Cart.php" hash="81d7df978bbd8974146ffca6d13afebe"/><file name="Data.php" hash="ed0768618718022eab8e6b83b21200f7"/><file name="Url.php" hash="0a2b6b700ef4d4846797367866897b6c"/></dir><dir name="Model"><file name="Agreement.php" hash="0c93b7f13b3164dbc33d87b527521e23"/><dir name="Api"><dir name="Resource"><file name="Customer.php" hash="278934926f4c9f19f49b973dc462f2f3"/><file name="Product.php" hash="b0a603238337c10e11988c95db6a6bc9"/></dir><file name="Resource.php" hash="11339699eabc89cabf818aba84ae017b"/></dir><dir name="Cart"><dir name="Api"><file name="V2.php" hash="6e5f1e303135e06dca8b3b25551b8b3e"/></dir><file name="Api.php" hash="95c5c624a6d0856d1d84226f9d6026bc"/><dir name="Coupon"><dir name="Api"><file name="V2.php" hash="e0771b98babffe46a408188ce5fb0bec"/></dir><file name="Api.php" hash="e6f307b2717c2b761af92d1faacc7816"/></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="72620344ecbdce72b2ed490681075264"/></dir><file name="Api.php" hash="1f1453d74d6ff19ab14f54c6629f74f9"/></dir><file name="Interface.php" hash="48ee2c9e546007a68ccaa7eb883aa215"/><dir name="Payment"><dir name="Api"><file name="V2.php" hash="59d1c295803d3d9b6d1c69aae6502823"/></dir><file name="Api.php" hash="88abb8822f98d264013ba064d699fc52"/></dir><dir name="Product"><dir name="Api"><file name="V2.php" hash="dc76cbb4c3d5719fbe90b7632b380a6d"/></dir><file name="Api.php" hash="4ee73dce729797f476dde38acd551215"/></dir><dir name="Shipping"><dir name="Api"><file name="V2.php" hash="f5aea9ac9d46b17573fe036ac0ede546"/></dir><file name="Api.php" hash="d91ee32480d3558f65eb1e916e01db59"/></dir></dir><file name="Cart.php" hash="bddb19638540757baf94b36d4746ba29"/><dir name="Config"><dir name="Source"><dir name="Cart"><file name="Summary.php" hash="0d77b36bc8ef6ae8376a53a65b371efd"/></dir></dir></dir><dir name="Mysql4"><dir name="Agreement"><file name="Collection.php" hash="6f54030386e4c0017e23ec07b0a08bc8"/></dir><file name="Agreement.php" hash="bd23ae0da9ba5d2a549338e5c02db756"/><file name="Cart.php" hash="947d56432d628a5ef086aa39368ec4eb"/><file name="Setup.php" hash="409c6eb0a7fc57f2f15a18b44b69c12e"/></dir><file name="Observer.php" hash="760e5571e9e6056be3b48f9d80a10f1e"/><dir name="Resource"><dir name="Agreement"><file name="Collection.php" hash="3f3f4ec920798255914d4875da0e20df"/></dir><file name="Agreement.php" hash="8f1cabcc167d70d7a66f5eaf695e5443"/><file name="Cart.php" hash="1dbdeaa51cee5134e84de8e1bd3e2d11"/><file name="Setup.php" hash="5c703c12ea887ceac97d12b306c9ccdf"/></dir><file name="Session.php" hash="d8965257509d76490267923acb596160"/><dir name="Type"><file name="Abstract.php" hash="fb7993038afd3bcdcdc07c01fff36600"/><dir name="Multishipping"><file name="State.php" hash="2f986856bfc95e2af8169f6cc463b7d1"/></dir><file name="Multishipping.php" hash="04a0ec632bed5c3e744b1cb6792cf664"/><file name="Onepage.php" hash="f0504b8f9b77dd2c7a7843768bce86ee"/></dir></dir><dir name="controllers"><file name="CartController.php" hash="bb59726fda388954646df70270c67e92"/><file name="IndexController.php" hash="0ad403e5abff321f35723e4a1f574eb5"/><dir name="Multishipping"><file name="AddressController.php" hash="0f8bf7799bc74461a8b6d5ae5b75443b"/></dir><file name="MultishippingController.php" hash="d744d587d59d336d264fa0f16ee4583a"/><file name="OnepageController.php" hash="3406786ac53fd3df0538ba50c365ef39"/></dir><dir name="etc"><file name="adminhtml.xml" hash="371b2471bdedf082a358021ffd211811"/><file name="api.xml" hash="b7967352f284e92833d55ca0b68840fe"/><file name="config.xml" hash="c57623b51827b6f576167621637e9562"/><file name="jstranslator.xml" hash="2e2de89b98af915e4ea1272c75cc1bfd"/><file name="system.xml" hash="f02f46ae436beadfdb3522e9a3dc5804"/><file name="wsdl.xml" hash="9a10e25803e84713f5031a168dd0c624"/><file name="wsi.xml" hash="2567bee4ef18e1b426c700ce66c3bcb1"/></dir><dir name="sql"><dir name="checkout_setup"><file name="install-1.6.0.0.php" hash="ddfbf2f09cde278b42c6bf37d6436d97"/><file name="mysql4-install-0.9.1.php" hash="5758e258d67930673a39f46c77a1198d"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="d68bc41709df517d96950a88f86e5e8c"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="b17127b6e458feededff23b30b7455ab"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="88ff62408fe8488de215927eb400a70a"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="6ea70e4a786843a3416cc6eb8fa19a83"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="c09d7a7b448e2669e875ed516882e655"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f9491be89b004c1897edb5b8ddf4c23a"/></dir></dir></dir><dir name="Cms"><dir name="Block"><file name="Block.php" hash="898d35381156ccb9132b25bf532424a4"/><file name="Page.php" hash="814206506f6d685818bcab9d152bd097"/><dir name="Widget"><file name="Block.php" hash="ea1c7f3d19a92bc2daaf99310ca1b17a"/><dir name="Page"><file name="Link.php" hash="c6dcf852bc58964ddfa98f69a1d4fe20"/></dir></dir></dir><dir name="Controller"><file name="Router.php" hash="92339edffa16c8bc02b830c852e24459"/></dir><dir name="Helper"><file name="Data.php" hash="a27b18bb6606cc74cc9544afe6f9cecb"/><file name="Page.php" hash="3d64a543a9d8f5afc4a7c5ebb7fb1e56"/><dir name="Wysiwyg"><file name="Images.php" hash="b25bb43610442ee5fcecd77696d27a99"/></dir></dir><dir name="Model"><dir name="Adminhtml"><dir name="Template"><file name="Filter.php" hash="91a633f687233966724003d6c8ca6b68"/></dir></dir><file name="Block.php" hash="cdb0877ce8154c7fc9289d8f88145423"/><dir name="Mysql4"><dir name="Block"><file name="Collection.php" hash="da313a2687e3b734e5514d47d3f5b2b7"/></dir><file name="Block.php" hash="d74eeb67029e29da29bc597acf108188"/><dir name="Page"><file name="Collection.php" hash="ceb766207962e73f2a02ba7a23322b5d"/><file name="Service.php" hash="1058f18c3534d9149a641b917f9a3a9b"/></dir><file name="Page.php" hash="04138c11bbbed349943fecaf7e200d6f"/></dir><file name="Observer.php" hash="f3a4c7c074677ed0101861ca087275a4"/><file name="Page.php" hash="51418776f947994d3608be03a8d84768"/><dir name="Resource"><dir name="Block"><file name="Collection.php" hash="70bb70746439849a8ba28fc3e2f483be"/></dir><file name="Block.php" hash="b22aa29b7947f8d602a26aef38c77cf0"/><dir name="Page"><file name="Collection.php" hash="69057e31451ef04b92ebf6c1682601fd"/><file name="Service.php" hash="efa358cdad063029d8fd04dc53c0376f"/></dir><file name="Page.php" hash="ffb2f968c1f08f8e7841d9ab4645edae"/></dir><dir name="Template"><file name="Filter.php" hash="d107b19078a69e3404fc569cf485dbd3"/></dir><dir name="Wysiwyg"><file name="Config.php" hash="b6ec6e1377c340eaeb83d7a32ac3bb8d"/><dir name="Images"><dir name="Storage"><file name="Collection.php" hash="46efd5a245d1820ef3804cb8a26420ae"/></dir><file name="Storage.php" hash="5145bb4efe11277cc53b9b30ff0e5cc9"/></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="3f1f3d576126977265321eda18c2bb49"/><file name="PageController.php" hash="f0c715192539226906d3ce01bbee4ab2"/></dir><dir name="data"><dir name="cms_setup"><file name="data-install-1.6.0.0.php" hash="bc49da8c6f539fa236aefca2f68171cc"/><file name="data-upgrade-1.6.0.0.0-1.6.0.0.1.php" hash="174c8ce8031d1e1e7e14252c502421f9"/><file name="data-upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="e8cd1e4ad66e7492f498ab20f3abae8c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2856e9933d867318ff8b96f9ef3ccb40"/><file name="config.xml" hash="4bf93b88faa4fc90885cd43b51ab8b05"/><file name="system.xml" hash="d11ec9373c94da03f18100a248a12b5d"/><file name="widget.xml" hash="2c0c8f0ccd137e2167a367e19231a839"/></dir><dir name="sql"><dir name="cms_setup"><file name="install-1.6.0.0.php" hash="951e550832696995ca7db6e50b76b89c"/><file name="mysql4-install-0.7.0.php" hash="3dbc2f19304283a084a88d30907ff314"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="c2c8b98a04ff58e4e2088b1460f3e1cc"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="e3a934d93d1e38c76543ac106b82c6ad"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="701fc6f9f7e749d113255aa68107296b"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="a8774786b34e87f171428aeb8d3a419b"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="a18f5a93bbc03dbddfe96d5eb0928ff4"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="b82f611d0b49508d181e03a4bffe3968"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="d8c391f28cef8488e819cd6385c6eb9b"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="70dc834e54a738e6a068b852b1f8c584"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="0f1595c6bb7f247623bbdbc7db7ff603"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="324073c7fb6e8dde3387835f99b47535"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="f26c1face16c3ccbafeff8ec5bf7094c"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="b6eed60749b6540e70dff21cdb950520"/></dir></dir></dir><dir name="ConfigurableSwatches"><dir name="Block"><dir name="Catalog"><dir name="Layer"><dir name="State"><file name="Swatch.php" hash="68c0c2ec35b8ff282fa6f560e7f1ada1"/></dir></dir><dir name="Media"><dir name="Js"><file name="Abstract.php" hash="e88eaba835ba298fa215a7a4d5c957d3"/><file name="List.php" hash="b48ea1505ca5204d62f48e32ee80640d"/><file name="Product.php" hash="4fb403ffe236e98bbb107638428e403c"/></dir></dir><dir name="Product"><dir name="List"><file name="Price.php" hash="72f20eaa031a239e85e7504e68a5c3ad"/></dir><dir name="View"><dir name="Type"><dir name="Configurable"><file name="Swatches.php" hash="04f3bcfe21d1bd482c51c54c8aa97ba7"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="3a715ffda5107de9be1889a441568aeb"/><dir name="List"><file name="Price.php" hash="9338164655aee6d91d69c2d0c0e19e23"/></dir><file name="Mediafallback.php" hash="738b5a138c273b6c4e021e8f8f86ec88"/><file name="Productimg.php" hash="441ebcb9a0a0d320ccc7ca34ac8dcb30"/><file name="Productlist.php" hash="fc962c063fcea86108309d6df79190c7"/><file name="Swatchdimensions.php" hash="bb21de54e3c87a9ca7075869c372e0a4"/></dir><dir name="Model"><file name="Observer.php" hash="103dfffc8b189944337b367afa5dcedb"/><dir name="Resource"><dir name="Catalog"><dir name="Product"><dir name="Attribute"><dir name="Super"><file name="Collection.php" hash="0bdd9ca22cf63817056cb4fff18bb4bd"/></dir></dir><dir name="Type"><dir name="Configurable"><dir name="Product"><file name="Collection.php" hash="f975a63851234ac187d215d7a4f56b82"/></dir></dir><file name="Configurable.php" hash="ebe3e3dbd052453a062740c47c95120d"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Catalog"><dir name="Product"><dir name="Configattribute"><file name="Select.php" hash="15e78dac56542709170c1fc52acc6700"/></dir><file name="Configattribute.php" hash="094d0a9546e36006e5f474e0de220f36"/></dir></dir></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7a09e37524e0177f99d5152c22d163da"/><file name="config.xml" hash="868227b573099b33060b4006caf0bf4c"/><file name="jstranslator.xml" hash="77f02485b3ab5c0e969b5b8743080b5a"/><file name="system.xml" hash="be14fad46886d2a72fb8a27dfac51837"/></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="cdb9381d7a3a9958684f4d4ed2410334"/><dir name="Tab"><file name="Abstract.php" hash="e334fff7715f08d2eb32bf0bb6332126"/><file name="Authors.php" hash="7c0da39bbd5dc5d7d81eaf7a5a6af300"/><file name="Contents.php" hash="4356f221f09c4ddd5c34e2a3132dcbaf"/><file name="Depends.php" hash="5887983acfa04c00e9822488bbf2c23d"/><file name="Grid.php" hash="b9cc8a7d1cc4f277ea10f0aee2ec788b"/><file name="Load.php" hash="8e25ad7028d6153ef14a96f6f3ca656f"/><file name="Local.php" hash="e29a881ace6fe58b6979aaacaa673477"/><file name="Package.php" hash="0cfb6bb00929030d680e6cd4f5b6beae"/><file name="Release.php" hash="a73d0a9489a4c9030999875c2d16dfd5"/></dir><file name="Tabs.php" hash="8356ce97e05d78822536c6a8bf7efbf8"/></dir><file name="Edit.php" hash="714af3c40e26323c6f5abf1a8546fe95"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="b2a66818f723c0baa74a47b5c4fa4ea5"/></dir><dir name="Model"><dir name="Extension"><file name="Collection.php" hash="3747b27f2c0383e138ea898f984068d2"/></dir><file name="Extension.php" hash="b3e808c324a354e632d938566cd65593"/><file name="Session.php" hash="83321f9e79643266ddd763a3a702f8c2"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Extension"><file name="CustomController.php" hash="8a4c9e9161e3f4d03ed7058f879d4465"/><file name="LocalController.php" hash="32938ccd079f27b5e2ad4d96acde6123"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ba2d6fa47dda89417a1661ba6f6528bc"/><file name="config.xml" hash="c1b5dbcc219ac320a895659f5afc0884"/></dir></dir><dir name="Contacts"><dir name="Helper"><file name="Data.php" hash="fc8c76ff8afa6fe4cf85329a350aed35"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="6afd2f3eaa8823b8a7d952a203d210f3"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="23a8dc980b41f95f7286896b3a09ad66"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6789eddc6f2b4f4e44efa8de10704f35"/><file name="config.xml" hash="06b52882d60ca3358ed0e01bd9e3185a"/><file name="system.xml" hash="52cf021b9c0aab905f32b874e413f9f5"/></dir><dir name="sql"><dir name="contacts_setup"><file name="install-1.6.0.0.php" hash="7ee5562569d41719b95923c92623f826"/><file name="mysql4-install-0.7.1.php" hash="1d5f4873ff08a538c3bbd1879d594ae5"/><file name="mysql4-install-0.8.0.php" hash="f331a208905275a2065aeb24dbaec8cf"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="316c9cfc4c81d1799c440a60493a4591"/></dir></dir></dir><dir name="Core"><dir name="Block"><file name="Abstract.php" hash="edc0ee18da691761dde31a613f6640a9"/><file name="Flush.php" hash="c20785e1cadaf8739519beb208b31f24"/><dir name="Html"><file name="Calendar.php" hash="c82fadd9ab2a875bdba006c609d83d4a"/><file name="Date.php" hash="95d49613ac71023717e32113de68dee9"/><file name="Link.php" hash="1426c1af9d755567d97985dd18122ca5"/><file name="Select.php" hash="677d8e98b4cb8ca2a93581d67cb481ee"/></dir><file name="Messages.php" hash="eac529eed16b1bbf47ab10db60442a86"/><file name="Profiler.php" hash="d31f3c6395b2912e548d477a45c5d185"/><dir name="Store"><file name="Switcher.php" hash="415d3fa4b84684fabb08106585489747"/></dir><dir name="Template"><file name="Facade.php" hash="aaa3f6b58c7ca940f968f0a5a3c75e6a"/><file name="Smarty.php" hash="e0503f50490908b5860f1c58bfd18606"/><file name="Zend.php" hash="57ceaf7e4855bac62ecb77ec8bf93bab"/></dir><file name="Template.php" hash="9e8edeee071b84ff7e6fb636a61fd276"/><dir name="Text"><dir name="List"><file name="Item.php" hash="a7d5698ffceaadb373aa2b1233236ffa"/><file name="Link.php" hash="6ffb7165581a10239a56e584e9868b27"/></dir><file name="List.php" hash="6e3f1c83271a306bad23ad6ff0f8d6f7"/><dir name="Tag"><dir name="Css"><file name="Admin.php" hash="94bd166aa8d1a272a0280f41f1667fb1"/></dir><file name="Css.php" hash="661dbe86a0f077cb58b4c171c0aba181"/><file name="Debug.php" hash="39d919aa752c9efe0df0289dc0eae2cb"/><file name="Js.php" hash="79a243528ef224f138840b6cfd67ac5a"/><file name="Meta.php" hash="f817c97fa3293f5af3b090972537afe8"/></dir><file name="Tag.php" hash="4519c6e362de2a79f184d47ffe3630d1"/></dir><file name="Text.php" hash="f06ae4b3130f776f17d0c3f252fd12ef"/></dir><dir name="Controller"><dir name="Front"><file name="Action.php" hash="34de94053f9bced14915e8c09e40957b"/><file name="Router.php" hash="28c85d6153b05dee30c5d00d17312da6"/></dir><dir name="Request"><file name="Http.php" hash="b88f7dcd8f9300fec6188d1e228ea078"/></dir><dir name="Response"><file name="Http.php" hash="ff66297573126d656cfbfbc103268239"/></dir><dir name="Varien"><file name="Action.php" hash="25e7833fe501427583b9cc5a2d531ac3"/><file name="Exception.php" hash="f396e81903dfcf7f699f962663696d86"/><file name="Front.php" hash="4295201822daf9058cba300a54339ecd"/><dir name="Router"><file name="Abstract.php" hash="af6e44f74a7f0efd2aac392f86f4e104"/><file name="Admin.php" hash="c9da62eb398c0c4833f086bc6021fc60"/><file name="Default.php" hash="07fd8dc8b5e9c84efd115cdb9770b374"/><file name="Standard.php" hash="a18fe2f190c4a0e9735e260d78048560"/></dir></dir></dir><file name="Exception.php" hash="c533c09b1ec124a466b508d27b5ecfe8"/><dir name="Helper"><file name="Abstract.php" hash="38b3334df4660f7877bb736dd0230734"/><file name="Array.php" hash="13e6c97aa24c0292eadf199e2d3e6331"/><file name="Cookie.php" hash="f92047e4097bddcd25f057a5aa1a77d2"/><file name="Data.php" hash="f13da9defa175851be4c1e4671f4ab15"/><dir name="File"><dir name="Storage"><file name="Database.php" hash="57769a46cb685183713ae4888a18ce17"/></dir><file name="Storage.php" hash="b36e27ba0a2eda8039573c4a46f493da"/></dir><file name="Hint.php" hash="a02e0b79ba4711001d241e67e8eea9f3"/><file name="Http.php" hash="c6f118771af7ada5c569a823936c7d3e"/><file name="Js.php" hash="b724dc4f511b6d83af51653b59eab4e4"/><file name="String.php" hash="78be6fd1eca2ea820305d03c1185729c"/><file name="Translate.php" hash="872d9ec19dc8b9d55ad15aaecd048e5a"/><file name="UnserializeArray.php" hash="57c981ebe6423175100f7cd03ca63e79"/><dir name="Url"><file name="Rewrite.php" hash="c103422ee16348216a1fd42d9a70949f"/></dir><file name="Url.php" hash="f367f3aa0ff05e9b95b27e06dba46b32"/></dir><dir name="Model"><file name="Abstract.php" hash="695b544ad07193c6cfe2418311230b8c"/><dir name="App"><file name="Area.php" hash="879e45d5dafa78078e0dd7ad727605c3"/><file name="Emulation.php" hash="4c729f8b2a5dc8b419bfbd05cdc010b9"/></dir><file name="App.php" hash="20d34619ad713b56021069a710d24da8"/><file name="Cache.php" hash="289e338d47364632dc9288e8d5ff0347"/><file name="Calculator.php" hash="31b47bf1d4a5b892738256d372ddb4fa"/><dir name="Config"><file name="Base.php" hash="b8bc3e99a89607a4efd29202b44b0472"/><file name="Data.php" hash="2b33c57aa189626e77e04381060ce9e6"/><file name="Element.php" hash="a5419a0ab3f8898095268907cf0cac6f"/><file name="Options.php" hash="eef0664dc80b93453c42fa1dbf7978d4"/><file name="System.php" hash="13cb6a682e162b50efcc753e22e10c03"/></dir><file name="Config.php" hash="8e373d483081810bda5cf141f271056e"/><file name="Convert.php" hash="18696600aec89d399cc8e250ee4d00eb"/><file name="Cookie.php" hash="4714ff56635e45854ecfe6c0355ba620"/><file name="Date.php" hash="ec1ada91e12f50ac08c69e57ec45da04"/><dir name="Design"><file name="Config.php" hash="188636948698ea64d7eb4b583e3f1a5e"/><file name="Fallback.php" hash="37fec1a90cb4884b9a119f25206806cf"/><file name="Package.php" hash="386303ac962fe2ea7700a0ccd6d5f149"/><dir name="Source"><file name="Apply.php" hash="35cdb63c7401b7fa7be0d51b3340859c"/><file name="Design.php" hash="18b2c51821bef1f2f4591d980f80b0fe"/></dir></dir><file name="Design.php" hash="c4d1eeacbaf61a0c4ae257a95f75da92"/><file name="Domainpolicy.php" hash="55872e0468e1a42d1dd89ac29d7a2ec1"/><dir name="Email"><file name="Info.php" hash="6d2bafdee51d05f5da2f87dc5602ec70"/><file name="Queue.php" hash="862cc6a388c9b72527e38a1ad5b0dd82"/><dir name="Template"><file name="Abstract.php" hash="e921b868410c4c1c3f09dad50cf0933b"/><file name="Filter.php" hash="aa1870c42b9fa3baf3cd17d281e1072c"/><file name="Mailer.php" hash="3c77ef8aff1c9218970a0bc6a9e30172"/></dir><file name="Template.php" hash="7a6f811aafe25ce4cfae040e099bf863"/><file name="Transport.php" hash="8eb108d72bd330e20b66afd62d904fa0"/></dir><file name="Email.php" hash="78dd73224072fb6547a218a104abe887"/><file name="Encryption.php" hash="2911fc2a793ea792e144614f22d69387"/><file name="Factory.php" hash="c9d9db6a43d61edd0e59cefdff2cd131"/><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="b8c52d68754745bfa37d2f2443a87515"/><dir name="Database"><file name="Abstract.php" hash="e2951151d8a9f46335b784557bc87bda"/></dir><file name="Database.php" hash="db27a6b9cce2e125992c7550c9b3ff72"/><dir name="Directory"><file name="Database.php" hash="ef5c34daa3e287d0f2f4ac04b69d3bd5"/></dir><file name="File.php" hash="39201fe1e06542a788c212f37c54a0da"/><file name="Flag.php" hash="3d7393aa09042bd4a277297a8158d400"/></dir><file name="Storage.php" hash="0be89988936c9b5c8781ecc038907fd6"/><file name="Uploader.php" hash="ffa4b2d3b6b5a9d646616ad5f94f5a18"/><dir name="Validator"><file name="AvailablePath.php" hash="2d4fc0579755f207c390e06081e5a375"/><file name="Image.php" hash="4d6a61efe3f5868ffbff58a5d30c71b2"/><file name="NotProtectedExtension.php" hash="1db942ab499cd3be53a6bcf310e45451"/></dir></dir><file name="Flag.php" hash="e787605aa1582ffc85371dbb675a895a"/><dir name="Input"><dir name="Filter"><file name="MaliciousCode.php" hash="8f54a865f6ac2e548911e11b93ecba81"/></dir><file name="Filter.php" hash="3acc5da092bff7c58d4e04d7d408a9f2"/></dir><file name="Language.php" hash="79221faa5359d31326bf1b1983c6ac5f"/><dir name="Layout"><file name="Data.php" hash="8c095fc875ab1f8659be5cf697695a3f"/><file name="Element.php" hash="54af7e9a43caa7f46bc4bed8e7b57a55"/><file name="Update.php" hash="bf143b6942445929f348678dab3a7cca"/></dir><file name="Layout.php" hash="6992dff1369205c4d63da3c0f3d18c42"/><dir name="Locale"><file name="Config.php" hash="c126a5723210a8ec7a53c670919acd60"/></dir><file name="Locale.php" hash="8f3227d5a710630855aa900f32fe8231"/><dir name="Log"><file name="Adapter.php" hash="6ab9de01f6ec8efc92e242314c28cd0f"/></dir><file name="Logger.php" hash="7bf6970727cd6c6e7777300130d1da5d"/><dir name="Magento"><dir name="Api"><file name="V2.php" hash="9300a839c60ada30fba4ca6cc8fb173d"/></dir><file name="Api.php" hash="dadd89edc2d57ca42395b7a4b613b0c3"/></dir><dir name="Message"><file name="Abstract.php" hash="88253eb2854f31583c921f94c26e1652"/><file name="Collection.php" hash="a771a49f8447320dd2fb31fd2c55c914"/><file name="Error.php" hash="fddc7b2afba3c6f75a08fa2783d89d6b"/><file name="Notice.php" hash="203a96d86350599741c6f26054e52be5"/><file name="Success.php" hash="e575de8ab611b8a14fdaa7320a0c2c2f"/><file name="Warning.php" hash="672f607a57662837f9b55f48a36db6e2"/></dir><file name="Message.php" hash="4867491a0c875041e4a43f1fe1f59e7b"/><dir name="Mysql4"><file name="Abstract.php" hash="1e078f6b3e58edfd264d809983977044"/><file name="Cache.php" hash="b8945dd5d5c5fb50049862282ef9a1f9"/><dir name="Collection"><file name="Abstract.php" hash="10e4f48cd0dc9e6d2109d6b8a30bf50b"/></dir><dir name="Config"><dir name="Data"><file name="Collection.php" hash="32378cb58c332dc40a30ead52c630901"/></dir><file name="Data.php" hash="8c903ffebc2518be3ad6199418c17877"/></dir><file name="Config.php" hash="2e27f5daa019ea6ca7830f1b3368d193"/><dir name="Design"><file name="Collection.php" hash="bf8a06e046bc3f69d19b7228d3d52a0b"/><dir name="Package"><file name="Collection.php" hash="69c509908c344050a2035fe5c42a05c8"/></dir><dir name="Theme"><file name="Collection.php" hash="911b5db07c655986233354fca3b4f2d6"/></dir></dir><file name="Design.php" hash="56a876db3e6dc2dec34f1a798311bf79"/><dir name="Email"><dir name="Template"><file name="Collection.php" hash="e8ba5c613a2037851954ad5e83a925f0"/></dir><file name="Template.php" hash="16b954727bd8b14c80e7d6492e55adaa"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="7fb3e3ef379ea963dea07e20aa85a94a"/><file name="Database.php" hash="4e1bb5639e15ea36085d246ac8c4d645"/><dir name="Directory"><file name="Database.php" hash="06f4b19b344870f2cdc4dedf17710117"/></dir><file name="File.php" hash="3853698b4e4cd021cf30d5c14f9e250c"/></dir></dir><file name="Flag.php" hash="34c199fe09a9bbb4c975396075366b9a"/><dir name="Language"><file name="Collection.php" hash="6d5b356b725270bc35630d0018fd085f"/></dir><file name="Language.php" hash="353da97dea8bd634abc403e4a95540cc"/><file name="Layout.php" hash="ae73b12498f8a183e7ea02803273ec0d"/><file name="Resource.php" hash="f402b5d3c97bafe898c78cdeb030eb77"/><file name="Session.php" hash="e37a6c383e3e2ffcbcd46f61d6233156"/><dir name="Store"><file name="Collection.php" hash="eca9a24e542c28b6e57d4afff4481412"/><dir name="Group"><file name="Collection.php" hash="3e6830967d36560c0924623bd909a8ae"/></dir><file name="Group.php" hash="781410d69489e96cf24a4bb233e4c6de"/></dir><file name="Store.php" hash="059d278191231cb4880299bdb95a777d"/><dir name="Translate"><file name="String.php" hash="b119b1a8c1a08b194a3b66f25c553600"/></dir><file name="Translate.php" hash="7e172b99d6a2c7f7c4ed9c2545d98202"/><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="9868e898f7c987bb930a31da49bf883a"/></dir><file name="Rewrite.php" hash="eec92dbd2f80648311c340de0ef4e590"/></dir><dir name="Variable"><file name="Collection.php" hash="acd0c28c5bbaba48fa8808097bb676fe"/></dir><file name="Variable.php" hash="70399e215ef281af34112915e9c01c97"/><dir name="Website"><file name="Collection.php" hash="cb5b29e314a2080b124a50acea9fcdf0"/></dir><file name="Website.php" hash="476d6420625f5d44e74f20d1162e9b40"/></dir><file name="Observer.php" hash="57fabb31d05f0c57d63136bab6e284ea"/><dir name="Resource"><file name="Abstract.php" hash="f60bc5a2f5705a7850bfc3a43694a36e"/><file name="Cache.php" hash="4dee69ffa40080c0d0e6416c965f6ee3"/><dir name="Config"><dir name="Data"><file name="Collection.php" hash="766aae4a993676b0663327a50d86fc7d"/></dir><file name="Data.php" hash="aa8d6957a183939bb3b99d75debf6172"/></dir><file name="Config.php" hash="9408810ea25765e692d8b4cc5067ca1a"/><dir name="Db"><file name="Abstract.php" hash="74b20c5fd86441c7fcdf011e81b32372"/><dir name="Collection"><file name="Abstract.php" hash="c6039490538afaa2061c19221cacb685"/></dir></dir><dir name="Design"><file name="Collection.php" hash="714be58c3007d5a4006a7c0e14997203"/><dir name="Package"><file name="Collection.php" hash="215cf557198d9cf584e873c6829b45e4"/></dir></dir><file name="Design.php" hash="931013a8831e07fcacda53fce3941592"/><dir name="Email"><dir name="Queue"><file name="Collection.php" hash="52f922770addf48910ffaa61380042b1"/></dir><file name="Queue.php" hash="b49a064ca2d0eb42d90603cc41027108"/><dir name="Template"><file name="Collection.php" hash="e66a724a9d83881a81b01fe232450b2a"/></dir><file name="Template.php" hash="c99e3778175c0ef9b34fb5ca99226c39"/></dir><dir name="Entity"><file name="Abstract.php" hash="5aca6f554d31795b7b48cf282ae03a33"/><file name="Table.php" hash="85f19f5d8c16978f8618a175ee3d2090"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="bd14b6cf43dddcf1c399e5d6c8aefe24"/><file name="Database.php" hash="6f796b96fddfb7ddc0a543f9420d5648"/><dir name="Directory"><file name="Database.php" hash="a2729590d8122571f45a8be738d31282"/></dir><file name="File.php" hash="c6a19e3117c057f98258006d04ae0e5a"/></dir></dir><file name="Flag.php" hash="ed3cf855b63936540fa1bcb6ef366156"/><dir name="Helper"><file name="Abstract.php" hash="57279fc88854d761b5c950e02949db34"/><file name="Mysql4.php" hash="a9c2de2c75a0dc4a052bc3dc25f6064b"/></dir><file name="Iterator.php" hash="ec5bf9ccb53ee6315bf95ba5c7118093"/><dir name="Language"><file name="Collection.php" hash="5a7126f75df608151b8fb8bc2caf2131"/></dir><file name="Language.php" hash="69dc6a910b7430b5b92b3d2ea16557aa"/><file name="Layout.php" hash="202bf646180511808ba332ef2148ca09"/><file name="Resource.php" hash="43fccf4f6ce7d955e7a09b01a687e7c1"/><file name="Session.php" hash="fc5a9129aba7060864489f6ec9f46512"/><dir name="Setup"><dir name="Query"><file name="Modifier.php" hash="ae2ee2ea6a3db11b0117d752e31b208b"/></dir></dir><file name="Setup.php" hash="65fbbe659f51047b6e305c20d2614cb1"/><dir name="Store"><file name="Collection.php" hash="3025c54ac6ee1b23cee071aeb1936c76"/><dir name="Group"><file name="Collection.php" hash="ea79d58df33070191e28ecf30058ca4a"/></dir><file name="Group.php" hash="2f72d2652f4aa2e0d5db887c0b92ca5e"/></dir><file name="Store.php" hash="8b264d0ce58217ca17c931bea48f0e0c"/><file name="Transaction.php" hash="9a912def4c5703b6420d8c7624604526"/><dir name="Translate"><file name="String.php" hash="c3f4cc508056a672a479c920bec20914"/></dir><file name="Translate.php" hash="6fb0ccd00effeeeb63a49e4f43e2ada0"/><dir name="Type"><file name="Abstract.php" hash="5df8546c2d23b70f2c1cde1650a02520"/><dir name="Db"><dir name="Mysqli"><file name="Setup.php" hash="fd45312eea4b16775782d8542bd69db3"/></dir><file name="Mysqli.php" hash="95babdbeb591b3f3af888d2d9cf6e7fa"/><dir name="Pdo"><file name="Mysql.php" hash="a3cd3d93a107ea7952ed0991c7926ec3"/></dir></dir><file name="Db.php" hash="285b000ac92a8e5a67c62e0b05673b5c"/></dir><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="9850a8c2839b9f68f229c043fa3604bd"/></dir><file name="Rewrite.php" hash="69f4a283136a2a443f5fc54177ae8498"/></dir><dir name="Variable"><file name="Collection.php" hash="13d19f3d119d4bb56fea9b0274718868"/></dir><file name="Variable.php" hash="a42bdf56481b8ad842ab1440bd56de47"/><dir name="Website"><file name="Collection.php" hash="23caf87a0cdbfee1abf6b398c170d3bd"/></dir><file name="Website.php" hash="14acbd9d4ba152ade010585f0f388e4f"/></dir><file name="Resource.php" hash="ad7bf9e86e35b75a25d9e3023b1a6847"/><dir name="Session"><dir name="Abstract"><file name="Varien.php" hash="d92217ea6b69281977b01d7be9439fb0"/><file name="Zend.php" hash="4821d101778be6577fbfff8e3fd252d0"/></dir><file name="Abstract.php" hash="707649689168a7e169cd507628a495c0"/><file name="Exception.php" hash="b321d788dde945c4a8943682fda3715f"/></dir><file name="Session.php" hash="997890aefbe5eeb3a2d39f998d28c0c1"/><dir name="Source"><dir name="Email"><file name="Variables.php" hash="a10d4149810a58d1752bd5b17fbda092"/></dir></dir><dir name="Store"><dir name="Api"><file name="V2.php" hash="297e2f767b7d482b9b7da4f70f20b4dc"/></dir><file name="Api.php" hash="28bf70c11f3d09e78eac20dea94a96f6"/><file name="Exception.php" hash="dd354e23c3406d41a53d3aff886f8ac4"/><file name="Group.php" hash="6bb9a7c61af5fc7f0bcb265fc92c39fb"/><file name="Observer.php" hash="a3016632acc3bdcd5a097ea4d9b111f5"/></dir><file name="Store.php" hash="e0fb2b6daec0514631a40c4bb023d252"/><file name="Template.php" hash="69df39e9b8a7431de3f99fb47a342920"/><dir name="Translate"><file name="Expr.php" hash="66c46d90b602d43ff0ebb00824cecd07"/><file name="Inline.php" hash="4c33f9ca847fb4035d5c8b993b1066f8"/><file name="String.php" hash="4647bca2cf4e101bca1eeee85daeeebc"/></dir><file name="Translate.php" hash="4ab8d34bd88069431ae8294c252242b5"/><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="0a3c9a7aa92bbf225997a6cf7f00eacd"/><file name="Request.php" hash="a75bd200da8788625c03c40faf80c75c"/></dir><file name="Rewrite.php" hash="420839bcb3baf49aca639df56ef5597e"/><file name="Validator.php" hash="69c34dedbd4fd32575419b656e0ead14"/></dir><file name="Url.php" hash="bc1e9c77248bed49e0c3085a0e839aa5"/><dir name="Variable"><file name="Config.php" hash="fd27c3c419e7871635ae6c4009e58f9c"/><file name="Observer.php" hash="b52f6129b01e4e1b0c50e8dd9213a85b"/></dir><file name="Variable.php" hash="46afad77e3cd079de9a10e4de2f09f60"/><file name="Website.php" hash="81f4c04ab91ea9b02f6277c4775e1009"/></dir><dir name="controllers"><file name="AjaxController.php" hash="92474328ef66300166fecd475f9982af"/><file name="IndexController.php" hash="23b3f5f480ab1c81458306aa1359bc3f"/></dir><dir name="etc"><file name="api.xml" hash="42a4894dd5b648d55fc2a057e7669332"/><file name="config.xml" hash="6be956117f7fae415d9ee3f53bb2941d"/><file name="jstranslator.xml" hash="25450c6d4f1ac7b7cf5728e02087d22d"/><file name="system.xml" hash="12578c37db07b6210448e1eadd1a97f3"/><file name="wsdl.xml" hash="79501d6ccf39846b5dd551e85880dcb8"/><file name="wsi.xml" hash="31fa195d527181c946019bcd44d819d6"/></dir><file name="functions.php" hash="644bd073184b870dcdcb96813a9b44f8"/><dir name="sql"><dir name="core_setup"><file name="install-1.6.0.0.php" hash="82d3eb38f917c551b2a28667be3486ac"/><file name="mysql4-data-upgrade-1.6.0.2-1.6.0.3.php" hash="0dd16d1eb1df53cf1f4e67b2964a95bb"/><file name="mysql4-install-0.7.0.php" hash="81839bb121b4aba1b544d56fc40a61ae"/><file name="mysql4-install-0.8.0.php" hash="195af144c51ab0e03d7bbb5efe4495bd"/><file name="mysql4-upgrade-0.6.26-0.7.0.php" hash="671c4be258b4188af2616602cf801f63"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="d22091168dfa8cc21ec1be007668b0e9"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="cf088167a0b996a149681df3c3660505"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="d7997cc173c4985beb2516a17ee1c40b"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="453d8041523980b8ce852c4e1f51874d"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="ec79d25bb9e6e7c69f5c38954900844b"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="598100a4f24242b83a01e59d545a98cb"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="59f7348db03779d7a12ce8d92c5201e6"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="5c8a8c443f4418187cf1d5204d065f03"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="f719492480caac4725b2185a5b6fa516"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="7f570c7fc88bf54d74741a647567803d"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="24e4a7a605b0145c950df457cd23c417"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="e512e19fd69b610ef3dad3304e0f0197"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="7cbcb845a688bb3668ca4c4adeb2455a"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="e7bfafd831c4e826799610fb3f01621a"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="2c125fab1d4c13902defefd5384c89b2"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="9e4d8f7290a8974ed17e8dec61fbdb0a"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="614abca2eed72111c65eeb48a9f8f0a1"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="c7870e25d5b0622b414757ebb2d0d458"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="f6333b602267698a7ff8ce547deec53a"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="851497fab7c02bcf4dd12ad8b6fabc2c"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="3794b80f80e7cbf681ce203c4cb4e288"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="a1adec1b9397533cb3e7717896795889"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="3ee69cba745ec91fd3b8f89fc95afd98"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="33c1c872629e5b686707886c437de647"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="53675a8aa8692822f1b93c393cd064b8"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="faf73e04e27f76f86828ca9c77d50d57"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="e32aa6a22fcc07e692b498fc91f7d06b"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="10f198e6de144487f661996a270d105b"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="804a433b8d024631b529cb5b4300b254"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="d93e030d2060799f5ae56867bb24f644"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="119085e4b14f0d97c1277006eb595a2a"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="740e13f6ff329eceae542b4139a1e6ef"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="5057b3772d17819dca8741c4b16e1e3b"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="a1362939a92c7394a5a98e2316ebb77f"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="da3346b0a0569fed7cbaf51b0296e788"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="05ae1864ed86eaf1e1b3c369767aca85"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ca65e4a5104ca3a27211541a112b5fce"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="43de19d0194473cd652d03a9c7aa5d1b"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="94973964e31b0325698f70a0dfbbc5cf"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="05e29e034eef9b9db8de1f35d79a915b"/><file name="upgrade-1.6.0.5-1.6.0.6.php" hash="26190c37cc49c7a3c103f47459123064"/><file name="upgrade-1.6.0.6-1.6.0.7.php" hash="131c0dd0afe4303c6cc4b6f1f67c0696"/></dir></dir></dir><dir name="Cron"><file name="Exception.php" hash="19ed70425b8c4b5d68b2c93c538cda6b"/><dir name="Helper"><file name="Data.php" hash="46b8b87c633524622800767ed30c8edd"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Schedule"><file name="Collection.php" hash="049aebf9a763447e16a471b0bb8e4a3b"/></dir><file name="Schedule.php" hash="28a6e3ea4100e9dfc00da4f280ab2377"/></dir><file name="Observer.php" hash="72945b05d04c8fb2937cb817602dd2d8"/><dir name="Resource"><dir name="Schedule"><file name="Collection.php" hash="81a956586d63d4182b270722f0693ceb"/></dir><file name="Schedule.php" hash="b889301b39dd75cb4b9b471987f13ddd"/></dir><file name="Schedule.php" hash="d1fd1707f6c3ba3a19084094332b5184"/></dir><dir name="etc"><file name="config.xml" hash="a3bdf914b02f0c2b8bb39b09cde4a7e4"/><file name="system.xml" hash="f66528d7b5891bca6ae8f56a048f9e68"/></dir><dir name="sql"><dir name="cron_setup"><file name="install-1.6.0.0.php" hash="1a9530f9505b962466056a0ad9d04588"/><file name="mysql4-install-0.7.0.php" hash="da3a96f23f74c5da8538ba0bb395cbb7"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="f5340fc1382a252d2d9a018d76e69860"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="3c1e70bb2b13312f0222c98f2236a410"/></dir></dir></dir><dir name="CurrencySymbol"><dir name="Block"><dir name="Adminhtml"><dir name="System"><file name="Currencysymbol.php" hash="13de8397994dd9d5b029122e465cff36"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="ae52ec3fd0f43b983fae92c66bb3863d"/></dir><dir name="Model"><file name="Observer.php" hash="1514b4080d6ac3d44df02c2f4d4fe847"/><dir name="System"><file name="Currencysymbol.php" hash="367f05a245a6fa2006191090875ea55f"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="System"><file name="CurrencysymbolController.php" hash="3e363c56b108152cc367f385d715ca38"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8e1ca98fab2043dd49184480dbffad60"/><file name="config.xml" hash="b7b4a108ce86f8cb7e9c28ecebd4ea1d"/></dir></dir><dir name="Customer"><dir name="Block"><dir name="Account"><file name="Changeforgotten.php" hash="ba049e9c7100c8b52e7ba0a84fbba6d0"/><dir name="Dashboard"><file name="Address.php" hash="0e67f221f4debb2d3b6d7ea96f326ba3"/><file name="Block.php" hash="baf0d71fed51d3fea77061cd6bf46220"/><file name="Hello.php" hash="7ba5a1e49240bb183a3e3d4d8b7d0389"/><file name="Info.php" hash="327aa0cddf4d3608190d881e8832d667"/><file name="Newsletter.php" hash="fb26ae41c116e700cde34347af903787"/><file name="Sidebar.php" hash="dd4a752f78c39271960f4b4f7bea8215"/></dir><file name="Dashboard.php" hash="e24aa55c08d84168f209dea8ade8c9fc"/><file name="Forgotpassword.php" hash="d7fbf534c030ad31ddcdc184e9451dac"/><file name="Navigation.php" hash="336bbd6fc54367ad2082712e4fa39e9a"/><file name="Resetpassword.php" hash="c0106a1e5560e80acea90aa71281c0eb"/></dir><file name="Account.php" hash="89d12fad2690f0aec56e1a6207e7fa96"/><dir name="Address"><file name="Book.php" hash="61878595ff02257c8bce1c8d6f546d15"/><file name="Edit.php" hash="0e28b0acf9298421652b2e6d08977a54"/><dir name="Renderer"><file name="Default.php" hash="72250f0dc3b33b1dc3c543ebb5d60654"/><file name="Interface.php" hash="0ad5ec47c58a0d7f742db9b684affa4a"/></dir></dir><dir name="Form"><file name="Edit.php" hash="9562c84c0b5d83402b108f5cdb3453e0"/><file name="Login.php" hash="5ab8db300476a83166b573ccf07647fe"/><file name="Register.php" hash="83db89e6f3393473fbf6115cd5732118"/></dir><file name="Newsletter.php" hash="dbfff4176a294169b15c2b0c576a18b9"/><dir name="Widget"><file name="Abstract.php" hash="4e0b801f15d0f29caaf7c762acf18053"/><file name="Dob.php" hash="007c3f46a028d703814724006ffff22f"/><file name="Gender.php" hash="f0a310f94b5e0473034c6e7165f8dda9"/><file name="Name.php" hash="de63ed393df8921fb2400581d7eae516"/><file name="Taxvat.php" hash="fc946e719a1d9c0d2edb31886f6f8895"/></dir></dir><file name="Exception.php" hash="2cd6945b5ed0ad8df7cd85a49d78a4b1"/><dir name="Helper"><file name="Address.php" hash="fa3b5ecffa944623d98fca0a67bf9b90"/><file name="Data.php" hash="308af1bb76bb12e3be5f7fbb1a36cf0f"/></dir><dir name="Model"><dir name="Address"><file name="Abstract.php" hash="388a263eb0439fee9c51441c84855754"/><dir name="Api"><file name="V2.php" hash="6bf0f8eba6435f7ebcea18ad91d34e47"/></dir><file name="Api.php" hash="f90ad05f1ac4dc21bf3d92cfc2e7b8db"/><file name="Config.php" hash="d6299599ef6f5f9d530e465fd941f23f"/></dir><file name="Address.php" hash="dfc234e05162a88923cb767ca9557196"/><dir name="Api"><file name="Resource.php" hash="a14fea3220186103998adaf4b57b8d64"/></dir><dir name="Api2"><dir name="Customer"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="d47ba822ae1e95b77ef785c7cb96cf5a"/></dir><dir name="Customer"><file name="V1.php" hash="e797c9eb22747ea3e71c2081666a6325"/></dir></dir><file name="Rest.php" hash="2f28442734cd14534d443bcee45e532e"/><file name="Validator.php" hash="91aa97c13e626e980e232f124af9efe9"/></dir><file name="Address.php" hash="3755efd3e8e3a06e6cc32c59a99f4cb6"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="aa441da4c8df572193768e8742b63777"/></dir><dir name="Customer"><file name="V1.php" hash="9e69e7be2f9240c93e5060fdc4dc4c9d"/></dir></dir><file name="Rest.php" hash="18ee350a70e8513a5e53cc75a791a315"/></dir><file name="Customer.php" hash="5befc4d047aa0c5e801d467b765ffb8e"/></dir><dir name="Attribute"><dir name="Backend"><dir name="Data"><file name="Boolean.php" hash="50e105c6362e378831e654d6e4ead292"/></dir></dir><dir name="Data"><file name="Abstract.php" hash="5b090acfd6d305a515deb4fae4a1ce69"/><file name="Boolean.php" hash="36ffce040d93fc6dd538ba6a10e76992"/><file name="Date.php" hash="6affeb45326583837f3ccf01176bf9c6"/><file name="File.php" hash="859627aa0ddf3661636da6fdbc937dd5"/><file name="Hidden.php" hash="96794439fff400e64ae2582e73f8b123"/><file name="Image.php" hash="5516e2a8247303ca8b5a7dcb3971ef06"/><file name="Multiline.php" hash="88fd74dad82a134befd7476a07355ef7"/><file name="Multiselect.php" hash="cca7871c524d5af3c56713ee0f3e90f9"/><file name="Postcode.php" hash="cbacb1d97ee0162098b335ae98c2c650"/><file name="Select.php" hash="72d282c32b67e739c5985224d1db76f4"/><file name="Text.php" hash="1b8c1cf8eb6c4b9f9b0d507ed028696a"/><file name="Textarea.php" hash="880c202b4f0be6ed7816988fd446c3ce"/></dir><file name="Data.php" hash="f17d5484625b850aa64f228f863e1d0b"/></dir><file name="Attribute.php" hash="51404baaed25d0d4c319c91b1e609676"/><dir name="Config"><file name="Share.php" hash="0b2f6c6788189fcb1d149360fc5a2d31"/></dir><dir name="Convert"><dir name="Adapter"><file name="Customer.php" hash="8387be784199e0d9d4009a88ca96f462"/></dir><dir name="Parser"><file name="Customer.php" hash="ce1866fee5e5e493305e0634cac22b05"/></dir></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="d0c31450be733788bf643d19f3377380"/></dir><file name="Api.php" hash="6cda6e73e866124daff0245d44fb2529"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="6b2ea18d5737797812be7f94e6423844"/><file name="Password.php" hash="3cf7737075c32ba0ee7b9c96ae664c30"/><file name="Shipping.php" hash="97946940b52bc5bf4609c1a81ddab681"/><file name="Store.php" hash="460913bcb43a7413c8835222c8f6e8b0"/><file name="Website.php" hash="fa22ac3e632f8996c81ebf42b43d9239"/></dir><dir name="Source"><file name="Group.php" hash="bedf76351139e053abe693b1e3ff31f1"/><file name="Store.php" hash="4301bb76b08bd104e9abbe30620197c9"/><file name="Website.php" hash="e47b9ac2f2404b07e2a410ffddb080e6"/></dir></dir></dir><file name="Customer.php" hash="2709b08be0d60fc63d824b67f288e943"/><dir name="Entity"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="c586674918f2c7fe34c23a21714241c2"/><file name="Street.php" hash="7e62be1df1e2f49905464a071d5f4f9b"/></dir><file name="Collection.php" hash="6cc1d88be61a166e572b52206786b8de"/><dir name="Source"><file name="Country.php" hash="f26bc0992e0ba9663a826579e7ab57d2"/><file name="Region.php" hash="496d518d194227c43b8a38e1aa332599"/></dir></dir><file name="Collection.php" hash="e24efd5ef06f68f4e16d3a927c9bf2ef"/></dir><file name="Address.php" hash="fa20c0682c28e23d83440a253e7cc09a"/><dir name="Attribute"><file name="Collection.php" hash="1f1f14b8090fef6383f8933706834b53"/></dir><file name="Attribute.php" hash="8e7426d7bcd44a7eb23d7bdb81d7aa2c"/><dir name="Customer"><file name="Collection.php" hash="c1cf2b3f9c06d39ef03cef96eb8c95f5"/></dir><file name="Customer.php" hash="803119477ec441d906d778a29ac312bd"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="8f8e9d5b9ab0ecb41474aa20fd5267de"/></dir><file name="Attribute.php" hash="46e3b7ee9c4f7baa04fdbfdac91f93a6"/></dir><dir name="Group"><file name="Collection.php" hash="a043931a08752c5c134b1188ce53f2e9"/></dir><file name="Group.php" hash="4c3d43a2a67ddcb39810ccc3919b61a3"/><file name="Setup.php" hash="6d09a44f2ea9b30bcbb3b4187b63547d"/><dir name="Wishlist"><file name="Collection.php" hash="b0f1243606995f4566cab43ea382a2fa"/></dir></dir><file name="Flowpassword.php" hash="51dbb4bff0ed1a9f48801e1716963b22"/><file name="Form.php" hash="0611c43f216bf036f183dbcb871f82d7"/><dir name="Group"><dir name="Api"><file name="V2.php" hash="fcb5b8ae7d1a2301487ea250f5928566"/></dir><file name="Api.php" hash="38a3c4555e4f6ce99a1cc827ab0105ab"/></dir><file name="Group.php" hash="80266a178b82b73df3a5a48261bd585e"/><file name="Observer.php" hash="6c39370435d600e06b0e3f79ec9356a8"/><dir name="Resource"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="6ea9c7109bb908c1c16701ccd73f61db"/><file name="Street.php" hash="56b41f3598f4c2c7ecc6a50cd95325fc"/></dir><file name="Collection.php" hash="288898014091fe144e5be5aa4bc45561"/><dir name="Source"><file name="Country.php" hash="ecf0938d05dba823887fc5e42ef6a5b3"/><file name="Region.php" hash="9e5d1150cc866b0ef99cc4466b9976f3"/></dir></dir><file name="Collection.php" hash="62e4249595d599c2237cbc57408626f0"/></dir><file name="Address.php" hash="3c297046dee05e831eac396957560c2f"/><dir name="Attribute"><file name="Collection.php" hash="cec5d4d3d17ec365c5eede14fc51305e"/></dir><file name="Attribute.php" hash="dee4f6777a43c134e27f2391c8d7f1a2"/><dir name="Customer"><file name="Collection.php" hash="7b5d9cd11249df00d340041a0b852aa1"/></dir><file name="Customer.php" hash="923adee1384139de3779efbec6a49560"/><dir name="Flowpassword"><file name="Collection.php" hash="9a6b31348ccb3b93988b279e42874c1e"/></dir><file name="Flowpassword.php" hash="34e33c13df841331d38f975d157ff617"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="c1000bc8e247602d0c5fb5a1bce926da"/></dir><file name="Attribute.php" hash="3cfc0049cebbdccc1863ee1f61ec26ff"/></dir><dir name="Group"><file name="Collection.php" hash="39aad0e2cf150c90149a11364f3e79af"/></dir><file name="Group.php" hash="0561b1a41a79d41dd6eaa610d37e78b1"/><file name="Setup.php" hash="b651f710efd46ac98ad14be77f0207ea"/><dir name="Wishlist"><file name="Collection.php" hash="c78daf99710071c1bf3ff3809ba5ce1c"/></dir></dir><file name="Session.php" hash="eba960837f9272820dd3c811b4932da6"/></dir><dir name="controllers"><file name="AccountController.php" hash="aa2dad9193b607be6cebc21cf2d471ab"/><file name="AddressController.php" hash="d3ffca0137453b097ef75f108ebdf0fc"/><file name="ReviewController.php" hash="5656944b28a31cd5fa318199c07cbb97"/></dir><dir name="data"><dir name="customer_setup"><file name="data-upgrade-1.6.2.0.2-1.6.2.0.3.php" hash="feca7fac3cbe6654f8cf59d2ed646c54"/><file name="data-upgrade-1.6.2.0.4-1.6.2.0.5.php" hash="647832c4cd09cff9a99b328c049d02a5"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2a025de1b773e628b6383cf957112d06"/><file name="api.xml" hash="f5746ace8ff60e2461f9cad08594e33c"/><file name="api2.xml" hash="19e97f115c6ee92b42c7abe89391252e"/><file name="config.xml" hash="af6e6910a2467beb62a7fd3f0b963aa4"/><file name="system.xml" hash="74f061fbf26dfcf1949685dde0ba6b3d"/><file name="wsdl.xml" hash="b31ebf1de4a58469781b383f455991f5"/><file name="wsi.xml" hash="4c81aee30c525677be5c38e078b98408"/></dir><dir name="sql"><dir name="customer_setup"><file name="install-1.6.0.0.php" hash="9cef8f6136fc78f4b4d3e0e5da7ddd6e"/><file name="mysql4-data-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="55afca27596de569e3770cf271c7364a"/><file name="mysql4-data-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="0ec0d8821a7861ebc612e62824f456cd"/><file name="mysql4-data-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="7a01143a71377266c28d9a79111ea0d2"/><file name="mysql4-data-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="eb7a2f08b00a46c46ebc5e4b5e7ae5b3"/><file name="mysql4-install-0.7.0.php" hash="073a2b82243d03c3dee0a4f85663ba19"/><file name="mysql4-install-0.8.0.php" hash="7ec0e7a5d9184b60460e8cf7b0b1952d"/><file name="mysql4-install-1.4.0.0.0.php" hash="e8107158a2ea47d4f2a5b3d7dee113dc"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="aea4c668c5a489ddded79e52f6496ecd"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="d60059b785a0f8b72f6b95c4f0710056"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="ec3725165f64a86d3669b6016732922b"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="674d6662d10fee5b7d98aece6778c2b1"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="9d63d9358ff29f7d60211df5ce7bb577"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="3ed58dcede30962b9a7c5dacd0fc3676"/><file name="mysql4-upgrade-0.8.12-1.4.0.0.0.php" hash="a43e736979b89f5eb2c9868688d62685"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="4c09ceb496ab6b112379412eb395c367"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="605df300a032c68e500cd3407694d6b8"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="b9a1fe49d58299dd27a25b06b066a9e0"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="551b98a30b9d4fa404cc3cd7cec38703"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="c19d75ab3ebf6c21575ce74cb9d04b9e"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="84ece67207689326a459d78c57f045c0"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="a4c872f56e6a186d3b7b3dba32e22b58"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="b69b349e40e9cac1027398c02a227749"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="4dea91739a66127219b3cba94e2d1bd3"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="6c294826144b6697f7fbb06d5f2702fd"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="c44b18c89b65bebd89c3db29e7d55e55"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="12881b3353bdf774c84e4ade1308ec4e"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="815e16a120442f793b6dcfe60dba594d"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="22d7199d02123142c614a65daadac3e6"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="cd4dce564a3360c642fa383a04fc32a4"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="cf5f6964c564db0b734efd972b60d3d6"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="19b9cbd25ceed44dc0e266ff595b7be8"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="df8b0a3a64709d1e9fceed7e63a0c117"/><file name="mysql4-upgrade-1.6.0.0-1.6.1.0.php" hash="9a5f9455c52787754a295b744cfef400"/><file name="upgrade-1.6.1.0-1.6.2.0.php" hash="50d8533c47f2132dcb2243075e4d08fe"/><file name="upgrade-1.6.2.0-1.6.2.0.1.php" hash="9b97e97f08c4646d03b7e815a82a9b5d"/><file name="upgrade-1.6.2.0.1-1.6.2.0.2.php" hash="d60e281680e6e16883a965d5e14d7b07"/><file name="upgrade-1.6.2.0.3-1.6.2.0.4.php" hash="003018918552502f79cdcc34b6bbf157"/><file name="upgrade-1.6.2.0.4-1.6.2.0.5.php" hash="d38c7088d83b749eafebbb0e8851ad8d"/></dir></dir></dir><dir name="Dataflow"><dir name="Helper"><file name="Data.php" hash="1fdea0e174b3730296c3ddc328196a49"/></dir><dir name="Model"><dir name="Batch"><file name="Abstract.php" hash="fd23e6b3cbfe4da17658329ba7e59994"/><file name="Export.php" hash="43ae83020d1cdc35475f4d150226b7ff"/><file name="Import.php" hash="f742e941a5bb5ede722d9085c25ff639"/><file name="Io.php" hash="d40c451ba9f6e1ae84d0476550fcc3e8"/></dir><file name="Batch.php" hash="5bf3c5dca0bd8530fbb322158e38321a"/><dir name="Convert"><dir name="Action"><file name="Abstract.php" hash="7e3e7b4ea99d210915079bd31f2f3522"/><file name="Interface.php" hash="160689c2b8b12312a090c187c6faf58b"/></dir><file name="Action.php" hash="031eb93d6002c0d613cf92888f2b0cbf"/><dir name="Adapter"><file name="Abstract.php" hash="1578acfad442cb78e4e57eb59c9f443c"/><dir name="Db"><file name="Table.php" hash="176370740cf20e649a3947556bc58af1"/></dir><dir name="Http"><file name="Curl.php" hash="e8106211ec7445d473c6a22097338084"/></dir><file name="Http.php" hash="976aa4d60aa89e4390fdec405f835688"/><file name="Interface.php" hash="df6db8dbb63f6cf9e02f8ef10d460e94"/><file name="Io.php" hash="4120750233bfbf501c0ea9e13c42b880"/><file name="Soap.php" hash="bbaefa528a9a1211b2bc45af68516a40"/><file name="Std.php" hash="6fbfaa53dc8272fc6941f8f255f8294a"/><dir name="Zend"><file name="Cache.php" hash="ac643dff5561eca359ddacad02f08f72"/><file name="Db.php" hash="b47e0be7c6922c0c525847a85c06c0c5"/></dir></dir><dir name="Container"><file name="Abstract.php" hash="3630bc5459578ec354c6df54497b2416"/><file name="Collection.php" hash="a6983b1f64b4a9d39f27090edebd87cc"/><file name="Generic.php" hash="63d972f7bce17c1761d2143b7b6732ff"/><file name="Interface.php" hash="7f87e3e7972885873d838bd240910fb5"/></dir><file name="Exception.php" hash="61bc3e9b6804d16fb4bf8c7c262261aa"/><dir name="Iterator"><dir name="File"><file name="Csv.php" hash="dce5cbcc3a0aef340341f34f9da3ea84"/></dir><file name="Http.php" hash="a676225e183d4c762f2e15ce0a65d9e5"/><file name="Interface.php" hash="af18c639837b0731047d8ddabc2c9149"/></dir><file name="Iterator.php" hash="60c16c540872c57b982cc3ceda467edb"/><dir name="Mapper"><file name="Abstract.php" hash="e0a579ef8cfab6c64864cdb119c266a1"/><file name="Column.php" hash="8857eb854002f10bff01597311e34cb2"/><file name="Interface.php" hash="6194d09f65443cf192e542c61115149e"/></dir><dir name="Parser"><file name="Abstract.php" hash="ba37a77629fd51118edfc78676958d2d"/><file name="Csv.php" hash="68234ad054b3722f0f7064a2643f72aa"/><file name="Interface.php" hash="25171296a4542a4f876289e6accc347b"/><file name="Serialize.php" hash="35be8c7ddbd667c089f0f86ddf0e2080"/><dir name="Xml"><file name="Excel.php" hash="caf045b4b68639eb5cff140bd8e397a2"/></dir></dir><dir name="Profile"><file name="Abstract.php" hash="15d52152035d00c6dbc9366433ef108d"/><file name="Collection.php" hash="7f3d1fd3a835ac2dd7dff65ff718c2e7"/><file name="Interface.php" hash="7ca8b17d3d67fc3a4a494164c4dbddd6"/></dir><file name="Profile.php" hash="230be1c96c5a278b602cdc61a4ae39f5"/><dir name="Validator"><file name="Abstract.php" hash="b4744ebc94dbabb5f534c6abb2a74941"/><file name="Column.php" hash="839ecc00664ea72596535941ea6d4a86"/><file name="Dryrun.php" hash="fcf2f0544d72de45bec56da7eabe8fa2"/><file name="Interface.php" hash="7a0f10e413ec1d5b29648d0c5a334f05"/></dir></dir><file name="Convert.php" hash="8de6dcd43e60bf2fe92e8eab6bc947e6"/><file name="Import.php" hash="a7d92a1172d905025782e74818d4597e"/><dir name="Mysql4"><dir name="Batch"><file name="Abstract.php" hash="752d16874995374c2c8af2552bef1da2"/><file name="Collection.php" hash="79285892db5f4b8a5650655d3804d638"/><file name="Export.php" hash="cfa105f56392fa706fd1013ab9092e0d"/><file name="Import.php" hash="8494b1cf0278c8cfabfd1b98749cc058"/></dir><file name="Batch.php" hash="72c04f2d1174b5bb75a6bb50fbf45ce5"/><file name="Catalogold.php" hash="d3981560091ae700301fdd6c2665df68"/><dir name="Import"><file name="Collection.php" hash="e5ebee9cd2a99ac025d27cf65145befe"/></dir><file name="Import.php" hash="1b4430c8d33d1f8aafd26efe231d0b88"/><dir name="Profile"><file name="Collection.php" hash="a51f9af9cc6846683b35b62101197966"/><dir name="History"><file name="Collection.php" hash="80fef54f0d51615318c0f2d789f4b0c2"/></dir><file name="History.php" hash="4308271512c6c609043f2c67afb2ff15"/></dir><file name="Profile.php" hash="5413056151f5aa5006a01bdc2a86aab5"/><file name="Session.php" hash="7017ffda96f2077742823b871f326824"/></dir><dir name="Profile"><file name="History.php" hash="044e20bbf78ccd9f3b41ade4f83f40f7"/></dir><file name="Profile.php" hash="0d09c2e8442badb218d63762d8298006"/><dir name="Resource"><dir name="Batch"><file name="Abstract.php" hash="165bb960709dc9a1779bbc3107be35d4"/><file name="Collection.php" hash="b888e03dfd358b875c6379d5908b8fd1"/><file name="Export.php" hash="edcd61f7d3b7e55625fd65937b2bce50"/><file name="Import.php" hash="492bdf5207e2bd47d89ed44ebcf68f2d"/></dir><file name="Batch.php" hash="73b8b047bff11fd36711565c0831e344"/><dir name="Import"><file name="Collection.php" hash="f23c2b9896010f2d29217bca4337dc05"/></dir><file name="Import.php" hash="7492a797188c5217b7f7f081ce3c6bbf"/><dir name="Profile"><file name="Collection.php" hash="b5344c80512b42ad76adddc968d62ee4"/><dir name="History"><file name="Collection.php" hash="c5a9b79bb6cd4c8efb3a1bb9619f9851"/></dir><file name="History.php" hash="5d98ab9812ced4d61930501ed132d0b6"/></dir><file name="Profile.php" hash="765a490eaf63a3f66fbd605b09c498e3"/><file name="Session.php" hash="64a2ea86a9a86535ec95e218f4d8d5c9"/></dir><dir name="Session"><dir name="Adapter"><file name="Http.php" hash="dce812ccc3d20708695b23814451339d"/></dir><dir name="Parser"><file name="Csv.php" hash="714546a1a33d073d1559aa0d52741cd8"/></dir></dir><file name="Session.php" hash="8cc8e54cb2da750de3a09a44aba078db"/></dir><dir name="data"><dir name="dataflow_setup"><file name="data-install-1.6.0.0.php" hash="1514d8ed9b1a6cefb1802cb69735d8fb"/></dir></dir><dir name="etc"><file name="config.xml" hash="e5b0109594ed65ab8b91a0b3c568ab51"/></dir><dir name="sql"><dir name="dataflow_setup"><file name="install-1.6.0.0.php" hash="4ff648a208e6d6ab53a59a492cd9748f"/><file name="mysql4-install-0.7.0.php" hash="352eb76911fef6400f0c2f10af3ef66a"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="f821c26ec2575b8d11370151b2f6b2a6"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="504a8bf9388470ab7a89854e2d38afb9"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="d348338b0296c64900b3c9097f3bad8c"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="843369d2d103228cdd5f6bb273f53449"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="5cb5811e29106b888837c871422fa55c"/></dir></dir></dir><dir name="Directory"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Currency"><file name="Base.php" hash="7b08c40922a73bf0871d24c1854b1dbe"/></dir><dir name="Region"><file name="Updater.php" hash="e3712fdcc9b865c169786c93053755b1"/></dir></dir></dir><file name="Currency.php" hash="fefe19f1439a528b3e0ac7ef7268f2e6"/><file name="Data.php" hash="6321773e625f3998835e1ec2b32dc7a3"/></dir><file name="Exception.php" hash="d67a505c11f1dddbdfd7cd3a8a8fe6e3"/><dir name="Helper"><file name="Data.php" hash="75acbc20d057975436095d3d992cde87"/><file name="Url.php" hash="222097e0090d97a8709ae16773c695c8"/></dir><dir name="Model"><dir name="Country"><dir name="Api"><file name="V2.php" hash="e9f0a9d34c6d3c443fc8276adef146b0"/></dir><file name="Api.php" hash="1e1ce2a1edca715cec58a581dfd6c6e3"/><file name="Format.php" hash="8968793939ebc87884f8154ad648ff84"/></dir><file name="Country.php" hash="8a4bfb9c15a46089606fb8473efacfd3"/><dir name="Currency"><file name="Filter.php" hash="f6c19c24e3f2038a114b8a779e330d53"/><dir name="Import"><file name="Abstract.php" hash="e288877f73d8687fd63b2cd686430e51"/><file name="Webservicex.php" hash="914b4dd8e3b43a22cf33a8a2e69c6447"/></dir></dir><file name="Currency.php" hash="17bca467bcafc0d2f62886b7d74ad807"/><dir name="Mysql4"><dir name="Country"><file name="Collection.php" hash="361e36cc98ad3606e19cf919c3af2e74"/><dir name="Format"><file name="Collection.php" hash="31ac3c24221d5129c7d04cd9ce2a975a"/></dir><file name="Format.php" hash="d701b2af4a8e0f57c42b0c7384bee137"/></dir><file name="Country.php" hash="592018cde3012cee50fac41f8add98e6"/><dir name="Currency"><file name="Collection.php" hash="b80c891e0ec38e91241519a251dcf635"/></dir><file name="Currency.php" hash="2dfc39ce7a45b290d5f17126a5c87d16"/><dir name="Region"><file name="Collection.php" hash="02e649afa179cc8d7234029449b8ca5b"/></dir><file name="Region.php" hash="51d3418d30aa2fe179e79c5d6f27b893"/></dir><file name="Observer.php" hash="8129af260054edfde1c843a355b9c1d1"/><dir name="Region"><dir name="Api"><file name="V2.php" hash="668dea54913e326f06422d2153b85825"/></dir><file name="Api.php" hash="ffe3801152efc05e0cc80c7b5bfdc12f"/></dir><file name="Region.php" hash="9f2ae1307623f31b3a4d1d2d928058c0"/><dir name="Resource"><dir name="Country"><file name="Collection.php" hash="bc1ae4be720a5d08de42b76d9cf823e1"/><dir name="Format"><file name="Collection.php" hash="37d5772a3275f9e36caca650e9de9a8d"/></dir><file name="Format.php" hash="cc98e98b45237bc5d4f6c0deaf1fc636"/></dir><file name="Country.php" hash="ec6de55ee9c2fcf2ebc9bb059251e0ae"/><dir name="Currency"><file name="Collection.php" hash="25f76c9c7204317c2764e2ad51016e1e"/></dir><file name="Currency.php" hash="8b3aa937afd7fd477115b185ba2fa3d6"/><dir name="Region"><file name="Collection.php" hash="6f55b81e54b701de14fdf2be6cffea09"/></dir><file name="Region.php" hash="8dd90ca847955f34e6f21c879901d2d3"/></dir></dir><dir name="controllers"><file name="CurrencyController.php" hash="74f7ad501efc682d049e97621065359c"/></dir><dir name="data"><dir name="directory_setup"><file name="data-install-1.6.0.0.php" hash="d7019de4f63de341b24ad8d22298cca4"/><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="895bb4df1c2e5dd6723d4c11ba2d90c0"/><file name="data-upgrade-1.6.0.2-1.6.0.3.php" hash="2076cd590ef9b0a72eb3db5337d4ec61"/></dir></dir><dir name="etc"><file name="api.xml" hash="8a04708f245cf96136cae7cb939258cf"/><file name="config.xml" hash="65ff14484566df4a65065d7ff3cfc23e"/><file name="system.xml" hash="a34e06df3583f0649c1e97106b83288a"/><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="06f2d41192983cec26d1170dad144afe"/><file name="mysql4-install-0.7.0.php" hash="1328a0b0df01701ef128bd6f88b93a26"/><file name="mysql4-install-0.8.0.php" hash="492ec193494d9fb5b813535cfed6c18e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="dca446f5c8c935146527df381f51ced9"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="7b4273fa56c2e4f5972e2d2059cb520a"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="7a91e56dd0c0c5a51f0ca899d7f8d119"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="11626a7ad520d4734121c8e73251bc8a"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="d04f987ad4c937db4564eec054da8059"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="36590ddf37cebf23daec18c5fa7893f5"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="5a4617ae5d44d79ae5356372cd5b5afd"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="5c9bb4011e05525cdd708406e856fdb9"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="d73ce9dd2b59ca1e68e38249cee70975"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="497ead4a413964cb78cb8d10e7641795"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="205d0bf29bcc4eb66055b9f3a5f7243b"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="9e83b8e534628415fea6842cb0e47d02"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="8dc867bed7b7c6e1b4a0fdbeb6bad812"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="1183ec6ddf2bd1b6eb2e1a7da84a1071"/><file name="mysql4-upgrade-1.6.0.1-1.6.0.2.php" hash="2faf91c81950ecb9afdd466637bd3d13"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="19ccf96a2c1adb4fc3593b0f993b5e6a"/></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="0894765db9e0784743e18da0e9199d36"/></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Downloadable"><file name="Links.php" hash="dbf41e7f8d650af681e58d8a63cb590b"/><file name="Samples.php" hash="e084e44714479a6539ad2d7d1c4cab5b"/></dir><file name="Downloadable.php" hash="2ae804be8eb5cb17ae93eb48d7037cba"/></dir></dir></dir></dir><dir name="Sales"><dir name="Items"><dir name="Column"><dir name="Downloadable"><file name="Name.php" hash="a981178381039bb88f4aaeada8874d4c"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Links.php" hash="098d2cefab7227eb521d6e23607b42f5"/><file name="Samples.php" hash="af2ffa45b8d6bfd580bf4f9c6e65129d"/><dir name="View"><file name="Type.php" hash="70541d8f7d4613cefb9160e5a2ec3477"/></dir></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="28a6c9641376ea3ba04a8b9f9afff08d"/></dir></dir><file name="Success.php" hash="98fc15e65d6a70bb9a5e1ad6dac68bd6"/></dir><dir name="Customer"><dir name="Products"><file name="List.php" hash="99e755ca46160be97802dd4f9ff2eae7"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Email"><dir name="Items"><file name="Downloadable.php" hash="00e13a60f0f2c6a3e1d7655a02594b54"/><dir name="Order"><file name="Downloadable.php" hash="589b20168675a5a989af0fcee4cd31ef"/></dir></dir></dir><dir name="Item"><dir name="Renderer"><file name="Downloadable.php" hash="c09cbd14d85e1ccced0630b2114bff8f"/></dir></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="9f640dadb85b46159ad3d3bd556c1b54"/></dir></dir><file name="Data.php" hash="9ffc79ed8e3d1dd6486903334c92cb8c"/><file name="Download.php" hash="690e613aef32ae2440f29923403cbaf3"/><file name="File.php" hash="82afcb0b81efa91d77f4ad716d7a3001"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Downloadable.php" hash="3dd4cfe071f320459ee929dc27798d24"/></dir></dir><dir name="Link"><dir name="Api"><file name="Uploader.php" hash="551bd50f442a61550fbf5a7b09e70804"/><file name="V2.php" hash="0dc2d683b7806823c8f6e95043ecfbc0"/><file name="Validator.php" hash="c9ec8c468ea80cadabdd9ad709c0c31f"/></dir><file name="Api.php" hash="4362e6bfcfce8b4e936ee9ec6c6d90d8"/><dir name="Purchased"><file name="Item.php" hash="4b929ce508290f2566835e2e05afa802"/></dir><file name="Purchased.php" hash="513f1e1a7e766a9dd6cf6f81d9622b80"/></dir><file name="Link.php" hash="149a267c4def220c9fb20271e0c3f8f5"/><dir name="Mysql4"><dir name="Indexer"><file name="Price.php" hash="a84b42aab89569670b21fc8ead61fb6e"/></dir><dir name="Link"><file name="Collection.php" hash="9a7d878b591a2d4f557034cb4e6056ee"/><dir name="Purchased"><file name="Collection.php" hash="f75f55be4ec4c99e9ba9a9ba1a4b1df0"/><dir name="Item"><file name="Collection.php" hash="1d7d940a928131b10ae7d4d97fd6cf37"/></dir><file name="Item.php" hash="64dbdde2da976db76b09b4ec62ee3919"/></dir><file name="Purchased.php" hash="1f1819639cbe039f91dcd51a10f488ed"/></dir><file name="Link.php" hash="212849e13510868a08acdd6d4b8571ef"/><dir name="Sample"><file name="Collection.php" hash="01b11e2a969820577ec0b7460e6eed50"/></dir><file name="Sample.php" hash="3d74e9b5ca2077ce1208bf467c8cbf3e"/></dir><file name="Observer.php" hash="e357c3defc958384cb957ee2e780e02d"/><dir name="Product"><file name="Price.php" hash="a96d7d249ffa339848e01578635be53a"/><file name="Type.php" hash="a1d0980c294b9e410596106108cbcfe2"/></dir><dir name="Resource"><dir name="Indexer"><file name="Price.php" hash="e7be2efaf4d1d49fe4af7b8d8d94a852"/></dir><dir name="Link"><file name="Collection.php" hash="55b61bfc4d1199f9dea54b469da79fcf"/><dir name="Purchased"><file name="Collection.php" hash="9a57a12d104d2bbb04c3d38f5faa4b14"/><dir name="Item"><file name="Collection.php" hash="43fe275af4aa4241c52526d0553ef2de"/></dir><file name="Item.php" hash="cbb92d4603e88fc9725786532d151b30"/></dir><file name="Purchased.php" hash="308941508ffe151fcdc51aa969ba7e4d"/></dir><file name="Link.php" hash="937047d7fc134c56fec25b5b8520229a"/><dir name="Sample"><file name="Collection.php" hash="9c4256a354085ac41522fe33c2814660"/></dir><file name="Sample.php" hash="a1351635f703ed8be972515f9044137b"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="cdc0b36559ee086a9aae7cd5305cf16a"/><file name="Creditmemo.php" hash="e99f489a160c8435393423fb90ff5986"/><file name="Invoice.php" hash="2a5e2e39d5d8c836c81d729a96550d87"/></dir></dir></dir></dir><file name="Sample.php" hash="b8082fcd39b6970e5f67f4710c6bc525"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Contentdisposition.php" hash="e5a1e6ba692e80c7c6da3db851912b52"/><file name="Orderitemstatus.php" hash="e5e0acf837fe03bf6b81f15171e5f6cd"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Downloadable"><file name="FileController.php" hash="b9249be12b6b185500f7da4908657bdd"/><dir name="Product"><file name="EditController.php" hash="ec6515453a5adfc23e900e12f073316b"/></dir></dir></dir><file name="CustomerController.php" hash="5caa09a747d68f6693af16e008cfdae2"/><file name="DownloadController.php" hash="f872bab9afdcbd0940bc9e44ab2a5938"/><file name="FileController.php" hash="14caa8c0fc4ac11d2d096e2c6615264f"/><dir name="Product"><file name="EditController.php" hash="d3e08a7942812426fb07836213364517"/></dir></dir><dir name="data"><dir name="downloadable_setup"><file name="data-install-1.6.0.0.php" hash="89fff0d4db1333c703acd652fe0fb08f"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="9fd63bbca8e244b79c61cb444843653e"/><file name="api.xml" hash="b6f1baaa298434a18dc214fff32a8847"/><file name="config.xml" hash="c5effe8c17268426fac8bf7542a33149"/><file name="system.xml" hash="fbaf7e3ca4dd90b05e9cedc814a00703"/><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="3eb4477e6935eae2720f444fef195c9a"/><file name="mysql4-install-0.1.0.php" hash="cd480dee92186ef67470a6caa3a4d0fe"/><file name="mysql4-install-1.4.0.0.php" hash="a9b8d2479225ac1e452505f4fe7d50a2"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="2781d18502c9ba94eeb48145941d6832"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="1ad6d60b409f3039a431648fb2070da8"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="faea32d564461a3f947fe09878df78df"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="221e093c9667643a92b655a7e40930d3"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="8546536e9110444a25d7e5adbee8d42c"/><file name="mysql4-upgrade-0.1.13-0.1.14.php" hash="2f54141b81010abd0122c5988585b379"/><file name="mysql4-upgrade-0.1.14-0.1.15.php" hash="762800a3acc5cf604c0d89e827117993"/><file name="mysql4-upgrade-0.1.15-0.1.16.php" hash="237592e82b8d0ad00596ba93f4de16e1"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="45d577110c8ac3bd6062a57b7a8c6434"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="63430cac137876118649136f438c2fa1"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="5e8bad9feee32515835887d9ac4de452"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="d61d3fc9096637380f5c6fd14694e421"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="46957e0a002a5bb4b679bfcb6f7fff4b"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="01776c5e746ea853dbcfb210fa44c15b"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="7218ee35b7aaf93aac82e676ac658253"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="a12179cadff16fcc047556f52118ae14"/><file name="mysql4-upgrade-1.3.9-1.4.0.0.php" hash="b0c1d1fdaedfbb57f014c34ad3464174"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="ac887d712d06ea77791f3c578935f954"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="bcc9357c627be89ada2c573767c7d6f5"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="087374b707e0db89d8c61d82b401dc67"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="61da820a8d06e8681178e26538871962"/><file name="mysql4-upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="42684744f395dc228cf2f6bdad4839ca"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="ab18f618d263990ffe708a91b4d7952a"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="d1910ca64ede8998a179c384da9ec77e"/></dir></dir></dir><dir name="Eav"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><dir name="Edit"><file name="Js.php" hash="e111610ff9541d8da03f6421a0e2cec2"/><dir name="Main"><file name="Abstract.php" hash="8186b26de7d833842625487e3ea16768"/></dir><dir name="Options"><file name="Abstract.php" hash="b72f6081fd8b0afb8e5991ffce05995a"/></dir></dir><dir name="Grid"><file name="Abstract.php" hash="9c3c278d4a31e3a3ff65604b939984d0"/></dir></dir></dir></dir><file name="Exception.php" hash="90d0503f251cc73702a4599892807ee1"/><dir name="Helper"><file name="Data.php" hash="a233a736e818e1c3ec5c4f63a56b0420"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Inputtype"><file name="Validator.php" hash="5cc0f6d86bdfedfa12febb22925a0ac0"/></dir><file name="Inputtype.php" hash="e082282a8f60de87c61905ac9b35603e"/></dir></dir></dir></dir><dir name="Attribute"><dir name="Data"><file name="Abstract.php" hash="a66de8031e3939d9a7b51bcd60d03b1c"/><file name="Boolean.php" hash="c5e66fdfc9b4e5f651f0cae1ed34601f"/><file name="Date.php" hash="a8b3520999890cde32670c1dada4d5cc"/><file name="Datetime.php" hash="652c82c49213bf7e8cf22ed67b499761"/><file name="File.php" hash="a185e6f012e7790ecbf0a60747cebc31"/><file name="Hidden.php" hash="9d0e59cfba62065ac176cf35a0cd4ad2"/><file name="Image.php" hash="9154140e693f42b0000060c48ec2bd26"/><file name="Multiline.php" hash="8321ea6a682198a0590bf997d47fa818"/><file name="Multiselect.php" hash="17f9f8d8edf19fa8374f524492707bb0"/><file name="Select.php" hash="5547a85555bee4af0891c0326caeaa5f"/><file name="Text.php" hash="3765daefe88e6c6fc0736b92c14744bd"/><file name="Textarea.php" hash="fbbb8227aeebbea724158932d9e74b27"/></dir><file name="Data.php" hash="db29d370563c0a9fcbe6db11278c5ef4"/></dir><file name="Attribute.php" hash="750b28994722deaf4773c426e3bbdb81"/><file name="Config.php" hash="61dcd06cf981da4148a496095ed9999e"/><dir name="Convert"><dir name="Adapter"><file name="Entity.php" hash="ba19a83ab3c4d6d81a993cc987d60861"/><file name="Grid.php" hash="53137d67d98126fa16015d2f6aa91fb2"/></dir><dir name="Parser"><file name="Abstract.php" hash="f68f2b73ee799d0fb0e66eed22e5b4ae"/></dir></dir><dir name="Entity"><file name="Abstract.php" hash="f2d68bbd384cfb9a94a46110f93d3a34"/><dir name="Attribute"><file name="Abstract.php" hash="03bdae94fe40321a79346b90809bfb05"/><dir name="Backend"><file name="Abstract.php" hash="f70e765bbad62e1f2843fe61286da22b"/><file name="Array.php" hash="bd5f1380d5684b55bc7c41e7affe87b5"/><file name="Datetime.php" hash="039a7d453555865987fa99bc030650ad"/><file name="Default.php" hash="41e3e76508a74a269e24d344f1736063"/><file name="Increment.php" hash="6c4029b7bb31e20eaaf25b48d1c23620"/><file name="Interface.php" hash="3516ef5fac97e320663fbeaec2c36630"/><file name="Serialized.php" hash="1cdb9da249a1c6184f0679c2e6ee132d"/><file name="Store.php" hash="6c2f6b25b3857c2ca11f8c8621316d45"/><dir name="Time"><file name="Created.php" hash="635caac539e4a3f3befd5915ff22c22e"/><file name="Updated.php" hash="72c69bc4982cca60458cf8aa8be0100c"/></dir></dir><file name="Exception.php" hash="fa0c1087b1754911bc1002fa4dcbd3a5"/><dir name="Frontend"><file name="Abstract.php" hash="2d4f352d54fe128408e84eea2108a8f4"/><file name="Datetime.php" hash="0ec5e78ecbadc2f49f6794d5f13ffc6d"/><file name="Default.php" hash="7c04d0aefe06db1801b6ebd5e8009f20"/><file name="Interface.php" hash="7045ac648860ea9777c3672994f01402"/></dir><file name="Group.php" hash="35b73d513606562e1c26a8d633ee8573"/><file name="Interface.php" hash="ebf16f3b89e8d303066f93b04a3dd572"/><file name="Option.php" hash="f87e1f2ac338d69e138a8e102a5b79b7"/><file name="Set.php" hash="849304f98cbe376135f5b46777fd5ae2"/><dir name="Source"><file name="Abstract.php" hash="9a088ed28d5bf9d9a0c1d47cae41c21d"/><file name="Boolean.php" hash="a0df0b2a34652d4c1d052aae2eaeedcd"/><file name="Config.php" hash="1cb9fa529afbf479ae0603d24059e146"/><file name="Interface.php" hash="e86c52e52d253d457d07838ae4278def"/><file name="Store.php" hash="e1606486a0ae95608f32b166b4bc203c"/><file name="Table.php" hash="e0ba018335460224bc054b1e11017371"/></dir></dir><file name="Attribute.php" hash="bcc446c95cba311bdd136a72490406f0"/><dir name="Collection"><file name="Abstract.php" hash="77cd02aa8ffb7c3b1de94ec4e251e5f7"/></dir><file name="Collection.php" hash="6cd9f1648a555236415eff843cfc7583"/><dir name="Increment"><file name="Abstract.php" hash="129ae78ca7e9587c82ecf68493c28488"/><file name="Alphanum.php" hash="4ace6f294fd56324ead9280b750199b8"/><file name="Interface.php" hash="dbf133e915f3c83d5d78617a36ce5b25"/><file name="Numeric.php" hash="f5c15ab5dd37e924e550a26eff7858b1"/></dir><file name="Interface.php" hash="5026d91d095260e7fbc02593153e4119"/><file name="Setup.php" hash="ca5fc860a541579c2a377eef27343481"/><file name="Store.php" hash="766083efaeb910f345b8952e490d0f91"/><file name="Type.php" hash="21ed5eebe04063e9c53e723df428e611"/></dir><file name="Entity.php" hash="e9c6fc41c9af70fa6bfc8f6b44b21c87"/><dir name="Form"><file name="Element.php" hash="64a50406a287ff40131f7460e6146c7c"/><file name="Fieldset.php" hash="6e75ee889f1e325aff2d25a07e4d4818"/><file name="Type.php" hash="ba1ebf5272e9c240c343bc4a7e4893aa"/></dir><file name="Form.php" hash="3cd05f0ffdf75df618f8dfeb40f98588"/><dir name="Mysql4"><file name="Config.php" hash="5f01884e468826c3d08f13926d507d65"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="97385b005eb72354f07e92221113a36a"/><dir name="Group"><file name="Collection.php" hash="11fbd8ded000475c8717a49e3f8626de"/></dir><file name="Group.php" hash="60d686a0702799432d2c465caa1ea93d"/><dir name="Option"><file name="Collection.php" hash="e84bd88dd75fd712dbddbc8da75abcd9"/></dir><file name="Option.php" hash="e1ccaa55c14cb3bce2b6083787db1f32"/><dir name="Set"><file name="Collection.php" hash="c6a40d529c8ced03c78c5fc13347b640"/></dir><file name="Set.php" hash="7fdd8e62698ace513580df5f9bc95bf7"/></dir><file name="Attribute.php" hash="c0d82dfb29ab31342f75b645d7fc30e3"/><file name="Store.php" hash="630c32bdc20b06dc1c43fdc1698e7499"/><dir name="Type"><file name="Collection.php" hash="7b590fbd73e436b99b35bb6bb1d688fc"/></dir><file name="Type.php" hash="ca5c45a35f9df6ecb5cbc28b1040f82d"/></dir><dir name="Form"><dir name="Element"><file name="Collection.php" hash="a13be45c67a1e33634fd38df029a1839"/></dir><file name="Element.php" hash="48670c378944766edac7d0006b917b65"/><dir name="Fieldset"><file name="Collection.php" hash="f7eed336eacbc256bbb0d8bf0c0afdac"/></dir><file name="Fieldset.php" hash="c3d3bb69b83d034d10050c42e3bce9b4"/><dir name="Type"><file name="Collection.php" hash="3637ad4471ca55be96456388c0f36a88"/></dir><file name="Type.php" hash="efd60e3460c9f8fb30a6fb62e5c3d5b4"/></dir></dir><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="17abf7a6f156c8f80dfdffa032850140"/></dir><file name="Attribute.php" hash="2340ccf889b5f48830d7a6148d69da5c"/><file name="Config.php" hash="8c407fe896868d3b3b4e8e897035ebfd"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="6803e5e0fa5ea90ff353c0bf38abb8ce"/><dir name="Group"><file name="Collection.php" hash="ab6870d285a3df0b8f994ba7cb4bea91"/></dir><file name="Group.php" hash="cfd1f47bf0e496759dccd0c2a5a36bcf"/><dir name="Option"><file name="Collection.php" hash="6533283a70f39ea05fe01c0716bb1f73"/></dir><file name="Option.php" hash="e237ebd715ac4c63a7370d94fd40feeb"/><dir name="Set"><file name="Collection.php" hash="4032058099eb85d1542c4cfc96696b05"/></dir><file name="Set.php" hash="bc1271b01f7864437d9dbb83be87ff4a"/></dir><file name="Attribute.php" hash="28bb3100686c4c832ad9a204db9b6aff"/><file name="Store.php" hash="3f36d70264bb4d42e1012589d6261718"/><dir name="Type"><file name="Collection.php" hash="100029dcf73d834d69ec5c5417c4d901"/></dir><file name="Type.php" hash="9e133119fb3c3aa75b3d562bf4ece19c"/></dir><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="40eb9aafc156ba2cd959399fe9f4fcec"/></dir><file name="Attribute.php" hash="67f7a51de22ecc55035950bdbbf694b3"/><dir name="Element"><file name="Collection.php" hash="6df54dcb319d3a77a49f2acccc094e2c"/></dir><file name="Element.php" hash="13d34cf5e6cdcf46640ad2c00a34047b"/><dir name="Fieldset"><file name="Collection.php" hash="0f0afba198e0f953d9b1b30e2465f856"/></dir><file name="Fieldset.php" hash="a6f4eda9c69520a783aa5594637f2d31"/><dir name="Type"><file name="Collection.php" hash="c7d728935fd9e8344188512c0b5c2ab0"/></dir><file name="Type.php" hash="741d13f3e162ec39a565dbb7954217e6"/></dir><dir name="Helper"><file name="Mysql4.php" hash="93012ab2f097afc5be2603394a77c929"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="7b6bbb092b813b7ed1685fc90bb0278c"/></dir><dir name="sql"><dir name="eav_setup"><file name="install-1.6.0.0.php" hash="8ab61d8cc587d1988e18d6aa151a3ca9"/><file name="mysql4-install-0.7.0.php" hash="158bbc3301ac32e21a5319712de73c90"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ba384a11f5d959eeab936a8b39d98e23"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="7ebc2d585da738aaa1751f85424a4299"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="c20b0734054479cd52b737f65438a133"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="9a034c3ac269ad8a384fe343b4f3dab3"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="a3d1275adf82f5333a1be05d8a2ff4c8"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="ac2bbafcbdc0fafdf2c2112f556065fa"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="d25b8a3206748c71086bef0d2a25e564"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="1fd4bcc59e4cbdad654755f240c6487c"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="1b1f00eb5aec31cd42014e6c2aca8edd"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="44733ed20b470c33c2893859dbdccc0d"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="167c35eeead204ce6f309aab0097be27"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="384cdcd74258e6d0679b0e8859e5e93f"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="f6594fe7d11cc47d986c07d025a79705"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="e6f3f4292afd260ce74d62e8b0182749"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="cce9cc325e8e6f2e9db272514fa20530"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="7252a54a41d129578d7e1d0d30762d41"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="a1133b7360a164e99c998f0e2b005292"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="8b7af1d7a138dc5727eda03d74a38c68"/></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="ddf91ae09144bd4477e695a8597739f9"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Create"><file name="Form.php" hash="61d7667bfe5e37aa2834c71350a70be8"/><file name="Giftoptions.php" hash="73f5dfd0b1d79036878b92d168ee4d02"/><file name="Items.php" hash="cf7479ae2dd0b398f0b2a4cdad24cf03"/></dir><dir name="View"><file name="Form.php" hash="251d47716a3599106e7cae5ba6bd5230"/><file name="Giftoptions.php" hash="70de447d18a4a2d42db1f32fb9ba7b4a"/><file name="Items.php" hash="83b830d0d32564dc0dc9039b1c0553c4"/></dir></dir></dir></dir><dir name="Message"><file name="Form.php" hash="27267f2c93174a27d343e3a7bbcfc7c5"/><file name="Helper.php" hash="3344e122f503aa1a106d7daa63322d95"/><file name="Inline.php" hash="07aa797aaafcbee8a63988c6b4ab4720"/></dir></dir><dir name="Helper"><file name="Data.php" hash="8c2be88f8505415f7e8d4b8acb538030"/><file name="Message.php" hash="d4b16096e2cc7ffe24bc371045628ede"/><file name="Url.php" hash="c6601416aa9189328b2dac5d638b916a"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="6737516b648d9588b4e62ac357edbda2"/></dir><file name="Api.php" hash="880b3dd0fdb5519547eb77e6db4d100a"/><dir name="Entity"><dir name="Attribute"><dir name="Backend"><dir name="Boolean"><file name="Config.php" hash="4848816a65ba47d8f40a8a010753ae9a"/></dir></dir><dir name="Source"><dir name="Boolean"><file name="Config.php" hash="db4a118235474d7dc65417352df58a7c"/></dir></dir></dir></dir><file name="Message.php" hash="851e3d40ded2aa686e0f65fa30fdfcda"/><dir name="Mysql4"><dir name="Message"><file name="Collection.php" hash="c3c99aa63e76725a6902aa7d1b3f3b05"/></dir><file name="Message.php" hash="5757785d2d3af7d723e80b635fabf607"/><file name="Setup.php" hash="f3417a53889d6bafe5971b00a207faf3"/></dir><file name="Observer.php" hash="945557910044d203095cc697cbdbca6a"/><dir name="Resource"><dir name="Message"><file name="Collection.php" hash="e25199a26a4ed4fa9a252401d8bc3df6"/></dir><file name="Message.php" hash="d54e4dbf073030bedd796485176a8ab4"/><file name="Setup.php" hash="7e72607c4e14a668f9c04edc270a39a5"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="370cd44a543868a7f2fb21f90c7166ef"/></dir><dir name="etc"><file name="api.xml" hash="c07bc2e7e57a81bf3db941507e622842"/><file name="config.xml" hash="c18fcaf38a79878f35d0b32218210ff8"/><file name="system.xml" hash="651ef34a627f315843e7fe2c4676331a"/><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="3eedd545b600d1b3e9f1efe6f61fd66c"/><file name="mysql4-install-0.7.0.php" hash="bb6f5582870e664a9e8810e9f321c3a7"/><file name="mysql4-upgrade-0.1.3-0.7.0.php" hash="afd839cbb037e3945ac1a4160ed652b1"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="b8a90d824d5273c5ba5caee5cec81096"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="a901190f5d8508179ff4a2ce38119427"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="55c6c3f2f36bcc5e960be10418977245"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="49695f624fccc6c0eb96855c54a926ce"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="b13cb489f9e3a897b23707592fb5358b"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="91635d60ebd34a8ae02347b51e3f787a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="7aa5d6515be6b2772a6ef8d577a63eaa"/></dir></dir></dir><dir name="GoogleAnalytics"><dir name="Block"><file name="Ga.php" hash="9b4edfe344ffc1b867b97bd9edc4be2f"/></dir><dir name="Helper"><file name="Data.php" hash="99c435d3e34212f3c360daa43cac4589"/></dir><dir name="Model"><file name="Observer.php" hash="1521b6cbe1676108413b4043e4b4e784"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Type.php" hash="ee2288134f9476e1c6648b099f9d7267"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="c0e6ccdb5cfd898cb4b0ba902dc892b9"/><file name="config.xml" hash="7bb689966f79618bba1fd05ea16e794b"/><file name="system.xml" hash="e244ebd14e291647e9f758042dab6234"/></dir><dir name="sql"><dir name="googleanalytics_setup"><file name="install-1.6.0.0.php" hash="5afebfd6601bf97f1b90982a6a5af2bc"/></dir></dir></dir><dir name="GoogleBase"><dir name="Block"><dir name="Adminhtml"><file name="Captcha.php" hash="e3ecc26926f8fbd4bb5bc03b7ad674a6"/><dir name="Items"><file name="Item.php" hash="1b974bda147becfc89f0eaa06310cbbf"/><file name="Product.php" hash="76806a0e59bfd5d2d0ae12340d3f2fac"/><dir name="Renderer"><file name="Id.php" hash="3979c787eb7c36b8ef4903e48f90e748"/></dir></dir><file name="Items.php" hash="fbd87b97413b5294c7fe6cfc1667f18a"/><dir name="Store"><file name="Switcher.php" hash="e4007591577eb4b472b9485c510cdfe7"/></dir><dir name="Types"><dir name="Edit"><file name="Attributes.php" hash="64bd528f1aaaaea226553ca1753f00ab"/><file name="Form.php" hash="a43608115f56934d66c2238a61b282a2"/></dir><file name="Edit.php" hash="5e7fcc76027701ceeaf58ba4d9717f16"/><file name="Grid.php" hash="22a1f420f9b83833d3f08e004729d172"/><dir name="Renderer"><file name="Country.php" hash="3efa7020fb1ca0ab24cb0142513ac7c6"/></dir></dir><file name="Types.php" hash="61b3ef306729a4783640bc685a0e79a2"/></dir></dir><dir name="Helper"><file name="Data.php" hash="ccf6d475924bc981f16f0cacf8ec4663"/></dir><dir name="Model"><file name="Attribute.php" hash="42f6061534da4232f96cdc5a50a5ee74"/><file name="Config.php" hash="263467df14e3e225b4cda949f351d85d"/><file name="Item.php" hash="4bd629e12d707fffb513e639e026dd2d"/><dir name="Mysql4"><dir name="Attribute"><file name="Collection.php" hash="087891b994699dfd60170db3c2260573"/></dir><file name="Attribute.php" hash="ae90fcf67fab42542e91cb0e8f81e364"/><dir name="Item"><file name="Collection.php" hash="181a1f38e76ed023a7626e75b0f92fe0"/></dir><file name="Item.php" hash="0e5acaea5cda8ed8847c230fc1a61d8b"/><dir name="Type"><file name="Collection.php" hash="77636d0484353730d3986402275164e8"/></dir><file name="Type.php" hash="74197c9a41ea7c621ef18d1f6e0dd53f"/></dir><file name="Observer.php" hash="d2999dc09d3054b03e9a67f729281626"/><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="fe418c46b692d3c0a4b3c24ed7f5ea82"/></dir><file name="Attribute.php" hash="0dbd1257a66fb43780aec9bfb2c9f811"/><dir name="Item"><file name="Collection.php" hash="82c5c7205849f9c148b83ffaac853cf1"/></dir><file name="Item.php" hash="54db8bfc53c7627a2b409e15bdbfefce"/><dir name="Type"><file name="Collection.php" hash="8c6173f04b352ac4f8394a181b38e08f"/></dir><file name="Type.php" hash="44269c505c34a1ce3215f40ef6cefe9f"/></dir><dir name="Service"><file name="Feed.php" hash="0aad48b4f00beaeb5615ef0a48a1da7b"/><file name="Item.php" hash="487c3aaec8fe7e584f2a26104bd81ff7"/></dir><file name="Service.php" hash="ed42b0af198c9c9972643eab50478098"/><dir name="Source"><file name="Accounttype.php" hash="5cc8e0a012b9012499709e404668ecaf"/><file name="Authtype.php" hash="51c540d2b793491f9e26d300aaea6ad0"/><file name="Country.php" hash="73e31196a538abb41c72fb2f7ef32ffd"/><file name="Statuses.php" hash="2764d1abd57ec4a4618fa34ebe6c417a"/></dir><file name="Type.php" hash="32f8f184357c83ab7e07b2e03f91c3b7"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Googlebase"><file name="ItemsController.php" hash="5a768313c1c92fa8429c989f161dc288"/><file name="SelectionController.php" hash="c63443ebe6e93b9bf424b7f6f01d9489"/><file name="TypesController.php" hash="573bd2f27ed97265544a4267ba43a7a8"/></dir></dir><file name="ItemsController.php" hash="bcf04ea1233786825d8ca91e9b22ccf1"/><file name="SelectionController.php" hash="5209c3e3ea319a4b914d88bd0a0c17ec"/><file name="TypesController.php" hash="302e557674c62e1f542e784ba60f2636"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a4ced4511045d35aad1fd6986738e6ef"/><file name="config.xml" hash="33c2449023ef1361dba41bba928c88cf"/><file name="system.xml" hash="9936516b05c85c42bf855c2d96e88e4d"/></dir><dir name="sql"><dir name="googlebase_setup"><file name="install-1.6.0.0.php" hash="3aa01718671682428089f24ff6974537"/><file name="mysql4-install-0.1.0.php" hash="b419341f28a6b272bac12eafa716b6ea"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="3d40f900be8a3f6c9e9a3b2cc48bf803"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="fd61753e3d05f717148236ee64bf3d8d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="2a552203ff7239098fc5f6d1aed03ad4"/></dir></dir></dir><dir name="GoogleCheckout"><dir name="Model"><file name="Payment.php" hash="f28ebfedac35e61eadb35c64f28a2ea6"/></dir><dir name="etc"><file name="config.xml" hash="9522b469d5566ae9e483f3f20859120e"/></dir></dir><dir name="ImportExport"><dir name="Block"><dir name="Adminhtml"><dir name="Export"><dir name="Edit"><file name="Form.php" hash="94a9690ab905403e753c6aef07f6762e"/></dir><file name="Edit.php" hash="df05ec2d5183e2412d34850837a1ac4c"/><file name="Filter.php" hash="686e5f168995959b35db34261918f722"/></dir><dir name="Import"><dir name="Edit"><file name="Form.php" hash="2b139cb3d797c0cad0ced1c9310f75fa"/></dir><file name="Edit.php" hash="22836c1fbbcd96116281baf245271874"/><dir name="Frame"><file name="Result.php" hash="cdf650d1f62d74d0b9b2934bdf3a54d6"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="a3cca3c34d2a8b618fdb80e8fde2699f"/></dir><dir name="Model"><file name="Abstract.php" hash="ad0a9a35cfa2e379da36f602553a87cb"/><file name="Config.php" hash="5b494db38204adf0a79f66a1acee2e9a"/><dir name="Export"><dir name="Adapter"><file name="Abstract.php" hash="48402373fc4b37b5412657d5d23235a1"/><file name="Csv.php" hash="385fa69f4f14ebb74fc21950d6f311b5"/></dir><dir name="Entity"><file name="Abstract.php" hash="467aa28465d6fe9977ec380c353490cb"/><file name="Customer.php" hash="2a8b58e4d786c2a804b6a71a293614b2"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="0b3deb702e05b87d27fb3543cb29129c"/><file name="Configurable.php" hash="89445c6d39403ec9d728966b87c8d5d2"/><file name="Grouped.php" hash="bac66f0aa89bd7675cceb8d08de9b5be"/><file name="Simple.php" hash="df71077aafc22e1a29fcf3d8437cf3e7"/></dir></dir><file name="Product.php" hash="119d802f341ff9bee299e8950d2d8de1"/></dir></dir><file name="Export.php" hash="1f2eabdb4263c6a6086e0b235e4d48d7"/><dir name="Import"><dir name="Adapter"><file name="Abstract.php" hash="34ad9673845c1271f55fa455396d8f12"/><file name="Csv.php" hash="d62d1206809df25865f311791e88ecd6"/></dir><file name="Adapter.php" hash="750e4798e45bdfa3ade97ea17a9557ec"/><dir name="Entity"><file name="Abstract.php" hash="fef960797ea4835c165e6099efae7c58"/><dir name="Customer"><file name="Address.php" hash="683df438d74655feab33abbe2a83ee13"/></dir><file name="Customer.php" hash="34b27b6cc8f28e62e19855e79ecfcfe0"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="468cac4020ae412b458eb850890f931b"/><file name="Configurable.php" hash="65ce88b3c024be30ebc0917ebf990f98"/><file name="Grouped.php" hash="fa6973da969a599c25082f95e1ed4ec2"/><file name="Simple.php" hash="c9b4046521ee7b5730ec5b4ca2f183da"/></dir></dir><file name="Product.php" hash="8b73fdf6e8dd56db18babea19e6f4936"/></dir><dir name="Proxy"><dir name="Product"><file name="Resource.php" hash="44eeeb4f4436755b8982fc10077866ed"/></dir><file name="Product.php" hash="2e660fef2caa3cb78030d2bd3d3d5a8e"/></dir><file name="Uploader.php" hash="40017598d08f35f1309c9b483e576f7d"/></dir><file name="Import.php" hash="4241bd7a7e44ba70f9391d2f632b8a58"/><dir name="Mysql4"><dir name="Import"><file name="Data.php" hash="a4b69895138991b6a384fc941a486d79"/></dir><file name="Setup.php" hash="da3d7f9f8b767413a9006f573a7352ac"/></dir><dir name="Product"><dir name="Attribute"><dir name="Backend"><file name="Urlkey.php" hash="d10d908cb1ad504ed9c0a40a69e79c96"/></dir></dir></dir><dir name="Resource"><dir name="Helper"><file name="Mysql4.php" hash="a924955baa87dc9f6e37c2cf59d2cf94"/></dir><dir name="Import"><file name="Data.php" hash="e8a315428f2fd2f53324770b8c52a2cd"/></dir><file name="Setup.php" hash="b0b35e25ed2691bb52c51f5aa2b2d902"/></dir><dir name="Source"><dir name="Export"><file name="Entity.php" hash="d097f23753691fd6b99a23e5db8a3e37"/><file name="Format.php" hash="2a9831118c97892f817a3cf71bd4a5d2"/></dir><dir name="Import"><file name="Behavior.php" hash="39debdfde4ff5bdafe8fb3f7417cdda6"/><file name="Entity.php" hash="d084a416f85c33610e6f8acd92e9080a"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ExportController.php" hash="d646da08380c7c7abc77890a56738124"/><file name="ImportController.php" hash="b45688588da8a5a690b03413e7f52df6"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2b5fd0ba7489999d3d8616c9f34cc3bf"/><file name="config.xml" hash="6b7d81e6af20ebbfbbcf912a00e6ee6c"/><file name="system.xml" hash="2d89d2ffd2f6956e00bc9fb6954f95b5"/></dir><dir name="sql"><dir name="importexport_setup"><file name="install-1.6.0.0.php" hash="b8ec5bee9794164f8aec9f163bcb81d9"/><file name="mysql4-install-0.1.0.php" hash="7134d2f78bae80141c850cbe6ca8d924"/><file name="mysql4-upgrade-1.6.0.1-1.6.0.2.php" hash="7deb6382ac9eb61f3b7809192167e400"/></dir></dir></dir><dir name="Index"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="c32cd8714f4ed772b0e98126b24337fb"/><dir name="Process"><dir name="Edit"><file name="Form.php" hash="8c71fb98f327daace437504f8852559c"/><dir name="Tab"><file name="Main.php" hash="a629e8c381e93ee34c8bee849e40c894"/></dir><file name="Tabs.php" hash="b9c4812603dcfecc1a8e76a84d9941d3"/></dir><file name="Edit.php" hash="9a33dcb0b2ac81702cd1e3009d4a019e"/><dir name="Grid"><file name="Massaction.php" hash="d7d7ebdf36dc55a458d8fc559dd0ef0e"/></dir><file name="Grid.php" hash="c6b0f2dbbdac60d9810ce30e7730560d"/></dir><file name="Process.php" hash="4de4d0788900e27b239ae1a1ad55e29d"/></dir></dir><file name="Exception.php" hash="dd74b012cf9deeb20ff51d7d9ed16513"/><dir name="Helper"><file name="Data.php" hash="522e1c436a01a34b3589b806f146b0f0"/></dir><dir name="Model"><file name="Event.php" hash="07717beb49870c50a259c7f2943d226b"/><dir name="Indexer"><file name="Abstract.php" hash="9c4b7998fe629eb618d8251041788169"/></dir><file name="Indexer.php" hash="884e769dee3d9584b09f6186352dd5f7"/><dir name="Lock"><dir name="Storage"><file name="Db.php" hash="738c9781f3a34d2c6dbfc42eee26be81"/><file name="Interface.php" hash="37eae021303b5644024b56826e32639a"/></dir></dir><file name="Lock.php" hash="e580dff384d6e7436aacf33bb3f68346"/><dir name="Mysql4"><file name="Abstract.php" hash="477ddc13ecbf9e99ef32f8d88609c382"/><dir name="Event"><file name="Collection.php" hash="8795659b34c867a98b4b71d42f9a2c20"/></dir><file name="Event.php" hash="1a62bc4fe89f02130a083846c3c412f5"/><dir name="Process"><file name="Collection.php" hash="4bcd29c0debdf0509e35bce713997780"/></dir><file name="Process.php" hash="c94a06a5ed63dbf8869e1aedd648a8c2"/><file name="Setup.php" hash="54a6af779491f727b4507a3e682da8af"/></dir><file name="Observer.php" hash="2f23648e92fe0e23cd3699cfad90b812"/><file name="Process.php" hash="0c25a0f4f537d3310df414493474a2c4"/><dir name="Resource"><file name="Abstract.php" hash="f2e09b98ac6b14f17e690918fa507244"/><dir name="Event"><file name="Collection.php" hash="28e942fe95491b23badf5a305e0a6c59"/></dir><file name="Event.php" hash="279bb06a9eb7afebf214f2a9e57992a6"/><dir name="Helper"><dir name="Lock"><file name="Interface.php" hash="170c3c0404f11ebfe848545930834384"/></dir><file name="Mysql4.php" hash="00082a6f62286390b13701e5c75595be"/></dir><dir name="Lock"><file name="Resource.php" hash="cb5457be983e995023649b5245e2045b"/></dir><dir name="Process"><file name="Collection.php" hash="013696372fd2220b802825ec6e591f3c"/></dir><file name="Process.php" hash="7bdf56c37e983bb4992250de5f97e52e"/><file name="Setup.php" hash="e8d7279eddc41bc014c7f69acfea8673"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ProcessController.php" hash="2cdd28829e3c8cb35ce1f79468fbed8b"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="b788f706ceed425cf1417693776372d6"/><file name="config.xml" hash="bd7f91c80e9f2ffe5a9354199f2c0ab2"/></dir><dir name="sql"><dir name="index_setup"><file name="install-1.6.0.0.php" hash="bb4956c2be5ecc21951443f0f5ff3140"/><file name="mysql4-install-1.4.0.0.php" hash="67ec705297843227186179361f9e113f"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="d2a129d7208a0e05a57dd1001dfa86a4"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="938285c4676ecc124c4d1f5f0a0ed94d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="be784e1cbc75dcb56705148f32a3ed3d"/></dir></dir></dir><dir name="Install"><dir name="Block"><file name="Abstract.php" hash="6902c1431c4b45148e754c2858f2ecd3"/><file name="Admin.php" hash="197ecc0070ee4b5ac96caca08584a584"/><file name="Begin.php" hash="ca99f58043905d311c5dee2e68a6418e"/><file name="Config.php" hash="33c19d1e9f2ea155e54b14f7619841f2"/><dir name="Db"><file name="Main.php" hash="a24dda5bb19a0412e21230120034b524"/><dir name="Type"><file name="Mysql4.php" hash="4ab2cb7310334bf353ea2e0ea5c1222d"/></dir><file name="Type.php" hash="f81a4f666193eb5d76edea3b3a569cb3"/></dir><file name="Download.php" hash="d70c6de666e0d2eab07a5fe11c5433d8"/><file name="End.php" hash="7d791af735a61ab7857c522f4d93819a"/><file name="Locale.php" hash="8d7585b29f85f305018881ce6c527f7a"/><file name="State.php" hash="4dbd65f205c863965690560e905a21b1"/></dir><dir name="Controller"><file name="Action.php" hash="4a6959b2aaebf4994ce784d8973d78a2"/><dir name="Router"><file name="Install.php" hash="21f02464a980428c48a91bb697fa61c5"/></dir></dir><dir name="Helper"><file name="Data.php" hash="77d3431900e7832b29f277f6771317da"/></dir><dir name="Model"><file name="Config.php" hash="bdb50a753fa9835c2ac9dc73ad7e4f18"/><dir name="Installer"><file name="Abstract.php" hash="781ac9d2ea5d84dfe397a03586bdbbd0"/><file name="Config.php" hash="259c438bf0adc1d4b80f5bd07cdde8ed"/><file name="Console.php" hash="3a59edcda3d99ab4aa173d96cd0bd648"/><file name="Data.php" hash="57bb1fe690685c2acacae620c0948bc4"/><dir name="Db"><file name="Abstract.php" hash="3914db0d1c73d6f931587f41ffe7054c"/><file name="Mysql4.php" hash="28f0a788e0d14e7d6aecab48f9b73826"/></dir><file name="Db.php" hash="398ff81927a68d8ade7beaf39c44d849"/><file name="Env.php" hash="15716e0fb9326e1f53f4ff6776c57145"/><file name="Filesystem.php" hash="b1cea033f845676603e68a8f70be6d66"/><file name="Pear.php" hash="0d95232215ee61327d274c9e9dc863af"/></dir><file name="Installer.php" hash="a4365cb912ac154bc8184570dc89a547"/><file name="Observer.php" hash="c5fe6d648294914b3c77d555e0589d4e"/><file name="Session.php" hash="fd09a02f14c893338ff528af0b0103c5"/><file name="Wizard.php" hash="f45bd37428d46a8361bc5b257c29592a"/></dir><dir name="controllers"><file name="IndexController.php" hash="f1546c0b4140dd1d725da5a511d4fcb2"/><file name="WizardController.php" hash="44da79dcc080a730ff2737f1e26c836e"/></dir><dir name="etc"><file name="config.xml" hash="b8595b386412639dab18910bb8a577e5"/><file name="install.xml" hash="be9dca24525f7b8918d340479ac2c069"/></dir></dir><dir name="Log"><dir name="Helper"><file name="Data.php" hash="77b7c7e3021da5e9b5108902e2dbf892"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Loglevel.php" hash="dff53e61389d6d0caa1351ed6705d424"/></dir></dir></dir></dir><file name="Aggregation.php" hash="d2f7449c9cb370baa6b126394f32a674"/><file name="Cron.php" hash="78f4b3becd273f6d80b323a6a4a3d113"/><file name="Customer.php" hash="07334c582ef162e676b048b826a6ce62"/><file name="Log.php" hash="b9c3fa80e03cbd0655230e4dc25bb99d"/><dir name="Mysql4"><file name="Aggregation.php" hash="e95b44645ae1950dcde0fbcb46738e30"/><file name="Customer.php" hash="bd64c30b49d670b90b4c1c0682b13a2c"/><file name="Log.php" hash="b4d90f475c002e60c736272fee5bfa60"/><dir name="Visitor"><file name="Collection.php" hash="4d4b2fe79d74d0367ec482e4eea32e49"/><dir name="Online"><file name="Collection.php" hash="f17615f3bc29ff108fd9ea946c49fa1b"/></dir><file name="Online.php" hash="1bb31f7da34f1896da43f6ee5baa7d87"/></dir><file name="Visitor.php" hash="ef8e25838b9f4ea447bcedee589aea07"/></dir><dir name="Resource"><file name="Aggregation.php" hash="6320fbc0d61d5381e97325d2df716a6e"/><file name="Customer.php" hash="cc96dd7e3ab9a4be2639e28c3646c874"/><file name="Log.php" hash="86e1a855a2cb793527021209efd13eb0"/><dir name="Visitor"><file name="Collection.php" hash="3916cfd7b4c924ce1ba0dd0fbc54be8a"/><dir name="Online"><file name="Collection.php" hash="1217b0e80c7442546c5ed456b849b3d2"/></dir><file name="Online.php" hash="1cc54c70cc920c6f52f3c7aa07d460dc"/></dir><file name="Visitor.php" hash="1983f99bb9a27ebafd5c48ec0d5ab697"/></dir><dir name="Visitor"><file name="Online.php" hash="ea4ef04360881d07e27bb028051aba6f"/></dir><file name="Visitor.php" hash="07ea18654c5691572851fae0cc450570"/></dir><dir name="data"><dir name="log_setup"><file name="data-install-1.6.0.0.php" hash="890c914a1c774eb4f03d58a604fc801e"/></dir></dir><dir name="etc"><file name="config.xml" hash="5a15f2b582293e574daf8fb2e2f98511"/><file name="system.xml" hash="e88266bc78c4f9634cdd5caff8a10009"/></dir><dir name="sql"><dir name="log_setup"><file name="install-1.6.0.0.php" hash="fa8f43d0436bc5b82462d32af9d27d33"/><file name="mysql4-install-0.7.0.php" hash="86b670a50725cfdddb9545b24b2f4139"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="fc688ce1b1ef6e39d5a13e4ffc9fde46"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="0028ea47d4d20b4c4a46c174b3abd159"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="1da6d2b8156f8644a35fa3de46f18377"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="367f2d7bb54b24bafc8916d6c8ccc277"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="d6969bbd1dfa65fc377958e5ea4995bd"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="020ba4053b5a1fe2fae4999cda08ae04"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="35ac926ff8193438ff2c7b5aec23d2fb"/><file name="mysql4-upgrade-1.6.0.0-1.6.1.0.php" hash="e39090471dd60d09390ffa0475bac0f1"/><file name="mysql4-upgrade-1.6.1.0-1.6.1.1.php" hash="f18aaf1cbe5500179ce83dcc9315f17e"/></dir></dir></dir><dir name="Media"><dir name="Helper"><file name="Data.php" hash="c3eb8a807df343d94ca9105d3e7d2dcf"/></dir><dir name="Model"><dir name="File"><file name="Image.php" hash="c75e9d513b4ee917cde3b04618eb9012"/></dir><dir name="Image"><dir name="Config"><file name="Interface.php" hash="515c906705888ead78cabe00d4197c92"/></dir></dir><file name="Image.php" hash="6118cf5507df643d7f4abdcb95dadd40"/></dir><dir name="etc"><file name="config.xml" hash="77b8320c9d809a754076c1d6f3785cc6"/></dir></dir><dir name="Newsletter"><dir name="Block"><file name="Subscribe.php" hash="90165f5ccc6a4ffcb4ee42f04740a9d6"/></dir><dir name="Helper"><file name="Data.php" hash="e97998fcc72c23dc22806187ee7a7b5c"/></dir><dir name="Model"><file name="Message.php" hash="48fb42e5e94e2b43ad89047b33beffb7"/><dir name="Mysql4"><dir name="Problem"><file name="Collection.php" hash="c8788dec4308705c1478191108f764e0"/></dir><file name="Problem.php" hash="148adcab21e515694bb338e13a33e313"/><dir name="Queue"><file name="Collection.php" hash="3dfcab91cc61a0ef9dfdd029e14e5142"/></dir><file name="Queue.php" hash="04f9b8a875d33753d83211c4775ffa5e"/><dir name="Subscriber"><file name="Collection.php" hash="868d469ab94ad01c20720c8ea435d45c"/></dir><file name="Subscriber.php" hash="66303ed4b8b33818cf92c325094d94e6"/><dir name="Template"><file name="Collection.php" hash="8e9733edb3b35c2663651a74c53f7fe5"/></dir><file name="Template.php" hash="3e887aa04f00405161d6bc5e6fab955b"/></dir><file name="Observer.php" hash="981b3df06c9a269c6ad644b07583245c"/><file name="Problem.php" hash="bec6866c71dc54f9fe2b11f79958d6a5"/><file name="Queue.php" hash="7b120dfbc7637b79347b367a70dd74e6"/><dir name="Resource"><dir name="Problem"><file name="Collection.php" hash="1af4ad0bc367fa519678f8f68cb2f63f"/></dir><file name="Problem.php" hash="e04a3e295be18432f7e07ecc39db06f2"/><dir name="Queue"><file name="Collection.php" hash="5cad78fc6ac394506f4835c891df5a79"/></dir><file name="Queue.php" hash="fa9769de2e349773ab35a4229893c86e"/><dir name="Subscriber"><file name="Collection.php" hash="a2e18092aec1ebc5d6fac12423cc423b"/></dir><file name="Subscriber.php" hash="7ba3fdc246335d44afff9f82aa4dc7ab"/><dir name="Template"><file name="Collection.php" hash="910485de3e7a177b065d0059d11535a3"/></dir><file name="Template.php" hash="de372c36a4d0a938a4d2395bd1ee62fd"/></dir><file name="Session.php" hash="1d55ef04e7029a8caeb719f185168752"/><file name="Subscriber.php" hash="1d6f47cbc98ea4ca9ace0c898769cb51"/><dir name="Template"><file name="Filter.php" hash="428a91314af221f793d03abbb822920a"/></dir><file name="Template.php" hash="a0585fb775c50d70c56d614f8e5ddf50"/></dir><dir name="controllers"><file name="ManageController.php" hash="761c7bb08065579fbdbaf1d7074bc892"/><file name="SubscriberController.php" hash="6995dc1433b0dc3e7c1669113888d4a2"/></dir><dir name="data"><dir name="newsletter_setup"><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="e98c5d60be2ab712a0f2f6968703cb60"/><file name="data-upgrade-1.6.0.1-1.6.0.2.php" hash="cc6e922c33f4060b87ed77ed7f1c9b32"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4491e5a080e48603065d3182fc42a242"/><file name="config.xml" hash="47fa4a22de6ebdf8a5b7b96beee15475"/><file name="system.xml" hash="6510d68004acfa8d580a46abdc7b2223"/></dir><dir name="sql"><dir name="newsletter_setup"><file name="install-1.6.0.0.php" hash="2c1f7b663b037293ed04a78a0c4bbfb4"/><file name="mysql4-install-0.7.0.php" hash="1829ff4265d06172e76a034afd0cf31e"/><file name="mysql4-install-0.8.0.php" hash="3cdbed56d20798018d22294f5418c41e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ade3bb429c3bedc0c50894eff8357baa"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="ea8b87711dc2432b464c356f838f3c4e"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="1fcb5201c366ff25ea62a5f41dca9595"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="23ead47d597a78fcec8ae09b01092618"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="a42b05cbeb6c0ce8c6caeadab56cb838"/></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="87577642a01ec280e5e1ce42b791d5ba"/></dir><file name="Token.php" hash="eacefe102e671e1d8d1b7fc896be09dc"/></dir><dir name="Authorize"><file name="Button.php" hash="e77aa3f58568ca796c463eab154eab34"/></dir><file name="Authorize.php" hash="31b26ff372e835cec834323e2b309c08"/><dir name="AuthorizedTokens"><file name="Grid.php" hash="46bba3e8f4b4b93f4cadc14868215ea7"/></dir><file name="AuthorizedTokens.php" hash="2193577d6a4c6b8c69059cfe7f07de47"/><dir name="Consumer"><dir name="Edit"><file name="Form.php" hash="d63d0eb92dff2479be10409b1874c83f"/></dir><file name="Edit.php" hash="844594d73450202a244284c4283d5381"/><file name="Grid.php" hash="483a78dfbbb5c2c3a8f14dba5fdf4098"/></dir><file name="Consumer.php" hash="fbf4bbbf46b5ccb56850e758830b90ec"/></dir></dir><dir name="Authorize"><file name="Abstract.php" hash="1ef3c8460afd199145803d1279585885"/><file name="Button.php" hash="f99546aeeb3e2943179eb347244b6a9a"/><file name="ButtonBaseAbstract.php" hash="cf7e5f62c49630ed4c546c91e6f3b813"/></dir><file name="Authorize.php" hash="b40dfdc6ec76857eaae0fc89190174d0"/><file name="AuthorizeBaseAbstract.php" hash="36de82f42d93ef49e71eae76d8a34814"/><dir name="Customer"><dir name="Token"><file name="List.php" hash="0978a84305217a73922180cd7b452c33"/></dir></dir></dir><file name="Exception.php" hash="b02e850cc310127bc618f887c81c9954"/><dir name="Helper"><file name="Data.php" hash="b2654c45285b25c378e5f41fc2fc7ded"/></dir><dir name="Model"><dir name="Consumer"><dir name="Validator"><file name="KeyLength.php" hash="b7032595902dc041fb704c13e818acaa"/></dir></dir><file name="Consumer.php" hash="868d5ba12b77c4e2c0708395b006841f"/><file name="Nonce.php" hash="afc0a7f7df13dd34829b89b1a4abbd25"/><file name="Observer.php" hash="c26b8f3b9d0a276c0e21aad86f284909"/><dir name="Resource"><dir name="Consumer"><file name="Collection.php" hash="7c84185db90bab949e5e92b94b7d7ad3"/></dir><file name="Consumer.php" hash="29cf411378299a9d933a4b94fc998a24"/><dir name="Nonce"><file name="Collection.php" hash="4a958097c40de623ecf203c1725a60b3"/></dir><file name="Nonce.php" hash="2c49cdb7c3171302b260004e5109eb16"/><file name="Setup.php" hash="9b48905029d9447843cbded5a72e460c"/><dir name="Token"><file name="Collection.php" hash="730f22f13526a489fbdfa850d0c0535e"/></dir><file name="Token.php" hash="bf9f64082ad5f124b92fbf59765f24bd"/></dir><file name="Server.php" hash="9a8ee325e35904f60bc13accaa37264a"/><file name="Token.php" hash="0a0366fac18ee4738ff5c84db3d3d622"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Oauth"><dir name="Admin"><file name="TokenController.php" hash="54b976441083ca34e0d494afee7de031"/></dir><file name="AuthorizeController.php" hash="7dcb33fa7eecc6ec99ab9278aa5531b5"/><file name="AuthorizedTokensController.php" hash="95e46ef7269075e7a6048dbd76bbdc9e"/><file name="ConsumerController.php" hash="568d426564659c730879afcd1778033b"/></dir></dir><file name="AuthorizeController.php" hash="5080bd30a00ea92ba56361191af92c43"/><dir name="Customer"><file name="TokenController.php" hash="f490915ef729e3db88e86122620e8426"/></dir><file name="InitiateController.php" hash="9729e84b9f25a14dc27a8ec91a2abf9a"/><file name="TokenController.php" hash="712e903461cfc64513d47c7119f42c62"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a279446d78ab461c5d363f9eb6626b5c"/><file name="config.xml" hash="5a849d92d8633c73d00e8fb1e4ebcf2e"/><file name="system.xml" hash="d40a28d7e95aa7324635b44718271739"/></dir><dir name="sql"><dir name="oauth_setup"><file name="install-1.0.0.0.php" hash="270cd8366972805b61d8562d4f29d5dc"/></dir></dir></dir><dir name="Page"><dir name="Block"><dir name="Html"><file name="Breadcrumbs.php" hash="f991fcb342faff3eea8aa3a497ca4ad8"/><file name="CookieNotice.php" hash="e950f9aa82d14ef35c5e0fb4e92daedc"/><file name="Footer.php" hash="03aab94ed397dfd9ae38902b659dc3cd"/><file name="Head.php" hash="ef3a3084c76740cd98deeaee1648fb53"/><file name="Header.php" hash="cf025a3bd3982082acfbe963b37a5e05"/><file name="Notices.php" hash="d64d8bd36ca5cb895950bf67f60ef97c"/><file name="Pager.php" hash="49403d11b0dfe090e141f78eee646f36"/><file name="Toplinks.php" hash="4d36af93c7c82c0404b0ffcb13129b0f"/><dir name="Topmenu"><file name="Renderer.php" hash="9acb47c4b8b2021792a0bcc88dd1cb71"/></dir><file name="Topmenu.php" hash="623f865cc0ae6eef2d3a4412b5882110"/><file name="Welcome.php" hash="3f9025b8c2ea7bca72cc3c5ea05ec7ea"/><file name="Wrapper.php" hash="188a1d66d24a473b5a2bb5c546f51f5e"/></dir><file name="Html.php" hash="5044393b95e3d9c73c7add2dcdf57a1e"/><dir name="Js"><file name="Cookie.php" hash="b2044941f5422984bf1613d0b94a054c"/><file name="Translate.php" hash="8bcd2cb632043cd249a839e4a112fc68"/></dir><file name="Redirect.php" hash="33d15f3427e07675a9a67d7103efec2f"/><file name="Switch.php" hash="88787ce544248154f0ed84146757fdea"/><dir name="Template"><file name="Container.php" hash="c8025c89fe3ffdc81ef8381ca9b2603a"/><dir name="Links"><file name="Block.php" hash="887dc1bb5dcb40d8ed3b638a83397fe3"/></dir><file name="Links.php" hash="893927e56ce466021ace32cfb2c0844d"/></dir></dir><dir name="Helper"><file name="Data.php" hash="658510b4c8c7cc386d78f057ac01f163"/><file name="Html.php" hash="2af036c7b14b256f256c7db64d003f49"/><file name="Layout.php" hash="6648de4cf432211d323cbce5dc9e23ca"/></dir><dir name="Model"><file name="Config.php" hash="200e4bb31d84fcf15035f64c85a13f89"/><dir name="Source"><file name="Layout.php" hash="d00882ca6272ba2bb3e97599fa998ebd"/></dir></dir><dir name="etc"><file name="config.xml" hash="8f5abe229624c53c0ad9d5ab1a0b2218"/><file name="system.xml" hash="96fe148dccab4d0025bb329f266b48f2"/></dir></dir><dir name="PageCache"><dir name="Block"><dir name="Adminhtml"><dir name="Cache"><file name="Additional.php" hash="50a4426171234bb21890f13b1528511b"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="db835c52e1cb185767546efae0d132af"/></dir><dir name="Model"><dir name="Control"><file name="Interface.php" hash="03d86da937719b04c4d708ef325a986e"/><file name="Zend.php" hash="f87121f3ecef691823fbf4d4d99a2273"/></dir><file name="Observer.php" hash="74a187bc620930ff7f1054671a063017"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Controls.php" hash="ee4ba358f79d04a0ea774f48ae8c9aff"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="PageCacheController.php" hash="c3863350d6ce6c17a6b83e043b455c5c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="1b2e108d3ee0f412a8d8e2f9aab75635"/><file name="config.xml" hash="0bae6d48cc3da3f59b555f1cffe84888"/><file name="system.xml" hash="0d7bd93668b17b9f47fc4dd8b9bc4be0"/></dir></dir><dir name="Paygate"><dir name="Block"><dir name="Authorizenet"><dir name="Form"><file name="Cc.php" hash="6033c56549a27958c57d4ff78779cfd7"/></dir><dir name="Info"><file name="Cc.php" hash="591965ad865312d57cf362c026a20fd4"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="dba6eb8db81deffd039c9d64584ae7bf"/></dir><dir name="Model"><dir name="Authorizenet"><file name="Cards.php" hash="d6fb248f65a151b2177ce900328d1b7a"/><file name="Debug.php" hash="fce72af205cb8771867a9c3a1bd839e4"/><file name="Request.php" hash="6e347160e4e16205f35ab2ef257adba1"/><file name="Result.php" hash="b358be783cbd2c10f913bbd94c47fb2d"/><dir name="Source"><file name="Cctype.php" hash="9cba7bc3a7d51b06ee1a4e6c296a73ee"/><file name="PaymentAction.php" hash="19d09e95620aefef82bcef7b11d7bf01"/></dir></dir><file name="Authorizenet.php" hash="df055fc6750475ea2892eff17a983af9"/><dir name="Mysql4"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="3806a67900ed2c659a27c0b0d6848b71"/></dir><file name="Debug.php" hash="8322b19e37639c27558139c7dc0df7e2"/></dir></dir><dir name="Resource"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="af3339b3f7eb87fb0cb3ad5ee01c9ad4"/></dir><file name="Debug.php" hash="1fc8792c0db070250f8a192ecc852740"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Paygate"><dir name="Authorizenet"><file name="PaymentController.php" hash="c07217afdbef9a335a731feafa24153c"/></dir></dir></dir><dir name="Authorizenet"><file name="PaymentController.php" hash="f4c4ad55c1a95d840103e73078331c74"/></dir></dir><dir name="etc"><file name="config.xml" hash="6df6665516f5a71afbf3252be8e117ae"/><file name="system.xml" hash="847f0ca9e56c13395852999c4f0bd047"/></dir><dir name="sql"><dir name="paygate_setup"><file name="install-1.6.0.0.php" hash="048efb0b3a88d840bb27b0b18abce04b"/><file name="mysql4-data-upgrade-0.7.0-0.7.1.php" hash="bc1ea7b293c81fa69c1547483687b10a"/><file name="mysql4-install-0.7.0.php" hash="cae91df94d82a5f6646edb8b14741028"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="1d78518d523fadec9e6c6b4cea73d632"/></dir></dir></dir><dir name="Payment"><dir name="Block"><dir name="Catalog"><dir name="Product"><dir name="View"><file name="Profile.php" hash="177fb2c41ae20ea2c6c4d1b68ac89e78"/></dir></dir></dir><dir name="Form"><file name="Banktransfer.php" hash="d288413181a99c5f0afefbb2e4f4ed2f"/><file name="Cashondelivery.php" hash="694ad42ec3cfcae2c76b50a6b7efd1b0"/><file name="Cc.php" hash="9e199c59c32a70dd81da1f6e0a57ce34"/><file name="Ccsave.php" hash="0a19afa507a97f84222155ce6c7ac7a9"/><file name="Checkmo.php" hash="9676db9db3f06d78f0f088aa44bbf022"/><file name="Container.php" hash="870cac27a5432f57c9db4b3523e88b4b"/><file name="Purchaseorder.php" hash="96fdabdf29a64232816c1ec19f5b50f8"/></dir><file name="Form.php" hash="bd21632fff3f84b4c55e08e1fead54c5"/><dir name="Info"><file name="Banktransfer.php" hash="ebbedf00e590b16b970e50c642c70a3b"/><file name="Cc.php" hash="879a7812e93ad2af85c451c238afab48"/><file name="Ccsave.php" hash="7fc24a23db7223a04a39b2bf7741aaad"/><file name="Checkmo.php" hash="aea5280126efbb6d6f397f4463f28346"/><file name="Container.php" hash="0a9a91fa88d479a46ea739e67df0ee2b"/><file name="Purchaseorder.php" hash="bc7b6bc46169dcafd9f1067bd21fc0d3"/></dir><file name="Info.php" hash="df1a067a96372eeb0b10655342b30010"/></dir><file name="Exception.php" hash="87b5b99fa44bb6615966125858fbe734"/><dir name="Helper"><file name="Data.php" hash="fd6b44a0cb90a2acedd406144c773d22"/></dir><dir name="Model"><dir name="Billing"><dir name="Agreement"><file name="MethodInterface.php" hash="8ab8a5774531901cec5b8b12f716108d"/></dir><file name="AgreementAbstract.php" hash="c261387b125d7b4dacaed7523bd68f3f"/></dir><file name="Config.php" hash="b283917097f30ad91afe2277375c89d5"/><dir name="Info"><file name="Exception.php" hash="77cf716c223a37fc82769f5e40e9a57e"/></dir><file name="Info.php" hash="4915f66db7879aa3941635aa4733bad8"/><dir name="Method"><file name="Abstract.php" hash="014bce1895a314d6312da3319550215b"/><file name="Banktransfer.php" hash="16b46c51cc39884bb8ba6aab132da3c4"/><file name="Cashondelivery.php" hash="0c6308eedecaf6d3ad31e18f3662155a"/><file name="Cc.php" hash="39fd1c44b669c320012a3f15c0b45666"/><file name="Ccsave.php" hash="46c4f3b223f6c23ab39cca636715ba84"/><file name="Checkmo.php" hash="cf3c9c811d58dd0d2b9666a3d36790d8"/><file name="Free.php" hash="19a22a757611417b48fcbeb751aa5c76"/><file name="Purchaseorder.php" hash="de401082f2feb12ff9eacf5c708ee04b"/></dir><file name="Observer.php" hash="121d74c44f6ad55920c735d49503e4c4"/><dir name="Paygate"><file name="Request.php" hash="3e0085e87c11900e6840a3bb0e1f503b"/><file name="Result.php" hash="479b843f80334c1d7b79a99edf74cbe9"/></dir><dir name="Recurring"><dir name="Profile"><file name="MethodInterface.php" hash="fbf42fa7d4991ed025794a6699ad756d"/></dir><file name="Profile.php" hash="f2340bbd82a1250ef4ee440fc228c269"/></dir><dir name="Source"><file name="Cctype.php" hash="aae8dbf57842e2e9823513ce2d6eca07"/><file name="Invoice.php" hash="88d7e2470321fbc7d7bcb267b02c96bb"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="df7aee1daab22711cc82001cfe07e802"/><file name="config.xml" hash="8e82b4e2313120f93051be2a6a2c9668"/><file name="system.xml" hash="818abf61a7c2e8f0705045ae764594a2"/></dir></dir><dir name="Paypal"><dir name="Block"><dir name="Adminhtml"><dir name="Settlement"><dir name="Details"><file name="Form.php" hash="e5b9fdd5a6685d541276696c0327767d"/></dir><file name="Details.php" hash="cbc8bcda62170c2dc9440588a7a40350"/><dir name="Report"><file name="Grid.php" hash="c7f38c4032c5f4b7fcf4f19025031231"/></dir><file name="Report.php" hash="9e83f05f54f1b4bb9c2532d9aab8581f"/></dir><dir name="System"><dir name="Config"><file name="ApiWizard.php" hash="f249a4d8a0e29b98f4195fe3e548c6e7"/><file name="BmlApiWizard.php" hash="388d1c38ea21817847d7e4d2b6a9b174"/><dir name="Field"><file name="Country.php" hash="0ced16a241514400526adbb56977b281"/><file name="Hidden.php" hash="1d47c5d610e2e9c99531b4ed05d310b6"/><file name="SolutionType.php" hash="4d58c24d6c1fb67b6c983cd03702251c"/></dir><dir name="Fieldset"><file name="Deprecated.php" hash="ae380939111503e8a39d8f1b59827543"/><file name="Expanded.php" hash="5890da581470286843f21ef228b885d3"/><file name="Global.php" hash="1ed6987780660633c91bd794b386249f"/><file name="Group.php" hash="eece6a248fff737dcf5a9a4796296c37"/><file name="Hint.php" hash="ba265aea048de6c9ca296ab3cc5316b7"/><file name="Location.php" hash="88077b2ed4cd5f0989b723c26da1a1af"/><file name="PathDependent.php" hash="8a46ce8d28ac2618402490104a69b8fe"/><file name="Payment.php" hash="e99d151e8b4a904a2a10b3b7c914900c"/><file name="Store.php" hash="b79e68ca1266edd62239a21ce17427e0"/></dir><dir name="Payflowlink"><file name="Advanced.php" hash="7d3c80eec88b130bb07063675c8c0807"/><file name="Info.php" hash="50b2f9bc80765611c177cee8f4181c06"/></dir></dir></dir></dir><dir name="Bml"><file name="Banners.php" hash="35bd3f7387517aac7448c6cfca52e421"/><file name="Form.php" hash="31ee71c9e2f4be982e445324060410b5"/></dir><dir name="Express"><file name="Form.php" hash="2816fcf35c86ac03e5aecf4a5e1cd3da"/><dir name="Review"><file name="Billing.php" hash="ab65d78ea26c6954fbea7aa3b0f94710"/><file name="Details.php" hash="4031aa191f568a4395c61a29b695d4f0"/><file name="Shipping.php" hash="433a18a914cb3fe2f7f24b4870c5a337"/></dir><file name="Review.php" hash="b5659089597f24e7c254dc1d4b3f0ef2"/><file name="Shortcut.php" hash="d5ba10fb758c8c1c072202a0c0a42ca9"/></dir><dir name="Hosted"><dir name="Pro"><file name="Form.php" hash="8c4c4db3c035d205a18227918f163a37"/><file name="Iframe.php" hash="40415e2259edc254e88dddb8d5e5779b"/><file name="Info.php" hash="2cb57828f52a47141ea7487370157971"/></dir></dir><file name="Iframe.php" hash="4a6943edec11f3e0acebaee3f99affaf"/><file name="Logo.php" hash="644197d185e36c659d21f8235775ce1d"/><dir name="Payflow"><dir name="Advanced"><file name="Form.php" hash="99f7c61658b2f48ca9c506e1bc6d0cd3"/><file name="Iframe.php" hash="9125ab249263b6a1d119ef2cba822846"/><file name="Info.php" hash="13474928b17987e99a7753b994326ed7"/><file name="Review.php" hash="6345a4651148d0270cbbc7525a8a2fd0"/></dir><dir name="Link"><file name="Form.php" hash="2eedcd560a004230cfef948190ea1888"/><file name="Iframe.php" hash="e98d80d6893145a013956bdf4560bfcd"/><file name="Info.php" hash="f559a893472759d265277ab7a3312972"/><file name="Review.php" hash="2a7d335209f8e2082024b1905f2e288e"/></dir></dir><dir name="Payment"><file name="Info.php" hash="9fb0a1242b2e6abab1a5c580cdc2b9e1"/></dir><dir name="Standard"><file name="Form.php" hash="5e8d44717db3c461f01f52fbb1fee675"/><file name="Redirect.php" hash="d95bf19f31428d9ac8dd3eecb049ea1e"/></dir></dir><dir name="Controller"><dir name="Express"><file name="Abstract.php" hash="91079718601cd1e5493b1c2ebdf3b29d"/></dir></dir><file name="Exception.php" hash="52e9b46f04489b2f5293e3aaa5f193a5"/><dir name="Helper"><file name="Checkout.php" hash="cc47cb51dc1237c9310e244821d5d88f"/><file name="Data.php" hash="5765b5978c401bb75e3b56f952debc25"/><file name="Hss.php" hash="f09845ad41eac4b35650d7ef299e4abe"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="1f033620494a6bf64f37059d1cf6837c"/><file name="Nvp.php" hash="e895e85a068bcf479d6ad0d0d9addf8a"/><file name="ProcessableException.php" hash="2de90c8f558621439ced439d4c238b0a"/><file name="Standard.php" hash="3c60ed388ab696f96a2cb1e55f9e4481"/></dir><file name="Bml.php" hash="2e9a70be7fcb18fd620fb81293ae7a15"/><file name="Cart.php" hash="927022eeceb4c98927f693ead4b1efe7"/><file name="Cert.php" hash="65d12a6ef98665bb43f5644210ab0723"/><file name="Config.php" hash="2262949907b03bfd85d292fc06012ec9"/><file name="Direct.php" hash="23056fed58d1a60a9d6c2acadbfba531"/><dir name="Express"><file name="Checkout.php" hash="666fa132a57bc2fa3072d9e53ef295db"/></dir><file name="Express.php" hash="524a8f76d3dbc89de24d2d28883aff95"/><dir name="Hostedpro"><file name="Request.php" hash="8a5c8539fcdebe70802dede8885c9a7e"/></dir><file name="Hostedpro.php" hash="66311a423896cfb9e8f6893667eb5c81"/><file name="Info.php" hash="0b5f6386c2e638255ca68392fac1f57e"/><file name="Ipn.php" hash="dbbad4769f9163980478e25d59ec87ff"/><dir name="Method"><file name="Agreement.php" hash="3e5c0201146adaec141aba9331383b76"/></dir><dir name="Mysql4"><file name="Cert.php" hash="e4c614c2f5e31b5c137fa79952ce34c5"/><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="1db3d35fa5bd6f8e62b5e656d4140437"/></dir><file name="Row.php" hash="f87109231daaeeaaff88e90a1c388158"/></dir><file name="Settlement.php" hash="f3c80fc26c12f29a07ee3ebb0592f8f4"/></dir><file name="Setup.php" hash="070aca9490e7d7fef0ce2721728fb8fa"/></dir><file name="Observer.php" hash="343774917f36a91b429444e10e5a2296"/><dir name="Payflow"><file name="Request.php" hash="3feb4bcc8c9ed29152e4bb5fa2655d6c"/></dir><file name="Payflowadvanced.php" hash="faa6480fd5f7dff3760404c3d9c56d06"/><file name="Payflowlink.php" hash="68a9d812cfa0681f351d271ea1a25058"/><file name="Payflowpro.php" hash="00588992018fd9cab87a67056892bf60"/><dir name="Payment"><file name="Transaction.php" hash="f69848160317424680ae4b74c03a01ec"/></dir><file name="Pro.php" hash="3e321e3c58ee77fd65fd6b31aaf8a121"/><dir name="Report"><dir name="Settlement"><file name="Row.php" hash="eaf6d45f6d35cb5b1100ae53cc6e4c02"/></dir><file name="Settlement.php" hash="3361f2eb8c6ac9455e31bf694128e249"/></dir><dir name="Resource"><file name="Cert.php" hash="0f0784636c1048df5db13cdff16f1b5c"/><dir name="Payment"><dir name="Transaction"><file name="Collection.php" hash="d620b8cdf75d558c2ffedac64aee6f68"/></dir><file name="Transaction.php" hash="f0a353ff6f66f8b906c9319b55731123"/></dir><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="0edf8f3bdda803361cc96eacf05f9e64"/></dir><file name="Row.php" hash="3dea6b7df930311797f57b4981a825df"/></dir><file name="Settlement.php" hash="4a852619f5cd7526c15498abc690d784"/></dir><file name="Setup.php" hash="ad54a2dc8421bbb6e218ab847eb0157d"/></dir><file name="Session.php" hash="0e52fbc305314b8303e2768866088927"/><file name="Standard.php" hash="4ebf165592b8d143e77f85598cfac648"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Cert.php" hash="b681c77e7b6a1ec074e243f78db21378"/><file name="Cron.php" hash="f9cea41b4cdf8affcaa6a2de583eebaa"/><file name="MerchantCountry.php" hash="c2ffdf97055b49fa64ac20c8401b16ef"/></dir><dir name="Source"><file name="AuthorizationAmounts.php" hash="43cf2b07ee2871aff97a2f9b00bd422a"/><file name="BmlPosition.php" hash="857fa235c3d616e3201b60c9f16dd63f"/><file name="BmlSize.php" hash="f6ad47b26fe2336050fc459da1234012"/><file name="BuyerCountry.php" hash="d1125fce7a0bb6ec201feea65df7e96e"/><file name="FetchingSchedule.php" hash="161e4378ba1b36cd6719111288643a54"/><file name="Logo.php" hash="98f42440d7afa63e67a5573f505319ce"/><file name="MerchantCountry.php" hash="b698f98f9302ab02913c6f8fd61b61f0"/><dir name="PaymentActions"><file name="Express.php" hash="1de95e97374bd2a3798d3935420c5703"/></dir><file name="PaymentActions.php" hash="05edd94d9e97f67e3dfb06428e2d17c8"/><file name="RequireBillingAddress.php" hash="23bbd209c36544d1cdc6102a9cbc75b0"/><file name="UrlMethod.php" hash="6b4b63e4db055261fd12ea7eb7be22e2"/><file name="YesnoShortcut.php" hash="2da6b46e2d208d6a43242c96bd3a7e66"/></dir></dir></dir></dir><file name="UnavailableException.php" hash="99001c6d9c99d1524adc49cb85ec96cb"/><dir name="controllers"><dir name="Adminhtml"><dir name="Paypal"><file name="ReportsController.php" hash="ef7f12981249d0c5d3a1d6ad52a00af8"/></dir></dir><file name="BmlController.php" hash="494bd2cef11fd4163cf4508686562188"/><file name="ExpressController.php" hash="a577dce6efaf5fe6458bee9be962f0ec"/><file name="HostedproController.php" hash="e84941f2bf640f691f0bdeae79a87e1c"/><file name="IpnController.php" hash="53d79ef135d0cc95d6bdb25724b78bef"/><file name="PayflowController.php" hash="f6c5548f28fc823d94445291f8d7b8d8"/><file name="PayflowadvancedController.php" hash="b285ffce0d573a7b11c5cc97eb40d464"/><file name="StandardController.php" hash="ab15fb114adfc27dc6cf7b35714bb93f"/></dir><dir name="data"><dir name="paypal_setup"><file name="data-install-1.6.0.5.php" hash="82d9852303a512f4bf0ab831731f95b7"/><file name="data-upgrade-1.6.0.2-1.6.0.3.php" hash="a8f121f3f178ae1b42b9af8a6cf70737"/><file name="data-upgrade-1.6.0.4-1.6.0.5.php" hash="ccb9775824ca2f3833d57d1c254c9df6"/><file name="data-upgrade-1.6.0.5-1.6.0.6.php" hash="8e9a82be1cdd53eab9d521f4bbebf02e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="41f4761de03e49e2b0f15f9cf2c09500"/><file name="config.xml" hash="333bbdfa30049f6a592443174aa1124b"/><file name="system.xml" hash="99c563720e194591a4c70df62832b926"/></dir><dir name="sql"><dir name="paypal_setup"><file name="install-1.6.0.0.php" hash="a469c1645e461247ba2d45091cacf46f"/><file name="mysql4-install-0.7.0.php" hash="8a4d7d0e32b897849b9ed182618cfba3"/><file name="mysql4-install-1.4.0.0.php" hash="861caa8922fe21190378b1e1b1be5a11"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="d9026658150083112a9a477b26c93cd4"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="84d5b3b7cdc508c61e9f6171a3760d8b"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="1bcbc91075bd5c09113eb04878f86ae1"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="a63fdd125291c15c96bf95b8af666c95"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ebc82d9d5c469a88eb351e76042d5e51"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="0bd6a67c5e268ee544580fc52dbada08"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="0c907a98175600ccd1ceb837a403fe93"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="7de700b1fdde8dbe81032c23e24ada62"/></dir></dir></dir><dir name="PaypalUk"><dir name="Block"><dir name="Bml"><file name="Form.php" hash="b8587bb312604e79fc56f1e2c95851d0"/></dir><dir name="Express"><file name="Form.php" hash="ab8d6bcb8f39a9fc8693add8bb28d142"/><file name="Shortcut.php" hash="c934c7452bf6f799ab5eb3802dc3d05a"/></dir></dir><dir name="Helper"><file name="Data.php" hash="affb65965b8506f74ec579e3dc31f11f"/></dir><dir name="Model"><dir name="Api"><dir name="Express"><file name="Nvp.php" hash="e23e1274b29120a703f8feaf5feb3c10"/></dir><file name="Nvp.php" hash="4119db427637448394b30823707feef2"/></dir><file name="Bml.php" hash="07663320785979059297d1f68040d40d"/><file name="Direct.php" hash="f8e18ae227952ffd2ce3d28d89d211c4"/><dir name="Express"><file name="Checkout.php" hash="56db8706940006ee1723600b8839dcf8"/><file name="Pro.php" hash="f7996a02b7831f5655d721dd09dbb863"/></dir><file name="Express.php" hash="e5ec7a4b91dd659e77a6b8e45072f34f"/><file name="Pro.php" hash="f15a60c08f055d020b67812508dbaf34"/><file name="Session.php" hash="479e0f59e3068e17d1bc1b931486de10"/></dir><dir name="controllers"><file name="BmlController.php" hash="a172c46b5c88ba77cc86dc8c1bfb59f0"/><file name="ExpressController.php" hash="e4fc997f978a3f20062593a77e1efcbf"/></dir><dir name="etc"><file name="config.xml" hash="89875093f2f718104c448faef9890759"/></dir><dir name="sql"><dir name="paypaluk_setup"><file name="install-1.6.0.0.php" hash="09c6363a8cfeb315b24bf0fd7af38815"/><file name="mysql4-install-0.7.0.php" hash="33b0cef1a049e53c37f4b0a146e9d1f1"/></dir></dir></dir><dir name="Persistent"><dir name="Block"><dir name="Form"><file name="Remember.php" hash="333819d9ae4c9c1ae21658f486533b13"/></dir><dir name="Header"><file name="Additional.php" hash="10c1305d86df9738a70b3bc713736ea4"/></dir></dir><dir name="Helper"><file name="Data.php" hash="0d8f817fef415f7eaa1a689b7d8808f2"/><file name="Session.php" hash="d6b450f1ea3a9eed8fcffa150cfe014d"/></dir><dir name="Model"><dir name="Observer"><file name="Session.php" hash="189c0308ec2f5382cc59af22d1d5a875"/></dir><file name="Observer.php" hash="8c12d74012669ce2f73fbfd77be77281"/><dir name="Persistent"><file name="Config.php" hash="42fe0ac0cd68cc114178e9fc27b4f742"/></dir><dir name="Resource"><file name="Session.php" hash="ffa5af83cb7feee8b7567cba7cbe532e"/></dir><file name="Session.php" hash="83e4fbfa07189633e2a468e560206eac"/></dir><dir name="controllers"><file name="IndexController.php" hash="890098199a92d1c36c949b70eb2fc98f"/></dir><dir name="etc"><file name="adminhtml.xml" hash="e0b68cb0d29e4f576509a3008be30cdd"/><file name="config.xml" hash="c5c06dc6a1703ae9012a69e17f6b103b"/><file name="persistent.xml" hash="f946fe7d047c8c278e1973f28955a7cc"/><file name="system.xml" hash="13c4e7c48262c8cee85e3b4238af098a"/></dir><dir name="sql"><dir name="persistent_setup"><file name="install-1.0.0.0.php" hash="82392709bb0485996d6a719abd30b231"/></dir></dir></dir><dir name="Poll"><dir name="Block"><file name="ActivePoll.php" hash="9d4dd3295aff282ce7c047a86c19beea"/><file name="Poll.php" hash="f39732e4ded4e7eedd55124a480819cf"/></dir><dir name="Helper"><file name="Data.php" hash="12d08eb1c5e1ed2ed817120806c97ce8"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="208e9a3a7c7d73fc792589d408713786"/></dir><file name="Answer.php" hash="5e21ed907384a62a8d8ed4d32f1d3c55"/><file name="Collection.php" hash="7e9a6d63368026ab14d077e8737e3b2a"/><file name="Vote.php" hash="2feec63bb9b4b2dcd48a5bc9d7e59294"/></dir><file name="Poll.php" hash="c2bb5286e3949ee542e56896c46c83d2"/></dir><dir name="Poll"><file name="Answer.php" hash="3a11632e250fe985c2c486c0634e80ce"/><file name="Vote.php" hash="83379319f239e8e979d95417db90a642"/></dir><file name="Poll.php" hash="01c804752ecde379ae176b4accd2cf08"/><dir name="Resource"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="9d79a54ee63b81002e7ea6d6a144fa2f"/></dir><file name="Answer.php" hash="03ee7869fc60762dd91b04cf4173ccff"/><file name="Collection.php" hash="328170d83a3fc0e0b640337c0c9b4053"/><file name="Vote.php" hash="04e1e11d975b1912c4b0ea92846b29b9"/></dir><file name="Poll.php" hash="f9107cb2951ecfe9608312b915d02b01"/></dir></dir><dir name="controllers"><file name="VoteController.php" hash="8b50c739a704b988fbb963e54bb6140a"/></dir><dir name="data"><dir name="poll_setup"><file name="data-install-1.6.0.0.php" hash="b1ebd6ebf260727fabb12edaa5bf718b"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4ce724cdd5f9f64e41b9c85fe7ebc8c8"/><file name="config.xml" hash="a7733999ba43dde67c91de87dba8a158"/><file name="system.xml" hash="ea0e25de8fab306c65f85050e96323db"/></dir><dir name="sql"><dir name="poll_setup"><file name="install-1.6.0.0.php" hash="c3a053dd443decf692d1b1d757b1a8b7"/><file name="mysql4-install-0.7.0.php" hash="f329a97aa38a93dc7c8d7dc2093c98ce"/><file name="mysql4-upgrade-0.6.0-0.6.1.php" hash="7988501bb0249e9dc86d2735cc859ef2"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="355386de84256066b8f83bdbe166966a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="2e6810d2ae9ddc4479be28277ec498d7"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="00b7e17931f71719221ecff3466e6855"/></dir></dir></dir><dir name="ProductAlert"><dir name="Block"><dir name="Email"><file name="Abstract.php" hash="225b1174b83bf9842bd3911460805707"/><file name="Price.php" hash="4d91be108a830bcf6f395917eb48b7f4"/><file name="Stock.php" hash="827ca19c2f52bc7f1d7a268f41fe85e8"/></dir><file name="Price.php" hash="a55f93ec80e2e019a40e09cd24ed190c"/><dir name="Product"><file name="View.php" hash="95eeb0ea7e599217005aa7482f574f8a"/></dir><file name="Stock.php" hash="87c1d1020e7b6f00dea8d267ecac61e0"/></dir><dir name="Helper"><file name="Data.php" hash="5f59f1bbf53ac2a0c5957e2d6a868907"/></dir><dir name="Model"><file name="Email.php" hash="62211d554c40447b09267f5f8582cc00"/><dir name="Mysql4"><dir name="Price"><file name="Collection.php" hash="0396232e9ceaea1f1ad8c2ea2fb7bb83"/><dir name="Customer"><file name="Collection.php" hash="4b636dbca91f797d2ff2982a23aca276"/></dir></dir><file name="Price.php" hash="3798c79c2dd9a05bba2befae549821fd"/><dir name="Stock"><file name="Collection.php" hash="5fbd104a1b19b6bc4796728283bd519e"/><dir name="Customer"><file name="Collection.php" hash="de60fd212fa33814c90dda0b506c0885"/></dir></dir><file name="Stock.php" hash="6a68e66d99eddfcd1b35a7d11140ff10"/></dir><file name="Observer.php" hash="ccfbe1294d264e9c1625a830fd03dafc"/><file name="Price.php" hash="08c6a60d8fbc5c87660c03c2f2a9ee02"/><dir name="Resource"><file name="Abstract.php" hash="962282802b54cd53d8ee99c30f11fccb"/><dir name="Price"><file name="Collection.php" hash="39b17fe210ac54fdf1d397221a6d07e3"/><dir name="Customer"><file name="Collection.php" hash="01477662ad780c40948cee9fcbd028e2"/></dir></dir><file name="Price.php" hash="f2f9c90ae8ba3579a1a18d3f164acbe1"/><dir name="Stock"><file name="Collection.php" hash="2bf4b357d27c4b479f339629b643f146"/><dir name="Customer"><file name="Collection.php" hash="8c18030b3c7f4b52105d004386030379"/></dir></dir><file name="Stock.php" hash="e6b66cfbba145e70963e8ab48006c461"/></dir><file name="Stock.php" hash="5930fb795ac3e7b13252d03a68efeac1"/></dir><dir name="controllers"><file name="AddController.php" hash="287b8f88273d42a1133abc7a16c9a350"/><file name="UnsubscribeController.php" hash="b2f7fd4b794230cafde3c8ef541c915e"/></dir><dir name="etc"><file name="config.xml" hash="9f495dd8376ce0b7ca10513a5a5ae92d"/><file name="system.xml" hash="719dbd705ac6d1174df149ff978f19ed"/></dir><dir name="sql"><dir name="productalert_setup"><file name="install-1.6.0.0.php" hash="a4714952faba9fd667a39e8fdecf0a8f"/><file name="mysql4-install-0.7.0.php" hash="4fec003c5fcefb6ed96d2c8f421ad61a"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="0b4408408f6ff0054957d73a0268142e"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="82cc39f904bc05bbeaa58fb326eed66b"/></dir></dir></dir><dir name="Rating"><dir name="Block"><dir name="Entity"><file name="Detailed.php" hash="5b2c246c58b3973bf079c6323dfc4291"/></dir></dir><dir name="Helper"><file name="Data.php" hash="2ae5f42052d5a9bb5fc4c759bd437a0c"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Rating"><file name="Collection.php" hash="98b8bb8cf75a40985be12250c359e4d2"/><file name="Entity.php" hash="ab6b476cb18067f88027898bbbb075bd"/><dir name="Option"><file name="Collection.php" hash="3ed1b12dae6506f14d6edfec825e4505"/><dir name="Vote"><file name="Collection.php" hash="3812ae6882681b138fab0ed11d81c3bb"/></dir><file name="Vote.php" hash="de1ce59afd0fc091dadba951f7e46e97"/></dir><file name="Option.php" hash="fe79670b93585fe9364937ff96fcf90b"/></dir><file name="Rating.php" hash="db82336946dc3d047aec8e37241ae958"/></dir><file name="Observer.php" hash="5849a33fe1c821fffc75ee15e69a55f8"/><dir name="Rating"><file name="Entity.php" hash="7fd93675f8aea244a2d0393aeeddbb86"/><dir name="Option"><file name="Vote.php" hash="9765a36573defea0530e9a86b455367d"/></dir><file name="Option.php" hash="7ab99eaf3748505e39632fe7ad81cac2"/></dir><file name="Rating.php" hash="883e56e21530eb1a20d5b248bd4534e1"/><dir name="Resource"><dir name="Rating"><file name="Collection.php" hash="e626f83de7bdff1c5698290eac1de146"/><file name="Entity.php" hash="fdacaaaf2ad847c5ea4bef8107c622e9"/><dir name="Option"><file name="Collection.php" hash="6a7b3b862590bd2edf6f39b6d7a81e7b"/><dir name="Vote"><file name="Collection.php" hash="6a2753601a5f70a4ad58183f6dfbdeff"/></dir><file name="Vote.php" hash="99086c9274a25b1b09dd83cd77baff81"/></dir><file name="Option.php" hash="cccf28dce22249e4e5b9254c5ea4af11"/></dir><file name="Rating.php" hash="2cf06073f51b4c4e3c30d4c8dae0d529"/></dir></dir><dir name="data"><dir name="rating_setup"><file name="data-install-1.6.0.0.php" hash="4e15aecb4a0f516fd448494b346962c9"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="abf5bc5fc9594032e42c5262d43df141"/><file name="config.xml" hash="d0037270ef3898d66addac3e45c6fab9"/></dir><dir name="sql"><dir name="rating_setup"><file name="install-1.6.0.0.php" hash="c459c3433a33cd40a0dcd2d1f0d728df"/><file name="mysql4-install-0.7.0.php" hash="22f4371dec83720aec05d2289aa33b3a"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="c1cffd8df87f22dd3e7c0c63aa318338"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="3ae0b12a0b9f99fd61a2b8e8b3bd76f7"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ff25b0cf4eead12cdea807d72bfbe834"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="cc7b4719d7b7171050e6e89d008f888f"/></dir></dir></dir><dir name="Reports"><dir name="Block"><dir name="Product"><file name="Abstract.php" hash="618f916cb328bee34177a44b1b8221b5"/><file name="Compared.php" hash="512f58ad5f3b54879481e90b1807baab"/><file name="Viewed.php" hash="916b03dbbc0a68d4de7ad2be3d7bc26b"/><dir name="Widget"><file name="Compared.php" hash="74a13802738e7d4f1dda322693277642"/><file name="Viewed.php" hash="d5bce87735cb2310fd42cf375051d6aa"/></dir></dir></dir><file name="Exception.php" hash="e4cb46947359c3920baa2dd2f383ec9f"/><dir name="Helper"><file name="Data.php" hash="e133f1644a3dadb9cb4e3c27e5242a63"/></dir><dir name="Model"><file name="Config.php" hash="466aa431dc8dc22aec7de0830ceccc35"/><dir name="Event"><file name="Observer.php" hash="d2d8b4b5e576d347db7e07750a215cb8"/><file name="Type.php" hash="da9a516b6abca0af80711cfbce13ecab"/></dir><file name="Event.php" hash="62849419a25cebdc5f59f7599f7d40a8"/><file name="Flag.php" hash="e8420f008083dd2897e243b6890dd816"/><dir name="Grouped"><file name="Collection.php" hash="fce1a8636b71e8b68adad5ba94d587e4"/></dir><dir name="Mysql4"><dir name="Accounts"><file name="Collection.php" hash="c43c6d376971152f8071daa402b1edfe"/></dir><dir name="Coupons"><file name="Collection.php" hash="215bac9d192f4e523cc7c3ced24c3d26"/></dir><dir name="Customer"><file name="Collection.php" hash="3a57467ab9a8c8ed8b101fd3bd4d9de9"/><dir name="Orders"><file name="Collection.php" hash="5f50161b3f87726d13556c60de33fc65"/></dir><dir name="Totals"><file name="Collection.php" hash="6b8f5c4560b150a9b63a06ebd8281ef0"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="3efe68986197b4643d255232e4b30b27"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="3f9b8fc2a1af148e8e26868e0533a767"/><dir name="Type"><file name="Collection.php" hash="da2d081bca4231b71e188cafe3dfe5cd"/></dir><file name="Type.php" hash="80cfeb6063f15022e3959276c2f7f457"/></dir><file name="Event.php" hash="eabd64bf88500f36dc159ba18998dd1a"/><dir name="Invoiced"><file name="Collection.php" hash="596250559346d847f871f60efcacea9b"/></dir><dir name="Order"><file name="Collection.php" hash="8c15df59b61ac9da86805fb74f2a9bad"/></dir><dir name="Product"><file name="Collection.php" hash="e1a6d4fc36e68edc04c39a320e3c6cdb"/><dir name="Downloads"><file name="Collection.php" hash="d32469a3d343bc4060da89ec48d6c640"/></dir><dir name="Index"><file name="Abstract.php" hash="3dba64a9f30b6797b5a35f97c1eabd42"/><dir name="Collection"><file name="Abstract.php" hash="bdcc7e8a4eaea95d6e98e43455a0d202"/></dir><dir name="Compared"><file name="Collection.php" hash="2585fdd6da8bc3042932c8a152de8541"/></dir><file name="Compared.php" hash="f0779232b1141e8441864d846b68cbd2"/><dir name="Viewed"><file name="Collection.php" hash="f14514c3a00996b8b09bb80b7f8b6658"/></dir><file name="Viewed.php" hash="c6c7c35613230985502ebb7d071ba19a"/></dir><dir name="Lowstock"><file name="Collection.php" hash="8da81a9d3e31b0fb501b9551d937f400"/></dir><dir name="Ordered"><file name="Collection.php" hash="4c9d3d8a300c92f4e59fa1cf0bc2e5a3"/></dir><dir name="Sold"><file name="Collection.php" hash="d6d265aed97e1809e2464a5d43ea1d4c"/></dir><dir name="Viewed"><file name="Collection.php" hash="eff42b4102e0d1d82de7c6bb1188b56c"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="2bc4c24ef71a09eccbf5ef65f373ad45"/></dir><dir name="Refunded"><file name="Collection.php" hash="2ff3e3a83c3c5a0191e513257d2b72a6"/></dir><dir name="Report"><file name="Abstract.php" hash="3eecb8325b82a49cde6e27cdc5eafffc"/><file name="Collection.php" hash="20b54baab302dd188736d0dd63bdb087"/></dir><dir name="Review"><file name="Collection.php" hash="4f2ec56ada2d858e160208bb521235b5"/><dir name="Customer"><file name="Collection.php" hash="65bab90d56934dcd3a42639a0bcba208"/></dir><dir name="Product"><file name="Collection.php" hash="ff10648d46a1e8c2eea9a53dafed813b"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="14e845b57982b0e7dfc81862c46bffbd"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="cb1d5db0cfda4b2ec87103c0e85b79ed"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="f15e93858b8bdce3ecb04c115840e3c8"/><dir name="Customer"><file name="Collection.php" hash="80852db6816412e229adfa3a8f5ce6c4"/></dir><dir name="Product"><file name="Collection.php" hash="d72784e5dc3adbce557c1492b86dc98e"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="97636b94741f9c0b3cc95f9592deb3f9"/></dir><dir name="Wishlist"><file name="Collection.php" hash="132ed2a5e8dec030ccfae67bfb90e66a"/><dir name="Product"><file name="Collection.php" hash="f115da5e0ab3d7075fcc4ed4fa7b6a73"/></dir></dir></dir><dir name="Product"><dir name="Index"><file name="Abstract.php" hash="292191f33cea4107c1b90ff1ef94d664"/><file name="Compared.php" hash="7ec52d013ae0ce0af0f1cfa159e05603"/><file name="Viewed.php" hash="482edac3fa73667bea4ecf181862b561"/></dir></dir><file name="Report.php" hash="add4596330bdaf4b65c71986d1812095"/><dir name="Resource"><dir name="Accounts"><file name="Collection.php" hash="3179184134fc5150f0c44484aafb7235"/></dir><dir name="Coupons"><file name="Collection.php" hash="504549c647246bce472e05f116d588e2"/></dir><dir name="Customer"><file name="Collection.php" hash="c04b1a04cd26767559f06e1df86b63eb"/><dir name="Orders"><file name="Collection.php" hash="551d89363386b8a2c3b9efd9e4ff5ea2"/></dir><dir name="Totals"><file name="Collection.php" hash="d89aeac40995c68f7ae257fa20e19c25"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="dd4efb67b43fa97ec444d188c40fb5da"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="9d2351a8247320cdc4a9b1c8668a40db"/><dir name="Type"><file name="Collection.php" hash="a3ad810297f289f83ad5c45a8c172edf"/></dir><file name="Type.php" hash="58f8c8afd6d4f406d3670dc3845218e3"/></dir><file name="Event.php" hash="47c620238575bee46c63de87f13673c8"/><dir name="Helper"><file name="Interface.php" hash="73deb4e5f18bc4a8769be383b181950d"/><file name="Mysql4.php" hash="a31f1566292c8877017f7f0093810012"/></dir><dir name="Invoiced"><file name="Collection.php" hash="b35d7b6a5a7d603d9883aed3beb0e4cc"/></dir><dir name="Order"><file name="Collection.php" hash="b123044edf30fc232fe670c1057ef195"/></dir><dir name="Product"><file name="Collection.php" hash="a7069193f3f6c6fc2e7f82f03bddd6f5"/><dir name="Downloads"><file name="Collection.php" hash="51303306d7b75326b273829cfa572be6"/></dir><dir name="Index"><file name="Abstract.php" hash="b5437b47c39a6ed1698fa2086dbe1ab0"/><dir name="Collection"><file name="Abstract.php" hash="11ee683efccf1e55fcc5393ff64ccc60"/></dir><dir name="Compared"><file name="Collection.php" hash="b7943b8e1c565523408aad78b53120e2"/></dir><file name="Compared.php" hash="d1f2c9e010d53364eeacdd2e53a87180"/><dir name="Viewed"><file name="Collection.php" hash="260a26e937fdbdd1b55556612fc31fa5"/></dir><file name="Viewed.php" hash="78fc9ec66828889d83f48d3a67951b79"/></dir><dir name="Lowstock"><file name="Collection.php" hash="77144957dd08fe3c7efd9c9e3b666cfe"/></dir><dir name="Ordered"><file name="Collection.php" hash="1b6cd31bc074cf961f9df372d63802bd"/></dir><dir name="Sold"><file name="Collection.php" hash="60f992a0a0bf13d7c46c7fc4f8e89a62"/></dir><dir name="Viewed"><file name="Collection.php" hash="c5ae6f69bf83af5f0c7086c4b291b4e0"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="3677cc0579ff217a62b289187bee32a2"/></dir><dir name="Refunded"><file name="Collection.php" hash="fee69182f49ac48ad70de392d9a1f059"/></dir><dir name="Report"><file name="Abstract.php" hash="00a3abd2a156adb029374767f8552d90"/><dir name="Collection"><file name="Abstract.php" hash="b6d1020b6c47f9f080170841b8217945"/></dir><file name="Collection.php" hash="db0c889ead22299b24cb3037af46435a"/><dir name="Product"><dir name="Viewed"><file name="Collection.php" hash="b3eb71f52fdfb50a61455d047680c928"/></dir><file name="Viewed.php" hash="8d6b6bd9f4a8ef9c9eae7f6476949640"/></dir></dir><dir name="Review"><file name="Collection.php" hash="a1ffbcfcaf4a1500d57c6ac9ae2b5959"/><dir name="Customer"><file name="Collection.php" hash="3ed0398d28f85d15e3822cd3ce608849"/></dir><dir name="Product"><file name="Collection.php" hash="219fa0fc46e5d6d051fe65c66667e065"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="bd423bb0efda9ee7270ee7432150ce60"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="79f226c24928c53425d20f5f62da5e51"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="ae3597e4e450133bf33f987aa8660128"/><dir name="Customer"><file name="Collection.php" hash="ae3287e1d1898fa056b384916f6d63f3"/></dir><dir name="Product"><file name="Collection.php" hash="a4187c548638cb0a1361fe8d97e5bad9"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="311a4e8a9a132084b8c30bcf594a18fa"/></dir><dir name="Wishlist"><file name="Collection.php" hash="f53acf2c4ec3e25663face13ba167418"/><dir name="Product"><file name="Collection.php" hash="5199a9f0c8d3b3c5c0fe4de21fc0fcf1"/></dir></dir></dir><file name="Session.php" hash="383b996046646860e1b7eacf13052b33"/><file name="Test.php" hash="a1539b9551cb74f18e55092c12af6096"/><file name="Totals.php" hash="d60836b049bea319b0b0b1b9cd948538"/></dir><dir name="data"><dir name="reports_setup"><file name="data-install-1.6.0.0.php" hash="64e590b1e59baf77702b2c4d76f9d40c"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="94e3c3fccd2049580c5a0a2afca86822"/><file name="config.xml" hash="616f260b124342bbc2d920d543186a7d"/><file name="system.xml" hash="69dd7f7f48521cbcbb94998398aa1bb2"/><file name="widget.xml" hash="2619d73f00c0ad6ec41f65d18844d2d2"/></dir><dir name="sql"><dir name="reports_setup"><file name="install-1.6.0.0.php" hash="55d87d974e8f41e8186951d6e6a6453c"/><file name="mysql4-install-0.7.1.php" hash="af21e4d6ecc6f6cba44266ceff019665"/><file name="mysql4-install-1.5.0.0.php" hash="ca1e72a29297b875beab69f7e07d943e"/><file name="mysql4-install-1.6.0.0.php" hash="8c1e61af4cbb974fb17ef83598a62fd3"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="fd855e42f7bd7ca2cd1446a7e2ac1dc4"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="f387183a1ad7a224e955db466cc3b944"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="f3ec598107ef92012a77499caf197285"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="3f9099993e152399e44a03fc99e8921e"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="0d82502e2f991d34c8347e5b33baed29"/><file name="mysql4-upgrade-0.7.5-0.7.7.php" hash="73127b2b03b6e35547d2a7e92a7c88b5"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="f8b50afa490f91af4993a756da5f31fc"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="0447ab3fb5ca596d0ffd87457bc1e147"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="2c8daf97427822879993a1291dca7cc6"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ba35d7d93f4a69daf9b5c02a432a2ae6"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="a904cac0afff0781926ee2fbd051ad2c"/></dir></dir></dir><dir name="Review"><dir name="Block"><dir name="Customer"><file name="List.php" hash="d4ed74456baf632e208aacad66246090"/><file name="Recent.php" hash="bf27ed44aa69d3697fad933b5eaedf05"/><file name="View.php" hash="6549771994b2f38aa3edd6f1f54aa46b"/></dir><file name="Form.php" hash="fa4c875b6d1fb7340ce47273e8d5d5f1"/><file name="Helper.php" hash="82af82c26198d10b426aa54328a4c703"/><dir name="Product"><dir name="View"><file name="List.php" hash="28e079affe95d8bc1296e2b9fd78940c"/></dir><file name="View.php" hash="d2f879449b87a98482cb947345761d32"/></dir><file name="View.php" hash="84adb1538187560453b7893409017f16"/></dir><dir name="Helper"><file name="Data.php" hash="4dc02867d5b9f46f28cfcdfd10603406"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Review"><file name="Collection.php" hash="231e5f945a79346a45f701a5d268eda4"/><dir name="Product"><file name="Collection.php" hash="4ecfe1e0e5c02a89d359dfb686625232"/></dir><dir name="Status"><file name="Collection.php" hash="d7a44c0e2f8db27750ff47757d8f0b0a"/></dir><dir name="Summary"><file name="Collection.php" hash="9bbc9847103c276c7025540f8dc3bc3e"/></dir><file name="Summary.php" hash="3d1a092028b1e95c83e273dcc0119382"/></dir><file name="Review.php" hash="df557b484b3e07ff02ad677f7dab3299"/></dir><file name="Observer.php" hash="187c150a04e4b65e988a3005fa4237b1"/><dir name="Resource"><dir name="Review"><file name="Collection.php" hash="675220689581b730d89f374d79309ac8"/><dir name="Product"><file name="Collection.php" hash="dd3b3f69e9f4f141f274d2ea2fd0da29"/></dir><dir name="Status"><file name="Collection.php" hash="0e5b2bf7db77106fdc296c8710646afc"/></dir><file name="Status.php" hash="37a64630b5f72e75f1579541036cd80d"/><dir name="Summary"><file name="Collection.php" hash="9fd5a10f8b10702411d54eb2ad374b86"/></dir><file name="Summary.php" hash="ce2ff031cd84af1344a2a10de9648a24"/></dir><file name="Review.php" hash="935a614113f447822f700b2f8a976661"/></dir><dir name="Review"><file name="Status.php" hash="da5e61e4c13ca0acf794db1557d82920"/><file name="Summary.php" hash="f58309df17a08c40df1542853bb5f631"/></dir><file name="Review.php" hash="665618cb6781da84fa55cf8b40215d21"/><file name="Session.php" hash="d98c19a1a026f4da5cb9cd180240b97c"/></dir><dir name="controllers"><file name="CustomerController.php" hash="b5c2aa2641f850992dc20bb1f32a19f0"/><file name="ProductController.php" hash="0300db9b002d4dd138447574f50837ee"/></dir><dir name="data"><dir name="review_setup"><file name="data-install-1.6.0.0.php" hash="de2be6d3f19e27b4e499c553fe15c3fd"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ddee265b27463e15ee5cafd6bea819b9"/><file name="config.xml" hash="984479d706500aa237fbb240bffd02ce"/><file name="system.xml" hash="ea5feec72f38653dfd06e195edfd8d32"/></dir><dir name="sql"><dir name="review_setup"><file name="install-1.6.0.0.php" hash="8bc0a1ace2757b8b778b619029c997d9"/><file name="mysql4-install-0.7.0.php" hash="69ec4c803e21e3ae9553029f54a8b7b1"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="bd703982ba7a03195f9138fe189f7cac"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="8007490fae6dd3e8459384e8afc873a3"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="d9ef2ad5e2ae3ef8529356343b8d8ce7"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="b95be53f50d2c278a1f4fb3b5ce4404a"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="170011207009ec195877616c83c2dcf1"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="c63218005a52bddeaa8d2b77705b3a56"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="aafb202ed6c8c2a0ed5dbb2342faf67d"/></dir></dir></dir><dir name="Rss"><dir name="Block"><file name="Abstract.php" hash="d273da82fd45fb8dd9351ba4c2ec092b"/><dir name="Catalog"><file name="Abstract.php" hash="f5630e12d79342e899045f6adea1140d"/><file name="Category.php" hash="b8c58a1e9225c122898442aeea062cb4"/><file name="New.php" hash="f6d7f2e3e9f9622fb01b608b3817c5a4"/><file name="NotifyStock.php" hash="a6dee76401689ea0660bd584be6af8c3"/><file name="Review.php" hash="c9d6e99cc343b6b4e7af22193c81cdb0"/><file name="Salesrule.php" hash="5511bdb820a02ce38b1468831baba8a4"/><file name="Special.php" hash="a7fcfe03c15df11c3172ca1a5807c230"/><file name="Tag.php" hash="5da379dbd2fca217d43116a540756147"/></dir><file name="List.php" hash="c134cf1fc245edc20a4c577b8d88a20e"/><dir name="Order"><file name="Details.php" hash="314358ddd4793aaaeb84c9fdb66c06ae"/><file name="New.php" hash="f0d622f6dd96d43f7555e44cdef37531"/><file name="Status.php" hash="b6e4865169441895e13267783571f55c"/></dir><file name="Wishlist.php" hash="6bd895d709d4edcdd5308eb922ab0c98"/></dir><dir name="Controller"><file name="Abstract.php" hash="d1fc9e52d31ea0e960c0d6a8564aea9f"/></dir><dir name="Helper"><file name="Catalog.php" hash="3fd6dce9be030cb1d36141a46731b950"/><file name="Data.php" hash="55fa48683fe2e3d0100632bbf26c3c41"/><file name="Order.php" hash="8afc4606ab57e5a3b4fe41592bfbc3f0"/></dir><dir name="Model"><dir name="Mysql4"><file name="Order.php" hash="7169ae348d8a0ab3381370b80f1f1310"/></dir><file name="Observer.php" hash="7dcfc7b899e712dc0deb9cf984c70a23"/><dir name="Resource"><file name="Order.php" hash="78c23647a4d6eeb0af7d2b8fa60690b2"/></dir><file name="Rss.php" hash="263a3701ec8e994693c27b0e2202949a"/><file name="Session.php" hash="2f38ecb9b1a5ced808a2033cc2822c87"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="c2d7f8edefc8e462a89b36f4c10cb852"/></dir></dir></dir></dir><dir name="controllers"><file name="CatalogController.php" hash="7f5f0d1785a4a59e9479451e6f4fdf64"/><file name="IndexController.php" hash="a0525ee88af3d612321e5d49a4e77c00"/><file name="OrderController.php" hash="e1d86b1a31c22bdb4f33cb938dc74f49"/></dir><dir name="data"><dir name="rss_setup"><file name="data-install-1.6.0.0.php" hash="8d869c58ac26994bf46e811d856e4cd0"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ba3ed9cb817c8aded8e36f61ea4310f4"/><file name="config.xml" hash="e142806805d879797e731ab26e248c18"/><file name="system.xml" hash="5ad2ba45ac1723a8436e2c73f3ab1a8a"/></dir></dir><dir name="Rule"><dir name="Block"><file name="Actions.php" hash="395847c0358336f97c023d2be4ffc6f0"/><file name="Conditions.php" hash="003c8e3d6dbcdc857384775a4bdd0b1a"/><file name="Editable.php" hash="8812c2ce0f94ea69edfc87956f614e19"/><file name="Newchild.php" hash="eb091bd20136f68a2bb771aee0d7a51d"/><file name="Rule.php" hash="b00b3a6da259aa4087e759d740ae6ae2"/></dir><dir name="Helper"><file name="Data.php" hash="089eb8a04ed0ca2db695f19ece8049da"/></dir><dir name="Model"><file name="Abstract.php" hash="cbbe40af9a7f82b4434fdb5a783747ca"/><dir name="Action"><file name="Abstract.php" hash="72501e4716510d141d20b1897a041243"/><file name="Collection.php" hash="4095648890ac8f3ba928567d8d509d79"/><file name="Interface.php" hash="0ab0329b65bddad7c5c1ca74768f267f"/></dir><dir name="Condition"><file name="Abstract.php" hash="2bef786dc6bee0760a295b50ad3dee8e"/><file name="Combine.php" hash="0f940099687e013bef37c22fd54853c7"/><file name="Interface.php" hash="f6694ab833d736c3d526f2281e0d02cc"/><dir name="Product"><file name="Abstract.php" hash="382e2c6be77e1cf92e05c1b32138e838"/></dir></dir><file name="Environment.php" hash="5d0ddb7e378f883c6d5cac6ca1442458"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="9055182f4b776910d29756bf20ea69a4"/></dir><file name="Rule.php" hash="5d39880b7a3ad3bf1c0981ce3d127905"/></dir><dir name="Renderer"><file name="Actions.php" hash="f8abf05b23b0a39a1b7739af292d3fec"/><file name="Conditions.php" hash="1badbc8582a6e4336df5cbcd27156991"/></dir><dir name="Resource"><file name="Abstract.php" hash="05d6340fa9a502475db03d00c294db3d"/><dir name="Rule"><dir name="Collection"><file name="Abstract.php" hash="f61d8968f3ab88a1ab901a494e49a552"/></dir><file name="Collection.php" hash="6eef58067be05940d8af4df476cdfe1d"/><dir name="Condition"><file name="SqlBuilder.php" hash="798b6d8a50414805517f156135314227"/></dir></dir><file name="Rule.php" hash="2bd54608a57fb2993a5be6709a669122"/></dir><file name="Rule.php" hash="869d1fcb02a4d6646d52494b27d34d3b"/></dir><dir name="etc"><file name="config.xml" hash="de86bad5708febfb14fdc2b05f820246"/></dir></dir><dir name="Sales"><dir name="Block"><dir name="Adminhtml"><dir name="Billing"><dir name="Agreement"><file name="Grid.php" hash="eb8b90651c61f10963f5e5f91aa16d88"/><dir name="View"><file name="Form.php" hash="a350c962ed6f6ebff4b81d226e2f788a"/><dir name="Tab"><file name="Info.php" hash="cfc1c5e3ae16493488ea81f1dff965fc"/><file name="Orders.php" hash="c55553fc7fb363a9fc1e6e9101029cc3"/></dir><file name="Tabs.php" hash="d7a386e4565962b33f36719e7d1b6702"/></dir><file name="View.php" hash="eed852d2495fb5625abd9071a1bdcc01"/></dir><file name="Agreement.php" hash="e9d14a515d39fb6b7d5bb14be2e40837"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Agreement.php" hash="1de03b04ac9228e42f0989ae2b7e8833"/><dir name="Recurring"><file name="Profile.php" hash="74e0b2c497e6774f7390e6a9d5252d53"/></dir></dir></dir></dir><dir name="Recurring"><dir name="Profile"><dir name="Edit"><file name="Form.php" hash="b79f266ec7e74255a96f3a48463a2f86"/></dir><file name="Grid.php" hash="8c358d95db163e210eeef4a16d46ae5f"/><dir name="View"><file name="Getawayinfo.php" hash="0985b9bfe11ecf38746b31c632b7a760"/><file name="Info.php" hash="247eb8db469244c5cdf45eae73d8b03e"/><file name="Items.php" hash="b7ef1d635ba54a9223fdc2cf0b745af1"/><dir name="Tab"><file name="Info.php" hash="11e87ece2401df9b8995c2dddbae48de"/><file name="Orders.php" hash="2305c2f0aadd1f7a4e74a3083b2c4207"/></dir></dir><file name="View.php" hash="42e76a2a90f87338506621e1700858ed"/></dir><file name="Profile.php" hash="2dae9cfb76cdea482713639b10eabf76"/></dir><dir name="Report"><dir name="Filter"><dir name="Form"><file name="Coupon.php" hash="f6ca86ee921aa91af39b1a9f26780135"/><file name="Order.php" hash="80ee5593d869e872c192bf2e6a6b036e"/></dir><file name="Form.php" hash="77863f18119305ac7415ade2d9e4602e"/></dir></dir></dir><dir name="Billing"><dir name="Agreement"><file name="View.php" hash="390dedf14a95d30a5d43b6ac194b6d86"/></dir><file name="Agreements.php" hash="f9c1cb89a33ad8c1f0c7d4367c8b932e"/></dir><dir name="Guest"><file name="Links.php" hash="cd82d28625fa65cc4211cd54ebf87c70"/></dir><dir name="Items"><file name="Abstract.php" hash="5956cc9aa42292248c64380dfb3648bf"/></dir><dir name="Order"><file name="Comments.php" hash="4691c7a8276b8bcad62345a5dc528b54"/><dir name="Creditmemo"><file name="Items.php" hash="368e9817460b0e74947671639a66502e"/><file name="Totals.php" hash="852cf0fc4c8d0cbf6482fe3dbab6517f"/></dir><file name="Creditmemo.php" hash="547dac98aa7b45cb2d67a507f3d2d635"/><file name="Details.php" hash="c5af633789f0bbb9dc1eab9df46fdbe0"/><dir name="Email"><dir name="Creditmemo"><file name="Items.php" hash="1ca6dc46f49bf202bf5d463f79f85e2b"/></dir><dir name="Invoice"><file name="Items.php" hash="3418b7ad721d070b89a16008f4f79698"/></dir><dir name="Items"><file name="Default.php" hash="4684f78cc62ae538e21a96ecfcf58ab5"/><dir name="Order"><file name="Default.php" hash="79a61a5a4740cdcd32b8a8f563b33112"/><file name="Grouped.php" hash="c08e76bb61959e3ac1b5de6a9427e6ab"/></dir></dir><file name="Items.php" hash="50bfc5033de5784f363f7ba7ef3a1cfb"/><dir name="Shipment"><file name="Items.php" hash="19baaa02d07ba6c625415e57a166f7e6"/></dir></dir><file name="History.php" hash="fd256c073ba771eae1950496c55f8857"/><dir name="Info"><file name="Buttons.php" hash="14757574666305a953510863e759b280"/></dir><file name="Info.php" hash="da273d1e6a4243dfa7a0b0dbbc19fdda"/><dir name="Invoice"><file name="Items.php" hash="32379fa0918cc6d9bd34d56c25f4d3a8"/><file name="Totals.php" hash="8a50a51a137e4c373245f250271aa48d"/></dir><file name="Invoice.php" hash="1b2be59d1d1adc42f4cd5c3de6f0a93c"/><dir name="Item"><dir name="Renderer"><file name="Default.php" hash="1fe359920805f0bb04f2a529a988b7cf"/><file name="Grouped.php" hash="06de11fa4947babe00be8ab426b95837"/></dir></dir><file name="Items.php" hash="783e8d6419f7f9fb7d7b7c41fac3ea7e"/><dir name="Print"><file name="Creditmemo.php" hash="56b9375982e7ca9a01a9ddeda2e4b28e"/><file name="Invoice.php" hash="1bfa49c558f7dad71d49bf6f07133e84"/><file name="Shipment.php" hash="d7b3b950fd25dd490c7739d3b815aa0f"/></dir><file name="Print.php" hash="42a40d073ab7a8064efe5cfa9926ca7f"/><file name="Recent.php" hash="4722c16f398edf5a7cfe7c403467b871"/><dir name="Shipment"><file name="Items.php" hash="b8796b5a4101589730157ce38700a1aa"/></dir><file name="Shipment.php" hash="f47b46c695b2ae41b545cc431d411aa3"/><file name="Tax.php" hash="7ddb7b77eb096e3941626e8ce6bf4d3b"/><file name="Totals.php" hash="198e07bdb6bd995a9d05114f2bcbc8c0"/><file name="View.php" hash="5dd5baf85e8feb76833dd02e9e409abe"/></dir><dir name="Payment"><dir name="Form"><dir name="Billing"><file name="Agreement.php" hash="20364adbcfb10d06fe6bc4d7328036ec"/></dir></dir><dir name="Info"><dir name="Billing"><file name="Agreement.php" hash="56d54547297128b8e19c4195000651e3"/></dir></dir></dir><dir name="Recurring"><dir name="Profile"><file name="View.php" hash="5e59e6df1667be5c99b5325246616199"/></dir><file name="Profiles.php" hash="e1dc2bae064658d69d3fe40a70c97ede"/></dir><dir name="Reorder"><file name="Sidebar.php" hash="1e012752e08ac087710437ee1b0ff144"/></dir><dir name="Widget"><dir name="Guest"><file name="Form.php" hash="673c6b8f42d908fb0ee0f254e2d39695"/></dir></dir></dir><dir name="Controller"><file name="Abstract.php" hash="ff7e1d8d0cbdc01edb1343049b7789de"/></dir><file name="Exception.php" hash="723bd0a577bc3eb5bf5fbf9dab21f39f"/><dir name="Helper"><file name="Data.php" hash="433fd015a7cf497458d2a50046f81b7a"/><file name="Guest.php" hash="4ed93bcd11043230dd9c6f8d3fc0b565"/><file name="Reorder.php" hash="70a14f0e21a2c419546bcd6b0dee2bc5"/></dir><dir name="Model"><file name="Abstract.php" hash="a36f8dd1a2428297503c3cfe3beb56ee"/><dir name="Api"><file name="Resource.php" hash="a5dc0c5dd510896f42d48633d5f19c09"/></dir><dir name="Api2"><dir name="Order"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="4cef63039fd48a74a100d57ab4ac280d"/></dir><dir name="Customer"><file name="V1.php" hash="0374d05d287d80b5303211821a5929a3"/></dir></dir><file name="Rest.php" hash="3455d5f65bd233a4dfb98b11b0d16c40"/></dir><file name="Address.php" hash="f29224d8eb7fb58d1a81e7c60fa0af85"/><dir name="Comment"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="ff546b1dd3951e91db029efec2fbbe21"/></dir><dir name="Customer"><file name="V1.php" hash="8503c552145c7727fd6471debcf43121"/></dir></dir><file name="Rest.php" hash="ff1dc21b8ac8f6374a7cbd5b7e44ffce"/></dir><file name="Comment.php" hash="e36f303d68773b2c62a3d09dc303e4c0"/><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="2c277a186f40daf977642a7194d99fca"/></dir><dir name="Customer"><file name="V1.php" hash="9da928370f22309e3ab840fe633e8107"/></dir></dir><file name="Rest.php" hash="7196a0136969b63048e14004c0816935"/></dir><file name="Item.php" hash="a02d1ad9f44c69a0c08e67b014838ba6"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b33a7a18d708952cb7dd9de97d5809d2"/></dir><dir name="Customer"><file name="V1.php" hash="1d5292750cec00387f1a6c94b91d10bf"/></dir></dir><file name="Rest.php" hash="779f00151e2f63e4e3a09f4cf7a43707"/></dir><file name="Order.php" hash="a7ee4fee0f30fad39be351b55532d805"/></dir><dir name="Billing"><file name="Agreement.php" hash="8c196c3fa72604b53f722696f1e8198d"/></dir><dir name="Config"><file name="Ordered.php" hash="353da6544fe695bc2ceaffd0aa97f483"/></dir><file name="Config.php" hash="df8733db60db4c5e742e93d749d0a758"/><dir name="Convert"><file name="Order.php" hash="02dbc0a2fbf18bb88bdd40ed3cc2ec3f"/><file name="Quote.php" hash="7df80c7e2240980b23f014889790947e"/></dir><dir name="Email"><file name="Template.php" hash="49e15f2a476b64a8a7404298c6820535"/></dir><dir name="Entity"><dir name="Order"><dir name="Address"><file name="Collection.php" hash="89cdfeb72b8d56f5e7653576dafe14a5"/></dir><file name="Address.php" hash="13909272d23ce091df3ecb15cb6a0942"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="02d96f19e7d4508e8361ab2d1bb5724d"/><file name="Child.php" hash="b191e18124265b6c8f49fd2f7b327d34"/><file name="Parent.php" hash="20571fea8aa7cb3e250c8148a64479b6"/><file name="Shipping.php" hash="8699be937ea348de6b3052ccc73b1081"/></dir></dir><file name="Collection.php" hash="6ea3bc0964d1e5aeda010dc4cf67d49c"/><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="1d6dd40c8f81e8f7a7ade2d448cf3e00"/><file name="Parent.php" hash="991ee800f7f23168ee76cb2dc7fac649"/></dir></dir><file name="Collection.php" hash="bc693230b173a9fc0871d1412eea7220"/><dir name="Comment"><file name="Collection.php" hash="c2a15cf9307f50b2913715f7a812697b"/></dir><file name="Comment.php" hash="9c524ceecede7e4c366a01355f2f97a5"/><dir name="Item"><file name="Collection.php" hash="686bf88d6cdfc8f7991866d130b444ee"/></dir><file name="Item.php" hash="7ab4f7b77e3affea165bddfc0b9fccd9"/></dir><file name="Creditmemo.php" hash="3d1946e55bd6eedd8dc54011de1f30dd"/><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="e2f2f552704526e6cd2bddae9a88d974"/><file name="Item.php" hash="a5b9ff9efaa7aa751771cad51281b810"/><file name="Order.php" hash="bd32df42b9367872e0a5764b36e300e5"/><file name="Parent.php" hash="5aac853f8219db843ff6c41e7692026f"/></dir></dir><file name="Collection.php" hash="ca71ea36eb6a3a402005f58884ff7b18"/><dir name="Comment"><file name="Collection.php" hash="6ed0dab29875e7b02468525878c38be2"/></dir><file name="Comment.php" hash="e49f0a425d8bc9e0e0a62deedc0c1f4e"/><dir name="Item"><file name="Collection.php" hash="4f0fdbd6012c148994cda33b38c90f21"/></dir><file name="Item.php" hash="5d551ea63f0053dce267acdfadc12a7d"/></dir><file name="Invoice.php" hash="93665aba271a4e1f7ed6baff3bde8a1a"/><dir name="Item"><file name="Collection.php" hash="915f198dcd0ca06423cf41af0ad2d052"/></dir><file name="Item.php" hash="7c590ce9b9efd3bdf4ce88ad1c9c8806"/><dir name="Payment"><file name="Collection.php" hash="56526a3629708e460d914e9adc20cb07"/></dir><file name="Payment.php" hash="c85fb9192b272e26c5edeaffb76aa42c"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="eda437a083a28fd47b80c70f72877b2a"/><file name="Parent.php" hash="9a565b81b6a91569a601538cb647b6d8"/></dir></dir><file name="Collection.php" hash="3eaef32001968ea27d189e4e54da0677"/><dir name="Comment"><file name="Collection.php" hash="ebb31e40588100b5bbfc41c33162585f"/></dir><file name="Comment.php" hash="a5d40b2b9cb4257b65b033a347ce7775"/><dir name="Item"><file name="Collection.php" hash="99ef694fb25872ebcee1bfc7208b166d"/></dir><file name="Item.php" hash="b00f9f5b9961187889d786bc319817cf"/><dir name="Track"><file name="Collection.php" hash="0ae345d31c65254c7be0663153b6e9d5"/></dir><file name="Track.php" hash="5e0346d66c49df6f1003dacbcac719a1"/></dir><file name="Shipment.php" hash="f30e55597d83f4e5b3caef85461418d0"/><dir name="Status"><dir name="History"><file name="Collection.php" hash="c0534c0928e5e1d7ea7c9848b723eeac"/></dir><file name="History.php" hash="3a414c6f48c068f3379a00528e7f660e"/></dir></dir><file name="Order.php" hash="b44e74a6d119ebef703a7da9d697ff0d"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="51e558af495e9947e8246e63dd535d64"/><file name="Parent.php" hash="e41070013415688c44ee0e4565069a2e"/><file name="Region.php" hash="dd7475fa4bc36195b54633b339b31889"/></dir><file name="Backend.php" hash="2ee9ddabeded084016b90cc07ca89a20"/><dir name="Frontend"><file name="Custbalance.php" hash="93c091700f80a671d4794ae7f0bb1cab"/><file name="Discount.php" hash="f618fa53539a67f2d8bc6fc47d951dbc"/><file name="Grand.php" hash="ce259c647652b1244492daf8b82222cf"/><file name="Shipping.php" hash="44bae3e95bfd720c6dee1f392a8cd4b7"/><file name="Subtotal.php" hash="0854247081871e7f6640bdd9cd347f88"/><file name="Tax.php" hash="61ff5fddedf3330d61470482f16e5bbc"/></dir><file name="Frontend.php" hash="54fd11e8e93532a55dc16b9a59d61c2e"/></dir><file name="Collection.php" hash="442f0dbf965625a7f558bbec6802269b"/><dir name="Item"><file name="Collection.php" hash="2beb173f73922e4f951cc1e19526f5a6"/></dir><file name="Item.php" hash="a6a40eda2306a40c7e0c9c90ffa17fcd"/><dir name="Rate"><file name="Collection.php" hash="8b8ad7aeb267536db0daf15ec9cfd4af"/></dir><file name="Rate.php" hash="0da64bb686c276cb26e90e8b03d0e358"/></dir><file name="Address.php" hash="6989135e6adf1b01d817b40a83e59fe7"/><file name="Collection.php" hash="a6f72352594ec828955f8db1b0f6f941"/><dir name="Item"><file name="Collection.php" hash="1a79fa6909536ca665a3436e95666b52"/></dir><file name="Item.php" hash="3b4c1f7ada492e7baac874bff0322128"/><dir name="Payment"><file name="Collection.php" hash="819f09c1f72c0adcf24949fbde7e9ec8"/></dir><file name="Payment.php" hash="38fcf7391953fb5ee75cedf3c967dec9"/></dir><file name="Quote.php" hash="1a6c892bda92470a69230062605ab477"/><dir name="Sale"><file name="Collection.php" hash="4432ed7f5cdaa957e365683966e8ca58"/></dir><file name="Setup.php" hash="8a7f2ab39db8301feed0fe656a7fa5f3"/></dir><dir name="Mysql4"><file name="Abstract.php" hash="9afb22f085a6b1b4f37874c2175c95cc"/><dir name="Billing"><dir name="Agreement"><file name="Collection.php" hash="6723060be53a20a73bd6d45b503dda74"/></dir><file name="Agreement.php" hash="1deb9d79699e20062409d8ed2988e87c"/></dir><dir name="Collection"><file name="Abstract.php" hash="44957aef0b54d1e5730781388cfeffef"/></dir><dir name="Order"><file name="Abstract.php" hash="4dd334d2684dc083793795eb7e8750c2"/><dir name="Address"><file name="Collection.php" hash="6bfd88b525bed4fd8605df18459cbcdf"/></dir><file name="Address.php" hash="98bc4416f09846473a386a95c68d4b5f"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="62075f6e56a948d5af7b1e11e1cfae65"/><file name="Child.php" hash="0e545f4266ca38da792108c43df25803"/><file name="Parent.php" hash="d6927e04189291494551d2276eb8328f"/><file name="Shipping.php" hash="7bd5c259150339deb64b445a5512b784"/></dir></dir><dir name="Collection"><file name="Abstract.php" hash="b207a8b2fe16896496721cd35fce5e9e"/></dir><file name="Collection.php" hash="5ee19dd9680c0941b99736b08ee5d776"/><dir name="Comment"><dir name="Collection"><file name="Abstract.php" hash="4bf191704a2c72395485da5035297cec"/></dir></dir><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="1a02a7d8dae5587ba9806240e7a38fc9"/><file name="Parent.php" hash="45e36d912fd25392ca26ea7bb95e472d"/></dir></dir><file name="Collection.php" hash="7af13ed3cff507ca19ce11dee59a4b35"/><dir name="Comment"><file name="Collection.php" hash="f0d1c907b728b4d0e6b51fced5f954a2"/></dir><file name="Comment.php" hash="d785b5f24803a41880101ead12a009ec"/><dir name="Grid"><file name="Collection.php" hash="ba5c7254ecfc7ba1d735361462870c4b"/></dir><dir name="Item"><file name="Collection.php" hash="38180553287edb06758da6f4d7935b7b"/></dir><file name="Item.php" hash="499e05cb3ad71bad057af23c21ba3cdb"/></dir><file name="Creditmemo.php" hash="a94eca9a7d055557cbaefbd7ce50b4ac"/><dir name="Grid"><file name="Collection.php" hash="82edc1d3d85dff3f538cd87498ddf0cb"/></dir><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="32f079b113a20fd97a9e524edd26916a"/><file name="Item.php" hash="9808ee91199138f5477acf0bb0dc2d93"/><file name="Order.php" hash="e2085d290a8c6369216771344941d524"/><file name="Parent.php" hash="306cbb3d5a4de9b038b15cc4e81d8572"/></dir></dir><file name="Collection.php" hash="40c81ee2541654e00689f1e60b614a35"/><dir name="Comment"><file name="Collection.php" hash="720191ca7b35ef083b9d56d90e022357"/></dir><file name="Comment.php" hash="790622b097491c5ecc6b21a7bd5e6f1e"/><dir name="Grid"><file name="Collection.php" hash="792049e70f75e83d3bb2368b43138473"/></dir><dir name="Item"><file name="Collection.php" hash="6d3a87b4763c05dbabb2e27df4aa39f0"/></dir><file name="Item.php" hash="1423181cbabf9d1d3ecd7f3cb8e2560f"/></dir><file name="Invoice.php" hash="90916c54957dd5ae93ea002930081118"/><dir name="Item"><file name="Collection.php" hash="d3941f4868e6cd32342e347802461596"/></dir><file name="Item.php" hash="03e5d04309fb6d970eae56ef41bc9576"/><dir name="Payment"><file name="Collection.php" hash="80c853d84dd42a17b71108494f9ea378"/><dir name="Transaction"><file name="Collection.php" hash="2dacf6c3c964ea8c321a11fce074b283"/></dir><file name="Transaction.php" hash="0ca4a468f88834ca13db7e84c391088b"/></dir><file name="Payment.php" hash="7685dd34d9b6f64ce2856e4fe03f4668"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="cd45b72bce68b0eaf0145e0bff0ddbca"/><file name="Parent.php" hash="9ae73e0f7a23bffa2a3aa9fa156d61a7"/></dir></dir><file name="Collection.php" hash="35ae0805760722b05637a88eb9ef883d"/><dir name="Comment"><file name="Collection.php" hash="c1fb1652837586d541593ae84f4bb9cb"/></dir><file name="Comment.php" hash="bb346eb48619d88b8f5a879d2b8910f9"/><dir name="Grid"><file name="Collection.php" hash="2a30f42eaf8182b8fb24a478e8baca89"/></dir><dir name="Item"><file name="Collection.php" hash="ce958be641f841f426370359bf4552c6"/></dir><file name="Item.php" hash="bbb59c1a747dfef01f3e7b4f7eddc0d7"/><dir name="Track"><file name="Collection.php" hash="47818aa2bc218fd85ac9a64d398af427"/></dir><file name="Track.php" hash="5d3e6cefc2bca69f235fa15c22a82f89"/></dir><file name="Shipment.php" hash="6e14894d6099715a68588cd7955d077f"/><dir name="Status"><file name="Collection.php" hash="8db7a0b5164a4a3482a0ba36cecebf90"/><dir name="History"><file name="Collection.php" hash="49287a3534866b18bba73316afeeedc3"/></dir><file name="History.php" hash="6d67c2b403b3da893b06401565385fb2"/></dir><file name="Status.php" hash="3261af68f4a4ab5f55887f0d7e14b30b"/><dir name="Tax"><file name="Collection.php" hash="e06cf4f599a162135f77e0907db42651"/></dir><file name="Tax.php" hash="06ad11c0b903887f6ca66b5d508e9a99"/></dir><file name="Order.php" hash="c5994c7451f0c7b5ef526b751b43a63a"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="ec2cba07e84bdf153575185c82d4b628"/><file name="Parent.php" hash="abfe7ab89799727e255fefa43aa41b66"/><file name="Region.php" hash="36c6bb42a18b528f8cc942428cedf988"/></dir><file name="Backend.php" hash="598976560e5ebbb0fcae2e7d7b0502dc"/><dir name="Frontend"><file name="Custbalance.php" hash="f2089c13534c0d0d3239b188bf12d70c"/><file name="Discount.php" hash="b7c165f49fb20092530056e0a17c0eb2"/><file name="Grand.php" hash="f761fce14066eebe3a1dd56314480552"/><file name="Shipping.php" hash="47987234d1ca343f3eb9951d78a51601"/><file name="Subtotal.php" hash="9bbf74937997949578b03a11873b0465"/><file name="Tax.php" hash="6cc373dec66b3e1cb22fba66d8722e8d"/></dir><file name="Frontend.php" hash="fc4887d7b5a36982a8bf2e972e5986f6"/></dir><file name="Collection.php" hash="056ec6e830770a89ef93a9f5c5b8dbc5"/><dir name="Item"><file name="Collection.php" hash="18de68c96c0e609acc1476418a8a357a"/></dir><file name="Item.php" hash="6982e1231d4998991db0519a8518685c"/><dir name="Rate"><file name="Collection.php" hash="a16250758875b1b583bff4572fdd56f0"/></dir><file name="Rate.php" hash="bafb6da1d72fe914374106c88337d42b"/></dir><file name="Address.php" hash="c9755266e25a5f3fcf175ed1b5cc02b0"/><file name="Collection.php" hash="d0515bede7c19803330c18a9cb72ae73"/><dir name="Item"><file name="Collection.php" hash="fce835b8c6ab174a69298119758f584f"/><dir name="Option"><file name="Collection.php" hash="c6fff4ef0d6887ef926d4771dcdb9044"/></dir><file name="Option.php" hash="6dd95f1db606b466cee6dd6a61e8e331"/></dir><file name="Item.php" hash="4f2a929458748303c5fb5da4d1b59330"/><dir name="Payment"><file name="Collection.php" hash="74e70857c5c4a1351c5c0be5dfbe78b6"/></dir><file name="Payment.php" hash="275149f48e9c6c3d21401de4407ba893"/></dir><file name="Quote.php" hash="43653838ff424f7dbf8e6eaaf0ec7640"/><dir name="Recurring"><dir name="Profile"><file name="Collection.php" hash="2786bad6b46493f490ee58889dbf9fbe"/></dir><file name="Profile.php" hash="4e35668c50670bdd0686336160458354"/></dir><dir name="Report"><file name="Abstract.php" hash="72f9213a1925c164548beda7a90bff2a"/><dir name="Bestsellers"><file name="Collection.php" hash="df1774143886bc3b52df037b0bfb1855"/></dir><file name="Bestsellers.php" hash="8f6c96d9f85aa3e1d827623f859aeab9"/><dir name="Collection"><file name="Abstract.php" hash="d84e5bb25bdeb2ed4c115264bfdb08bd"/></dir><dir name="Invoiced"><dir name="Collection"><file name="Invoiced.php" hash="a518bdcb6cfd2ee684a57722d161deaf"/><file name="Order.php" hash="691fe1b818bd878aff8d05d211bff94b"/></dir></dir><file name="Invoiced.php" hash="2bff6fdce5bcad8a294a2bb74a539444"/><dir name="Order"><file name="Collection.php" hash="2e67ac1f64ade106bf3c532fc71ad97e"/><dir name="Updatedat"><file name="Collection.php" hash="1bd3de8acbea2a7a1a72415a5eb114d9"/></dir></dir><file name="Order.php" hash="8168e4a917a70a048456908d020bfb5a"/><dir name="Refunded"><dir name="Collection"><file name="Order.php" hash="186807ed5b850acb05421efd46e12b5a"/><file name="Refunded.php" hash="404f2db7ccf46ada3246c7a9e3f2abcf"/></dir></dir><file name="Refunded.php" hash="0fa825b29025b0608e09225c1b9ebc0e"/><dir name="Shipping"><dir name="Collection"><file name="Order.php" hash="e3800c81a21f80c7088ef574f100eeca"/><file name="Shipment.php" hash="7d2f088bfb368f902fa3318338739998"/></dir></dir><file name="Shipping.php" hash="8e6f7891e6a19e89176180bd3600a09c"/></dir><file name="Report.php" hash="94fa7121ef65e1cbce8c3a8e6f61423a"/><dir name="Sale"><file name="Collection.php" hash="b9633d7a1b85d31ed6a55bf63d61bc51"/></dir><file name="Setup.php" hash="72ee8a279683812083070dc1c0ae9cf8"/></dir><file name="Observer.php" hash="b378df4b6a296fb5191508dc0987e0be"/><dir name="Order"><file name="Address.php" hash="8b5d7e404f5cba870a0a619e18a7fbba"/><dir name="Api"><file name="V2.php" hash="bcaad4738e786b584c1902731c1e2f25"/></dir><file name="Api.php" hash="90eed7991f56b9f67d192473c917dacd"/><file name="Config.php" hash="33c76887e997f1e2adaa9732f3d57f2e"/><dir name="Creditmemo"><dir name="Api"><file name="V2.php" hash="074271cd0aadaf966d3ca352d45e6851"/></dir><file name="Api.php" hash="4ff29f69ba5755b5a4cb48bfc1e8b477"/><file name="Comment.php" hash="ee41a865cd00b684f7d71745f2801dca"/><file name="Config.php" hash="6aeab2f27e959b5db10886b318014fc6"/><file name="Item.php" hash="170fcf42f8c798a216ea408f795cfcbe"/><dir name="Total"><file name="Abstract.php" hash="3fa58d2ecd591a1dd5565793e05b144c"/><file name="Cost.php" hash="a0b6ba7a1b1c62dcdaff3e6d72a29261"/><file name="Discount.php" hash="03c646751c483b02c2c44d6f2068002b"/><file name="Grand.php" hash="2461ea83f0fe32ff00f042bcfeb07b1a"/><file name="Shipping.php" hash="7f3177446530490bbd14ae9a6e1c1f3c"/><file name="Subtotal.php" hash="f660951bd63ad9bf561a558a9a8ae8ea"/><file name="Tax.php" hash="075b3fe143835a96ff1039c92c90b383"/></dir></dir><file name="Creditmemo.php" hash="3b6623947fe5849127327fa54a84e650"/><dir name="Invoice"><dir name="Api"><file name="V2.php" hash="e7c8520f86e407b177ce69e065cbc723"/></dir><file name="Api.php" hash="cc7cf0b0eba0ed6598aef874a3ab0ef4"/><file name="Comment.php" hash="da5711b8ac3a0532e8d0014c2dd94bc4"/><file name="Config.php" hash="dccc2dce3f08aa644d8aff76ad00c61e"/><file name="Item.php" hash="6524fbdc6340cdd35ee2b6899ea59f63"/><dir name="Total"><file name="Abstract.php" hash="58628cb4995579d9202ef1956494e06a"/><file name="Cost.php" hash="5a8b5db09e9d602b0a09d9beb2a8ac47"/><file name="Discount.php" hash="8e61759e07c74f0681f85fa251f16d5c"/><file name="Grand.php" hash="b841f4b5a5c916f3d5ce7d538b0b857a"/><file name="Shipping.php" hash="aad1e9ccb154d1dd479aa61fb7c4b387"/><file name="Subtotal.php" hash="5b84f4b3d392d3e0d7dde35070b896a8"/><file name="Tax.php" hash="6712807dde4624c53ec9306630807a08"/></dir></dir><file name="Invoice.php" hash="1b8adf0249820bff8e9bbe305426c9d5"/><file name="Item.php" hash="9e8a5fe986efc0fb7151673c89c7ff1f"/><dir name="Payment"><file name="Transaction.php" hash="a5209ce30722a981e4efda2a4e571272"/></dir><file name="Payment.php" hash="d5dbe333a5743762db5ee01a2d164c4e"/><dir name="Pdf"><file name="Abstract.php" hash="ce65a2292fd6ae6de63d82652af871cc"/><file name="Creditmemo.php" hash="20e8efd60a2d5cabf4709658bb4eb9e5"/><file name="Invoice.php" hash="f1e4328ab74f862068a7eb3bafad5aa1"/><dir name="Items"><file name="Abstract.php" hash="dbca7d41d403baef25192e5638d44bf3"/><dir name="Creditmemo"><file name="Default.php" hash="845ad11a4bca7b516b7740470ae9368e"/><file name="Grouped.php" hash="f91b7015e3bb2e6533a6e359a20389c6"/></dir><dir name="Invoice"><file name="Default.php" hash="3d800b9351395c1c1142c51e2fd9941f"/><file name="Grouped.php" hash="37ead4a34b0b85aa125e688a31902c08"/></dir><dir name="Shipment"><file name="Default.php" hash="cdc9cd665a819e2c8d98d8bf9cd3f4d8"/></dir></dir><dir name="Shipment"><file name="Packaging.php" hash="1732719df1bff43743a74a1e77c40f9a"/></dir><file name="Shipment.php" hash="f9d96fd34e9053ed64e7c1269f247316"/><dir name="Total"><file name="Default.php" hash="1a299ca89ac56ac82796bea113977a16"/></dir></dir><dir name="Shipment"><dir name="Api"><file name="V2.php" hash="b39d50c655f1aa35819fc3809af8c465"/></dir><file name="Api.php" hash="a9153e5a93790a1f1ba49205bb840896"/><file name="Comment.php" hash="0b7a2f1ed5a3cf14e06a99d1408d4c55"/><file name="Item.php" hash="2f3823cbf02a3ad22723dc9925a3c115"/><file name="Track.php" hash="669bef2d4ebc0a101ec1408d6041cde0"/></dir><file name="Shipment.php" hash="9456e2039aeeeb1fcfe11b55a7d9c628"/><dir name="Status"><file name="History.php" hash="0e1b2d2058301c4e027f8bc4caae907f"/></dir><file name="Status.php" hash="8dbf8cf570184d72e859f753cfc16e27"/><file name="Tax.php" hash="81a9acd812c8180e53b690c922ba5395"/><dir name="Total"><file name="Abstract.php" hash="73805f282b9b7522cb572fc78d80c96f"/><dir name="Config"><file name="Base.php" hash="91e708db9d25c15046a2ea46a908b0a1"/></dir></dir><file name="Total.php" hash="33b3bd9cb176909987458e6af66b362d"/></dir><file name="Order.php" hash="b173146f9109f43fc347b30cdc44cc64"/><dir name="Payment"><dir name="Method"><dir name="Billing"><file name="AgreementAbstract.php" hash="ad96020c95d8faeece3b13f9f7d4015e"/></dir></dir></dir><dir name="Quote"><dir name="Address"><file name="Item.php" hash="09b76a1641fa38de94591ecf15743273"/><file name="Rate.php" hash="a4d08d27b7fc5f1cbbdb9d45715f8be0"/><dir name="Total"><file name="Abstract.php" hash="88b7fab40960eb93017771c7ec10f8b4"/><file name="Collector.php" hash="755892eaf3f8973dac24e0294c8c9152"/><file name="Custbalance.php" hash="c4e51ea08aaf4447e8e62e736ee7c434"/><file name="Discount.php" hash="89ac4a5e4b564e272bdc43157366501a"/><file name="Grand.php" hash="fee21eadbdcc41473256a14fa775861b"/><file name="Msrp.php" hash="bdddefc8b602f2a2d8cd743eeb463ca3"/><dir name="Nominal"><file name="Collector.php" hash="6f453f37ccf6163bfcf037db3831c6c4"/><dir name="Recurring"><file name="Initial.php" hash="4364501e7ac32efbee333e1b8a1d04fd"/><file name="Trial.php" hash="9ff152451dd60f82d6e5f978e3784b6b"/></dir><file name="RecurringAbstract.php" hash="c3c6dec43e8edb7dbf45bdbc89439a80"/><file name="Shipping.php" hash="17ca25223472f2e0a1dde8b8d98b655a"/><file name="Subtotal.php" hash="4d2a5203da2f854de35eb169062d0c75"/></dir><file name="Nominal.php" hash="7e8baf7c925fe9cfdc4862487ee5f90c"/><file name="Shipping.php" hash="6c32c633d2b36caa835582b7e4675105"/><file name="Subtotal.php" hash="09378fb73eb8f04382a0bcc89b2bb132"/><file name="Tax.php" hash="374178f35632de6e1715dfcf5fbf1415"/></dir><file name="Total.php" hash="230984195e73c5f9c0f1a40c42209e2b"/></dir><file name="Address.php" hash="ad3907095e80a8b0135a88f17a8b32ed"/><file name="Config.php" hash="9e24919a12b893cfce316d75ebeb1701"/><dir name="Item"><file name="Abstract.php" hash="0b2f5069e03c2c6b9d59de2eb93d16e8"/><file name="Option.php" hash="98084f6dac645edb7abd108e138fa6e1"/></dir><file name="Item.php" hash="4ff093f59b4db98738c402ec61efed29"/><file name="Payment.php" hash="33b2af3fa5ffdd45b5ac81a8598c3adc"/></dir><file name="Quote.php" hash="e0f402749fa8833e61dab1ecede1c7db"/><dir name="Recurring"><file name="Profile.php" hash="9dee0ee811b78a36d238a0750f11637d"/></dir><dir name="Resource"><file name="Abstract.php" hash="e3ff88c9c1756c106945ce1bf68138a2"/><dir name="Billing"><dir name="Agreement"><file name="Collection.php" hash="a122c1c5af27235a6c3f349be13f3356"/></dir><file name="Agreement.php" hash="4d6195db8b3f01a8a06893c81e89e950"/></dir><dir name="Collection"><file name="Abstract.php" hash="461b0df6d59f413ce4d291d9a8670fc9"/></dir><dir name="Helper"><file name="Interface.php" hash="df4651e9662f200c37bc822bd3dae958"/><file name="Mysql4.php" hash="001e2ebf07381b72abcfb6dbada37cd6"/></dir><dir name="Order"><file name="Abstract.php" hash="9fa253f874c4c21962c3ff38d6dca512"/><dir name="Address"><file name="Collection.php" hash="a47d80aaf8672535dbd2bbbe82ec9baa"/></dir><file name="Address.php" hash="7a302ec65ec584d36a5ad72e2df52d07"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="520fe67ee67f6b8039bee570c37ecfd0"/><file name="Child.php" hash="2a56dda85ae5ddd887701f8f0dbbaa68"/><file name="Parent.php" hash="3bfc188483c90c1e3534dc3f8d016e8a"/><file name="Shipping.php" hash="bfb7ec561aae8cf42fe37b5d093f94fb"/></dir></dir><dir name="Collection"><file name="Abstract.php" hash="0059b7b105a3e66d7e138e10b67fb384"/></dir><file name="Collection.php" hash="b05df044090ae24e418b18d072819d10"/><dir name="Comment"><dir name="Collection"><file name="Abstract.php" hash="886a402f8a0fd8b702b28365180b8928"/></dir></dir><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="9c46f7467e97268463e55942fe014a8c"/><file name="Parent.php" hash="b36ab00c7399dfb436891485f0faed6c"/></dir></dir><file name="Collection.php" hash="ad648795e72344ba9437eeb4e2d4861f"/><dir name="Comment"><file name="Collection.php" hash="7985cc826ccff3fd22b7d20cba4b1d5b"/></dir><file name="Comment.php" hash="f0e03491b15ec2ff4b9c979678158909"/><dir name="Grid"><file name="Collection.php" hash="5ffeaf82382366a4abb34f00a3e38179"/></dir><dir name="Item"><file name="Collection.php" hash="bda3a23534a4dd888a657707d4e77ba7"/></dir><file name="Item.php" hash="354691695e7980f0aaec430ea0fe9abb"/></dir><file name="Creditmemo.php" hash="b351f23efc2897210f114cf0af5be100"/><dir name="Grid"><file name="Collection.php" hash="7baf02b228327ab410d682f316fb6f08"/></dir><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="8f629561ba4ea644b42ec05dc654c44d"/><file name="Item.php" hash="70d4d9656d54d697a1c6342d3c8fb7b9"/><file name="Order.php" hash="636566baa8d446e1eddcf4f6622f0ebd"/><file name="Parent.php" hash="4cc57ddf6cb75853b7b365bc22b64993"/></dir></dir><file name="Collection.php" hash="74fd2eb257baf29dfcbd5ea84bfcaec0"/><dir name="Comment"><file name="Collection.php" hash="f1a815800aa5edc856ca94c28cedbc08"/></dir><file name="Comment.php" hash="584108c9a84f308b27609e918ab2d042"/><dir name="Grid"><file name="Collection.php" hash="9418eebc2f40b7aba0e60df4559db488"/></dir><dir name="Item"><file name="Collection.php" hash="589d3acfb5bcd1abeeae3be9569cc466"/></dir><file name="Item.php" hash="352e1beef6dfbfd43f143ec9b88db5d0"/></dir><file name="Invoice.php" hash="904752eeac34bf247b6ccedb72c96f4f"/><dir name="Item"><file name="Collection.php" hash="9eea827ff60243e7c2b4f72ca2a93357"/></dir><file name="Item.php" hash="017731173ca129726b0722edbeb25b72"/><dir name="Payment"><file name="Collection.php" hash="7b9d9669300e6d3a9e50cad5f55ecd60"/><dir name="Transaction"><file name="Collection.php" hash="b6008020b16d5a40f7f001a0f76bc180"/></dir><file name="Transaction.php" hash="3c4c7c3ac386795efb7afcfeb9438f79"/></dir><file name="Payment.php" hash="32091691be316856e7241f69396fd6ff"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="73eca39b59c13597c165c492e4f5f959"/><file name="Parent.php" hash="00c60a550f8720741ac9b3848d9cd384"/></dir></dir><file name="Collection.php" hash="2d8ba50a677a6896f32f7048c21f0a1f"/><dir name="Comment"><file name="Collection.php" hash="4722659a6d086ede29b848144bbe6aab"/></dir><file name="Comment.php" hash="ad080801c2b8d2ee6cc8e26f20613ba8"/><dir name="Grid"><file name="Collection.php" hash="42b54d1852e766bba87f0bf2d5d8b4ac"/></dir><dir name="Item"><file name="Collection.php" hash="90eb8ed55732c1a5f3f01e4c25a1d93b"/></dir><file name="Item.php" hash="325446f39c583f1c8acf22a10cddbb0b"/><dir name="Track"><file name="Collection.php" hash="e227bb312df4cff2e2d98fd050e7b5aa"/></dir><file name="Track.php" hash="0a5beef339374edbf4eea0b2dbd9de2b"/></dir><file name="Shipment.php" hash="e1d7c2c23d262c68ee9c12375c349893"/><dir name="Status"><file name="Collection.php" hash="a9589653dcb2ec4d6e5ce44c7deb040f"/><dir name="History"><file name="Collection.php" hash="454e76763d0949e26c69111abb23e424"/></dir><file name="History.php" hash="89fbf35965fa06e032e512f6a879740f"/></dir><file name="Status.php" hash="e987b60f5d8052eb284da226e8019713"/><dir name="Tax"><file name="Collection.php" hash="1f4c6130bdd8d060465b01675a87999d"/></dir><file name="Tax.php" hash="a77677ae64a8d881c91d399cd89e72c4"/></dir><file name="Order.php" hash="61888ed699fe2aa9a57b8eb27d3371a2"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="26a8318a824d89e018e1a70f97672679"/><file name="Parent.php" hash="87cb8717206872bfd1f4292a3005df15"/><file name="Region.php" hash="5872ae9b3797e6c4704791f390951da2"/></dir><file name="Backend.php" hash="b17262878c64c044279cb93184383e1f"/><dir name="Frontend"><file name="Custbalance.php" hash="642813eccdf6105fed3014149e6793a8"/><file name="Discount.php" hash="209a486667eea30052b5076da9ca029a"/><file name="Grand.php" hash="547c07b3a979865d6cda640a537ebb65"/><file name="Shipping.php" hash="92d3f19e7de14ec3f96eac1351851e9a"/><file name="Subtotal.php" hash="10ae6624e9c37f495123247986aa8cc8"/><file name="Tax.php" hash="b8ff0a58832295680a9ea1308d310614"/></dir><file name="Frontend.php" hash="c56f6081d742a2448bb79b5a184ffa4d"/></dir><file name="Collection.php" hash="09357a12a0ea670eeb9609a66b6ed593"/><dir name="Item"><file name="Collection.php" hash="4e3c55e3cbc829df949871047aa54c53"/></dir><file name="Item.php" hash="a49a6efe26afd771d4cee8e9cbbc8993"/><dir name="Rate"><file name="Collection.php" hash="4e5d2a360df589a87c057d8a713e3dd6"/></dir><file name="Rate.php" hash="e42d679e1b76f5ecd21633ca6ceccf1e"/></dir><file name="Address.php" hash="5d5a4a11cc2ca5925e79e6c64255d519"/><file name="Collection.php" hash="0a5972e650be8256ca8008c69d292f0a"/><dir name="Item"><file name="Collection.php" hash="094d1b1d731371bb1913cda6facae81c"/><dir name="Option"><file name="Collection.php" hash="dd317d1a8ff1f376492983b4684b77ef"/></dir><file name="Option.php" hash="ff91228921eb110a5318dd7ae8f0aa4b"/></dir><file name="Item.php" hash="a523703024c71069bafd925a4dd0418b"/><dir name="Payment"><file name="Collection.php" hash="18d70923e23d9f543c39b3422d796e89"/></dir><file name="Payment.php" hash="0636e58d953474f0fdcdf133966ec884"/></dir><file name="Quote.php" hash="ee91375874eed31804a364fd620e5016"/><dir name="Recurring"><dir name="Profile"><file name="Collection.php" hash="84f7e91234ddd363ea87effcb501c2bc"/></dir><file name="Profile.php" hash="b7d21aef97eab03f706935901ff0dcdd"/></dir><dir name="Report"><file name="Abstract.php" hash="f0b4935a6c256008a6fecb3a95371c04"/><dir name="Bestsellers"><file name="Collection.php" hash="61455c08fc974f338f250ff9686e51ca"/></dir><file name="Bestsellers.php" hash="f6091c23f0dc40456b56276a30c86f40"/><dir name="Collection"><file name="Abstract.php" hash="1a85bfdb4339d8b1c232267bec446e5a"/></dir><dir name="Invoiced"><dir name="Collection"><file name="Invoiced.php" hash="cbef7c13c05bb8507bf61b7b14df6453"/><file name="Order.php" hash="099680aa7e2b13990094b88372a61c3a"/></dir></dir><file name="Invoiced.php" hash="bff6a226bbfa0da99e83420b93f8724b"/><dir name="Order"><file name="Collection.php" hash="1337eca0377c865a05740dcd6d6fc07e"/><file name="Createdat.php" hash="05476fc382b541044dce2d55aa4c06aa"/><dir name="Updatedat"><file name="Collection.php" hash="18f5abdccbaea940140376ca19518fa5"/></dir><file name="Updatedat.php" hash="e1938a15f08e5bf8583a2b64d97d2eba"/></dir><file name="Order.php" hash="c0c7408faa413bb4a3305cbbb1fcab61"/><dir name="Refunded"><dir name="Collection"><file name="Order.php" hash="18c0f949be812c068eaad2cfef54d96d"/><file name="Refunded.php" hash="d717bc01806d35c8fd50b7da3d3388cb"/></dir></dir><file name="Refunded.php" hash="4cf3eac1262e6f604adb530fb3d34896"/><dir name="Shipping"><dir name="Collection"><file name="Order.php" hash="ea5a8eacb8db5c4defcbdda845e35b9f"/><file name="Shipment.php" hash="b03ec5fb4789bd51f6146003238a712d"/></dir></dir><file name="Shipping.php" hash="c50e12739c4bc61b0c9f7c46ba9d0068"/></dir><file name="Report.php" hash="9f2055ad9b6de2961ba8fbc68d46e06f"/><dir name="Sale"><file name="Collection.php" hash="1f9f0d7d56306574802af2e764978bde"/></dir><file name="Setup.php" hash="6611a5994b7c5de508e478683d0c95a3"/></dir><dir name="Service"><file name="Order.php" hash="4c717d98dac6c95f864f5bf84c9b7793"/><file name="Quote.php" hash="3ffa1ecf1c7e8a39899e9efa24492f06"/></dir><dir name="Status"><file name="List.php" hash="8047eeb9dfcf4e52b61936cce7ce30e5"/></dir></dir><dir name="controllers"><dir name="Billing"><file name="AgreementController.php" hash="ee984449032f49bb295adb931cb379ac"/></dir><file name="DownloadController.php" hash="ecdc7f30d780da97959fd769ebdcb03b"/><file name="GuestController.php" hash="72e9765589b2c0e058dc4a23d25d7f87"/><file name="OrderController.php" hash="e4439831de7a7d4bbc72d13925b16db6"/><dir name="Recurring"><file name="ProfileController.php" hash="b2caea2071e9a938bfa52702a227a054"/></dir></dir><dir name="data"><dir name="sales_setup"><file name="data-install-1.6.0.0.php" hash="9ac143fc4618feb4e04a4b73ccd0be4c"/><file name="data-upgrade-1.6.0.4-1.6.0.5.php" hash="52ded1180fdf429c30a3090b1042d05f"/></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="e68881b5b5182da3e14c974396e74d5c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="4a491ffbad4f24a0dc3e498beed9f339"/><file name="api.xml" hash="878959d448019e036560b5562906ffe2"/><file name="api2.xml" hash="e8b5dbba5ff5021dc47935e542e3451f"/><file name="config.xml" hash="78b62f19c9f74277776c16b9632b1034"/><file name="system.xml" hash="44bd2cf868ab65ca851b1321b323378b"/><file name="widget.xml" hash="4e9736066aaafdd506a4976b502d61c9"/><file name="wsdl.xml" hash="ed13de1dde6408ab508892374ef57b81"/><file name="wsi.xml" hash="6aba2f44765955ec8bcd1afcebfb0800"/></dir><dir name="sql"><dir name="sales_setup"><file name="install-1.6.0.0.php" hash="110b79db53f77c950ae86faab5ce047d"/><file name="mysql4-install-0.7.0.php" hash="a9d2c78f8d8e5baf25b321fae5cc0256"/><file name="mysql4-install-0.8.11.php" hash="881408c6bad2eec32b24e85a267fa946"/><file name="mysql4-install-0.9.0.php" hash="82104cd02bffd6c58a44bee06dfc7405"/><file name="mysql4-install-1.4.0.0.php" hash="696ea5f0e6efbb938d24799767213e2e"/><file name="mysql4-upgrade-0.6.2-0.7.0.php" hash="ceea0b5b7886baa8ecd8d5d374d4e445"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="1e0a4137d3fadd53295c2af96c0b1e49"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="9fcb3beb65424a4670f12cdfffa74f32"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="1c5fda4f61af35e43cd436b58a67d30d"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="6d88188440dae8ef405261504ca1f375"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="e4b8e9b014e8e38c02f09cc65434b4ae"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="fe78cb9056e08dd2833defb09bc57023"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="b8bb11071ff39ca63cbf6047122834c0"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="8ae36f8c10e25b9cb330ecce0dd09be9"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="42d330c3fdc5746a8d6bc177b2ea091b"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="709338a2ddb03993d9bc5014c128e725"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="b44e4e49f4e1424c45841445c63c40e5"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="6edffb6677d9992c51e06255f23583f3"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="6043c1d4bd8ec951c33bddf0d502b449"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="d1e80c73135918f1278da899af295d80"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="4b60c63e7ba0bee90ce587403e096b3c"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="94a3e2be1bf1a9818a0acb4463b2e4cf"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="ffef537312c362fe88601506aeb4e642"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="7d45c67734df1d1aab77b29139fceecc"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="89e64e6df60d34f8ba2564f939226575"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="0a0eb90e2945c4005c3d3025aa2c9844"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="21348530805866dd8d59741891d89a13"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="5e3e47bbb5813a88173a8db5114e516e"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="2215b4f3408dce97982787be262f9487"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="75b327247fe81ccbc65e14446b2078e5"/><file name="mysql4-upgrade-0.8.28-0.8.29.php" hash="ce29f3e06b6667d5a801c30f93c694a2"/><file name="mysql4-upgrade-0.8.29-0.9.0.php" hash="6c9b239422e5d4a90e252ce038cc56d2"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="74d7861ec3d39fac065dfe5e52cf0419"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="94a3e2be1bf1a9818a0acb4463b2e4cf"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="2a9be44708a9d862186039da74204682"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="f158061656fd128979c8ceb708b35b6f"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="b8f1f388f8da3cba35bc06eebda9b660"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="1617aea2a91ebab44969abe94ddb80f4"/><file name="mysql4-upgrade-0.9.10-0.9.11.php" hash="e1292bc8ec53d625ed54136bbfef66bd"/><file name="mysql4-upgrade-0.9.11-0.9.12.php" hash="6fdae6e99b6f67779adcc89ebd4fddcb"/><file name="mysql4-upgrade-0.9.12-0.9.13.php" hash="2daa0c23acc5499e72b86f4cae3d34f6"/><file name="mysql4-upgrade-0.9.13-0.9.14.php" hash="06765b54f599b85b6c60231cc5704467"/><file name="mysql4-upgrade-0.9.14-0.9.15.php" hash="2edf947c129c93d620bc32bc2c8a256b"/><file name="mysql4-upgrade-0.9.15-0.9.16.php" hash="d5bb240932e75babde0ac357522e8e82"/><file name="mysql4-upgrade-0.9.16-0.9.17.php" hash="1613152af35bb655df33c416eb71d57c"/><file name="mysql4-upgrade-0.9.17-0.9.18.php" hash="fdfb6cfef4bf12bd78cb0a01a9159365"/><file name="mysql4-upgrade-0.9.18-0.9.19.php" hash="7d779a021bf43cb26cb49dc2c5423f32"/><file name="mysql4-upgrade-0.9.19-0.9.20.php" hash="7b6eea2f09a298a9c6c2d5ad3c50a33c"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="1859315e30abd7af7605f95fa8338f5d"/><file name="mysql4-upgrade-0.9.20-0.9.21.php" hash="5378e1a5ef45392438ee1b9d58d03dd2"/><file name="mysql4-upgrade-0.9.21-0.9.22.php" hash="4a07b742d2c119c1a904a4d441c50995"/><file name="mysql4-upgrade-0.9.22-0.9.23.php" hash="7cf74956969f5914f00a96ac91820295"/><file name="mysql4-upgrade-0.9.23-0.9.24.php" hash="e4e79f230ac9ed7dc1308a086a4326ca"/><file name="mysql4-upgrade-0.9.24-0.9.25.php" hash="e338bb5af8649e9870ab901d35dbaa63"/><file name="mysql4-upgrade-0.9.25-0.9.26.php" hash="848d0e7014fe22fb4a60f77fdd96970a"/><file name="mysql4-upgrade-0.9.26-0.9.27.php" hash="0ba923d9de1792c9faa0d0068319ca0e"/><file name="mysql4-upgrade-0.9.27-0.9.28.php" hash="11b42f144107e737dc5bd3d9e3ee2a65"/><file name="mysql4-upgrade-0.9.28-0.9.29.php" hash="e3e05fb7225c2d166cad4979e093bb25"/><file name="mysql4-upgrade-0.9.29-0.9.30.php" hash="48bfae80495037eaf7e3ebeecd9a97ed"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="0b08d0b6f0ef3db38198b019741a4ba7"/><file name="mysql4-upgrade-0.9.30-0.9.31.php" hash="47e9fd57a83d114fd8e3351461a419e9"/><file name="mysql4-upgrade-0.9.31-0.9.32.php" hash="17c07222dc046f8d1c0adf790bb4b647"/><file name="mysql4-upgrade-0.9.32-0.9.33.php" hash="880838a87480bfd7bc966a2ca58c7813"/><file name="mysql4-upgrade-0.9.33-0.9.34.php" hash="cfd9b0d93b43068d66701d0d4c787f6d"/><file name="mysql4-upgrade-0.9.34-0.9.35.php" hash="3d62a244d505ecf1d495224e9f256e23"/><file name="mysql4-upgrade-0.9.35-0.9.36.php" hash="8e424dfa05b74e45f76094a8c1b29224"/><file name="mysql4-upgrade-0.9.36-0.9.37.php" hash="ea58efb1e4a2f0af00df3df801114dce"/><file name="mysql4-upgrade-0.9.37-0.9.38.php" hash="959e78e31085ee87bbd5977886fc535c"/><file name="mysql4-upgrade-0.9.38-0.9.39.php" hash="f8b74916754d7a42302d17a95c7bb6a5"/><file name="mysql4-upgrade-0.9.39-0.9.40.php" hash="7a1627e225ac4d9a7fd90d9f39726a8c"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="441f7307cc20bad2fbbb5e3a0e32e357"/><file name="mysql4-upgrade-0.9.40-0.9.41.php" hash="0e328e69d311ff186a4059414de6c336"/><file name="mysql4-upgrade-0.9.41-0.9.42.php" hash="6dc615a44ffa77ca6f45f9a4a358e4b9"/><file name="mysql4-upgrade-0.9.42-0.9.43.php" hash="3e666a256b8aef542a4827ab7f871c0c"/><file name="mysql4-upgrade-0.9.43-0.9.44.php" hash="3c8f05cb0f5df6b6ad7713bfc4fc8cba"/><file name="mysql4-upgrade-0.9.44-0.9.45.php" hash="f9636babe7eb1aafd70881221f3cb337"/><file name="mysql4-upgrade-0.9.45-0.9.46.php" hash="845c34034eda65e7ebabfa7c93322812"/><file name="mysql4-upgrade-0.9.46-0.9.47.php" hash="c0ccd2a7fd4605ce685eb42169cf3d5a"/><file name="mysql4-upgrade-0.9.47-0.9.48.php" hash="6b04ea90d7527a16aa5150fa5e9ec0a8"/><file name="mysql4-upgrade-0.9.48-0.9.49.php" hash="899a1236933e99c699e85f35053e810b"/><file name="mysql4-upgrade-0.9.49-0.9.50.php" hash="c189c7f0c51ef2042c1a74c053ec8b2e"/><file name="mysql4-upgrade-0.9.5-0.9.6.php" hash="42f41f47b589db9ecbc04424790eb217"/><file name="mysql4-upgrade-0.9.50-0.9.51.php" hash="dc5285110ef9fd5efbaf1fc6137cfbdd"/><file name="mysql4-upgrade-0.9.51-0.9.52.php" hash="c28c2d8d5ec6fbe2ee8f95144ef8db9b"/><file name="mysql4-upgrade-0.9.52-0.9.53.php" hash="dcfd0c1fd4cd0407d1e57134c68bcf67"/><file name="mysql4-upgrade-0.9.53-0.9.54.php" hash="f24e523d0fff9f68bdc158e5365022c3"/><file name="mysql4-upgrade-0.9.54-0.9.55.php" hash="e43f25286ed5aa46cc056fd882f0967a"/><file name="mysql4-upgrade-0.9.55-0.9.56.php" hash="73ed2eac14d4c58862d1e0515dd7e16c"/><file name="mysql4-upgrade-0.9.6-0.9.7.php" hash="e9014d0fa275ada15e55b283e2c9b4b8"/><file name="mysql4-upgrade-0.9.7-0.9.8.php" hash="4fd48d221003324f92a68134e401d629"/><file name="mysql4-upgrade-0.9.8-0.9.9.php" hash="406daea8fff3951c3f21e928fffc98ab"/><file name="mysql4-upgrade-0.9.9-0.9.10.php" hash="fe899a0b433198f770bbf0cff24f9d57"/><file name="mysql4-upgrade-1.3.99-1.4.0.0.php" hash="1111366ba92ddd90cb1322a411b5897d"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="31e98ab27fa4b0adc074d6de8d503236"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="b399c09c99023ab3234b1c8998ca98b6"/><file name="mysql4-upgrade-1.4.0.15-1.4.0.16.php" hash="1cfaafbad01a1d1d9b9b63513939b6b4"/><file name="mysql4-upgrade-1.4.0.16-1.4.0.17.php" hash="8561f38e209351f3b3733c4af7c6b9c4"/><file name="mysql4-upgrade-1.4.0.17-1.4.0.18.php" hash="d503087c93ef1cbed8c8f4061655c8ba"/><file name="mysql4-upgrade-1.4.0.18-1.4.0.19.php" hash="01c93e8ff5eb72e02a50bab7bb81cd8b"/><file name="mysql4-upgrade-1.4.0.19-1.4.0.20.php" hash="79c47e0dbae0a2e7ed4fcec119cb9088"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="88ee578331bd113da81e30886580fc6e"/><file name="mysql4-upgrade-1.4.0.20-1.4.0.21.php" hash="40ef612b415e4acf3db7e0d9fdcce11a"/><file name="mysql4-upgrade-1.4.0.21-1.4.0.22.php" hash="765081049ce2fee6fe78dc0644bf1617"/><file name="mysql4-upgrade-1.4.0.22-1.4.0.23.php" hash="030dd89445a2147d8c923f12ddbcd05b"/><file name="mysql4-upgrade-1.4.0.23-1.4.0.24.php" hash="8e775c36e98161db9fb712f18900b414"/><file name="mysql4-upgrade-1.4.0.24-1.4.0.25.php" hash="32454566670a4bd6bfb5dac30a87e2ca"/><file name="mysql4-upgrade-1.4.0.3-1.4.0.4.php" hash="7b7ea15f123131f6c1f6937baad14443"/><file name="mysql4-upgrade-1.4.0.4-1.4.0.5.php" hash="82c7ed626ca89039783236d23d4a644d"/><file name="mysql4-upgrade-1.4.0.5-1.4.0.6.php" hash="1f69d31ce75b5d60acadbbb60e0bb757"/><file name="mysql4-upgrade-1.4.0.6-1.4.0.7.php" hash="169957d037ae1df8fdb2b78882f11b90"/><file name="mysql4-upgrade-1.4.0.7-1.4.0.8.php" hash="d0abd18293e1f006ae24164ed8cd9f7f"/><file name="mysql4-upgrade-1.4.0.8-1.4.0.15.php" hash="344e9d955c8ea423c565d6f755a57e80"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="92bb87c0074e17a2ccd8241c700bab72"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="2d34a0b3ad16b3fd1f6c48a9fa3558a7"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="f415a23ee219230c18059fe7d8798b21"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="4d91e8f371b6624f460deff7bbe5563a"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="51a93ec4558168751008a5f6b34d65a1"/><file name="upgrade-1.6.0.4-1.6.0.5.php" hash="317bd85184b2abaacacc5ae0bdd37597"/><file name="upgrade-1.6.0.5-1.6.0.6.php" hash="0a6426b36049966888e7b54b7e22f9e7"/><file name="upgrade-1.6.0.6-1.6.0.7.php" hash="de37f03aeb539810dac7187aae150943"/><file name="upgrade-1.6.0.7-1.6.0.8.php" hash="22b188bb18e4ae659be05b4fa1048c2f"/><file name="upgrade-1.6.0.8-1.6.0.9.php" hash="9f8311952df6a8af9611781a65a0e162"/><file name="upgrade-1.6.0.9-1.6.0.10.php" hash="9a212975bc67dc2fd8666ce48564531c"/></dir></dir></dir><dir name="SalesRule"><file name="Exception.php" hash="30d326b083bb49430a571f20d74ce058"/><dir name="Helper"><file name="Coupon.php" hash="7c616ce7144506e79c20744cd6611016"/><file name="Data.php" hash="f125fcbc13f8bb57f60f581c599aea0e"/></dir><dir name="Model"><dir name="Coupon"><file name="Codegenerator.php" hash="5576da367a0fb126912b2541a6c6561d"/><file name="CodegeneratorInterface.php" hash="2c7aa2daf249a517d8667234f627a447"/><file name="Massgenerator.php" hash="51833bbc241d1f86bd1b52ca809370d7"/></dir><file name="Coupon.php" hash="c3b8baa5002331145ca5eae9f15abe2d"/><dir name="Mysql4"><dir name="Coupon"><file name="Collection.php" hash="648895de235357f770503126790b4c1f"/><file name="Usage.php" hash="03b14d10e4cbe084a1b744654abf1a44"/></dir><file name="Coupon.php" hash="2c67b882f6f38deabfd0217d307b5f6a"/><dir name="Report"><file name="Collection.php" hash="b434df98a934a791ef0640bdf9409db7"/><file name="Rule.php" hash="750beb5832563d8262ea3e4e9bc3758f"/><dir name="Updatedat"><file name="Collection.php" hash="e9d7e9ab42028d0b5de6b446e1aba35d"/></dir></dir><dir name="Rule"><file name="Collection.php" hash="0db9a76e19ada037e654e0155f7a8b59"/><dir name="Customer"><file name="Collection.php" hash="bab0bc92ee52704e225f6f3b709bfc3a"/></dir><file name="Customer.php" hash="88eb129539426ec993c763bcc3a9434c"/><dir name="Product"><file name="Collection.php" hash="154c67e58e5c48f73140c1fa6d474bc4"/></dir><file name="Product.php" hash="aca1e832c2041c2e27ae59beb0180487"/></dir><file name="Rule.php" hash="fd66b6c157147ee40594d4eda503fc57"/></dir><file name="Observer.php" hash="a4bfcb25408a4f31323f75a218d41893"/><dir name="Quote"><file name="Discount.php" hash="a49802ae19d8eda925a046dd2f9991a3"/><file name="Freeshipping.php" hash="9d3b0a4547bbc46793734977ffa496d0"/><dir name="Nominal"><file name="Discount.php" hash="da9f40bfd137382a908373936b493362"/></dir></dir><dir name="Resource"><dir name="Coupon"><file name="Collection.php" hash="c9896bd0c5b58c6015b4298aaf5dfbd4"/><file name="Usage.php" hash="59834b41eac3210a1b34b43211373d8e"/></dir><file name="Coupon.php" hash="cca17ba608c1b3fcd5f71973628437fa"/><dir name="Report"><file name="Collection.php" hash="ce2ce890a8c314b126119547ed5c9846"/><dir name="Rule"><file name="Createdat.php" hash="dcfa85e1ff0a3497a1dbc8595de746b9"/><file name="Updatedat.php" hash="67bd92b5a51ea346fe925de8b63bbf36"/></dir><file name="Rule.php" hash="9d6529d6d8c2123ea7a2244122248757"/><dir name="Updatedat"><file name="Collection.php" hash="8641d24f4313fde590dad64319497940"/></dir></dir><dir name="Rule"><file name="Collection.php" hash="4e741f28573b5feab458e4e4486be1cf"/><dir name="Customer"><file name="Collection.php" hash="c3cdf7649be0cc38542f43b4f85c43e7"/></dir><file name="Customer.php" hash="60e3d0ec5c8734dcf995430f6fc268d1"/><dir name="Product"><file name="Collection.php" hash="e1f21ba81d709349831d760b6a1b0137"/></dir><file name="Product.php" hash="2e04964a60f857f2c1b413fba5851cef"/></dir><file name="Rule.php" hash="2151a5e415b1c18e84672bfd6c182e2d"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="93a02ed83c28ef63a58677d9e7f40fd7"/><file name="Product.php" hash="b5bc0743ec9d37a5fbfabee67b40701a"/></dir><dir name="Condition"><file name="Address.php" hash="8e0121a696bb30f8b9a5722b8e5cb605"/><file name="Combine.php" hash="3085a13b80a2fcef634d08e952a5ac5c"/><dir name="Product"><dir name="Attribute"><file name="Assigned.php" hash="0068cb1cbbfd8f47a73fec734ba98a4b"/></dir><file name="Combine.php" hash="980b23f98f13077deed242a9e8a3c8d9"/><file name="Found.php" hash="dd29d33cc59410696be3d65bbe378961"/><file name="Subselect.php" hash="fdee14447c4c57fdc7d881406ac02451"/></dir><file name="Product.php" hash="858ef7de1b50ce4080b981d8b8a93827"/></dir><file name="Customer.php" hash="3c9fd4705a402b9fb49b1c452aef545a"/><file name="Product.php" hash="ab2d38ece2ff08df7e2fc98d90b071b4"/></dir><file name="Rule.php" hash="4a60b278c8fafcc449baa634be461506"/><dir name="System"><dir name="Config"><dir name="Source"><dir name="Coupon"><file name="Format.php" hash="cb6917330fe7e74a0faef42c329ef0fd"/></dir></dir></dir></dir><file name="Validator.php" hash="b5dd4b49fdb8d3d02022d307cdaac7ab"/></dir><dir name="etc"><file name="adminhtml.xml" hash="225bd146cd65f89b35a8cbf8c607d6a8"/><file name="config.xml" hash="91196595012db059ec3726a5d7a5fb91"/><file name="system.xml" hash="4b43576016900985effca7b4bced2df3"/></dir><dir name="sql"><dir name="salesrule_setup"><file name="install-1.6.0.0.php" hash="0fe444d62e8e7527a73911a4083067e3"/><file name="mysql4-install-0.7.0.php" hash="673ff6d6d23feb81d3a2eb3c19a7e35b"/><file name="mysql4-install-1.4.0.0.0.php" hash="63a61d462bd588059f5e927e669aac4e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="0722bc5b25e1aa670689e7be858690bf"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="9a929d70ce03e0d8253eafa406a7bf57"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="cf65bed30a711929089f67d6012da4f5"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="c8eca3175ce765cfeac8fdc57a7c133c"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="5b45c036cb71e1e7c335e8623ab3e5a6"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="b527fe0ec7b88045f6a2a2a43467caf4"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="33f5f3345b8ace07cd728da20d62d1ba"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="c2bea7e3d52c3ae19c0d901de8ff4262"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ffe141e04b84a06ef4542403a9d74243"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="7cd72ee92b1d22cd352b868cb75777da"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="348046750da4aba0c54d3cd3238693c8"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="3220ddd060b64d74d5c926aa054b3b75"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="d1815b52d9980e75eec35854f1aaafea"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="3f8ae6b1e3f4503b15831759ea65a144"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="f99e75d217ff76bd1cb084dac416f529"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="6ebc16cdd23ec647606f4b6078ed11d2"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="ef77cb4c4b4d743c7efbd41423e89b37"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="b21fe4c3cf187378e225c3abad67b17a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="850fab34858c4a2865c1d7db63c7e111"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="d86cd0a0096dfb4201a6d5118c13ceed"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="162ae5b9a1b52a6e1c47e4ddfd9bc3cd"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="b8007eb6247909c46737e81f20d1a4a2"/></dir></dir></dir><dir name="Sendfriend"><dir name="Block"><file name="Send.php" hash="e8d1b2fd480b7b5660f26a88aff2f312"/></dir><dir name="Helper"><file name="Data.php" hash="56bfbe885b91b1172ed7fc02ee3acfc7"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Sendfriend"><file name="Collection.php" hash="7832e7c6c0b90fdda552a11c38dfffb4"/></dir><file name="Sendfriend.php" hash="1ded2709c8aebca3ea7a1e431f140e44"/><file name="Setup.php" hash="1a2ed72341304a84afd3c748be986c2e"/></dir><file name="Observer.php" hash="06539907cfeecfd8ac1c83c58a3d558e"/><dir name="Resource"><dir name="Sendfriend"><file name="Collection.php" hash="29eaf21421b7853dd502af43e2ee2ec6"/></dir><file name="Sendfriend.php" hash="f207c38c12b2a345779d4129c96a8df4"/><file name="Setup.php" hash="fa87b74de288064959ad151c80166f80"/></dir><file name="Sendfriend.php" hash="7a8c2d826fa09882a2fdf988ff5aca24"/></dir><dir name="controllers"><file name="ProductController.php" hash="7de452b85a5007f74a51ec1735f6136b"/></dir><dir name="etc"><file name="config.xml" hash="ae7dea9a559b8894b2a64483d8e2fd41"/><file name="system.xml" hash="a94514081abd7d6c7161fc9a45e3ad5e"/></dir><dir name="sql"><dir name="sendfriend_setup"><file name="install-1.6.0.0.php" hash="364799324e1763940c6f4df425150633"/><file name="mysql4-install-0.7.0.php" hash="3ea8e5daac1c6c4bf8846b93c6f0681d"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="6949e6318889da60e8a3c9c40482379e"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="6ec52ccc028315947d1f364d041bc302"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="0f819664cce04753fa044dd20dce0192"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ac6ed64d122619e51f371d10a8a8b56b"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="b5c0dea54b2c89f33ffe08fa0b86563a"/></dir></dir></dir><dir name="Shipping"><dir name="Block"><dir name="Tracking"><file name="Ajax.php" hash="afae367cf6dff1bfe13957288af5b1e7"/><file name="Popup.php" hash="9de50bd8572228092b8a004c9ef0bd3e"/></dir></dir><file name="Exception.php" hash="efafd03e8456b4c98b727298c347882b"/><dir name="Helper"><file name="Data.php" hash="4666c40fc2bf636963609ce2d59311bb"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="7e0522645671635e3f38a25c4228ca7f"/><file name="Flatrate.php" hash="ba6c6b2c171f914ff092a88e1ce605e9"/><file name="Freeshipping.php" hash="9648c98eeb915c9545dab85499fe7a05"/><file name="Interface.php" hash="16876d19b177db33568d1c655599139d"/><file name="Pickup.php" hash="0bec21c749c555a5cd6cdba1b9533e9b"/><file name="Tablerate.php" hash="17dcf5a33d6bfc9182b923068fa8feac"/></dir><file name="Config.php" hash="5b1afd3daa1dcf3f7458c3816577525b"/><file name="Info.php" hash="fa208567acc1e9629cac978d6e0f5be0"/><dir name="Mysql4"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="d397747f415d2137c88365d00aa6b29b"/></dir><file name="Tablerate.php" hash="31956d3fc6c587d8e9275a8fde793119"/></dir></dir><dir name="Rate"><file name="Abstract.php" hash="6af67315af6ac683cb6bfdc567212207"/><file name="Request.php" hash="386ded21f5c37b7eb4fd03663694b2b9"/><dir name="Result"><file name="Abstract.php" hash="de7429b1ac327e69d408c65eb332b731"/><file name="Error.php" hash="39caf64a63cf512ba6dd98014fc97def"/><file name="Method.php" hash="a5b5f621cace41f78fc9570ad6949837"/></dir><file name="Result.php" hash="136715a7580e1e8ed2d13f3343c2ca98"/></dir><dir name="Resource"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="f9d51d8f43f3646d85a7bdcc3330352e"/></dir><file name="Tablerate.php" hash="4fc74f74eda153a51154bb92f31873ae"/></dir></dir><dir name="Shipment"><file name="Request.php" hash="912af0391adec02c594b45aafb11b7ba"/><file name="Return.php" hash="e7b96b2f8143c93fef1a3676f7354433"/></dir><file name="Shipping.php" hash="c1b594917dfbb90b5b4448b66d729f4e"/><dir name="Source"><file name="HandlingAction.php" hash="cf6ad32e144ef45f455afc10a3d05dff"/><file name="HandlingType.php" hash="f053b8106cefc9b97c96c106d3792a1d"/></dir><dir name="Tracking"><dir name="Result"><file name="Abstract.php" hash="4a56497227046e9d3d2cdc4bc0256838"/><file name="Error.php" hash="092f2545700ba32f2636883ab98d5ba0"/><file name="Status.php" hash="ca32255bcd5384e8b58038351033faa6"/></dir><file name="Result.php" hash="381fc1c560238211cdf2dc1c2d2544b0"/></dir></dir><dir name="controllers"><file name="ShippingController.php" hash="0ea96ab2a8f8cc96511c1fc24ce00114"/><file name="TrackingController.php" hash="4a1b36410c4b134f72f61456a4c7b335"/></dir><dir name="etc"><file name="adminhtml.xml" hash="178b68d8d7a4ca752f96123bf3893b37"/><file name="config.xml" hash="6c392178060cb396bb0b61285234e161"/><file name="system.xml" hash="3cedbf8e7fbc33162cf763e0ac988fdb"/></dir><dir name="sql"><dir name="shipping_setup"><file name="install-1.6.0.0.php" hash="fe5c87ef8b62c28e5985068080344b71"/><file name="mysql4-install-0.7.0.php" hash="86297079acd8b3aac0f5b6379106f5a1"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="0ee4430266d54ee94cb378f2a5f21ee9"/></dir></dir></dir><dir name="Sitemap"><dir name="Helper"><file name="Data.php" hash="1200fc7b8217c435b0d80b84359482f7"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Catalog"><file name="Category.php" hash="42055add5a5f9c3a4776f84ef2127977"/><file name="Product.php" hash="f2edb19adeb10d9793c2a2467cbc00ac"/></dir><dir name="Cms"><file name="Page.php" hash="6a3f958cec85ef508733d9d922d5dfc4"/></dir><dir name="Sitemap"><file name="Collection.php" hash="46f2e806ad5f7b99b1b24b13813676e9"/></dir><file name="Sitemap.php" hash="cc28cb180bd969bec94c6f26bb94964d"/></dir><file name="Observer.php" hash="76b6299e8295bf55025b5823365a10c7"/><dir name="Resource"><dir name="Catalog"><file name="Abstract.php" hash="43315c7994817dbfbb4506ab73b45270"/><file name="Category.php" hash="1c9b5d285273926457704353b91012b2"/><file name="Product.php" hash="a5968449d872c03633c7fff1cfcea1a1"/></dir><dir name="Cms"><file name="Page.php" hash="7f27cfdb5b03e7ae5c7708ab01b9bb0f"/></dir><dir name="Sitemap"><file name="Collection.php" hash="3f9dbe76823b80023547483192d8e604"/></dir><file name="Sitemap.php" hash="f320e9933280fccb2dd7194c644b6087"/></dir><file name="Sitemap.php" hash="ab955cfcb55419ab85d23616b74d32cb"/></dir><dir name="etc"><file name="adminhtml.xml" hash="5911847a32ce55a6f5dc4c8fbce06f85"/><file name="config.xml" hash="51c724cedc77b5f5130c679364245d1c"/><file name="system.xml" hash="a10f1b242351496f9f691a89156d4e54"/></dir><dir name="sql"><dir name="sitemap_setup"><file name="install-1.6.0.0.php" hash="20150beee26d69e9dc68b9ec68c2facf"/><file name="mysql4-install-0.7.0.php" hash="b006c991a93e5e434067397193b2326b"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="be58d2282c10f1bacaa426d25b136a40"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="9291016ce79b169e73e8054de3236d68"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="4b9b363df397200a3f142b4ac0eba3ee"/></dir></dir></dir><dir name="Tag"><dir name="Block"><file name="All.php" hash="5371e579e2dc3d4ecfce920fec0f7e01"/><dir name="Customer"><file name="Edit.php" hash="72e956678d45c1c02baa704cc39361d4"/><file name="Recent.php" hash="ef9157707f7e9497ee38dcd543f16db2"/><file name="Tags.php" hash="ad9fe7ab0cbcdeff9b45a35c9a3ff3f8"/><file name="View.php" hash="f6e098651205ecd87e016b6f7a394a3e"/></dir><file name="Popular.php" hash="cbf9226084f976627ebcab63f4927990"/><dir name="Product"><file name="List.php" hash="ab54acbc97e1226f887e5974a49a3c27"/><file name="Result.php" hash="5e2389648663aeba3d355e5346c64f24"/></dir></dir><dir name="Helper"><file name="Data.php" hash="a8fa758a4a518f8b4b70c4edb3e98d4f"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="a98e5c7838a65a8edef737d7cc95c45d"/></dir><file name="Api.php" hash="cf2da9bf7d251e6242407ba0c3b3530a"/><dir name="Entity"><dir name="Customer"><file name="Collection.php" hash="291ee2170f208b4e0cc378e31c81ce86"/></dir></dir><dir name="Indexer"><file name="Summary.php" hash="527c6046553b9e723438d76cb659d71b"/></dir><dir name="Mysql4"><dir name="Customer"><file name="Collection.php" hash="f6688552af76c395c0399af129e42e7d"/></dir><dir name="Indexer"><file name="Summary.php" hash="788f9bd792c32b867419bff9d817caa5"/></dir><dir name="Popular"><file name="Collection.php" hash="e1b57cb4886f8f55517e430a0f598390"/></dir><dir name="Product"><file name="Collection.php" hash="1b42c7671635e112a9dd29a9938e9ea9"/></dir><dir name="Tag"><file name="Collection.php" hash="042182c94468f8dbf01b25e49939e82e"/><file name="Relation.php" hash="a70a883b602e57f48bb9a7d236351106"/></dir><file name="Tag.php" hash="2ef96a80277c09f9b3f80e966f174e59"/></dir><dir name="Resource"><dir name="Customer"><file name="Collection.php" hash="aa9b4d9cf04e8d063c7de75d341e006d"/></dir><dir name="Indexer"><file name="Summary.php" hash="e6a034bee38fdd44d45a1cf9c5454e95"/></dir><dir name="Popular"><file name="Collection.php" hash="c09fffb148c2a3a232b59f4677721222"/></dir><dir name="Product"><file name="Collection.php" hash="c8828b29bf1a0c751597739741a0bccf"/></dir><dir name="Tag"><file name="Collection.php" hash="686854d70fc94f2aa466831fd548266a"/><file name="Relation.php" hash="68232ac61d736874a3d5548cc2e4e9b7"/></dir><file name="Tag.php" hash="307f77e495a89f5f057835b5327b911d"/></dir><file name="Session.php" hash="54ea2cea2f489970276155dd4bb372bc"/><dir name="Tag"><file name="Relation.php" hash="c89c5e78aa104c34cc3f138b7b0aac47"/></dir><file name="Tag.php" hash="cdf03ba9c49b6722210fc6a02b4eedd0"/></dir><dir name="controllers"><file name="CustomerController.php" hash="ca3f384d2c4aa8820bdf190fcbb94131"/><file name="IndexController.php" hash="2dbd17b1e6a3cd2af6a9f68580d5c61c"/><file name="ListController.php" hash="59db440f81235eb351568096f2854c3e"/><file name="ProductController.php" hash="03db8ea3fb0069d8949ad93e77c87679"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2a8e07d9bcb11744a666322bba5d7a0e"/><file name="api.xml" hash="6ba8c9308cf37e343f73cfc8a9318a69"/><file name="config.xml" hash="ec475d0a0964e7a270fc65809e185a15"/><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="c29f9c3132cb5004faf9a40391357fb0"/><file name="mysql4-install-0.7.0.php" hash="466970216774f88e428d93dd833f760d"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="102b8ba9a19af9bac16e53d0121112b4"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="ea36eb482c1b71744e6c38de6762b25a"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="c8dc94872f04ecc0850bb0eb4a4838e9"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="80ba0c211544936130226d3d8c2bfb48"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="31d932d329e13a0b721c9e1aa7eefe4e"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="64db47a305770b8225e521d5e9441251"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ecf294c769b60e51496315f5cad7363b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="d5ebb91098aa04d0b14cd05e665e123f"/></dir></dir></dir><dir name="Tax"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Region"><file name="Updater.php" hash="2320443eec9f560e1ad465f122ed7189"/></dir></dir><file name="Notifications.php" hash="78804ab65a0b62f07f6f77c7d220d59c"/></dir><dir name="Checkout"><file name="Discount.php" hash="d2b22367bb03bdb7e09ecaa79a3ddb8b"/><file name="Grandtotal.php" hash="a7d6af3c3e1367354c984e73214fd81b"/><file name="Shipping.php" hash="442497bc1e5a17fc3d8f66f090dbbfb4"/><file name="Subtotal.php" hash="401a0fc1f2498527d0cfbbde7cf3d186"/><file name="Tax.php" hash="40e443a7821b5eef2c4622861cc0d5e3"/></dir><dir name="Sales"><dir name="Order"><file name="Tax.php" hash="b7e77e69ea8fe15e905279a6e81ea3f1"/></dir></dir></dir><file name="Exception.php" hash="cc97da20b10a5fd1eef7a5b397473c73"/><dir name="Helper"><file name="Data.php" hash="d5c9b29199975371c4639864397aeecd"/></dir><dir name="Model"><dir name="Calculation"><dir name="Rate"><file name="Title.php" hash="eff97c093936d87842c83456eb26c72f"/></dir><file name="Rate.php" hash="02eb9b2685d8546dfa201feb2f6bdbe4"/><file name="Rule.php" hash="8a30ff2df7ee50584c4d0c273d7ecd4a"/></dir><file name="Calculation.php" hash="83033b3273bc198aa085e999f0955f76"/><dir name="Class"><dir name="Source"><file name="Customer.php" hash="60efb530235816f276f7e61617b8aafa"/><file name="Product.php" hash="36ac93544d04eefed941d2fc5022c29f"/></dir></dir><file name="Class.php" hash="81be1061087a0ed11f13ec6b1f337180"/><dir name="Config"><file name="Notification.php" hash="8d8f5509bf53eeb74ebe3547fadada4d"/><dir name="Price"><file name="Include.php" hash="7580a97b56d1f05e447dce79acf7412a"/></dir></dir><file name="Config.php" hash="fcb0373225adde032c97d76e2cb966c2"/><dir name="Mysql4"><dir name="Calculation"><file name="Collection.php" hash="d009414c64da256a3ce723ded7bf1e6c"/><dir name="Rate"><file name="Collection.php" hash="1cea8176c33f1736637aed72330eb5b1"/><dir name="Title"><file name="Collection.php" hash="c8faf19248f3bb70675a83941c8be13b"/></dir><file name="Title.php" hash="4d60fe76d51a5e8022e24e0d0cf61974"/></dir><file name="Rate.php" hash="5a90f57ff9d4d88a2833721e24367d4a"/><dir name="Rule"><file name="Collection.php" hash="67fbbf25ab10c113fa3d495f9e4e73c3"/></dir><file name="Rule.php" hash="fe32f951268a25013b5bce9faf33658b"/></dir><file name="Calculation.php" hash="923f7726f74811efb4ea7a6da21a29e0"/><dir name="Class"><file name="Collection.php" hash="a6387ea5adda7d766955fd30161090c9"/></dir><file name="Class.php" hash="cdecd335df7a6c5111b930735554d724"/><dir name="Report"><file name="Collection.php" hash="aa4fb55337c566f838cc1cc3e71e6a93"/><file name="Tax.php" hash="15f0fcaf5378736991230fe086f56d44"/><dir name="Updatedat"><file name="Collection.php" hash="9429e883d1d8b60e5019bbda29597e1b"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Collection.php" hash="f7d822f287bae3138885609cb8e888b9"/></dir><file name="Tax.php" hash="aea5daad3ca17c10f55f41f40a9ebdfa"/></dir></dir><file name="Setup.php" hash="f69b944b28796eb364ea0c9d1c1552c5"/></dir><file name="Observer.php" hash="cf0de9c834f04945561f925fc778fd0d"/><dir name="Resource"><dir name="Calculation"><file name="Collection.php" hash="456329a856ea71b48b8edf6328cfa34e"/><dir name="Rate"><file name="Collection.php" hash="3515d632676fe8c410d8ffacfb293b78"/><dir name="Title"><file name="Collection.php" hash="0a9286670c799ecbe0eb02c05321030b"/></dir><file name="Title.php" hash="37b38559c0c7913c4d450115b2d8198c"/></dir><file name="Rate.php" hash="30b1aadf74a03f61901304588f307798"/><dir name="Rule"><file name="Collection.php" hash="5038667cc7ff73d34acc21f6ceb56835"/></dir><file name="Rule.php" hash="b57750e0b2cb27c6f08a0d2de60ec0d7"/></dir><file name="Calculation.php" hash="bb3009a68c282aa1bf98841a2ea45dd8"/><dir name="Class"><file name="Collection.php" hash="e5b578b8c9edfc0c14d0e3127e2fb326"/></dir><file name="Class.php" hash="9836943a01a9dc0b0465d60442164c7b"/><dir name="Report"><file name="Collection.php" hash="6c279acbc587a9702344559925ca91fc"/><dir name="Tax"><file name="Createdat.php" hash="09c60679529dbfaa3b09ea943857448e"/><file name="Updatedat.php" hash="f89f8f5520cc0efe737cdecf780daa38"/></dir><file name="Tax.php" hash="715e636a8f2661a837da15201a55d340"/><dir name="Updatedat"><file name="Collection.php" hash="b31e6810cc9923ee67ae5064cdea9bf8"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Collection.php" hash="20d7ccca1232f39bc0578d0e65694c33"/><dir name="Item"><file name="Collection.php" hash="c1e12d6e7fbbdcb5e3a91a0df6760362"/></dir><file name="Item.php" hash="81925013e2d6ec9f165c7db80aeac0a1"/></dir><file name="Tax.php" hash="d4d8978d38375772c0796352487e51ca"/></dir></dir><file name="Setup.php" hash="713c595f7fe204d376dc1c41e2571f55"/></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Item.php" hash="864cd0dac8c010c70ef4f44200c88fdc"/></dir><file name="Tax.php" hash="cf958f708f593ad169c2f66efe2e236f"/></dir><dir name="Pdf"><file name="Grandtotal.php" hash="b27c4007d9b90f50a98dfb9b0b5a90d8"/><file name="Shipping.php" hash="3df8e71747cd140d61487c8877f96f27"/><file name="Subtotal.php" hash="9062cbae0c1d56fa1ecd0f395abe4837"/><file name="Tax.php" hash="1da5645322652899aa6a3e2f518b80ac"/></dir><dir name="Total"><dir name="Quote"><file name="Discount.php" hash="b4f055cc529f977dae230edc1241776e"/><dir name="Nominal"><file name="Subtotal.php" hash="79ae3130154b48ffd4f750ca65d3e93d"/><file name="Tax.php" hash="3be2fc5f20c2eca6c83f7fccba01d748"/></dir><file name="Shipping.php" hash="e41ed3f14c324b689c60e0b042e7b67c"/><file name="Subtotal.php" hash="1c5ac5b1e6796d3c3420b30053469d69"/><file name="Tax.php" hash="1d94ac9ac1477c752d3665c867905624"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Algorithm.php" hash="04215e661b81c56e228902d44dba4f81"/><file name="Apply.php" hash="a71df6c29edb40974604b1540af7d0c6"/><file name="PriceType.php" hash="74d4578e17a16805dabc89a7b770c029"/><dir name="Tax"><file name="Country.php" hash="91bbf2efe4a8a33ca752f6bec367f509"/><dir name="Display"><file name="Type.php" hash="34ed9b07756468791f7a01f3a581ceef"/></dir><file name="Region.php" hash="5ae1bcdd09b2c4beb3441325ef948771"/></dir></dir></dir></dir></dir><dir name="data"><dir name="tax_setup"><file name="data-install-1.6.0.0.php" hash="27422c73884137274e753f239480d593"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="a9fcb1b93e24570810f974f360c42c65"/><file name="config.xml" hash="8fa8f08a2b9d44cb31d39b3ceb99cdda"/><file name="system.xml" hash="86d1d8cdd1d0a74cb75549bd307e7c16"/></dir><dir name="sql"><dir name="tax_setup"><file name="install-1.6.0.0.php" hash="2e67641e059034ff6ebe8488475ec9b3"/><file name="mysql4-install-0.7.0.php" hash="92365b1115eac789b008105785fac741"/><file name="mysql4-install-1.4.0.0.php" hash="eac72ffa7d64cfb4fab2536e0d785473"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="e0d22151ed9281fd4ca06232ccb4c1c1"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="cc55e540aead6538e46b064efb925dfa"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5e5248263b8a8a90ce8ebc6015ae9897"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="3f8c4ad55f4e77dccacba6903cddff02"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="54b278741f62fea936f550239d47bc90"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="d59b330a51599d40e0fcfa4da6af2753"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="29249336b31e95bf21af0f17a867d561"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="f9369df3888aa50231692e6fa88624be"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="bd280eb15643517131739532a44f3045"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="8cd515d303ffb60cd7b1f249c07bfc71"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="63087bcfa056805d4557d0943b66da70"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="a59bd987cfdd6f4714c7499375011b43"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="45ec3b342f9764fb50444af0afc6df3c"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="58991310adc7fd5f992ad8b04048e05d"/><file name="mysql4-upgrade-1.3.9-1.4.0.php" hash="aa1a65db97dfd0cedba1bd66809f86c8"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="d79efef012820fbb3fe7a39beba08da3"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="c235a03f0613f14429d2a7604e0fd7bc"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="c552b44e27cba6b8894462e21b133588"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="feda533189e1b36e875e52ef87e399dc"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="703bbf15811e95287bd0b3b65267aeb6"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="d978e1f88b6786a3cdb77ea1ff2ade53"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="cac878b7eeb51208efebbfb3a1397499"/></dir></dir></dir><dir name="Uploader"><dir name="Block"><file name="Abstract.php" hash="2edc9f40431f83f6ba63cd82e60895aa"/><file name="Multiple.php" hash="ebd3b546eeb6d7ae1b4ec852b64d79f1"/><file name="Single.php" hash="faec37a64e42101c553a972cdbedf1a8"/></dir><dir name="Helper"><file name="Data.php" hash="159dc31bc264a3d09f8a1af9faf0b26c"/><file name="File.php" hash="bbb1ccf3005b29b6130c571d6b6f2be6"/></dir><dir name="Model"><dir name="Config"><file name="Abstract.php" hash="6a1b08cc9a3bc7d17651a33512c297d0"/><file name="Browsebutton.php" hash="ae8f4c81730df40c4b169edad9c17926"/><file name="Misc.php" hash="27be1dafd1b18712b65b052d94801a6a"/><file name="Uploader.php" hash="1753d1dc15b5079bc606167256f2b149"/></dir></dir><dir name="etc"><file name="config.xml" hash="cf5f9de83038a94f35560212c2c3b170"/><file name="jstranslator.xml" hash="0ca6aab45f6e93f292af2a7ffdb4e82a"/></dir></dir><dir name="Usa"><dir name="Block"><dir name="Adminhtml"><dir name="Dhl"><file name="Unitofmeasure.php" hash="8c47714ce5b975c00dc03918feca5256"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="c7034c095463cd5542259b867928d9f9"/></dir><dir name="Model"><dir name="Shipping"><dir name="Carrier"><dir name="Abstract"><dir name="Source"><file name="Mode.php" hash="071a81d7f1a33f7f0ce23dea6994b51d"/><file name="Requesttype.php" hash="bb315ffd9d4c265f6762ba2689f58505"/></dir></dir><file name="Abstract.php" hash="31c20f784d780e44c028cc4b04f817db"/><dir name="Dhl"><file name="Abstract.php" hash="e122544b2f3a4c6a53935f8f966afd48"/><dir name="International"><dir name="Source"><file name="Contenttype.php" hash="80a06de262cafdfb554244e565032acf"/><dir name="Method"><file name="Abstract.php" hash="8312055ecf448aa634ad73b4252cd44b"/><file name="Doc.php" hash="69c561e3d08528a9335178ec643ceb24"/><file name="Freedoc.php" hash="95b49cb668bb55955524d6b5f658f126"/><file name="Freenondoc.php" hash="4131b515c94e5ccfdb06492e071f8974"/><file name="Nondoc.php" hash="ebceb46c51fe7f976316d900a2cc123f"/><file name="Size.php" hash="33ae7c7f41f4dd7a208edf97d9f2afe7"/><file name="Unitofmeasure.php" hash="d2104d50f5fd0aa1a3a1b0ee871597d5"/></dir></dir></dir><file name="International.php" hash="c5cfdaf5b9f80d3f070ad0b77801b55d"/><dir name="Label"><dir name="Pdf"><file name="Page.php" hash="ce8a66de0addff9880e99793bace1a3f"/><file name="PageBuilder.php" hash="170a286bad74bb475d58af588f84c6e8"/></dir><file name="Pdf.php" hash="91064f29c13a4af8ee3745be83b79973"/></dir><dir name="Source"><file name="Dutypaymenttype.php" hash="586d1bba3993463b899ca943246632ca"/><file name="Freemethod.php" hash="136c58bc14b3f58a764d0a206020288d"/><file name="Method.php" hash="830fcb9d8e827c42b36ce60b01e2f2b3"/><dir name="Protection"><file name="Rounding.php" hash="63813967f28c3e80f4380af8382d7f3b"/><file name="Value.php" hash="dfa1baff3c372332f1c97d1be266eec4"/></dir><file name="Shipmenttype.php" hash="bab794383f0d7d43ea2feeebea89222b"/></dir></dir><file name="Dhl.php" hash="e2aa3118442e3167597c6ddb02f73752"/><dir name="Fedex"><dir name="Source"><file name="Dropoff.php" hash="754f10627d7c24c705b3c0f5ad32b6cf"/><file name="Freemethod.php" hash="1e185f6d827f11f2460cbbc0d855df7a"/><file name="Method.php" hash="cb23859927bc202cdb178fa26de7ff28"/><file name="Packaging.php" hash="eb3821d217b172e5ba00506af17225b8"/><file name="Unitofmeasure.php" hash="300a18d3074ec425b44f9783cc5f4624"/></dir></dir><file name="Fedex.php" hash="05b94da1cf84270caef15f280695b672"/><dir name="Ups"><dir name="Source"><file name="Container.php" hash="ca732a3cff61fcce0268e1aab9f27cd3"/><file name="DestType.php" hash="6229f09acf0ed0d9d8d98834ef2eed6d"/><file name="Freemethod.php" hash="86426453661ccbe1d18c9e80d951f7ca"/><file name="Method.php" hash="9cb0d28169ff70153b9fbe7ccb69d21e"/><file name="Mode.php" hash="3f65dffe26c3789477f6bda10d1fef2e"/><file name="OriginShipment.php" hash="a2ba8ed53d32dc4bcf50aa722d1b69dc"/><file name="Pickup.php" hash="6e17e0ca1a05a6d8feafc210fe72906a"/><file name="Type.php" hash="222404b303e139efd4b6001abdaa4c99"/><file name="Unitofmeasure.php" hash="01131d3f6c6126c92926ea5159f3a3ae"/></dir></dir><file name="Ups.php" hash="cbfb2560463f651d7be560b28d84dac0"/><dir name="Usps"><dir name="Source"><file name="Container.php" hash="4ffc93fa3fe79ce358e799063423e063"/><file name="Freemethod.php" hash="94288b9388db6998a6326b22195958e1"/><file name="Machinable.php" hash="1c0b0155cfef279e69d8e297f13ad15c"/><file name="Method.php" hash="c1bb67f4449e5f1d5418ca7e1cd46e54"/><file name="Size.php" hash="37da215b2ca993f3730eb86d28efbded"/></dir></dir><file name="Usps.php" hash="a1b39969a929532a427d5399be9b10cf"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="774d8625f9c74b77fdd7704b6a78b502"/><dir name="dhl"><dir name="international"><file name="countries.xml" hash="c01576c76b96244249488ff0e39708d8"/></dir></dir><file name="system.xml" hash="5fdc3af547af078e647511636885b636"/><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="64d5771cabb861e26c75ba50e87025c6"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="94823247458a8f38a8706bfd8cd4d71b"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="6d9030a6540efe4296196d4f62f58c9c"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="4d290377c8af4d6d4712700236393923"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="1682f35425f7f7403baa1d7eb7bbda90"/></dir></dir></dir><dir name="Weee"><dir name="Block"><dir name="Element"><dir name="Weee"><file name="Tax.php" hash="13d7af51ffdbaacf44b124d0b8e0b81e"/></dir></dir><dir name="Renderer"><dir name="Weee"><file name="Tax.php" hash="ae4e907cf73877f8515ae1555356cc26"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="bb8ffee78ba50dece1c35a0118b53b47"/></dir><dir name="Model"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="2aee9af8fa9637fe9463e0a118d977e2"/></dir></dir></dir><dir name="Config"><dir name="Source"><file name="Display.php" hash="511e1e781f4b615d306acd62d2965382"/><dir name="Fpt"><file name="Tax.php" hash="99c23ff5a1744e31e1fc4f19ea51a3bf"/></dir></dir></dir><dir name="Mysql4"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="0ee584e8adff887f837edab898104199"/></dir></dir></dir><file name="Setup.php" hash="4be1dc2c3bfedac1f8c82d1097155fd7"/><file name="Tax.php" hash="b2d6aa2d1b4041ba711f5474c647724d"/></dir><file name="Observer.php" hash="b0de85e2f6538a9dc569b9f95f1a6258"/><dir name="Resource"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="8a21660667e2deb6002977da3a71435b"/></dir></dir></dir><file name="Setup.php" hash="72a4de260d5f1259f886a018778d6210"/><file name="Tax.php" hash="9b26538e0a04bdc32cafbe66441341c4"/></dir><file name="Tax.php" hash="cfebe995e978939133d9579cb94373dc"/><dir name="Total"><dir name="Creditmemo"><file name="Weee.php" hash="f8b7e4a813d647680ca70867f400aa01"/></dir><dir name="Invoice"><file name="Weee.php" hash="c51b3f3faee2e82639a549ff880866fd"/></dir><dir name="Quote"><dir name="Nominal"><file name="Weee.php" hash="b0c08939cd7b91fb41b38ed55d92f81b"/></dir><file name="Weee.php" hash="7cd99959444698a049168951614afaf0"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="6ccdcce9c0407c53f24c0c2b6b315d76"/><file name="system.xml" hash="dbd65660fe11e7d0e0fb17a18f4fb70d"/></dir><dir name="sql"><dir name="weee_setup"><file name="install-1.6.0.0.php" hash="df76d84b49de010b02caff10d93022db"/><file name="mysql4-install-0.1.php" hash="a8b914e73224adff7da176f4309b0496"/><file name="mysql4-upgrade-0.1-0.2.php" hash="84f8e84c3d68fc007bc2a0926fe25487"/><file name="mysql4-upgrade-0.10-0.11.php" hash="10e6071f0a9f5485cb9a5295e640c6fe"/><file name="mysql4-upgrade-0.11-0.12.php" hash="434afe19a6077f982dd22d5c98712a93"/><file name="mysql4-upgrade-0.12-0.13.php" hash="d03576ccb575b953f24af5b37cfcf164"/><file name="mysql4-upgrade-0.2-0.3.php" hash="594946206ca2dd8ad60f034b1ad83984"/><file name="mysql4-upgrade-0.3-0.4.php" hash="89eece341208eae616819dedab409112"/><file name="mysql4-upgrade-0.4-0.5.php" hash="9678073dcee88b6d1908587a854fdff0"/><file name="mysql4-upgrade-0.5-0.6.php" hash="782d6391f4fe6b3b3088b9c4ba2a3a41"/><file name="mysql4-upgrade-0.6-0.7.php" hash="b862b916059325d1757647ccb7367ebb"/><file name="mysql4-upgrade-0.7-0.8.php" hash="79a4463b2c6eb0fdfa111454ee1b1f91"/><file name="mysql4-upgrade-0.8-0.9.php" hash="7137ec0db6a8a0b641ddfb993f482af6"/><file name="mysql4-upgrade-0.9-0.10.php" hash="bade680275ab78850fa1dea267f9e2a3"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="bee4923defac8b0e52e8b440558cffe7"/></dir></dir></dir><dir name="Widget"><dir name="Block"><dir name="Adminhtml"><dir name="Widget"><file name="Chooser.php" hash="de8a690c0754dc6401075387f59db964"/><file name="Form.php" hash="cc6abe0aba214678ade5a5c7b712368f"/><dir name="Instance"><dir name="Edit"><dir name="Chooser"><file name="Block.php" hash="7ecfc5f40fcbfd3b423fce679b97d4d3"/><file name="Layout.php" hash="336e4ba5509dd05b7fe43d2595a73c35"/><file name="Template.php" hash="99195dbe6dae16d89f0fce9adced3712"/></dir><file name="Form.php" hash="6a3537c874764877e677135586372258"/><dir name="Tab"><dir name="Main"><file name="Layout.php" hash="a06a15c1107711324f31804b44681b04"/></dir><file name="Main.php" hash="0e65099e40c70ee6f5b64179de0b6cc1"/><file name="Properties.php" hash="232c932500ed1f7f46b81af6912614de"/><file name="Settings.php" hash="b325d036ecc2b09de794a325d79f60b8"/></dir><file name="Tabs.php" hash="aefaf43c46553aa9cbc8aff2d429e126"/></dir><file name="Edit.php" hash="0eacfd33a98101e71dc75004c2eda3bc"/><file name="Grid.php" hash="bce3f72bcd2e0b4bbb97493d48e84dd5"/></dir><file name="Instance.php" hash="50698286d97adfcd64f457a95af45aa3"/><file name="Options.php" hash="c07b96528ab02e62f01bf0491a442fad"/></dir><file name="Widget.php" hash="56d0cfe2be0917036fb2fa464a69ab43"/></dir><file name="Interface.php" hash="9e38e76a4f085977a945f714a0ba0ca7"/></dir><dir name="Helper"><file name="Data.php" hash="0103c9a68ad4cf0f86466ea5d06072af"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Widget"><dir name="Instance"><file name="Collection.php" hash="7153f583e8437f5a1934c30f616c793e"/></dir><file name="Instance.php" hash="c91120d875df54e7a46c234e797f6d47"/></dir><file name="Widget.php" hash="78e867dabadd44e18cc1671e44baf4a3"/></dir><file name="Observer.php" hash="cb836d230b4b4365d0ea1c5543c99fb7"/><dir name="Resource"><dir name="Widget"><dir name="Instance"><file name="Collection.php" hash="73288c0d5e030afe7d43bfec4c871a84"/></dir><file name="Instance.php" hash="353bd828fcea553bde6d73e4b0d6868c"/></dir><file name="Widget.php" hash="357b3d256686f8de572ecfe643b8d5df"/></dir><dir name="Template"><file name="Filter.php" hash="9ca877dd5c8c80a2c742ab1c39e93e27"/></dir><dir name="Widget"><file name="Config.php" hash="8492cd6ded792f4f2af16f488cced7f6"/><file name="Instance.php" hash="a5394db28ff7f79375e55837b1d1bd52"/></dir><file name="Widget.php" hash="af31c5460e91ba829fe9ae55daccc167"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Widget"><file name="InstanceController.php" hash="b67d61024e4001535f91ba191c6eb5f2"/></dir><file name="WidgetController.php" hash="58f4f2d03199b840de758beb8ce5369f"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4fd05ad1036dc485c1837bfe1e3b2afa"/><file name="config.xml" hash="5b9a151ef5d9ab00f5329e0dbd55f3b7"/><file name="jstranslator.xml" hash="e476c7433b0147fb3b032d2d52fcfdb0"/></dir><dir name="sql"><dir name="widget_setup"><file name="install-1.6.0.0.php" hash="ddccff4efd7b3f404481c327540d77bc"/><file name="mysql4-install-1.4.0.0.0.php" hash="fcb5887efd1aead68430d8d435ce8970"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="56fe849d37b83aeeccac695eb3ac4fd1"/></dir></dir></dir><dir name="Wishlist"><dir name="Block"><file name="Abstract.php" hash="c5936fc3b01f6183fc11a7ed27ad6d47"/><dir name="Customer"><file name="Sharing.php" hash="54f16b53176cbaf5145c3c3394c90da5"/><file name="Sidebar.php" hash="497cb35587875fff2a3c038355bd4491"/><dir name="Wishlist"><file name="Button.php" hash="e29374afab5e89fb64440a3139009679"/><dir name="Item"><dir name="Column"><file name="Cart.php" hash="93f7c1cee110fcbbef1c50c4379da7a3"/><file name="Comment.php" hash="7a01ae66b0a82254d52aed1bb0b7d6a5"/><file name="Image.php" hash="603b1518aa55916066c5a3a725578d2a"/><file name="Remove.php" hash="c6fb05896d59957aad196fdd53374000"/></dir><file name="Column.php" hash="99b1b52995ac7db0f20f51c8b2193754"/><file name="Options.php" hash="726302cea172f61d06cdba6643584197"/></dir><file name="Items.php" hash="78e17a4e3183357de7050562e17f2a32"/></dir><file name="Wishlist.php" hash="9819abe03ad5fa5156923db48017ce7f"/></dir><dir name="Item"><file name="Configure.php" hash="1f75646c8c1b364b94ba7a141dd60c60"/></dir><file name="Links.php" hash="33d8e980dacf34114a0cc2d8ff71fc87"/><dir name="Render"><dir name="Item"><file name="Price.php" hash="8b14fdcb439fd4ed63435fb6aeb3b102"/></dir></dir><dir name="Share"><dir name="Email"><file name="Items.php" hash="b3874179e7cdacfeded545ebacb50898"/><file name="Rss.php" hash="ab2df1a6f9dcd74a9492e72ce39b73ff"/></dir><file name="Wishlist.php" hash="dc531d9cd182dc1eb6b3f0a889da623d"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="8f5076a12d8668113cfa18364f835169"/></dir><dir name="Helper"><file name="Data.php" hash="b3d9783460998248ef93b080514dd379"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Summary.php" hash="0c46b4e850fde3a81b89111bf4ab5b66"/></dir></dir><file name="Config.php" hash="8c8e4d74530ed6100d984a1318327dcd"/><dir name="Item"><file name="Option.php" hash="3f665c8e2f19281b6a9338af0717e5cc"/></dir><file name="Item.php" hash="75288060fd8c9d5b982d4a7adcb4d88c"/><dir name="Mysql4"><dir name="Item"><file name="Collection.php" hash="80b0b78a86f32d473ed0e17948d4e188"/><dir name="Option"><file name="Collection.php" hash="ee69537d9a08e2925ae2a100c395999e"/></dir><file name="Option.php" hash="ebc332534c0f6849630c1f51fd4445f5"/></dir><file name="Item.php" hash="fdfdabb8c68320a5a09d17ddad7f4359"/><dir name="Product"><file name="Collection.php" hash="3a1fa7b4cbc7e5534d773ed8bb11e3a1"/></dir><dir name="Wishlist"><file name="Collection.php" hash="cc9bdaea3eb2085e17ffdb783977c5f2"/></dir><file name="Wishlist.php" hash="ec3bb2e9e6218fe83b3d867fdbfb2d70"/></dir><file name="Observer.php" hash="93f024d6e24684145e8d97d9207621ad"/><dir name="Resource"><dir name="Item"><file name="Collection.php" hash="fa429c7e077728c2a5949c14709a1f66"/><dir name="Option"><file name="Collection.php" hash="5d90f9149020aceb1fe7f83489fea7bd"/></dir><file name="Option.php" hash="07c5974aceaf133d3df43f6da3e0c37c"/></dir><file name="Item.php" hash="033fc4bd987f3cadb143605d0488f72c"/><dir name="Product"><file name="Collection.php" hash="9d43a683715c290a0b299a555fb7c201"/></dir><dir name="Wishlist"><file name="Collection.php" hash="0b7c106a5230c31cdfeca44c22636632"/></dir><file name="Wishlist.php" hash="db98aa3165c41ac822acc515864dc091"/></dir><file name="Session.php" hash="762f296192b00f6f0ddd5db40f8c5216"/><file name="Wishlist.php" hash="3c3c5dd7f88ae56f257784518ad0f0a5"/></dir><dir name="controllers"><file name="IndexController.php" hash="707df9d923fb3ca78d64f735aac7c9d8"/><file name="SharedController.php" hash="d683165e7ee5e3d635a92855f6ddbbd0"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a208acdcb55e1065c76f7b0cefc4030a"/><file name="config.xml" hash="d525c45c27ab45b6fbb707e9268e051d"/><file name="system.xml" hash="1d26f9090d4042e4bf9cae3d355180a2"/></dir><dir name="sql"><dir name="wishlist_setup"><file name="install-1.6.0.0.php" hash="554b19c0e08d4a9c2bae3d44c7f52ce1"/><file name="mysql4-install-0.7.0.php" hash="f5d63007398c8e49d2dfc62a04b5ff71"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="ec4f357d8de36006760e0f556ce47479"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5e84b811fd93b03d7e22f2ed26343c90"/><file name="mysql4-upgrade-0.7.2-0.7.4.php" hash="15855583abfd3dbe53d5c86eea6a6e3d"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="1b834c64b3d4748372c0f142bcfa8562"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="83081316eed79a041040777f0aff8581"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="fe5c793b4a60487e7f26fecee51e8027"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="9b22781e6e77f69328b2bf19633c33d4"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="44ea47c2fe4f6b65c05df6793d5bfd0c"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="24346ecd9aabe85d7dc315f92da35bb5"/></dir></dir></dir></dir><dir name="Zend"><file name="Date.php" hash="95bf218944785f606f22c2ea0c077f5d"/><dir name="Db"><file name="Select.php" hash="28f3efa5f9797af22f899fb525dbb44f"/><file name="Statement.php" hash="4b5b39a1e1c651ab9d6db332c882fdf7"/></dir><file name="Mime.php" hash="f216d84221e3d7601822b4c95948aeaf"/><dir name="Serializer"><dir name="Adapter"><file name="PhpCode.php" hash="d19044ca7b67e672bb9627f572f1a069"/></dir></dir><dir name="Validate"><file name="Hostname.php" hash="08c032ea8831e62e79c792e274220aa9"/></dir><dir name="Xml"><file name="Security.php" hash="7366a7b9e2dab5551b557f49d900d6a1"/></dir></dir></target><target name="mage"><dir name="app"><file name="Mage.php" hash="e44ae7c8a2e8b855f5c0f3473b92665c"/><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/><file name="bootstrap.php" hash="38278b27c72503685be7271a244edc93"/></dir><dir name="."><file name="cron.php" hash="f58b7c6edc872e1472c62fc1f48cfa85"/><file name="LICENSE.txt" hash="59563e7be45096d0833dade102989042"/><file name="index.php.sample" hash="b52e1c098d7fe1711889378f56aa76f2"/><file name=".htaccess.sample" hash="971c336db60ac86ae96b5c5871be1e8c"/><file name="LICENSE_AFL.txt" hash="45a399f2095030865fb962263ccd7506"/><file name="LICENSE.html" hash="caf0a79ffb5e4719f9f4de286f253a61"/><file name="cron.sh" hash="617dbf0e9eb91ec8baaa7e1234c6f6b0"/><file name="install.php" hash="f45267f9b3631a174799d58937e29eea"/><file name="php.ini.sample" hash="d7412c2f78440a96fc2d9378ccf460cb"/><file name="get.php" hash="2072f9791a28361097d60a65e7ead28f"/><file name="RELEASE_NOTES.txt" hash="11e932f2c2547352bff0e3e665b528df"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="api.php" hash="9e834e439bc9df9f4882220ca75a098d"/></dir><dir name="errors"><file name="404.php" hash="aa6c78b49f03ab2f07eb84f09f684179"/><file name="503.php" hash="3d1d68b7fec09e74af1d64efe403da43"/><dir name="default"><file name="404.phtml" hash="62d5cef9c406ca826e423283bc62f444"/><file name="503.phtml" hash="db230c764b704c4af62b813690cb1ee3"/><dir name="css"><file name="styles.css" hash="464d6d4be9a45fcc1eceb78a1f034edd"/></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="5baa3d3be96002cb60cef726194f1b3a"/><file name="report.phtml" hash="df18b929d127264156422997a94ad9fc"/></dir><file name="design.xml" hash="25beca687aaf6eadbd17e55bb07e95ca"/><file name="local.xml.sample" hash="70a46b914532d52e06277aaaedc8a80a"/><file name="processor.php" hash="c342b0110b157b86c6eb19c11df549e5"/><file name="report.php" hash="8cd5c5c568c6f714a414b94721a24b74"/><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="72057440e875896b0a3677b6ca52200c"/><file name="compiler.php" hash="92b87b0a535b533f33245e5fc3302530"/><file name="indexer.php" hash="d5563294ad04b3e49a8b1cc976d296cc"/><file name="log.php" hash="5ea74aa4ff17e76420e974d854482b18"/><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></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="3151d17cd395cae6352130d876f3a889"/><file name="local.xml.template" hash="6783246b3fd3de53197343c9eb872974"/><file name="local.xml.additional" hash="b324082256340d40b1c8eb212c205a32"/></dir><dir name="modules"><file name="Mage_All.xml" hash="8fae5e1dbc1755187d49c402ab1f8db4"/><file name="Mage_Bundle.xml" hash="ba142e49eca2840609bce65472047682"/><file name="Mage_Api.xml" hash="7b52a2f87a5b2c728c5a980bffc23e79"/><file name="Mage_Downloadable.xml" hash="f2f4f095b6523f0925c26695d6c8c460"/><file name="Mage_Weee.xml" hash="d3a5a34948ce5a1de0d31fab9bd2588d"/><file name="Mage_Widget.xml" hash="f69122f896b856bc50e20e71deff9522"/><file name="Mage_Connect.xml" hash="76b0a201c90820552d3b28ecb8ab35a2"/><file name="Mage_ImportExport.xml" hash="bc07f70e551179a4bf01ca28d51d20b4"/><file name="Mage_PageCache.xml" hash="01d42d307c75df993b69e484902b91a0"/><file name="Mage_Persistent.xml" hash="38b45e494bb6d05ff46520b388029b4f"/><file name="Mage_Authorizenet.xml" hash="0046278f7877c7217d96cb9662960555"/><file name="Mage_Captcha.xml" hash="0bf2ab37b09826012db7a3b7ff66ad52"/><file name="Mage_CurrencySymbol.xml" hash="85198e0215733fbee822c993c753ee72"/><file name="Mage_Api2.xml" hash="7df6181984a40743c8b59a770541ad4f"/><file name="Mage_Oauth.xml" hash="d802275a5b4592297173af66e20efeed"/><file name="Mage_ConfigurableSwatches.xml" hash="7b7dc861ede72fee57ee11645c09011a"/></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Varien</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Lib_Google_Checkout</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1.12</min><max>1.51.1.12</max></package><package><name>Lib_Js_Mage</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Lib_Js_Prototype</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Lib_Phpseclib</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Mage_Locale_en_US</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Lib_Mage</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Lib_Magento</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Lib_Credis</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Lib_Pelago</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Lib_Unserialize</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package><package><name>Lib_IDNA2</name><channel>community</channel><min>1.9.3.6</min><max>1.9.3.6</max></package></required></dependencies>
18
  </package>