Comfirm_AlphaMail - Version 1.1.5

Version Notes

Release with Template initialization support.

Download this release

Release Info

Developer comfirm
Extension Comfirm_AlphaMail
Version 1.1.5
Comparing to
See all releases


Code changes from version 1.1.0 to 1.1.5

Files changed (23) hide show
  1. app/code/community/Comfirm/AlphaMail/Block/Adminhtml/System/Config/Wrapper.php +66 -2
  2. app/code/community/Comfirm/AlphaMail/Helper/Message.php +3 -29
  3. app/code/community/Comfirm/AlphaMail/Message/Customer/Sales/Order.php +19 -9
  4. app/code/community/Comfirm/AlphaMail/Model/Email/Template.php +8 -0
  5. app/code/community/Comfirm/AlphaMail/controllers/ProjectMappingController.php.bak +136 -0
  6. app/code/community/Comfirm/AlphaMail/data/templates/confirm-email/data.json +7 -0
  7. app/code/community/Comfirm/AlphaMail/data/templates/confirm-email/template.htm +150 -0
  8. app/code/community/Comfirm/AlphaMail/data/templates/confirm-email/template.txt +11 -0
  9. app/code/community/Comfirm/AlphaMail/data/templates/order-confirmation/data.json +7 -0
  10. app/code/community/Comfirm/AlphaMail/data/templates/order-confirmation/template.htm +546 -0
  11. app/code/community/Comfirm/AlphaMail/data/templates/order-confirmation/template.txt +34 -0
  12. app/code/community/Comfirm/AlphaMail/data/templates/order-update/data.json +7 -0
  13. app/code/community/Comfirm/AlphaMail/data/templates/order-update/template.htm +180 -0
  14. app/code/community/Comfirm/AlphaMail/data/templates/order-update/template.txt +10 -0
  15. app/code/community/Comfirm/AlphaMail/data/templates/reset-password/data.json +7 -0
  16. app/code/community/Comfirm/AlphaMail/data/templates/reset-password/template.htm +158 -0
  17. app/code/community/Comfirm/AlphaMail/data/templates/reset-password/template.txt +13 -0
  18. app/code/community/Comfirm/AlphaMail/data/templates/welcome/data.json +7 -0
  19. app/code/community/Comfirm/AlphaMail/data/templates/welcome/template.htm +358 -0
  20. app/code/community/Comfirm/AlphaMail/data/templates/welcome/template.txt +11 -0
  21. app/code/community/Comfirm/AlphaMail/etc/config.xml +1 -1
  22. app/code/community/Comfirm/AlphaMail/sql/alphamail_setup/{mysql4-install-1.1.0.php → mysql4-install-1.1.5.php} +0 -0
  23. package.xml +5 -5
app/code/community/Comfirm/AlphaMail/Block/Adminhtml/System/Config/Wrapper.php CHANGED
@@ -1,16 +1,80 @@
1
  <?php
2
 
 
 
 
3
  class Comfirm_AlphaMail_Block_Adminhtml_System_Config_Wrapper extends Mage_Adminhtml_Block_Template
4
  {
5
  public function __construct(){
6
  parent::__construct();
7
  $helper = Mage::helper('alphamail');
 
8
  if($this->isAlphaMailSection() && $helper->isActivated()){
9
  $session = Mage::getSingleton('adminhtml/session');
10
- $diagnostic_error = Mage::helper('alphamail/diagnostic')->getDiagnosticError();
 
 
 
11
 
12
  if($diagnostic_error == null){
13
- if($helper->getConfigKey("authentication/last_validated_token_checksum") != null){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  }
15
  }else{
16
  $session->addError("Error: " . $diagnostic_error);
1
  <?php
2
 
3
+ include_once(Mage::getBaseDir() . "/app/code/community/Comfirm/AlphaMail/libraries/comfirm.alphamail.client/projectservice.class.php");
4
+ include_once(Mage::getBaseDir() . "/app/code/community/Comfirm/AlphaMail/libraries/comfirm.alphamail.client/templateservice.class.php");
5
+
6
  class Comfirm_AlphaMail_Block_Adminhtml_System_Config_Wrapper extends Mage_Adminhtml_Block_Template
7
  {
8
  public function __construct(){
9
  parent::__construct();
10
  $helper = Mage::helper('alphamail');
11
+ $diagnostic_helper = Mage::helper('alphamail/diagnostic');
12
  if($this->isAlphaMailSection() && $helper->isActivated()){
13
  $session = Mage::getSingleton('adminhtml/session');
14
+ $diagnostic_error = $diagnostic_helper->getDiagnosticError();
15
+
16
+ $setup_path = Mage::getBaseDir('code') . '/community/Comfirm/AlphaMail/data/templates/';
17
+ $paths = scandir($setup_path);
18
 
19
  if($diagnostic_error == null){
20
+ $token_checksum = hash("sha256", $helper->getAuthenticationToken());
21
+ if($helper->getConfigKey("authentication/last_validated_token_checksum") != $token_checksum){
22
+ $helper->setConfigKey('authentication/last_validated_token_checksum', $token_checksum);
23
+
24
+ $created_projects = array();
25
+ $created_templates = array();
26
+
27
+ $server_url = $helper->getPrimaryServerUrl();
28
+ $token = $helper->getAuthenticationToken();
29
+
30
+ $project_service = AlphaMailProjectService::create()
31
+ ->setServiceUrl($server_url)
32
+ ->setApiToken($token);
33
+
34
+ $template_service = AlphaMailTemplateService::create()
35
+ ->setServiceUrl($server_url)
36
+ ->setApiToken($token);
37
+
38
+ foreach($template_service->getAll() as $template){
39
+ $created_templates[$template->name] = $template->id;
40
+ }
41
+
42
+ foreach($project_service->getAll() as $project){
43
+ $created_projects[$project->name] = $project->id;
44
+ }
45
+
46
+ foreach ($paths as $path) {
47
+ if ($path === '.' || $path === '..') continue;
48
+
49
+ $resource_path = $setup_path . '/' . $path;
50
+ if (is_dir($resource_path)) {
51
+ if(file_exists($resource_path . '/data.json')){
52
+ $data = json_decode(file_get_contents($resource_path . '/data.json'));
53
+
54
+ $template_html_version = @file_get_contents($resource_path . '/template.htm');
55
+ $template_txt_version = @file_get_contents($resource_path . '/template.txt');
56
+
57
+ if(!array_key_exists($data->name, $created_templates)){
58
+ $created_templates[$data->name] = $template_service->add(
59
+ new DetailedTemplate(
60
+ null, $data->name,
61
+ new TemplateContent(
62
+ $template_html_version,
63
+ $template_txt_version
64
+ )
65
+ )
66
+ );
67
+ }
68
+
69
+ if(!array_key_exists($data->name, $created_projects)){
70
+ $project_service->add(new DetailedProject(
71
+ null, $data->name, $data->subject, 0,
72
+ $created_templates[$data->name])
73
+ );
74
+ }
75
+ }
76
+ }
77
+ }
78
  }
79
  }else{
80
  $session->addError("Error: " . $diagnostic_error);
app/code/community/Comfirm/AlphaMail/Helper/Message.php CHANGED
@@ -169,28 +169,6 @@
169
  return $result;
170
  }
171
 
172
- /*public function getUniqueProductsFromCollection($product_lookup, $product_collection, $item_limit){
173
- $products = array();
174
-
175
- // Scan for related products
176
- foreach($product_collection as $product_item){
177
- $product = $product_item->getProduct();
178
- foreach($product->getRelatedProductCollection() as $related_product){
179
- // Only include products that aren't in the order
180
- if(!array_key_exist((int)$related_product->getId(), $products_lookup)){
181
- if(count($products) < $item_limit){
182
- $related_product->load();
183
- $products[] = $this->getProductData($related_product);
184
- }else{
185
- break 2;
186
- }
187
- }
188
- }
189
- }
190
-
191
- return $products;
192
- }*/
193
-
194
  public function getProductItemImages($product_item){
195
  $result = new stdClass();
196
 
@@ -220,13 +198,6 @@
220
  $product->load();
221
  $item = $this->getProductData($product);
222
 
223
- /*$item->product_id = (int)$product->getId();
224
- $item->name = $product->getName();
225
- $item->sku = $product->getSku();
226
- $item->url = $product->getProductUrl();
227
- $item->images = $this->getProductItemImages($product);
228
- $item->price = (float)$product->getPrice();*/
229
-
230
  $items[] = $item;
231
  }
232
 
@@ -252,6 +223,9 @@
252
  $base_currency_code, $current_currency_code);
253
  }
254
 
 
 
 
255
  return $item;
256
  }
257
  }
169
  return $result;
170
  }
171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  public function getProductItemImages($product_item){
173
  $result = new stdClass();
174
 
198
  $product->load();
199
  $item = $this->getProductData($product);
200
 
 
 
 
 
 
 
 
201
  $items[] = $item;
202
  }
203
 
223
  $base_currency_code, $current_currency_code);
224
  }
225
 
226
+ $currency = Mage::app()->getLocale()->currency($current_currency_code);
227
+ $item->price_formatted = $currency->toCurrency($item->price);
228
+
229
  return $item;
230
  }
231
  }
app/code/community/Comfirm/AlphaMail/Message/Customer/Sales/Order.php CHANGED
@@ -32,12 +32,15 @@
32
  $result->reorder_url = $this->getOrderActionUrl($order_id, "reorder");
33
  $result->print_url = $this->getOrderActionUrl($order_id, "print");
34
 
35
- $result->items = $this->getOrderItemsData($order->getItemsCollection());
 
 
 
36
 
37
  $result->billing_address = $this->_helper->getAddressData($order->getBillingAddress());
38
  $result->shipping_address = $this->_helper->getAddressData($order->getShippingAddress());
39
 
40
- $result->payment = $this->getOrderPaymentData($order);
41
 
42
  return $result;
43
  }
@@ -46,19 +49,19 @@
46
  return Mage::getUrl('sales/order/'.$action.'/', array('order_id' => $order_id));
47
  }
48
 
49
- private function getOrderPaymentData($order){
50
  $result = new stdClass();
51
 
52
  $payment = $order->getPayment();
53
  $result->payment_id = (int)$payment->getId();
54
  $result->method = $payment->getMethod();
55
- $result->currency = $this->getOrderCurrencyData($order);
56
- $result->amount = $this->getOrderAmountData($order);
57
 
58
  return $result;
59
  }
60
 
61
- private function getOrderItemsData($order_items){
62
  $items = array();
63
 
64
  foreach($order_items as $item){
@@ -73,6 +76,7 @@
73
  $result->images = $this->_helper->getProductItemImages($product);
74
 
75
  $result->price = (float)$item->getPrice();
 
76
 
77
  $items[] = $result;
78
  }
@@ -80,7 +84,7 @@
80
  return $items;
81
  }
82
 
83
- private function getOrderAmountData($order){
84
  $result = new stdClass();
85
 
86
  $result->tax = (float)$order->getTaxAmount();
@@ -89,14 +93,20 @@
89
  $result->sub_total = (float)$order->getSubtotal();
90
  $result->grand_total = (float)$order->getGrandTotal();
91
 
 
 
 
 
 
 
92
  return $result;
93
  }
94
 
95
- private function getOrderCurrencyData($order){
96
  $result = new stdClass();
97
 
98
  $result->code = $currency_code = $order->getOrderCurrency()->getCode();
99
- $result->symbol = Mage::app()->getLocale()->currency($currency_code)->getSymbol();
100
 
101
  return $result;
102
  }
32
  $result->reorder_url = $this->getOrderActionUrl($order_id, "reorder");
33
  $result->print_url = $this->getOrderActionUrl($order_id, "print");
34
 
35
+ $currency_code = $order->getOrderCurrency()->getCode();
36
+ $currency = Mage::app()->getLocale()->currency($currency_code);
37
+
38
+ $result->items = $this->getOrderItemsData($order->getItemsCollection(), $currency);
39
 
40
  $result->billing_address = $this->_helper->getAddressData($order->getBillingAddress());
41
  $result->shipping_address = $this->_helper->getAddressData($order->getShippingAddress());
42
 
43
+ $result->payment = $this->getOrderPaymentData($order, $currency);
44
 
45
  return $result;
46
  }
49
  return Mage::getUrl('sales/order/'.$action.'/', array('order_id' => $order_id));
50
  }
51
 
52
+ private function getOrderPaymentData($order, $currency){
53
  $result = new stdClass();
54
 
55
  $payment = $order->getPayment();
56
  $result->payment_id = (int)$payment->getId();
57
  $result->method = $payment->getMethod();
58
+ $result->currency = $this->getOrderCurrencyData($order, $currency);
59
+ $result->amount = $this->getOrderAmountData($order, $currency);
60
 
61
  return $result;
62
  }
63
 
64
+ private function getOrderItemsData($order_items, $currency){
65
  $items = array();
66
 
67
  foreach($order_items as $item){
76
  $result->images = $this->_helper->getProductItemImages($product);
77
 
78
  $result->price = (float)$item->getPrice();
79
+ $result->price_formatted = $currency->toCurrency($result->price);
80
 
81
  $items[] = $result;
82
  }
84
  return $items;
85
  }
86
 
87
+ private function getOrderAmountData($order, $currency){
88
  $result = new stdClass();
89
 
90
  $result->tax = (float)$order->getTaxAmount();
93
  $result->sub_total = (float)$order->getSubtotal();
94
  $result->grand_total = (float)$order->getGrandTotal();
95
 
96
+ $result->tax_formatted = $currency->toCurrency($result->tax);
97
+ $result->shipping_formatted = $currency->toCurrency($result->shipping);
98
+ $result->discount_formatted = $currency->toCurrency($result->discount);
99
+ $result->sub_total_formatted = $currency->toCurrency($result->sub_total);
100
+ $result->grand_total_formatted = $currency->toCurrency($result->grand_total);
101
+
102
  return $result;
103
  }
104
 
105
+ private function getOrderCurrencyData($order, $currency){
106
  $result = new stdClass();
107
 
108
  $result->code = $currency_code = $order->getOrderCurrency()->getCode();
109
+ $result->symbol = $currency->getSymbol();
110
 
111
  return $result;
112
  }
app/code/community/Comfirm/AlphaMail/Model/Email/Template.php CHANGED
@@ -92,6 +92,9 @@
92
  ->setApiToken($token);
93
 
94
  $response = $email_service->queue($payload);
 
 
 
95
  if($response->error_code == 0){
96
  $helper->logSentMessage($response->result);
97
  $helper->logDebug('Request successful. Message = \'' . $response->message . '\', Id = \'' . $response->result . '\'', $send_id);
@@ -104,26 +107,31 @@
104
  catch (AlphaMailValidationException $exception)
105
  {
106
  // Don't retry validation errors
 
107
  $is_handled = true;
108
  break;
109
  }
110
  catch (AlphaMailAuthorizationException $exception)
111
  {
112
  // Don't retry authorization errors
 
113
  $is_handled = true;
114
  break;
115
  }
116
  catch (AlphaMailInternalException $exception)
117
  {
118
  // Retry internal errors..
 
119
  }
120
  catch (AlphaMailServiceException $exception)
121
  {
122
  // Retry service exception..
 
123
  }
124
  catch(Exeption $exception)
125
  {
126
  // Retry other errors..
 
127
  }
128
  }
129
  }
92
  ->setApiToken($token);
93
 
94
  $response = $email_service->queue($payload);
95
+
96
+ $helper->logDebug('Response = ' . json_encode($response));
97
+
98
  if($response->error_code == 0){
99
  $helper->logSentMessage($response->result);
100
  $helper->logDebug('Request successful. Message = \'' . $response->message . '\', Id = \'' . $response->result . '\'', $send_id);
107
  catch (AlphaMailValidationException $exception)
108
  {
109
  // Don't retry validation errors
110
+ $helper->logDebug('Validation error = ' . $exception->getMessage());
111
  $is_handled = true;
112
  break;
113
  }
114
  catch (AlphaMailAuthorizationException $exception)
115
  {
116
  // Don't retry authorization errors
117
+ $helper->logDebug('Authorization error = ' . $exception->getMessage());
118
  $is_handled = true;
119
  break;
120
  }
121
  catch (AlphaMailInternalException $exception)
122
  {
123
  // Retry internal errors..
124
+ $helper->logDebug('Internal error = ' . $exception->getMessage());
125
  }
126
  catch (AlphaMailServiceException $exception)
127
  {
128
  // Retry service exception..
129
+ $helper->logDebug('Service error = ' . $exception->getMessage());
130
  }
131
  catch(Exeption $exception)
132
  {
133
  // Retry other errors..
134
+ $helper->logDebug('Other error = ' . $exception->getMessage());
135
  }
136
  }
137
  }
app/code/community/Comfirm/AlphaMail/controllers/ProjectMappingController.php.bak ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ include_once(Mage::getBaseDir() . "/app/code/community/Comfirm/AlphaMail/libraries/comfirm.alphamail.client/projectservice.class.php");
4
+
5
+ class Comfirm_AlphaMail_ProjectMappingController extends Comfirm_AlphaMail_Controller_Abstract {
6
+
7
+ public function indexAction() {
8
+ try
9
+ {
10
+ $templates = array();
11
+ $this->loadLayout()->_setActiveMenu('system/tools');
12
+
13
+ $project_service = AlphaMailProjectService::create()
14
+ ->setServiceUrl($this->_getHelper()->getPrimaryServerUrl())
15
+ ->setApiToken($this->_getHelper()->getAuthenticationToken());
16
+
17
+ $projects = $project_service->getAll();
18
+ $email_templates = $this->_getHelper()->getDefaultCoreTemplates();
19
+ $project_mappings = Mage::getModel('alphamail/Project_Map')->getCollection();
20
+
21
+ foreach($email_templates as $template_id => $template){
22
+ $templates[$template_id] = array('title' => $template['label'], 'selected_id' => -1);
23
+ }
24
+
25
+ foreach($project_mappings as $project_map){
26
+ $project_map = $project_map->getData();
27
+ if(array_key_exists($project_map['template_name'], $templates)){
28
+ $am_project_id = (int)$project_map['am_project_id'];
29
+ if($am_project_id > 0){
30
+ $templates[$project_map['template_name']]['selected_id'] = $am_project_id;
31
+ }
32
+ }
33
+ }
34
+
35
+ $this->_initialAction('projectMapping', 'index', array(
36
+ 'templates' => $templates,
37
+ 'projects' => $projects
38
+ )
39
+ );
40
+ }
41
+ catch(AlphaMailValidationException $exception)
42
+ {
43
+ $this->_addErrorMessage("Validation error: " . $exception->getMessage());
44
+ }
45
+ catch(Exception $exception)
46
+ {
47
+ $this->_initialAction('projectMapping', 'index', null, array('error' => $exception->getMessage()));
48
+ }
49
+ }
50
+
51
+ public function saveAction() {
52
+ try
53
+ {
54
+ $changed_mappings = array();
55
+
56
+ $project_mappings = Mage::getModel('alphamail/Project_Map')->getCollection();
57
+ $template_mappings = $this->_getRequestTemplateMappings();
58
+
59
+ // Get all mappings that exist and have changed
60
+ foreach($project_mappings as $project_mapping){
61
+ $template_id = $project_mapping['template_name'];
62
+ if(array_key_exists($template_id, $template_mappings)){
63
+ $am_project_id = $template_mappings[$template_id];
64
+ if($am_project_id != (int)$template_mappings['am_project_id']){
65
+ $changed_mappings[$template_id] = array(
66
+ 'id' => (int)$project_mapping['project_map_id'],
67
+ 'am_project_id' => $am_project_id
68
+ );
69
+ }
70
+ }
71
+ }
72
+
73
+ // Get all new mappings that does not exist but has been changed
74
+ foreach($template_mappings as $template_id => $am_project_id){
75
+ if($am_project_id > 0 && !array_key_exists($template_id, $changed_mappings)){
76
+ $changed_mappings[$template_id] = array(
77
+ 'id' => -1,
78
+ 'am_project_id' => $am_project_id
79
+ );
80
+ }
81
+ }
82
+
83
+ foreach($changed_mappings as $template_id => $mapping_data){
84
+ $model = Mage::getModel('alphamail/Project_Map');
85
+
86
+ if($mapping_data['id'] > 0){
87
+ // Entity exists.. Update!
88
+ $model->load($mapping_data['id']);
89
+ }else{
90
+ // Entity does not exist.. Create!
91
+ $model->setTemplateName($template_id);
92
+ }
93
+
94
+ $model->setAmProjectId($mapping_data['am_project_id'])
95
+ ->save();
96
+ }
97
+ }
98
+ catch(AlphaMailValidationException $exception)
99
+ {
100
+ $this->_addErrorMessage("Validation error: " . $exception->getMessage());
101
+ }
102
+ catch(Exception $exception)
103
+ {
104
+ $this->_addErrorMessage("An error occurred: " . $exception->getMessage());
105
+ }
106
+
107
+ $this->_redirectReferer();
108
+ }
109
+
110
+ private function _getRequestTemplateMappings(){
111
+ $result = array();
112
+
113
+ foreach($this->getRequest()->getParams() as $key=>$value) {
114
+ if($this->_endsWith($key, '_project_id')){
115
+ $template_id = substr($key, 0, strlen($key)-11);
116
+ $result[$template_id] = (int)$value;
117
+ }
118
+ }
119
+
120
+ return $result;
121
+ }
122
+
123
+ private function _endsWith($haystack, $needle)
124
+ {
125
+ $length = strlen($needle);
126
+
127
+ if ($length == 0) {
128
+ return true;
129
+ }
130
+
131
+ $start = $length * -1; //negative
132
+ return (substr($haystack, $start) === $needle);
133
+ }
134
+ }
135
+
136
+ ?>
app/code/community/Comfirm/AlphaMail/data/templates/confirm-email/data.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ {
2
+ "version": 1.0,
3
+ "name": "Magento - Confirm Email",
4
+ "description": "Mail sent when a user signs up using double opt-in",
5
+ "subject": "Confirm your e-mail - <# payload.site.name #>",
6
+ "created": 1348267936
7
+ }
app/code/community/Comfirm/AlphaMail/data/templates/confirm-email/template.htm ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ </head>
4
+ <body bgcolor="#F5F5E9" style="background:#F5F5E9;-webkit-text-size-adjust:none;margin:0;padding:0;" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
5
+ <style>
6
+ #Wrapper {width:100%;background-color:#F5F5E9;}
7
+ </style>
8
+ <div id="Empty" style="margin:0;padding:0;">
9
+ <div id="Wrapper" style="margin:0;padding:0;">
10
+
11
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
12
+ <tr bgcolor="#F5F5E9">
13
+ <td height="25" width="614"></td>
14
+ </tr>
15
+ </table>
16
+
17
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
18
+ <tr bgcolor="#ffffff">
19
+ <td height="16" width="614">
20
+ <img src="http://cdn.comfirm.se/comfirm/magento/top.jpg" style="display:block" height="16" width="614">
21
+ </td>
22
+ </tr>
23
+ </table>
24
+
25
+ <table valign="top" cellpadding="0" cellspacing="0" width="614" align="center" border="0">
26
+ <tr bgcolor="#ffffff">
27
+ <td width="1" bgcolor="#f7f5e8"></td>
28
+ <td width="1" bgcolor="#f5f3e7"></td>
29
+ <td width="1" bgcolor="#f3f3e9"></td>
30
+ <td width="1" bgcolor="#f1f1e5"></td>
31
+ <td width="1" bgcolor="#eeefe1"></td>
32
+ <td width="1" bgcolor="#eaebdd"></td>
33
+ <td width="1" bgcolor="#e7e7df"></td>
34
+ <td width="600" bgcolor="#ffffff">
35
+
36
+ <table valign="top" cellpadding="0" cellspacing="0" width="600" align="center" border="0">
37
+ <tr bgcolor="#ffffff">
38
+ <td height="18" width="600"></td>
39
+ </tr>
40
+ </table>
41
+
42
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
43
+ <tr bgcolor="#ffffff">
44
+ <td height="40" width="23"></td>
45
+ <td height="40" valign="middle" width="243" align="left">
46
+ <a data-amid="5020195ecd2d2" href="<# payload.site.base_url #>" data-amalias="Big logotype"><img src="http://cdn.comfirm.se/comfirm/magento/logo.jpg" alt="Company" title="Company" style="display: block; " editable="true" height="26" width="243" border="0"></a>
47
+ </td>
48
+ <td height="40" valign="middle" width="334" align="left"></td>
49
+ </tr>
50
+ </table>
51
+
52
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
53
+ <tr bgcolor="#ffffff">
54
+ <td height="27" width="600"></td>
55
+ </tr>
56
+ </table>
57
+
58
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
59
+ <tr bgcolor="#ffffff">
60
+ <td width="23"></td>
61
+ <td valign="top" width="554" align="left">
62
+ <table cellpadding="0" cellspacing="0" width="554" align="center" bgcolor="#ffffff" border="0">
63
+ <tr>
64
+ <td width="554">
65
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #333B3E; line-height: 20px;"><b>Hi <# payload.customer.first_name #>!</b></font>
66
+ <br>
67
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;">Before you can start shopping you must confirm your e-mail address. Confirm your e-mail address by clicking the button below.</font>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td height="21" width="554"></td>
72
+ </tr>
73
+ <tr>
74
+ <td height="37" width="554">
75
+ <a data-amid="50203886c31f1" href="<# payload.confirmation.url #>" data-amalias="Confirm e-mail">
76
+ <img src="https://dl.dropbox.com/u/8866426/confirm-email.png" style="display: block; " editable="true" title="Confirm your e-mail" alt="Confirm your e-mail" height="37" width="138" border="0">
77
+ </a>
78
+ </td>
79
+ </tr>
80
+ <tr>
81
+ <td height="21" width="554"></td>
82
+ </tr>
83
+ <tr>
84
+ <td width="554">
85
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;">Best regards,<br>
86
+ <b><# payload.site.name#></b></font>
87
+ </td>
88
+ </tr>
89
+ </table>
90
+ </td>
91
+ <td width="23"></td>
92
+ </tr>
93
+ </table>
94
+
95
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
96
+ <tr bgcolor="#ffffff">
97
+ <td height="15" width="600"></td>
98
+ </tr>
99
+ </table>
100
+ </td>
101
+ <td width="1" bgcolor="#e7e7df"></td>
102
+ <td width="1" bgcolor="#eaebdd"></td>
103
+ <td width="1" bgcolor="#eeefe1"></td>
104
+ <td width="1" bgcolor="#f1f1e5"></td>
105
+ <td width="1" bgcolor="#f3f3e9"></td>
106
+ <td width="1" bgcolor="#f5f3e7"></td>
107
+ <td width="1" bgcolor="#f7f5e8"></td>
108
+ </tr>
109
+ </table>
110
+
111
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
112
+ <tr bgcolor="#ffffff">
113
+ <td height="16" width="614">
114
+ <img src="http://cdn.comfirm.se/comfirm/magento/bottom.jpg" style="display:block" height="16" width="614">
115
+ </td>
116
+ </tr>
117
+ </table>
118
+
119
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
120
+ <tr bgcolor="#F5F5E9">
121
+ <td height="10" width="614"></td>
122
+ </tr>
123
+ <tr bgcolor="#F5F5E9">
124
+ <td width="614">
125
+ <center>
126
+ <font style="font-family: sans-serif, Arial; font-size: 10px; color: #5E5E5E; line-height: 12px;">This message was meant for <# payload.customer.email #></font>
127
+ </center>
128
+ </td>
129
+ </tr>
130
+ <tr bgcolor="#F5F5E9">
131
+ <td height="10" width="614"></td>
132
+ </tr>
133
+ <tr bgcolor="#F5F5E9">
134
+ <td height="12" width="614">
135
+ <center>
136
+ <a data-amid="501fc039decd4" href="<# payload.site.base_url #>" data-amalias="Small logotype">
137
+ <img src="http://cdn.comfirm.se/comfirm/magento/logo_small.jpg" alt="<# payload.site.base_url #>" title="<# payload.site.base_url #>" style="display: block; " editable="true" height="12" width="120" border="0">
138
+ </a>
139
+ </center>
140
+ </td>
141
+ </tr>
142
+ <tr bgcolor="#F5F5E9">
143
+ <td height="27" width="614"></td>
144
+ </tr>
145
+ </table>
146
+
147
+ </div>
148
+ </div>
149
+ </body>
150
+ </html>
app/code/community/Comfirm/AlphaMail/data/templates/confirm-email/template.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ Hi <# payload.customer.first_name #>!
2
+
3
+ Before you can start shopping you must confirm your e-mail address. Confirm your e-mail address by clicking the button below.
4
+
5
+ <# payload.confirmation.url #>
6
+
7
+ Best regards,
8
+ <# payload.site.name #>
9
+
10
+
11
+ This message was meant for <# payload.customer.email #>
app/code/community/Comfirm/AlphaMail/data/templates/order-confirmation/data.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ {
2
+ "version": 1.0,
3
+ "name": "Magento - Order Confirmation",
4
+ "description": "Mail sent when a user creates a new order",
5
+ "subject": "New order from <# payload.site.name #> (#<# payload.order.order_real_id #>)",
6
+ "created": 1348267936
7
+ }
app/code/community/Comfirm/AlphaMail/data/templates/order-confirmation/template.htm ADDED
@@ -0,0 +1,546 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ </head>
4
+ <body bgcolor="#F5F5E9" style="background:#F5F5E9;-webkit-text-size-adjust:none;margin:0;padding:0;" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
5
+ <style>
6
+ #Wrapper {width:100%;background-color:#F5F5E9;}
7
+ </style>
8
+ <div id="Empty" style="margin:0;padding:0;">
9
+ <div id="Wrapper" style="margin:0;padding:0;">
10
+
11
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="614">
12
+ <tr bgcolor="#F5F5E9">
13
+ <td height="25" width="614"></td>
14
+ </tr>
15
+ </table>
16
+
17
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="614">
18
+ <tr bgcolor="#ffffff">
19
+ <td height="16" width="614">
20
+ <img src="http://cdn.comfirm.se/comfirm/magento/top.jpg" style="display:block" height="16" width="614">
21
+ </td>
22
+ </tr>
23
+ </table>
24
+
25
+ <table valign="top" align="center" border="0" cellpadding="0" cellspacing="0" width="614">
26
+ <tr bgcolor="#ffffff">
27
+ <td bgcolor="#f7f5e8" width="1"></td>
28
+ <td bgcolor="#f5f3e7" width="1"></td>
29
+ <td bgcolor="#f3f3e9" width="1"></td>
30
+ <td bgcolor="#f1f1e5" width="1"></td>
31
+ <td bgcolor="#eeefe1" width="1"></td>
32
+ <td bgcolor="#eaebdd" width="1"></td>
33
+ <td bgcolor="#e7e7df" width="1"></td>
34
+ <td bgcolor="#ffffff" width="600">
35
+
36
+ <table valign="top" align="center" border="0" cellpadding="0" cellspacing="0" width="600">
37
+ <tr bgcolor="#ffffff">
38
+ <td height="18" width="600"></td>
39
+ </tr>
40
+ </table>
41
+
42
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
43
+ <tr bgcolor="#ffffff">
44
+ <td height="40" width="23"></td>
45
+ <td align="left" height="40" valign="middle" width="243">
46
+ <a data-amid="5020195ecd2d2" href="<# payload.site.base_url #>" data-amalias="Big logotype"><img src="http://cdn.comfirm.se/comfirm/magento/logo.jpg" alt="Company" title="Company" style="display: block;" editable="true" border="0" height="26" width="243"></a>
47
+ </td>
48
+ <td align="left" height="40" valign="middle" width="334"></td>
49
+ </tr>
50
+ </table>
51
+
52
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
53
+ <tr bgcolor="#ffffff">
54
+ <td height="27" width="600"></td>
55
+ </tr>
56
+ </table>
57
+
58
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
59
+ <tr bgcolor="#ffffff">
60
+ <td width="23"></td>
61
+ <td align="left" valign="top" width="554">
62
+ <table align="center" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="554">
63
+ <tr>
64
+ <td width="554">
65
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #333B3E; line-height: 20px;"><b>Thanks for shopping with us!</b></font>
66
+ <br>
67
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;">We hope that you'll be pleased with your order. Below you'll find a confirmation of the things you bought.</font>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td height="21" width="554"></td>
72
+ </tr>
73
+ <tr>
74
+ <td width="554">
75
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;">Best regards,<br>
76
+ <b><# payload.site.name #></b></font>
77
+ </td>
78
+ </tr>
79
+ </table>
80
+ </td>
81
+ <td width="23"></td>
82
+ </tr>
83
+ </table>
84
+
85
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
86
+ <tr bgcolor="#ffffff">
87
+ <td height="27" width="600"></td>
88
+ </tr>
89
+ </table>
90
+
91
+ <table align="center" border="0" cellpadding="0" cellspacing="0" height="26" width="600">
92
+ <tr>
93
+ <td bgcolor="#ffffff" width="23"></td>
94
+ <td bgcolor="#1597cb" height="3" width="554"></td>
95
+ <td bgcolor="#ffffff" width="23"></td>
96
+ </tr>
97
+ <tr>
98
+ <td bgcolor="#ffffff" height="20" width="23"></td>
99
+ <td align="left" bgcolor="#1597cb" height="20" valign="top" width="554">
100
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #ffffff; line-height: 20px;"><b>&nbsp; You have ordered</b></font>
101
+ </td>
102
+ <td bgcolor="#ffffff" height="20" width="23"></td>
103
+ </tr>
104
+ <tr>
105
+ <td bgcolor="#ffffff" width="23"></td>
106
+ <td bgcolor="#1597cb" height="3" width="554"></td>
107
+ <td bgcolor="#ffffff" width="23"></td>
108
+ </tr>
109
+ </table>
110
+
111
+
112
+ <#
113
+ $i = 0
114
+ while (i < payload.order.items.length) {
115
+ #>
116
+
117
+ <table align="center" border="0" cellpadding="0" cellspacing="0" height="3" width="600">
118
+ <tr bgcolor="#ffffff">
119
+ <td height="3" width="23"></td>
120
+ <td bgcolor="#DFDFDF" width="1"></td>
121
+ <td width="552"></td>
122
+ <td bgcolor="#DFDFDF" width="1"></td>
123
+ <td width="23"></td>
124
+ </tr>
125
+ </table>
126
+
127
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
128
+ <tr bgcolor="#ffffff">
129
+ <td width="23"></td>
130
+ <td bgcolor="#DFDFDF" width="1"></td>
131
+ <td align="center" height="75" valign="middle" width="75">
132
+ <img src="<# payload.order.items[i].images.thumbnail #>" style="display:block;" height="75" width="75">
133
+ </td>
134
+ <td width="15"></td>
135
+ <td valign="middle" width="156">
136
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b><# payload.order.items[i].name #></b> (<a href="<# payload.order.items[i].url #>" data-amalias="Product ID" data-amid="50213df3d67a1" style="color: #009DDB; "><# payload.order.items[i].sku #></a>)</font>
137
+ </td>
138
+ <td width="15"></td>
139
+ <td align="right" width="150">
140
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><# payload.order.items[i].quantity #> á <# payload.order.items[i].price_formatted #></font>
141
+ </td>
142
+ <td width="15"></td>
143
+ <td align="right" width="80">
144
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b><# (payload.order.items[i].price * payload.order.items[i].quantity) " " payload.order.payment.currency.symbol #></b></font>
145
+ </td>
146
+ <td width="15"></td>
147
+ <td width="16">
148
+ <a href="http://www.facebook.com/sharer.php?u=<# urlencode%28payload.order.items[i].url%29 #>&amp;t=<# urlencode%28payload.order.items[i].name%29 #>" data-amid="50214572b36e1" data-amalias="Share on Facebook">
149
+ <img src="http://cdn.comfirm.se/comfirm/magento/fb.jpg" title="Share on Facebook" alt="Share on Facebook" style="display:block;" border="0" height="16" width="16">
150
+ </a>
151
+ </td>
152
+ <td width="15"></td>
153
+ <td bgcolor="#DFDFDF" width="1"></td>
154
+ <td width="23"></td>
155
+ </tr>
156
+ </table>
157
+
158
+ <table align="center" border="0" cellpadding="0" cellspacing="0" height="3" width="600">
159
+ <tr bgcolor="#ffffff">
160
+ <td height="3" width="23"></td>
161
+ <td bgcolor="#DFDFDF" width="1"></td>
162
+ <td width="552"></td>
163
+ <td bgcolor="#DFDFDF" width="1"></td>
164
+ <td width="23"></td>
165
+ </tr>
166
+ </table>
167
+
168
+ <#
169
+ $i = i + 1
170
+ }
171
+ #>
172
+
173
+
174
+ <table align="center" border="0" cellpadding="0" cellspacing="0" height="1" width="600">
175
+ <tr bgcolor="#ffffff" height="1">
176
+ <td height="1" width="23"></td>
177
+ <td bgcolor="#DFDFDF" height="1" width="554"></td>
178
+ <td height="1" width="23"></td>
179
+ </tr>
180
+ </table>
181
+
182
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
183
+ <tr bgcolor="#ffffff">
184
+ <td height="8" width="600"></td>
185
+ </tr>
186
+ </table>
187
+
188
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
189
+ <tr bgcolor="#ffffff">
190
+ <td width="23"></td>
191
+ <td align="left" valign="top" width="554">
192
+ <table align="center" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="554">
193
+ <tr>
194
+ <td align="right" width="450">
195
+ <font style="font-family: sans-serif,Arial; font-size: 14px; color: #333B3E; line-height: 20px;">Sub amount</font>
196
+ </td>
197
+ <td align="right" width="204">
198
+ <font style="font-family: sans-serif,Arial; font-size: 14px; color: #333B3E; line-height: 20px;"><# payload.order.payment.amount.sub_total_formatted #></font>
199
+ </td>
200
+ </tr>
201
+ <tr>
202
+ <td align="right" width="450">
203
+ <font style="font-family: sans-serif,Arial; font-size: 14px; color: #333B3E; line-height: 20px;">Shipping</font>
204
+ </td>
205
+ <td align="right" width="204">
206
+ <font style="font-family: sans-serif,Arial; font-size: 14px; color: #333B3E; line-height: 20px;"><# payload.order.payment.amount.shipping_formatted #></font>
207
+ </td>
208
+ </tr>
209
+ <tr>
210
+ <td align="right" width="450">
211
+ <font style="font-family: sans-serif,Arial; font-size: 14px; color: #333B3E; line-height: 20px;">Tax</font>
212
+ </td>
213
+ <td align="right" width="204">
214
+ <font style="font-family: sans-serif,Arial; font-size: 14px; color: #333B3E; line-height: 20px;"><# payload.order.payment.amount.tax_formatted #></font>
215
+ </td>
216
+ </tr>
217
+ <tr>
218
+ <td align="right" width="450">
219
+ <font style="font-family: sans-serif,Arial; font-size: 16px; color: #333B3E; line-height: 20px;"><b>Grand total</b></font>
220
+ </td>
221
+ <td align="right" width="204">
222
+ <font style="font-family: sans-serif,Arial; font-size: 16px; color: #333B3E; line-height: 20px;"><b><# payload.order.payment.amount.grand_total_formatted #></b></font>
223
+ </td>
224
+ </tr>
225
+ </table>
226
+ </td>
227
+ <td width="23"></td>
228
+ </tr>
229
+ </table>
230
+
231
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
232
+ <tr bgcolor="#ffffff">
233
+ <td height="27" width="600"></td>
234
+ </tr>
235
+ </table>
236
+
237
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
238
+ <tr bgcolor="#ffffff">
239
+ <td width="23"></td>
240
+ <td align="left" valign="top" width="554">
241
+ <table align="center" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="554">
242
+ <tr>
243
+ <td width="554">
244
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #333B3E; line-height: 20px;"><b>Will be delivered to</b></font>
245
+ </td>
246
+ </tr>
247
+ </table>
248
+ </td>
249
+ <td width="23"></td>
250
+ </tr>
251
+ </table>
252
+
253
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
254
+ <tr bgcolor="#ffffff">
255
+ <td height="10" width="600"></td>
256
+ </tr>
257
+ </table>
258
+
259
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
260
+ <tr bgcolor="#ffffff">
261
+ <td width="23"></td>
262
+ <td align="left" valign="top" width="554">
263
+ <table align="center" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="554">
264
+ <tr>
265
+ <td width="270">
266
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b>Namn:</b> <# payload.order.shipping_address.name #></font>
267
+ </td>
268
+ <td width="14"></td>
269
+ <td width="270">
270
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b>Address:</b> <# payload.order.shipping_address.street[0] #></font>
271
+ </td>
272
+ </tr>
273
+ <tr>
274
+ <td width="270">
275
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b>Postal code:</b> <# payload.order.shipping_address.region.postal_code #></font>
276
+ </td>
277
+ <td width="14"></td>
278
+ <td width="270">
279
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b>City:</b> <# payload.order.shipping_address.region.city #></font>
280
+ </td>
281
+ </tr>
282
+ </table>
283
+ </td>
284
+ <td width="23"></td>
285
+ </tr>
286
+ </table>
287
+
288
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
289
+ <tr bgcolor="#ffffff">
290
+ <td height="27" width="600"></td>
291
+ </tr>
292
+ </table>
293
+
294
+ <table align="center" border="0" cellpadding="0" cellspacing="0" height="26" width="600">
295
+ <tr>
296
+ <td bgcolor="#ffffff" width="23"></td>
297
+ <td bgcolor="#1597cb" height="3" width="554"></td>
298
+ <td bgcolor="#ffffff" width="23"></td>
299
+ </tr>
300
+ <tr>
301
+ <td bgcolor="#ffffff" height="20" width="23"></td>
302
+ <td align="left" bgcolor="#1597cb" height="20" valign="top" width="554">
303
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #ffffff; line-height: 20px;"><b>&nbsp; Our top selling products </b></font>
304
+ </td>
305
+ <td bgcolor="#ffffff" height="20" width="23"></td>
306
+ </tr>
307
+ <tr>
308
+ <td bgcolor="#ffffff" width="23"></td>
309
+ <td bgcolor="#1597cb" height="3" width="554"></td>
310
+ <td bgcolor="#ffffff" width="23"></td>
311
+ </tr>
312
+ </table>
313
+
314
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
315
+ <tr bgcolor="#ffffff">
316
+ <td width="23"></td>
317
+ <td bgcolor="#DFDFDF" width="1"></td>
318
+ <td width="15"></td>
319
+ <td align="center" height="15" valign="top" width="153"></td>
320
+ <td width="15"></td>
321
+ <td bgcolor="#DFDFDF" width="1"></td>
322
+ <td width="15"></td>
323
+ <td align="center" height="15" valign="top" width="153"></td>
324
+ <td width="15"></td>
325
+ <td bgcolor="#DFDFDF" width="1"></td>
326
+ <td width="15"></td>
327
+ <td align="center" height="15" valign="top" width="153"></td>
328
+ <td width="16"></td>
329
+ <td bgcolor="#DFDFDF" width="1"></td>
330
+ <td width="23"></td>
331
+ </tr>
332
+ <tr bgcolor="#ffffff">
333
+ <td width="23"></td>
334
+ <td bgcolor="#DFDFDF" width="1"></td>
335
+ <td width="15"></td>
336
+ <td align="center" height="77" valign="top" width="153">
337
+ <img src="<# payload.recommendations.topsellers[0].images.small #>" style="display: block;" height="77" width="88">
338
+ </td>
339
+ <td width="15"></td>
340
+ <td bgcolor="#DFDFDF" width="1"></td>
341
+ <td width="15"></td>
342
+ <td align="center" height="77" valign="top" width="153">
343
+ <img src="<# payload.recommendations.topsellers[1].images.small #>" style="display: block;" height="77" width="88">
344
+ </td>
345
+ <td width="15"></td>
346
+ <td bgcolor="#DFDFDF" width="1"></td>
347
+ <td width="15"></td>
348
+ <td align="center" height="77" valign="top" width="153">
349
+ <img src="<# payload.recommendations.topsellers[2].images.small #>" style="display: block;" height="77" width="88">
350
+ </td>
351
+ <td width="16"></td>
352
+ <td bgcolor="#DFDFDF" width="1"></td>
353
+ <td width="23"></td>
354
+ </tr>
355
+ <tr bgcolor="#ffffff">
356
+ <td width="23"></td>
357
+ <td bgcolor="#DFDFDF" width="1"></td>
358
+ <td width="15"></td>
359
+ <td align="center" height="15" valign="top" width="153"></td>
360
+ <td width="15"></td>
361
+ <td bgcolor="#DFDFDF" width="1"></td>
362
+ <td width="15"></td>
363
+ <td align="center" height="15" valign="top" width="153"></td>
364
+ <td width="15"></td>
365
+ <td bgcolor="#DFDFDF" width="1"></td>
366
+ <td width="15"></td>
367
+ <td align="center" height="15" valign="top" width="153"></td>
368
+ <td width="16"></td>
369
+ <td bgcolor="#DFDFDF" width="1"></td>
370
+ <td width="23"></td>
371
+ </tr>
372
+ <tr bgcolor="#ffffff">
373
+ <td width="23"></td>
374
+ <td bgcolor="#DFDFDF" width="1"></td>
375
+ <td width="15"></td>
376
+ <td align="center" valign="top" width="153">
377
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;">
378
+ <a data-amid="502d01d219a75" href="<# payload.recommendations.topsellers[0].url #>" data-amalias="Product 1" style="color:#009DDB;"><b><# payload.recommendations.topsellers[0].name #></b></a>
379
+ </font>
380
+ </td>
381
+ <td width="15"></td>
382
+ <td bgcolor="#DFDFDF" width="1"></td>
383
+ <td width="15"></td>
384
+ <td align="center" valign="top" width="153">
385
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;">
386
+ <a data-amid="502d01d21c186" href="<# payload.recommendations.topsellers[1].url #>" data-amalias="Product 2" style="color:#009DDB;"><b><# payload.recommendations.topsellers[1].name #></b></a>
387
+ </font>
388
+ </td>
389
+ <td width="15"></td>
390
+ <td bgcolor="#DFDFDF" width="1"></td>
391
+ <td width="15"></td>
392
+ <td align="center" valign="top" width="153">
393
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;">
394
+ <a data-amid="502d01d21e893" href="<# payload.recommendations.topsellers[2].url #>" data-amalias="Product 3" style="color:#009DDB;"><b><# payload.recommendations.topsellers[2].name #></b></a>
395
+ </font>
396
+ </td>
397
+ <td width="16"></td>
398
+ <td bgcolor="#DFDFDF" width="1"></td>
399
+ <td width="23"></td>
400
+ </tr>
401
+ <tr bgcolor="#ffffff">
402
+ <td width="23"></td>
403
+ <td bgcolor="#DFDFDF" width="1"></td>
404
+ <td width="15"></td>
405
+ <td align="center" valign="top" width="153">
406
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b><# payload.recommendations.topsellers[0].price_formatted #></b></font>
407
+ </td>
408
+ <td width="15"></td>
409
+ <td bgcolor="#DFDFDF" width="1"></td>
410
+ <td width="15"></td>
411
+ <td align="center" valign="top" width="153">
412
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b><# payload.recommendations.topsellers[1].price_formatted #></b></font>
413
+ </td>
414
+ <td width="15"></td>
415
+ <td bgcolor="#DFDFDF" width="1"></td>
416
+ <td width="15"></td>
417
+ <td align="center" valign="top" width="153">
418
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b><# payload.recommendations.topsellers[2].price_formatted #></b></font>
419
+ </td>
420
+ <td width="16"></td>
421
+ <td bgcolor="#DFDFDF" width="1"></td>
422
+ <td width="23"></td>
423
+ </tr>
424
+ <tr bgcolor="#ffffff">
425
+ <td width="23"></td>
426
+ <td bgcolor="#DFDFDF" width="1"></td>
427
+ <td width="15"></td>
428
+ <td align="center" height="15" valign="top" width="153"></td>
429
+ <td width="15"></td>
430
+ <td bgcolor="#DFDFDF" width="1"></td>
431
+ <td width="15"></td>
432
+ <td align="center" height="15" valign="top" width="153"></td>
433
+ <td width="15"></td>
434
+ <td bgcolor="#DFDFDF" width="1"></td>
435
+ <td width="15"></td>
436
+ <td align="center" height="15" valign="top" width="153"></td>
437
+ <td width="16"></td>
438
+ <td bgcolor="#DFDFDF" width="1"></td>
439
+ <td width="23"></td>
440
+ </tr>
441
+ </table>
442
+
443
+ <table align="center" border="0" cellpadding="0" cellspacing="0" height="1" width="600">
444
+ <tr bgcolor="#ffffff" height="1">
445
+ <td height="1" width="23"></td>
446
+ <td bgcolor="#DFDFDF" height="1" width="554"></td>
447
+ <td height="1" width="23"></td>
448
+ </tr>
449
+ </table>
450
+
451
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
452
+ <tr bgcolor="#ffffff">
453
+ <td height="15" width="600"></td>
454
+ </tr>
455
+ </table>
456
+
457
+ <table align="center" border="0" cellpadding="0" cellspacing="0" height="74" width="600">
458
+ <tr>
459
+ <td bgcolor="#ffffff" width="23"></td>
460
+ <td bgcolor="#1597cb" height="15" width="554"></td>
461
+ <td bgcolor="#ffffff" width="23"></td>
462
+ </tr>
463
+ <tr>
464
+ <td bgcolor="#ffffff" height="20" width="23"></td>
465
+ <td align="left" bgcolor="#1597cb" height="20" valign="top" width="554">
466
+ <table align="center" border="0" cellpadding="0" cellspacing="0" height="74" width="554">
467
+ <tr>
468
+ <td width="23"></td>
469
+ <td width="80">
470
+ <a data-amid="50215886817bd" href="http://www.facebook.com/comfirm" data-amalias="Like us on Facebook - Image">
471
+ <img src="http://cdn.comfirm.se/comfirm/magento/like.jpg" style="display: block;" editable="true" title="Like us on Facebook!" alt="Gilla us on Facebook!" border="0" height="74" width="80">
472
+ </a>
473
+ </td>
474
+ <td valign="middle" width="451">
475
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #ffffff; line-height: 20px;"><a data-amid="5021bac7af38a" data-amalias="Like on Facebook - Text" href="http://www.facebook.com/comfirm">
476
+ <b>&nbsp; Like us on Facebook and get a coupon code!</b>
477
+ </a></font>
478
+ </td>
479
+ </tr>
480
+ </table>
481
+ </td>
482
+ <td bgcolor="#ffffff" height="20" width="23"></td>
483
+ </tr>
484
+ <tr>
485
+ <td bgcolor="#ffffff" width="23"></td>
486
+ <td bgcolor="#1597cb" height="15" width="554"></td>
487
+ <td bgcolor="#ffffff" width="23"></td>
488
+ </tr>
489
+ </table>
490
+
491
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="600">
492
+ <tr bgcolor="#ffffff">
493
+ <td height="15" width="600"></td>
494
+ </tr>
495
+ </table>
496
+ </td>
497
+ <td bgcolor="#e7e7df" width="1"></td>
498
+ <td bgcolor="#eaebdd" width="1"></td>
499
+ <td bgcolor="#eeefe1" width="1"></td>
500
+ <td bgcolor="#f1f1e5" width="1"></td>
501
+ <td bgcolor="#f3f3e9" width="1"></td>
502
+ <td bgcolor="#f5f3e7" width="1"></td>
503
+ <td bgcolor="#f7f5e8" width="1"></td>
504
+ </tr>
505
+ </table>
506
+
507
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="614">
508
+ <tr bgcolor="#ffffff">
509
+ <td height="16" width="614">
510
+ <img src="http://cdn.comfirm.se/comfirm/magento/bottom.jpg" style="display:block" height="16" width="614">
511
+ </td>
512
+ </tr>
513
+ </table>
514
+
515
+ <table align="center" border="0" cellpadding="0" cellspacing="0" width="614">
516
+ <tr bgcolor="#F5F5E9">
517
+ <td height="10" width="614"></td>
518
+ </tr>
519
+ <tr bgcolor="#F5F5E9">
520
+ <td width="614">
521
+ <center>
522
+ <font style="font-family: sans-serif, Arial; font-size: 10px; color: #5E5E5E; line-height: 12px;">This message was meant for <# payload.customer.email #></font>
523
+ </center>
524
+ </td>
525
+ </tr>
526
+ <tr bgcolor="#F5F5E9">
527
+ <td height="10" width="614"></td>
528
+ </tr>
529
+ <tr bgcolor="#F5F5E9">
530
+ <td height="12" width="614">
531
+ <center>
532
+ <a data-amid="501fc039decd4" href="<# payload.site.base_url #>" data-amalias="Liten logga">
533
+ <img src="http://cdn.comfirm.se/comfirm/magento/logo_small.jpg" alt="<# payload.site.base_url #>" title="<# payload.site.base_url #>" style="display: block;" editable="true" border="0" height="12" width="120">
534
+ </a>
535
+ </center>
536
+ </td>
537
+ </tr>
538
+ <tr bgcolor="#F5F5E9">
539
+ <td height="27" width="614"></td>
540
+ </tr>
541
+ </table>
542
+
543
+ </div>
544
+ </div>
545
+ </body>
546
+ </html>
app/code/community/Comfirm/AlphaMail/data/templates/order-confirmation/template.txt ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Thanks for shopping with us!
2
+
3
+ We hope that you'll be pleased with your order. Below you'll find a confirmation of the things you bought.
4
+
5
+ Best regards,
6
+ <# payload.site.name #>
7
+
8
+ You have ordered
9
+ --------------------------------------------------------------------
10
+ <#
11
+ $i = 0
12
+ while (i < payload.order.items.length) {
13
+ " * " payload.order.items[i].name " (" payload.order.items[i].sku ") "
14
+ payload.order.items[i].quantity " á " payload.order.items[i].price_formatted
15
+ " " (payload.order.items[i].price * payload.order.items[i].quantity) " " payload.order.payment.currency.symbol
16
+ \n
17
+ $i = i + 1
18
+ }
19
+ #>
20
+ --------------------------------------------------------------------
21
+ Sub amount: <# payload.order.payment.amount.sub_total_formatted #>
22
+ Shipping: <# payload.order.payment.amount.shipping_formatted #>
23
+ Tax: <# payload.order.payment.amount.tax_formatted #>
24
+ Grand total: <# payload.order.payment.amount.grand_total_formatted #>
25
+
26
+ Will be delivered to:
27
+ Name: <# payload.order.shipping_address.name #>
28
+
29
+ Address:
30
+ <# payload.order.shipping_address.street[0] #>
31
+ <# payload.order.shipping_address.region.postal_code " " payload.order.shipping_address.region.city #>
32
+
33
+
34
+ This message was meant for <# payload.customer.email #>
app/code/community/Comfirm/AlphaMail/data/templates/order-update/data.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ {
2
+ "version": 1.0,
3
+ "name": "Magento - Order update",
4
+ "description": "Mail sent when an order is updated",
5
+ "subject": "Order #<# payload.order.order_real_id #> from <# payload.site.name #> has been updated",
6
+ "created": 1348267936
7
+ }
app/code/community/Comfirm/AlphaMail/data/templates/order-update/template.htm ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ </head>
4
+ <body bgcolor="#F5F5E9" style="background:#F5F5E9;-webkit-text-size-adjust:none;margin:0;padding:0;" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
5
+ <style>
6
+ #Wrapper {width:100%;background-color:#F5F5E9;}
7
+ </style>
8
+ <div id="Empty" style="margin:0;padding:0;">
9
+ <div id="Wrapper" style="margin:0;padding:0;">
10
+
11
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
12
+ <tr bgcolor="#F5F5E9">
13
+ <td height="25" width="614"></td>
14
+ </tr>
15
+ </table>
16
+
17
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
18
+ <tr bgcolor="#ffffff">
19
+ <td height="16" width="614">
20
+ <img src="http://cdn.comfirm.se/comfirm/magento/top.jpg" style="display:block" height="16" width="614">
21
+ </td>
22
+ </tr>
23
+ </table>
24
+
25
+ <table valign="top" cellpadding="0" cellspacing="0" width="614" align="center" border="0">
26
+ <tr bgcolor="#ffffff">
27
+ <td width="1" bgcolor="#f7f5e8"></td>
28
+ <td width="1" bgcolor="#f5f3e7"></td>
29
+ <td width="1" bgcolor="#f3f3e9"></td>
30
+ <td width="1" bgcolor="#f1f1e5"></td>
31
+ <td width="1" bgcolor="#eeefe1"></td>
32
+ <td width="1" bgcolor="#eaebdd"></td>
33
+ <td width="1" bgcolor="#e7e7df"></td>
34
+ <td width="600" bgcolor="#ffffff">
35
+
36
+ <table valign="top" cellpadding="0" cellspacing="0" width="600" align="center" border="0">
37
+ <tr bgcolor="#ffffff">
38
+ <td height="18" width="600"></td>
39
+ </tr>
40
+ </table>
41
+
42
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
43
+ <tr bgcolor="#ffffff">
44
+ <td height="40" width="23"></td>
45
+ <td height="40" valign="middle" width="243" align="left">
46
+ <a data-amid="5020195ecd2d2" href="<# payload.site.base_url #>" data-amalias="Stor logga"><img src="http://cdn.comfirm.se/comfirm/magento/logo.jpg" alt="Company" title="Company" style="display: block; " editable="true" height="26" width="243" border="0"></a>
47
+ </td>
48
+ <td height="40" valign="middle" width="334" align="left"></td>
49
+ </tr>
50
+ </table>
51
+
52
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
53
+ <tr bgcolor="#ffffff">
54
+ <td height="27" width="600"></td>
55
+ </tr>
56
+ </table>
57
+
58
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
59
+ <tr bgcolor="#ffffff">
60
+ <td width="23"></td>
61
+ <td valign="top" width="554" align="left">
62
+ <table cellpadding="0" cellspacing="0" width="554" align="center" bgcolor="#ffffff" border="0">
63
+ <tr>
64
+ <td width="554">
65
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #333B3E; line-height: 20px;"><span><b>Hi! Your order #<# payload.order.order_real_id #> has been updated:</b></span></font><br>
66
+ <br>
67
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;"><# payload.comment.text #><span></span></font>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td height="21" width="554"></td>
72
+ </tr>
73
+ <tr>
74
+ <td width="554">
75
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;">Best regards,<br>
76
+ <b><# payload.admin.first_name#></b></font>
77
+ </td>
78
+ </tr>
79
+ </table>
80
+ </td>
81
+ <td width="23"></td>
82
+ </tr>
83
+ </table>
84
+
85
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
86
+ <tr bgcolor="#ffffff">
87
+ <td height="27" width="600"></td>
88
+ </tr>
89
+ </table>
90
+
91
+ <table cellpadding="0" cellspacing="0" height="74" width="600" align="center" border="0">
92
+ <tr>
93
+ <td width="23" bgcolor="#ffffff"></td>
94
+ <td height="15" width="554" bgcolor="#009ddb"></td>
95
+ <td width="23" bgcolor="#ffffff"></td>
96
+ </tr>
97
+ <tr>
98
+ <td height="20" width="23" bgcolor="#ffffff"></td>
99
+ <td height="20" valign="top" width="554" align="left" bgcolor="#009ddb">
100
+ <table cellpadding="0" cellspacing="0" height="74" width="554" align="center" border="0">
101
+ <tr>
102
+ <td width="23"></td>
103
+ <td width="80">
104
+ <a data-amid="50215886817bd" href="http://www.facebook.com/comfirm" data-amalias="Like us on Facebook - Image">
105
+ <img src="http://cdn.comfirm.se/comfirm/magento/like.jpg" style="display: block; " editable="true" title="Like us on Facebook!" alt="Like us on Facebook!" height="74" width="80" border="0">
106
+ </a>
107
+ </td>
108
+ <td valign="middle" width="451">
109
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #ffffff; line-height: 20px;"><a href="http://www.facebook.com/comfirm" data-amalias="Like us on Facebook - Text" data-amid="5021bac7af38a" style="font-family: sans-serif, Arial; font-size: 18px; color: rgb(255, 255, 255); line-height: 20px; text-decoration: none; ">
110
+ <b>&nbsp; Like us on Facebook</b>
111
+ </a></font>
112
+ </td>
113
+ </tr>
114
+ </table>
115
+ </td>
116
+ <td height="20" width="23" bgcolor="#ffffff"></td>
117
+ </tr>
118
+ <tr>
119
+ <td width="23" bgcolor="#ffffff"></td>
120
+ <td height="15" width="554" bgcolor="#009ddb"></td>
121
+ <td width="23" bgcolor="#ffffff"></td>
122
+ </tr>
123
+ </table>
124
+
125
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
126
+ <tr bgcolor="#ffffff">
127
+ <td height="15" width="600"></td>
128
+ </tr>
129
+ </table>
130
+ </td>
131
+ <td width="1" bgcolor="#e7e7df"></td>
132
+ <td width="1" bgcolor="#eaebdd"></td>
133
+ <td width="1" bgcolor="#eeefe1"></td>
134
+ <td width="1" bgcolor="#f1f1e5"></td>
135
+ <td width="1" bgcolor="#f3f3e9"></td>
136
+ <td width="1" bgcolor="#f5f3e7"></td>
137
+ <td width="1" bgcolor="#f7f5e8"></td>
138
+ </tr>
139
+ </table>
140
+
141
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
142
+ <tr bgcolor="#ffffff">
143
+ <td height="16" width="614">
144
+ <img src="http://cdn.comfirm.se/comfirm/magento/bottom.jpg" style="display:block" height="16" width="614">
145
+ </td>
146
+ </tr>
147
+ </table>
148
+
149
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
150
+ <tr bgcolor="#F5F5E9">
151
+ <td height="10" width="614"></td>
152
+ </tr>
153
+ <tr bgcolor="#F5F5E9">
154
+ <td width="614">
155
+ <center>
156
+ <font style="font-family: sans-serif, Arial; font-size: 10px; color: #5E5E5E; line-height: 12px;">This message was meant for <# payload.customer.email #></font>
157
+ </center>
158
+ </td>
159
+ </tr>
160
+ <tr bgcolor="#F5F5E9">
161
+ <td height="10" width="614"></td>
162
+ </tr>
163
+ <tr bgcolor="#F5F5E9">
164
+ <td height="12" width="614">
165
+ <center>
166
+ <a data-amid="501fc039decd4" href="<# payload.site.base_url #>" data-amalias="Liten logga">
167
+ <img src="http://cdn.comfirm.se/comfirm/magento/logo_small.jpg" alt="<# payload.site.base_url #>" title="<# payload.site.base_url #>" style="display: block; " editable="true" height="12" width="120" border="0">
168
+ </a>
169
+ </center>
170
+ </td>
171
+ </tr>
172
+ <tr bgcolor="#F5F5E9">
173
+ <td height="27" width="614"></td>
174
+ </tr>
175
+ </table>
176
+
177
+ </div>
178
+ </div>
179
+ </body>
180
+ </html>
app/code/community/Comfirm/AlphaMail/data/templates/order-update/template.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ Hi!
2
+
3
+ Your order #<# payload.order.order_real_id #> has been updated:
4
+ <# payload.comment.text #>
5
+
6
+ Best regards,
7
+ <# payload.admin.first_name#>
8
+
9
+
10
+ This message was meant for <# payload.customer.email #>
app/code/community/Comfirm/AlphaMail/data/templates/reset-password/data.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ {
2
+ "version": 1.0,
3
+ "name": "Magento - Reset Password",
4
+ "description": "Mail sent when a user resets his password",
5
+ "subject": "Reset your password - <# payload.site.name #>",
6
+ "created": 1348267936
7
+ }
app/code/community/Comfirm/AlphaMail/data/templates/reset-password/template.htm ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ </head>
4
+ <body bgcolor="#F5F5E9" style="background:#F5F5E9;-webkit-text-size-adjust:none;margin:0;padding:0;" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
5
+ <style>
6
+ #Wrapper {width:100%;background-color:#F5F5E9;}
7
+ </style>
8
+ <div id="Empty" style="margin:0;padding:0;">
9
+ <div id="Wrapper" style="margin:0;padding:0;">
10
+
11
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
12
+ <tr bgcolor="#F5F5E9">
13
+ <td height="25" width="614"></td>
14
+ </tr>
15
+ </table>
16
+
17
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
18
+ <tr bgcolor="#ffffff">
19
+ <td height="16" width="614">
20
+ <img src="http://cdn.comfirm.se/comfirm/magento/top.jpg" style="display:block" height="16" width="614">
21
+ </td>
22
+ </tr>
23
+ </table>
24
+
25
+ <table valign="top" cellpadding="0" cellspacing="0" width="614" align="center" border="0">
26
+ <tr bgcolor="#ffffff">
27
+ <td width="1" bgcolor="#f7f5e8"></td>
28
+ <td width="1" bgcolor="#f5f3e7"></td>
29
+ <td width="1" bgcolor="#f3f3e9"></td>
30
+ <td width="1" bgcolor="#f1f1e5"></td>
31
+ <td width="1" bgcolor="#eeefe1"></td>
32
+ <td width="1" bgcolor="#eaebdd"></td>
33
+ <td width="1" bgcolor="#e7e7df"></td>
34
+ <td width="600" bgcolor="#ffffff">
35
+
36
+ <table valign="top" cellpadding="0" cellspacing="0" width="600" align="center" border="0">
37
+ <tr bgcolor="#ffffff">
38
+ <td height="18" width="600"></td>
39
+ </tr>
40
+ </table>
41
+
42
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
43
+ <tr bgcolor="#ffffff">
44
+ <td height="40" width="23"></td>
45
+ <td height="40" valign="middle" width="243" align="left">
46
+ <a data-amid="5020195ecd2d2" href="<# payload.site.base_url #>" data-amalias="Big logotype"><img src="http://cdn.comfirm.se/comfirm/magento/logo.jpg" alt="Company" title="Company" style="display: block; " editable="true" height="26" width="243" border="0"></a>
47
+ </td>
48
+ <td height="40" valign="middle" width="334" align="left"></td>
49
+ </tr>
50
+ </table>
51
+
52
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
53
+ <tr bgcolor="#ffffff">
54
+ <td height="27" width="600"></td>
55
+ </tr>
56
+ </table>
57
+
58
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
59
+ <tr bgcolor="#ffffff">
60
+ <td width="23"></td>
61
+ <td valign="top" width="554" align="left">
62
+ <table cellpadding="0" cellspacing="0" width="554" align="center" bgcolor="#ffffff" border="0">
63
+ <tr>
64
+ <td width="554">
65
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #333B3E; line-height: 20px;"><b>Hi <# payload.customer.first_name #>!</b></font>
66
+ <br>
67
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;">You have requested to reset your password. Click on the button to reset your password to a new one. Please ignore this message if you want to keep your existing password.</font>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td height="21" width="554"></td>
72
+ </tr>
73
+ <tr>
74
+ <td height="37" width="554">
75
+ <a data-amid="50203886c31f1" href="<# payload.reset_password.url #>" data-amalias="Reset your Password">
76
+ <img src="http://cdn.comfirm.se/comfirm/magento/new_passwd_btn.jpg" style="display: block; " editable="true" title="Reset your Password" alt="Reset your Password" height="37" width="154" border="0">
77
+ </a>
78
+ </td>
79
+ </tr>
80
+ <tr>
81
+ <td height="21" width="554"></td>
82
+ </tr>
83
+ <tr>
84
+ <td width="554">
85
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;"><b>Your username:</b> <# payload.customer.email #><br></font>
86
+ </td>
87
+ </tr>
88
+ <tr>
89
+ <td height="21" width="554"></td>
90
+ </tr>
91
+ <tr>
92
+ <td width="554">
93
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;">Best regards,<br>
94
+ <b><# payload.site.name #></b></font>
95
+ </td>
96
+ </tr>
97
+ </table>
98
+ </td>
99
+ <td width="23"></td>
100
+ </tr>
101
+ </table>
102
+
103
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
104
+ <tr bgcolor="#ffffff">
105
+ <td height="15" width="600"></td>
106
+ </tr>
107
+ </table>
108
+ </td>
109
+ <td width="1" bgcolor="#e7e7df"></td>
110
+ <td width="1" bgcolor="#eaebdd"></td>
111
+ <td width="1" bgcolor="#eeefe1"></td>
112
+ <td width="1" bgcolor="#f1f1e5"></td>
113
+ <td width="1" bgcolor="#f3f3e9"></td>
114
+ <td width="1" bgcolor="#f5f3e7"></td>
115
+ <td width="1" bgcolor="#f7f5e8"></td>
116
+ </tr>
117
+ </table>
118
+
119
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
120
+ <tr bgcolor="#ffffff">
121
+ <td height="16" width="614">
122
+ <img src="http://cdn.comfirm.se/comfirm/magento/bottom.jpg" style="display:block" height="16" width="614">
123
+ </td>
124
+ </tr>
125
+ </table>
126
+
127
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
128
+ <tr bgcolor="#F5F5E9">
129
+ <td height="10" width="614"></td>
130
+ </tr>
131
+ <tr bgcolor="#F5F5E9">
132
+ <td width="614">
133
+ <center>
134
+ <font style="font-family: sans-serif, Arial; font-size: 10px; color: #5E5E5E; line-height: 12px;">This message was meant for <# payload.customer.email #></font>
135
+ </center>
136
+ </td>
137
+ </tr>
138
+ <tr bgcolor="#F5F5E9">
139
+ <td height="10" width="614"></td>
140
+ </tr>
141
+ <tr bgcolor="#F5F5E9">
142
+ <td height="12" width="614">
143
+ <center>
144
+ <a data-amid="501fc039decd4" href="<# payload.site.base_url #>" data-amalias="Liten logga">
145
+ <img src="http://cdn.comfirm.se/comfirm/magento/logo_small.jpg" alt="<# payload.site.base_url #>" title="<# payload.site.base_url #>" style="display: block; " editable="true" height="12" width="120" border="0">
146
+ </a>
147
+ </center>
148
+ </td>
149
+ </tr>
150
+ <tr bgcolor="#F5F5E9">
151
+ <td height="27" width="614"></td>
152
+ </tr>
153
+ </table>
154
+
155
+ </div>
156
+ </div>
157
+ </body>
158
+ </html>
app/code/community/Comfirm/AlphaMail/data/templates/reset-password/template.txt ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Hi <# payload.customer.first_name #>!
2
+
3
+ You have requested to reset your password. Click on the button to reset your password to a new one. Please ignore this message if you want to keep your existing password.
4
+
5
+ <# payload.reset_password.url #>
6
+
7
+ Your username: <# payload.customer.email #>
8
+
9
+ Best regards,
10
+ <# payload.site.name #>
11
+
12
+
13
+ This message was meant for <# payload.customer.email #>
app/code/community/Comfirm/AlphaMail/data/templates/welcome/data.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ {
2
+ "version": 1.0,
3
+ "name": "Magento - Welcome",
4
+ "description": "Mail sent when a user signs up",
5
+ "subject": "Hi <# payload.customer.first_name #>! Welcome to <# payload.site.name #>!",
6
+ "created": 1348267936
7
+ }
app/code/community/Comfirm/AlphaMail/data/templates/welcome/template.htm ADDED
@@ -0,0 +1,358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ </head>
4
+ <body bgcolor="#F5F5E9" style="background:#F5F5E9;-webkit-text-size-adjust:none;margin:0;padding:0;" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
5
+ <style>
6
+ #Wrapper {width:100%;background-color:#F5F5E9;}
7
+ </style>
8
+ <div id="Empty" style="margin:0;padding:0;">
9
+ <div id="Wrapper" style="margin:0;padding:0;">
10
+
11
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
12
+ <tr bgcolor="#F5F5E9">
13
+ <td height="25" width="614"></td>
14
+ </tr>
15
+ </table>
16
+
17
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
18
+ <tr bgcolor="#ffffff">
19
+ <td height="16" width="614">
20
+ <img src="http://cdn.comfirm.se/comfirm/magento/top.jpg" style="display:block" height="16" width="614">
21
+ </td>
22
+ </tr>
23
+ </table>
24
+
25
+ <table valign="top" cellpadding="0" cellspacing="0" width="614" align="center" border="0">
26
+ <tr bgcolor="#ffffff">
27
+ <td width="1" bgcolor="#f7f5e8"></td>
28
+ <td width="1" bgcolor="#f5f3e7"></td>
29
+ <td width="1" bgcolor="#f3f3e9"></td>
30
+ <td width="1" bgcolor="#f1f1e5"></td>
31
+ <td width="1" bgcolor="#eeefe1"></td>
32
+ <td width="1" bgcolor="#eaebdd"></td>
33
+ <td width="1" bgcolor="#e7e7df"></td>
34
+ <td width="600" bgcolor="#ffffff">
35
+
36
+ <table valign="top" cellpadding="0" cellspacing="0" width="600" align="center" border="0">
37
+ <tr bgcolor="#ffffff">
38
+ <td height="18" width="600"></td>
39
+ </tr>
40
+ </table>
41
+
42
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
43
+ <tr bgcolor="#ffffff">
44
+ <td height="37" width="23"></td>
45
+ <td height="37" valign="middle" width="243" align="left">
46
+ <a data-amid="5020195ecd2d2" href="<# payload.site.base_url #>" data-amalias="Big logotype"><img src="http://cdn.comfirm.se/comfirm/magento/logo.jpg" alt="Company" title="Company" style="display: block; " editable="true" height="26" width="243" border="0"></a>
47
+ </td>
48
+ <td height="37" valign="middle" width="235" align="left"></td>
49
+ <td height="37" width="76">
50
+ <a data-amid="50201858620f4" href="<# payload.site.base_url #>/customer/account/login" data-amalias="Login">
51
+ <img src="https://dl.dropbox.com/u/8866426/login.png" style="display: block; " editable="true" title="Login" alt="Login" height="37" width="76" border="0">
52
+ </a>
53
+ </td>
54
+ <td width="23"></td>
55
+ </tr>
56
+ </table>
57
+
58
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
59
+ <tr bgcolor="#ffffff">
60
+ <td height="27" width="600"></td>
61
+ </tr>
62
+ </table>
63
+
64
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
65
+ <tr bgcolor="#ffffff">
66
+ <td width="23"></td>
67
+ <td valign="top" width="554" align="left">
68
+ <table cellpadding="0" cellspacing="0" width="554" align="center" bgcolor="#ffffff" border="0">
69
+ <tr>
70
+ <td width="554">
71
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #333B3E; line-height: 20px;"><b>Welcome <# payload.customer.first_name #>!</b></font>
72
+ <br>
73
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;">Thanks for registering on <a href="<# payload.site.base_url #>" data-amalias="Company" data-amid="5020239547610" style="color: #009DDB; "><# payload.site.name #></a>, you can now start shopping at us. Below we list some of our top sellers that might interest you.</font>
74
+ </td>
75
+ </tr>
76
+ <tr>
77
+ <td height="21" width="554"></td>
78
+ </tr>
79
+ <tr>
80
+ <td width="554">
81
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;">
82
+ <b>Your username:</b> <# payload.customer.email #><br>
83
+ </font>
84
+ </td>
85
+ </tr>
86
+ <tr>
87
+ <td height="21" width="554"></td>
88
+ </tr>
89
+ <tr>
90
+ <td width="554">
91
+ <font style="font-family: sans-serif, Arial; font-size: 14px; color: #333B3E; line-height: 20px;">Best regards,<br>
92
+ <b><# payload.site.name #></b></font>
93
+ </td>
94
+ </tr>
95
+ </table>
96
+ </td>
97
+ <td width="23"></td>
98
+ </tr>
99
+ </table>
100
+
101
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
102
+ <tr bgcolor="#ffffff">
103
+ <td height="27" width="600"></td>
104
+ </tr>
105
+ </table>
106
+
107
+ <table cellpadding="0" cellspacing="0" height="26" width="600" align="center" border="0">
108
+ <tr>
109
+ <td width="23" bgcolor="#ffffff"></td>
110
+ <td height="3" width="554" bgcolor="#1597cb"></td>
111
+ <td width="23" bgcolor="#ffffff"></td>
112
+ </tr>
113
+ <tr>
114
+ <td height="20" width="23" bgcolor="#ffffff"></td>
115
+ <td height="20" valign="top" width="554" align="left" bgcolor="#1597cb">
116
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #ffffff; line-height: 20px;"><b>&nbsp; Most popular products</b></font>
117
+ </td>
118
+ <td height="20" width="23" bgcolor="#ffffff"></td>
119
+ </tr>
120
+ <tr>
121
+ <td width="23" bgcolor="#ffffff"></td>
122
+ <td height="3" width="554" bgcolor="#1597cb"></td>
123
+ <td width="23" bgcolor="#ffffff"></td>
124
+ </tr>
125
+ </table>
126
+
127
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
128
+ <tr bgcolor="#ffffff">
129
+ <td width="23"></td>
130
+ <td width="1" bgcolor="#DFDFDF"></td>
131
+ <td width="15"></td>
132
+ <td height="15" valign="top" width="153" align="center"></td>
133
+ <td width="15"></td>
134
+ <td width="1" bgcolor="#DFDFDF"></td>
135
+ <td width="15"></td>
136
+ <td height="15" valign="top" width="153" align="center"></td>
137
+ <td width="15"></td>
138
+ <td width="1" bgcolor="#DFDFDF"></td>
139
+ <td width="15"></td>
140
+ <td height="15" valign="top" width="153" align="center"></td>
141
+ <td width="16"></td>
142
+ <td width="1" bgcolor="#DFDFDF"></td>
143
+ <td width="23"></td>
144
+ </tr>
145
+ <tr bgcolor="#ffffff">
146
+ <td width="23"></td>
147
+ <td width="1" bgcolor="#DFDFDF"></td>
148
+ <td width="15"></td>
149
+ <td height="77" valign="top" width="153" align="center">
150
+ <img src="<# payload.recommendations.topsellers[0].images.small #>" style="display: block;" height="77" width="88">
151
+ </td>
152
+ <td width="15"></td>
153
+ <td width="1" bgcolor="#DFDFDF"></td>
154
+ <td width="15"></td>
155
+ <td height="77" valign="top" width="153" align="center">
156
+ <img src="<# payload.recommendations.topsellers[1].images.small #>" style="display: block;" height="77" width="88">
157
+ </td>
158
+ <td width="15"></td>
159
+ <td width="1" bgcolor="#DFDFDF"></td>
160
+ <td width="15"></td>
161
+ <td height="77" valign="top" width="153" align="center">
162
+ <img src="<# payload.recommendations.topsellers[2].images.small #>" style="display: block;" height="77" width="88">
163
+ </td>
164
+ <td width="16"></td>
165
+ <td width="1" bgcolor="#DFDFDF"></td>
166
+ <td width="23"></td>
167
+ </tr>
168
+ <tr bgcolor="#ffffff">
169
+ <td width="23"></td>
170
+ <td width="1" bgcolor="#DFDFDF"></td>
171
+ <td width="15"></td>
172
+ <td height="15" valign="top" width="153" align="center"></td>
173
+ <td width="15"></td>
174
+ <td width="1" bgcolor="#DFDFDF"></td>
175
+ <td width="15"></td>
176
+ <td height="15" valign="top" width="153" align="center"></td>
177
+ <td width="15"></td>
178
+ <td width="1" bgcolor="#DFDFDF"></td>
179
+ <td width="15"></td>
180
+ <td height="15" valign="top" width="153" align="center"></td>
181
+ <td width="16"></td>
182
+ <td width="1" bgcolor="#DFDFDF"></td>
183
+ <td width="23"></td>
184
+ </tr>
185
+ <tr bgcolor="#ffffff">
186
+ <td width="23"></td>
187
+ <td width="1" bgcolor="#DFDFDF"></td>
188
+ <td width="15"></td>
189
+ <td valign="top" width="153" align="center">
190
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;">
191
+ <a data-amid="502d05e8a1870" data-amalias="Topseller #1" href="<# payload.recommendations.topsellers[0].url #>"><b><# payload.recommendations.topsellers[0].name #></b></a>
192
+ </font>
193
+ </td>
194
+ <td width="15"></td>
195
+ <td width="1" bgcolor="#DFDFDF"></td>
196
+ <td width="15"></td>
197
+ <td valign="top" width="153" align="center">
198
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;">
199
+ <a data-amid="502d05e8a3f7d" data-amalias="Topseller #2" href="<# payload.recommendations.topsellers[1].url #>"><b><# payload.recommendations.topsellers[1].name #></b></a>
200
+ </font>
201
+ </td>
202
+ <td width="15"></td>
203
+ <td width="1" bgcolor="#DFDFDF"></td>
204
+ <td width="15"></td>
205
+ <td valign="top" width="153" align="center">
206
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;">
207
+ <a data-amid="502d05e8a6690" data-amalias="Topseller #3" href="<# payload.recommendations.topsellers[2].url #>"><b><# payload.recommendations.topsellers[2].name #></b></a>
208
+ </font>
209
+ </td>
210
+ <td width="16"></td>
211
+ <td width="1" bgcolor="#DFDFDF"></td>
212
+ <td width="23"></td>
213
+ </tr>
214
+ <tr bgcolor="#ffffff">
215
+ <td width="23"></td>
216
+ <td width="1" bgcolor="#DFDFDF"></td>
217
+ <td width="15"></td>
218
+ <td valign="top" width="153" align="center">
219
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b><# payload.recommendations.topsellers[0].price_formatted #></b></font>
220
+ </td>
221
+ <td width="15"></td>
222
+ <td width="1" bgcolor="#DFDFDF"></td>
223
+ <td width="15"></td>
224
+ <td valign="top" width="153" align="center">
225
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b><# payload.recommendations.topsellers[1].price_formatted #></b></font>
226
+ </td>
227
+ <td width="15"></td>
228
+ <td width="1" bgcolor="#DFDFDF"></td>
229
+ <td width="15"></td>
230
+ <td valign="top" width="153" align="center">
231
+ <font style="font-family: sans-serif, Arial; font-size: 12px; color: #333B3E; line-height: 20px;"><b><# payload.recommendations.topsellers[2].price_formatted #></b></font>
232
+ </td>
233
+ <td width="16"></td>
234
+ <td width="1" bgcolor="#DFDFDF"></td>
235
+ <td width="23"></td>
236
+ </tr>
237
+ <tr bgcolor="#ffffff">
238
+ <td width="23"></td>
239
+ <td width="1" bgcolor="#DFDFDF"></td>
240
+ <td width="15"></td>
241
+ <td height="15" valign="top" width="153" align="center"></td>
242
+ <td width="15"></td>
243
+ <td width="1" bgcolor="#DFDFDF"></td>
244
+ <td width="15"></td>
245
+ <td height="15" valign="top" width="153" align="center"></td>
246
+ <td width="15"></td>
247
+ <td width="1" bgcolor="#DFDFDF"></td>
248
+ <td width="15"></td>
249
+ <td height="15" valign="top" width="153" align="center"></td>
250
+ <td width="16"></td>
251
+ <td width="1" bgcolor="#DFDFDF"></td>
252
+ <td width="23"></td>
253
+ </tr>
254
+ </table>
255
+
256
+ <table cellpadding="0" cellspacing="0" height="1" width="600" align="center" border="0">
257
+ <tr height="1" bgcolor="#ffffff">
258
+ <td height="1" width="23"></td>
259
+ <td height="1" width="554" bgcolor="#DFDFDF"></td>
260
+ <td height="1" width="23"></td>
261
+ </tr>
262
+ <tr height="15" bgcolor="#ffffff">
263
+ <td height="15" width="23"></td>
264
+ <td height="15" width="554"></td>
265
+ <td height="15" width="23"></td>
266
+ </tr>
267
+ </table>
268
+
269
+ <table cellpadding="0" cellspacing="0" height="74" width="600" align="center" border="0">
270
+ <tr>
271
+ <td width="23" bgcolor="#ffffff"></td>
272
+ <td height="15" width="554" bgcolor="#1597cb"></td>
273
+ <td width="23" bgcolor="#ffffff"></td>
274
+ </tr>
275
+ <tr>
276
+ <td height="20" width="23" bgcolor="#ffffff"></td>
277
+ <td height="20" valign="top" width="554" align="left" bgcolor="#1597cb">
278
+ <table cellpadding="0" cellspacing="0" height="74" width="554" align="center" border="0">
279
+ <tr>
280
+ <td width="23"></td>
281
+ <td width="80">
282
+ <a data-amid="50215886817bd" href="http://www.facebook.com/comfirm" data-amalias="Like on Facebook - Image">
283
+ <img src="http://cdn.comfirm.se/comfirm/magento/like.jpg" style="display: block; " editable="true" title="Like us on Facebook!" alt="Like us on Facebook!" height="74" width="80" border="0">
284
+ </a>
285
+ </td>
286
+ <td valign="middle" width="451">
287
+ <font style="font-family: sans-serif, Arial; font-size: 16px; color: #ffffff; line-height: 20px;"><a href="http://www.facebook.com/comfirm" data-amalias="Like on Facebook - Text" data-amid="5021bac7af38a" style="font-family: sans-serif,Arial; font-size: 18px; color: rgb(255, 255, 255); line-height: 20px; text-decoration: none;">
288
+ <b>&nbsp; Like us on Facebook and get a coupon code!</b>
289
+ </a></font>
290
+ </td>
291
+ </tr>
292
+ </table>
293
+ </td>
294
+ <td height="20" width="23" bgcolor="#ffffff"></td>
295
+ </tr>
296
+ <tr>
297
+ <td width="23" bgcolor="#ffffff"></td>
298
+ <td height="15" width="554" bgcolor="#1597cb"></td>
299
+ <td width="23" bgcolor="#ffffff"></td>
300
+ </tr>
301
+ </table>
302
+
303
+ <table cellpadding="0" cellspacing="0" width="600" align="center" border="0">
304
+ <tr bgcolor="#ffffff">
305
+ <td height="15" width="600"></td>
306
+ </tr>
307
+ </table>
308
+ </td>
309
+ <td width="1" bgcolor="#e7e7df"></td>
310
+ <td width="1" bgcolor="#eaebdd"></td>
311
+ <td width="1" bgcolor="#eeefe1"></td>
312
+ <td width="1" bgcolor="#f1f1e5"></td>
313
+ <td width="1" bgcolor="#f3f3e9"></td>
314
+ <td width="1" bgcolor="#f5f3e7"></td>
315
+ <td width="1" bgcolor="#f7f5e8"></td>
316
+ </tr>
317
+ </table>
318
+
319
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
320
+ <tr bgcolor="#ffffff">
321
+ <td height="16" width="614">
322
+ <img src="http://cdn.comfirm.se/comfirm/magento/bottom.jpg" style="display:block" height="16" width="614">
323
+ </td>
324
+ </tr>
325
+ </table>
326
+
327
+ <table cellpadding="0" cellspacing="0" width="614" align="center" border="0">
328
+ <tr bgcolor="#F5F5E9">
329
+ <td height="10" width="614"></td>
330
+ </tr>
331
+ <tr bgcolor="#F5F5E9">
332
+ <td width="614">
333
+ <center>
334
+ <font style="font-family: sans-serif, Arial; font-size: 10px; color: #5E5E5E; line-height: 12px;">This message was meant for <# payload.customer.email #></font>
335
+ </center>
336
+ </td>
337
+ </tr>
338
+ <tr bgcolor="#F5F5E9">
339
+ <td height="10" width="614"></td>
340
+ </tr>
341
+ <tr bgcolor="#F5F5E9">
342
+ <td height="12" width="614">
343
+ <center>
344
+ <a data-amid="501fc039decd4" href="http://www.comfirm.se/" data-amalias="Small logotype">
345
+ <img src="http://cdn.comfirm.se/comfirm/magento/logo_small.jpg" alt="www.comfirm.se" title="www.comfirm.se" style="display: block; " editable="true" height="12" width="120" border="0">
346
+ </a>
347
+ </center>
348
+ </td>
349
+ </tr>
350
+ <tr bgcolor="#F5F5E9">
351
+ <td height="27" width="614"></td>
352
+ </tr>
353
+ </table>
354
+
355
+ </div>
356
+ </div>
357
+ </body>
358
+ </html>
app/code/community/Comfirm/AlphaMail/data/templates/welcome/template.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ Welcome <# payload.customer.first_name #>!
2
+
3
+ Thanks for registering on <# payload.site.name #>, you can now start shopping at us.
4
+
5
+ Your username: <# payload.customer.email #>
6
+
7
+ Best regards,
8
+ <# payload.site.name #>
9
+
10
+
11
+ This message was meant for <# payload.customer.email #>
app/code/community/Comfirm/AlphaMail/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Comfirm_AlphaMail>
5
- <version>1.1.0</version>
6
  </Comfirm_AlphaMail>
7
  </modules>
8
  <frontend>
2
  <config>
3
  <modules>
4
  <Comfirm_AlphaMail>
5
+ <version>1.1.5</version>
6
  </Comfirm_AlphaMail>
7
  </modules>
8
  <frontend>
app/code/community/Comfirm/AlphaMail/sql/alphamail_setup/{mysql4-install-1.1.0.php → mysql4-install-1.1.5.php} RENAMED
File without changes
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Comfirm_AlphaMail</name>
4
- <version>1.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/MIT">MIT</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Transactional email module for integration with AlphaMail by Comfirm.</summary>
10
  <description>The Comfirm AlphaMail extension is a transactional email extension that makes it easier to manage, send and get reports on the transactional emails in Magento.</description>
11
- <notes>First stable release.</notes>
12
  <authors><author><name>comfirm</name><user>comfirm</user><email>robin@comfirm.se</email></author></authors>
13
- <date>2012-08-22</date>
14
- <time>13:51:40</time>
15
- <contents><target name="magecommunity"><dir name="Comfirm"><dir name="AlphaMail"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Wrapper.php" hash="c3f0f7a3d42a08dd96cebe33a2dac616"/></dir></dir><dir name="Test"><file name="Authentication.php" hash="7686ab33c59f030b27b79e1276cac5b8"/><file name="Diagnostic.php" hash="3e375f1cbda77c55c296c40c4881345b"/><file name="Send.php" hash="f11c197f6c4b856161e016817c7e3b51"/></dir></dir><dir name="EventLog"><file name="Grid.php" hash="5911af8cfb886fa36147f540d3bcfc44"/><file name="View.php" hash="1f0a1dc52906faa4281a666d35479f2c"/></dir><file name="EventLog.php" hash="232beb62abe256a00fc464e8fca91eb4"/><file name="Project.php" hash="5fa965c5eddd3486382cb65265c3236d"/><dir name="ProjectMapping"><file name="Grid.php" hash="c1401e84a84e6592ef8826d1c63cd46d"/><file name="View.php" hash="9b5ee5c105defd33a9216ec0de31c4fa"/></dir><file name="ProjectMapping.php" hash="4c28a21c88b2023ea5540c6f67aa23cd"/><file name="Template.php" hash="290489e9069ab313b799ae734e0774d0"/></dir><dir name="Controller"><file name="Abstract.php" hash="d4dfd8fb0addd5dd170f87c0108ae2c7"/></dir><dir name="Helper"><file name="Data.php" hash="20f1e98319cd11eec2cefdabf861ff2b"/><file name="Diagnostic.php" hash="4223e70e66661811ebc3f525f4e88b3e"/><file name="Message.php" hash="3ccff5585259c6cb5c68a963386a8e86"/></dir><dir name="Message"><dir name="Customer"><dir name="Email"><file name="Confirmation.php" hash="dccbf4512ecf82b6c7d480845b293cfb"/></dir><dir name="Password"><file name="Renewal.php" hash="032b8969aed2ad37d1b94ef22e27c252"/></dir><dir name="Sales"><dir name="Order"><dir name="Invoice"><file name="Update.php" hash="e9815267f403dec845c3d313a33d7eae"/></dir><file name="Invoice.php" hash="c452bd6b15666708cf6ec85e9a33f7e5"/><file name="Update.php" hash="be9a17636f526ff45fed3a3ddd02aa58"/></dir><file name="Order.php" hash="e957addde6d2eeb14d385f2175e14556"/></dir><file name="Welcome.php" hash="f712e596b45b679e65519615f85cea70"/></dir></dir><dir name="Model"><dir name="Email"><file name="Template.php" hash="fb258f812fbad65e39f727e050082357"/></dir><dir name="Event"><file name="Log.php" hash="8403425f64d04f2bb1439e6a3834b59f"/></dir><dir name="Mysql4"><dir name="Event"><dir name="Log"><file name="Collection.php" hash="46e23089ef49b668fb97ff43da6b48c9"/></dir><file name="Log.php" hash="fd0200706ad7966bbd5fdf9353e45f23"/></dir><dir name="Project"><dir name="Map"><file name="Collection.php" hash="803ab517739a8f08d5957703f8ba9a48"/></dir><file name="Map.php" hash="34b973bf31a675a38967f7958cf2605e"/></dir><dir name="Send"><dir name="Log"><file name="Collection.php" hash="56fc46a4771f5aee35ff65873638a501"/></dir><file name="Log.php" hash="464c694d0daf7cb8577ab2f8937394d4"/></dir><file name="Setup.php" hash="aada6ed95c86cfd9f370113da07bc5d2"/></dir><dir name="Project"><file name="Map.php" hash="1f5a87e55237c6670eecc772379e166c"/></dir><dir name="Send"><file name="Log.php" hash="0d1c8e64ac8ff890bb9e1922e7251993"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="General"><file name="EnabledDisabled.php" hash="9ffec22ca17202547c9433145f25a05b"/><file name="Fallback.php" hash="f291cc7a363a88611f3c5c747ac502fa"/><file name="NumberOfRetries.php" hash="a89384039313ce9b803f3db8c307250e"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="EventLogController.php" hash="0753ca3bfa420f78f6d99cd932274583"/><file name="ProjectController.php" hash="71d7cca50a0c2192b2daef4fa3c96987"/><file name="ProjectMappingController.php" hash="72a4205cff36a01b33623f92ed3a3bcb"/><file name="TemplateController.php" hash="771f3d5da75061329556c007c2ba9e66"/><file name="TestController.php" hash="f4adc512f507137962c0f9bf7b9d0ede"/></dir><dir name="data"><dir name="integration_defaults"><file name="email_confirmation.htm" hash="0af80701addd67f08b7a65eed53b4853"/><file name="email_confirmation.txt" hash="1fd7862262ee58a52d4a8a30bf61dd9d"/><file name="new_order_confirmation.htm" hash="a8cf51d585b363d8d553bb8ce0ff5f64"/><file name="new_order_confirmation.txt" hash="4b56b0d2c85f5643818d79f423ac5488"/><file name="order_update.htm" hash="4e157ce58a5bccaa26ba36e842806233"/><file name="order_update.txt" hash="7de48e9852b6289df406576a0ccc9653"/><file name="reset_password.htm" hash="ed0211256b7440fbbca8b7d16376d49d"/><file name="reset_password.txt" hash="6773028cea907880444a8787f2afd832"/><file name="welcome.htm" hash="6ccad54654ca9ca8912b3df87cdf25df"/><file name="welcome.txt" hash="e3646d12b18c1d23d6f2ce12cc125c04"/></dir><dir name="queue"><file name="4981757f-c28d-7eab-8077-11f1b435a8af.msg" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir><dir name="etc"><file name="config.xml" hash="fb70813f926fed62e0595b0a1ea694d4"/><file name="system.xml" hash="cbd0f9e3e02648be8a2409efc5393c40"/></dir><dir name="libraries"><dir name="comfirm.alphamail.client"><file name="emailservice.class.php" hash="1376bfe3d519e4882fed14d8e7884194"/><file name="emailservice.interface.php" hash="a89a39c6b1ad0385dbade68c59a95d7f"/><dir name="entities"><file name="emailcontact.class.php" hash="912f82fac1e6dad67dd9fe120d74f527"/><file name="emailmessagepayload.class.php" hash="32f9ad93d54ca65fb3b0408de29f9694"/><file name="idempotentemailmessagepayload.class.php" hash="ee1944cf5a2a637483bc5902e53dce41"/><file name="project.class.php" hash="056cc2d219fd9e007f9d34388ec86122"/><file name="serviceresponse.class.php" hash="10cbc9761e304c877b0c28cd18fc0c8c"/><file name="signature.class.php" hash="951dc5667a0e492640b26aae33a61765"/><file name="template.class.php" hash="13cc09cb93fe9abc0c0c37a765c5f895"/></dir><dir name="exceptions"><file name="alphamailauthorizationexception.class.php" hash="f023fee677c1e3b39b56023d6ec37bfa"/><file name="alphamailinternalexception.class.php" hash="f904c1ca0b6f7fb67226863355f527ee"/><file name="alphamailserviceexception.class.php" hash="504a6296576fed58d195fb6628e52b6a"/><file name="alphamailvalidationexception.class.php" hash="ca0274cf5ef8b1dabe2a44fab1c9f5e7"/></dir><file name="projectservice.class.php" hash="a21bfebde404aa13ae732b85ef59dee5"/><file name="projectservice.interface.php" hash="4a54c7cfbf959d01b6946216a8613366"/><file name="signatureservice.class.php" hash="20c7d060b5f3808f978168fc93feaec4"/><file name="signatureservice.interface.php" hash="9a9b90a695aead0844b50df6f0823f8f"/><file name="templateservice.class.php" hash="7d85d6e6f9e8c634f5dcd51510818ada"/><file name="templateservice.interface.php" hash="245ad486b7d8568e0016db036575c1ea"/></dir><dir name="comfirm.services.client.rest"><dir name="httprequest"><dir name="filters"><file name="basicauthenticationfilterchainitem.class.php" hash="c5c8fdeae1ac8b04cc4d58e322c2f126"/><file name="httpchunkfilterchainitem.class.php" hash="69ff142a4c492956f341a16121be8327"/><file name="httpgzipfilterchainitem.class.php" hash="83df3eef9cb52298f0df1ad49a5ce9cb"/><file name="jsondeserializerchainitem.class.php" hash="a84baba1208ab0fec635a176490539b0"/></dir><file name="httpfilter.class.php" hash="d5e7dcd6771185e092ee08ce38933c57"/><file name="httpheadercollection.class.php" hash="3f1040d7f4ce7911695615dc1bab256a"/><file name="httppacketcompiler.class.php" hash="931ea0ee1b5e2ca207ed470b7bc2de29"/><file name="httppacketparser.class.php" hash="e1a7fbff36c380822b8e821d1268338d"/><file name="httprequest.class.php" hash="98d6fa9909046f0b58f69ba9e1680a61"/><file name="httpsocket.class.php" hash="7d4f62d933507f8a940b415d4d63d57b"/><file name="httptypes.class.php" hash="47e6c7485835c530d94df9195d080739"/></dir><file name="restful.class.php" hash="d7774372ebf1556fdd5248a95889281d"/></dir><file name="license.txt" hash="ea21b75a1e26825c31ae29f29a870a34"/></dir><dir name="sql"><dir name="alphamail_setup"><file name="mysql4-install-1.1.0.php" hash="4ed919c0b813b6b3f72a971976cd513a"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="alphamail"><dir name="project"><file name="create.phtml" hash="5dca65c2cdd0d6900e80dde8fcbcaf70"/><file name="edit.phtml" hash="332c10bfa9ce04a947087ff2a1f5d94a"/><file name="index.phtml" hash="fc2db9090d54ec070eac43cb0eb2356b"/></dir><dir name="projectmapping"><file name="index.phtml" hash="0feec3a54e8937c05e282cb229dd8dd9"/></dir><dir name="system"><file name="config.phtml" hash="f06e7d737f4ece8550daec08521bfab5"/></dir><dir name="template"><file name="create.phtml" hash="0e67af73030069e69d635cef09bba1cc"/><file name="edit.phtml" hash="7b6b8408a55ddfcf4a0cc926757a3a1f"/><file name="index.phtml" hash="ae4295f2a4d9cfba2c8ad3980c41fdee"/></dir></dir></dir><dir name="layout"><file name="alphamail.xml" hash="aa8606064c27d8b77c401568e94c8d53"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Comfirm_AlphaMail.xml" hash="41e608f730e29ee308a440eef9e4a6d7"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="alphamail"><dir name="CodeMirror-2.18"><file name="LICENSE" hash="88a46883b83470458c36a0d3ceeb93d9"/><file name="README.md" hash="abd2e59dd0d5d1219ab3e51e18d02a78"/><file name="compress.html" hash="56998a9496450c0a7ced0a9531f7fb1e"/><dir name="css"><file name="baboon.png" hash="f8a5922c3789f6fdc9c688910b4a2fc6"/><file name="baboon_vector.svg" hash="cbb2a762cc2cc473a55866fd183fdfd8"/><file name="docs.css" hash="880f5eccb6a233dd37f13eeab0d77240"/></dir><dir name="demo"><file name="activeline.html" hash="ab199706cfe18636ab3cb223480cd338"/><file name="changemode.html" hash="32c56f356328a8c79dff7dde167bfa91"/><file name="complete.html" hash="516467b12d46b4be50d11b229ae89d37"/><file name="folding.html" hash="85d5ef327c7701a9ff8d086fefd28e15"/><file name="fullscreen.html" hash="7d31a67869847d6b0f1eaab9daa085f6"/><file name="marker.html" hash="b96a7021d667c26ba8cbb7d3b52f2d35"/><file name="mustache.html" hash="91b3265c79cc2927b5abfedaf4df4f36"/><file name="preview.html" hash="e729a5e789db6f936d64a71ee3b74550"/><file name="resize.html" hash="2f3cf3d4196ee196a223b2bc6deeb9ed"/><file name="runmode.html" hash="d2850d3fb891233d71c5431b0de60b4a"/><file name="search.html" hash="7ca9114ab2a6e60c27b58b465821564a"/><file name="theme.html" hash="cc226662183164d7704caa6acf3ef49a"/></dir><file name="index.html" hash="6f48cd162b449e02713027a4ba19d40a"/><file name="internals.html" hash="ede4bfc781a60ab1e5faf6ac57552e4d"/><dir name="lib"><file name="codemirror.css" hash="f8060f5669782ea8073c1284d6b0e087"/><file name="codemirror.js" hash="1d761d052bc976f7a1e3aa3e48c1e840"/><dir name="util"><file name="foldcode.js" hash="ce39cf73fd6e555a5e6a84413639d25f"/><file name="javascript-hint.js" hash="be61d8fab65f1b16371d2ec0138a30b0"/><file name="overlay.js" hash="4e8f55ef7aecb45e63a5878dbc26d0b4"/><file name="runmode.js" hash="6f9dbd4bc4b12114a1619272ba22c4af"/><file name="simple-hint.css" hash="55a5102f1b82825aa13530eb6f037d04"/><file name="simple-hint.js" hash="32d841403fa1f847af48b711e7dbf0b5"/></dir></dir><file name="manual.html" hash="87815b37b4d896f147464a5517322459"/><dir name="mode"><dir name="clike"><file name="clike.js" hash="77938b56bcb965edd958d227e6e435cf"/><file name="index.html" hash="fc0525c00a90e58dbb74f3dfa574e24d"/></dir><dir name="clojure"><file name="clojure.js" hash="d0e5f988c3518c075de6a8079090a677"/><file name="index.html" hash="cecb248e3c926b62e6aff08af0fe8667"/></dir><dir name="coffeescript"><file name="LICENSE" hash="e1d0a7e1594e557cab9810f441c2f3d7"/><file name="coffeescript.js" hash="32e1df9643f3c2e433f9e1ba8c58eb71"/><file name="index.html" hash="53b5623875a779ab3800a03463122d59"/></dir><dir name="comlang"><file name="comlang.js" hash="437f2676a63a4864e2250bcd9df57686"/><file name="index.html" hash="d5a4cbcfb8666aba65e5f53a595ba747"/></dir><dir name="css"><file name="css.js" hash="80303c4fcebe219d9a75ed2486881e2e"/><file name="index.html" hash="986ed418c167141c2f01f4dd14c8b341"/></dir><dir name="diff"><file name="diff.css" hash="9750bed5e2f10a2a741eeb07c0a0b357"/><file name="diff.js" hash="df1bb436730e745e233ab0dc707d0064"/><file name="index.html" hash="0bb8a6bbaf3f54bd62f2d0ff304c734c"/></dir><dir name="gfm"><file name="gfm.js" hash="0d260bd0c0c3e6adb8c75e9870d1891d"/><file name="index.html" hash="2dd1b5f08712c6c808cd51b9f84eb0e4"/></dir><dir name="groovy"><file name="groovy.js" hash="2c13ec060d697e4ee98a060c1059db6b"/><file name="index.html" hash="6f9c93412c3e668c8c3f666efc3f03c9"/></dir><dir name="haskell"><file name="haskell.js" hash="e76871c0327e7bb9f90a6ab0e5e8dfb2"/><file name="index.html" hash="377123b1ca9fa7e69c9f3d1931f3065f"/></dir><dir name="htmlmixed"><file name="htmlmixed.js" hash="a53dad6bf844179ef8ad7a97a235824d"/><file name="index.html" hash="7629a23ff67438789967d951455ea20c"/></dir><dir name="javascript"><file name="index.html" hash="2bd482f36c40f6b1c9be349971df31e9"/><file name="javascript.js" hash="56acd16588fe4784aee6a2022e4b2782"/></dir><dir name="jinja2"><file name="index.html" hash="81e9ec1512748b7271f36ffbd56e9a73"/><file name="jinja2.js" hash="f418f62b67673c1143c52307e345e60d"/></dir><dir name="lua"><file name="index.html" hash="d17f11d3ff03877102592de58de69fe0"/><file name="lua.js" hash="c050459e3362db3343af71d0e6aeb014"/></dir><dir name="markdown"><file name="index.html" hash="5c0e890607a034c2d4e598d0cb62cc4f"/><file name="markdown.css" hash="6735953493f16359bfec6fab20af1091"/><file name="markdown.js" hash="b61c6857255ba65dd56636d1365c8a02"/></dir><dir name="ntriples"><file name="index.html" hash="228cbcd044cc02cb8ad30fd5d16fe814"/><file name="ntriples.js" hash="3adc74e87ef632d3540d0963848a6cf7"/></dir><dir name="pascal"><file name="LICENSE" hash="7a13e129f06bac8fb1156a669c4636c0"/><file name="index.html" hash="2c8728310f260eb3aa0a926e90597ca1"/><file name="pascal.js" hash="308a0ea2a068438a315045e5817efd3b"/></dir><dir name="perl"><file name="LICENSE" hash="0cf35a34df2038120c040643ca531933"/><file name="index.html" hash="dec38a62b34d66761c277e9001aae052"/><file name="perl.js" hash="f5a5f217352184b4c739b562f920c229"/></dir><dir name="php"><file name="index.html" hash="d5a4cbcfb8666aba65e5f53a595ba747"/><file name="php.js" hash="0d61a4af8637da038d86de0a52c0c02f"/></dir><dir name="plsql"><file name="index.html" hash="3acffd02bd80c0037911918b9f15611f"/><file name="plsql.js" hash="5a870dcfa98f8760ed4410d08427c04f"/></dir><dir name="python"><file name="LICENSE.txt" hash="50497a84927d62f41da638f19d3e36f4"/><file name="index.html" hash="5e91951d7a6447827ac9647057f56957"/><file name="python.js" hash="86e97b8a98b1663f03776272ce065fb2"/></dir><dir name="r"><file name="LICENSE" hash="846da3e9d63e927277b2d936c172b813"/><file name="index.html" hash="12b3427c4ca0371e387b384a4253d7d9"/><file name="r.js" hash="396af242b11605841020fdb83c4a288c"/></dir><dir name="rpm"><dir name="changes"><file name="changes.js" hash="6f7d626f89cc4af3ab26063dac3660af"/><file name="index.html" hash="740f367b4272f56ef55232f57035b03d"/></dir><dir name="spec"><file name="index.html" hash="a454c2afa198c67769c7130e90fa013a"/><file name="spec.css" hash="baaddfcd14b6e7e60c8d48e59bccef3a"/><file name="spec.js" hash="f4bf6152a54b2c191aa7ec0ce00103e3"/></dir></dir><dir name="rst"><file name="index.html" hash="2f5be2eb7efe6da03cb81562c74e535b"/><file name="rst.css" hash="cc869157d3da08b60a566779676c256e"/><file name="rst.js" hash="6983b9861337a430d7e92bd7c386ef3d"/></dir><dir name="ruby"><file name="LICENSE" hash="ae314caf12af93dfb8362df71778b16a"/><file name="index.html" hash="717a66bb28bf9143b440daf6c6141fba"/><file name="ruby.js" hash="e53b08854aa102c06205b683ae7fb136"/></dir><dir name="rust"><file name="index.html" hash="dde843579b9fc83b94d2d45768449e18"/><file name="rust.js" hash="69bde2212f4b48276ad549d86005c308"/></dir><dir name="scheme"><file name="index.html" hash="5172505e4f0778d4578a429276441070"/><file name="scheme.js" hash="b58ca4c1c3053aea6a4602815abaa948"/></dir><dir name="smalltalk"><file name="index.html" hash="3eb4f1e329d1abb90ea03228e36a1541"/><file name="smalltalk.js" hash="2a82fb925ea2cd3e324ec6f135538c2c"/></dir><dir name="sparql"><file name="index.html" hash="d3d79fd3b0a6c4a2352f31a27d6c15cb"/><file name="sparql.js" hash="19620ecd6fd9b8cb12b9b6445dc99a4d"/></dir><dir name="stex"><file name="index.html" hash="ee54a341be3482e11c205c508aee6b63"/><file name="stex.js" hash="c4ae78f9885041330bbde8fc5648477b"/></dir><dir name="tiddlywiki"><file name="index.html" hash="7ba47f8e8f4e2216054bfb477326d3f6"/><file name="tiddlywiki.css" hash="c11cdeb53a780caea1e9e6991993cbca"/><file name="tiddlywiki.js" hash="17ddeee4501ee9a0b3564f04db277140"/></dir><dir name="velocity"><file name="index.html" hash="9576af6a2ec6bed38dad8d7055956953"/><file name="velocity.js" hash="1575d55bcca5ef56ab5d9b801ed5e452"/></dir><dir name="xml"><file name="index.html" hash="8f3532f29b5d5a033b8366c1a4d38d2b"/><file name="xml.js" hash="8dc718d2bc75044bb6d9edb24ea331a6"/></dir><dir name="xmlpure"><file name="index.html" hash="1f0b8a37a3b56099ebc730485c4b7ba0"/><file name="xmlpure.js" hash="72df6042f863cc00e0d04d6b9502116e"/></dir><dir name="yaml"><file name="index.html" hash="52f27134149d98fd7188cb0fcc9cc1ac"/><file name="yaml.js" hash="26ba9f1907540d18fbd73c5d385d70cb"/></dir></dir><file name="oldrelease.html" hash="0abc467fdaaa262735c81f79ececf842"/><dir name="test"><file name="index.html" hash="6f920394d5aa9c6add944c5647da99a0"/><file name="test.js" hash="4b34cc09d735ffe7cabc773991e823f9"/></dir><dir name="theme"><file name="cobalt.css" hash="693dbdb4e697861a71c10cd7ec94e4bf"/><file name="default.css" hash="54af177b325ef85fb6c3bc4d4e862c7c"/><file name="eclipse.css" hash="120d3cc1f7db6b14be43e2ae82d5ed51"/><file name="elegant.css" hash="f43d2300bfe91c488089b0dfea5b091d"/><file name="monokai.css" hash="b4fc30a108bec5a6bd57c9c2246cf2b5"/><file name="neat.css" hash="e535a6e8ad9e6a7f226fe7d9ef574036"/><file name="night.css" hash="1c234d0158d1df6b2c1f7dbfca37cdab"/><file name="rubyblue.css" hash="3bfad81098b8501420bdb84f6869f031"/></dir></dir><file name="ajax.js" hash="95e3d2f29bd50e08b48fcd0776eb2fd4"/><dir name="alohaeditor"><file name="build.txt" hash="0553303b2feffa9e81ac6ca1ab8e3dda"/><dir name="css"><file name="aloha-core.css" hash="3605b9d654ca34c4417e99ae2e6070bd"/><file name="aloha-sidebar.css" hash="7d8181f13550616f687f5f3212a83d0e"/><file name="aloha.css" hash="a61890aeae5a99ab9a7c55ef07d4b8ae"/><file name="ext-aloha-reset.css" hash="acd3011809fb5aaa8b6b0f328b75df9a"/><file name="ext-aloha.css" hash="00a960ed7ad9c332a52abd80835a00d1"/></dir><dir name="img"><file name="arrow-down.png" hash="15b608454fe4d1f84bb2e55a54df50df"/><file name="arrow-left.png" hash="23a5163bce8cc7a7b66e996e43519d82"/><file name="arrow.png" hash="8f703083439192ca2a9fdc5b98fdbe1d"/><file name="base-big.png" hash="971cd845a71d374c7ea595586a003b6f"/><file name="base-multi.png" hash="068176d2be92778302d5d66a50103160"/><file name="base.png" hash="7ab811012967c740e088aa5f45ddee50"/><file name="bg.png" hash="dd72fc7a9a7e1a497a7888c686c0a94f"/><file name="breadcrumb-divider.png" hash="e5cf164a060b378ab52f21442246700a"/><file name="fade-in.png" hash="881ee65f4be19978c475f00d8eb74b2a"/><file name="fade-out.png" hash="a297f0bf80102561cc2204bb2ad2e0bc"/><file name="gentics-logo.png" hash="513c60aca53485d9d35c497ef8f59638"/><file name="grabhandle.png" hash="254665304865f7dd6e75c1d5eb017fb9"/><file name="maximize.png" hash="5b7582ed5f6ba63b49bad7191a36c991"/><file name="multisplit-base.jpg" hash="72d4ebe0738d4884208b56a01600a430"/><file name="multisplit-close.gif" hash="922cb2deeb043af28292a252bad111d8"/><file name="multisplit-open.gif" hash="e03b4949496321ff1ebd2e1c3a03989c"/><file name="pin.png" hash="6671a4f722edea1e108acd0bf5e8083b"/><file name="removeformat.png" hash="a9d57740c710afb9709009fb08e28657"/><file name="text_indent.png" hash="47f0424810cb024b398abb451b29b3c9"/><file name="text_indent_remove.png" hash="efa6fcdf3acc185503792870899ecc11"/></dir><dir name="lib"><dir name="aloha"><file name="command.js" hash="20b5ea6aad884b06c25794abc23c8957"/><file name="console.js" hash="e3c2dbf5ed1bc617912d35130e6bc36f"/><file name="contenthandlermanager.js" hash="ba3ea21bb7188d70d5d1a1cfb8de3cc0"/><file name="core.js" hash="d8eed09123ca89e5deadb489e5f7a9eb"/><file name="ecma5.js" hash="dc5f43e9c1594f03ec8929e2217699e8"/><file name="ecma5shims.js" hash="122c9bf76a54bc9bcc4eef7dcceeb6f5"/><file name="editable.js" hash="d866af72a4c2843220cdb485cf885c9c"/><file name="engine.js" hash="df5e61a45c2290d4f83d345020244514"/><file name="ext-alohaproxy.js" hash="6c2e03a65e2091f9630c82dea8c048a0"/><file name="ext-alohareader.js" hash="f3680fcd84e17d300a5139da64f7a06f"/><file name="ext-alohatreeloader.js" hash="97485da95858a00f36a27fcc41be434b"/><file name="ext.js" hash="9873e64b725a024d1a6b4330467bf000"/><file name="floatingmenu.js" hash="87858829bc72b1c6b2b664c2d07d188b"/><file name="ierange-m2.js" hash="7df05cfe62d2c3fca71225d6a03a75ce"/><file name="jquery.aloha.js" hash="8d9bd56d06e5f077941279b76d5924dd"/><file name="jquery.js" hash="ba4796914487cd6905f70648dc03067f"/><file name="jquery.patch.js" hash="8c22b519107adad3d813cfa21a3a27f5"/><file name="markup.js" hash="1829e7b18c3be7c25dd64c05f5118bd7"/><file name="message.js" hash="4d3151187f946c1939958d6fe9b69e03"/><dir name="nls"><dir name="de"><file name="i18n.js" hash="fe8d2e4e3d4ba4f34394b80b529636aa"/></dir><file name="i18n.js" hash="017c05fe064f2a9d4ecf86ea92f4aba2"/><dir name="sv"><file name="i18n.js" hash="c11f7ad8fe60b843d4650d29a2811739"/></dir></dir><file name="observable.js" hash="df9083444a55b5bd16aa86b56ab8bf62"/><file name="plugin.js" hash="abcfb1833414681cac95611fccc5ba9e"/><file name="pluginmanager.js" hash="4fd58ae6cbdcd595ee6480657dcb0e29"/><file name="rangy-core.js" hash="808d11808cef29e69c3fca745ce25760"/><file name="registry.js" hash="9622b5494feff83747674b5563fdd81c"/><file name="repository.js" hash="90986b589e96c944647ae0160cb83a9a"/><file name="repositorymanager.js" hash="205ade45ec620568e5ef697792597ff1"/><file name="repositoryobjects.js" hash="5638a269215559e22410755701d86327"/><file name="selection.js" hash="396bf1c0ca5b4ec9f670cd06bc348fae"/><file name="sidebar.js" hash="566e085049947fb75884643c74bf679c"/><file name="ui-attributefield.js" hash="bdf910a9b10317a79e209ab478d683b5"/><file name="ui-browser.js" hash="daf94d6a6c2ff4556143e84fc02cd91d"/><file name="ui.js" hash="fd22470d30618ba4deaf97df6a27fd44"/></dir><file name="aloha-bootstrap.js" hash="ae9c0eaf48a7fe17a733dc0ae388b934"/><file name="aloha.js" hash="6dabe668345e850a171960c9cd50df72"/><file name="css.js" hash="b2c0b512cc6188ad44bffa106fdd8cbb"/><file name="i18n.js" hash="2cd46ebeed271c6d79bd397722e522ca"/><file name="jquery-plugin.js" hash="886143e448dc7fab6f95076a0a07e77f"/><file name="order.js" hash="061959d61b8c7cb50d28797920c78514"/><file name="require.js" hash="03baff51cfb2419fe4a32bb245ee5684"/><file name="text.js" hash="c64b58411b743e3ca956fba73db0b7ba"/><dir name="util"><file name="class.js" hash="b6e58d2e3db1eb104acfafa612abdddc"/><file name="dom.js" hash="f55cda9d6e55aca8176416f82cf47d90"/><file name="json2.js" hash="391d5fc3498e5f1f23ea4dc8ba43c0c5"/><file name="lang.js" hash="17daf04cd7616c6061b7d1d11d07b0dc"/><file name="position.js" hash="e8da37f7e856ee2944cc2c0b4382d14d"/><file name="range.js" hash="c346272d513947335ee57551897c8ebc"/></dir><dir name="vendor"><dir name="ext-3.2.1"><dir name="adapter"><dir name="jquery"><file name="ext-jquery-adapter-debug.js" hash="13de37837f6f913c7da6f3bd83fdf60c"/><file name="ext-jquery-adapter.js" hash="eade1cfd0267ab2bf5ae23dd823b65c2"/></dir></dir><file name="ext-all-debug.js" hash="f06105c6b9ae5ddb2cde43014ebebe2d"/><file name="ext-all.js" hash="bf80a5438d598701a67630b962352d3f"/><file name="gpl-3.0.txt" hash="3c34afdc3adf82d2448f12715a255122"/><file name="license.txt" hash="c0a50aa77c22b5a3a7e54fec34cb54f0"/><dir name="resources"><file name="charts.swf" hash="59c6e2c9ae7de87f11dd3db3336de8b6"/><dir name="css"><file name="ext-all.css" hash="0feb438d6d85a6214101e895f945fa46"/><file name="ext-all.less" hash="37b2f7f0f54ae223d17332b1baed0073"/><file name="xtheme-gray.css" hash="514b32821be653201c8f8d91de0b5a05"/></dir><file name="expressinstall.swf" hash="8c4bdc47410fc7c000dcd1655e2f3a7a"/><dir name="images"><dir name="default"><dir name="box"><file name="corners-blue.gif" hash="86fd4c5664e0971bfc11959e8442604c"/><file name="corners.gif" hash="d2d1bc2085b369ce35ffd20c0121676e"/><file name="l-blue.gif" hash="ced9ffbf66ea39e77083a591f8257267"/><file name="l.gif" hash="c4d9dbbdc59ae06b5e9e72a6a865c981"/><file name="r-blue.gif" hash="82dbb522a80e3246f6297719371a9494"/><file name="r.gif" hash="bf1e1d4a45f951ae656968a8c834f04a"/><file name="tb-blue.gif" hash="7c4b19eb682afdc1bde0640d2321fb25"/><file name="tb.gif" hash="dd3f63afe7ba90983ba73dad1c66bf2f"/></dir><dir name="button"><file name="arrow.gif" hash="44b6dbf385236a2697932a7a3e20b4a0"/><file name="btn.gif" hash="40ac871755023cc11ad15dcd77b54dbf"/><file name="group-cs.gif" hash="5dc0252bd9ecf72f98d858427054cf08"/><file name="group-lr.gif" hash="cb7813012d6be17e083835d60037029e"/><file name="group-tb.gif" hash="4edf9b7db13b1331282eed298384cab9"/><file name="s-arrow-b-noline.gif" hash="30d04f652551f1df9d59d33a99c9a320"/><file name="s-arrow-b.gif" hash="a957a6d618d19b92a2d1a7a1b50f5235"/><file name="s-arrow-bo.gif" hash="53a15d7907a017122f7f60402c435753"/><file name="s-arrow-noline.gif" hash="13f08a275c58135365b8e58b3177ab1a"/><file name="s-arrow-o.gif" hash="5005d8dea2f9456aaf2ab27ca7bf5651"/><file name="s-arrow.gif" hash="bc71296ddf9c7ef5aa56b09ca3512c8a"/></dir><dir name="dd"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-no.gif" hash="ae536c37391ba78143b5c8283cec8d13"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/></dir><dir name="editor"><file name="tb-sprite.gif" hash="a2f06caddc2fb729db5cbbd874491128"/></dir><dir name="form"><file name="checkbox.gif" hash="75d685cab5665a935660a3d04f71c2be"/><file name="clear-trigger.gif" hash="97b3e5e9edf27b50d63d48098c2f1eae"/><file name="clear-trigger.psd" hash="c8c2d843458728df5c184a54862c5946"/><file name="date-trigger.gif" hash="30b5bace9f3dac358716c1415270f874"/><file name="date-trigger.psd" hash="3f10ecf0d961006507d043f9b9fce45e"/><file name="error-tip-corners.gif" hash="364474276178c7b48b6270056b42b808"/><file name="exclamation.gif" hash="37dbe02e3cbde0f6780650bfd8535e38"/><file name="radio.gif" hash="0239bdaef529be68530b86266a24742c"/><file name="search-trigger.gif" hash="559ef372cf27a38678d84e8c0b7237fc"/><file name="search-trigger.psd" hash="daacfb6d450b8cd56da5905db4c8b8c0"/><file name="text-bg.gif" hash="d5ba54c1f417e6a72cbce8b909078727"/><file name="trigger-square.gif" hash="c1cbaecc91209f77e2d20235c137e13e"/><file name="trigger-square.psd" hash="5e66abd0fa1313bd052db7d121f626c1"/><file name="trigger-tpl.gif" hash="d7be20f0dc38f4f46cd318fe32cf3ce3"/><file name="trigger.gif" hash="447d5b600f7527f5c8cc49e7453bbb27"/><file name="trigger.psd" hash="513a8c601e278a35a3cb3272fd1769df"/></dir><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><dir name="grid"><file name="arrow-left-white.gif" hash="b04e859bdcbd21ad1f06b8bfa7881df8"/><file name="arrow-right-white.gif" hash="714eb00f8134dde3a65c83f3f71ad2c4"/><file name="col-move-bottom.gif" hash="9c38bcb5cee1dc9b4ce64ad9ab1386f8"/><file name="col-move-top.gif" hash="c4584202d5172464050f675d396d1c6f"/><file name="columns.gif" hash="ef35242fa6514a81d17d5f700f561b7c"/><file name="dirty.gif" hash="decca3b96e2c37cf6eb04ddb0d9f669b"/><file name="done.gif" hash="365266930a93451414fe51ffc524a196"/><file name="drop-no.gif" hash="b53ca86d60fbcc7a45c8917299218bfd"/><file name="drop-yes.gif" hash="af96f4c3b32a470db2f38abb521b5c97"/><file name="footer-bg.gif" hash="65ed63e44c6149f1127ad3b4be4e0108"/><file name="grid-blue-hd.gif" hash="dd35d5c1202c440c2d1a945b335984d3"/><file name="grid-blue-split.gif" hash="0494ba49974ff2bc1bf81e1d82dfee18"/><file name="grid-hrow.gif" hash="55972a5063d80f35fb6b95a79bb0018a"/><file name="grid-loading.gif" hash="9ac6f737eb9b15272f12b00bfeb3c3c6"/><file name="grid-split.gif" hash="3ef419d4b9421d8e94f673a6238dc4c0"/><file name="grid-vista-hd.gif" hash="675f403e8a9cb5ab4bed725da9fe2023"/><file name="grid3-hd-btn.gif" hash="e3e77072c16a6b27556236961f29c552"/><file name="grid3-hrow-over.gif" hash="a92d8f6c106943995720f2884634670e"/><file name="grid3-hrow.gif" hash="3e4484ea8db10af1320808c8477346ea"/><file name="grid3-special-col-bg.gif" hash="c9df03a1c107360128da89fa47066405"/><file name="grid3-special-col-sel-bg.gif" hash="a94039f89dec164896ceff1fbdf6dbc5"/><file name="group-by.gif" hash="3ff8c5936e358cf213227509c9bee95a"/><file name="group-collapse.gif" hash="fd6a72ffa784170d83f9f13322266ca8"/><file name="group-expand-sprite.gif" hash="d0f614a387292177f3acb0c95a4cd760"/><file name="group-expand.gif" hash="8a9ad3ed3d74c2911b7f101268a1843b"/><file name="hd-pop.gif" hash="e5f27a2f68cc2d13b11cf41c46d298dc"/><file name="hmenu-asc.gif" hash="048e0bc30f7c39d473dad5dabcbe03f2"/><file name="hmenu-desc.gif" hash="f0a987b34b003b25a7c82624d41f018a"/><file name="hmenu-lock.gif" hash="bcef18e25342c69c37c44dab87086065"/><file name="hmenu-lock.png" hash="2a3b0b441834f443c1086930939efdae"/><file name="hmenu-unlock.gif" hash="8cc8205dafa587ef02d8a86903ae8074"/><file name="hmenu-unlock.png" hash="c1f61df70b98c5498ea81e7e7b9effbb"/><file name="invalid_line.gif" hash="04a88e97b56e8a8ece4a66d49cc78828"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="mso-hd.gif" hash="37fba9c02f0eefe57f655890eef1c4a1"/><file name="nowait.gif" hash="23c91166dbb16ba8655363321bf5a400"/><file name="page-first-disabled.gif" hash="8d3185028c541cbcce67b5909c04824e"/><file name="page-first.gif" hash="16ec00fa770d860b768cf5034ddfca96"/><file name="page-last-disabled.gif" hash="1d123237ceeb5109a1b9274f0cf19d73"/><file name="page-last.gif" hash="ef524dd0b8dfe4eefecffaa1c0bb8edd"/><file name="page-next-disabled.gif" hash="0f4b8681772c91921fa93ede9c755ea0"/><file name="page-next.gif" hash="f6f9d2209dfc99912ffc9848d97646db"/><file name="page-prev-disabled.gif" hash="eefcbed15c8d37a89618b08f7b224297"/><file name="page-prev.gif" hash="80daad880483eed682b22ec70514ecc4"/><file name="pick-button.gif" hash="b431fdf306f1e2f033d0a431996de93f"/><file name="refresh.gif" hash="f1a2e7df30394c5a30bc76c2d09013b7"/><file name="row-check-sprite.gif" hash="2d0aa7e501c3e6f97a97faf75e35d3c3"/><file name="row-expand-sprite.gif" hash="be81199d9d4fa69bef47a8f036a5a7d8"/><file name="row-over.gif" hash="f639094bd0560aefabc86e51a825f23d"/><file name="row-sel.gif" hash="ca87d6b950386edd5e17c985769d9101"/><file name="sort-hd.gif" hash="2640addef6e987b4c5dfa4c8c2dfb10c"/><file name="sort_asc.gif" hash="2352874b5f636ca331fe9509a2f9bdd7"/><file name="sort_desc.gif" hash="d104fcf119d40c51554ddb8b377142e5"/><file name="wait.gif" hash="b0cd5a5dc070c705ebf8814a909802c3"/></dir><dir name="layout"><file name="collapse.gif" hash="dfcec0803d488a783916c750fd83a897"/><file name="expand.gif" hash="c9c9b0ea5311c3dc016c69dc234912bc"/><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><file name="mini-bottom.gif" hash="ae8e3674fd32997dc5217d5d6199a5a5"/><file name="mini-left.gif" hash="8654fdb45ecf4406af2fce1d3beb7596"/><file name="mini-right.gif" hash="cbdf9fb0c45466b4217ac9f7bd6a9ed4"/><file name="mini-top.gif" hash="fbd91e98576f66fd2702495251b15240"/><file name="ns-collapse.gif" hash="efa9fbd7a1f3f0f1f22360391e16126f"/><file name="ns-expand.gif" hash="da1f9d40c091d3b6dc7a8dee4fc02ac6"/><file name="panel-close.gif" hash="b185da1837344529bfb684a96d8371b5"/><file name="panel-title-bg.gif" hash="b66384c309a397963389a76b07e9ecd4"/><file name="panel-title-light-bg.gif" hash="688d3a263442db125da170e5d3aebf70"/><file name="stick.gif" hash="be9e67ae0b61b01cfd15928ca7a3da51"/><file name="stuck.gif" hash="745e0cacb51250ea0216efc4a1cb50cb"/><file name="tab-close-on.gif" hash="0ae2c978e85391a69f0dce8da18d8b23"/><file name="tab-close.gif" hash="f92107cc6b4cb78af084648a628e01d2"/></dir><dir name="menu"><file name="checked.gif" hash="cb7b3408df56f5585aaa1242cd2f0b45"/><file name="group-checked.gif" hash="f7973443d91e5e074013f1b07ee79479"/><file name="item-over.gif" hash="bb4cdc0ea257834cd5ed01f883387d8f"/><file name="menu-parent.gif" hash="d303ad7e3ced891736e80f77e1d4e51d"/><file name="menu.gif" hash="ae128d5f3f3a39213f3d4e23aec8728f"/><file name="unchecked.gif" hash="31846118bddc7945b595ea2090589cf1"/></dir><dir name="panel"><file name="corners-sprite.gif" hash="d4546c86ed835fee767212279ee98b68"/><file name="left-right.gif" hash="6553647bad54d83e2c235f339d12f6be"/><file name="light-hd.gif" hash="b058affcc8b3e8a03be74bc9d9697da7"/><file name="tool-sprite-tpl.gif" hash="e0449768cd5dce80b18fac904818ab33"/><file name="tool-sprites.gif" hash="c2ac6edef318ed18a0efcc9c74c7a81b"/><file name="tools-sprites-trans.gif" hash="8331513f15bd26be38974a7d7fc4ee41"/><file name="top-bottom.gif" hash="a4854e1b3aea60123522cb687a462c05"/><file name="top-bottom.png" hash="2a65a27def756a0951644b511f6f2cce"/><file name="white-corners-sprite.gif" hash="81f089d0247ca1ad12093be21884d773"/><file name="white-left-right.gif" hash="77a6389c6737ad507ca5330ad8816524"/><file name="white-top-bottom.gif" hash="f865d7237bff3c45fd4a8c448f97d236"/></dir><dir name="progress"><file name="progress-bg.gif" hash="fd75abcd9d1cb8534f24f438a71e6fd8"/></dir><dir name="qtip"><file name="bg.gif" hash="49c0a530cc16357bb39d51c13065a88f"/><file name="close.gif" hash="0379d036250096cae2e42b427b3df2e7"/><file name="tip-anchor-sprite.gif" hash="f39bc3283b69431ce6e7aed2fe6882b9"/><file name="tip-sprite.gif" hash="090b2d83952e682fab43b2ab16be2991"/></dir><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><file name="shadow-c.png" hash="7ab6163237099f2529452b88953a4049"/><file name="shadow-lr.png" hash="986270d8ab4330fa7499dc33ed135598"/><file name="shadow.png" hash="860bf4f690d2ea2aba7b11500925da62"/><dir name="shared"><file name="blue-loading.gif" hash="dc2fd7c0ed853c56b4ac65710af3bd0a"/><file name="calendar.gif" hash="81296cff1f97f5365524f2b9dcf626da"/><file name="glass-bg.gif" hash="bc2cd5c5ac9b3874d956c892d23f2119"/><file name="hd-sprite.gif" hash="6a54ae98bef53397d52282201852c204"/><file name="large-loading.gif" hash="d96f6517e00399c37a9765e045eaaf22"/><file name="left-btn.gif" hash="6bf30c6cf0b5d70436c3e463b5532b35"/><file name="loading-balls.gif" hash="ac062b94ed674aaa50a6c18df92acdf3"/><file name="right-btn.gif" hash="e7ad3a7f4814791cecf1b90e77e9e139"/><file name="warning.gif" hash="448dc934a7f0dd6092b51f88a1e47b2d"/></dir><dir name="sizer"><file name="e-handle-dark.gif" hash="b86289f41d7ad1a7401dd2b2a9b3c3d8"/><file name="e-handle.gif" hash="510edc95ebaa36306916c50ca10596f7"/><file name="ne-handle-dark.gif" hash="115f71b851c7f0b5f354caa7b8dfff15"/><file name="ne-handle.gif" hash="8e268b962dc909d275997b572ff17a72"/><file name="nw-handle-dark.gif" hash="4a361e6920b2e34a39fd425a515c83b9"/><file name="nw-handle.gif" hash="1120600505249c38c3d1cc2ab120cd13"/><file name="s-handle-dark.gif" hash="4a6bf15d308a4ae580dd03cbd431a95c"/><file name="s-handle.gif" hash="5e3338cb09e9df7f52383d6b1423fc86"/><file name="se-handle-dark.gif" hash="f3d8d8aac23e3e9633072e2366cda847"/><file name="se-handle.gif" hash="71edc3f63f79f447d2c81ee09e1fbbc3"/><file name="square.gif" hash="4431ea1954bfd2a9cea0931f07fc7ffa"/><file name="sw-handle-dark.gif" hash="44b2400d873cf8a23d84424827cde44d"/><file name="sw-handle.gif" hash="c3e0befc4208a51180344765fd7deeda"/></dir><dir name="slider"><file name="slider-bg.png" hash="0903ad3af985419767a60a5b025e0a18"/><file name="slider-thumb.png" hash="24a893c9606f3a6892eb62f29a08870c"/><file name="slider-v-bg.png" hash="0682c28925a7296730f7f221e4a76b96"/><file name="slider-v-thumb.png" hash="2fc3430dc351d9a118e048b9aafb7c3c"/></dir><dir name="tabs"><file name="scroll-left.gif" hash="f1ce5158650880e9fe256e739f60dd23"/><file name="scroll-right.gif" hash="905ea778cb64c74ef3cd49ae4fa64b71"/><file name="scroller-bg.gif" hash="43457068d919fadd0e959542cfd81ad2"/><file name="tab-btm-inactive-left-bg.gif" hash="ed19092d440c5bfbdc864f714f26ee03"/><file name="tab-btm-inactive-right-bg.gif" hash="c3f340dc9f7f9398e1395f351e706dfd"/><file name="tab-btm-left-bg.gif" hash="768ac4e5531974feda076cbca7a5cb6e"/><file name="tab-btm-over-left-bg.gif" hash="f7f13c4c2a7c1e3497b2f8931227df3f"/><file name="tab-btm-over-right-bg.gif" hash="7bf3f17738b6c53f6a3f08760eaa5089"/><file name="tab-btm-right-bg.gif" hash="dfe63a170d5391d56645dbfed27b5d22"/><file name="tab-close.gif" hash="59304a56f5e0f506bf671aeafb8fc767"/><file name="tab-strip-bg.gif" hash="5b1b94e9669aaab4e76e5aba8bf8ec1d"/><file name="tab-strip-bg.png" hash="d99e3b7b2610f3c85aa943fe139e6afa"/><file name="tab-strip-btm-bg.gif" hash="f76eec7881fcc7a0f76354d184e0087e"/><file name="tabs-sprite.gif" hash="2562a17ad0076bdd3711d18e62f74c27"/></dir><dir name="toolbar"><file name="bg.gif" hash="b795052041aa76a42466b3be5575077f"/><file name="btn-arrow-light.gif" hash="fa49b39a0fd88ef26264da44a2b4edea"/><file name="btn-arrow.gif" hash="12bda29a4c8016cfa047e852c4353f59"/><file name="btn-over-bg.gif" hash="faddf9b24cefa721326ba3f87f3ef31f"/><file name="gray-bg.gif" hash="cf2d9408f320e696e607d8472afa7ff0"/><file name="more.gif" hash="15c7a30d4131305b672fe1e76d962d4d"/><file name="tb-bg.gif" hash="5309337fd7a22cab9d9467fd9eaa0a0c"/><file name="tb-btn-sprite.gif" hash="ba0a5d77db72942782fc4bf23f710738"/><file name="tb-xl-btn-sprite.gif" hash="3ffd5589b41889230755ea2108cc0e92"/><file name="tb-xl-sep.gif" hash="06e026387e2dd0f49e88a04791cf26fa"/></dir><dir name="tree"><file name="arrows.gif" hash="ab65037de34763ce1b489e5c0f12185d"/><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-between.gif" hash="edb544a0de58547d4a39c526e06e3c82"/><file name="drop-no.gif" hash="67f83ea04a2eb1c50614a96faf625f25"/><file name="drop-over.gif" hash="d6b303cfa3de8784057d9d7e66cdaa86"/><file name="drop-under.gif" hash="55e5dbc9451cfa91423832260b0753aa"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/><file name="elbow-end-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-end-minus.gif" hash="a469f6a4394d797c2efeffc70409f6db"/><file name="elbow-end-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-end-plus.gif" hash="ec1482391363612d9e5f8c7087fddaba"/><file name="elbow-end.gif" hash="345551384aa325189ba28a1c20f3405e"/><file name="elbow-line.gif" hash="90e478158df476dc989a60daaafc87e6"/><file name="elbow-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-minus.gif" hash="71bb1bd44b1274c60d30dba1de472ed7"/><file name="elbow-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-plus.gif" hash="945572d06a74b5f952251a86c595f2da"/><file name="elbow.gif" hash="27679f3b1222ba95d9925885d7d82d02"/><file name="folder-open.gif" hash="c569141d6ae7c61d838ed8af26aa9380"/><file name="folder.gif" hash="b7209740bb4a825a06beb8698d92c2b1"/><file name="leaf.gif" hash="23757d6e353f343e3c7edfe28428f198"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/></dir><dir name="window"><file name="icon-error.gif" hash="f477b54b6b8361362e96c2218dce7ea0"/><file name="icon-info.gif" hash="ec6b7a5d4caeea767c8674689bae47c6"/><file name="icon-question.gif" hash="2713644a8aa582728d71e35eca62fbcd"/><file name="icon-warning.gif" hash="3f20258272af0e00f6b7531b3b9aee35"/><file name="left-corners.png" hash="1d8a9cdb663e292ab70def47094dc528"/><file name="left-corners.psd" hash="18618115985e5905c7a6345c3ef0255a"/><file name="left-right.png" hash="d65dd5318f003143927bc0d7c5ff6e2f"/><file name="left-right.psd" hash="029c8ba62b77e910b07764e324c32a84"/><file name="right-corners.png" hash="e7c4dad6996685750acfba2f4e29115a"/><file name="right-corners.psd" hash="51aea4dd6bbdedf7923342e43bacbb7a"/><file name="top-bottom.png" hash="4f1e86207b228c192c2e243f77854adb"/><file name="top-bottom.psd" hash="826ca83fb9892be49f1b1aaaf61fd6c4"/></dir></dir><dir name="gray"><dir name="button"><file name="btn-arrow.gif" hash="9e2365ef98c6096f6b5f411ab618bb4e"/><file name="btn-sprite.gif" hash="945adfe198d7231a1c1ad761c353a405"/><file name="btn.gif" hash="dfa89e24b5dca6731dc699ba8d56950a"/><file name="group-cs.gif" hash="6d1c2edcd710057762396ccff6b5a33f"/><file name="group-lr.gif" hash="61b5fce46df447e1076ccc7037836b5c"/><file name="group-tb.gif" hash="828252b241154dbe45716a64a7bebe63"/><file name="s-arrow-bo.gif" hash="c455519fc9ff5b43c1f19a5cdbfc6b7c"/><file name="s-arrow-o.gif" hash="11e75d35ed05d06d42ee48366853f770"/></dir><dir name="form"><file name="clear-trigger.gif" hash="814bc78e7d14264bd024dee10717d1f9"/><file name="date-trigger.gif" hash="53d247e91d07172526a17e66e3365b0a"/><file name="search-trigger.gif" hash="5e093905f73ff1bd885a972f9298a6ae"/><file name="trigger-square.gif" hash="993f3e139f8153108cf36246e6c13304"/><file name="trigger.gif" hash="fce4c76ce39c38ea12f63aae88260b66"/></dir><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><dir name="grid"><file name="col-move-bottom.gif" hash="4caef6fed1128b1e28efd611b1d05b75"/><file name="col-move-top.gif" hash="19e021b4eb21053d55236115d1d7151d"/><file name="grid3-hd-btn.gif" hash="614e2bfd1aee447b6c06b4952b747553"/><file name="grid3-hrow-over.gif" hash="a198f359b87cbc5df0d99bfa8bed268c"/><file name="grid3-hrow-over2.gif" hash="599fa1925a97da601a5d600cc053bdc3"/><file name="grid3-hrow.gif" hash="3e4484ea8db10af1320808c8477346ea"/><file name="grid3-hrow2.gif" hash="327fa686bcaaf02a305d56a801fd2bab"/><file name="grid3-special-col-bg.gif" hash="bef8da30fbdebda6c46c52ec677aa7fd"/><file name="grid3-special-col-bg2.gif" hash="e01a722fad667447946194168335723c"/><file name="grid3-special-col-sel-bg.gif" hash="604dae97d814027ec90ea893bd82aac6"/><file name="group-collapse.gif" hash="94415d98e2a80ba4032cc2f1d7e39180"/><file name="group-expand-sprite.gif" hash="7e6f947a866eeb249ef07e7149a08301"/><file name="group-expand.gif" hash="5cb72da3f62a00c819271e1e4bd4b064"/><file name="page-first.gif" hash="4a7421d31823d53cc6483adebbf4e612"/><file name="page-last.gif" hash="79765f1921de6b5c3876d2137d1bb6b9"/><file name="page-next.gif" hash="3aede076a4e04cbb9ec3f5e9366eb85f"/><file name="page-prev.gif" hash="d3feff4ce5031c61236d08081acd5e32"/><file name="refresh.gif" hash="c8e02891ee272feb291fb3e1d160aca7"/><file name="row-expand-sprite.gif" hash="af003a335c529b768ae54341c55f286d"/><file name="sort_asc.gif" hash="cee26d5226e56e505af9fe2e92b703e4"/><file name="sort_desc.gif" hash="8d391c69a118af01c77fe812da2317d0"/></dir><dir name="menu"><file name="group-checked.gif" hash="7fb15d614b479da1164de9c213e4b4c4"/><file name="item-over-disabled.gif" hash="ef4c60a3965660a40aaac87434cd47b6"/><file name="item-over.gif" hash="448c69a3758682479a5cb532b5df902a"/><file name="menu-parent.gif" hash="f95f840cbfda084c891ed6e9841fd4e2"/></dir><dir name="panel"><file name="corners-sprite.gif" hash="154047c3b38abc110a43c348ea693c77"/><file name="left-right.gif" hash="1050c80869b13c1bcca6319b048ea1a5"/><file name="light-hd.gif" hash="30be5fa3a5bc389f4de260e91ff24f5b"/><file name="tool-sprite-tpl.gif" hash="4b1322b5966a588abb0829b27818f738"/><file name="tool-sprites.gif" hash="2f408e54b7eff4f7d95a5271cb77d58b"/><file name="tools-sprites-trans.gif" hash="cae0c8ca75402cc7e096b743abbf154c"/><file name="top-bottom.gif" hash="2cc75c4c076232ba842d63778e20aaf6"/><file name="top-bottom.png" hash="2a65a27def756a0951644b511f6f2cce"/><file name="white-corners-sprite.gif" hash="c22ed792c859ce8dcdfd52f6d6b15e3f"/><file name="white-left-right.gif" hash="52d662a46dc90b5043765f2d6d0c1acd"/><file name="white-top-bottom.gif" hash="67dc9d08c730ee91bdcf078d5071580a"/></dir><dir name="progress"><file name="progress-bg.gif" hash="adc5ea35c3741781897e075608b6c92f"/></dir><dir name="qtip"><file name="bg.gif" hash="63f297dd8fa77f097616d840e9ad0e70"/><file name="close.gif" hash="0379d036250096cae2e42b427b3df2e7"/><file name="tip-anchor-sprite.gif" hash="d5449663db06c74c4d8fada9b2572ff9"/><file name="tip-sprite.gif" hash="93e366d85a0cbd19cb6001a9254dfa2c"/></dir><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><dir name="shared"><file name="hd-sprite.gif" hash="dcfc6da1969e38360f4a0b858303fe27"/><file name="left-btn.gif" hash="fdcd1ea713557afe17bd7412a490c329"/><file name="right-btn.gif" hash="192c5bc33dd9f780439db51c8777dc4f"/></dir><dir name="sizer"><file name="e-handle.gif" hash="b92c94b88dfd8743226fa470f1496801"/><file name="ne-handle.gif" hash="fbd3e5f90df02cc9084ba43a40dafb60"/><file name="nw-handle.gif" hash="b1cbf1aa7df6305701152f0708f2a5b2"/><file name="s-handle.gif" hash="ce25405d986f9c38a6b61e6291aecf4b"/><file name="se-handle.gif" hash="a71d1f8a7d1d1e554bac77d838c1e1d2"/><file name="square.gif" hash="0ce14318c0a8643d11e723f2c95b3cb1"/><file name="sw-handle.gif" hash="7e8854d3f963767ccbafd3e4fb4f4a26"/></dir><dir name="slider"><file name="slider-thumb.png" hash="aae90a90a30074bed9aec149d39f0864"/><file name="slider-v-thumb.png" hash="80a24e024df1ece670f4a074f11b91ca"/></dir><dir name="tabs"><file name="scroll-left.gif" hash="2e262700bde38f1a5e0b433bff392e5d"/><file name="scroll-right.gif" hash="1333d896f57dfdcc8b73b4a391af8c65"/><file name="scroller-bg.gif" hash="85fc3011aa8416fc9f6cd6cdfee8ff54"/><file name="tab-btm-inactive-left-bg.gif" hash="79692d0d06efdfee4352eb2313fc405f"/><file name="tab-btm-inactive-right-bg.gif" hash="2f38f98c02e576e7c07abab79b635599"/><file name="tab-btm-left-bg.gif" hash="174345d57983dcf5d38ed7717b3a17b3"/><file name="tab-btm-over-left-bg.gif" hash="84c12e3dfab9d5db75d05c0057a8cb63"/><file name="tab-btm-over-right-bg.gif" hash="661d17f45d9bd60be78d7b62931821f6"/><file name="tab-btm-right-bg.gif" hash="904bd37fe0eac4fd2e42adc3693eeed3"/><file name="tab-close.gif" hash="9ed7d602bee0483b8aa34d2084c77754"/><file name="tab-strip-bg.gif" hash="5b8f86def656924e8d4e49e438a205a1"/><file name="tab-strip-bg.png" hash="d99e3b7b2610f3c85aa943fe139e6afa"/><file name="tab-strip-btm-bg.gif" hash="8e5594b6e95ef5edd30b3a2d0bb1f3cd"/><file name="tabs-sprite.gif" hash="4dc716e5213e4d9d2731d0e79953ea2f"/></dir><dir name="toolbar"><file name="bg.gif" hash="5c8ff0ea2f6e1226154f660006bb5013"/><file name="btn-arrow-light.gif" hash="fa49b39a0fd88ef26264da44a2b4edea"/><file name="btn-arrow.gif" hash="12bda29a4c8016cfa047e852c4353f59"/><file name="btn-over-bg.gif" hash="faddf9b24cefa721326ba3f87f3ef31f"/><file name="gray-bg.gif" hash="4bf225cf4ff1919a265531d824dd52aa"/><file name="more.gif" hash="18af410b9b19aac389fa81fe6d5c4d79"/><file name="tb-bg.gif" hash="5309337fd7a22cab9d9467fd9eaa0a0c"/><file name="tb-btn-sprite.gif" hash="7c7d5c1029d25748b9323a67dd8dc92f"/></dir><dir name="tree"><file name="arrows.gif" hash="e0d51c37061742fcdc5e141d9030c483"/><file name="elbow-end-minus-nl.gif" hash="f97a7974397413cedcc4da01c695c5c0"/><file name="elbow-end-minus.gif" hash="ad767cf0df09e850978cfad5903ada3e"/><file name="elbow-end-plus-nl.gif" hash="07b4ba4f1d4c0f3d24f987740b5d97d4"/><file name="elbow-end-plus.gif" hash="07c97874af5a14d909bc462c38d1d5c2"/></dir><dir name="window"><file name="icon-error.gif" hash="f477b54b6b8361362e96c2218dce7ea0"/><file name="icon-info.gif" hash="ec6b7a5d4caeea767c8674689bae47c6"/><file name="icon-question.gif" hash="2713644a8aa582728d71e35eca62fbcd"/><file name="icon-warning.gif" hash="3f20258272af0e00f6b7531b3b9aee35"/><file name="left-corners.png" hash="f5cccec900e527983d402d1a8cccecb3"/><file name="left-corners.pspimage" hash="cbd1e105535264872643345cd53df57c"/><file name="left-right.png" hash="2bc0b5bcc87f58d7825754a457f8d671"/><file name="right-corners.png" hash="d0c47fa4e6f1ecdbe8aed7444c8724ca"/><file name="top-bottom.png" hash="22bb60d1a515987e330b169d2d85290f"/></dir></dir></dir><file name="resources.jsb" hash="a260baacbb946040b32af83ec8338720"/></dir></dir><file name="jquery-1.5.1.js" hash="6dc6e4228017b636f11219814557140c"/><file name="jquery-1.6.1.js" hash="224b35c665c4da1ca48c0e4e1e45bf22"/><file name="jquery-1.6.js" hash="55923e3f8725714066ff2dab2f44a558"/><file name="jquery.json-2.2.min.js" hash="c35073f4c0a702e2343b64f330089a81"/><file name="jquery.store.js" hash="939a5a76f6963629c6ae0882f5e7d4ef"/><file name="sanitize.js" hash="a2fb0b1897ce9b6a4f08b9bfcff6e37c"/></dir></dir><file name="package.json" hash="bce605e9114b898debc347f12e455493"/><dir name="plugins"><dir name="common"><dir name="abbr"><dir name="css"><file name="abbr.css" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="lib"><file name="abbr-plugin.js" hash="4fa988644a52539b577e46c8145026c8"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="5d4c1762c21e0c467b4d7c0c20d1fd98"/></dir><file name="i18n.js" hash="e254d2a5cccef92ce3301c365f15f012"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="align"><file name="LICENSE" hash="3ff425193c10ca6a9375e287cb2c5c7e"/><file name="README" hash="2ca9425ae8d8209ddc282885d158a6fd"/><dir name="css"><file name="align.css" hash="e00da6b17e9970689a167560b56422b3"/></dir><dir name="img"><file name="align.png" hash="37576554bc097195c180ae7500c480cd"/></dir><dir name="lib"><file name="align-plugin.js" hash="2e1bd101469face9febeb6bd9fc800b5"/></dir><dir name="nls"><dir name="en"><file name="i18n.js" hash="0deaa30fccaeb6d765636fc9809e7fd3"/></dir><dir name="fr"><file name="i18n.js" hash="336f7188ccba16474e90ccd3eb97cfa0"/></dir><file name="i18n.js" hash="7b909244c11beb704074683397562e35"/></dir><file name="package.json" hash="da3d4e6914c3fd5140d638a103e94b15"/></dir><dir name="block"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="block.css" hash="070d42ce424589e51eb4e8921bfc36d7"/></dir><dir name="img"><file name="toolbar-draghandle.gif" hash="eb4decc8476551903a24f66f788e8793"/></dir><dir name="lib"><file name="block-plugin.js" hash="c68bf9da6bedf019cfa57677872f42b4"/><file name="block.js" hash="4a3712febeeba4641d1b2c08549f4443"/><file name="blockcontenthandler.js" hash="a8122c7b1c23109244b5f90a1b2df1b6"/><file name="blockmanager.js" hash="5a8878096dd57c13298ccef6f6565120"/><file name="editor.js" hash="7af65eb03e1376987e12c6a7ba504271"/><file name="editormanager.js" hash="344c08f707618d195e1a24bab263036c"/><file name="sidebarattributeeditor.js" hash="4549b30151ad6b5b62ad4e8ca8be9ec8"/></dir><file name="package.json" hash="e33741b838a104126c8603c877a9f293"/></dir><dir name="characterpicker"><dir name="css"><file name="characterpicker.css" hash="cf4a0347bdc31f0b28f36f1590eb06c7"/></dir><dir name="img"><file name="icon.png" hash="9c227d1d31a57e04feacddff9a2c5648"/></dir><dir name="lib"><file name="characterpicker-plugin.js" hash="eaca9268b185b851a24104be7492f685"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="907ae1f1e333ee06d1bca445270c7bb2"/></dir><file name="i18n.js" hash="db9b178e36c66d20e8fe361f1d243226"/></dir></dir><dir name="commands"><dir name="css"><file name="abbr.css" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="lib"><file name="commands-plugin.js" hash="5959952ff44097c371a03679b32aa7d4"/><file name="inserthtml.js" hash="877f8abc0a15ee71a450622794e86c9c"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="contenthandler"><file name="README.md" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="lib"><file name="contenthandler-plugin.js" hash="e00590b431446704dc427b4dbc0f5f98"/><file name="genericcontenthandler.js" hash="90385ee5adc376bb64ca26519e3a7a16"/><file name="oembedcontenthandler.js" hash="caa2cf241768337bcc6a3bb2c013511c"/><file name="sanitizecontenthandler.js" hash="b35938402db0440f3d39ad8f89eb648b"/><file name="wordcontenthandler.js" hash="cf4ab620ec8adbafc1a0ab618ab78afa"/></dir><file name="package.json" hash="99914b932bd37a50b983c5e7c90ae93b"/></dir><dir name="format"><dir name="css"><file name="format.css" hash="6861fed2e14a2acf1d6d3dea5693cc9c"/></dir><dir name="img"><file name="em.png" hash="0360b83b79c8e835a3105148e58ca5e5"/><file name="strong.png" hash="7915567b2d094f11debd728827d59f40"/></dir><dir name="lib"><file name="format-plugin.js" hash="fc4f1f1e10e3f61f9d9c861f25e518ed"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="edbb27aa036b3ed4b86ed6ff3d7ecaea"/></dir><dir name="eo"><file name="i18n.js" hash="ec2f3e02978d561bd5568a7e95764a67"/></dir><dir name="fi"><file name="i18n.js" hash="60c9294a20827e6da5b908ab43d13aa4"/></dir><dir name="fr"><file name="i18n.js" hash="205109959b86eae4db7e85304b758906"/></dir><file name="i18n.js" hash="29af4f07b85487e1972e329be63d0588"/><dir name="it"><file name="i18n.js" hash="f394c11f2339e83ff7cec9ff03a5ed33"/></dir><dir name="pl"><file name="i18n.js" hash="c44a5da4cd985395739cf4d6ee81b29f"/></dir><dir name="ru"><file name="i18n.js" hash="2bbff95b12d7a202bce7a0a3f09bb6cd"/></dir></dir></dir><dir name="highlighteditables"><dir name="css"><file name="highlighteditables.css" hash="5f9f2e7e79b38b38d92951dc03285163"/></dir><dir name="lib"><file name="highlighteditables-plugin.js" hash="adf15104410d66624ddf078601fb28c4"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="horizontalruler"><dir name="css"><file name="horizontalruler.css" hash="2b93564ebe3b6c830eb439604da59ce2"/></dir><dir name="img"><file name="icon.png" hash="0e3bca3460798e2a00c4ac437e2b7cdd"/></dir><dir name="lib"><file name="horizontalruler-plugin.js" hash="24e62e70a694b2b9fe9ea91d004cc4af"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="a20013dba6bd343b243463e7ec82039c"/></dir><file name="i18n.js" hash="ee3de246cbfb27e710e109db0d3ae983"/></dir></dir><dir name="image"><file name="AGPL3" hash="c5edf65bb50f2284b1be0196d5a95c89"/><file name="LICENSE" hash="3e62a489a9c73be5487ef9038e002c3b"/><file name="README.md" hash="6c0b3051d9fd87e45a88a7cc00e42dd8"/><dir name="css"><file name="image.css" hash="6d31e1cd7a271931e2e642fb273844a4"/></dir><dir name="demo"><file name="crop.html" hash="82488dc281a1613cb1599a7285cfbb7e"/><file name="crop.php" hash="501237a45ef8c345f95e159843c3236b"/><file name="cropnresize.jpg" hash="0edf07c3ea54e42ab7853229b5dca0a9"/><file name="index.html" hash="3119be3754949bfec58e78aba7f7c58a"/></dir><dir name="img"><file name="blank.jpg" hash="6d5bfd4672e0efede2e504ae7bb2cf32"/><file name="crop-buttons.gif" hash="0e4da82afb71162a3a0af60630d3e337"/><file name="cropnresize.png" hash="d7b16b232d8c50bd752124d2913eb7c3"/><file name="handle-sw.png" hash="3186033209be1fe35a23b76c31846045"/><file name="image-align-left.png" hash="2dde195149c676d7efd3499f1e9da1a4"/><file name="image-align-none.png" hash="e9c1995da7259d2a8fa781f4c25985dd"/><file name="image-align-right.png" hash="054a533583c93c6f8d188b90862e0176"/><file name="image-border.png" hash="3571557fc1ecee72bf6534eb9c7f906c"/><file name="image-title.png" hash="995887637e91caac42c98b1c9eefb831"/><file name="image.gif" hash="afaf217b75f8a0f0e80d2d49e88ced4e"/><file name="padding-decrease.gif" hash="1e286415e3acdffd37c039baff4f9362"/><file name="padding-increase.gif" hash="1f7ef1c19e5c90b339be4e04a88240be"/><file name="page.png" hash="55a687e848244b76f8d8249b111df860"/><file name="size-decrease.gif" hash="8fd3a7236e97fd5abe2215fe11ef39fc"/><file name="size-increase.gif" hash="693618eba55979b4c7e03484b92a52f3"/></dir><dir name="lib"><file name="image-plugin.js" hash="a767413cff4d03e8f9cc07dbd6eb4f35"/></dir><dir name="nls"><dir name="cz"><file name="i18n.js" hash="79b54d1f0ba8ba6d313c171c412e6553"/></dir><dir name="de"><file name="i18n.js" hash="a82bb4c7508a558f3b7638c87a3f75a1"/></dir><dir name="fr"><file name="i18n.js" hash="f5007dfc86ad1a9a4cd708638156d19e"/></dir><file name="i18n.js" hash="955a3243f98f92002e19f36b8ad8af8b"/><dir name="ru"><file name="i18n.js" hash="0aeb948daf24af5d6a6bfa0080249094"/></dir></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/><dir name="test"><file name="test.css" hash="e940fc900051dcd8805e0acc98e0d0bf"/><file name="test.html" hash="e038d522dbbd74e1df52e52839470c78"/></dir><dir name="vendor"><dir name="jcrop"><file name="jcrop.gif" hash="7a4b4c6ebdb549fcbe47408f9457493e"/><file name="jquery.jcrop.css" hash="0442701ebd3542ecd17573ba1175ae1a"/><file name="jquery.jcrop.min.js" hash="3bbd52bffc25a16db572ff43eb3a841c"/></dir><dir name="mousewheel"><file name="mousewheel.js" hash="973f3b0b9e90b6c17331032407f83143"/></dir><dir name="ui"><file name="jquery-ui-1.8.10.custom.min.js" hash="23bf25c6a6930bc9b955db2a58229709"/><dir name="ui-lightness"><dir name="images"><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="95f9cceeb9d742dd3e917ec16ed754f8"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c18cd01623c7fed23c80d53e2f5e7c78"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="5f1847175ba18c41322cb9cb0581e0fb"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="d26e8f463195a7b86f86b7d550cfc114"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="e5a8f32e28fd5c27bf0fed33c8a8b9b5"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="58d2cd501e01573cf537089c694ba899"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="384c3f17709ba0f809b023b6e7b10b84"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="b806658954cb4d16ade8977af737f486"/><file name="ui-icons_222222_256x240.png" hash="ebe6b6902a408fbf9cac6379a1477525"/><file name="ui-icons_228ef1_256x240.png" hash="79f41c0765e9ec18562b20b0801d748b"/><file name="ui-icons_ef8c08_256x240.png" hash="ef9a6ccfe3b14041928ddc708665b226"/><file name="ui-icons_ffd27a_256x240.png" hash="ab8c30acc0e3608fb79e01fccf832c70"/><file name="ui-icons_ffffff_256x240.png" hash="342bc03f6264c75d3f1d7f99e34295b9"/></dir><file name="jquery-ui-1.8.10.cropnresize.css" hash="851152e46271d895d2e9d4061b833eff"/><file name="jquery-ui-1.8.10.custom.css" hash="d94d6cfc82c0942b6e3841586788cf04"/></dir></dir></dir></dir><dir name="link"><dir name="css"><file name="link.css" hash="1f95e0fab434698b7cbba2d05ff0aa5c"/></dir><dir name="demo"><file name="background.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="external-link-ltr-icon.png" hash="ddbdb9378a821fc07947f54d26237b51"/><file name="index.css" hash="a6b3e9c419c962e4866469578b6b98da"/><file name="index.html" hash="404b32311a774f4c3511fc94fd812140"/></dir><dir name="extra"><file name="delicious.js" hash="633805e5b8241b49b3b198d60c70b67b"/><file name="linklist.js" hash="5945e0e3bbbc1e42becb1ce8ea223b9f"/><file name="slowlinklist.js" hash="ccef47b7f52705cb58e3b84054c6e153"/></dir><dir name="lib"><file name="link-plugin.js" hash="1e4f40b2653d38aee8b5762d2520cdac"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="d99fc803f4f91751e6daf9c3cc7e08a6"/></dir><dir name="fr"><file name="i18n.js" hash="8f789ed2a046f93e852c00c9c726b191"/></dir><file name="i18n.js" hash="32fbe55d130eb228b9133c65b7081d84"/><dir name="pl"><file name="i18n.js" hash="eb8d4d76407d90b7ae53350f01d92bf6"/></dir><dir name="ru"><file name="i18n.js" hash="4f56f53941c22e9d4b1d1c589bcbe806"/></dir></dir></dir><dir name="list"><dir name="lib"><file name="list-plugin.js" hash="4dc58630f1d752237b5ed5987f5c6937"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="d3407657a23d77c834a215d7bf3b8df5"/></dir><dir name="eo"><file name="i18n.js" hash="da3a34d8833bcca6abed2cbbb094d4d1"/></dir><dir name="fi"><file name="i18n.js" hash="4973655cb37200c31d008fd32f2715fb"/></dir><dir name="fr"><file name="i18n.js" hash="721ed4f10e28cb55c604c624440afcfc"/></dir><file name="i18n.js" hash="233206aff494f605e25cbc267741ae4b"/><dir name="it"><file name="i18n.js" hash="b46598e5b5b8ef742fe27ff2d7bf5b50"/></dir><dir name="ru"><file name="i18n.js" hash="4a68a5ca235ba3192cfd11a2466ebdd5"/></dir></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="paste"><file name="README.md" hash="3d5f9f079a3bfb9724af1cb433693ae4"/><dir name="lib"><file name="paste-plugin.js" hash="71632a4580656526dcea5388084ad833"/></dir><file name="package.json" hash="1a8f3a3a4ee37a9a66a4a0cf26cd2f11"/></dir><dir name="table"><dir name="css"><file name="table.css" hash="856755f60e184c46d19c3a119feedba2"/></dir><dir name="img"><file name="down.cur" hash="4a8143598b132d1866933b6aa43a5090"/><file name="left.cur" hash="d005b5f77f028c3848d747f27504cd67"/><file name="table_layout.png" hash="99dc211325386a792e289576356245f7"/><file name="wai-green.png" hash="702a0ddbb339531909d57c53ae7e68e6"/><file name="wai-red.png" hash="84f1be7bc7005575742bda4f778ba5cc"/></dir><dir name="lib"><file name="table-cell.js" hash="45cfda06bd0d312a2146ed977a362144"/><file name="table-create-layer.js" hash="8288651b20fff3f87d615ef0678006aa"/><file name="table-plugin-utils.js" hash="c9cf7c4eed7c6b221d467000d4cf49ca"/><file name="table-plugin.js" hash="6c335ddc986b1499da59150065b1aea9"/><file name="table-selection.js" hash="4b46f81520ddfb83b78ec3a0f41ebf0f"/><file name="table.js" hash="133ba9028000d3a543aec8e146c8764b"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="43b5b78eb8d565a617a95de8b6192551"/></dir><dir name="eo"><file name="i18n.js" hash="81235be488daa67a07db9c56122c6640"/></dir><dir name="fi"><file name="i18n.js" hash="2479b5c25399986d56859c26f104b7eb"/></dir><dir name="fr"><file name="i18n.js" hash="f02f3353ac8a0f8694028234edfea6d5"/></dir><file name="i18n.js" hash="0e00d3e981c15934feae36aa8b99c6b0"/><dir name="it"><file name="i18n.js" hash="da8533c0e6506984f9b7a1070fe9dfff"/></dir><dir name="pl"><file name="i18n.js" hash="bf5d7b0802aeddf24dfd330b488c5968"/></dir><dir name="ru"><file name="i18n.js" hash="f9d96be10d92eb6dd9ce6c57a7d2d978"/></dir></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="undo"><dir name="demo"><file name="index.css" hash="9e891121c2afbebf93e7e60246e4ad83"/><file name="index.html" hash="d568ce5e98f9125a537804b9da5b5727"/></dir><dir name="lib"><file name="undo-plugin.js" hash="924f5fab6fc06a703a93c91e0c52396d"/></dir><file name="package.json" hash="18c1a188849323bf6e7e9cff41afaac1"/><dir name="vendor"><file name="diff_match_patch_uncompressed.js" hash="9638822ae1bce2e292fcfedc62bb1f59"/><file name="undo.js" hash="da570c614fdbca470fec4e8ad148fc88"/></dir></dir></dir><dir name="extra"><dir name="attributes"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="attributes.css" hash="1fdb19dfbee928ab94cbdae4f83c9a97"/></dir><dir name="lib"><file name="attributes-plugin.js" hash="5e5097a65f6fdcab9594d8df0ae4834b"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="dd9bd5e3a7d01e1c09b5308c8ca34a21"/></dir><dir name="en"><file name="i18n.js" hash="712183db4b838ce7d90478722333f0f1"/></dir><file name="i18n.js" hash="5ba01bebc68d37746351bd2d87df415f"/></dir></dir><dir name="browser"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="browser.css" hash="4e1b1592c1122fb001641a08f97663d7"/><file name="browser.jqgrid.css" hash="64479006b4e1ff84490e17af9c16b225"/><file name="browsercombined.css" hash="6fc54ddc5610fb3acdc8b6a1870a2af3"/><file name="browsercombined.css.backup" hash="2c4d264b7f8792d01fd98b75dcaafcea"/><dir name="images"><file name="ui-bg_flat_0_aaaaaa_40x100.png" hash="2a44fbdb7360c60122bcf6dcef0387d8"/><file name="ui-bg_flat_75_ffffff_40x100.png" hash="8692e6efddf882acbff144c38ea7dfdf"/><file name="ui-bg_glass_55_fbf9ee_1x400.png" hash="f8f4558e0b92ff2cd6136781533902ec"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="e5a8f32e28fd5c27bf0fed33c8a8b9b5"/><file name="ui-bg_glass_75_dadada_1x400.png" hash="c12c6510dad3ebfa64c8a30e959a2469"/><file name="ui-bg_glass_75_e6e6e6_1x400.png" hash="f4254356c2a8c9a383205ef2c4de22c4"/><file name="ui-bg_glass_95_fef1ec_1x400.png" hash="5a3be2d8fff8324d59aec3df7b0a0c83"/><file name="ui-bg_highlight-soft_75_cccccc_1x100.png" hash="72c593d16e998952cd8d798fee33c6f3"/><file name="ui-icons_222222_256x240.png" hash="ebe6b6902a408fbf9cac6379a1477525"/><file name="ui-icons_2e83ff_256x240.png" hash="2b99a5e48d3c3957d03027d36a25e8bb"/><file name="ui-icons_454545_256x240.png" hash="119dd0c2e94ad689de873ef39fd43e6e"/><file name="ui-icons_888888_256x240.png" hash="9c46d7cab43e22a14bad26d2d4806d80"/><file name="ui-icons_cd0a0a_256x240.png" hash="3e450c2a2c66328d9498e7001ad7197c"/></dir><file name="jquery-ui-1.8.13.custom.css" hash="add5823bf09137483b9a3b79594c5244"/><file name="jstree.css" hash="af6da23bddd3db20b51765d4e802cee1"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="ui.jqgrid.css" hash="5e9d7c95ff319a2101ff5e81cb905d47"/></dir><dir name="img"><file name="arrow-000-medium.png" hash="c2870570006136595d4737f89c0c5516"/><file name="arrow-180.png" hash="ad22f4334ecfb3e893b916a79cc1ae67"/><file name="arrow-315-medium.png" hash="4670462a741f95158e8e277d2d0383bb"/><file name="arrow-stop-180.png" hash="cb7973a56cd00a0921c470c88265a003"/><file name="arrow-stop.png" hash="f42613a7be2001780d299b2ef41ca77b"/><file name="arrow.png" hash="64c6eb55ead1f4fecb2c645f66d9079e"/><file name="control-stop-square-small.png" hash="c96acaae6af582895d71c3e8b2442245"/><file name="folder-horizontal-open.png" hash="838cb1eedd8fa64c941fc3a49fd0cc82"/><file name="folder-open.png" hash="d7d8fc83a85febaab02389d4e7dc9bd1"/><dir name="gcn-icons"><file name="gcn-icon-file.gif" hash="ac2aab27953019e09c128a4ae499487d"/><file name="gcn-icon-image.gif" hash="ad4ef7a3f1b21642a3146688d73992b6"/><file name="gcn-icon-page.gif" hash="56e8bb8b44a09fe321b3ef9bcf20fbbe"/></dir><file name="magnifier-left.png" hash="03d386f15d932839012de55ec2262563"/><file name="page.png" hash="55a687e848244b76f8d8249b111df860"/><file name="picture.png" hash="d2040c34ba1ffd8fa5b72ab37be11eca"/><file name="sort-alphabet-descending.png" hash="b0687ee5cb61abb9f35c9b7c13c4636b"/><file name="sort-alphabet.png" hash="c70f28d00c668f48764dd7e84ce1e077"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/></dir><dir name="lib"><file name="browser-plugin.js" hash="1998a46712ed1d997288f7b30141cd86"/><file name="browser.js" hash="6148d01c9ba94789c38b158ecd8120fb"/><file name="locale.js" hash="a847e910384e41b2842b20791f348484"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="45a966d44587f35700fcf8987ffb65ef"/></dir><file name="de.json" hash="da83f1ee8d94a5d126d71a89ba5ee1a2"/><dir name="en"><file name="i18n.js" hash="17374af52c2aa88a0b5cafdf954e4291"/></dir><file name="en.json" hash="c99f6a248ca7be514520b612b1105347"/><file name="i18n.js" hash="d2371ed0d45cb2d895e771f9b78cb434"/></dir><dir name="vendor"><file name="grid.locale.de.js" hash="4df90894fc5b4b6e1988ecbab13c8f63"/><file name="grid.locale.en.js" hash="1b7a16d0a6027a808a7d6360b47b5f72"/><file name="jquery.jqGrid.js" hash="718d3905698f62dd5d88a6fa3ebd56ff"/><file name="jquery.jstree.js" hash="f1c8261f0fa89950cd9257d1698430b6"/><file name="jquery.ui.js" hash="f08f2b04c76fad103aba44601e386580"/><file name="ui-layout.js" hash="72d2d5555fa66aa693b3973cbd8ce458"/></dir></dir><dir name="cite"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="cite.css" hash="3a940e1148b6f6355b04a3617b274c2c"/></dir><dir name="img"><file name="blockquote.png" hash="cd835c578628f97c9e005ccf84b3ab53"/><file name="icon_cite.png" hash="8e79ff67005c66bcd6b1f14df213073b"/></dir><dir name="lib"><file name="cite-plugin.js" hash="f95b8845a87929b1bed43c71494bcbe8"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="d1820518e50b2c33596ae1212e2d6cc6"/></dir><dir name="en"><file name="i18n.js" hash="d17d574df1dc2c9822d31e38b4303192"/></dir><file name="i18n.js" hash="9f95915cac533f2f6187431991c1c0b2"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="comments"><dir name="img"><file name="add-icon.png" hash="1fce54244839a6752fc4c50493c9f073"/><file name="add.png" hash="2e964921e93f16be8443468e440a931e"/><file name="comments.png" hash="761cd09498144b2d04532ddf3a0661c5"/><file name="hr.png" hash="dc2c6cbf786afad881889e896b541f3b"/><file name="textbox.png" hash="51d41b814c14c1aa42ea7d496d724ce6"/></dir><file name="package.json" hash="99914b932bd37a50b983c5e7c90ae93b"/><dir name="src"><file name="comments.css" hash="f5127e74b38aee1c700f3c3ec85c1851"/><file name="comments.js" hash="9d133ed95eee8efc238adaa7de4db8b5"/></dir></dir><dir name="draganddropfiles"><file name="AGPL3" hash="c5edf65bb50f2284b1be0196d5a95c89"/><file name="LICENSE" hash="5b77f1f48f8f9ae828474ea28169a6e4"/><file name="README.md" hash="48f4b8edd1bc74d5eb513f496dc0e34d"/><file name="TODO.md" hash="12358ef24fe64cdbc45a7360ea6e4508"/><dir name="demo"><file name="index.css" hash="eda9095e66bbb23be82cab846a46b018"/><file name="index.html" hash="0becd9d06b155c38a6d261434868be3a"/><dir name="migration"><file name="index.css" hash="65428b4044219dcf3c9e3a04e7d4d118"/><file name="index.html" hash="2ae8ccec41e7f311f33057d79a9ec846"/></dir><dir name="specs"><file name="DragnDropnImage.graphml" hash="6f05cbb2740b456cb54543a9bdddcc2c"/></dir><file name="style.css" hash="eda9095e66bbb23be82cab846a46b018"/><file name="upload.php" hash="45ec2904a41bae9d338c9c90fb8756a7"/></dir><dir name="i18n"><file name="en.json" hash="d08757e391c65e12e7c36ecb1a637263"/><file name="fr.json" hash="406a8a7cd58f4b89e52557b1df3ce5b5"/></dir><dir name="img"><file name="cross.png" hash="42492684e24356a4081134894eabeb9e"/><file name="hourglass.png" hash="b88dbbae104c8c7c939641993b2872ae"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="page.png" hash="55a687e848244b76f8d8249b111df860"/><file name="tick.png" hash="c9b528b9541e127967eda62f79118ef0"/></dir><dir name="lib"><file name="draganddropfiles-plugin.js" hash="213c6b37963801bf1bae42d969db6ece"/><file name="dragndropfiles.css" hash="25d0c7654b280019773f1f2b86e54b66"/><file name="dragndropfiles.js" hash="05512f8dbae550cdfd19bb477b0b0db5"/><file name="dropfilesrepository.js" hash="117cf2ea2d3c1a3bc58061e87a05673c"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="flag-icons"><dir name="img"><dir name="flags"><file name="aa.png" hash="ff12619c22af4199394503222998e329"/><file name="ab.png" hash="aac61a45d2a8b539135c86c541e61487"/><file name="ad.png" hash="cc750844215aed20b2b05c10d6082b0d"/><file name="ae.png" hash="7391e6b6df7b181d51ffeb2a5a6d7bd4"/><file name="af.png" hash="ae7c58272ae46cde945ccc4bed00fe9e"/><file name="ag.png" hash="390af4c36d462bbf2627a1182946825a"/><file name="ai.png" hash="08cf0788a582710062140f69887300fc"/><file name="ak.png" hash="bc6bc75ca2a8a944806625f6c30c72c4"/><file name="al.png" hash="7c5bc720b2cf3047c9fab800e271eec9"/><file name="am.png" hash="fd5d9d1d864ea76406afec5e11f2632f"/><file name="an.png" hash="7d7d682a9dc9f2a26a6dea1fdb87334f"/><file name="ao.png" hash="41a8aa1e11f7086d2413d8d9a777680b"/><file name="ar.png" hash="2fa357868e66f1aec9c4c4230baa45b3"/><file name="as.png" hash="96e49204e758277b6720584c4d844ecc"/><file name="at.png" hash="62bf1a5653692b34b2ee1f734a59b062"/><file name="au.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="av.png" hash="785b4464ecbc9101cc951cafcd28a013"/><file name="aw.png" hash="6e82279ceb4702171f345fead7ff3e35"/><file name="ax.png" hash="27708378fcc025e375fd3c303fc1cbd6"/><file name="ay.png" hash="fea52366cf644c57cff3ea9e417c21ae"/><file name="az.png" hash="d63f5c99e25eca9de2a97f63161f38e6"/><file name="ba.png" hash="cbb6ce46c69e14bbd8d2c8fd91680d33"/><file name="bb.png" hash="47c8aea417660e5f4e8b5a7a73f2cb18"/><file name="bd.png" hash="f02d8deb9de271cd246646872798af15"/><file name="be.png" hash="2404b88a07bdb7aef652eec0f6fce287"/><file name="bf.png" hash="cc65efa74cd7367933ecd52115204b2d"/><file name="bg.png" hash="77b2183ab10cd26ee4e79fdfc12b8621"/><file name="bh.png" hash="5bbf6106968b2517d924bac4d99b41bd"/><file name="bi.png" hash="427c72cd341f288faf0e62f03586c7ba"/><file name="bj.png" hash="67bd2e990cc7e3dc5bbae821fd38f20c"/><file name="bm.png" hash="cf195bf1921659202cf8ae899e9171d0"/><file name="bn.png" hash="4911cd2a8fae48d82f9ce124d908be3c"/><file name="bo.png" hash="151854ff619d7a44894a37b5be73f463"/><file name="br.png" hash="54c40b8a9ad7df4783d19acc05910f8e"/><file name="bs.png" hash="8b45f84cb140ec2448692187a82abfc7"/><file name="bt.png" hash="2f13e87c1868b03b0b47cd0bb60737d5"/><file name="bv.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="bw.png" hash="15d59270fb25d9e467d5a730682c5644"/><file name="by.png" hash="9e18ac464c49a91d90eaf11ad21357e9"/><file name="bz.png" hash="6e14aaafe632fe367409415545c27e73"/><file name="ca.png" hash="8618709a45d8d1c4d9d254c61bdf29b8"/><file name="catalonia.png" hash="76991f3da407b7dec2603ff86f1b9724"/><file name="cc.png" hash="ebbfb19d79975289e7a9cbb12caf0a23"/><file name="cd.png" hash="34e2a72a9cb9e873db413b020d7f1845"/><file name="ce.png" hash="91d3b05187115efb95a9529063b6dfbf"/><file name="cf.png" hash="252d14145f4c47374a3e0bc2bb8ae0bf"/><file name="cg.png" hash="b5bed6c75a72dc56f8eb8c559d437f59"/><file name="ch.png" hash="e67b19a7767114078cda2b3c874a5d5b"/><file name="ci.png" hash="90e8d52c215176bb04b7453b84e6fa43"/><file name="ck.png" hash="e70409285b72ac2ebd8d6ee1849e4083"/><file name="cl.png" hash="dc7b3be27813faeb454d02b55b79b9e3"/><file name="cm.png" hash="f5cdc865bf36948532707c42e716e14a"/><file name="cn.png" hash="a82ff00f39eff54062328b4474c33dbc"/><file name="co.png" hash="4bd223b284a0900cda6826ee656c5333"/><file name="cr.png" hash="cd28a01f91e89fa2b844857642fd5fb7"/><file name="cs.png" hash="4db37e9044c342fb819515d13768e058"/><file name="cu.png" hash="9d5366e9b01d5cd428429e608433d5f3"/><file name="cv.png" hash="2f4edfdcba4cdb3fa903047a235f3296"/><file name="cx.png" hash="8efc55a14b900c47f4b920c4510f192f"/><file name="cy.png" hash="f29741d622fe02759bb7a2a91eb5e2e0"/><file name="cz.png" hash="815b6d2bf60a3179c0652f0b6895bcbb"/><file name="da.png" hash="fe926c8271b35febf4a6cb0a41b111eb"/><file name="de.png" hash="ddabae687ecae5edaaeb808d440543e6"/><file name="dj.png" hash="197e6fc2579eec8bcd7303393de841ba"/><file name="dk.png" hash="fe926c8271b35febf4a6cb0a41b111eb"/><file name="dm.png" hash="85845da8ae28e94f2885ceeb16515dd0"/><file name="do.png" hash="153949105845e18a133a4c778b3de31e"/><file name="dv.png" hash="333df6f9fa1479579533dee0563f7bf1"/><file name="dz.png" hash="c57f3c0951ba1525b3359fc0acbfd6b1"/><file name="ec.png" hash="0152114421e281913d0c1c148e196c92"/><file name="ee.png" hash="1cdfaaa10ff170ce19ed46339efe3af6"/><file name="eg.png" hash="09c48d3562f0dc51e2f9507704f6437f"/><file name="eh.png" hash="7dd5a46a34bee2f10532f1213a941d7b"/><file name="el.png" hash="fd9b321b80be31c027585c8992f1799f"/><file name="en.png" hash="73f2f220f6d51d249e45a04d9a03da91"/><file name="eo.png" hash="33ceb5d48b9ff154cf6f3beeb24f1845"/><file name="er.png" hash="481d394ac9a44f3040f7c457fc1f23a6"/><file name="es.png" hash="d6693ce2a6346b2da89ceda335554e0a"/><file name="et.png" hash="73763e46da896f3e951954ad473b4a4b"/><file name="eu.png" hash="76cb57759df376c7f16c399e31e477cb"/><file name="europeanunion.png" hash="ffce5e64df4d367a20e1ef4033f60257"/><file name="fa.png" hash="086cfe2fc3d0d14d032aa53542678bb6"/><file name="fam.png" hash="0b36de21772c8d87e1d0106878b65231"/><file name="ff.png" hash="fcc4e17a79c19f8ca6098530cb13a3e4"/><file name="fi.png" hash="e30bd2493de78c998d1ac6c22d20146b"/><file name="fj.png" hash="7c3e78e31bb34b0fafbb0865737f8d36"/><file name="fk.png" hash="9627317fe9a5757ee8c06df7d8e8a887"/><file name="fm.png" hash="d3767ea95466571e10c7e563d456d754"/><file name="fo.png" hash="d0e6b0a3fdb4e2271b5b5057bd969966"/><file name="fr.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="fy.png" hash="18fa69db68a4cbf79ae660dc0346115a"/><file name="ga.png" hash="972da84bdea1359d69c719a37d89d219"/><file name="gb.png" hash="0894999b108830afc0733ee7b6e08310"/><file name="gd.png" hash="95b8b79fafc6b1510978977bc8067b46"/><file name="ge.png" hash="aa40721b7a179f6c9c8f666a64063767"/><file name="gf.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="gh.png" hash="12da850e724de5ff779572bbdb8ded71"/><file name="gi.png" hash="0ca5a4db2ac11c8a5cb57701b18b8088"/><file name="gl.png" hash="073b6bf37f6eefe07145d9dd89bc9e7d"/><file name="gm.png" hash="a7d785fa41e66a5e6d82301688686f20"/><file name="gn.png" hash="acba9c908c29db8aa890b6a20265ac22"/><file name="gp.png" hash="c2dc0a2062b24f906431337186888f01"/><file name="gq.png" hash="70f64b2b38b8a21152e7446a1b3e1133"/><file name="gr.png" hash="fd9b321b80be31c027585c8992f1799f"/><file name="gs.png" hash="3b510d36dc70edd5b301da8096c9b71c"/><file name="gt.png" hash="384e9d38421a6853f9c35d48d8c49a85"/><file name="gu.png" hash="2d058f7cea364d247fee5bb53fe70390"/><file name="gv.png" hash="02a47e21c8adc33f6b22e9996e202e6b"/><file name="gw.png" hash="35eb1d9b882111ccec5f58cd778364bf"/><file name="gy.png" hash="d816170967c67a98db73cd89c56014fd"/><file name="ha.png" hash="cc65efa74cd7367933ecd52115204b2d"/><file name="he.png" hash="5c8964621cbdf37b1d3dce91656350bf"/><file name="hi.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="hk.png" hash="389d0451c5c2ff40e88a93588dcbd6f1"/><file name="hm.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="hn.png" hash="ac9242c256af7800a223bdcbf0798f57"/><file name="ho.png" hash="eb8655ae58a0ab9a3f241fa07b76ab19"/><file name="hr.png" hash="0868c49000b253d9b4f290471898c961"/><file name="ht.png" hash="b5360c0f01d574333b3bfa27c3dce856"/><file name="hu.png" hash="6c6fce8a6fd09c340964b00c5e82a8c3"/><file name="hy.png" hash="e75fcdc9c2ef13a1a67aad43ca2308c2"/><file name="hz.png" hash="2ad5f9c4e8e5af5ef005fe2fba00d50f"/><file name="id.png" hash="fed538f9c8cd0500a6a655b55426744c"/><file name="ie.png" hash="48e42d0d1451e7b19b7b79d631a3a95c"/><file name="ig.png" hash="4a793309d11e9dedd6f4265d778c6133"/><file name="ii.png" hash="a82ff00f39eff54062328b4474c33dbc"/><file name="il.png" hash="a135fcdefe8a391b416bdb102476e12b"/><file name="in.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="io.png" hash="38afe5a0e9817027e1f1615028aca521"/><file name="iq.png" hash="39cfe476621ad630cf3418c3234f0594"/><file name="ir.png" hash="2ac099e190547501704d309d59831d2b"/><file name="is.png" hash="7fffd4f1acabc2ccc890049e48587e8a"/><file name="it.png" hash="784f7eb333f0591558bcce9616a3c105"/><file name="ja.png" hash="10958397bc7c25c746e6e122365c003c"/><file name="jm.png" hash="a582c95e205f76277afa1571940121cd"/><file name="jo.png" hash="9dd19e8da30782b2bfb9b5a0d1c51e8b"/><file name="jp.png" hash="10958397bc7c25c746e6e122365c003c"/><file name="jv.png" hash="35c4e24cbd280288152f5e3244e9ee69"/><file name="ka.png" hash="c563ba062d5b58ce5977779f45ef336d"/><file name="ke.png" hash="357152ed37ece2a45a7d57c5bf30ab3c"/><file name="kg.png" hash="192033ce169b1b107dc4aabb1f635c1c"/><file name="kh.png" hash="8658c066eb4f9d6c15efb31a821b482c"/><file name="ki.png" hash="45b580b5a72835f271562b54b146a77c"/><file name="kk.png" hash="01b898ff57cb85421599611fb6fca484"/><file name="kl.png" hash="430f0d7d9f88242efa72f268496820cc"/><file name="km.png" hash="cc942486999d072021c0b3582306f834"/><file name="kn.png" hash="f096727a7612c065259c6334b61a8b6a"/><file name="ko.png" hash="cf63c15bf955e54afed8061497c7f7ea"/><file name="kp.png" hash="0eaa3e8dc84bae9283a9969f2e360080"/><file name="kr.png" hash="cf63c15bf955e54afed8061497c7f7ea"/><file name="ks.png" hash="f1321803dc07f45a58f0355bc714dcd0"/><file name="ku.png" hash="88a7d2944161b9ddd846b61c826305e0"/><file name="kv.png" hash="ac9d8de692abc2e48d1dcc8d8cfefd02"/><file name="kw.png" hash="2e0485cdb9ca8240c9fc372e4cef0eb7"/><file name="ky.png" hash="da2c56cc2568d516031e3082713fd90c"/><file name="kz.png" hash="6d51066ba152b15fd05d761745333135"/><file name="la.png" hash="d082bb175a3510a7a50dcde5b1d8f784"/><file name="lb.png" hash="dad5d86f0d90cca0ff4ab5332d7fd7fc"/><file name="lc.png" hash="18c05f2c79f8774bbb201593b20a06e2"/><file name="lg.png" hash="6bcc5e9452749a8001ea10aa22e17929"/><file name="li.png" hash="822034b39b46abaa91127f8342092a32"/><file name="lk.png" hash="4e90c553f186c9776976b5b11dba4ea4"/><file name="ln.png" hash="dbabdf7a9362054d8b00819d0e41058a"/><file name="lo.png" hash="f6af5d318d988977478ca26c49f479fb"/><file name="lr.png" hash="3b6d8d720721f68ceb465249aad32b27"/><file name="ls.png" hash="c228783a0785a8541d96d5515a2a16cf"/><file name="lt.png" hash="95efec9db9d274d25fbb98eb53a9c384"/><file name="lu.png" hash="3be0b3a6096e9d77d9d7b997d464e612"/><file name="lv.png" hash="6ffae4cc65036d3de052a58e062d1ed7"/><file name="ly.png" hash="3f9d6e8cba5fd7cb8c201acfe9b7bc15"/><file name="ma.png" hash="c936b9f794def7d85fbb4c120d68684e"/><file name="mc.png" hash="63c6fd073106c8b0eb7336d9c19653a2"/><file name="md.png" hash="e414980c55af38676c5312bd330d6bb9"/><file name="me.png" hash="7a2ee5d7f1bc5ef478106a86d2c1cc09"/><file name="mg.png" hash="5aea24a18ca7e8b65770dcf2a738dd08"/><file name="mh.png" hash="948dd15821a6fe45b0df8667b6601ead"/><file name="mi.png" hash="7cfae05d0e87377b038844eae7859d51"/><file name="mk.png" hash="617997cbcaafaea0035a4c0474ae16dd"/><file name="ml.png" hash="d951cb1c43a8077167b731a1aea70b6c"/><file name="mm.png" hash="82ad2104b5490e1f6adfcfa777ab8243"/><file name="mn.png" hash="4adb9a834188753731add527aa4f67f0"/><file name="mo.png" hash="6339bdf0e24c871301d1fc0207e2685f"/><file name="mp.png" hash="929b9802e7bfb58bab0330a4c6925595"/><file name="mq.png" hash="be5fb2cd33e8df13e0b2f2feffb9373f"/><file name="mr.png" hash="6c1cc8a1babe91421a38ddc573ee7cb4"/><file name="ms.png" hash="bfddbc2aae078e0aa80633f784e18526"/><file name="mt.png" hash="7a7ee4f98185ecfb6e1ba753aa6f2111"/><file name="mu.png" hash="48d5cbc23fedfbb77b06ed0e9b04522f"/><file name="mv.png" hash="24c90cfb0c883f9d1b303276c3b069e7"/><file name="mw.png" hash="1d2b8e369b2d4384d1ab4b24315fa139"/><file name="mx.png" hash="479a865f838c70d654a9f818a23f9a7d"/><file name="my.png" hash="e1c0f262c141e8615f819b1cd18393d3"/><file name="mz.png" hash="159c85011041bea6bd3c68b6ba2919d7"/><file name="na.png" hash="e582101531b620fb0138c83602aab920"/><file name="nb.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="nc.png" hash="ad8bf708e9db5fa423b5da123c914378"/><file name="nd.png" hash="45b580b5a72835f271562b54b146a77c"/><file name="ne.png" hash="f2eccd65605d8babcdd3af4b01215ecc"/><file name="nf.png" hash="c624a221dae959256a3e143a5147f825"/><file name="ng.png" hash="0c506131e1841cee782e4faf5cec89a9"/><file name="ni.png" hash="f43a5f35488513de58e2e5fbda9a98db"/><file name="nl.png" hash="6186550ebc77b1c51cd3ae37e78c33c1"/><file name="nn.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="no.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="np.png" hash="52c16445053df13abb08cedbe82f1f28"/><file name="nr.png" hash="2fb04b74787698835b63a46cbdef6fab"/><file name="nu.png" hash="9a2f682db640f1c36ee40f296f63dc87"/><file name="nv.png" hash="f07743dbf1a1451925583cbcf4bc1005"/><file name="ny.png" hash="95e9be7a7e1afbe7dffbb80ea4a532e2"/><file name="nz.png" hash="179cc39a58e324df1e9a19a5eae9dca0"/><file name="oc.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="om.png" hash="7b002bc8c4ab1a85c2c807ec2c4442d2"/><file name="or.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="os.png" hash="0a87600c12a03f25750f6ca8236508ec"/><file name="pa.png" hash="64795009d69b36b6a4461b8159dcf356"/><file name="pe.png" hash="d1ed0462edb8cbc3220b7aca250b0437"/><file name="pf.png" hash="e59d18e48cf0924687618bbf60ea4fee"/><file name="pg.png" hash="48f68aaeefaa3b8ee7ce1f1761e6c11d"/><file name="ph.png" hash="8ff2d08518d3e1224d34467f5e24fcc2"/><file name="pk.png" hash="3bd18971ec170e6e9c461026068508da"/><file name="pl.png" hash="fad0e96c20f20be196499d26a6c74cd1"/><file name="pm.png" hash="ba41b8c349070250f814188080c2a8e8"/><file name="pn.png" hash="e4dcc857f534b48e8377ee36f63be013"/><file name="pr.png" hash="40b7fb1a4c1ebb076d40f0df5c6fd59a"/><file name="ps.png" hash="68d5f99924c67ef7d3b3aa32ff22b805"/><file name="pt.png" hash="5b8ab69ac52129bd32a3927f1b94d170"/><file name="pw.png" hash="f2bff7cd01d8eff6401e811f3de6af4f"/><file name="py.png" hash="b9d3d10b185a3144e21a452903857870"/><file name="qa.png" hash="c1dc363a27f5b5d19e24032747d7bedf"/><file name="re.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="rm.png" hash="d038c9c152c5e14f875c7b13afcd4711"/><file name="rn.png" hash="89be44926846abc76e7e3b5a71d140ad"/><file name="ro.png" hash="d038c9c152c5e14f875c7b13afcd4711"/><file name="rs.png" hash="5b672e3ee63317614288615ba0774bf7"/><file name="ru.png" hash="0d31ef75adef220e73f0cb93a84a7422"/><file name="rw.png" hash="bef92348e3ea38dc462326e1ba2ff622"/><file name="sa.png" hash="605884cec6f446d418a092c0941acad5"/><file name="sb.png" hash="5e4b74f8a611742bdc3a04629e871eb4"/><file name="sc.png" hash="39650e922851e1b72165d7b016dc3b44"/><file name="scotland.png" hash="eca5bebe6e4dbc9eb858d4f58ea3f9de"/><file name="sd.png" hash="b972f90fea3369c020d258d1b860a6e0"/><file name="se.png" hash="4c01f06db23324267e2802dcade3572f"/><file name="sg.png" hash="8af65159c137a6a7ed3d1bc9c2eed18b"/><file name="sh.png" hash="e707aacb0986ad7a4a60ab8d82cf093d"/><file name="si.png" hash="d94ea79a5a8e0b6900941a1271c58191"/><file name="sj.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="sk.png" hash="5a7edc7e4492629ea5ce24b830839d32"/><file name="sl.png" hash="73904ec1cf4f0be282693c4e954e5821"/><file name="sm.png" hash="56e3c1b483bf27e619146b50ee5181bc"/><file name="sn.png" hash="501a5fab662d127ad588825cd0cd4954"/><file name="so.png" hash="4be2ffc4d06de407434a877dc03ff88b"/><file name="sq.png" hash="7ad607e32e143c3a047e64aef307a330"/><file name="sr.png" hash="8f9aca73767b8e7876c72add438a6007"/><file name="ss.png" hash="d23ec216d4b0865912e1c8e1dd04358a"/><file name="st.png" hash="ab272a50ea656512c036c001fcaca61c"/><file name="su.png" hash="b2a10dd9ef92e4fd4fc658f32dee1adb"/><file name="sv.png" hash="c6c853766dfbab2ddd225980d3012f5c"/><file name="sw.png" hash="df5ba64f61a3b83a3fa282be21a61050"/><file name="sy.png" hash="a0886eca3ef87d646af1514d025752f6"/><file name="sz.png" hash="e97675a21b5280b9cb4c1fc99aab004f"/><file name="ta.png" hash="f765d3525b985c93500c0f9548d1b6ee"/><file name="tc.png" hash="50733ccc670058e9a737b652089287ca"/><file name="td.png" hash="6c8d3f6c96bcd5d34a0bae497d0e13ca"/><file name="te.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="tf.png" hash="f7ccbaa513a24eb3dc4c7860ab8007ee"/><file name="tg.png" hash="ac323c8259468d0d02fcc805895f26f3"/><file name="th.png" hash="af85286bf1cadae9c2c636fe83195251"/><file name="ti.png" hash="e28e0f5115ca4becd9224c722d59f03a"/><file name="tj.png" hash="5cc548d1858d19f336ca7390b381ad07"/><file name="tk.png" hash="896fb1a34638a76361d4307668cd5414"/><file name="tl.png" hash="093e76da6759647c331ea75ef1ba9da0"/><file name="tm.png" hash="b36ce71226fad4da67764e05b800292b"/><file name="tn.png" hash="ae9947d99c48894d1d1824d624361eb9"/><file name="to.png" hash="ce868fde2d77788a669001995f4b73df"/><file name="tr.png" hash="31ea1f705854ad57c432845068bd05d3"/><file name="tt.png" hash="9ead47e1d48627b1806cd992b62c8c2b"/><file name="tv.png" hash="6fec556dd8bd936ca706b0d7cc864993"/><file name="tw.png" hash="0e41af2b3ca03d145e7665d0821931fa"/><file name="ty.png" hash="3be1be69bee819219287102ea24466a7"/><file name="tz.png" hash="c846788492ef1188f631113bd8cced5c"/><file name="ua.png" hash="7ef7a6f5def3a4117d5c2f08e37008ff"/><file name="ug.png" hash="17e134aa84a076bf5541f5d11c616e5d"/><file name="uk.png" hash="b1901378ddede69f619f2ead439878e0"/><file name="um.png" hash="f0f12f4afaccb13ea40e15f3b81c5921"/><file name="ur.png" hash="958d512e18c1ed35b2d54d601c7a393e"/><file name="us.png" hash="968591e0050981be9fa94bd2597afb48"/><file name="uy.png" hash="9ca8f3d9b1b1101d30a4555c997e871b"/><file name="uz.png" hash="37e4bdb64229f4624cacec7d4297214d"/><file name="va.png" hash="493642ad6bf3a344602fe006e7d44fa2"/><file name="vc.png" hash="60eec8d579d55ea0f2ec62d837c104d2"/><file name="ve.png" hash="3aee24fa5f6a85f5ce452001182fdccc"/><file name="vg.png" hash="79ef17575149f2663df51419f39feff2"/><file name="vi.png" hash="c95b9175142cd29177a9b25e16c3fc39"/><file name="vn.png" hash="638136b1a6f5dab7be6cec84fcc2cd53"/><file name="vo.png" hash="488430cd9a358f4a5110cffd352705a1"/><file name="vu.png" hash="c37b82a52cdf80492ee94dc7f46256cf"/><file name="wa.png" hash="2404b88a07bdb7aef652eec0f6fce287"/><file name="wales.png" hash="42c7ca83721190322499c94d7ff2ae26"/><file name="wf.png" hash="86cc1aa337ebb6cb74a2c3196770a7f5"/><file name="wo.png" hash="501a5fab662d127ad588825cd0cd4954"/><file name="ws.png" hash="68183f64328d121a9ee77a92319bbfcd"/><file name="xh.png" hash="18851b500f3cda4245698fc62a39cc39"/><file name="ye.png" hash="290e09160bb2ef42ba8129a41159eb07"/><file name="yt.png" hash="f46c7cd7b2474cbcf61c5b2007a7558f"/><file name="za.png" hash="98e1044d0ffd11afc67a79f3676ba97a"/><file name="zh.png" hash="a82ff00f39eff54062328b4474c33dbc"/><file name="zm.png" hash="ec69def9e77d23446867caeb4a5223b1"/><file name="zw.png" hash="e7ae0b7e3c49a5a775a9d6854912e21a"/></dir></dir><dir name="lib"><file name="flag-icons-plugin.js" hash="8de745481726c22c579becc11691e3a7"/></dir></dir><dir name="formatlesspaste"><file name="README.md" hash="3d5f9f079a3bfb9724af1cb433693ae4"/><dir name="css"><file name="formatless.css" hash="1d4145e16292c84f82d7d3df96a4902d"/></dir><dir name="img"><file name="button.png" hash="2abbec214757b64641000dda108ce9ce"/></dir><dir name="lib"><file name="formatlesshandler.js" hash="a3b34dde4227febdc6be8acc1a70e40a"/><file name="formatlesspaste-plugin.js" hash="b94d3d0cd3c28385daec688bc912d714"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="3311f31f2d2fc224cb000e181f2d5d8e"/></dir><file name="i18n.js" hash="a2a6ee5c10e67ee6c558b5d1b30ac77a"/></dir><file name="package.json" hash="dad18d16d8c04dc4d3d03c28a0288c0a"/></dir><dir name="googletranslate"><file name="README.md" hash="57786a6fae68a5d577f4a30b8f79bd81"/><dir name="css"><file name="googletranslate.css" hash="f8172c9498d1ed609155edab49206320"/></dir><dir name="img"><file name="ad.png" hash="cc750844215aed20b2b05c10d6082b0d"/><file name="ae.png" hash="7391e6b6df7b181d51ffeb2a5a6d7bd4"/><file name="af.png" hash="ae7c58272ae46cde945ccc4bed00fe9e"/><file name="ag.png" hash="390af4c36d462bbf2627a1182946825a"/><file name="ai.png" hash="08cf0788a582710062140f69887300fc"/><file name="al.png" hash="7c5bc720b2cf3047c9fab800e271eec9"/><file name="am.png" hash="fd5d9d1d864ea76406afec5e11f2632f"/><file name="an.png" hash="7d7d682a9dc9f2a26a6dea1fdb87334f"/><file name="ao.png" hash="41a8aa1e11f7086d2413d8d9a777680b"/><file name="ar.png" hash="2fa357868e66f1aec9c4c4230baa45b3"/><file name="as.png" hash="96e49204e758277b6720584c4d844ecc"/><file name="at.png" hash="62bf1a5653692b34b2ee1f734a59b062"/><file name="au.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="aw.png" hash="6e82279ceb4702171f345fead7ff3e35"/><file name="ax.png" hash="27708378fcc025e375fd3c303fc1cbd6"/><file name="az.png" hash="d63f5c99e25eca9de2a97f63161f38e6"/><file name="ba.png" hash="cbb6ce46c69e14bbd8d2c8fd91680d33"/><file name="bb.png" hash="47c8aea417660e5f4e8b5a7a73f2cb18"/><file name="bd.png" hash="f02d8deb9de271cd246646872798af15"/><file name="be.png" hash="2404b88a07bdb7aef652eec0f6fce287"/><file name="bf.png" hash="cc65efa74cd7367933ecd52115204b2d"/><file name="bg.png" hash="77b2183ab10cd26ee4e79fdfc12b8621"/><file name="bh.png" hash="5bbf6106968b2517d924bac4d99b41bd"/><file name="bi.png" hash="427c72cd341f288faf0e62f03586c7ba"/><file name="bj.png" hash="67bd2e990cc7e3dc5bbae821fd38f20c"/><file name="bm.png" hash="cf195bf1921659202cf8ae899e9171d0"/><file name="bn.png" hash="4911cd2a8fae48d82f9ce124d908be3c"/><file name="bo.png" hash="151854ff619d7a44894a37b5be73f463"/><file name="br.png" hash="54c40b8a9ad7df4783d19acc05910f8e"/><file name="bs.png" hash="8b45f84cb140ec2448692187a82abfc7"/><file name="bt.png" hash="2f13e87c1868b03b0b47cd0bb60737d5"/><file name="bv.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="bw.png" hash="15d59270fb25d9e467d5a730682c5644"/><file name="by.png" hash="9e18ac464c49a91d90eaf11ad21357e9"/><file name="bz.png" hash="6e14aaafe632fe367409415545c27e73"/><file name="ca.png" hash="8618709a45d8d1c4d9d254c61bdf29b8"/><file name="catalonia.png" hash="76991f3da407b7dec2603ff86f1b9724"/><file name="cc.png" hash="ebbfb19d79975289e7a9cbb12caf0a23"/><file name="cd.png" hash="34e2a72a9cb9e873db413b020d7f1845"/><file name="cf.png" hash="252d14145f4c47374a3e0bc2bb8ae0bf"/><file name="cg.png" hash="b5bed6c75a72dc56f8eb8c559d437f59"/><file name="ch.png" hash="e67b19a7767114078cda2b3c874a5d5b"/><file name="ci.png" hash="90e8d52c215176bb04b7453b84e6fa43"/><file name="ck.png" hash="e70409285b72ac2ebd8d6ee1849e4083"/><file name="cl.png" hash="dc7b3be27813faeb454d02b55b79b9e3"/><file name="cm.png" hash="f5cdc865bf36948532707c42e716e14a"/><file name="cn.png" hash="a82ff00f39eff54062328b4474c33dbc"/><file name="co.png" hash="4bd223b284a0900cda6826ee656c5333"/><file name="cr.png" hash="cd28a01f91e89fa2b844857642fd5fb7"/><file name="cs.png" hash="4db37e9044c342fb819515d13768e058"/><file name="cu.png" hash="9d5366e9b01d5cd428429e608433d5f3"/><file name="cv.png" hash="2f4edfdcba4cdb3fa903047a235f3296"/><file name="cx.png" hash="8efc55a14b900c47f4b920c4510f192f"/><file name="cy.png" hash="f29741d622fe02759bb7a2a91eb5e2e0"/><file name="cz.png" hash="815b6d2bf60a3179c0652f0b6895bcbb"/><file name="de.png" hash="ddabae687ecae5edaaeb808d440543e6"/><file name="dj.png" hash="197e6fc2579eec8bcd7303393de841ba"/><file name="dk.png" hash="fe926c8271b35febf4a6cb0a41b111eb"/><file name="dm.png" hash="85845da8ae28e94f2885ceeb16515dd0"/><file name="do.png" hash="153949105845e18a133a4c778b3de31e"/><file name="dz.png" hash="c57f3c0951ba1525b3359fc0acbfd6b1"/><file name="ec.png" hash="0152114421e281913d0c1c148e196c92"/><file name="ee.png" hash="1cdfaaa10ff170ce19ed46339efe3af6"/><file name="eg.png" hash="09c48d3562f0dc51e2f9507704f6437f"/><file name="eh.png" hash="7dd5a46a34bee2f10532f1213a941d7b"/><file name="en.png" hash="73f2f220f6d51d249e45a04d9a03da91"/><file name="er.png" hash="481d394ac9a44f3040f7c457fc1f23a6"/><file name="es.png" hash="d6693ce2a6346b2da89ceda335554e0a"/><file name="et.png" hash="73763e46da896f3e951954ad473b4a4b"/><file name="europeanunion.png" hash="ffce5e64df4d367a20e1ef4033f60257"/><file name="fam.png" hash="0b36de21772c8d87e1d0106878b65231"/><file name="fi.png" hash="e30bd2493de78c998d1ac6c22d20146b"/><file name="fj.png" hash="7c3e78e31bb34b0fafbb0865737f8d36"/><file name="fk.png" hash="9627317fe9a5757ee8c06df7d8e8a887"/><file name="fm.png" hash="d3767ea95466571e10c7e563d456d754"/><file name="fo.png" hash="d0e6b0a3fdb4e2271b5b5057bd969966"/><file name="fr.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="ga.png" hash="972da84bdea1359d69c719a37d89d219"/><file name="gb.png" hash="0894999b108830afc0733ee7b6e08310"/><file name="gd.png" hash="95b8b79fafc6b1510978977bc8067b46"/><file name="ge.png" hash="aa40721b7a179f6c9c8f666a64063767"/><file name="gf.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="gh.png" hash="12da850e724de5ff779572bbdb8ded71"/><file name="gi.png" hash="0ca5a4db2ac11c8a5cb57701b18b8088"/><file name="gl.png" hash="073b6bf37f6eefe07145d9dd89bc9e7d"/><file name="gm.png" hash="a7d785fa41e66a5e6d82301688686f20"/><file name="gn.png" hash="acba9c908c29db8aa890b6a20265ac22"/><file name="gp.png" hash="c2dc0a2062b24f906431337186888f01"/><file name="gq.png" hash="70f64b2b38b8a21152e7446a1b3e1133"/><file name="gr.png" hash="fd9b321b80be31c027585c8992f1799f"/><file name="gs.png" hash="3b510d36dc70edd5b301da8096c9b71c"/><file name="gt.png" hash="384e9d38421a6853f9c35d48d8c49a85"/><file name="gu.png" hash="2d058f7cea364d247fee5bb53fe70390"/><file name="gw.png" hash="35eb1d9b882111ccec5f58cd778364bf"/><file name="gy.png" hash="d816170967c67a98db73cd89c56014fd"/><file name="hk.png" hash="389d0451c5c2ff40e88a93588dcbd6f1"/><file name="hm.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="hn.png" hash="ac9242c256af7800a223bdcbf0798f57"/><file name="hr.png" hash="0868c49000b253d9b4f290471898c961"/><file name="ht.png" hash="b5360c0f01d574333b3bfa27c3dce856"/><file name="hu.png" hash="6c6fce8a6fd09c340964b00c5e82a8c3"/><file name="id.png" hash="fed538f9c8cd0500a6a655b55426744c"/><file name="ie.png" hash="48e42d0d1451e7b19b7b79d631a3a95c"/><file name="il.png" hash="a135fcdefe8a391b416bdb102476e12b"/><file name="in.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="io.png" hash="38afe5a0e9817027e1f1615028aca521"/><file name="iq.png" hash="39cfe476621ad630cf3418c3234f0594"/><file name="ir.png" hash="2ac099e190547501704d309d59831d2b"/><file name="is.png" hash="7fffd4f1acabc2ccc890049e48587e8a"/><file name="it.png" hash="784f7eb333f0591558bcce9616a3c105"/><file name="jm.png" hash="a582c95e205f76277afa1571940121cd"/><file name="jo.png" hash="9dd19e8da30782b2bfb9b5a0d1c51e8b"/><file name="jp.png" hash="10958397bc7c25c746e6e122365c003c"/><file name="ke.png" hash="357152ed37ece2a45a7d57c5bf30ab3c"/><file name="kg.png" hash="192033ce169b1b107dc4aabb1f635c1c"/><file name="kh.png" hash="8658c066eb4f9d6c15efb31a821b482c"/><file name="ki.png" hash="703ced92b97cc2713038f0d50ee5a0f0"/><file name="km.png" hash="cc942486999d072021c0b3582306f834"/><file name="kn.png" hash="f096727a7612c065259c6334b61a8b6a"/><file name="kp.png" hash="0eaa3e8dc84bae9283a9969f2e360080"/><file name="kr.png" hash="cf63c15bf955e54afed8061497c7f7ea"/><file name="kw.png" hash="2e0485cdb9ca8240c9fc372e4cef0eb7"/><file name="ky.png" hash="da2c56cc2568d516031e3082713fd90c"/><file name="kz.png" hash="6d51066ba152b15fd05d761745333135"/><file name="la.png" hash="3375d707535d69248f0ab23ef80268c8"/><file name="lb.png" hash="dad5d86f0d90cca0ff4ab5332d7fd7fc"/><file name="lc.png" hash="18c05f2c79f8774bbb201593b20a06e2"/><file name="li.png" hash="822034b39b46abaa91127f8342092a32"/><file name="lk.png" hash="4e90c553f186c9776976b5b11dba4ea4"/><file name="lr.png" hash="3b6d8d720721f68ceb465249aad32b27"/><file name="ls.png" hash="c228783a0785a8541d96d5515a2a16cf"/><file name="lt.png" hash="95efec9db9d274d25fbb98eb53a9c384"/><file name="lu.png" hash="3be0b3a6096e9d77d9d7b997d464e612"/><file name="lv.png" hash="6ffae4cc65036d3de052a58e062d1ed7"/><file name="ly.png" hash="3f9d6e8cba5fd7cb8c201acfe9b7bc15"/><file name="ma.png" hash="c936b9f794def7d85fbb4c120d68684e"/><file name="mc.png" hash="63c6fd073106c8b0eb7336d9c19653a2"/><file name="md.png" hash="e414980c55af38676c5312bd330d6bb9"/><file name="me.png" hash="7a2ee5d7f1bc5ef478106a86d2c1cc09"/><file name="mg.png" hash="5aea24a18ca7e8b65770dcf2a738dd08"/><file name="mh.png" hash="948dd15821a6fe45b0df8667b6601ead"/><file name="mk.png" hash="617997cbcaafaea0035a4c0474ae16dd"/><file name="ml.png" hash="d951cb1c43a8077167b731a1aea70b6c"/><file name="mm.png" hash="82ad2104b5490e1f6adfcfa777ab8243"/><file name="mn.png" hash="4adb9a834188753731add527aa4f67f0"/><file name="mo.png" hash="6339bdf0e24c871301d1fc0207e2685f"/><file name="mp.png" hash="929b9802e7bfb58bab0330a4c6925595"/><file name="mq.png" hash="be5fb2cd33e8df13e0b2f2feffb9373f"/><file name="mr.png" hash="6c1cc8a1babe91421a38ddc573ee7cb4"/><file name="ms.png" hash="bfddbc2aae078e0aa80633f784e18526"/><file name="mt.png" hash="7a7ee4f98185ecfb6e1ba753aa6f2111"/><file name="mu.png" hash="48d5cbc23fedfbb77b06ed0e9b04522f"/><file name="mv.png" hash="24c90cfb0c883f9d1b303276c3b069e7"/><file name="mw.png" hash="1d2b8e369b2d4384d1ab4b24315fa139"/><file name="mx.png" hash="479a865f838c70d654a9f818a23f9a7d"/><file name="my.png" hash="e1c0f262c141e8615f819b1cd18393d3"/><file name="mz.png" hash="159c85011041bea6bd3c68b6ba2919d7"/><file name="na.png" hash="e582101531b620fb0138c83602aab920"/><file name="nc.png" hash="ad8bf708e9db5fa423b5da123c914378"/><file name="ne.png" hash="f2eccd65605d8babcdd3af4b01215ecc"/><file name="nf.png" hash="c624a221dae959256a3e143a5147f825"/><file name="ng.png" hash="0c506131e1841cee782e4faf5cec89a9"/><file name="ni.png" hash="f43a5f35488513de58e2e5fbda9a98db"/><file name="nl.png" hash="6186550ebc77b1c51cd3ae37e78c33c1"/><file name="no.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="np.png" hash="52c16445053df13abb08cedbe82f1f28"/><file name="nr.png" hash="2fb04b74787698835b63a46cbdef6fab"/><file name="nu.png" hash="9a2f682db640f1c36ee40f296f63dc87"/><file name="nz.png" hash="179cc39a58e324df1e9a19a5eae9dca0"/><file name="om.png" hash="7b002bc8c4ab1a85c2c807ec2c4442d2"/><file name="pa.png" hash="64795009d69b36b6a4461b8159dcf356"/><file name="pe.png" hash="d1ed0462edb8cbc3220b7aca250b0437"/><file name="pf.png" hash="e59d18e48cf0924687618bbf60ea4fee"/><file name="pg.png" hash="48f68aaeefaa3b8ee7ce1f1761e6c11d"/><file name="ph.png" hash="8ff2d08518d3e1224d34467f5e24fcc2"/><file name="pk.png" hash="3bd18971ec170e6e9c461026068508da"/><file name="pl.png" hash="fad0e96c20f20be196499d26a6c74cd1"/><file name="pm.png" hash="ba41b8c349070250f814188080c2a8e8"/><file name="pn.png" hash="e4dcc857f534b48e8377ee36f63be013"/><file name="pr.png" hash="40b7fb1a4c1ebb076d40f0df5c6fd59a"/><file name="ps.png" hash="68d5f99924c67ef7d3b3aa32ff22b805"/><file name="pt.png" hash="5b8ab69ac52129bd32a3927f1b94d170"/><file name="pw.png" hash="f2bff7cd01d8eff6401e811f3de6af4f"/><file name="py.png" hash="b9d3d10b185a3144e21a452903857870"/><file name="qa.png" hash="c1dc363a27f5b5d19e24032747d7bedf"/><file name="re.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="ro.png" hash="d038c9c152c5e14f875c7b13afcd4711"/><file name="rs.png" hash="5b672e3ee63317614288615ba0774bf7"/><file name="ru.png" hash="0d31ef75adef220e73f0cb93a84a7422"/><file name="rw.png" hash="bef92348e3ea38dc462326e1ba2ff622"/><file name="sa.png" hash="605884cec6f446d418a092c0941acad5"/><file name="sb.png" hash="5e4b74f8a611742bdc3a04629e871eb4"/><file name="sc.png" hash="39650e922851e1b72165d7b016dc3b44"/><file name="scotland.png" hash="eca5bebe6e4dbc9eb858d4f58ea3f9de"/><file name="sd.png" hash="b972f90fea3369c020d258d1b860a6e0"/><file name="se.png" hash="4c01f06db23324267e2802dcade3572f"/><file name="sg.png" hash="8af65159c137a6a7ed3d1bc9c2eed18b"/><file name="sh.png" hash="e707aacb0986ad7a4a60ab8d82cf093d"/><file name="si.png" hash="d94ea79a5a8e0b6900941a1271c58191"/><file name="sj.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="sk.png" hash="5a7edc7e4492629ea5ce24b830839d32"/><file name="sl.png" hash="73904ec1cf4f0be282693c4e954e5821"/><file name="sm.png" hash="56e3c1b483bf27e619146b50ee5181bc"/><file name="sn.png" hash="501a5fab662d127ad588825cd0cd4954"/><file name="so.png" hash="4be2ffc4d06de407434a877dc03ff88b"/><file name="sr.png" hash="8f9aca73767b8e7876c72add438a6007"/><file name="st.png" hash="ab272a50ea656512c036c001fcaca61c"/><file name="sv.png" hash="c6c853766dfbab2ddd225980d3012f5c"/><file name="sy.png" hash="a0886eca3ef87d646af1514d025752f6"/><file name="sz.png" hash="e97675a21b5280b9cb4c1fc99aab004f"/><file name="tc.png" hash="50733ccc670058e9a737b652089287ca"/><file name="td.png" hash="6c8d3f6c96bcd5d34a0bae497d0e13ca"/><file name="tf.png" hash="f7ccbaa513a24eb3dc4c7860ab8007ee"/><file name="tg.png" hash="5c62720575f914ffff9fe06e2b9c1b95"/><file name="th.png" hash="af85286bf1cadae9c2c636fe83195251"/><file name="tj.png" hash="5cc548d1858d19f336ca7390b381ad07"/><file name="tk.png" hash="896fb1a34638a76361d4307668cd5414"/><file name="tl.png" hash="093e76da6759647c331ea75ef1ba9da0"/><file name="tm.png" hash="b36ce71226fad4da67764e05b800292b"/><file name="tn.png" hash="ae9947d99c48894d1d1824d624361eb9"/><file name="to.png" hash="ce868fde2d77788a669001995f4b73df"/><file name="tr.png" hash="31ea1f705854ad57c432845068bd05d3"/><file name="tt.png" hash="9ead47e1d48627b1806cd992b62c8c2b"/><file name="tv.png" hash="6fec556dd8bd936ca706b0d7cc864993"/><file name="tw.png" hash="0e41af2b3ca03d145e7665d0821931fa"/><file name="tz.png" hash="c846788492ef1188f631113bd8cced5c"/><file name="ua.png" hash="7ef7a6f5def3a4117d5c2f08e37008ff"/><file name="ug.png" hash="17e134aa84a076bf5541f5d11c616e5d"/><file name="um.png" hash="f0f12f4afaccb13ea40e15f3b81c5921"/><file name="us.png" hash="968591e0050981be9fa94bd2597afb48"/><file name="uy.png" hash="9ca8f3d9b1b1101d30a4555c997e871b"/><file name="uz.png" hash="37e4bdb64229f4624cacec7d4297214d"/><file name="va.png" hash="493642ad6bf3a344602fe006e7d44fa2"/><file name="vc.png" hash="60eec8d579d55ea0f2ec62d837c104d2"/><file name="ve.png" hash="3aee24fa5f6a85f5ce452001182fdccc"/><file name="vg.png" hash="79ef17575149f2663df51419f39feff2"/><file name="vi.png" hash="c95b9175142cd29177a9b25e16c3fc39"/><file name="vn.png" hash="638136b1a6f5dab7be6cec84fcc2cd53"/><file name="vu.png" hash="c37b82a52cdf80492ee94dc7f46256cf"/><file name="wales.png" hash="42c7ca83721190322499c94d7ff2ae26"/><file name="wf.png" hash="86cc1aa337ebb6cb74a2c3196770a7f5"/><file name="ws.png" hash="68183f64328d121a9ee77a92319bbfcd"/><file name="ye.png" hash="290e09160bb2ef42ba8129a41159eb07"/><file name="yt.png" hash="f46c7cd7b2474cbcf61c5b2007a7558f"/><file name="za.png" hash="98e1044d0ffd11afc67a79f3676ba97a"/><file name="zm.png" hash="ec69def9e77d23446867caeb4a5223b1"/><file name="zw.png" hash="e7ae0b7e3c49a5a775a9d6854912e21a"/></dir><dir name="lib"><file name="googletranslate-plugin.js" hash="3c52f201fa4eeb1b2137b7e863c66d0a"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="headerids"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="headerids.css" hash="61c7a2551ce3119dc0b428b9e80eb18c"/></dir><dir name="lib"><file name="headerids-plugin.js" hash="fa51dd72c85ff0c3af31892f2c6582bd"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="dd9bd5e3a7d01e1c09b5308c8ca34a21"/></dir><dir name="en"><file name="i18n.js" hash="712183db4b838ce7d90478722333f0f1"/></dir><file name="i18n.js" hash="5ba01bebc68d37746351bd2d87df415f"/></dir></dir><dir name="hints"><dir name="dep"><file name="jquery.poshytip.js" hash="533e1946f8b04ab676648c265e6ada1b"/></dir><dir name="i18n"><file name="de.json" hash="c4f5371347ce9ae8b079c1e4033a701f"/><file name="en.json" hash="8b82c1ca2c0cc6becbea84e3fcfbb3c3"/></dir><dir name="img"><file name="tip-twitter_arrows.gif" hash="6d6bbf94a6e54cc32efa86c958ee71ee"/></dir><file name="package.json" hash="20e479119976054c92a3e19fbe164b18"/><dir name="src"><file name="hints.css" hash="756f3b384c2dfdcafad59b682d884b06"/><file name="hints.js" hash="ec84322a697aeef808fd477dd740c524"/></dir></dir><dir name="linkbrowser"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="img"><dir name="flags"><file name="ad.png" hash="cc750844215aed20b2b05c10d6082b0d"/><file name="ae.png" hash="7391e6b6df7b181d51ffeb2a5a6d7bd4"/><file name="af.png" hash="ae7c58272ae46cde945ccc4bed00fe9e"/><file name="ag.png" hash="390af4c36d462bbf2627a1182946825a"/><file name="ai.png" hash="08cf0788a582710062140f69887300fc"/><file name="al.png" hash="7c5bc720b2cf3047c9fab800e271eec9"/><file name="am.png" hash="fd5d9d1d864ea76406afec5e11f2632f"/><file name="an.png" hash="7d7d682a9dc9f2a26a6dea1fdb87334f"/><file name="ao.png" hash="41a8aa1e11f7086d2413d8d9a777680b"/><file name="ar.png" hash="2fa357868e66f1aec9c4c4230baa45b3"/><file name="as.png" hash="96e49204e758277b6720584c4d844ecc"/><file name="at.png" hash="62bf1a5653692b34b2ee1f734a59b062"/><file name="au.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="aw.png" hash="6e82279ceb4702171f345fead7ff3e35"/><file name="ax.png" hash="27708378fcc025e375fd3c303fc1cbd6"/><file name="az.png" hash="d63f5c99e25eca9de2a97f63161f38e6"/><file name="ba.png" hash="cbb6ce46c69e14bbd8d2c8fd91680d33"/><file name="bb.png" hash="47c8aea417660e5f4e8b5a7a73f2cb18"/><file name="bd.png" hash="f02d8deb9de271cd246646872798af15"/><file name="be.png" hash="2404b88a07bdb7aef652eec0f6fce287"/><file name="bf.png" hash="cc65efa74cd7367933ecd52115204b2d"/><file name="bg.png" hash="77b2183ab10cd26ee4e79fdfc12b8621"/><file name="bh.png" hash="5bbf6106968b2517d924bac4d99b41bd"/><file name="bi.png" hash="427c72cd341f288faf0e62f03586c7ba"/><file name="bj.png" hash="67bd2e990cc7e3dc5bbae821fd38f20c"/><file name="bm.png" hash="cf195bf1921659202cf8ae899e9171d0"/><file name="bn.png" hash="4911cd2a8fae48d82f9ce124d908be3c"/><file name="bo.png" hash="151854ff619d7a44894a37b5be73f463"/><file name="br.png" hash="54c40b8a9ad7df4783d19acc05910f8e"/><file name="bs.png" hash="8b45f84cb140ec2448692187a82abfc7"/><file name="bt.png" hash="2f13e87c1868b03b0b47cd0bb60737d5"/><file name="bv.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="bw.png" hash="15d59270fb25d9e467d5a730682c5644"/><file name="by.png" hash="9e18ac464c49a91d90eaf11ad21357e9"/><file name="bz.png" hash="6e14aaafe632fe367409415545c27e73"/><file name="ca.png" hash="8618709a45d8d1c4d9d254c61bdf29b8"/><file name="catalonia.png" hash="76991f3da407b7dec2603ff86f1b9724"/><file name="cc.png" hash="ebbfb19d79975289e7a9cbb12caf0a23"/><file name="cd.png" hash="34e2a72a9cb9e873db413b020d7f1845"/><file name="cf.png" hash="252d14145f4c47374a3e0bc2bb8ae0bf"/><file name="cg.png" hash="b5bed6c75a72dc56f8eb8c559d437f59"/><file name="ch.png" hash="e67b19a7767114078cda2b3c874a5d5b"/><file name="ci.png" hash="90e8d52c215176bb04b7453b84e6fa43"/><file name="ck.png" hash="e70409285b72ac2ebd8d6ee1849e4083"/><file name="cl.png" hash="dc7b3be27813faeb454d02b55b79b9e3"/><file name="cm.png" hash="f5cdc865bf36948532707c42e716e14a"/><file name="cn.png" hash="a82ff00f39eff54062328b4474c33dbc"/><file name="co.png" hash="4bd223b284a0900cda6826ee656c5333"/><file name="cr.png" hash="cd28a01f91e89fa2b844857642fd5fb7"/><file name="cs.png" hash="4db37e9044c342fb819515d13768e058"/><file name="cu.png" hash="9d5366e9b01d5cd428429e608433d5f3"/><file name="cv.png" hash="2f4edfdcba4cdb3fa903047a235f3296"/><file name="cx.png" hash="8efc55a14b900c47f4b920c4510f192f"/><file name="cy.png" hash="f29741d622fe02759bb7a2a91eb5e2e0"/><file name="cz.png" hash="815b6d2bf60a3179c0652f0b6895bcbb"/><file name="de.png" hash="ddabae687ecae5edaaeb808d440543e6"/><file name="dj.png" hash="197e6fc2579eec8bcd7303393de841ba"/><file name="dk.png" hash="fe926c8271b35febf4a6cb0a41b111eb"/><file name="dm.png" hash="85845da8ae28e94f2885ceeb16515dd0"/><file name="do.png" hash="153949105845e18a133a4c778b3de31e"/><file name="dz.png" hash="c57f3c0951ba1525b3359fc0acbfd6b1"/><file name="ec.png" hash="0152114421e281913d0c1c148e196c92"/><file name="ee.png" hash="1cdfaaa10ff170ce19ed46339efe3af6"/><file name="eg.png" hash="09c48d3562f0dc51e2f9507704f6437f"/><file name="eh.png" hash="7dd5a46a34bee2f10532f1213a941d7b"/><file name="en.png" hash="73f2f220f6d51d249e45a04d9a03da91"/><file name="er.png" hash="481d394ac9a44f3040f7c457fc1f23a6"/><file name="es.png" hash="d6693ce2a6346b2da89ceda335554e0a"/><file name="et.png" hash="73763e46da896f3e951954ad473b4a4b"/><file name="europeanunion.png" hash="ffce5e64df4d367a20e1ef4033f60257"/><file name="fam.png" hash="0b36de21772c8d87e1d0106878b65231"/><file name="fi.png" hash="e30bd2493de78c998d1ac6c22d20146b"/><file name="fj.png" hash="7c3e78e31bb34b0fafbb0865737f8d36"/><file name="fk.png" hash="9627317fe9a5757ee8c06df7d8e8a887"/><file name="fm.png" hash="d3767ea95466571e10c7e563d456d754"/><file name="fo.png" hash="d0e6b0a3fdb4e2271b5b5057bd969966"/><file name="fr.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="ga.png" hash="972da84bdea1359d69c719a37d89d219"/><file name="gb.png" hash="0894999b108830afc0733ee7b6e08310"/><file name="gd.png" hash="95b8b79fafc6b1510978977bc8067b46"/><file name="ge.png" hash="aa40721b7a179f6c9c8f666a64063767"/><file name="gf.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="gh.png" hash="12da850e724de5ff779572bbdb8ded71"/><file name="gi.png" hash="0ca5a4db2ac11c8a5cb57701b18b8088"/><file name="gl.png" hash="073b6bf37f6eefe07145d9dd89bc9e7d"/><file name="gm.png" hash="a7d785fa41e66a5e6d82301688686f20"/><file name="gn.png" hash="acba9c908c29db8aa890b6a20265ac22"/><file name="gp.png" hash="c2dc0a2062b24f906431337186888f01"/><file name="gq.png" hash="70f64b2b38b8a21152e7446a1b3e1133"/><file name="gr.png" hash="fd9b321b80be31c027585c8992f1799f"/><file name="gs.png" hash="3b510d36dc70edd5b301da8096c9b71c"/><file name="gt.png" hash="384e9d38421a6853f9c35d48d8c49a85"/><file name="gu.png" hash="2d058f7cea364d247fee5bb53fe70390"/><file name="gw.png" hash="35eb1d9b882111ccec5f58cd778364bf"/><file name="gy.png" hash="d816170967c67a98db73cd89c56014fd"/><file name="hk.png" hash="389d0451c5c2ff40e88a93588dcbd6f1"/><file name="hm.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="hn.png" hash="ac9242c256af7800a223bdcbf0798f57"/><file name="hr.png" hash="0868c49000b253d9b4f290471898c961"/><file name="ht.png" hash="b5360c0f01d574333b3bfa27c3dce856"/><file name="hu.png" hash="6c6fce8a6fd09c340964b00c5e82a8c3"/><file name="id.png" hash="fed538f9c8cd0500a6a655b55426744c"/><file name="ie.png" hash="48e42d0d1451e7b19b7b79d631a3a95c"/><file name="il.png" hash="a135fcdefe8a391b416bdb102476e12b"/><file name="in.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="io.png" hash="38afe5a0e9817027e1f1615028aca521"/><file name="iq.png" hash="39cfe476621ad630cf3418c3234f0594"/><file name="ir.png" hash="2ac099e190547501704d309d59831d2b"/><file name="is.png" hash="7fffd4f1acabc2ccc890049e48587e8a"/><file name="it.png" hash="784f7eb333f0591558bcce9616a3c105"/><file name="jm.png" hash="a582c95e205f76277afa1571940121cd"/><file name="jo.png" hash="9dd19e8da30782b2bfb9b5a0d1c51e8b"/><file name="jp.png" hash="10958397bc7c25c746e6e122365c003c"/><file name="ke.png" hash="357152ed37ece2a45a7d57c5bf30ab3c"/><file name="kg.png" hash="192033ce169b1b107dc4aabb1f635c1c"/><file name="kh.png" hash="8658c066eb4f9d6c15efb31a821b482c"/><file name="ki.png" hash="703ced92b97cc2713038f0d50ee5a0f0"/><file name="km.png" hash="cc942486999d072021c0b3582306f834"/><file name="kn.png" hash="f096727a7612c065259c6334b61a8b6a"/><file name="kp.png" hash="0eaa3e8dc84bae9283a9969f2e360080"/><file name="kr.png" hash="cf63c15bf955e54afed8061497c7f7ea"/><file name="kw.png" hash="2e0485cdb9ca8240c9fc372e4cef0eb7"/><file name="ky.png" hash="da2c56cc2568d516031e3082713fd90c"/><file name="kz.png" hash="6d51066ba152b15fd05d761745333135"/><file name="la.png" hash="3375d707535d69248f0ab23ef80268c8"/><file name="lb.png" hash="dad5d86f0d90cca0ff4ab5332d7fd7fc"/><file name="lc.png" hash="18c05f2c79f8774bbb201593b20a06e2"/><file name="li.png" hash="822034b39b46abaa91127f8342092a32"/><file name="lk.png" hash="4e90c553f186c9776976b5b11dba4ea4"/><file name="lr.png" hash="3b6d8d720721f68ceb465249aad32b27"/><file name="ls.png" hash="c228783a0785a8541d96d5515a2a16cf"/><file name="lt.png" hash="95efec9db9d274d25fbb98eb53a9c384"/><file name="lu.png" hash="3be0b3a6096e9d77d9d7b997d464e612"/><file name="lv.png" hash="6ffae4cc65036d3de052a58e062d1ed7"/><file name="ly.png" hash="3f9d6e8cba5fd7cb8c201acfe9b7bc15"/><file name="ma.png" hash="c936b9f794def7d85fbb4c120d68684e"/><file name="mc.png" hash="63c6fd073106c8b0eb7336d9c19653a2"/><file name="md.png" hash="e414980c55af38676c5312bd330d6bb9"/><file name="me.png" hash="7a2ee5d7f1bc5ef478106a86d2c1cc09"/><file name="mg.png" hash="5aea24a18ca7e8b65770dcf2a738dd08"/><file name="mh.png" hash="948dd15821a6fe45b0df8667b6601ead"/><file name="mk.png" hash="617997cbcaafaea0035a4c0474ae16dd"/><file name="ml.png" hash="d951cb1c43a8077167b731a1aea70b6c"/><file name="mm.png" hash="82ad2104b5490e1f6adfcfa777ab8243"/><file name="mn.png" hash="4adb9a834188753731add527aa4f67f0"/><file name="mo.png" hash="6339bdf0e24c871301d1fc0207e2685f"/><file name="mp.png" hash="929b9802e7bfb58bab0330a4c6925595"/><file name="mq.png" hash="be5fb2cd33e8df13e0b2f2feffb9373f"/><file name="mr.png" hash="6c1cc8a1babe91421a38ddc573ee7cb4"/><file name="ms.png" hash="bfddbc2aae078e0aa80633f784e18526"/><file name="mt.png" hash="7a7ee4f98185ecfb6e1ba753aa6f2111"/><file name="mu.png" hash="48d5cbc23fedfbb77b06ed0e9b04522f"/><file name="mv.png" hash="24c90cfb0c883f9d1b303276c3b069e7"/><file name="mw.png" hash="1d2b8e369b2d4384d1ab4b24315fa139"/><file name="mx.png" hash="479a865f838c70d654a9f818a23f9a7d"/><file name="my.png" hash="e1c0f262c141e8615f819b1cd18393d3"/><file name="mz.png" hash="159c85011041bea6bd3c68b6ba2919d7"/><file name="na.png" hash="e582101531b620fb0138c83602aab920"/><file name="nc.png" hash="ad8bf708e9db5fa423b5da123c914378"/><file name="ne.png" hash="f2eccd65605d8babcdd3af4b01215ecc"/><file name="nf.png" hash="c624a221dae959256a3e143a5147f825"/><file name="ng.png" hash="0c506131e1841cee782e4faf5cec89a9"/><file name="ni.png" hash="f43a5f35488513de58e2e5fbda9a98db"/><file name="nl.png" hash="6186550ebc77b1c51cd3ae37e78c33c1"/><file name="no.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="np.png" hash="52c16445053df13abb08cedbe82f1f28"/><file name="nr.png" hash="2fb04b74787698835b63a46cbdef6fab"/><file name="nu.png" hash="9a2f682db640f1c36ee40f296f63dc87"/><file name="nz.png" hash="179cc39a58e324df1e9a19a5eae9dca0"/><file name="om.png" hash="7b002bc8c4ab1a85c2c807ec2c4442d2"/><file name="pa.png" hash="64795009d69b36b6a4461b8159dcf356"/><file name="pe.png" hash="d1ed0462edb8cbc3220b7aca250b0437"/><file name="pf.png" hash="e59d18e48cf0924687618bbf60ea4fee"/><file name="pg.png" hash="48f68aaeefaa3b8ee7ce1f1761e6c11d"/><file name="ph.png" hash="8ff2d08518d3e1224d34467f5e24fcc2"/><file name="pk.png" hash="3bd18971ec170e6e9c461026068508da"/><file name="pl.png" hash="fad0e96c20f20be196499d26a6c74cd1"/><file name="pm.png" hash="ba41b8c349070250f814188080c2a8e8"/><file name="pn.png" hash="e4dcc857f534b48e8377ee36f63be013"/><file name="pr.png" hash="40b7fb1a4c1ebb076d40f0df5c6fd59a"/><file name="ps.png" hash="68d5f99924c67ef7d3b3aa32ff22b805"/><file name="pt.png" hash="5b8ab69ac52129bd32a3927f1b94d170"/><file name="pw.png" hash="f2bff7cd01d8eff6401e811f3de6af4f"/><file name="py.png" hash="b9d3d10b185a3144e21a452903857870"/><file name="qa.png" hash="c1dc363a27f5b5d19e24032747d7bedf"/><file name="re.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="ro.png" hash="d038c9c152c5e14f875c7b13afcd4711"/><file name="rs.png" hash="5b672e3ee63317614288615ba0774bf7"/><file name="ru.png" hash="0d31ef75adef220e73f0cb93a84a7422"/><file name="rw.png" hash="bef92348e3ea38dc462326e1ba2ff622"/><file name="sa.png" hash="605884cec6f446d418a092c0941acad5"/><file name="sb.png" hash="5e4b74f8a611742bdc3a04629e871eb4"/><file name="sc.png" hash="39650e922851e1b72165d7b016dc3b44"/><file name="scotland.png" hash="eca5bebe6e4dbc9eb858d4f58ea3f9de"/><file name="sd.png" hash="b972f90fea3369c020d258d1b860a6e0"/><file name="se.png" hash="4c01f06db23324267e2802dcade3572f"/><file name="sg.png" hash="8af65159c137a6a7ed3d1bc9c2eed18b"/><file name="sh.png" hash="e707aacb0986ad7a4a60ab8d82cf093d"/><file name="si.png" hash="d94ea79a5a8e0b6900941a1271c58191"/><file name="sj.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="sk.png" hash="5a7edc7e4492629ea5ce24b830839d32"/><file name="sl.png" hash="73904ec1cf4f0be282693c4e954e5821"/><file name="sm.png" hash="56e3c1b483bf27e619146b50ee5181bc"/><file name="sn.png" hash="501a5fab662d127ad588825cd0cd4954"/><file name="so.png" hash="4be2ffc4d06de407434a877dc03ff88b"/><file name="sr.png" hash="8f9aca73767b8e7876c72add438a6007"/><file name="st.png" hash="ab272a50ea656512c036c001fcaca61c"/><file name="sv.png" hash="c6c853766dfbab2ddd225980d3012f5c"/><file name="sy.png" hash="a0886eca3ef87d646af1514d025752f6"/><file name="sz.png" hash="e97675a21b5280b9cb4c1fc99aab004f"/><file name="tc.png" hash="50733ccc670058e9a737b652089287ca"/><file name="td.png" hash="6c8d3f6c96bcd5d34a0bae497d0e13ca"/><file name="tf.png" hash="f7ccbaa513a24eb3dc4c7860ab8007ee"/><file name="tg.png" hash="5c62720575f914ffff9fe06e2b9c1b95"/><file name="th.png" hash="af85286bf1cadae9c2c636fe83195251"/><file name="tj.png" hash="5cc548d1858d19f336ca7390b381ad07"/><file name="tk.png" hash="896fb1a34638a76361d4307668cd5414"/><file name="tl.png" hash="093e76da6759647c331ea75ef1ba9da0"/><file name="tm.png" hash="b36ce71226fad4da67764e05b800292b"/><file name="tn.png" hash="ae9947d99c48894d1d1824d624361eb9"/><file name="to.png" hash="ce868fde2d77788a669001995f4b73df"/><file name="tr.png" hash="31ea1f705854ad57c432845068bd05d3"/><file name="tt.png" hash="9ead47e1d48627b1806cd992b62c8c2b"/><file name="tv.png" hash="6fec556dd8bd936ca706b0d7cc864993"/><file name="tw.png" hash="0e41af2b3ca03d145e7665d0821931fa"/><file name="tz.png" hash="c846788492ef1188f631113bd8cced5c"/><file name="ua.png" hash="7ef7a6f5def3a4117d5c2f08e37008ff"/><file name="ug.png" hash="17e134aa84a076bf5541f5d11c616e5d"/><file name="um.png" hash="f0f12f4afaccb13ea40e15f3b81c5921"/><file name="us.png" hash="968591e0050981be9fa94bd2597afb48"/><file name="uy.png" hash="9ca8f3d9b1b1101d30a4555c997e871b"/><file name="uz.png" hash="37e4bdb64229f4624cacec7d4297214d"/><file name="va.png" hash="493642ad6bf3a344602fe006e7d44fa2"/><file name="vc.png" hash="60eec8d579d55ea0f2ec62d837c104d2"/><file name="ve.png" hash="3aee24fa5f6a85f5ce452001182fdccc"/><file name="vg.png" hash="79ef17575149f2663df51419f39feff2"/><file name="vi.png" hash="c95b9175142cd29177a9b25e16c3fc39"/><file name="vn.png" hash="638136b1a6f5dab7be6cec84fcc2cd53"/><file name="vu.png" hash="c37b82a52cdf80492ee94dc7f46256cf"/><file name="wales.png" hash="42c7ca83721190322499c94d7ff2ae26"/><file name="wf.png" hash="86cc1aa337ebb6cb74a2c3196770a7f5"/><file name="ws.png" hash="68183f64328d121a9ee77a92319bbfcd"/><file name="ye.png" hash="290e09160bb2ef42ba8129a41159eb07"/><file name="yt.png" hash="f46c7cd7b2474cbcf61c5b2007a7558f"/><file name="za.png" hash="98e1044d0ffd11afc67a79f3676ba97a"/><file name="zm.png" hash="ec69def9e77d23446867caeb4a5223b1"/><file name="zw.png" hash="e7ae0b7e3c49a5a775a9d6854912e21a"/></dir></dir><dir name="lib"><file name="linkbrowser-plugin.js" hash="fd87f19114c7d4b9be0e66f838b8faf3"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="0b35b7662d581fb73f15d57241dc712c"/></dir><dir name="fr"><file name="i18n.js" hash="c4c40a8ee7b9838b2d19c64aeb20bc02"/></dir><file name="i18n.js" hash="9c1b1bab4a0cbeeca43f0a7d2973ed6c"/><dir name="pl"><file name="i18n.js" hash="e437a8fd96d668e434e2c54335076c57"/></dir><dir name="ru"><file name="i18n.js" hash="2ed0f0820c48e216320ed394f688d692"/></dir></dir></dir><dir name="linkchecker"><dir name="demo"><file name="index.css" hash="9e891121c2afbebf93e7e60246e4ad83"/><file name="index.html" hash="a4b5ea8b3379165a7e029d5c5ca6b60f"/></dir><dir name="i18n"><file name="en.json" hash="a04e2aadf4cde44a1d7f37e1f8cdd6f3"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/><file name="proxy.php" hash="0df3a89cb6377d67b7a8369550da759d"/><dir name="src"><file name="linkchecker.css" hash="3b6655782ef891892b4b6a832fda637d"/><file name="linkchecker.js" hash="09fa73da4941bb69e15e94ed6d4057b6"/></dir></dir><dir name="listenforcer"><dir name="lib"><file name="listenforcer-plugin.js" hash="fa7c8bf0a3bd5cd8ed6cc80b4890a7f5"/></dir></dir><dir name="metaview"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="metaview.css" hash="7872517ca153db1161440259d68be1b6"/></dir><dir name="img"><file name="anchor.png" hash="b7374ee3cf18e7e75bed7d3442dcfecf"/><file name="blockquote.png" hash="5cd5fb5fe87078c1cae941dad05db2e2"/><file name="button.png" hash="7aff9916eb0a720c7c481a68870a0c1e"/><file name="caption.png" hash="d6a9ecd231fc5d6a323a6d83c6618cbd"/><file name="cite.png" hash="33980d500326461381a8aeb09276d8f4"/><file name="dd.png" hash="3c5f188bf831d0842533b5b347ed1acd"/><file name="div.png" hash="5acf97d2095a72f83029f77bd1dee2a7"/><file name="dl.png" hash="5373ef01a0c1fdfbe518be953b6d6546"/><file name="dt.png" hash="f990c191b6b040108adb41f7217e161b"/><file name="h1.png" hash="b3782df976443f4a0086893d4da991d2"/><file name="h2.png" hash="6e4bfdbfc57415b8c650347bd1704154"/><file name="h3.png" hash="8915729f6e8b98436f9a1a0723bc2d6a"/><file name="h4.png" hash="03bfccf7f8d474142bafeabf86b4732f"/><file name="h5.png" hash="c0f5d3d29f3cf277960182af39f5028a"/><file name="h6.png" hash="f19136291f975688a3784353ac0fc83c"/><file name="icon_cite.png" hash="8e79ff67005c66bcd6b1f14df213073b"/><file name="p.png" hash="afe885e1e018a8aecee52a08e605c565"/><file name="pre.png" hash="7ad78e30f68e5007ed479516f583e10f"/><file name="table.png" hash="dd437067595683daf8604a2da0135ef1"/><file name="td.png" hash="3c521695391fd4362ebfceaa2dbe879e"/><file name="th.png" hash="80d9f15fe860ddfbee8789d1e764ec48"/></dir><dir name="lib"><file name="metaview-plugin.js" hash="52dd9c630cde4b8e9dc8636835da7539"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="37becb02812c958c05a8d1e37bbc48f2"/></dir><file name="de.json" hash="da83f1ee8d94a5d126d71a89ba5ee1a2"/><dir name="en"><file name="i18n.js" hash="fdf9627e82d6185f945f081874c37834"/></dir><file name="en.json" hash="c99f6a248ca7be514520b612b1105347"/><file name="i18n.js" hash="f51b1b72cace2cd80df94e235153ec40"/></dir></dir><dir name="numerated-headers"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="numerated-headers.css" hash="47d8c6f3f407d0af63ee2285ea27fef7"/></dir><dir name="demo"><file name="index.css" hash="32059e4d2a4b889370e39ad7cc4f2a4e"/><file name="index.html" hash="5d1a1345e5c047d5db99b8776529dcb1"/><dir name="js"><file name="aloha-config.js" hash="805eb7f2786ae00e8231bfac3846a2e8"/></dir></dir><dir name="img"><file name="headers.png" hash="7630590f7ea5d00fec556943a2183f5a"/></dir><dir name="lib"><file name="numerated-headers-plugin.js" hash="aa2fe8eec580885ab4c10f6c02385254"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="62d6a5c04f12a2ae2479ca468ad90778"/></dir><dir name="en"><file name="i18n.js" hash="712183db4b838ce7d90478722333f0f1"/></dir><file name="i18n.js" hash="9e9897258fa3ab691cc7ca8f901ed54a"/></dir></dir><dir name="profiler"><dir name="css"><file name="profiler.css" hash="2ca2d9c39d9b15824c41456ca24ba1b1"/></dir><dir name="lib"><file name="profiler-plugin.js" hash="edd509d9a5b67958eb52ef4d7fbbcb65"/></dir></dir><dir name="ribbon"><file name="LICENSE.md" hash="e3ec45ebf5c494127af801d4850a1daf"/><file name="README.md" hash="1637ac1b809dd57be434e79010ef4972"/><dir name="css"><file name="ribbon.css" hash="e9d735353947297e65b75b9d2ef4db2f"/></dir><dir name="lib"><file name="ribbon-plugin.js" hash="9d5f9cfe70ad430591f28c2ee9c2ae29"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="speak"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="speak.css" hash="8d4afbb4c5b726ac0d40adf33e8ba581"/></dir><dir name="img"><file name="speaker.png" hash="9d3c09c35a5ccbc0b363612abed94b5b"/></dir><dir name="lib"><file name="speak-plugin.js" hash="132b6c16592aed735ef288daeb0fdf03"/><file name="speak.js" hash="695dd170d4216eddb77edd2594ef585a"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="toc"><dir name="i18n"><file name="de.json" hash="313608ba11e30d2dcdfa205baeb77aec"/><file name="en.json" hash="1c7c7c34adff34cee45f1c073301d529"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/><dir name="src"><file name="toc.js" hash="3278aa8b4e68ba8060d80b9f072b9628"/></dir></dir><dir name="vie"><file name="LICENSE" hash="94d261f8b69f0bc57ece9e7e2c2ef614"/><file name="README.markdown" hash="0337bcb88f08635c37815294d6931d3d"/><dir name="demo"><file name="index.html" hash="b4bdc507a87514358bea9c7c29fd8d4a"/></dir><dir name="img"><file name="cms-decoupled-communications.png" hash="e3c73d2d62a171d1561b40f0e7edc762"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/><dir name="src"><file name="backbone-min.js" hash="5d7dc1cbe7f0b177cf66187937001fb9"/><file name="underscore-min.js" hash="178201c529411d163a6801134d2d45fc"/><file name="vie-aloha.js" hash="35e4377798770a44035c1c370bbda464"/><file name="vie-collectionmanager.js" hash="bff7ab42ade6f9ecafad553505224a3d"/><file name="vie-containermanager.js" hash="7ae8c63fffd549125d4d2859bab6d531"/><file name="vie.js" hash="f5e19b32939e655d6959a6743ddd12f4"/></dir></dir><dir name="wai-lang"><file name="README.md" hash="c40bb8969ac220ccde8fd6d06db4858c"/><dir name="css"><file name="wai-lang.css" hash="f16081c94638324b35488ee0791925c2"/></dir><dir name="img"><file name="button.png" hash="f41f65165ae81e7313633719a9c970ba"/><file name="remove-button.png" hash="a090a788e86b2569db2d934ddf31517f"/></dir><dir name="lib"><file name="language-codes.json" hash="239b1391054204eae80aab04f1a50c45"/><file name="languages.js" hash="20a6879ef651bff364ad01f6e208e632"/><file name="wai-lang-plugin.js" hash="ce68feae1848a874c85bd8a520654281"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="e463f7950e2bf46a9c9c3455f1decc7d"/></dir><dir name="en"><file name="i18n.js" hash="3edf3f2a6de610fe791af94c1b001988"/></dir><file name="i18n.js" hash="990aa79711d83c3338abd0cb99b0982c"/></dir></dir><dir name="zemanta"><file name="README" hash="4bbea2da0a10dd744ed92d23ea9ab24d"/><dir name="css"><file name="zemanta-widget-alohaeditor.css" hash="3fb224fa4502670cb6819a36532b2fa2"/></dir><dir name="img"><file name="zemanta-mini-logo.png" hash="4ba9ab70cfe3c186e0fcdd79e98f2966"/></dir><dir name="lib"><file name="zemanta-plugin.js" hash="6ac75056a22ebcce6d01d1b0f27af823"/></dir><dir name="nls"><file name="i18n.js" hash="0e12820f2627a1d13ea99eae1516bf0e"/></dir></dir></dir></dir></dir><file name="counter.js" hash="608fa7304556810b940c9fdd1ecfa0d9"/><dir name="css"><file name="default.css" hash="43462f50f1b805e3b90768ee235fadf8"/><file name="dropdown.css" hash="4f78db1ab85c81e691b473a6569a743f"/><file name="dropdownx.css" hash="d82e0e673faadd689f28e1247b73806c"/><file name="fonts.css" hash="00b04c27359b281fb52ddee901de12ea"/><file name="login.css" hash="7dd72559eb6dc10f18a697fd46eb9b55"/><file name="styles.css" hash="0f3912a41697368d213df0f573258eb7"/></dir><file name="dropdown.js" hash="75fdd98424a67d977915b48e9b596e51"/><file name="dropdownx.js" hash="ace4d0441d7d622e3cf72589f8c9b7e1"/><file name="editor.htm" hash="2821bdfc04c716841e71f0a08933a832"/><file name="editor.htm.old" hash="b2b877e04666b89199603a27a215727e"/><file name="jquery-ui-1.8.15.custom.min.js" hash="9df7a1a861cc61f4b8c1ac1c390c37fa"/><file name="jquery.js" hash="d1477ad1c080ff5ef8f090d0df2314db"/><file name="jquery.layout.js" hash="f6523f9daae58dbd3397b139550f5553"/><file name="jquery.sparkline.min.js" hash="cc8ec320305350400fbdc8e55fefd8c5"/><file name="messagebox.js" hash="b4773c926a71bcadc7e8fff8b20de49e"/><dir name="raphael"><file name="g.pie.js" hash="f249e49cd2ba852dfa517bef5ef55434"/><file name="g.raphael.js" hash="bae4fc73e97b4b979d8619e1601fe9c4"/><file name="gauge.js" hash="dcaacf3e59fb0fe2f32ccb211d61198e"/><file name="linear.js" hash="12883bea5f0067dbe6c8fdb370c6544d"/><file name="pie.js" hash="da74f7469d37116695c4a9ef47eb345d"/><file name="popup.js" hash="30d0c7ae59e65875785f66979a689b99"/><file name="raphael.js" hash="bb02bf5b8b4d9c0dbf95fa725c75c755"/></dir><file name="world.js" hash="fc8e780b55cd90e25744918e2a817e99"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Comfirm_AlphaMail</name>
4
+ <version>1.1.5</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/MIT">MIT</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Transactional email module for integration with AlphaMail by Comfirm.</summary>
10
  <description>The Comfirm AlphaMail extension is a transactional email extension that makes it easier to manage, send and get reports on the transactional emails in Magento.</description>
11
+ <notes>Release with Template initialization support.</notes>
12
  <authors><author><name>comfirm</name><user>comfirm</user><email>robin@comfirm.se</email></author></authors>
13
+ <date>2012-09-24</date>
14
+ <time>19:59:43</time>
15
+ <contents><target name="magecommunity"><dir name="Comfirm"><dir name="AlphaMail"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Wrapper.php" hash="db8262d817c4ce48d1f62345c08a13ca"/></dir></dir><dir name="Test"><file name="Authentication.php" hash="7686ab33c59f030b27b79e1276cac5b8"/><file name="Diagnostic.php" hash="3e375f1cbda77c55c296c40c4881345b"/><file name="Send.php" hash="f11c197f6c4b856161e016817c7e3b51"/></dir></dir><dir name="EventLog"><file name="Grid.php" hash="5911af8cfb886fa36147f540d3bcfc44"/><file name="View.php" hash="1f0a1dc52906faa4281a666d35479f2c"/></dir><file name="EventLog.php" hash="232beb62abe256a00fc464e8fca91eb4"/><file name="Project.php" hash="5fa965c5eddd3486382cb65265c3236d"/><dir name="ProjectMapping"><file name="Grid.php" hash="c1401e84a84e6592ef8826d1c63cd46d"/><file name="View.php" hash="9b5ee5c105defd33a9216ec0de31c4fa"/></dir><file name="ProjectMapping.php" hash="4c28a21c88b2023ea5540c6f67aa23cd"/><file name="Template.php" hash="290489e9069ab313b799ae734e0774d0"/></dir><dir name="Controller"><file name="Abstract.php" hash="d4dfd8fb0addd5dd170f87c0108ae2c7"/></dir><dir name="Helper"><file name="Data.php" hash="20f1e98319cd11eec2cefdabf861ff2b"/><file name="Diagnostic.php" hash="4223e70e66661811ebc3f525f4e88b3e"/><file name="Message.php" hash="ba46217e691ebf99b5b58880bfc4009b"/></dir><dir name="Message"><dir name="Customer"><dir name="Email"><file name="Confirmation.php" hash="dccbf4512ecf82b6c7d480845b293cfb"/></dir><dir name="Password"><file name="Renewal.php" hash="032b8969aed2ad37d1b94ef22e27c252"/></dir><dir name="Sales"><dir name="Order"><dir name="Invoice"><file name="Update.php" hash="e9815267f403dec845c3d313a33d7eae"/></dir><file name="Invoice.php" hash="c452bd6b15666708cf6ec85e9a33f7e5"/><file name="Update.php" hash="be9a17636f526ff45fed3a3ddd02aa58"/></dir><file name="Order.php" hash="2286fc431d838bce7f8921d465ef867e"/></dir><file name="Welcome.php" hash="f712e596b45b679e65519615f85cea70"/></dir></dir><dir name="Model"><dir name="Email"><file name="Template.php" hash="092a2b840488f37ee8775196abea0c10"/></dir><dir name="Event"><file name="Log.php" hash="8403425f64d04f2bb1439e6a3834b59f"/></dir><dir name="Mysql4"><dir name="Event"><dir name="Log"><file name="Collection.php" hash="46e23089ef49b668fb97ff43da6b48c9"/></dir><file name="Log.php" hash="fd0200706ad7966bbd5fdf9353e45f23"/></dir><dir name="Project"><dir name="Map"><file name="Collection.php" hash="803ab517739a8f08d5957703f8ba9a48"/></dir><file name="Map.php" hash="34b973bf31a675a38967f7958cf2605e"/></dir><dir name="Send"><dir name="Log"><file name="Collection.php" hash="56fc46a4771f5aee35ff65873638a501"/></dir><file name="Log.php" hash="464c694d0daf7cb8577ab2f8937394d4"/></dir><file name="Setup.php" hash="aada6ed95c86cfd9f370113da07bc5d2"/></dir><dir name="Project"><file name="Map.php" hash="1f5a87e55237c6670eecc772379e166c"/></dir><dir name="Send"><file name="Log.php" hash="0d1c8e64ac8ff890bb9e1922e7251993"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="General"><file name="EnabledDisabled.php" hash="9ffec22ca17202547c9433145f25a05b"/><file name="Fallback.php" hash="f291cc7a363a88611f3c5c747ac502fa"/><file name="NumberOfRetries.php" hash="a89384039313ce9b803f3db8c307250e"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="EventLogController.php" hash="0753ca3bfa420f78f6d99cd932274583"/><file name="ProjectController.php" hash="71d7cca50a0c2192b2daef4fa3c96987"/><file name="ProjectMappingController.php" hash="72a4205cff36a01b33623f92ed3a3bcb"/><file name="ProjectMappingController.php.bak" hash="72a4205cff36a01b33623f92ed3a3bcb"/><file name="TemplateController.php" hash="771f3d5da75061329556c007c2ba9e66"/><file name="TestController.php" hash="f4adc512f507137962c0f9bf7b9d0ede"/></dir><dir name="data"><dir name="integration_defaults"><file name="email_confirmation.htm" hash="0af80701addd67f08b7a65eed53b4853"/><file name="email_confirmation.txt" hash="1fd7862262ee58a52d4a8a30bf61dd9d"/><file name="new_order_confirmation.htm" hash="a8cf51d585b363d8d553bb8ce0ff5f64"/><file name="new_order_confirmation.txt" hash="4b56b0d2c85f5643818d79f423ac5488"/><file name="order_update.htm" hash="4e157ce58a5bccaa26ba36e842806233"/><file name="order_update.txt" hash="7de48e9852b6289df406576a0ccc9653"/><file name="reset_password.htm" hash="ed0211256b7440fbbca8b7d16376d49d"/><file name="reset_password.txt" hash="6773028cea907880444a8787f2afd832"/><file name="welcome.htm" hash="6ccad54654ca9ca8912b3df87cdf25df"/><file name="welcome.txt" hash="e3646d12b18c1d23d6f2ce12cc125c04"/></dir><dir name="queue"><file name="4981757f-c28d-7eab-8077-11f1b435a8af.msg" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="templates"><dir name="confirm-email"><file name="data.json" hash="b2c1f23a74a5d45048a79810ac34d793"/><file name="template.htm" hash="679b6fe1cfa539a96f11deab2793ce58"/><file name="template.txt" hash="45bc1a150cc8127d9817616269063ecf"/></dir><dir name="order-confirmation"><file name="data.json" hash="5afc62bdddd2288eb696a4bda47f7142"/><file name="template.htm" hash="d414ea4bbb02b097b5e6bbfb05dcdb75"/><file name="template.txt" hash="b36ce7f5e1e84430624182d355691930"/></dir><dir name="order-update"><file name="data.json" hash="c5b7dab7c2fe07b5e5b5002cd16d33bc"/><file name="template.htm" hash="7def6b5399a64d702a3771c33ee6e115"/><file name="template.txt" hash="19ad7bd063edb90531c894232e0ad89f"/></dir><dir name="reset-password"><file name="data.json" hash="b4fd944f24cdbacd14a2649d05c279a5"/><file name="template.htm" hash="3c12431c254fc09285394abdd8345c8b"/><file name="template.txt" hash="ab364988a3671130725ffd82a4df8499"/></dir><dir name="welcome"><file name="data.json" hash="f022638f409c6e2bcb5968dd8e4d2ad0"/><file name="template.htm" hash="34aac6cf1d039842b2f6c5fcda7cd1ea"/><file name="template.txt" hash="6083f8b255b619c73b71576110d5295b"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="dd6382cde150c6833429dd9ab69852e1"/><file name="system.xml" hash="cbd0f9e3e02648be8a2409efc5393c40"/></dir><dir name="libraries"><dir name="comfirm.alphamail.client"><file name="emailservice.class.php" hash="1376bfe3d519e4882fed14d8e7884194"/><file name="emailservice.interface.php" hash="a89a39c6b1ad0385dbade68c59a95d7f"/><dir name="entities"><file name="emailcontact.class.php" hash="912f82fac1e6dad67dd9fe120d74f527"/><file name="emailmessagepayload.class.php" hash="32f9ad93d54ca65fb3b0408de29f9694"/><file name="idempotentemailmessagepayload.class.php" hash="ee1944cf5a2a637483bc5902e53dce41"/><file name="project.class.php" hash="056cc2d219fd9e007f9d34388ec86122"/><file name="serviceresponse.class.php" hash="10cbc9761e304c877b0c28cd18fc0c8c"/><file name="signature.class.php" hash="951dc5667a0e492640b26aae33a61765"/><file name="template.class.php" hash="13cc09cb93fe9abc0c0c37a765c5f895"/></dir><dir name="exceptions"><file name="alphamailauthorizationexception.class.php" hash="f023fee677c1e3b39b56023d6ec37bfa"/><file name="alphamailinternalexception.class.php" hash="f904c1ca0b6f7fb67226863355f527ee"/><file name="alphamailserviceexception.class.php" hash="504a6296576fed58d195fb6628e52b6a"/><file name="alphamailvalidationexception.class.php" hash="ca0274cf5ef8b1dabe2a44fab1c9f5e7"/></dir><file name="projectservice.class.php" hash="a21bfebde404aa13ae732b85ef59dee5"/><file name="projectservice.interface.php" hash="4a54c7cfbf959d01b6946216a8613366"/><file name="signatureservice.class.php" hash="20c7d060b5f3808f978168fc93feaec4"/><file name="signatureservice.interface.php" hash="9a9b90a695aead0844b50df6f0823f8f"/><file name="templateservice.class.php" hash="7d85d6e6f9e8c634f5dcd51510818ada"/><file name="templateservice.interface.php" hash="245ad486b7d8568e0016db036575c1ea"/></dir><dir name="comfirm.services.client.rest"><dir name="httprequest"><dir name="filters"><file name="basicauthenticationfilterchainitem.class.php" hash="c5c8fdeae1ac8b04cc4d58e322c2f126"/><file name="httpchunkfilterchainitem.class.php" hash="69ff142a4c492956f341a16121be8327"/><file name="httpgzipfilterchainitem.class.php" hash="83df3eef9cb52298f0df1ad49a5ce9cb"/><file name="jsondeserializerchainitem.class.php" hash="a84baba1208ab0fec635a176490539b0"/></dir><file name="httpfilter.class.php" hash="d5e7dcd6771185e092ee08ce38933c57"/><file name="httpheadercollection.class.php" hash="3f1040d7f4ce7911695615dc1bab256a"/><file name="httppacketcompiler.class.php" hash="931ea0ee1b5e2ca207ed470b7bc2de29"/><file name="httppacketparser.class.php" hash="e1a7fbff36c380822b8e821d1268338d"/><file name="httprequest.class.php" hash="98d6fa9909046f0b58f69ba9e1680a61"/><file name="httpsocket.class.php" hash="7d4f62d933507f8a940b415d4d63d57b"/><file name="httptypes.class.php" hash="47e6c7485835c530d94df9195d080739"/></dir><file name="restful.class.php" hash="d7774372ebf1556fdd5248a95889281d"/></dir><file name="license.txt" hash="ea21b75a1e26825c31ae29f29a870a34"/></dir><dir name="sql"><dir name="alphamail_setup"><file name="mysql4-install-1.1.5.php" hash="4ed919c0b813b6b3f72a971976cd513a"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="alphamail"><dir name="project"><file name="create.phtml" hash="5dca65c2cdd0d6900e80dde8fcbcaf70"/><file name="edit.phtml" hash="332c10bfa9ce04a947087ff2a1f5d94a"/><file name="index.phtml" hash="fc2db9090d54ec070eac43cb0eb2356b"/></dir><dir name="projectmapping"><file name="index.phtml" hash="0feec3a54e8937c05e282cb229dd8dd9"/></dir><dir name="system"><file name="config.phtml" hash="f06e7d737f4ece8550daec08521bfab5"/></dir><dir name="template"><file name="create.phtml" hash="0e67af73030069e69d635cef09bba1cc"/><file name="edit.phtml" hash="7b6b8408a55ddfcf4a0cc926757a3a1f"/><file name="index.phtml" hash="ae4295f2a4d9cfba2c8ad3980c41fdee"/></dir></dir></dir><dir name="layout"><file name="alphamail.xml" hash="aa8606064c27d8b77c401568e94c8d53"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Comfirm_AlphaMail.xml" hash="41e608f730e29ee308a440eef9e4a6d7"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="alphamail"><dir name="CodeMirror-2.18"><file name="LICENSE" hash="88a46883b83470458c36a0d3ceeb93d9"/><file name="README.md" hash="abd2e59dd0d5d1219ab3e51e18d02a78"/><file name="compress.html" hash="56998a9496450c0a7ced0a9531f7fb1e"/><dir name="css"><file name="baboon.png" hash="f8a5922c3789f6fdc9c688910b4a2fc6"/><file name="baboon_vector.svg" hash="cbb2a762cc2cc473a55866fd183fdfd8"/><file name="docs.css" hash="880f5eccb6a233dd37f13eeab0d77240"/></dir><dir name="demo"><file name="activeline.html" hash="ab199706cfe18636ab3cb223480cd338"/><file name="changemode.html" hash="32c56f356328a8c79dff7dde167bfa91"/><file name="complete.html" hash="516467b12d46b4be50d11b229ae89d37"/><file name="folding.html" hash="85d5ef327c7701a9ff8d086fefd28e15"/><file name="fullscreen.html" hash="7d31a67869847d6b0f1eaab9daa085f6"/><file name="marker.html" hash="b96a7021d667c26ba8cbb7d3b52f2d35"/><file name="mustache.html" hash="91b3265c79cc2927b5abfedaf4df4f36"/><file name="preview.html" hash="e729a5e789db6f936d64a71ee3b74550"/><file name="resize.html" hash="2f3cf3d4196ee196a223b2bc6deeb9ed"/><file name="runmode.html" hash="d2850d3fb891233d71c5431b0de60b4a"/><file name="search.html" hash="7ca9114ab2a6e60c27b58b465821564a"/><file name="theme.html" hash="cc226662183164d7704caa6acf3ef49a"/></dir><file name="index.html" hash="6f48cd162b449e02713027a4ba19d40a"/><file name="internals.html" hash="ede4bfc781a60ab1e5faf6ac57552e4d"/><dir name="lib"><file name="codemirror.css" hash="f8060f5669782ea8073c1284d6b0e087"/><file name="codemirror.js" hash="1d761d052bc976f7a1e3aa3e48c1e840"/><dir name="util"><file name="foldcode.js" hash="ce39cf73fd6e555a5e6a84413639d25f"/><file name="javascript-hint.js" hash="be61d8fab65f1b16371d2ec0138a30b0"/><file name="overlay.js" hash="4e8f55ef7aecb45e63a5878dbc26d0b4"/><file name="runmode.js" hash="6f9dbd4bc4b12114a1619272ba22c4af"/><file name="simple-hint.css" hash="55a5102f1b82825aa13530eb6f037d04"/><file name="simple-hint.js" hash="32d841403fa1f847af48b711e7dbf0b5"/></dir></dir><file name="manual.html" hash="87815b37b4d896f147464a5517322459"/><dir name="mode"><dir name="clike"><file name="clike.js" hash="77938b56bcb965edd958d227e6e435cf"/><file name="index.html" hash="fc0525c00a90e58dbb74f3dfa574e24d"/></dir><dir name="clojure"><file name="clojure.js" hash="d0e5f988c3518c075de6a8079090a677"/><file name="index.html" hash="cecb248e3c926b62e6aff08af0fe8667"/></dir><dir name="coffeescript"><file name="LICENSE" hash="e1d0a7e1594e557cab9810f441c2f3d7"/><file name="coffeescript.js" hash="32e1df9643f3c2e433f9e1ba8c58eb71"/><file name="index.html" hash="53b5623875a779ab3800a03463122d59"/></dir><dir name="comlang"><file name="comlang.js" hash="437f2676a63a4864e2250bcd9df57686"/><file name="index.html" hash="d5a4cbcfb8666aba65e5f53a595ba747"/></dir><dir name="css"><file name="css.js" hash="80303c4fcebe219d9a75ed2486881e2e"/><file name="index.html" hash="986ed418c167141c2f01f4dd14c8b341"/></dir><dir name="diff"><file name="diff.css" hash="9750bed5e2f10a2a741eeb07c0a0b357"/><file name="diff.js" hash="df1bb436730e745e233ab0dc707d0064"/><file name="index.html" hash="0bb8a6bbaf3f54bd62f2d0ff304c734c"/></dir><dir name="gfm"><file name="gfm.js" hash="0d260bd0c0c3e6adb8c75e9870d1891d"/><file name="index.html" hash="2dd1b5f08712c6c808cd51b9f84eb0e4"/></dir><dir name="groovy"><file name="groovy.js" hash="2c13ec060d697e4ee98a060c1059db6b"/><file name="index.html" hash="6f9c93412c3e668c8c3f666efc3f03c9"/></dir><dir name="haskell"><file name="haskell.js" hash="e76871c0327e7bb9f90a6ab0e5e8dfb2"/><file name="index.html" hash="377123b1ca9fa7e69c9f3d1931f3065f"/></dir><dir name="htmlmixed"><file name="htmlmixed.js" hash="a53dad6bf844179ef8ad7a97a235824d"/><file name="index.html" hash="7629a23ff67438789967d951455ea20c"/></dir><dir name="javascript"><file name="index.html" hash="2bd482f36c40f6b1c9be349971df31e9"/><file name="javascript.js" hash="56acd16588fe4784aee6a2022e4b2782"/></dir><dir name="jinja2"><file name="index.html" hash="81e9ec1512748b7271f36ffbd56e9a73"/><file name="jinja2.js" hash="f418f62b67673c1143c52307e345e60d"/></dir><dir name="lua"><file name="index.html" hash="d17f11d3ff03877102592de58de69fe0"/><file name="lua.js" hash="c050459e3362db3343af71d0e6aeb014"/></dir><dir name="markdown"><file name="index.html" hash="5c0e890607a034c2d4e598d0cb62cc4f"/><file name="markdown.css" hash="6735953493f16359bfec6fab20af1091"/><file name="markdown.js" hash="b61c6857255ba65dd56636d1365c8a02"/></dir><dir name="ntriples"><file name="index.html" hash="228cbcd044cc02cb8ad30fd5d16fe814"/><file name="ntriples.js" hash="3adc74e87ef632d3540d0963848a6cf7"/></dir><dir name="pascal"><file name="LICENSE" hash="7a13e129f06bac8fb1156a669c4636c0"/><file name="index.html" hash="2c8728310f260eb3aa0a926e90597ca1"/><file name="pascal.js" hash="308a0ea2a068438a315045e5817efd3b"/></dir><dir name="perl"><file name="LICENSE" hash="0cf35a34df2038120c040643ca531933"/><file name="index.html" hash="dec38a62b34d66761c277e9001aae052"/><file name="perl.js" hash="f5a5f217352184b4c739b562f920c229"/></dir><dir name="php"><file name="index.html" hash="d5a4cbcfb8666aba65e5f53a595ba747"/><file name="php.js" hash="0d61a4af8637da038d86de0a52c0c02f"/></dir><dir name="plsql"><file name="index.html" hash="3acffd02bd80c0037911918b9f15611f"/><file name="plsql.js" hash="5a870dcfa98f8760ed4410d08427c04f"/></dir><dir name="python"><file name="LICENSE.txt" hash="50497a84927d62f41da638f19d3e36f4"/><file name="index.html" hash="5e91951d7a6447827ac9647057f56957"/><file name="python.js" hash="86e97b8a98b1663f03776272ce065fb2"/></dir><dir name="r"><file name="LICENSE" hash="846da3e9d63e927277b2d936c172b813"/><file name="index.html" hash="12b3427c4ca0371e387b384a4253d7d9"/><file name="r.js" hash="396af242b11605841020fdb83c4a288c"/></dir><dir name="rpm"><dir name="changes"><file name="changes.js" hash="6f7d626f89cc4af3ab26063dac3660af"/><file name="index.html" hash="740f367b4272f56ef55232f57035b03d"/></dir><dir name="spec"><file name="index.html" hash="a454c2afa198c67769c7130e90fa013a"/><file name="spec.css" hash="baaddfcd14b6e7e60c8d48e59bccef3a"/><file name="spec.js" hash="f4bf6152a54b2c191aa7ec0ce00103e3"/></dir></dir><dir name="rst"><file name="index.html" hash="2f5be2eb7efe6da03cb81562c74e535b"/><file name="rst.css" hash="cc869157d3da08b60a566779676c256e"/><file name="rst.js" hash="6983b9861337a430d7e92bd7c386ef3d"/></dir><dir name="ruby"><file name="LICENSE" hash="ae314caf12af93dfb8362df71778b16a"/><file name="index.html" hash="717a66bb28bf9143b440daf6c6141fba"/><file name="ruby.js" hash="e53b08854aa102c06205b683ae7fb136"/></dir><dir name="rust"><file name="index.html" hash="dde843579b9fc83b94d2d45768449e18"/><file name="rust.js" hash="69bde2212f4b48276ad549d86005c308"/></dir><dir name="scheme"><file name="index.html" hash="5172505e4f0778d4578a429276441070"/><file name="scheme.js" hash="b58ca4c1c3053aea6a4602815abaa948"/></dir><dir name="smalltalk"><file name="index.html" hash="3eb4f1e329d1abb90ea03228e36a1541"/><file name="smalltalk.js" hash="2a82fb925ea2cd3e324ec6f135538c2c"/></dir><dir name="sparql"><file name="index.html" hash="d3d79fd3b0a6c4a2352f31a27d6c15cb"/><file name="sparql.js" hash="19620ecd6fd9b8cb12b9b6445dc99a4d"/></dir><dir name="stex"><file name="index.html" hash="ee54a341be3482e11c205c508aee6b63"/><file name="stex.js" hash="c4ae78f9885041330bbde8fc5648477b"/></dir><dir name="tiddlywiki"><file name="index.html" hash="7ba47f8e8f4e2216054bfb477326d3f6"/><file name="tiddlywiki.css" hash="c11cdeb53a780caea1e9e6991993cbca"/><file name="tiddlywiki.js" hash="17ddeee4501ee9a0b3564f04db277140"/></dir><dir name="velocity"><file name="index.html" hash="9576af6a2ec6bed38dad8d7055956953"/><file name="velocity.js" hash="1575d55bcca5ef56ab5d9b801ed5e452"/></dir><dir name="xml"><file name="index.html" hash="8f3532f29b5d5a033b8366c1a4d38d2b"/><file name="xml.js" hash="8dc718d2bc75044bb6d9edb24ea331a6"/></dir><dir name="xmlpure"><file name="index.html" hash="1f0b8a37a3b56099ebc730485c4b7ba0"/><file name="xmlpure.js" hash="72df6042f863cc00e0d04d6b9502116e"/></dir><dir name="yaml"><file name="index.html" hash="52f27134149d98fd7188cb0fcc9cc1ac"/><file name="yaml.js" hash="26ba9f1907540d18fbd73c5d385d70cb"/></dir></dir><file name="oldrelease.html" hash="0abc467fdaaa262735c81f79ececf842"/><dir name="test"><file name="index.html" hash="6f920394d5aa9c6add944c5647da99a0"/><file name="test.js" hash="4b34cc09d735ffe7cabc773991e823f9"/></dir><dir name="theme"><file name="cobalt.css" hash="693dbdb4e697861a71c10cd7ec94e4bf"/><file name="default.css" hash="54af177b325ef85fb6c3bc4d4e862c7c"/><file name="eclipse.css" hash="120d3cc1f7db6b14be43e2ae82d5ed51"/><file name="elegant.css" hash="f43d2300bfe91c488089b0dfea5b091d"/><file name="monokai.css" hash="b4fc30a108bec5a6bd57c9c2246cf2b5"/><file name="neat.css" hash="e535a6e8ad9e6a7f226fe7d9ef574036"/><file name="night.css" hash="1c234d0158d1df6b2c1f7dbfca37cdab"/><file name="rubyblue.css" hash="3bfad81098b8501420bdb84f6869f031"/></dir></dir><file name="ajax.js" hash="95e3d2f29bd50e08b48fcd0776eb2fd4"/><dir name="alohaeditor"><file name="build.txt" hash="0553303b2feffa9e81ac6ca1ab8e3dda"/><dir name="css"><file name="aloha-core.css" hash="3605b9d654ca34c4417e99ae2e6070bd"/><file name="aloha-sidebar.css" hash="7d8181f13550616f687f5f3212a83d0e"/><file name="aloha.css" hash="a61890aeae5a99ab9a7c55ef07d4b8ae"/><file name="ext-aloha-reset.css" hash="acd3011809fb5aaa8b6b0f328b75df9a"/><file name="ext-aloha.css" hash="00a960ed7ad9c332a52abd80835a00d1"/></dir><dir name="img"><file name="arrow-down.png" hash="15b608454fe4d1f84bb2e55a54df50df"/><file name="arrow-left.png" hash="23a5163bce8cc7a7b66e996e43519d82"/><file name="arrow.png" hash="8f703083439192ca2a9fdc5b98fdbe1d"/><file name="base-big.png" hash="971cd845a71d374c7ea595586a003b6f"/><file name="base-multi.png" hash="068176d2be92778302d5d66a50103160"/><file name="base.png" hash="7ab811012967c740e088aa5f45ddee50"/><file name="bg.png" hash="dd72fc7a9a7e1a497a7888c686c0a94f"/><file name="breadcrumb-divider.png" hash="e5cf164a060b378ab52f21442246700a"/><file name="fade-in.png" hash="881ee65f4be19978c475f00d8eb74b2a"/><file name="fade-out.png" hash="a297f0bf80102561cc2204bb2ad2e0bc"/><file name="gentics-logo.png" hash="513c60aca53485d9d35c497ef8f59638"/><file name="grabhandle.png" hash="254665304865f7dd6e75c1d5eb017fb9"/><file name="maximize.png" hash="5b7582ed5f6ba63b49bad7191a36c991"/><file name="multisplit-base.jpg" hash="72d4ebe0738d4884208b56a01600a430"/><file name="multisplit-close.gif" hash="922cb2deeb043af28292a252bad111d8"/><file name="multisplit-open.gif" hash="e03b4949496321ff1ebd2e1c3a03989c"/><file name="pin.png" hash="6671a4f722edea1e108acd0bf5e8083b"/><file name="removeformat.png" hash="a9d57740c710afb9709009fb08e28657"/><file name="text_indent.png" hash="47f0424810cb024b398abb451b29b3c9"/><file name="text_indent_remove.png" hash="efa6fcdf3acc185503792870899ecc11"/></dir><dir name="lib"><dir name="aloha"><file name="command.js" hash="20b5ea6aad884b06c25794abc23c8957"/><file name="console.js" hash="e3c2dbf5ed1bc617912d35130e6bc36f"/><file name="contenthandlermanager.js" hash="ba3ea21bb7188d70d5d1a1cfb8de3cc0"/><file name="core.js" hash="d8eed09123ca89e5deadb489e5f7a9eb"/><file name="ecma5.js" hash="dc5f43e9c1594f03ec8929e2217699e8"/><file name="ecma5shims.js" hash="122c9bf76a54bc9bcc4eef7dcceeb6f5"/><file name="editable.js" hash="d866af72a4c2843220cdb485cf885c9c"/><file name="engine.js" hash="df5e61a45c2290d4f83d345020244514"/><file name="ext-alohaproxy.js" hash="6c2e03a65e2091f9630c82dea8c048a0"/><file name="ext-alohareader.js" hash="f3680fcd84e17d300a5139da64f7a06f"/><file name="ext-alohatreeloader.js" hash="97485da95858a00f36a27fcc41be434b"/><file name="ext.js" hash="9873e64b725a024d1a6b4330467bf000"/><file name="floatingmenu.js" hash="87858829bc72b1c6b2b664c2d07d188b"/><file name="ierange-m2.js" hash="7df05cfe62d2c3fca71225d6a03a75ce"/><file name="jquery.aloha.js" hash="8d9bd56d06e5f077941279b76d5924dd"/><file name="jquery.js" hash="ba4796914487cd6905f70648dc03067f"/><file name="jquery.patch.js" hash="8c22b519107adad3d813cfa21a3a27f5"/><file name="markup.js" hash="1829e7b18c3be7c25dd64c05f5118bd7"/><file name="message.js" hash="4d3151187f946c1939958d6fe9b69e03"/><dir name="nls"><dir name="de"><file name="i18n.js" hash="fe8d2e4e3d4ba4f34394b80b529636aa"/></dir><file name="i18n.js" hash="017c05fe064f2a9d4ecf86ea92f4aba2"/><dir name="sv"><file name="i18n.js" hash="c11f7ad8fe60b843d4650d29a2811739"/></dir></dir><file name="observable.js" hash="df9083444a55b5bd16aa86b56ab8bf62"/><file name="plugin.js" hash="abcfb1833414681cac95611fccc5ba9e"/><file name="pluginmanager.js" hash="4fd58ae6cbdcd595ee6480657dcb0e29"/><file name="rangy-core.js" hash="808d11808cef29e69c3fca745ce25760"/><file name="registry.js" hash="9622b5494feff83747674b5563fdd81c"/><file name="repository.js" hash="90986b589e96c944647ae0160cb83a9a"/><file name="repositorymanager.js" hash="205ade45ec620568e5ef697792597ff1"/><file name="repositoryobjects.js" hash="5638a269215559e22410755701d86327"/><file name="selection.js" hash="396bf1c0ca5b4ec9f670cd06bc348fae"/><file name="sidebar.js" hash="566e085049947fb75884643c74bf679c"/><file name="ui-attributefield.js" hash="bdf910a9b10317a79e209ab478d683b5"/><file name="ui-browser.js" hash="daf94d6a6c2ff4556143e84fc02cd91d"/><file name="ui.js" hash="fd22470d30618ba4deaf97df6a27fd44"/></dir><file name="aloha-bootstrap.js" hash="ae9c0eaf48a7fe17a733dc0ae388b934"/><file name="aloha.js" hash="6dabe668345e850a171960c9cd50df72"/><file name="css.js" hash="b2c0b512cc6188ad44bffa106fdd8cbb"/><file name="i18n.js" hash="2cd46ebeed271c6d79bd397722e522ca"/><file name="jquery-plugin.js" hash="886143e448dc7fab6f95076a0a07e77f"/><file name="order.js" hash="061959d61b8c7cb50d28797920c78514"/><file name="require.js" hash="03baff51cfb2419fe4a32bb245ee5684"/><file name="text.js" hash="c64b58411b743e3ca956fba73db0b7ba"/><dir name="util"><file name="class.js" hash="b6e58d2e3db1eb104acfafa612abdddc"/><file name="dom.js" hash="f55cda9d6e55aca8176416f82cf47d90"/><file name="json2.js" hash="391d5fc3498e5f1f23ea4dc8ba43c0c5"/><file name="lang.js" hash="17daf04cd7616c6061b7d1d11d07b0dc"/><file name="position.js" hash="e8da37f7e856ee2944cc2c0b4382d14d"/><file name="range.js" hash="c346272d513947335ee57551897c8ebc"/></dir><dir name="vendor"><dir name="ext-3.2.1"><dir name="adapter"><dir name="jquery"><file name="ext-jquery-adapter-debug.js" hash="13de37837f6f913c7da6f3bd83fdf60c"/><file name="ext-jquery-adapter.js" hash="eade1cfd0267ab2bf5ae23dd823b65c2"/></dir></dir><file name="ext-all-debug.js" hash="f06105c6b9ae5ddb2cde43014ebebe2d"/><file name="ext-all.js" hash="bf80a5438d598701a67630b962352d3f"/><file name="gpl-3.0.txt" hash="3c34afdc3adf82d2448f12715a255122"/><file name="license.txt" hash="c0a50aa77c22b5a3a7e54fec34cb54f0"/><dir name="resources"><file name="charts.swf" hash="59c6e2c9ae7de87f11dd3db3336de8b6"/><dir name="css"><file name="ext-all.css" hash="0feb438d6d85a6214101e895f945fa46"/><file name="ext-all.less" hash="37b2f7f0f54ae223d17332b1baed0073"/><file name="xtheme-gray.css" hash="514b32821be653201c8f8d91de0b5a05"/></dir><file name="expressinstall.swf" hash="8c4bdc47410fc7c000dcd1655e2f3a7a"/><dir name="images"><dir name="default"><dir name="box"><file name="corners-blue.gif" hash="86fd4c5664e0971bfc11959e8442604c"/><file name="corners.gif" hash="d2d1bc2085b369ce35ffd20c0121676e"/><file name="l-blue.gif" hash="ced9ffbf66ea39e77083a591f8257267"/><file name="l.gif" hash="c4d9dbbdc59ae06b5e9e72a6a865c981"/><file name="r-blue.gif" hash="82dbb522a80e3246f6297719371a9494"/><file name="r.gif" hash="bf1e1d4a45f951ae656968a8c834f04a"/><file name="tb-blue.gif" hash="7c4b19eb682afdc1bde0640d2321fb25"/><file name="tb.gif" hash="dd3f63afe7ba90983ba73dad1c66bf2f"/></dir><dir name="button"><file name="arrow.gif" hash="44b6dbf385236a2697932a7a3e20b4a0"/><file name="btn.gif" hash="40ac871755023cc11ad15dcd77b54dbf"/><file name="group-cs.gif" hash="5dc0252bd9ecf72f98d858427054cf08"/><file name="group-lr.gif" hash="cb7813012d6be17e083835d60037029e"/><file name="group-tb.gif" hash="4edf9b7db13b1331282eed298384cab9"/><file name="s-arrow-b-noline.gif" hash="30d04f652551f1df9d59d33a99c9a320"/><file name="s-arrow-b.gif" hash="a957a6d618d19b92a2d1a7a1b50f5235"/><file name="s-arrow-bo.gif" hash="53a15d7907a017122f7f60402c435753"/><file name="s-arrow-noline.gif" hash="13f08a275c58135365b8e58b3177ab1a"/><file name="s-arrow-o.gif" hash="5005d8dea2f9456aaf2ab27ca7bf5651"/><file name="s-arrow.gif" hash="bc71296ddf9c7ef5aa56b09ca3512c8a"/></dir><dir name="dd"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-no.gif" hash="ae536c37391ba78143b5c8283cec8d13"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/></dir><dir name="editor"><file name="tb-sprite.gif" hash="a2f06caddc2fb729db5cbbd874491128"/></dir><dir name="form"><file name="checkbox.gif" hash="75d685cab5665a935660a3d04f71c2be"/><file name="clear-trigger.gif" hash="97b3e5e9edf27b50d63d48098c2f1eae"/><file name="clear-trigger.psd" hash="c8c2d843458728df5c184a54862c5946"/><file name="date-trigger.gif" hash="30b5bace9f3dac358716c1415270f874"/><file name="date-trigger.psd" hash="3f10ecf0d961006507d043f9b9fce45e"/><file name="error-tip-corners.gif" hash="364474276178c7b48b6270056b42b808"/><file name="exclamation.gif" hash="37dbe02e3cbde0f6780650bfd8535e38"/><file name="radio.gif" hash="0239bdaef529be68530b86266a24742c"/><file name="search-trigger.gif" hash="559ef372cf27a38678d84e8c0b7237fc"/><file name="search-trigger.psd" hash="daacfb6d450b8cd56da5905db4c8b8c0"/><file name="text-bg.gif" hash="d5ba54c1f417e6a72cbce8b909078727"/><file name="trigger-square.gif" hash="c1cbaecc91209f77e2d20235c137e13e"/><file name="trigger-square.psd" hash="5e66abd0fa1313bd052db7d121f626c1"/><file name="trigger-tpl.gif" hash="d7be20f0dc38f4f46cd318fe32cf3ce3"/><file name="trigger.gif" hash="447d5b600f7527f5c8cc49e7453bbb27"/><file name="trigger.psd" hash="513a8c601e278a35a3cb3272fd1769df"/></dir><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><dir name="grid"><file name="arrow-left-white.gif" hash="b04e859bdcbd21ad1f06b8bfa7881df8"/><file name="arrow-right-white.gif" hash="714eb00f8134dde3a65c83f3f71ad2c4"/><file name="col-move-bottom.gif" hash="9c38bcb5cee1dc9b4ce64ad9ab1386f8"/><file name="col-move-top.gif" hash="c4584202d5172464050f675d396d1c6f"/><file name="columns.gif" hash="ef35242fa6514a81d17d5f700f561b7c"/><file name="dirty.gif" hash="decca3b96e2c37cf6eb04ddb0d9f669b"/><file name="done.gif" hash="365266930a93451414fe51ffc524a196"/><file name="drop-no.gif" hash="b53ca86d60fbcc7a45c8917299218bfd"/><file name="drop-yes.gif" hash="af96f4c3b32a470db2f38abb521b5c97"/><file name="footer-bg.gif" hash="65ed63e44c6149f1127ad3b4be4e0108"/><file name="grid-blue-hd.gif" hash="dd35d5c1202c440c2d1a945b335984d3"/><file name="grid-blue-split.gif" hash="0494ba49974ff2bc1bf81e1d82dfee18"/><file name="grid-hrow.gif" hash="55972a5063d80f35fb6b95a79bb0018a"/><file name="grid-loading.gif" hash="9ac6f737eb9b15272f12b00bfeb3c3c6"/><file name="grid-split.gif" hash="3ef419d4b9421d8e94f673a6238dc4c0"/><file name="grid-vista-hd.gif" hash="675f403e8a9cb5ab4bed725da9fe2023"/><file name="grid3-hd-btn.gif" hash="e3e77072c16a6b27556236961f29c552"/><file name="grid3-hrow-over.gif" hash="a92d8f6c106943995720f2884634670e"/><file name="grid3-hrow.gif" hash="3e4484ea8db10af1320808c8477346ea"/><file name="grid3-special-col-bg.gif" hash="c9df03a1c107360128da89fa47066405"/><file name="grid3-special-col-sel-bg.gif" hash="a94039f89dec164896ceff1fbdf6dbc5"/><file name="group-by.gif" hash="3ff8c5936e358cf213227509c9bee95a"/><file name="group-collapse.gif" hash="fd6a72ffa784170d83f9f13322266ca8"/><file name="group-expand-sprite.gif" hash="d0f614a387292177f3acb0c95a4cd760"/><file name="group-expand.gif" hash="8a9ad3ed3d74c2911b7f101268a1843b"/><file name="hd-pop.gif" hash="e5f27a2f68cc2d13b11cf41c46d298dc"/><file name="hmenu-asc.gif" hash="048e0bc30f7c39d473dad5dabcbe03f2"/><file name="hmenu-desc.gif" hash="f0a987b34b003b25a7c82624d41f018a"/><file name="hmenu-lock.gif" hash="bcef18e25342c69c37c44dab87086065"/><file name="hmenu-lock.png" hash="2a3b0b441834f443c1086930939efdae"/><file name="hmenu-unlock.gif" hash="8cc8205dafa587ef02d8a86903ae8074"/><file name="hmenu-unlock.png" hash="c1f61df70b98c5498ea81e7e7b9effbb"/><file name="invalid_line.gif" hash="04a88e97b56e8a8ece4a66d49cc78828"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="mso-hd.gif" hash="37fba9c02f0eefe57f655890eef1c4a1"/><file name="nowait.gif" hash="23c91166dbb16ba8655363321bf5a400"/><file name="page-first-disabled.gif" hash="8d3185028c541cbcce67b5909c04824e"/><file name="page-first.gif" hash="16ec00fa770d860b768cf5034ddfca96"/><file name="page-last-disabled.gif" hash="1d123237ceeb5109a1b9274f0cf19d73"/><file name="page-last.gif" hash="ef524dd0b8dfe4eefecffaa1c0bb8edd"/><file name="page-next-disabled.gif" hash="0f4b8681772c91921fa93ede9c755ea0"/><file name="page-next.gif" hash="f6f9d2209dfc99912ffc9848d97646db"/><file name="page-prev-disabled.gif" hash="eefcbed15c8d37a89618b08f7b224297"/><file name="page-prev.gif" hash="80daad880483eed682b22ec70514ecc4"/><file name="pick-button.gif" hash="b431fdf306f1e2f033d0a431996de93f"/><file name="refresh.gif" hash="f1a2e7df30394c5a30bc76c2d09013b7"/><file name="row-check-sprite.gif" hash="2d0aa7e501c3e6f97a97faf75e35d3c3"/><file name="row-expand-sprite.gif" hash="be81199d9d4fa69bef47a8f036a5a7d8"/><file name="row-over.gif" hash="f639094bd0560aefabc86e51a825f23d"/><file name="row-sel.gif" hash="ca87d6b950386edd5e17c985769d9101"/><file name="sort-hd.gif" hash="2640addef6e987b4c5dfa4c8c2dfb10c"/><file name="sort_asc.gif" hash="2352874b5f636ca331fe9509a2f9bdd7"/><file name="sort_desc.gif" hash="d104fcf119d40c51554ddb8b377142e5"/><file name="wait.gif" hash="b0cd5a5dc070c705ebf8814a909802c3"/></dir><dir name="layout"><file name="collapse.gif" hash="dfcec0803d488a783916c750fd83a897"/><file name="expand.gif" hash="c9c9b0ea5311c3dc016c69dc234912bc"/><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><file name="mini-bottom.gif" hash="ae8e3674fd32997dc5217d5d6199a5a5"/><file name="mini-left.gif" hash="8654fdb45ecf4406af2fce1d3beb7596"/><file name="mini-right.gif" hash="cbdf9fb0c45466b4217ac9f7bd6a9ed4"/><file name="mini-top.gif" hash="fbd91e98576f66fd2702495251b15240"/><file name="ns-collapse.gif" hash="efa9fbd7a1f3f0f1f22360391e16126f"/><file name="ns-expand.gif" hash="da1f9d40c091d3b6dc7a8dee4fc02ac6"/><file name="panel-close.gif" hash="b185da1837344529bfb684a96d8371b5"/><file name="panel-title-bg.gif" hash="b66384c309a397963389a76b07e9ecd4"/><file name="panel-title-light-bg.gif" hash="688d3a263442db125da170e5d3aebf70"/><file name="stick.gif" hash="be9e67ae0b61b01cfd15928ca7a3da51"/><file name="stuck.gif" hash="745e0cacb51250ea0216efc4a1cb50cb"/><file name="tab-close-on.gif" hash="0ae2c978e85391a69f0dce8da18d8b23"/><file name="tab-close.gif" hash="f92107cc6b4cb78af084648a628e01d2"/></dir><dir name="menu"><file name="checked.gif" hash="cb7b3408df56f5585aaa1242cd2f0b45"/><file name="group-checked.gif" hash="f7973443d91e5e074013f1b07ee79479"/><file name="item-over.gif" hash="bb4cdc0ea257834cd5ed01f883387d8f"/><file name="menu-parent.gif" hash="d303ad7e3ced891736e80f77e1d4e51d"/><file name="menu.gif" hash="ae128d5f3f3a39213f3d4e23aec8728f"/><file name="unchecked.gif" hash="31846118bddc7945b595ea2090589cf1"/></dir><dir name="panel"><file name="corners-sprite.gif" hash="d4546c86ed835fee767212279ee98b68"/><file name="left-right.gif" hash="6553647bad54d83e2c235f339d12f6be"/><file name="light-hd.gif" hash="b058affcc8b3e8a03be74bc9d9697da7"/><file name="tool-sprite-tpl.gif" hash="e0449768cd5dce80b18fac904818ab33"/><file name="tool-sprites.gif" hash="c2ac6edef318ed18a0efcc9c74c7a81b"/><file name="tools-sprites-trans.gif" hash="8331513f15bd26be38974a7d7fc4ee41"/><file name="top-bottom.gif" hash="a4854e1b3aea60123522cb687a462c05"/><file name="top-bottom.png" hash="2a65a27def756a0951644b511f6f2cce"/><file name="white-corners-sprite.gif" hash="81f089d0247ca1ad12093be21884d773"/><file name="white-left-right.gif" hash="77a6389c6737ad507ca5330ad8816524"/><file name="white-top-bottom.gif" hash="f865d7237bff3c45fd4a8c448f97d236"/></dir><dir name="progress"><file name="progress-bg.gif" hash="fd75abcd9d1cb8534f24f438a71e6fd8"/></dir><dir name="qtip"><file name="bg.gif" hash="49c0a530cc16357bb39d51c13065a88f"/><file name="close.gif" hash="0379d036250096cae2e42b427b3df2e7"/><file name="tip-anchor-sprite.gif" hash="f39bc3283b69431ce6e7aed2fe6882b9"/><file name="tip-sprite.gif" hash="090b2d83952e682fab43b2ab16be2991"/></dir><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><file name="shadow-c.png" hash="7ab6163237099f2529452b88953a4049"/><file name="shadow-lr.png" hash="986270d8ab4330fa7499dc33ed135598"/><file name="shadow.png" hash="860bf4f690d2ea2aba7b11500925da62"/><dir name="shared"><file name="blue-loading.gif" hash="dc2fd7c0ed853c56b4ac65710af3bd0a"/><file name="calendar.gif" hash="81296cff1f97f5365524f2b9dcf626da"/><file name="glass-bg.gif" hash="bc2cd5c5ac9b3874d956c892d23f2119"/><file name="hd-sprite.gif" hash="6a54ae98bef53397d52282201852c204"/><file name="large-loading.gif" hash="d96f6517e00399c37a9765e045eaaf22"/><file name="left-btn.gif" hash="6bf30c6cf0b5d70436c3e463b5532b35"/><file name="loading-balls.gif" hash="ac062b94ed674aaa50a6c18df92acdf3"/><file name="right-btn.gif" hash="e7ad3a7f4814791cecf1b90e77e9e139"/><file name="warning.gif" hash="448dc934a7f0dd6092b51f88a1e47b2d"/></dir><dir name="sizer"><file name="e-handle-dark.gif" hash="b86289f41d7ad1a7401dd2b2a9b3c3d8"/><file name="e-handle.gif" hash="510edc95ebaa36306916c50ca10596f7"/><file name="ne-handle-dark.gif" hash="115f71b851c7f0b5f354caa7b8dfff15"/><file name="ne-handle.gif" hash="8e268b962dc909d275997b572ff17a72"/><file name="nw-handle-dark.gif" hash="4a361e6920b2e34a39fd425a515c83b9"/><file name="nw-handle.gif" hash="1120600505249c38c3d1cc2ab120cd13"/><file name="s-handle-dark.gif" hash="4a6bf15d308a4ae580dd03cbd431a95c"/><file name="s-handle.gif" hash="5e3338cb09e9df7f52383d6b1423fc86"/><file name="se-handle-dark.gif" hash="f3d8d8aac23e3e9633072e2366cda847"/><file name="se-handle.gif" hash="71edc3f63f79f447d2c81ee09e1fbbc3"/><file name="square.gif" hash="4431ea1954bfd2a9cea0931f07fc7ffa"/><file name="sw-handle-dark.gif" hash="44b2400d873cf8a23d84424827cde44d"/><file name="sw-handle.gif" hash="c3e0befc4208a51180344765fd7deeda"/></dir><dir name="slider"><file name="slider-bg.png" hash="0903ad3af985419767a60a5b025e0a18"/><file name="slider-thumb.png" hash="24a893c9606f3a6892eb62f29a08870c"/><file name="slider-v-bg.png" hash="0682c28925a7296730f7f221e4a76b96"/><file name="slider-v-thumb.png" hash="2fc3430dc351d9a118e048b9aafb7c3c"/></dir><dir name="tabs"><file name="scroll-left.gif" hash="f1ce5158650880e9fe256e739f60dd23"/><file name="scroll-right.gif" hash="905ea778cb64c74ef3cd49ae4fa64b71"/><file name="scroller-bg.gif" hash="43457068d919fadd0e959542cfd81ad2"/><file name="tab-btm-inactive-left-bg.gif" hash="ed19092d440c5bfbdc864f714f26ee03"/><file name="tab-btm-inactive-right-bg.gif" hash="c3f340dc9f7f9398e1395f351e706dfd"/><file name="tab-btm-left-bg.gif" hash="768ac4e5531974feda076cbca7a5cb6e"/><file name="tab-btm-over-left-bg.gif" hash="f7f13c4c2a7c1e3497b2f8931227df3f"/><file name="tab-btm-over-right-bg.gif" hash="7bf3f17738b6c53f6a3f08760eaa5089"/><file name="tab-btm-right-bg.gif" hash="dfe63a170d5391d56645dbfed27b5d22"/><file name="tab-close.gif" hash="59304a56f5e0f506bf671aeafb8fc767"/><file name="tab-strip-bg.gif" hash="5b1b94e9669aaab4e76e5aba8bf8ec1d"/><file name="tab-strip-bg.png" hash="d99e3b7b2610f3c85aa943fe139e6afa"/><file name="tab-strip-btm-bg.gif" hash="f76eec7881fcc7a0f76354d184e0087e"/><file name="tabs-sprite.gif" hash="2562a17ad0076bdd3711d18e62f74c27"/></dir><dir name="toolbar"><file name="bg.gif" hash="b795052041aa76a42466b3be5575077f"/><file name="btn-arrow-light.gif" hash="fa49b39a0fd88ef26264da44a2b4edea"/><file name="btn-arrow.gif" hash="12bda29a4c8016cfa047e852c4353f59"/><file name="btn-over-bg.gif" hash="faddf9b24cefa721326ba3f87f3ef31f"/><file name="gray-bg.gif" hash="cf2d9408f320e696e607d8472afa7ff0"/><file name="more.gif" hash="15c7a30d4131305b672fe1e76d962d4d"/><file name="tb-bg.gif" hash="5309337fd7a22cab9d9467fd9eaa0a0c"/><file name="tb-btn-sprite.gif" hash="ba0a5d77db72942782fc4bf23f710738"/><file name="tb-xl-btn-sprite.gif" hash="3ffd5589b41889230755ea2108cc0e92"/><file name="tb-xl-sep.gif" hash="06e026387e2dd0f49e88a04791cf26fa"/></dir><dir name="tree"><file name="arrows.gif" hash="ab65037de34763ce1b489e5c0f12185d"/><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-between.gif" hash="edb544a0de58547d4a39c526e06e3c82"/><file name="drop-no.gif" hash="67f83ea04a2eb1c50614a96faf625f25"/><file name="drop-over.gif" hash="d6b303cfa3de8784057d9d7e66cdaa86"/><file name="drop-under.gif" hash="55e5dbc9451cfa91423832260b0753aa"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/><file name="elbow-end-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-end-minus.gif" hash="a469f6a4394d797c2efeffc70409f6db"/><file name="elbow-end-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-end-plus.gif" hash="ec1482391363612d9e5f8c7087fddaba"/><file name="elbow-end.gif" hash="345551384aa325189ba28a1c20f3405e"/><file name="elbow-line.gif" hash="90e478158df476dc989a60daaafc87e6"/><file name="elbow-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-minus.gif" hash="71bb1bd44b1274c60d30dba1de472ed7"/><file name="elbow-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-plus.gif" hash="945572d06a74b5f952251a86c595f2da"/><file name="elbow.gif" hash="27679f3b1222ba95d9925885d7d82d02"/><file name="folder-open.gif" hash="c569141d6ae7c61d838ed8af26aa9380"/><file name="folder.gif" hash="b7209740bb4a825a06beb8698d92c2b1"/><file name="leaf.gif" hash="23757d6e353f343e3c7edfe28428f198"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/></dir><dir name="window"><file name="icon-error.gif" hash="f477b54b6b8361362e96c2218dce7ea0"/><file name="icon-info.gif" hash="ec6b7a5d4caeea767c8674689bae47c6"/><file name="icon-question.gif" hash="2713644a8aa582728d71e35eca62fbcd"/><file name="icon-warning.gif" hash="3f20258272af0e00f6b7531b3b9aee35"/><file name="left-corners.png" hash="1d8a9cdb663e292ab70def47094dc528"/><file name="left-corners.psd" hash="18618115985e5905c7a6345c3ef0255a"/><file name="left-right.png" hash="d65dd5318f003143927bc0d7c5ff6e2f"/><file name="left-right.psd" hash="029c8ba62b77e910b07764e324c32a84"/><file name="right-corners.png" hash="e7c4dad6996685750acfba2f4e29115a"/><file name="right-corners.psd" hash="51aea4dd6bbdedf7923342e43bacbb7a"/><file name="top-bottom.png" hash="4f1e86207b228c192c2e243f77854adb"/><file name="top-bottom.psd" hash="826ca83fb9892be49f1b1aaaf61fd6c4"/></dir></dir><dir name="gray"><dir name="button"><file name="btn-arrow.gif" hash="9e2365ef98c6096f6b5f411ab618bb4e"/><file name="btn-sprite.gif" hash="945adfe198d7231a1c1ad761c353a405"/><file name="btn.gif" hash="dfa89e24b5dca6731dc699ba8d56950a"/><file name="group-cs.gif" hash="6d1c2edcd710057762396ccff6b5a33f"/><file name="group-lr.gif" hash="61b5fce46df447e1076ccc7037836b5c"/><file name="group-tb.gif" hash="828252b241154dbe45716a64a7bebe63"/><file name="s-arrow-bo.gif" hash="c455519fc9ff5b43c1f19a5cdbfc6b7c"/><file name="s-arrow-o.gif" hash="11e75d35ed05d06d42ee48366853f770"/></dir><dir name="form"><file name="clear-trigger.gif" hash="814bc78e7d14264bd024dee10717d1f9"/><file name="date-trigger.gif" hash="53d247e91d07172526a17e66e3365b0a"/><file name="search-trigger.gif" hash="5e093905f73ff1bd885a972f9298a6ae"/><file name="trigger-square.gif" hash="993f3e139f8153108cf36246e6c13304"/><file name="trigger.gif" hash="fce4c76ce39c38ea12f63aae88260b66"/></dir><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><dir name="grid"><file name="col-move-bottom.gif" hash="4caef6fed1128b1e28efd611b1d05b75"/><file name="col-move-top.gif" hash="19e021b4eb21053d55236115d1d7151d"/><file name="grid3-hd-btn.gif" hash="614e2bfd1aee447b6c06b4952b747553"/><file name="grid3-hrow-over.gif" hash="a198f359b87cbc5df0d99bfa8bed268c"/><file name="grid3-hrow-over2.gif" hash="599fa1925a97da601a5d600cc053bdc3"/><file name="grid3-hrow.gif" hash="3e4484ea8db10af1320808c8477346ea"/><file name="grid3-hrow2.gif" hash="327fa686bcaaf02a305d56a801fd2bab"/><file name="grid3-special-col-bg.gif" hash="bef8da30fbdebda6c46c52ec677aa7fd"/><file name="grid3-special-col-bg2.gif" hash="e01a722fad667447946194168335723c"/><file name="grid3-special-col-sel-bg.gif" hash="604dae97d814027ec90ea893bd82aac6"/><file name="group-collapse.gif" hash="94415d98e2a80ba4032cc2f1d7e39180"/><file name="group-expand-sprite.gif" hash="7e6f947a866eeb249ef07e7149a08301"/><file name="group-expand.gif" hash="5cb72da3f62a00c819271e1e4bd4b064"/><file name="page-first.gif" hash="4a7421d31823d53cc6483adebbf4e612"/><file name="page-last.gif" hash="79765f1921de6b5c3876d2137d1bb6b9"/><file name="page-next.gif" hash="3aede076a4e04cbb9ec3f5e9366eb85f"/><file name="page-prev.gif" hash="d3feff4ce5031c61236d08081acd5e32"/><file name="refresh.gif" hash="c8e02891ee272feb291fb3e1d160aca7"/><file name="row-expand-sprite.gif" hash="af003a335c529b768ae54341c55f286d"/><file name="sort_asc.gif" hash="cee26d5226e56e505af9fe2e92b703e4"/><file name="sort_desc.gif" hash="8d391c69a118af01c77fe812da2317d0"/></dir><dir name="menu"><file name="group-checked.gif" hash="7fb15d614b479da1164de9c213e4b4c4"/><file name="item-over-disabled.gif" hash="ef4c60a3965660a40aaac87434cd47b6"/><file name="item-over.gif" hash="448c69a3758682479a5cb532b5df902a"/><file name="menu-parent.gif" hash="f95f840cbfda084c891ed6e9841fd4e2"/></dir><dir name="panel"><file name="corners-sprite.gif" hash="154047c3b38abc110a43c348ea693c77"/><file name="left-right.gif" hash="1050c80869b13c1bcca6319b048ea1a5"/><file name="light-hd.gif" hash="30be5fa3a5bc389f4de260e91ff24f5b"/><file name="tool-sprite-tpl.gif" hash="4b1322b5966a588abb0829b27818f738"/><file name="tool-sprites.gif" hash="2f408e54b7eff4f7d95a5271cb77d58b"/><file name="tools-sprites-trans.gif" hash="cae0c8ca75402cc7e096b743abbf154c"/><file name="top-bottom.gif" hash="2cc75c4c076232ba842d63778e20aaf6"/><file name="top-bottom.png" hash="2a65a27def756a0951644b511f6f2cce"/><file name="white-corners-sprite.gif" hash="c22ed792c859ce8dcdfd52f6d6b15e3f"/><file name="white-left-right.gif" hash="52d662a46dc90b5043765f2d6d0c1acd"/><file name="white-top-bottom.gif" hash="67dc9d08c730ee91bdcf078d5071580a"/></dir><dir name="progress"><file name="progress-bg.gif" hash="adc5ea35c3741781897e075608b6c92f"/></dir><dir name="qtip"><file name="bg.gif" hash="63f297dd8fa77f097616d840e9ad0e70"/><file name="close.gif" hash="0379d036250096cae2e42b427b3df2e7"/><file name="tip-anchor-sprite.gif" hash="d5449663db06c74c4d8fada9b2572ff9"/><file name="tip-sprite.gif" hash="93e366d85a0cbd19cb6001a9254dfa2c"/></dir><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><dir name="shared"><file name="hd-sprite.gif" hash="dcfc6da1969e38360f4a0b858303fe27"/><file name="left-btn.gif" hash="fdcd1ea713557afe17bd7412a490c329"/><file name="right-btn.gif" hash="192c5bc33dd9f780439db51c8777dc4f"/></dir><dir name="sizer"><file name="e-handle.gif" hash="b92c94b88dfd8743226fa470f1496801"/><file name="ne-handle.gif" hash="fbd3e5f90df02cc9084ba43a40dafb60"/><file name="nw-handle.gif" hash="b1cbf1aa7df6305701152f0708f2a5b2"/><file name="s-handle.gif" hash="ce25405d986f9c38a6b61e6291aecf4b"/><file name="se-handle.gif" hash="a71d1f8a7d1d1e554bac77d838c1e1d2"/><file name="square.gif" hash="0ce14318c0a8643d11e723f2c95b3cb1"/><file name="sw-handle.gif" hash="7e8854d3f963767ccbafd3e4fb4f4a26"/></dir><dir name="slider"><file name="slider-thumb.png" hash="aae90a90a30074bed9aec149d39f0864"/><file name="slider-v-thumb.png" hash="80a24e024df1ece670f4a074f11b91ca"/></dir><dir name="tabs"><file name="scroll-left.gif" hash="2e262700bde38f1a5e0b433bff392e5d"/><file name="scroll-right.gif" hash="1333d896f57dfdcc8b73b4a391af8c65"/><file name="scroller-bg.gif" hash="85fc3011aa8416fc9f6cd6cdfee8ff54"/><file name="tab-btm-inactive-left-bg.gif" hash="79692d0d06efdfee4352eb2313fc405f"/><file name="tab-btm-inactive-right-bg.gif" hash="2f38f98c02e576e7c07abab79b635599"/><file name="tab-btm-left-bg.gif" hash="174345d57983dcf5d38ed7717b3a17b3"/><file name="tab-btm-over-left-bg.gif" hash="84c12e3dfab9d5db75d05c0057a8cb63"/><file name="tab-btm-over-right-bg.gif" hash="661d17f45d9bd60be78d7b62931821f6"/><file name="tab-btm-right-bg.gif" hash="904bd37fe0eac4fd2e42adc3693eeed3"/><file name="tab-close.gif" hash="9ed7d602bee0483b8aa34d2084c77754"/><file name="tab-strip-bg.gif" hash="5b8f86def656924e8d4e49e438a205a1"/><file name="tab-strip-bg.png" hash="d99e3b7b2610f3c85aa943fe139e6afa"/><file name="tab-strip-btm-bg.gif" hash="8e5594b6e95ef5edd30b3a2d0bb1f3cd"/><file name="tabs-sprite.gif" hash="4dc716e5213e4d9d2731d0e79953ea2f"/></dir><dir name="toolbar"><file name="bg.gif" hash="5c8ff0ea2f6e1226154f660006bb5013"/><file name="btn-arrow-light.gif" hash="fa49b39a0fd88ef26264da44a2b4edea"/><file name="btn-arrow.gif" hash="12bda29a4c8016cfa047e852c4353f59"/><file name="btn-over-bg.gif" hash="faddf9b24cefa721326ba3f87f3ef31f"/><file name="gray-bg.gif" hash="4bf225cf4ff1919a265531d824dd52aa"/><file name="more.gif" hash="18af410b9b19aac389fa81fe6d5c4d79"/><file name="tb-bg.gif" hash="5309337fd7a22cab9d9467fd9eaa0a0c"/><file name="tb-btn-sprite.gif" hash="7c7d5c1029d25748b9323a67dd8dc92f"/></dir><dir name="tree"><file name="arrows.gif" hash="e0d51c37061742fcdc5e141d9030c483"/><file name="elbow-end-minus-nl.gif" hash="f97a7974397413cedcc4da01c695c5c0"/><file name="elbow-end-minus.gif" hash="ad767cf0df09e850978cfad5903ada3e"/><file name="elbow-end-plus-nl.gif" hash="07b4ba4f1d4c0f3d24f987740b5d97d4"/><file name="elbow-end-plus.gif" hash="07c97874af5a14d909bc462c38d1d5c2"/></dir><dir name="window"><file name="icon-error.gif" hash="f477b54b6b8361362e96c2218dce7ea0"/><file name="icon-info.gif" hash="ec6b7a5d4caeea767c8674689bae47c6"/><file name="icon-question.gif" hash="2713644a8aa582728d71e35eca62fbcd"/><file name="icon-warning.gif" hash="3f20258272af0e00f6b7531b3b9aee35"/><file name="left-corners.png" hash="f5cccec900e527983d402d1a8cccecb3"/><file name="left-corners.pspimage" hash="cbd1e105535264872643345cd53df57c"/><file name="left-right.png" hash="2bc0b5bcc87f58d7825754a457f8d671"/><file name="right-corners.png" hash="d0c47fa4e6f1ecdbe8aed7444c8724ca"/><file name="top-bottom.png" hash="22bb60d1a515987e330b169d2d85290f"/></dir></dir></dir><file name="resources.jsb" hash="a260baacbb946040b32af83ec8338720"/></dir></dir><file name="jquery-1.5.1.js" hash="6dc6e4228017b636f11219814557140c"/><file name="jquery-1.6.1.js" hash="224b35c665c4da1ca48c0e4e1e45bf22"/><file name="jquery-1.6.js" hash="55923e3f8725714066ff2dab2f44a558"/><file name="jquery.json-2.2.min.js" hash="c35073f4c0a702e2343b64f330089a81"/><file name="jquery.store.js" hash="939a5a76f6963629c6ae0882f5e7d4ef"/><file name="sanitize.js" hash="a2fb0b1897ce9b6a4f08b9bfcff6e37c"/></dir></dir><file name="package.json" hash="bce605e9114b898debc347f12e455493"/><dir name="plugins"><dir name="common"><dir name="abbr"><dir name="css"><file name="abbr.css" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="lib"><file name="abbr-plugin.js" hash="4fa988644a52539b577e46c8145026c8"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="5d4c1762c21e0c467b4d7c0c20d1fd98"/></dir><file name="i18n.js" hash="e254d2a5cccef92ce3301c365f15f012"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="align"><file name="LICENSE" hash="3ff425193c10ca6a9375e287cb2c5c7e"/><file name="README" hash="2ca9425ae8d8209ddc282885d158a6fd"/><dir name="css"><file name="align.css" hash="e00da6b17e9970689a167560b56422b3"/></dir><dir name="img"><file name="align.png" hash="37576554bc097195c180ae7500c480cd"/></dir><dir name="lib"><file name="align-plugin.js" hash="2e1bd101469face9febeb6bd9fc800b5"/></dir><dir name="nls"><dir name="en"><file name="i18n.js" hash="0deaa30fccaeb6d765636fc9809e7fd3"/></dir><dir name="fr"><file name="i18n.js" hash="336f7188ccba16474e90ccd3eb97cfa0"/></dir><file name="i18n.js" hash="7b909244c11beb704074683397562e35"/></dir><file name="package.json" hash="da3d4e6914c3fd5140d638a103e94b15"/></dir><dir name="block"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="block.css" hash="070d42ce424589e51eb4e8921bfc36d7"/></dir><dir name="img"><file name="toolbar-draghandle.gif" hash="eb4decc8476551903a24f66f788e8793"/></dir><dir name="lib"><file name="block-plugin.js" hash="c68bf9da6bedf019cfa57677872f42b4"/><file name="block.js" hash="4a3712febeeba4641d1b2c08549f4443"/><file name="blockcontenthandler.js" hash="a8122c7b1c23109244b5f90a1b2df1b6"/><file name="blockmanager.js" hash="5a8878096dd57c13298ccef6f6565120"/><file name="editor.js" hash="7af65eb03e1376987e12c6a7ba504271"/><file name="editormanager.js" hash="344c08f707618d195e1a24bab263036c"/><file name="sidebarattributeeditor.js" hash="4549b30151ad6b5b62ad4e8ca8be9ec8"/></dir><file name="package.json" hash="e33741b838a104126c8603c877a9f293"/></dir><dir name="characterpicker"><dir name="css"><file name="characterpicker.css" hash="cf4a0347bdc31f0b28f36f1590eb06c7"/></dir><dir name="img"><file name="icon.png" hash="9c227d1d31a57e04feacddff9a2c5648"/></dir><dir name="lib"><file name="characterpicker-plugin.js" hash="eaca9268b185b851a24104be7492f685"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="907ae1f1e333ee06d1bca445270c7bb2"/></dir><file name="i18n.js" hash="db9b178e36c66d20e8fe361f1d243226"/></dir></dir><dir name="commands"><dir name="css"><file name="abbr.css" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="lib"><file name="commands-plugin.js" hash="5959952ff44097c371a03679b32aa7d4"/><file name="inserthtml.js" hash="877f8abc0a15ee71a450622794e86c9c"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="contenthandler"><file name="README.md" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="lib"><file name="contenthandler-plugin.js" hash="e00590b431446704dc427b4dbc0f5f98"/><file name="genericcontenthandler.js" hash="90385ee5adc376bb64ca26519e3a7a16"/><file name="oembedcontenthandler.js" hash="caa2cf241768337bcc6a3bb2c013511c"/><file name="sanitizecontenthandler.js" hash="b35938402db0440f3d39ad8f89eb648b"/><file name="wordcontenthandler.js" hash="cf4ab620ec8adbafc1a0ab618ab78afa"/></dir><file name="package.json" hash="99914b932bd37a50b983c5e7c90ae93b"/></dir><dir name="format"><dir name="css"><file name="format.css" hash="6861fed2e14a2acf1d6d3dea5693cc9c"/></dir><dir name="img"><file name="em.png" hash="0360b83b79c8e835a3105148e58ca5e5"/><file name="strong.png" hash="7915567b2d094f11debd728827d59f40"/></dir><dir name="lib"><file name="format-plugin.js" hash="fc4f1f1e10e3f61f9d9c861f25e518ed"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="edbb27aa036b3ed4b86ed6ff3d7ecaea"/></dir><dir name="eo"><file name="i18n.js" hash="ec2f3e02978d561bd5568a7e95764a67"/></dir><dir name="fi"><file name="i18n.js" hash="60c9294a20827e6da5b908ab43d13aa4"/></dir><dir name="fr"><file name="i18n.js" hash="205109959b86eae4db7e85304b758906"/></dir><file name="i18n.js" hash="29af4f07b85487e1972e329be63d0588"/><dir name="it"><file name="i18n.js" hash="f394c11f2339e83ff7cec9ff03a5ed33"/></dir><dir name="pl"><file name="i18n.js" hash="c44a5da4cd985395739cf4d6ee81b29f"/></dir><dir name="ru"><file name="i18n.js" hash="2bbff95b12d7a202bce7a0a3f09bb6cd"/></dir></dir></dir><dir name="highlighteditables"><dir name="css"><file name="highlighteditables.css" hash="5f9f2e7e79b38b38d92951dc03285163"/></dir><dir name="lib"><file name="highlighteditables-plugin.js" hash="adf15104410d66624ddf078601fb28c4"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="horizontalruler"><dir name="css"><file name="horizontalruler.css" hash="2b93564ebe3b6c830eb439604da59ce2"/></dir><dir name="img"><file name="icon.png" hash="0e3bca3460798e2a00c4ac437e2b7cdd"/></dir><dir name="lib"><file name="horizontalruler-plugin.js" hash="24e62e70a694b2b9fe9ea91d004cc4af"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="a20013dba6bd343b243463e7ec82039c"/></dir><file name="i18n.js" hash="ee3de246cbfb27e710e109db0d3ae983"/></dir></dir><dir name="image"><file name="AGPL3" hash="c5edf65bb50f2284b1be0196d5a95c89"/><file name="LICENSE" hash="3e62a489a9c73be5487ef9038e002c3b"/><file name="README.md" hash="6c0b3051d9fd87e45a88a7cc00e42dd8"/><dir name="css"><file name="image.css" hash="6d31e1cd7a271931e2e642fb273844a4"/></dir><dir name="demo"><file name="crop.html" hash="82488dc281a1613cb1599a7285cfbb7e"/><file name="crop.php" hash="501237a45ef8c345f95e159843c3236b"/><file name="cropnresize.jpg" hash="0edf07c3ea54e42ab7853229b5dca0a9"/><file name="index.html" hash="3119be3754949bfec58e78aba7f7c58a"/></dir><dir name="img"><file name="blank.jpg" hash="6d5bfd4672e0efede2e504ae7bb2cf32"/><file name="crop-buttons.gif" hash="0e4da82afb71162a3a0af60630d3e337"/><file name="cropnresize.png" hash="d7b16b232d8c50bd752124d2913eb7c3"/><file name="handle-sw.png" hash="3186033209be1fe35a23b76c31846045"/><file name="image-align-left.png" hash="2dde195149c676d7efd3499f1e9da1a4"/><file name="image-align-none.png" hash="e9c1995da7259d2a8fa781f4c25985dd"/><file name="image-align-right.png" hash="054a533583c93c6f8d188b90862e0176"/><file name="image-border.png" hash="3571557fc1ecee72bf6534eb9c7f906c"/><file name="image-title.png" hash="995887637e91caac42c98b1c9eefb831"/><file name="image.gif" hash="afaf217b75f8a0f0e80d2d49e88ced4e"/><file name="padding-decrease.gif" hash="1e286415e3acdffd37c039baff4f9362"/><file name="padding-increase.gif" hash="1f7ef1c19e5c90b339be4e04a88240be"/><file name="page.png" hash="55a687e848244b76f8d8249b111df860"/><file name="size-decrease.gif" hash="8fd3a7236e97fd5abe2215fe11ef39fc"/><file name="size-increase.gif" hash="693618eba55979b4c7e03484b92a52f3"/></dir><dir name="lib"><file name="image-plugin.js" hash="a767413cff4d03e8f9cc07dbd6eb4f35"/></dir><dir name="nls"><dir name="cz"><file name="i18n.js" hash="79b54d1f0ba8ba6d313c171c412e6553"/></dir><dir name="de"><file name="i18n.js" hash="a82bb4c7508a558f3b7638c87a3f75a1"/></dir><dir name="fr"><file name="i18n.js" hash="f5007dfc86ad1a9a4cd708638156d19e"/></dir><file name="i18n.js" hash="955a3243f98f92002e19f36b8ad8af8b"/><dir name="ru"><file name="i18n.js" hash="0aeb948daf24af5d6a6bfa0080249094"/></dir></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/><dir name="test"><file name="test.css" hash="e940fc900051dcd8805e0acc98e0d0bf"/><file name="test.html" hash="e038d522dbbd74e1df52e52839470c78"/></dir><dir name="vendor"><dir name="jcrop"><file name="jcrop.gif" hash="7a4b4c6ebdb549fcbe47408f9457493e"/><file name="jquery.jcrop.css" hash="0442701ebd3542ecd17573ba1175ae1a"/><file name="jquery.jcrop.min.js" hash="3bbd52bffc25a16db572ff43eb3a841c"/></dir><dir name="mousewheel"><file name="mousewheel.js" hash="973f3b0b9e90b6c17331032407f83143"/></dir><dir name="ui"><file name="jquery-ui-1.8.10.custom.min.js" hash="23bf25c6a6930bc9b955db2a58229709"/><dir name="ui-lightness"><dir name="images"><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="95f9cceeb9d742dd3e917ec16ed754f8"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c18cd01623c7fed23c80d53e2f5e7c78"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="5f1847175ba18c41322cb9cb0581e0fb"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="d26e8f463195a7b86f86b7d550cfc114"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="e5a8f32e28fd5c27bf0fed33c8a8b9b5"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="58d2cd501e01573cf537089c694ba899"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="384c3f17709ba0f809b023b6e7b10b84"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="b806658954cb4d16ade8977af737f486"/><file name="ui-icons_222222_256x240.png" hash="ebe6b6902a408fbf9cac6379a1477525"/><file name="ui-icons_228ef1_256x240.png" hash="79f41c0765e9ec18562b20b0801d748b"/><file name="ui-icons_ef8c08_256x240.png" hash="ef9a6ccfe3b14041928ddc708665b226"/><file name="ui-icons_ffd27a_256x240.png" hash="ab8c30acc0e3608fb79e01fccf832c70"/><file name="ui-icons_ffffff_256x240.png" hash="342bc03f6264c75d3f1d7f99e34295b9"/></dir><file name="jquery-ui-1.8.10.cropnresize.css" hash="851152e46271d895d2e9d4061b833eff"/><file name="jquery-ui-1.8.10.custom.css" hash="d94d6cfc82c0942b6e3841586788cf04"/></dir></dir></dir></dir><dir name="link"><dir name="css"><file name="link.css" hash="1f95e0fab434698b7cbba2d05ff0aa5c"/></dir><dir name="demo"><file name="background.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="external-link-ltr-icon.png" hash="ddbdb9378a821fc07947f54d26237b51"/><file name="index.css" hash="a6b3e9c419c962e4866469578b6b98da"/><file name="index.html" hash="404b32311a774f4c3511fc94fd812140"/></dir><dir name="extra"><file name="delicious.js" hash="633805e5b8241b49b3b198d60c70b67b"/><file name="linklist.js" hash="5945e0e3bbbc1e42becb1ce8ea223b9f"/><file name="slowlinklist.js" hash="ccef47b7f52705cb58e3b84054c6e153"/></dir><dir name="lib"><file name="link-plugin.js" hash="1e4f40b2653d38aee8b5762d2520cdac"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="d99fc803f4f91751e6daf9c3cc7e08a6"/></dir><dir name="fr"><file name="i18n.js" hash="8f789ed2a046f93e852c00c9c726b191"/></dir><file name="i18n.js" hash="32fbe55d130eb228b9133c65b7081d84"/><dir name="pl"><file name="i18n.js" hash="eb8d4d76407d90b7ae53350f01d92bf6"/></dir><dir name="ru"><file name="i18n.js" hash="4f56f53941c22e9d4b1d1c589bcbe806"/></dir></dir></dir><dir name="list"><dir name="lib"><file name="list-plugin.js" hash="4dc58630f1d752237b5ed5987f5c6937"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="d3407657a23d77c834a215d7bf3b8df5"/></dir><dir name="eo"><file name="i18n.js" hash="da3a34d8833bcca6abed2cbbb094d4d1"/></dir><dir name="fi"><file name="i18n.js" hash="4973655cb37200c31d008fd32f2715fb"/></dir><dir name="fr"><file name="i18n.js" hash="721ed4f10e28cb55c604c624440afcfc"/></dir><file name="i18n.js" hash="233206aff494f605e25cbc267741ae4b"/><dir name="it"><file name="i18n.js" hash="b46598e5b5b8ef742fe27ff2d7bf5b50"/></dir><dir name="ru"><file name="i18n.js" hash="4a68a5ca235ba3192cfd11a2466ebdd5"/></dir></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="paste"><file name="README.md" hash="3d5f9f079a3bfb9724af1cb433693ae4"/><dir name="lib"><file name="paste-plugin.js" hash="71632a4580656526dcea5388084ad833"/></dir><file name="package.json" hash="1a8f3a3a4ee37a9a66a4a0cf26cd2f11"/></dir><dir name="table"><dir name="css"><file name="table.css" hash="856755f60e184c46d19c3a119feedba2"/></dir><dir name="img"><file name="down.cur" hash="4a8143598b132d1866933b6aa43a5090"/><file name="left.cur" hash="d005b5f77f028c3848d747f27504cd67"/><file name="table_layout.png" hash="99dc211325386a792e289576356245f7"/><file name="wai-green.png" hash="702a0ddbb339531909d57c53ae7e68e6"/><file name="wai-red.png" hash="84f1be7bc7005575742bda4f778ba5cc"/></dir><dir name="lib"><file name="table-cell.js" hash="45cfda06bd0d312a2146ed977a362144"/><file name="table-create-layer.js" hash="8288651b20fff3f87d615ef0678006aa"/><file name="table-plugin-utils.js" hash="c9cf7c4eed7c6b221d467000d4cf49ca"/><file name="table-plugin.js" hash="6c335ddc986b1499da59150065b1aea9"/><file name="table-selection.js" hash="4b46f81520ddfb83b78ec3a0f41ebf0f"/><file name="table.js" hash="133ba9028000d3a543aec8e146c8764b"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="43b5b78eb8d565a617a95de8b6192551"/></dir><dir name="eo"><file name="i18n.js" hash="81235be488daa67a07db9c56122c6640"/></dir><dir name="fi"><file name="i18n.js" hash="2479b5c25399986d56859c26f104b7eb"/></dir><dir name="fr"><file name="i18n.js" hash="f02f3353ac8a0f8694028234edfea6d5"/></dir><file name="i18n.js" hash="0e00d3e981c15934feae36aa8b99c6b0"/><dir name="it"><file name="i18n.js" hash="da8533c0e6506984f9b7a1070fe9dfff"/></dir><dir name="pl"><file name="i18n.js" hash="bf5d7b0802aeddf24dfd330b488c5968"/></dir><dir name="ru"><file name="i18n.js" hash="f9d96be10d92eb6dd9ce6c57a7d2d978"/></dir></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="undo"><dir name="demo"><file name="index.css" hash="9e891121c2afbebf93e7e60246e4ad83"/><file name="index.html" hash="d568ce5e98f9125a537804b9da5b5727"/></dir><dir name="lib"><file name="undo-plugin.js" hash="924f5fab6fc06a703a93c91e0c52396d"/></dir><file name="package.json" hash="18c1a188849323bf6e7e9cff41afaac1"/><dir name="vendor"><file name="diff_match_patch_uncompressed.js" hash="9638822ae1bce2e292fcfedc62bb1f59"/><file name="undo.js" hash="da570c614fdbca470fec4e8ad148fc88"/></dir></dir></dir><dir name="extra"><dir name="attributes"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="attributes.css" hash="1fdb19dfbee928ab94cbdae4f83c9a97"/></dir><dir name="lib"><file name="attributes-plugin.js" hash="5e5097a65f6fdcab9594d8df0ae4834b"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="dd9bd5e3a7d01e1c09b5308c8ca34a21"/></dir><dir name="en"><file name="i18n.js" hash="712183db4b838ce7d90478722333f0f1"/></dir><file name="i18n.js" hash="5ba01bebc68d37746351bd2d87df415f"/></dir></dir><dir name="browser"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="browser.css" hash="4e1b1592c1122fb001641a08f97663d7"/><file name="browser.jqgrid.css" hash="64479006b4e1ff84490e17af9c16b225"/><file name="browsercombined.css" hash="6fc54ddc5610fb3acdc8b6a1870a2af3"/><file name="browsercombined.css.backup" hash="2c4d264b7f8792d01fd98b75dcaafcea"/><dir name="images"><file name="ui-bg_flat_0_aaaaaa_40x100.png" hash="2a44fbdb7360c60122bcf6dcef0387d8"/><file name="ui-bg_flat_75_ffffff_40x100.png" hash="8692e6efddf882acbff144c38ea7dfdf"/><file name="ui-bg_glass_55_fbf9ee_1x400.png" hash="f8f4558e0b92ff2cd6136781533902ec"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="e5a8f32e28fd5c27bf0fed33c8a8b9b5"/><file name="ui-bg_glass_75_dadada_1x400.png" hash="c12c6510dad3ebfa64c8a30e959a2469"/><file name="ui-bg_glass_75_e6e6e6_1x400.png" hash="f4254356c2a8c9a383205ef2c4de22c4"/><file name="ui-bg_glass_95_fef1ec_1x400.png" hash="5a3be2d8fff8324d59aec3df7b0a0c83"/><file name="ui-bg_highlight-soft_75_cccccc_1x100.png" hash="72c593d16e998952cd8d798fee33c6f3"/><file name="ui-icons_222222_256x240.png" hash="ebe6b6902a408fbf9cac6379a1477525"/><file name="ui-icons_2e83ff_256x240.png" hash="2b99a5e48d3c3957d03027d36a25e8bb"/><file name="ui-icons_454545_256x240.png" hash="119dd0c2e94ad689de873ef39fd43e6e"/><file name="ui-icons_888888_256x240.png" hash="9c46d7cab43e22a14bad26d2d4806d80"/><file name="ui-icons_cd0a0a_256x240.png" hash="3e450c2a2c66328d9498e7001ad7197c"/></dir><file name="jquery-ui-1.8.13.custom.css" hash="add5823bf09137483b9a3b79594c5244"/><file name="jstree.css" hash="af6da23bddd3db20b51765d4e802cee1"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="ui.jqgrid.css" hash="5e9d7c95ff319a2101ff5e81cb905d47"/></dir><dir name="img"><file name="arrow-000-medium.png" hash="c2870570006136595d4737f89c0c5516"/><file name="arrow-180.png" hash="ad22f4334ecfb3e893b916a79cc1ae67"/><file name="arrow-315-medium.png" hash="4670462a741f95158e8e277d2d0383bb"/><file name="arrow-stop-180.png" hash="cb7973a56cd00a0921c470c88265a003"/><file name="arrow-stop.png" hash="f42613a7be2001780d299b2ef41ca77b"/><file name="arrow.png" hash="64c6eb55ead1f4fecb2c645f66d9079e"/><file name="control-stop-square-small.png" hash="c96acaae6af582895d71c3e8b2442245"/><file name="folder-horizontal-open.png" hash="838cb1eedd8fa64c941fc3a49fd0cc82"/><file name="folder-open.png" hash="d7d8fc83a85febaab02389d4e7dc9bd1"/><dir name="gcn-icons"><file name="gcn-icon-file.gif" hash="ac2aab27953019e09c128a4ae499487d"/><file name="gcn-icon-image.gif" hash="ad4ef7a3f1b21642a3146688d73992b6"/><file name="gcn-icon-page.gif" hash="56e8bb8b44a09fe321b3ef9bcf20fbbe"/></dir><file name="magnifier-left.png" hash="03d386f15d932839012de55ec2262563"/><file name="page.png" hash="55a687e848244b76f8d8249b111df860"/><file name="picture.png" hash="d2040c34ba1ffd8fa5b72ab37be11eca"/><file name="sort-alphabet-descending.png" hash="b0687ee5cb61abb9f35c9b7c13c4636b"/><file name="sort-alphabet.png" hash="c70f28d00c668f48764dd7e84ce1e077"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/></dir><dir name="lib"><file name="browser-plugin.js" hash="1998a46712ed1d997288f7b30141cd86"/><file name="browser.js" hash="6148d01c9ba94789c38b158ecd8120fb"/><file name="locale.js" hash="a847e910384e41b2842b20791f348484"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="45a966d44587f35700fcf8987ffb65ef"/></dir><file name="de.json" hash="da83f1ee8d94a5d126d71a89ba5ee1a2"/><dir name="en"><file name="i18n.js" hash="17374af52c2aa88a0b5cafdf954e4291"/></dir><file name="en.json" hash="c99f6a248ca7be514520b612b1105347"/><file name="i18n.js" hash="d2371ed0d45cb2d895e771f9b78cb434"/></dir><dir name="vendor"><file name="grid.locale.de.js" hash="4df90894fc5b4b6e1988ecbab13c8f63"/><file name="grid.locale.en.js" hash="1b7a16d0a6027a808a7d6360b47b5f72"/><file name="jquery.jqGrid.js" hash="718d3905698f62dd5d88a6fa3ebd56ff"/><file name="jquery.jstree.js" hash="f1c8261f0fa89950cd9257d1698430b6"/><file name="jquery.ui.js" hash="f08f2b04c76fad103aba44601e386580"/><file name="ui-layout.js" hash="72d2d5555fa66aa693b3973cbd8ce458"/></dir></dir><dir name="cite"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="cite.css" hash="3a940e1148b6f6355b04a3617b274c2c"/></dir><dir name="img"><file name="blockquote.png" hash="cd835c578628f97c9e005ccf84b3ab53"/><file name="icon_cite.png" hash="8e79ff67005c66bcd6b1f14df213073b"/></dir><dir name="lib"><file name="cite-plugin.js" hash="f95b8845a87929b1bed43c71494bcbe8"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="d1820518e50b2c33596ae1212e2d6cc6"/></dir><dir name="en"><file name="i18n.js" hash="d17d574df1dc2c9822d31e38b4303192"/></dir><file name="i18n.js" hash="9f95915cac533f2f6187431991c1c0b2"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="comments"><dir name="img"><file name="add-icon.png" hash="1fce54244839a6752fc4c50493c9f073"/><file name="add.png" hash="2e964921e93f16be8443468e440a931e"/><file name="comments.png" hash="761cd09498144b2d04532ddf3a0661c5"/><file name="hr.png" hash="dc2c6cbf786afad881889e896b541f3b"/><file name="textbox.png" hash="51d41b814c14c1aa42ea7d496d724ce6"/></dir><file name="package.json" hash="99914b932bd37a50b983c5e7c90ae93b"/><dir name="src"><file name="comments.css" hash="f5127e74b38aee1c700f3c3ec85c1851"/><file name="comments.js" hash="9d133ed95eee8efc238adaa7de4db8b5"/></dir></dir><dir name="draganddropfiles"><file name="AGPL3" hash="c5edf65bb50f2284b1be0196d5a95c89"/><file name="LICENSE" hash="5b77f1f48f8f9ae828474ea28169a6e4"/><file name="README.md" hash="48f4b8edd1bc74d5eb513f496dc0e34d"/><file name="TODO.md" hash="12358ef24fe64cdbc45a7360ea6e4508"/><dir name="demo"><file name="index.css" hash="eda9095e66bbb23be82cab846a46b018"/><file name="index.html" hash="0becd9d06b155c38a6d261434868be3a"/><dir name="migration"><file name="index.css" hash="65428b4044219dcf3c9e3a04e7d4d118"/><file name="index.html" hash="2ae8ccec41e7f311f33057d79a9ec846"/></dir><dir name="specs"><file name="DragnDropnImage.graphml" hash="6f05cbb2740b456cb54543a9bdddcc2c"/></dir><file name="style.css" hash="eda9095e66bbb23be82cab846a46b018"/><file name="upload.php" hash="45ec2904a41bae9d338c9c90fb8756a7"/></dir><dir name="i18n"><file name="en.json" hash="d08757e391c65e12e7c36ecb1a637263"/><file name="fr.json" hash="406a8a7cd58f4b89e52557b1df3ce5b5"/></dir><dir name="img"><file name="cross.png" hash="42492684e24356a4081134894eabeb9e"/><file name="hourglass.png" hash="b88dbbae104c8c7c939641993b2872ae"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="page.png" hash="55a687e848244b76f8d8249b111df860"/><file name="tick.png" hash="c9b528b9541e127967eda62f79118ef0"/></dir><dir name="lib"><file name="draganddropfiles-plugin.js" hash="213c6b37963801bf1bae42d969db6ece"/><file name="dragndropfiles.css" hash="25d0c7654b280019773f1f2b86e54b66"/><file name="dragndropfiles.js" hash="05512f8dbae550cdfd19bb477b0b0db5"/><file name="dropfilesrepository.js" hash="117cf2ea2d3c1a3bc58061e87a05673c"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="flag-icons"><dir name="img"><dir name="flags"><file name="aa.png" hash="ff12619c22af4199394503222998e329"/><file name="ab.png" hash="aac61a45d2a8b539135c86c541e61487"/><file name="ad.png" hash="cc750844215aed20b2b05c10d6082b0d"/><file name="ae.png" hash="7391e6b6df7b181d51ffeb2a5a6d7bd4"/><file name="af.png" hash="ae7c58272ae46cde945ccc4bed00fe9e"/><file name="ag.png" hash="390af4c36d462bbf2627a1182946825a"/><file name="ai.png" hash="08cf0788a582710062140f69887300fc"/><file name="ak.png" hash="bc6bc75ca2a8a944806625f6c30c72c4"/><file name="al.png" hash="7c5bc720b2cf3047c9fab800e271eec9"/><file name="am.png" hash="fd5d9d1d864ea76406afec5e11f2632f"/><file name="an.png" hash="7d7d682a9dc9f2a26a6dea1fdb87334f"/><file name="ao.png" hash="41a8aa1e11f7086d2413d8d9a777680b"/><file name="ar.png" hash="2fa357868e66f1aec9c4c4230baa45b3"/><file name="as.png" hash="96e49204e758277b6720584c4d844ecc"/><file name="at.png" hash="62bf1a5653692b34b2ee1f734a59b062"/><file name="au.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="av.png" hash="785b4464ecbc9101cc951cafcd28a013"/><file name="aw.png" hash="6e82279ceb4702171f345fead7ff3e35"/><file name="ax.png" hash="27708378fcc025e375fd3c303fc1cbd6"/><file name="ay.png" hash="fea52366cf644c57cff3ea9e417c21ae"/><file name="az.png" hash="d63f5c99e25eca9de2a97f63161f38e6"/><file name="ba.png" hash="cbb6ce46c69e14bbd8d2c8fd91680d33"/><file name="bb.png" hash="47c8aea417660e5f4e8b5a7a73f2cb18"/><file name="bd.png" hash="f02d8deb9de271cd246646872798af15"/><file name="be.png" hash="2404b88a07bdb7aef652eec0f6fce287"/><file name="bf.png" hash="cc65efa74cd7367933ecd52115204b2d"/><file name="bg.png" hash="77b2183ab10cd26ee4e79fdfc12b8621"/><file name="bh.png" hash="5bbf6106968b2517d924bac4d99b41bd"/><file name="bi.png" hash="427c72cd341f288faf0e62f03586c7ba"/><file name="bj.png" hash="67bd2e990cc7e3dc5bbae821fd38f20c"/><file name="bm.png" hash="cf195bf1921659202cf8ae899e9171d0"/><file name="bn.png" hash="4911cd2a8fae48d82f9ce124d908be3c"/><file name="bo.png" hash="151854ff619d7a44894a37b5be73f463"/><file name="br.png" hash="54c40b8a9ad7df4783d19acc05910f8e"/><file name="bs.png" hash="8b45f84cb140ec2448692187a82abfc7"/><file name="bt.png" hash="2f13e87c1868b03b0b47cd0bb60737d5"/><file name="bv.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="bw.png" hash="15d59270fb25d9e467d5a730682c5644"/><file name="by.png" hash="9e18ac464c49a91d90eaf11ad21357e9"/><file name="bz.png" hash="6e14aaafe632fe367409415545c27e73"/><file name="ca.png" hash="8618709a45d8d1c4d9d254c61bdf29b8"/><file name="catalonia.png" hash="76991f3da407b7dec2603ff86f1b9724"/><file name="cc.png" hash="ebbfb19d79975289e7a9cbb12caf0a23"/><file name="cd.png" hash="34e2a72a9cb9e873db413b020d7f1845"/><file name="ce.png" hash="91d3b05187115efb95a9529063b6dfbf"/><file name="cf.png" hash="252d14145f4c47374a3e0bc2bb8ae0bf"/><file name="cg.png" hash="b5bed6c75a72dc56f8eb8c559d437f59"/><file name="ch.png" hash="e67b19a7767114078cda2b3c874a5d5b"/><file name="ci.png" hash="90e8d52c215176bb04b7453b84e6fa43"/><file name="ck.png" hash="e70409285b72ac2ebd8d6ee1849e4083"/><file name="cl.png" hash="dc7b3be27813faeb454d02b55b79b9e3"/><file name="cm.png" hash="f5cdc865bf36948532707c42e716e14a"/><file name="cn.png" hash="a82ff00f39eff54062328b4474c33dbc"/><file name="co.png" hash="4bd223b284a0900cda6826ee656c5333"/><file name="cr.png" hash="cd28a01f91e89fa2b844857642fd5fb7"/><file name="cs.png" hash="4db37e9044c342fb819515d13768e058"/><file name="cu.png" hash="9d5366e9b01d5cd428429e608433d5f3"/><file name="cv.png" hash="2f4edfdcba4cdb3fa903047a235f3296"/><file name="cx.png" hash="8efc55a14b900c47f4b920c4510f192f"/><file name="cy.png" hash="f29741d622fe02759bb7a2a91eb5e2e0"/><file name="cz.png" hash="815b6d2bf60a3179c0652f0b6895bcbb"/><file name="da.png" hash="fe926c8271b35febf4a6cb0a41b111eb"/><file name="de.png" hash="ddabae687ecae5edaaeb808d440543e6"/><file name="dj.png" hash="197e6fc2579eec8bcd7303393de841ba"/><file name="dk.png" hash="fe926c8271b35febf4a6cb0a41b111eb"/><file name="dm.png" hash="85845da8ae28e94f2885ceeb16515dd0"/><file name="do.png" hash="153949105845e18a133a4c778b3de31e"/><file name="dv.png" hash="333df6f9fa1479579533dee0563f7bf1"/><file name="dz.png" hash="c57f3c0951ba1525b3359fc0acbfd6b1"/><file name="ec.png" hash="0152114421e281913d0c1c148e196c92"/><file name="ee.png" hash="1cdfaaa10ff170ce19ed46339efe3af6"/><file name="eg.png" hash="09c48d3562f0dc51e2f9507704f6437f"/><file name="eh.png" hash="7dd5a46a34bee2f10532f1213a941d7b"/><file name="el.png" hash="fd9b321b80be31c027585c8992f1799f"/><file name="en.png" hash="73f2f220f6d51d249e45a04d9a03da91"/><file name="eo.png" hash="33ceb5d48b9ff154cf6f3beeb24f1845"/><file name="er.png" hash="481d394ac9a44f3040f7c457fc1f23a6"/><file name="es.png" hash="d6693ce2a6346b2da89ceda335554e0a"/><file name="et.png" hash="73763e46da896f3e951954ad473b4a4b"/><file name="eu.png" hash="76cb57759df376c7f16c399e31e477cb"/><file name="europeanunion.png" hash="ffce5e64df4d367a20e1ef4033f60257"/><file name="fa.png" hash="086cfe2fc3d0d14d032aa53542678bb6"/><file name="fam.png" hash="0b36de21772c8d87e1d0106878b65231"/><file name="ff.png" hash="fcc4e17a79c19f8ca6098530cb13a3e4"/><file name="fi.png" hash="e30bd2493de78c998d1ac6c22d20146b"/><file name="fj.png" hash="7c3e78e31bb34b0fafbb0865737f8d36"/><file name="fk.png" hash="9627317fe9a5757ee8c06df7d8e8a887"/><file name="fm.png" hash="d3767ea95466571e10c7e563d456d754"/><file name="fo.png" hash="d0e6b0a3fdb4e2271b5b5057bd969966"/><file name="fr.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="fy.png" hash="18fa69db68a4cbf79ae660dc0346115a"/><file name="ga.png" hash="972da84bdea1359d69c719a37d89d219"/><file name="gb.png" hash="0894999b108830afc0733ee7b6e08310"/><file name="gd.png" hash="95b8b79fafc6b1510978977bc8067b46"/><file name="ge.png" hash="aa40721b7a179f6c9c8f666a64063767"/><file name="gf.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="gh.png" hash="12da850e724de5ff779572bbdb8ded71"/><file name="gi.png" hash="0ca5a4db2ac11c8a5cb57701b18b8088"/><file name="gl.png" hash="073b6bf37f6eefe07145d9dd89bc9e7d"/><file name="gm.png" hash="a7d785fa41e66a5e6d82301688686f20"/><file name="gn.png" hash="acba9c908c29db8aa890b6a20265ac22"/><file name="gp.png" hash="c2dc0a2062b24f906431337186888f01"/><file name="gq.png" hash="70f64b2b38b8a21152e7446a1b3e1133"/><file name="gr.png" hash="fd9b321b80be31c027585c8992f1799f"/><file name="gs.png" hash="3b510d36dc70edd5b301da8096c9b71c"/><file name="gt.png" hash="384e9d38421a6853f9c35d48d8c49a85"/><file name="gu.png" hash="2d058f7cea364d247fee5bb53fe70390"/><file name="gv.png" hash="02a47e21c8adc33f6b22e9996e202e6b"/><file name="gw.png" hash="35eb1d9b882111ccec5f58cd778364bf"/><file name="gy.png" hash="d816170967c67a98db73cd89c56014fd"/><file name="ha.png" hash="cc65efa74cd7367933ecd52115204b2d"/><file name="he.png" hash="5c8964621cbdf37b1d3dce91656350bf"/><file name="hi.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="hk.png" hash="389d0451c5c2ff40e88a93588dcbd6f1"/><file name="hm.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="hn.png" hash="ac9242c256af7800a223bdcbf0798f57"/><file name="ho.png" hash="eb8655ae58a0ab9a3f241fa07b76ab19"/><file name="hr.png" hash="0868c49000b253d9b4f290471898c961"/><file name="ht.png" hash="b5360c0f01d574333b3bfa27c3dce856"/><file name="hu.png" hash="6c6fce8a6fd09c340964b00c5e82a8c3"/><file name="hy.png" hash="e75fcdc9c2ef13a1a67aad43ca2308c2"/><file name="hz.png" hash="2ad5f9c4e8e5af5ef005fe2fba00d50f"/><file name="id.png" hash="fed538f9c8cd0500a6a655b55426744c"/><file name="ie.png" hash="48e42d0d1451e7b19b7b79d631a3a95c"/><file name="ig.png" hash="4a793309d11e9dedd6f4265d778c6133"/><file name="ii.png" hash="a82ff00f39eff54062328b4474c33dbc"/><file name="il.png" hash="a135fcdefe8a391b416bdb102476e12b"/><file name="in.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="io.png" hash="38afe5a0e9817027e1f1615028aca521"/><file name="iq.png" hash="39cfe476621ad630cf3418c3234f0594"/><file name="ir.png" hash="2ac099e190547501704d309d59831d2b"/><file name="is.png" hash="7fffd4f1acabc2ccc890049e48587e8a"/><file name="it.png" hash="784f7eb333f0591558bcce9616a3c105"/><file name="ja.png" hash="10958397bc7c25c746e6e122365c003c"/><file name="jm.png" hash="a582c95e205f76277afa1571940121cd"/><file name="jo.png" hash="9dd19e8da30782b2bfb9b5a0d1c51e8b"/><file name="jp.png" hash="10958397bc7c25c746e6e122365c003c"/><file name="jv.png" hash="35c4e24cbd280288152f5e3244e9ee69"/><file name="ka.png" hash="c563ba062d5b58ce5977779f45ef336d"/><file name="ke.png" hash="357152ed37ece2a45a7d57c5bf30ab3c"/><file name="kg.png" hash="192033ce169b1b107dc4aabb1f635c1c"/><file name="kh.png" hash="8658c066eb4f9d6c15efb31a821b482c"/><file name="ki.png" hash="45b580b5a72835f271562b54b146a77c"/><file name="kk.png" hash="01b898ff57cb85421599611fb6fca484"/><file name="kl.png" hash="430f0d7d9f88242efa72f268496820cc"/><file name="km.png" hash="cc942486999d072021c0b3582306f834"/><file name="kn.png" hash="f096727a7612c065259c6334b61a8b6a"/><file name="ko.png" hash="cf63c15bf955e54afed8061497c7f7ea"/><file name="kp.png" hash="0eaa3e8dc84bae9283a9969f2e360080"/><file name="kr.png" hash="cf63c15bf955e54afed8061497c7f7ea"/><file name="ks.png" hash="f1321803dc07f45a58f0355bc714dcd0"/><file name="ku.png" hash="88a7d2944161b9ddd846b61c826305e0"/><file name="kv.png" hash="ac9d8de692abc2e48d1dcc8d8cfefd02"/><file name="kw.png" hash="2e0485cdb9ca8240c9fc372e4cef0eb7"/><file name="ky.png" hash="da2c56cc2568d516031e3082713fd90c"/><file name="kz.png" hash="6d51066ba152b15fd05d761745333135"/><file name="la.png" hash="d082bb175a3510a7a50dcde5b1d8f784"/><file name="lb.png" hash="dad5d86f0d90cca0ff4ab5332d7fd7fc"/><file name="lc.png" hash="18c05f2c79f8774bbb201593b20a06e2"/><file name="lg.png" hash="6bcc5e9452749a8001ea10aa22e17929"/><file name="li.png" hash="822034b39b46abaa91127f8342092a32"/><file name="lk.png" hash="4e90c553f186c9776976b5b11dba4ea4"/><file name="ln.png" hash="dbabdf7a9362054d8b00819d0e41058a"/><file name="lo.png" hash="f6af5d318d988977478ca26c49f479fb"/><file name="lr.png" hash="3b6d8d720721f68ceb465249aad32b27"/><file name="ls.png" hash="c228783a0785a8541d96d5515a2a16cf"/><file name="lt.png" hash="95efec9db9d274d25fbb98eb53a9c384"/><file name="lu.png" hash="3be0b3a6096e9d77d9d7b997d464e612"/><file name="lv.png" hash="6ffae4cc65036d3de052a58e062d1ed7"/><file name="ly.png" hash="3f9d6e8cba5fd7cb8c201acfe9b7bc15"/><file name="ma.png" hash="c936b9f794def7d85fbb4c120d68684e"/><file name="mc.png" hash="63c6fd073106c8b0eb7336d9c19653a2"/><file name="md.png" hash="e414980c55af38676c5312bd330d6bb9"/><file name="me.png" hash="7a2ee5d7f1bc5ef478106a86d2c1cc09"/><file name="mg.png" hash="5aea24a18ca7e8b65770dcf2a738dd08"/><file name="mh.png" hash="948dd15821a6fe45b0df8667b6601ead"/><file name="mi.png" hash="7cfae05d0e87377b038844eae7859d51"/><file name="mk.png" hash="617997cbcaafaea0035a4c0474ae16dd"/><file name="ml.png" hash="d951cb1c43a8077167b731a1aea70b6c"/><file name="mm.png" hash="82ad2104b5490e1f6adfcfa777ab8243"/><file name="mn.png" hash="4adb9a834188753731add527aa4f67f0"/><file name="mo.png" hash="6339bdf0e24c871301d1fc0207e2685f"/><file name="mp.png" hash="929b9802e7bfb58bab0330a4c6925595"/><file name="mq.png" hash="be5fb2cd33e8df13e0b2f2feffb9373f"/><file name="mr.png" hash="6c1cc8a1babe91421a38ddc573ee7cb4"/><file name="ms.png" hash="bfddbc2aae078e0aa80633f784e18526"/><file name="mt.png" hash="7a7ee4f98185ecfb6e1ba753aa6f2111"/><file name="mu.png" hash="48d5cbc23fedfbb77b06ed0e9b04522f"/><file name="mv.png" hash="24c90cfb0c883f9d1b303276c3b069e7"/><file name="mw.png" hash="1d2b8e369b2d4384d1ab4b24315fa139"/><file name="mx.png" hash="479a865f838c70d654a9f818a23f9a7d"/><file name="my.png" hash="e1c0f262c141e8615f819b1cd18393d3"/><file name="mz.png" hash="159c85011041bea6bd3c68b6ba2919d7"/><file name="na.png" hash="e582101531b620fb0138c83602aab920"/><file name="nb.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="nc.png" hash="ad8bf708e9db5fa423b5da123c914378"/><file name="nd.png" hash="45b580b5a72835f271562b54b146a77c"/><file name="ne.png" hash="f2eccd65605d8babcdd3af4b01215ecc"/><file name="nf.png" hash="c624a221dae959256a3e143a5147f825"/><file name="ng.png" hash="0c506131e1841cee782e4faf5cec89a9"/><file name="ni.png" hash="f43a5f35488513de58e2e5fbda9a98db"/><file name="nl.png" hash="6186550ebc77b1c51cd3ae37e78c33c1"/><file name="nn.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="no.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="np.png" hash="52c16445053df13abb08cedbe82f1f28"/><file name="nr.png" hash="2fb04b74787698835b63a46cbdef6fab"/><file name="nu.png" hash="9a2f682db640f1c36ee40f296f63dc87"/><file name="nv.png" hash="f07743dbf1a1451925583cbcf4bc1005"/><file name="ny.png" hash="95e9be7a7e1afbe7dffbb80ea4a532e2"/><file name="nz.png" hash="179cc39a58e324df1e9a19a5eae9dca0"/><file name="oc.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="om.png" hash="7b002bc8c4ab1a85c2c807ec2c4442d2"/><file name="or.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="os.png" hash="0a87600c12a03f25750f6ca8236508ec"/><file name="pa.png" hash="64795009d69b36b6a4461b8159dcf356"/><file name="pe.png" hash="d1ed0462edb8cbc3220b7aca250b0437"/><file name="pf.png" hash="e59d18e48cf0924687618bbf60ea4fee"/><file name="pg.png" hash="48f68aaeefaa3b8ee7ce1f1761e6c11d"/><file name="ph.png" hash="8ff2d08518d3e1224d34467f5e24fcc2"/><file name="pk.png" hash="3bd18971ec170e6e9c461026068508da"/><file name="pl.png" hash="fad0e96c20f20be196499d26a6c74cd1"/><file name="pm.png" hash="ba41b8c349070250f814188080c2a8e8"/><file name="pn.png" hash="e4dcc857f534b48e8377ee36f63be013"/><file name="pr.png" hash="40b7fb1a4c1ebb076d40f0df5c6fd59a"/><file name="ps.png" hash="68d5f99924c67ef7d3b3aa32ff22b805"/><file name="pt.png" hash="5b8ab69ac52129bd32a3927f1b94d170"/><file name="pw.png" hash="f2bff7cd01d8eff6401e811f3de6af4f"/><file name="py.png" hash="b9d3d10b185a3144e21a452903857870"/><file name="qa.png" hash="c1dc363a27f5b5d19e24032747d7bedf"/><file name="re.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="rm.png" hash="d038c9c152c5e14f875c7b13afcd4711"/><file name="rn.png" hash="89be44926846abc76e7e3b5a71d140ad"/><file name="ro.png" hash="d038c9c152c5e14f875c7b13afcd4711"/><file name="rs.png" hash="5b672e3ee63317614288615ba0774bf7"/><file name="ru.png" hash="0d31ef75adef220e73f0cb93a84a7422"/><file name="rw.png" hash="bef92348e3ea38dc462326e1ba2ff622"/><file name="sa.png" hash="605884cec6f446d418a092c0941acad5"/><file name="sb.png" hash="5e4b74f8a611742bdc3a04629e871eb4"/><file name="sc.png" hash="39650e922851e1b72165d7b016dc3b44"/><file name="scotland.png" hash="eca5bebe6e4dbc9eb858d4f58ea3f9de"/><file name="sd.png" hash="b972f90fea3369c020d258d1b860a6e0"/><file name="se.png" hash="4c01f06db23324267e2802dcade3572f"/><file name="sg.png" hash="8af65159c137a6a7ed3d1bc9c2eed18b"/><file name="sh.png" hash="e707aacb0986ad7a4a60ab8d82cf093d"/><file name="si.png" hash="d94ea79a5a8e0b6900941a1271c58191"/><file name="sj.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="sk.png" hash="5a7edc7e4492629ea5ce24b830839d32"/><file name="sl.png" hash="73904ec1cf4f0be282693c4e954e5821"/><file name="sm.png" hash="56e3c1b483bf27e619146b50ee5181bc"/><file name="sn.png" hash="501a5fab662d127ad588825cd0cd4954"/><file name="so.png" hash="4be2ffc4d06de407434a877dc03ff88b"/><file name="sq.png" hash="7ad607e32e143c3a047e64aef307a330"/><file name="sr.png" hash="8f9aca73767b8e7876c72add438a6007"/><file name="ss.png" hash="d23ec216d4b0865912e1c8e1dd04358a"/><file name="st.png" hash="ab272a50ea656512c036c001fcaca61c"/><file name="su.png" hash="b2a10dd9ef92e4fd4fc658f32dee1adb"/><file name="sv.png" hash="c6c853766dfbab2ddd225980d3012f5c"/><file name="sw.png" hash="df5ba64f61a3b83a3fa282be21a61050"/><file name="sy.png" hash="a0886eca3ef87d646af1514d025752f6"/><file name="sz.png" hash="e97675a21b5280b9cb4c1fc99aab004f"/><file name="ta.png" hash="f765d3525b985c93500c0f9548d1b6ee"/><file name="tc.png" hash="50733ccc670058e9a737b652089287ca"/><file name="td.png" hash="6c8d3f6c96bcd5d34a0bae497d0e13ca"/><file name="te.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="tf.png" hash="f7ccbaa513a24eb3dc4c7860ab8007ee"/><file name="tg.png" hash="ac323c8259468d0d02fcc805895f26f3"/><file name="th.png" hash="af85286bf1cadae9c2c636fe83195251"/><file name="ti.png" hash="e28e0f5115ca4becd9224c722d59f03a"/><file name="tj.png" hash="5cc548d1858d19f336ca7390b381ad07"/><file name="tk.png" hash="896fb1a34638a76361d4307668cd5414"/><file name="tl.png" hash="093e76da6759647c331ea75ef1ba9da0"/><file name="tm.png" hash="b36ce71226fad4da67764e05b800292b"/><file name="tn.png" hash="ae9947d99c48894d1d1824d624361eb9"/><file name="to.png" hash="ce868fde2d77788a669001995f4b73df"/><file name="tr.png" hash="31ea1f705854ad57c432845068bd05d3"/><file name="tt.png" hash="9ead47e1d48627b1806cd992b62c8c2b"/><file name="tv.png" hash="6fec556dd8bd936ca706b0d7cc864993"/><file name="tw.png" hash="0e41af2b3ca03d145e7665d0821931fa"/><file name="ty.png" hash="3be1be69bee819219287102ea24466a7"/><file name="tz.png" hash="c846788492ef1188f631113bd8cced5c"/><file name="ua.png" hash="7ef7a6f5def3a4117d5c2f08e37008ff"/><file name="ug.png" hash="17e134aa84a076bf5541f5d11c616e5d"/><file name="uk.png" hash="b1901378ddede69f619f2ead439878e0"/><file name="um.png" hash="f0f12f4afaccb13ea40e15f3b81c5921"/><file name="ur.png" hash="958d512e18c1ed35b2d54d601c7a393e"/><file name="us.png" hash="968591e0050981be9fa94bd2597afb48"/><file name="uy.png" hash="9ca8f3d9b1b1101d30a4555c997e871b"/><file name="uz.png" hash="37e4bdb64229f4624cacec7d4297214d"/><file name="va.png" hash="493642ad6bf3a344602fe006e7d44fa2"/><file name="vc.png" hash="60eec8d579d55ea0f2ec62d837c104d2"/><file name="ve.png" hash="3aee24fa5f6a85f5ce452001182fdccc"/><file name="vg.png" hash="79ef17575149f2663df51419f39feff2"/><file name="vi.png" hash="c95b9175142cd29177a9b25e16c3fc39"/><file name="vn.png" hash="638136b1a6f5dab7be6cec84fcc2cd53"/><file name="vo.png" hash="488430cd9a358f4a5110cffd352705a1"/><file name="vu.png" hash="c37b82a52cdf80492ee94dc7f46256cf"/><file name="wa.png" hash="2404b88a07bdb7aef652eec0f6fce287"/><file name="wales.png" hash="42c7ca83721190322499c94d7ff2ae26"/><file name="wf.png" hash="86cc1aa337ebb6cb74a2c3196770a7f5"/><file name="wo.png" hash="501a5fab662d127ad588825cd0cd4954"/><file name="ws.png" hash="68183f64328d121a9ee77a92319bbfcd"/><file name="xh.png" hash="18851b500f3cda4245698fc62a39cc39"/><file name="ye.png" hash="290e09160bb2ef42ba8129a41159eb07"/><file name="yt.png" hash="f46c7cd7b2474cbcf61c5b2007a7558f"/><file name="za.png" hash="98e1044d0ffd11afc67a79f3676ba97a"/><file name="zh.png" hash="a82ff00f39eff54062328b4474c33dbc"/><file name="zm.png" hash="ec69def9e77d23446867caeb4a5223b1"/><file name="zw.png" hash="e7ae0b7e3c49a5a775a9d6854912e21a"/></dir></dir><dir name="lib"><file name="flag-icons-plugin.js" hash="8de745481726c22c579becc11691e3a7"/></dir></dir><dir name="formatlesspaste"><file name="README.md" hash="3d5f9f079a3bfb9724af1cb433693ae4"/><dir name="css"><file name="formatless.css" hash="1d4145e16292c84f82d7d3df96a4902d"/></dir><dir name="img"><file name="button.png" hash="2abbec214757b64641000dda108ce9ce"/></dir><dir name="lib"><file name="formatlesshandler.js" hash="a3b34dde4227febdc6be8acc1a70e40a"/><file name="formatlesspaste-plugin.js" hash="b94d3d0cd3c28385daec688bc912d714"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="3311f31f2d2fc224cb000e181f2d5d8e"/></dir><file name="i18n.js" hash="a2a6ee5c10e67ee6c558b5d1b30ac77a"/></dir><file name="package.json" hash="dad18d16d8c04dc4d3d03c28a0288c0a"/></dir><dir name="googletranslate"><file name="README.md" hash="57786a6fae68a5d577f4a30b8f79bd81"/><dir name="css"><file name="googletranslate.css" hash="f8172c9498d1ed609155edab49206320"/></dir><dir name="img"><file name="ad.png" hash="cc750844215aed20b2b05c10d6082b0d"/><file name="ae.png" hash="7391e6b6df7b181d51ffeb2a5a6d7bd4"/><file name="af.png" hash="ae7c58272ae46cde945ccc4bed00fe9e"/><file name="ag.png" hash="390af4c36d462bbf2627a1182946825a"/><file name="ai.png" hash="08cf0788a582710062140f69887300fc"/><file name="al.png" hash="7c5bc720b2cf3047c9fab800e271eec9"/><file name="am.png" hash="fd5d9d1d864ea76406afec5e11f2632f"/><file name="an.png" hash="7d7d682a9dc9f2a26a6dea1fdb87334f"/><file name="ao.png" hash="41a8aa1e11f7086d2413d8d9a777680b"/><file name="ar.png" hash="2fa357868e66f1aec9c4c4230baa45b3"/><file name="as.png" hash="96e49204e758277b6720584c4d844ecc"/><file name="at.png" hash="62bf1a5653692b34b2ee1f734a59b062"/><file name="au.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="aw.png" hash="6e82279ceb4702171f345fead7ff3e35"/><file name="ax.png" hash="27708378fcc025e375fd3c303fc1cbd6"/><file name="az.png" hash="d63f5c99e25eca9de2a97f63161f38e6"/><file name="ba.png" hash="cbb6ce46c69e14bbd8d2c8fd91680d33"/><file name="bb.png" hash="47c8aea417660e5f4e8b5a7a73f2cb18"/><file name="bd.png" hash="f02d8deb9de271cd246646872798af15"/><file name="be.png" hash="2404b88a07bdb7aef652eec0f6fce287"/><file name="bf.png" hash="cc65efa74cd7367933ecd52115204b2d"/><file name="bg.png" hash="77b2183ab10cd26ee4e79fdfc12b8621"/><file name="bh.png" hash="5bbf6106968b2517d924bac4d99b41bd"/><file name="bi.png" hash="427c72cd341f288faf0e62f03586c7ba"/><file name="bj.png" hash="67bd2e990cc7e3dc5bbae821fd38f20c"/><file name="bm.png" hash="cf195bf1921659202cf8ae899e9171d0"/><file name="bn.png" hash="4911cd2a8fae48d82f9ce124d908be3c"/><file name="bo.png" hash="151854ff619d7a44894a37b5be73f463"/><file name="br.png" hash="54c40b8a9ad7df4783d19acc05910f8e"/><file name="bs.png" hash="8b45f84cb140ec2448692187a82abfc7"/><file name="bt.png" hash="2f13e87c1868b03b0b47cd0bb60737d5"/><file name="bv.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="bw.png" hash="15d59270fb25d9e467d5a730682c5644"/><file name="by.png" hash="9e18ac464c49a91d90eaf11ad21357e9"/><file name="bz.png" hash="6e14aaafe632fe367409415545c27e73"/><file name="ca.png" hash="8618709a45d8d1c4d9d254c61bdf29b8"/><file name="catalonia.png" hash="76991f3da407b7dec2603ff86f1b9724"/><file name="cc.png" hash="ebbfb19d79975289e7a9cbb12caf0a23"/><file name="cd.png" hash="34e2a72a9cb9e873db413b020d7f1845"/><file name="cf.png" hash="252d14145f4c47374a3e0bc2bb8ae0bf"/><file name="cg.png" hash="b5bed6c75a72dc56f8eb8c559d437f59"/><file name="ch.png" hash="e67b19a7767114078cda2b3c874a5d5b"/><file name="ci.png" hash="90e8d52c215176bb04b7453b84e6fa43"/><file name="ck.png" hash="e70409285b72ac2ebd8d6ee1849e4083"/><file name="cl.png" hash="dc7b3be27813faeb454d02b55b79b9e3"/><file name="cm.png" hash="f5cdc865bf36948532707c42e716e14a"/><file name="cn.png" hash="a82ff00f39eff54062328b4474c33dbc"/><file name="co.png" hash="4bd223b284a0900cda6826ee656c5333"/><file name="cr.png" hash="cd28a01f91e89fa2b844857642fd5fb7"/><file name="cs.png" hash="4db37e9044c342fb819515d13768e058"/><file name="cu.png" hash="9d5366e9b01d5cd428429e608433d5f3"/><file name="cv.png" hash="2f4edfdcba4cdb3fa903047a235f3296"/><file name="cx.png" hash="8efc55a14b900c47f4b920c4510f192f"/><file name="cy.png" hash="f29741d622fe02759bb7a2a91eb5e2e0"/><file name="cz.png" hash="815b6d2bf60a3179c0652f0b6895bcbb"/><file name="de.png" hash="ddabae687ecae5edaaeb808d440543e6"/><file name="dj.png" hash="197e6fc2579eec8bcd7303393de841ba"/><file name="dk.png" hash="fe926c8271b35febf4a6cb0a41b111eb"/><file name="dm.png" hash="85845da8ae28e94f2885ceeb16515dd0"/><file name="do.png" hash="153949105845e18a133a4c778b3de31e"/><file name="dz.png" hash="c57f3c0951ba1525b3359fc0acbfd6b1"/><file name="ec.png" hash="0152114421e281913d0c1c148e196c92"/><file name="ee.png" hash="1cdfaaa10ff170ce19ed46339efe3af6"/><file name="eg.png" hash="09c48d3562f0dc51e2f9507704f6437f"/><file name="eh.png" hash="7dd5a46a34bee2f10532f1213a941d7b"/><file name="en.png" hash="73f2f220f6d51d249e45a04d9a03da91"/><file name="er.png" hash="481d394ac9a44f3040f7c457fc1f23a6"/><file name="es.png" hash="d6693ce2a6346b2da89ceda335554e0a"/><file name="et.png" hash="73763e46da896f3e951954ad473b4a4b"/><file name="europeanunion.png" hash="ffce5e64df4d367a20e1ef4033f60257"/><file name="fam.png" hash="0b36de21772c8d87e1d0106878b65231"/><file name="fi.png" hash="e30bd2493de78c998d1ac6c22d20146b"/><file name="fj.png" hash="7c3e78e31bb34b0fafbb0865737f8d36"/><file name="fk.png" hash="9627317fe9a5757ee8c06df7d8e8a887"/><file name="fm.png" hash="d3767ea95466571e10c7e563d456d754"/><file name="fo.png" hash="d0e6b0a3fdb4e2271b5b5057bd969966"/><file name="fr.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="ga.png" hash="972da84bdea1359d69c719a37d89d219"/><file name="gb.png" hash="0894999b108830afc0733ee7b6e08310"/><file name="gd.png" hash="95b8b79fafc6b1510978977bc8067b46"/><file name="ge.png" hash="aa40721b7a179f6c9c8f666a64063767"/><file name="gf.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="gh.png" hash="12da850e724de5ff779572bbdb8ded71"/><file name="gi.png" hash="0ca5a4db2ac11c8a5cb57701b18b8088"/><file name="gl.png" hash="073b6bf37f6eefe07145d9dd89bc9e7d"/><file name="gm.png" hash="a7d785fa41e66a5e6d82301688686f20"/><file name="gn.png" hash="acba9c908c29db8aa890b6a20265ac22"/><file name="gp.png" hash="c2dc0a2062b24f906431337186888f01"/><file name="gq.png" hash="70f64b2b38b8a21152e7446a1b3e1133"/><file name="gr.png" hash="fd9b321b80be31c027585c8992f1799f"/><file name="gs.png" hash="3b510d36dc70edd5b301da8096c9b71c"/><file name="gt.png" hash="384e9d38421a6853f9c35d48d8c49a85"/><file name="gu.png" hash="2d058f7cea364d247fee5bb53fe70390"/><file name="gw.png" hash="35eb1d9b882111ccec5f58cd778364bf"/><file name="gy.png" hash="d816170967c67a98db73cd89c56014fd"/><file name="hk.png" hash="389d0451c5c2ff40e88a93588dcbd6f1"/><file name="hm.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="hn.png" hash="ac9242c256af7800a223bdcbf0798f57"/><file name="hr.png" hash="0868c49000b253d9b4f290471898c961"/><file name="ht.png" hash="b5360c0f01d574333b3bfa27c3dce856"/><file name="hu.png" hash="6c6fce8a6fd09c340964b00c5e82a8c3"/><file name="id.png" hash="fed538f9c8cd0500a6a655b55426744c"/><file name="ie.png" hash="48e42d0d1451e7b19b7b79d631a3a95c"/><file name="il.png" hash="a135fcdefe8a391b416bdb102476e12b"/><file name="in.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="io.png" hash="38afe5a0e9817027e1f1615028aca521"/><file name="iq.png" hash="39cfe476621ad630cf3418c3234f0594"/><file name="ir.png" hash="2ac099e190547501704d309d59831d2b"/><file name="is.png" hash="7fffd4f1acabc2ccc890049e48587e8a"/><file name="it.png" hash="784f7eb333f0591558bcce9616a3c105"/><file name="jm.png" hash="a582c95e205f76277afa1571940121cd"/><file name="jo.png" hash="9dd19e8da30782b2bfb9b5a0d1c51e8b"/><file name="jp.png" hash="10958397bc7c25c746e6e122365c003c"/><file name="ke.png" hash="357152ed37ece2a45a7d57c5bf30ab3c"/><file name="kg.png" hash="192033ce169b1b107dc4aabb1f635c1c"/><file name="kh.png" hash="8658c066eb4f9d6c15efb31a821b482c"/><file name="ki.png" hash="703ced92b97cc2713038f0d50ee5a0f0"/><file name="km.png" hash="cc942486999d072021c0b3582306f834"/><file name="kn.png" hash="f096727a7612c065259c6334b61a8b6a"/><file name="kp.png" hash="0eaa3e8dc84bae9283a9969f2e360080"/><file name="kr.png" hash="cf63c15bf955e54afed8061497c7f7ea"/><file name="kw.png" hash="2e0485cdb9ca8240c9fc372e4cef0eb7"/><file name="ky.png" hash="da2c56cc2568d516031e3082713fd90c"/><file name="kz.png" hash="6d51066ba152b15fd05d761745333135"/><file name="la.png" hash="3375d707535d69248f0ab23ef80268c8"/><file name="lb.png" hash="dad5d86f0d90cca0ff4ab5332d7fd7fc"/><file name="lc.png" hash="18c05f2c79f8774bbb201593b20a06e2"/><file name="li.png" hash="822034b39b46abaa91127f8342092a32"/><file name="lk.png" hash="4e90c553f186c9776976b5b11dba4ea4"/><file name="lr.png" hash="3b6d8d720721f68ceb465249aad32b27"/><file name="ls.png" hash="c228783a0785a8541d96d5515a2a16cf"/><file name="lt.png" hash="95efec9db9d274d25fbb98eb53a9c384"/><file name="lu.png" hash="3be0b3a6096e9d77d9d7b997d464e612"/><file name="lv.png" hash="6ffae4cc65036d3de052a58e062d1ed7"/><file name="ly.png" hash="3f9d6e8cba5fd7cb8c201acfe9b7bc15"/><file name="ma.png" hash="c936b9f794def7d85fbb4c120d68684e"/><file name="mc.png" hash="63c6fd073106c8b0eb7336d9c19653a2"/><file name="md.png" hash="e414980c55af38676c5312bd330d6bb9"/><file name="me.png" hash="7a2ee5d7f1bc5ef478106a86d2c1cc09"/><file name="mg.png" hash="5aea24a18ca7e8b65770dcf2a738dd08"/><file name="mh.png" hash="948dd15821a6fe45b0df8667b6601ead"/><file name="mk.png" hash="617997cbcaafaea0035a4c0474ae16dd"/><file name="ml.png" hash="d951cb1c43a8077167b731a1aea70b6c"/><file name="mm.png" hash="82ad2104b5490e1f6adfcfa777ab8243"/><file name="mn.png" hash="4adb9a834188753731add527aa4f67f0"/><file name="mo.png" hash="6339bdf0e24c871301d1fc0207e2685f"/><file name="mp.png" hash="929b9802e7bfb58bab0330a4c6925595"/><file name="mq.png" hash="be5fb2cd33e8df13e0b2f2feffb9373f"/><file name="mr.png" hash="6c1cc8a1babe91421a38ddc573ee7cb4"/><file name="ms.png" hash="bfddbc2aae078e0aa80633f784e18526"/><file name="mt.png" hash="7a7ee4f98185ecfb6e1ba753aa6f2111"/><file name="mu.png" hash="48d5cbc23fedfbb77b06ed0e9b04522f"/><file name="mv.png" hash="24c90cfb0c883f9d1b303276c3b069e7"/><file name="mw.png" hash="1d2b8e369b2d4384d1ab4b24315fa139"/><file name="mx.png" hash="479a865f838c70d654a9f818a23f9a7d"/><file name="my.png" hash="e1c0f262c141e8615f819b1cd18393d3"/><file name="mz.png" hash="159c85011041bea6bd3c68b6ba2919d7"/><file name="na.png" hash="e582101531b620fb0138c83602aab920"/><file name="nc.png" hash="ad8bf708e9db5fa423b5da123c914378"/><file name="ne.png" hash="f2eccd65605d8babcdd3af4b01215ecc"/><file name="nf.png" hash="c624a221dae959256a3e143a5147f825"/><file name="ng.png" hash="0c506131e1841cee782e4faf5cec89a9"/><file name="ni.png" hash="f43a5f35488513de58e2e5fbda9a98db"/><file name="nl.png" hash="6186550ebc77b1c51cd3ae37e78c33c1"/><file name="no.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="np.png" hash="52c16445053df13abb08cedbe82f1f28"/><file name="nr.png" hash="2fb04b74787698835b63a46cbdef6fab"/><file name="nu.png" hash="9a2f682db640f1c36ee40f296f63dc87"/><file name="nz.png" hash="179cc39a58e324df1e9a19a5eae9dca0"/><file name="om.png" hash="7b002bc8c4ab1a85c2c807ec2c4442d2"/><file name="pa.png" hash="64795009d69b36b6a4461b8159dcf356"/><file name="pe.png" hash="d1ed0462edb8cbc3220b7aca250b0437"/><file name="pf.png" hash="e59d18e48cf0924687618bbf60ea4fee"/><file name="pg.png" hash="48f68aaeefaa3b8ee7ce1f1761e6c11d"/><file name="ph.png" hash="8ff2d08518d3e1224d34467f5e24fcc2"/><file name="pk.png" hash="3bd18971ec170e6e9c461026068508da"/><file name="pl.png" hash="fad0e96c20f20be196499d26a6c74cd1"/><file name="pm.png" hash="ba41b8c349070250f814188080c2a8e8"/><file name="pn.png" hash="e4dcc857f534b48e8377ee36f63be013"/><file name="pr.png" hash="40b7fb1a4c1ebb076d40f0df5c6fd59a"/><file name="ps.png" hash="68d5f99924c67ef7d3b3aa32ff22b805"/><file name="pt.png" hash="5b8ab69ac52129bd32a3927f1b94d170"/><file name="pw.png" hash="f2bff7cd01d8eff6401e811f3de6af4f"/><file name="py.png" hash="b9d3d10b185a3144e21a452903857870"/><file name="qa.png" hash="c1dc363a27f5b5d19e24032747d7bedf"/><file name="re.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="ro.png" hash="d038c9c152c5e14f875c7b13afcd4711"/><file name="rs.png" hash="5b672e3ee63317614288615ba0774bf7"/><file name="ru.png" hash="0d31ef75adef220e73f0cb93a84a7422"/><file name="rw.png" hash="bef92348e3ea38dc462326e1ba2ff622"/><file name="sa.png" hash="605884cec6f446d418a092c0941acad5"/><file name="sb.png" hash="5e4b74f8a611742bdc3a04629e871eb4"/><file name="sc.png" hash="39650e922851e1b72165d7b016dc3b44"/><file name="scotland.png" hash="eca5bebe6e4dbc9eb858d4f58ea3f9de"/><file name="sd.png" hash="b972f90fea3369c020d258d1b860a6e0"/><file name="se.png" hash="4c01f06db23324267e2802dcade3572f"/><file name="sg.png" hash="8af65159c137a6a7ed3d1bc9c2eed18b"/><file name="sh.png" hash="e707aacb0986ad7a4a60ab8d82cf093d"/><file name="si.png" hash="d94ea79a5a8e0b6900941a1271c58191"/><file name="sj.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="sk.png" hash="5a7edc7e4492629ea5ce24b830839d32"/><file name="sl.png" hash="73904ec1cf4f0be282693c4e954e5821"/><file name="sm.png" hash="56e3c1b483bf27e619146b50ee5181bc"/><file name="sn.png" hash="501a5fab662d127ad588825cd0cd4954"/><file name="so.png" hash="4be2ffc4d06de407434a877dc03ff88b"/><file name="sr.png" hash="8f9aca73767b8e7876c72add438a6007"/><file name="st.png" hash="ab272a50ea656512c036c001fcaca61c"/><file name="sv.png" hash="c6c853766dfbab2ddd225980d3012f5c"/><file name="sy.png" hash="a0886eca3ef87d646af1514d025752f6"/><file name="sz.png" hash="e97675a21b5280b9cb4c1fc99aab004f"/><file name="tc.png" hash="50733ccc670058e9a737b652089287ca"/><file name="td.png" hash="6c8d3f6c96bcd5d34a0bae497d0e13ca"/><file name="tf.png" hash="f7ccbaa513a24eb3dc4c7860ab8007ee"/><file name="tg.png" hash="5c62720575f914ffff9fe06e2b9c1b95"/><file name="th.png" hash="af85286bf1cadae9c2c636fe83195251"/><file name="tj.png" hash="5cc548d1858d19f336ca7390b381ad07"/><file name="tk.png" hash="896fb1a34638a76361d4307668cd5414"/><file name="tl.png" hash="093e76da6759647c331ea75ef1ba9da0"/><file name="tm.png" hash="b36ce71226fad4da67764e05b800292b"/><file name="tn.png" hash="ae9947d99c48894d1d1824d624361eb9"/><file name="to.png" hash="ce868fde2d77788a669001995f4b73df"/><file name="tr.png" hash="31ea1f705854ad57c432845068bd05d3"/><file name="tt.png" hash="9ead47e1d48627b1806cd992b62c8c2b"/><file name="tv.png" hash="6fec556dd8bd936ca706b0d7cc864993"/><file name="tw.png" hash="0e41af2b3ca03d145e7665d0821931fa"/><file name="tz.png" hash="c846788492ef1188f631113bd8cced5c"/><file name="ua.png" hash="7ef7a6f5def3a4117d5c2f08e37008ff"/><file name="ug.png" hash="17e134aa84a076bf5541f5d11c616e5d"/><file name="um.png" hash="f0f12f4afaccb13ea40e15f3b81c5921"/><file name="us.png" hash="968591e0050981be9fa94bd2597afb48"/><file name="uy.png" hash="9ca8f3d9b1b1101d30a4555c997e871b"/><file name="uz.png" hash="37e4bdb64229f4624cacec7d4297214d"/><file name="va.png" hash="493642ad6bf3a344602fe006e7d44fa2"/><file name="vc.png" hash="60eec8d579d55ea0f2ec62d837c104d2"/><file name="ve.png" hash="3aee24fa5f6a85f5ce452001182fdccc"/><file name="vg.png" hash="79ef17575149f2663df51419f39feff2"/><file name="vi.png" hash="c95b9175142cd29177a9b25e16c3fc39"/><file name="vn.png" hash="638136b1a6f5dab7be6cec84fcc2cd53"/><file name="vu.png" hash="c37b82a52cdf80492ee94dc7f46256cf"/><file name="wales.png" hash="42c7ca83721190322499c94d7ff2ae26"/><file name="wf.png" hash="86cc1aa337ebb6cb74a2c3196770a7f5"/><file name="ws.png" hash="68183f64328d121a9ee77a92319bbfcd"/><file name="ye.png" hash="290e09160bb2ef42ba8129a41159eb07"/><file name="yt.png" hash="f46c7cd7b2474cbcf61c5b2007a7558f"/><file name="za.png" hash="98e1044d0ffd11afc67a79f3676ba97a"/><file name="zm.png" hash="ec69def9e77d23446867caeb4a5223b1"/><file name="zw.png" hash="e7ae0b7e3c49a5a775a9d6854912e21a"/></dir><dir name="lib"><file name="googletranslate-plugin.js" hash="3c52f201fa4eeb1b2137b7e863c66d0a"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="headerids"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="headerids.css" hash="61c7a2551ce3119dc0b428b9e80eb18c"/></dir><dir name="lib"><file name="headerids-plugin.js" hash="fa51dd72c85ff0c3af31892f2c6582bd"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="dd9bd5e3a7d01e1c09b5308c8ca34a21"/></dir><dir name="en"><file name="i18n.js" hash="712183db4b838ce7d90478722333f0f1"/></dir><file name="i18n.js" hash="5ba01bebc68d37746351bd2d87df415f"/></dir></dir><dir name="hints"><dir name="dep"><file name="jquery.poshytip.js" hash="533e1946f8b04ab676648c265e6ada1b"/></dir><dir name="i18n"><file name="de.json" hash="c4f5371347ce9ae8b079c1e4033a701f"/><file name="en.json" hash="8b82c1ca2c0cc6becbea84e3fcfbb3c3"/></dir><dir name="img"><file name="tip-twitter_arrows.gif" hash="6d6bbf94a6e54cc32efa86c958ee71ee"/></dir><file name="package.json" hash="20e479119976054c92a3e19fbe164b18"/><dir name="src"><file name="hints.css" hash="756f3b384c2dfdcafad59b682d884b06"/><file name="hints.js" hash="ec84322a697aeef808fd477dd740c524"/></dir></dir><dir name="linkbrowser"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="img"><dir name="flags"><file name="ad.png" hash="cc750844215aed20b2b05c10d6082b0d"/><file name="ae.png" hash="7391e6b6df7b181d51ffeb2a5a6d7bd4"/><file name="af.png" hash="ae7c58272ae46cde945ccc4bed00fe9e"/><file name="ag.png" hash="390af4c36d462bbf2627a1182946825a"/><file name="ai.png" hash="08cf0788a582710062140f69887300fc"/><file name="al.png" hash="7c5bc720b2cf3047c9fab800e271eec9"/><file name="am.png" hash="fd5d9d1d864ea76406afec5e11f2632f"/><file name="an.png" hash="7d7d682a9dc9f2a26a6dea1fdb87334f"/><file name="ao.png" hash="41a8aa1e11f7086d2413d8d9a777680b"/><file name="ar.png" hash="2fa357868e66f1aec9c4c4230baa45b3"/><file name="as.png" hash="96e49204e758277b6720584c4d844ecc"/><file name="at.png" hash="62bf1a5653692b34b2ee1f734a59b062"/><file name="au.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="aw.png" hash="6e82279ceb4702171f345fead7ff3e35"/><file name="ax.png" hash="27708378fcc025e375fd3c303fc1cbd6"/><file name="az.png" hash="d63f5c99e25eca9de2a97f63161f38e6"/><file name="ba.png" hash="cbb6ce46c69e14bbd8d2c8fd91680d33"/><file name="bb.png" hash="47c8aea417660e5f4e8b5a7a73f2cb18"/><file name="bd.png" hash="f02d8deb9de271cd246646872798af15"/><file name="be.png" hash="2404b88a07bdb7aef652eec0f6fce287"/><file name="bf.png" hash="cc65efa74cd7367933ecd52115204b2d"/><file name="bg.png" hash="77b2183ab10cd26ee4e79fdfc12b8621"/><file name="bh.png" hash="5bbf6106968b2517d924bac4d99b41bd"/><file name="bi.png" hash="427c72cd341f288faf0e62f03586c7ba"/><file name="bj.png" hash="67bd2e990cc7e3dc5bbae821fd38f20c"/><file name="bm.png" hash="cf195bf1921659202cf8ae899e9171d0"/><file name="bn.png" hash="4911cd2a8fae48d82f9ce124d908be3c"/><file name="bo.png" hash="151854ff619d7a44894a37b5be73f463"/><file name="br.png" hash="54c40b8a9ad7df4783d19acc05910f8e"/><file name="bs.png" hash="8b45f84cb140ec2448692187a82abfc7"/><file name="bt.png" hash="2f13e87c1868b03b0b47cd0bb60737d5"/><file name="bv.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="bw.png" hash="15d59270fb25d9e467d5a730682c5644"/><file name="by.png" hash="9e18ac464c49a91d90eaf11ad21357e9"/><file name="bz.png" hash="6e14aaafe632fe367409415545c27e73"/><file name="ca.png" hash="8618709a45d8d1c4d9d254c61bdf29b8"/><file name="catalonia.png" hash="76991f3da407b7dec2603ff86f1b9724"/><file name="cc.png" hash="ebbfb19d79975289e7a9cbb12caf0a23"/><file name="cd.png" hash="34e2a72a9cb9e873db413b020d7f1845"/><file name="cf.png" hash="252d14145f4c47374a3e0bc2bb8ae0bf"/><file name="cg.png" hash="b5bed6c75a72dc56f8eb8c559d437f59"/><file name="ch.png" hash="e67b19a7767114078cda2b3c874a5d5b"/><file name="ci.png" hash="90e8d52c215176bb04b7453b84e6fa43"/><file name="ck.png" hash="e70409285b72ac2ebd8d6ee1849e4083"/><file name="cl.png" hash="dc7b3be27813faeb454d02b55b79b9e3"/><file name="cm.png" hash="f5cdc865bf36948532707c42e716e14a"/><file name="cn.png" hash="a82ff00f39eff54062328b4474c33dbc"/><file name="co.png" hash="4bd223b284a0900cda6826ee656c5333"/><file name="cr.png" hash="cd28a01f91e89fa2b844857642fd5fb7"/><file name="cs.png" hash="4db37e9044c342fb819515d13768e058"/><file name="cu.png" hash="9d5366e9b01d5cd428429e608433d5f3"/><file name="cv.png" hash="2f4edfdcba4cdb3fa903047a235f3296"/><file name="cx.png" hash="8efc55a14b900c47f4b920c4510f192f"/><file name="cy.png" hash="f29741d622fe02759bb7a2a91eb5e2e0"/><file name="cz.png" hash="815b6d2bf60a3179c0652f0b6895bcbb"/><file name="de.png" hash="ddabae687ecae5edaaeb808d440543e6"/><file name="dj.png" hash="197e6fc2579eec8bcd7303393de841ba"/><file name="dk.png" hash="fe926c8271b35febf4a6cb0a41b111eb"/><file name="dm.png" hash="85845da8ae28e94f2885ceeb16515dd0"/><file name="do.png" hash="153949105845e18a133a4c778b3de31e"/><file name="dz.png" hash="c57f3c0951ba1525b3359fc0acbfd6b1"/><file name="ec.png" hash="0152114421e281913d0c1c148e196c92"/><file name="ee.png" hash="1cdfaaa10ff170ce19ed46339efe3af6"/><file name="eg.png" hash="09c48d3562f0dc51e2f9507704f6437f"/><file name="eh.png" hash="7dd5a46a34bee2f10532f1213a941d7b"/><file name="en.png" hash="73f2f220f6d51d249e45a04d9a03da91"/><file name="er.png" hash="481d394ac9a44f3040f7c457fc1f23a6"/><file name="es.png" hash="d6693ce2a6346b2da89ceda335554e0a"/><file name="et.png" hash="73763e46da896f3e951954ad473b4a4b"/><file name="europeanunion.png" hash="ffce5e64df4d367a20e1ef4033f60257"/><file name="fam.png" hash="0b36de21772c8d87e1d0106878b65231"/><file name="fi.png" hash="e30bd2493de78c998d1ac6c22d20146b"/><file name="fj.png" hash="7c3e78e31bb34b0fafbb0865737f8d36"/><file name="fk.png" hash="9627317fe9a5757ee8c06df7d8e8a887"/><file name="fm.png" hash="d3767ea95466571e10c7e563d456d754"/><file name="fo.png" hash="d0e6b0a3fdb4e2271b5b5057bd969966"/><file name="fr.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="ga.png" hash="972da84bdea1359d69c719a37d89d219"/><file name="gb.png" hash="0894999b108830afc0733ee7b6e08310"/><file name="gd.png" hash="95b8b79fafc6b1510978977bc8067b46"/><file name="ge.png" hash="aa40721b7a179f6c9c8f666a64063767"/><file name="gf.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="gh.png" hash="12da850e724de5ff779572bbdb8ded71"/><file name="gi.png" hash="0ca5a4db2ac11c8a5cb57701b18b8088"/><file name="gl.png" hash="073b6bf37f6eefe07145d9dd89bc9e7d"/><file name="gm.png" hash="a7d785fa41e66a5e6d82301688686f20"/><file name="gn.png" hash="acba9c908c29db8aa890b6a20265ac22"/><file name="gp.png" hash="c2dc0a2062b24f906431337186888f01"/><file name="gq.png" hash="70f64b2b38b8a21152e7446a1b3e1133"/><file name="gr.png" hash="fd9b321b80be31c027585c8992f1799f"/><file name="gs.png" hash="3b510d36dc70edd5b301da8096c9b71c"/><file name="gt.png" hash="384e9d38421a6853f9c35d48d8c49a85"/><file name="gu.png" hash="2d058f7cea364d247fee5bb53fe70390"/><file name="gw.png" hash="35eb1d9b882111ccec5f58cd778364bf"/><file name="gy.png" hash="d816170967c67a98db73cd89c56014fd"/><file name="hk.png" hash="389d0451c5c2ff40e88a93588dcbd6f1"/><file name="hm.png" hash="2fba49c88880e9ffcff947015cb7ab9c"/><file name="hn.png" hash="ac9242c256af7800a223bdcbf0798f57"/><file name="hr.png" hash="0868c49000b253d9b4f290471898c961"/><file name="ht.png" hash="b5360c0f01d574333b3bfa27c3dce856"/><file name="hu.png" hash="6c6fce8a6fd09c340964b00c5e82a8c3"/><file name="id.png" hash="fed538f9c8cd0500a6a655b55426744c"/><file name="ie.png" hash="48e42d0d1451e7b19b7b79d631a3a95c"/><file name="il.png" hash="a135fcdefe8a391b416bdb102476e12b"/><file name="in.png" hash="50d62cba8134c8c097d073646cda1b9b"/><file name="io.png" hash="38afe5a0e9817027e1f1615028aca521"/><file name="iq.png" hash="39cfe476621ad630cf3418c3234f0594"/><file name="ir.png" hash="2ac099e190547501704d309d59831d2b"/><file name="is.png" hash="7fffd4f1acabc2ccc890049e48587e8a"/><file name="it.png" hash="784f7eb333f0591558bcce9616a3c105"/><file name="jm.png" hash="a582c95e205f76277afa1571940121cd"/><file name="jo.png" hash="9dd19e8da30782b2bfb9b5a0d1c51e8b"/><file name="jp.png" hash="10958397bc7c25c746e6e122365c003c"/><file name="ke.png" hash="357152ed37ece2a45a7d57c5bf30ab3c"/><file name="kg.png" hash="192033ce169b1b107dc4aabb1f635c1c"/><file name="kh.png" hash="8658c066eb4f9d6c15efb31a821b482c"/><file name="ki.png" hash="703ced92b97cc2713038f0d50ee5a0f0"/><file name="km.png" hash="cc942486999d072021c0b3582306f834"/><file name="kn.png" hash="f096727a7612c065259c6334b61a8b6a"/><file name="kp.png" hash="0eaa3e8dc84bae9283a9969f2e360080"/><file name="kr.png" hash="cf63c15bf955e54afed8061497c7f7ea"/><file name="kw.png" hash="2e0485cdb9ca8240c9fc372e4cef0eb7"/><file name="ky.png" hash="da2c56cc2568d516031e3082713fd90c"/><file name="kz.png" hash="6d51066ba152b15fd05d761745333135"/><file name="la.png" hash="3375d707535d69248f0ab23ef80268c8"/><file name="lb.png" hash="dad5d86f0d90cca0ff4ab5332d7fd7fc"/><file name="lc.png" hash="18c05f2c79f8774bbb201593b20a06e2"/><file name="li.png" hash="822034b39b46abaa91127f8342092a32"/><file name="lk.png" hash="4e90c553f186c9776976b5b11dba4ea4"/><file name="lr.png" hash="3b6d8d720721f68ceb465249aad32b27"/><file name="ls.png" hash="c228783a0785a8541d96d5515a2a16cf"/><file name="lt.png" hash="95efec9db9d274d25fbb98eb53a9c384"/><file name="lu.png" hash="3be0b3a6096e9d77d9d7b997d464e612"/><file name="lv.png" hash="6ffae4cc65036d3de052a58e062d1ed7"/><file name="ly.png" hash="3f9d6e8cba5fd7cb8c201acfe9b7bc15"/><file name="ma.png" hash="c936b9f794def7d85fbb4c120d68684e"/><file name="mc.png" hash="63c6fd073106c8b0eb7336d9c19653a2"/><file name="md.png" hash="e414980c55af38676c5312bd330d6bb9"/><file name="me.png" hash="7a2ee5d7f1bc5ef478106a86d2c1cc09"/><file name="mg.png" hash="5aea24a18ca7e8b65770dcf2a738dd08"/><file name="mh.png" hash="948dd15821a6fe45b0df8667b6601ead"/><file name="mk.png" hash="617997cbcaafaea0035a4c0474ae16dd"/><file name="ml.png" hash="d951cb1c43a8077167b731a1aea70b6c"/><file name="mm.png" hash="82ad2104b5490e1f6adfcfa777ab8243"/><file name="mn.png" hash="4adb9a834188753731add527aa4f67f0"/><file name="mo.png" hash="6339bdf0e24c871301d1fc0207e2685f"/><file name="mp.png" hash="929b9802e7bfb58bab0330a4c6925595"/><file name="mq.png" hash="be5fb2cd33e8df13e0b2f2feffb9373f"/><file name="mr.png" hash="6c1cc8a1babe91421a38ddc573ee7cb4"/><file name="ms.png" hash="bfddbc2aae078e0aa80633f784e18526"/><file name="mt.png" hash="7a7ee4f98185ecfb6e1ba753aa6f2111"/><file name="mu.png" hash="48d5cbc23fedfbb77b06ed0e9b04522f"/><file name="mv.png" hash="24c90cfb0c883f9d1b303276c3b069e7"/><file name="mw.png" hash="1d2b8e369b2d4384d1ab4b24315fa139"/><file name="mx.png" hash="479a865f838c70d654a9f818a23f9a7d"/><file name="my.png" hash="e1c0f262c141e8615f819b1cd18393d3"/><file name="mz.png" hash="159c85011041bea6bd3c68b6ba2919d7"/><file name="na.png" hash="e582101531b620fb0138c83602aab920"/><file name="nc.png" hash="ad8bf708e9db5fa423b5da123c914378"/><file name="ne.png" hash="f2eccd65605d8babcdd3af4b01215ecc"/><file name="nf.png" hash="c624a221dae959256a3e143a5147f825"/><file name="ng.png" hash="0c506131e1841cee782e4faf5cec89a9"/><file name="ni.png" hash="f43a5f35488513de58e2e5fbda9a98db"/><file name="nl.png" hash="6186550ebc77b1c51cd3ae37e78c33c1"/><file name="no.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="np.png" hash="52c16445053df13abb08cedbe82f1f28"/><file name="nr.png" hash="2fb04b74787698835b63a46cbdef6fab"/><file name="nu.png" hash="9a2f682db640f1c36ee40f296f63dc87"/><file name="nz.png" hash="179cc39a58e324df1e9a19a5eae9dca0"/><file name="om.png" hash="7b002bc8c4ab1a85c2c807ec2c4442d2"/><file name="pa.png" hash="64795009d69b36b6a4461b8159dcf356"/><file name="pe.png" hash="d1ed0462edb8cbc3220b7aca250b0437"/><file name="pf.png" hash="e59d18e48cf0924687618bbf60ea4fee"/><file name="pg.png" hash="48f68aaeefaa3b8ee7ce1f1761e6c11d"/><file name="ph.png" hash="8ff2d08518d3e1224d34467f5e24fcc2"/><file name="pk.png" hash="3bd18971ec170e6e9c461026068508da"/><file name="pl.png" hash="fad0e96c20f20be196499d26a6c74cd1"/><file name="pm.png" hash="ba41b8c349070250f814188080c2a8e8"/><file name="pn.png" hash="e4dcc857f534b48e8377ee36f63be013"/><file name="pr.png" hash="40b7fb1a4c1ebb076d40f0df5c6fd59a"/><file name="ps.png" hash="68d5f99924c67ef7d3b3aa32ff22b805"/><file name="pt.png" hash="5b8ab69ac52129bd32a3927f1b94d170"/><file name="pw.png" hash="f2bff7cd01d8eff6401e811f3de6af4f"/><file name="py.png" hash="b9d3d10b185a3144e21a452903857870"/><file name="qa.png" hash="c1dc363a27f5b5d19e24032747d7bedf"/><file name="re.png" hash="c1cf1874c3305e5663547a48f6ad2d8c"/><file name="ro.png" hash="d038c9c152c5e14f875c7b13afcd4711"/><file name="rs.png" hash="5b672e3ee63317614288615ba0774bf7"/><file name="ru.png" hash="0d31ef75adef220e73f0cb93a84a7422"/><file name="rw.png" hash="bef92348e3ea38dc462326e1ba2ff622"/><file name="sa.png" hash="605884cec6f446d418a092c0941acad5"/><file name="sb.png" hash="5e4b74f8a611742bdc3a04629e871eb4"/><file name="sc.png" hash="39650e922851e1b72165d7b016dc3b44"/><file name="scotland.png" hash="eca5bebe6e4dbc9eb858d4f58ea3f9de"/><file name="sd.png" hash="b972f90fea3369c020d258d1b860a6e0"/><file name="se.png" hash="4c01f06db23324267e2802dcade3572f"/><file name="sg.png" hash="8af65159c137a6a7ed3d1bc9c2eed18b"/><file name="sh.png" hash="e707aacb0986ad7a4a60ab8d82cf093d"/><file name="si.png" hash="d94ea79a5a8e0b6900941a1271c58191"/><file name="sj.png" hash="559ce5baaee373db8da150a5066c1062"/><file name="sk.png" hash="5a7edc7e4492629ea5ce24b830839d32"/><file name="sl.png" hash="73904ec1cf4f0be282693c4e954e5821"/><file name="sm.png" hash="56e3c1b483bf27e619146b50ee5181bc"/><file name="sn.png" hash="501a5fab662d127ad588825cd0cd4954"/><file name="so.png" hash="4be2ffc4d06de407434a877dc03ff88b"/><file name="sr.png" hash="8f9aca73767b8e7876c72add438a6007"/><file name="st.png" hash="ab272a50ea656512c036c001fcaca61c"/><file name="sv.png" hash="c6c853766dfbab2ddd225980d3012f5c"/><file name="sy.png" hash="a0886eca3ef87d646af1514d025752f6"/><file name="sz.png" hash="e97675a21b5280b9cb4c1fc99aab004f"/><file name="tc.png" hash="50733ccc670058e9a737b652089287ca"/><file name="td.png" hash="6c8d3f6c96bcd5d34a0bae497d0e13ca"/><file name="tf.png" hash="f7ccbaa513a24eb3dc4c7860ab8007ee"/><file name="tg.png" hash="5c62720575f914ffff9fe06e2b9c1b95"/><file name="th.png" hash="af85286bf1cadae9c2c636fe83195251"/><file name="tj.png" hash="5cc548d1858d19f336ca7390b381ad07"/><file name="tk.png" hash="896fb1a34638a76361d4307668cd5414"/><file name="tl.png" hash="093e76da6759647c331ea75ef1ba9da0"/><file name="tm.png" hash="b36ce71226fad4da67764e05b800292b"/><file name="tn.png" hash="ae9947d99c48894d1d1824d624361eb9"/><file name="to.png" hash="ce868fde2d77788a669001995f4b73df"/><file name="tr.png" hash="31ea1f705854ad57c432845068bd05d3"/><file name="tt.png" hash="9ead47e1d48627b1806cd992b62c8c2b"/><file name="tv.png" hash="6fec556dd8bd936ca706b0d7cc864993"/><file name="tw.png" hash="0e41af2b3ca03d145e7665d0821931fa"/><file name="tz.png" hash="c846788492ef1188f631113bd8cced5c"/><file name="ua.png" hash="7ef7a6f5def3a4117d5c2f08e37008ff"/><file name="ug.png" hash="17e134aa84a076bf5541f5d11c616e5d"/><file name="um.png" hash="f0f12f4afaccb13ea40e15f3b81c5921"/><file name="us.png" hash="968591e0050981be9fa94bd2597afb48"/><file name="uy.png" hash="9ca8f3d9b1b1101d30a4555c997e871b"/><file name="uz.png" hash="37e4bdb64229f4624cacec7d4297214d"/><file name="va.png" hash="493642ad6bf3a344602fe006e7d44fa2"/><file name="vc.png" hash="60eec8d579d55ea0f2ec62d837c104d2"/><file name="ve.png" hash="3aee24fa5f6a85f5ce452001182fdccc"/><file name="vg.png" hash="79ef17575149f2663df51419f39feff2"/><file name="vi.png" hash="c95b9175142cd29177a9b25e16c3fc39"/><file name="vn.png" hash="638136b1a6f5dab7be6cec84fcc2cd53"/><file name="vu.png" hash="c37b82a52cdf80492ee94dc7f46256cf"/><file name="wales.png" hash="42c7ca83721190322499c94d7ff2ae26"/><file name="wf.png" hash="86cc1aa337ebb6cb74a2c3196770a7f5"/><file name="ws.png" hash="68183f64328d121a9ee77a92319bbfcd"/><file name="ye.png" hash="290e09160bb2ef42ba8129a41159eb07"/><file name="yt.png" hash="f46c7cd7b2474cbcf61c5b2007a7558f"/><file name="za.png" hash="98e1044d0ffd11afc67a79f3676ba97a"/><file name="zm.png" hash="ec69def9e77d23446867caeb4a5223b1"/><file name="zw.png" hash="e7ae0b7e3c49a5a775a9d6854912e21a"/></dir></dir><dir name="lib"><file name="linkbrowser-plugin.js" hash="fd87f19114c7d4b9be0e66f838b8faf3"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="0b35b7662d581fb73f15d57241dc712c"/></dir><dir name="fr"><file name="i18n.js" hash="c4c40a8ee7b9838b2d19c64aeb20bc02"/></dir><file name="i18n.js" hash="9c1b1bab4a0cbeeca43f0a7d2973ed6c"/><dir name="pl"><file name="i18n.js" hash="e437a8fd96d668e434e2c54335076c57"/></dir><dir name="ru"><file name="i18n.js" hash="2ed0f0820c48e216320ed394f688d692"/></dir></dir></dir><dir name="linkchecker"><dir name="demo"><file name="index.css" hash="9e891121c2afbebf93e7e60246e4ad83"/><file name="index.html" hash="a4b5ea8b3379165a7e029d5c5ca6b60f"/></dir><dir name="i18n"><file name="en.json" hash="a04e2aadf4cde44a1d7f37e1f8cdd6f3"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/><file name="proxy.php" hash="0df3a89cb6377d67b7a8369550da759d"/><dir name="src"><file name="linkchecker.css" hash="3b6655782ef891892b4b6a832fda637d"/><file name="linkchecker.js" hash="09fa73da4941bb69e15e94ed6d4057b6"/></dir></dir><dir name="listenforcer"><dir name="lib"><file name="listenforcer-plugin.js" hash="fa7c8bf0a3bd5cd8ed6cc80b4890a7f5"/></dir></dir><dir name="metaview"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="metaview.css" hash="7872517ca153db1161440259d68be1b6"/></dir><dir name="img"><file name="anchor.png" hash="b7374ee3cf18e7e75bed7d3442dcfecf"/><file name="blockquote.png" hash="5cd5fb5fe87078c1cae941dad05db2e2"/><file name="button.png" hash="7aff9916eb0a720c7c481a68870a0c1e"/><file name="caption.png" hash="d6a9ecd231fc5d6a323a6d83c6618cbd"/><file name="cite.png" hash="33980d500326461381a8aeb09276d8f4"/><file name="dd.png" hash="3c5f188bf831d0842533b5b347ed1acd"/><file name="div.png" hash="5acf97d2095a72f83029f77bd1dee2a7"/><file name="dl.png" hash="5373ef01a0c1fdfbe518be953b6d6546"/><file name="dt.png" hash="f990c191b6b040108adb41f7217e161b"/><file name="h1.png" hash="b3782df976443f4a0086893d4da991d2"/><file name="h2.png" hash="6e4bfdbfc57415b8c650347bd1704154"/><file name="h3.png" hash="8915729f6e8b98436f9a1a0723bc2d6a"/><file name="h4.png" hash="03bfccf7f8d474142bafeabf86b4732f"/><file name="h5.png" hash="c0f5d3d29f3cf277960182af39f5028a"/><file name="h6.png" hash="f19136291f975688a3784353ac0fc83c"/><file name="icon_cite.png" hash="8e79ff67005c66bcd6b1f14df213073b"/><file name="p.png" hash="afe885e1e018a8aecee52a08e605c565"/><file name="pre.png" hash="7ad78e30f68e5007ed479516f583e10f"/><file name="table.png" hash="dd437067595683daf8604a2da0135ef1"/><file name="td.png" hash="3c521695391fd4362ebfceaa2dbe879e"/><file name="th.png" hash="80d9f15fe860ddfbee8789d1e764ec48"/></dir><dir name="lib"><file name="metaview-plugin.js" hash="52dd9c630cde4b8e9dc8636835da7539"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="37becb02812c958c05a8d1e37bbc48f2"/></dir><file name="de.json" hash="da83f1ee8d94a5d126d71a89ba5ee1a2"/><dir name="en"><file name="i18n.js" hash="fdf9627e82d6185f945f081874c37834"/></dir><file name="en.json" hash="c99f6a248ca7be514520b612b1105347"/><file name="i18n.js" hash="f51b1b72cace2cd80df94e235153ec40"/></dir></dir><dir name="numerated-headers"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="numerated-headers.css" hash="47d8c6f3f407d0af63ee2285ea27fef7"/></dir><dir name="demo"><file name="index.css" hash="32059e4d2a4b889370e39ad7cc4f2a4e"/><file name="index.html" hash="5d1a1345e5c047d5db99b8776529dcb1"/><dir name="js"><file name="aloha-config.js" hash="805eb7f2786ae00e8231bfac3846a2e8"/></dir></dir><dir name="img"><file name="headers.png" hash="7630590f7ea5d00fec556943a2183f5a"/></dir><dir name="lib"><file name="numerated-headers-plugin.js" hash="aa2fe8eec580885ab4c10f6c02385254"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="62d6a5c04f12a2ae2479ca468ad90778"/></dir><dir name="en"><file name="i18n.js" hash="712183db4b838ce7d90478722333f0f1"/></dir><file name="i18n.js" hash="9e9897258fa3ab691cc7ca8f901ed54a"/></dir></dir><dir name="profiler"><dir name="css"><file name="profiler.css" hash="2ca2d9c39d9b15824c41456ca24ba1b1"/></dir><dir name="lib"><file name="profiler-plugin.js" hash="edd509d9a5b67958eb52ef4d7fbbcb65"/></dir></dir><dir name="ribbon"><file name="LICENSE.md" hash="e3ec45ebf5c494127af801d4850a1daf"/><file name="README.md" hash="1637ac1b809dd57be434e79010ef4972"/><dir name="css"><file name="ribbon.css" hash="e9d735353947297e65b75b9d2ef4db2f"/></dir><dir name="lib"><file name="ribbon-plugin.js" hash="9d5f9cfe70ad430591f28c2ee9c2ae29"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="speak"><file name="README" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="speak.css" hash="8d4afbb4c5b726ac0d40adf33e8ba581"/></dir><dir name="img"><file name="speaker.png" hash="9d3c09c35a5ccbc0b363612abed94b5b"/></dir><dir name="lib"><file name="speak-plugin.js" hash="132b6c16592aed735ef288daeb0fdf03"/><file name="speak.js" hash="695dd170d4216eddb77edd2594ef585a"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/></dir><dir name="toc"><dir name="i18n"><file name="de.json" hash="313608ba11e30d2dcdfa205baeb77aec"/><file name="en.json" hash="1c7c7c34adff34cee45f1c073301d529"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/><dir name="src"><file name="toc.js" hash="3278aa8b4e68ba8060d80b9f072b9628"/></dir></dir><dir name="vie"><file name="LICENSE" hash="94d261f8b69f0bc57ece9e7e2c2ef614"/><file name="README.markdown" hash="0337bcb88f08635c37815294d6931d3d"/><dir name="demo"><file name="index.html" hash="b4bdc507a87514358bea9c7c29fd8d4a"/></dir><dir name="img"><file name="cms-decoupled-communications.png" hash="e3c73d2d62a171d1561b40f0e7edc762"/></dir><file name="package.json" hash="c443b04d0fc26b0a5a4573a78e0082a1"/><dir name="src"><file name="backbone-min.js" hash="5d7dc1cbe7f0b177cf66187937001fb9"/><file name="underscore-min.js" hash="178201c529411d163a6801134d2d45fc"/><file name="vie-aloha.js" hash="35e4377798770a44035c1c370bbda464"/><file name="vie-collectionmanager.js" hash="bff7ab42ade6f9ecafad553505224a3d"/><file name="vie-containermanager.js" hash="7ae8c63fffd549125d4d2859bab6d531"/><file name="vie.js" hash="f5e19b32939e655d6959a6743ddd12f4"/></dir></dir><dir name="wai-lang"><file name="README.md" hash="c40bb8969ac220ccde8fd6d06db4858c"/><dir name="css"><file name="wai-lang.css" hash="f16081c94638324b35488ee0791925c2"/></dir><dir name="img"><file name="button.png" hash="f41f65165ae81e7313633719a9c970ba"/><file name="remove-button.png" hash="a090a788e86b2569db2d934ddf31517f"/></dir><dir name="lib"><file name="language-codes.json" hash="239b1391054204eae80aab04f1a50c45"/><file name="languages.js" hash="20a6879ef651bff364ad01f6e208e632"/><file name="wai-lang-plugin.js" hash="ce68feae1848a874c85bd8a520654281"/></dir><dir name="nls"><dir name="de"><file name="i18n.js" hash="e463f7950e2bf46a9c9c3455f1decc7d"/></dir><dir name="en"><file name="i18n.js" hash="3edf3f2a6de610fe791af94c1b001988"/></dir><file name="i18n.js" hash="990aa79711d83c3338abd0cb99b0982c"/></dir></dir><dir name="zemanta"><file name="README" hash="4bbea2da0a10dd744ed92d23ea9ab24d"/><dir name="css"><file name="zemanta-widget-alohaeditor.css" hash="3fb224fa4502670cb6819a36532b2fa2"/></dir><dir name="img"><file name="zemanta-mini-logo.png" hash="4ba9ab70cfe3c186e0fcdd79e98f2966"/></dir><dir name="lib"><file name="zemanta-plugin.js" hash="6ac75056a22ebcce6d01d1b0f27af823"/></dir><dir name="nls"><file name="i18n.js" hash="0e12820f2627a1d13ea99eae1516bf0e"/></dir></dir></dir></dir></dir><file name="counter.js" hash="608fa7304556810b940c9fdd1ecfa0d9"/><dir name="css"><file name="default.css" hash="43462f50f1b805e3b90768ee235fadf8"/><file name="dropdown.css" hash="4f78db1ab85c81e691b473a6569a743f"/><file name="dropdownx.css" hash="d82e0e673faadd689f28e1247b73806c"/><file name="fonts.css" hash="00b04c27359b281fb52ddee901de12ea"/><file name="login.css" hash="7dd72559eb6dc10f18a697fd46eb9b55"/><file name="styles.css" hash="0f3912a41697368d213df0f573258eb7"/></dir><file name="dropdown.js" hash="75fdd98424a67d977915b48e9b596e51"/><file name="dropdownx.js" hash="ace4d0441d7d622e3cf72589f8c9b7e1"/><file name="editor.htm" hash="2821bdfc04c716841e71f0a08933a832"/><file name="editor.htm.old" hash="b2b877e04666b89199603a27a215727e"/><file name="jquery-ui-1.8.15.custom.min.js" hash="9df7a1a861cc61f4b8c1ac1c390c37fa"/><file name="jquery.js" hash="d1477ad1c080ff5ef8f090d0df2314db"/><file name="jquery.layout.js" hash="f6523f9daae58dbd3397b139550f5553"/><file name="jquery.sparkline.min.js" hash="cc8ec320305350400fbdc8e55fefd8c5"/><file name="messagebox.js" hash="b4773c926a71bcadc7e8fff8b20de49e"/><dir name="raphael"><file name="g.pie.js" hash="f249e49cd2ba852dfa517bef5ef55434"/><file name="g.raphael.js" hash="bae4fc73e97b4b979d8619e1601fe9c4"/><file name="gauge.js" hash="dcaacf3e59fb0fe2f32ccb211d61198e"/><file name="linear.js" hash="12883bea5f0067dbe6c8fdb370c6544d"/><file name="pie.js" hash="da74f7469d37116695c4a9ef47eb345d"/><file name="popup.js" hash="30d0c7ae59e65875785f66979a689b99"/><file name="raphael.js" hash="bb02bf5b8b4d9c0dbf95fa725c75c755"/></dir><file name="world.js" hash="fc8e780b55cd90e25744918e2a817e99"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>