Fontis_Australia - Version 2.2.4

Version Notes

Currently active are modules for BPAY, direct deposit, Australia Post, the addition of regions and postcodes, and the addition of ABN and phone number to the general configuration values (although currently not in use).

Download this release

Release Info

Developer Chris Norton
Extension Fontis_Australia
Version 2.2.4
Comparing to
See all releases


Code changes from version 2.0.7 to 2.2.4

Files changed (43) hide show
  1. app/code/community/Fontis/Australia/Block/Autocomplete.php +29 -20
  2. app/code/community/Fontis/Australia/Block/Getprice.php +87 -0
  3. app/code/community/Fontis/Australia/Block/Googleproducts.php +88 -0
  4. app/code/community/Fontis/Australia/Block/Myshopping.php +10 -6
  5. app/code/community/Fontis/Australia/Block/Shopbot.php +8 -4
  6. app/code/community/Fontis/Australia/Block/Shoppingdotcom.php +86 -0
  7. app/code/community/Fontis/Australia/Model/Child.php +100 -0
  8. app/code/community/Fontis/Australia/Model/Config/Condition.php +13 -0
  9. app/code/community/Fontis/Australia/Model/FeedCronBase.php +281 -0
  10. app/code/community/Fontis/Australia/Model/Getprice.php +69 -0
  11. app/code/community/Fontis/Australia/Model/Getprice/Cron.php +69 -175
  12. app/code/community/Fontis/Australia/Model/Googleproducts.php +61 -0
  13. app/code/community/Fontis/Australia/Model/Googleproducts/Cron.php +180 -0
  14. app/code/community/Fontis/Australia/Model/Myshopping.php +57 -0
  15. app/code/community/Fontis/Australia/Model/Myshopping/Cron.php +52 -138
  16. app/code/community/Fontis/Australia/Model/Mysql4/Shipping/Carrier/Eparcel.php +53 -6
  17. app/code/community/Fontis/Australia/Model/Payment/Directdeposit.php +7 -4
  18. app/code/community/Fontis/Australia/Model/Shipping/Carrier/Australiapost.php +259 -287
  19. app/code/community/Fontis/Australia/Model/Shipping/Carrier/Eparcel.php +55 -1
  20. app/code/community/Fontis/Australia/Model/Shipping/Carrier/Eparcel/Export/Abstract.php +164 -0
  21. app/code/community/Fontis/Australia/Model/Shipping/Carrier/Eparcel/Export/Csv.php +303 -0
  22. app/code/community/Fontis/Australia/Model/Shipping/Carrier/Eparcel/Export/Exception.php +7 -0
  23. app/{design/frontend/default/default/template/fontis/australia/payment/bpay/form.phtml → code/community/Fontis/Australia/Model/Shipping/Config/Shippingmethods.php} +20 -12
  24. app/{design/frontend/default/default/template/fontis/australia/payment/bpay/info.phtml → code/community/Fontis/Australia/Model/Shopbot.php} +19 -7
  25. app/code/community/Fontis/Australia/Model/Shopbot/Cron.php +44 -149
  26. app/code/community/Fontis/Australia/Model/Shoppingdotcom.php +104 -0
  27. app/code/community/Fontis/Australia/Model/Shoppingdotcom/Cron.php +89 -0
  28. app/code/community/Fontis/Australia/controllers/EparcelController.php +42 -0
  29. app/code/community/Fontis/Australia/etc/config.xml +159 -120
  30. app/code/community/Fontis/Australia/etc/system.xml +350 -10
  31. app/code/community/Fontis/Australia/sql/australia_setup/mysql4-install-0.7.0.php +10 -1
  32. app/code/community/Fontis/Australia/sql/australia_setup/mysql4-install-2.2.0.php +131 -0
  33. app/code/community/Fontis/Australia/sql/australia_setup/mysql4-install-2.2.2.php +140 -0
  34. app/{design/frontend/default/default/template/fontis/australia/payment/directdeposit/info.phtml → code/community/Fontis/Australia/sql/australia_setup/mysql4-upgrade-2.1.0-2.2.0.php} +8 -9
  35. app/code/community/Fontis/Australia/sql/australia_setup/mysql4-upgrade-2.2.1-2.2.2.php +31 -0
  36. app/code/community/Fontis/Australia/sql/australia_setup/postcodes.csv +16933 -0
  37. app/design/frontend/default/default/layout/fontis_australia.xml +0 -45
  38. app/design/frontend/default/default/template/fontis/australia/payment/bpay/success.phtml +0 -40
  39. app/design/frontend/default/default/template/fontis/australia/payment/directdeposit/form.phtml +0 -41
  40. app/design/frontend/default/default/template/fontis/australia/payment/directdeposit/success.phtml +0 -38
  41. app/design/frontend/default/default/template/fontis/australia/postcode-checkout.phtml +0 -84
  42. app/design/frontend/default/default/template/fontis/australia/postcode.phtml +0 -55
  43. package.xml +7 -7
app/code/community/Fontis/Australia/Block/Autocomplete.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * Fontis Australia Extension
4
  *
@@ -24,34 +25,42 @@
24
  */
25
  class Fontis_Australia_Block_Autocomplete extends Mage_Core_Block_Abstract
26
  {
 
27
  protected function _toHtml()
28
  {
29
  $html = '';
30
 
31
- if (!$this->_beforeToHtml()) {
32
- return $html;
33
- }
34
-
35
- // Get the text that the customer has entered as a query.
36
- $query = $this->helper('australia')->getQueryText();
37
- $country = $this->helper('australia')->getQueryCountry();
38
- if($country != "AU") return $html;
39
-
40
- $conn = Mage::getModel('Core/Mysql4_Config')->getReadConnection();
41
- $resultArray = $conn->fetchAll('SELECT au.*, dcr.region_id FROM au_postcode AS au
42
- INNER JOIN directory_country_region AS dcr ON au.region_code = dcr.code
43
- WHERE city LIKE \'%' . $query . '%\' ORDER BY city, region_code');
44
-
45
- $html = '<ul>';
46
- $counter = 0;
47
- foreach ($resultArray as $item) {
48
- $html .= '<li class="'.((++$counter)%2?'odd':'even').'" id="region-' . $item['region_id'] . '-postcode-' . $item['postcode'] . '">';
 
 
 
 
 
 
49
  $html .= $item['city'] . '<span class="informal"> ' . $item['region_code'] . ', ' . $item['postcode'] . '</span>';
50
  $html .= '</li>';
51
- }
52
 
53
- $html.= '</ul>';
54
 
55
  return $html;
56
  }
 
57
  }
1
  <?php
2
+
3
  /**
4
  * Fontis Australia Extension
5
  *
25
  */
26
  class Fontis_Australia_Block_Autocomplete extends Mage_Core_Block_Abstract
27
  {
28
+
29
  protected function _toHtml()
30
  {
31
  $html = '';
32
 
33
+ if (!$this->_beforeToHtml()) {
34
+ return $html;
35
+ }
36
+
37
+ // Get the text that the customer has entered as a query.
38
+ $query = $this->helper('australia')->getQueryText();
39
+ $country = $this->helper('australia')->getQueryCountry();
40
+ if ($country != "AU") {
41
+ return $html;
42
+ }
43
+
44
+ /* @var $conn Varien_Db_Adapter_Pdo_Mysql */
45
+ $conn = Mage::getSingleton('core/resource')->getConnection('australia_read');
46
+ $resultArray = $conn->fetchAll(
47
+ 'SELECT au.*, dcr.region_id FROM ' . Mage::getSingleton('core/resource')->getTableName('australia_postcode') . ' AS au
48
+ INNER JOIN ' . Mage::getSingleton('core/resource')->getTableName('directory_country_region') . ' AS dcr ON au.region_code = dcr.code
49
+ WHERE city LIKE :city ORDER BY city, region_code',
50
+ array('city' => $query)
51
+ );
52
+
53
+ $html = '<ul>';
54
+ $counter = 0;
55
+ foreach ($resultArray as $item) {
56
+ $html .= '<li class="' . ((++$counter) % 2 ? 'odd' : 'even') . '" id="region-' . $item['region_id'] . '-postcode-' . $item['postcode'] . '">';
57
  $html .= $item['city'] . '<span class="informal"> ' . $item['region_code'] . ', ' . $item['postcode'] . '</span>';
58
  $html .= '</li>';
59
+ }
60
 
61
+ $html.= '</ul>';
62
 
63
  return $html;
64
  }
65
+
66
  }
app/code/community/Fontis/Australia/Block/Getprice.php ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com and you will be sent a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Tom Greenaway
18
+ * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Fontis_Australia_Block_Getprice extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract
22
+ {
23
+ protected $magentoOptions = array('final_price' => 'final_price', 'product_num' => 'product_num', "link" => "link", "category" => "category", "image_url" => "image_url", "currency" => "currency");
24
+
25
+ public function __construct()
26
+ {
27
+ $this->addColumn('magento', array(
28
+ 'label' => Mage::helper('adminhtml')->__('Magento product attribute'),
29
+ 'size' => 28,
30
+ ));
31
+ $this->addColumn('xmlfeed', array(
32
+ 'label' => Mage::helper('adminhtml')->__('Getprice feed tag'),
33
+ 'size' => 28
34
+ ));
35
+ $this->_addAfter = false;
36
+ $this->_addButtonLabel = Mage::helper('adminhtml')->__('Add linked attribute');
37
+
38
+ parent::__construct();
39
+ $this->setTemplate('fontis/australia/system/config/form/field/array_dropdown.phtml');
40
+
41
+ // product options
42
+ $eav_config_model = Mage::getModel('eav/config');
43
+ $attributes = $eav_config_model->getEntityAttributeCodes('catalog_product');
44
+
45
+ foreach($attributes as $att_code)
46
+ {
47
+ $attribute = $eav_config_model->getAttribute('catalog_product', $att_code);
48
+ Mage::log($attribute);
49
+
50
+ if ($att_code != '')
51
+ {
52
+ $this->magentoOptions[$att_code] = $att_code;
53
+ }
54
+ }
55
+ asort($this->magentoOptions);
56
+ }
57
+
58
+ protected function _renderCellTemplate($columnName)
59
+ {
60
+ if (empty($this->_columns[$columnName])) {
61
+ throw new Exception('Wrong column name specified.');
62
+ }
63
+ $column = $this->_columns[$columnName];
64
+ $inputName = $this->getElement()->getName() . '[#{_id}][' . $columnName . ']';
65
+
66
+ if($columnName == 'magento')
67
+ {
68
+ $rendered = '<select name="'.$inputName.'">';
69
+ foreach($this->magentoOptions as $att => $name)
70
+ {
71
+ $rendered .= '<option value="'.$att.'">'.$name.'</option>';
72
+ }
73
+ $rendered .= '</select>';
74
+ }
75
+ else
76
+ {
77
+ $rendered = '<select name="' . $inputName . '">';
78
+ $model = Mage::getModel('australia/getprice');
79
+ foreach ($model->available_fields as $field) {
80
+ $rendered .= '<option value="'.$field.'">'.str_replace("_", " ", $field)."</option>";
81
+ }
82
+ $rendered .= '</select>';
83
+ }
84
+
85
+ return $rendered;
86
+ }
87
+ }
app/code/community/Fontis/Australia/Block/Googleproducts.php ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com and you will be sent a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Peter Spiller
18
+ * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Fontis_Australia_Block_Googleproducts extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract
22
+ {
23
+ // Map in some of the values not normally visible
24
+ protected $magentoOptions = array('is_salable' => 'is_saleable', 'manufacturer_name' => 'manufacturer_name', 'final_price' => 'final_price');
25
+
26
+ public function __construct()
27
+ {
28
+ $this->addColumn('magento', array(
29
+ 'label' => Mage::helper('adminhtml')->__('Magento product attribute'),
30
+ 'size' => 28,
31
+ ));
32
+ $this->addColumn('xmlfeed', array(
33
+ 'label' => Mage::helper('adminhtml')->__('Google Products feed tag'),
34
+ 'size' => 28
35
+ ));
36
+ $this->_addAfter = false;
37
+ $this->_addButtonLabel = Mage::helper('adminhtml')->__('Add linked attribute');
38
+
39
+ parent::__construct();
40
+ $this->setTemplate('fontis/australia/system/config/form/field/array_dropdown.phtml');
41
+
42
+ // product options
43
+ $eav_config_model = Mage::getModel('eav/config');
44
+ $attributes = $eav_config_model->getEntityAttributeCodes('catalog_product');
45
+
46
+ foreach($attributes as $att_code)
47
+ {
48
+ $attribute = $eav_config_model->getAttribute('catalog_product', $att_code);
49
+ if ($att_code != '')
50
+ {
51
+ $this->magentoOptions[$att_code] = $att_code;
52
+ }
53
+ }
54
+ asort($this->magentoOptions);
55
+ }
56
+
57
+ protected function _renderCellTemplate($columnName)
58
+ {
59
+ if (empty($this->_columns[$columnName])) {
60
+ throw new Exception('Wrong column name specified.');
61
+ }
62
+ $column = $this->_columns[$columnName];
63
+ $inputName = $this->getElement()->getName() . '[#{_id}][' . $columnName . ']';
64
+
65
+ if($columnName == 'magento')
66
+ {
67
+ $rendered = '<select name="'.$inputName.'">';
68
+ foreach($this->magentoOptions as $att => $name)
69
+ {
70
+ $rendered .= '<option value="'.$att.'">'.$name.'</option>';
71
+ }
72
+ $rendered .= '</select>';
73
+ }
74
+ else
75
+ {
76
+ $rendered = '<select name="' . $inputName . '">';
77
+ $model = Mage::getModel('australia/googleproducts');
78
+ foreach ($model->available_fields as $field) {
79
+ $rendered .= '<option value="'.$field.'">'.str_replace("_", " ", $field)."</option>";
80
+ }
81
+ $rendered .= '</select>';
82
+ }
83
+
84
+ return $rendered;
85
+ }
86
+
87
+
88
+ }
app/code/community/Fontis/Australia/Block/Myshopping.php CHANGED
@@ -20,7 +20,7 @@
20
  */
21
  class Fontis_Australia_Block_Myshopping extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract
22
  {
23
- protected $magentoOptions;
24
 
25
  public function __construct()
26
  {
@@ -29,7 +29,7 @@ class Fontis_Australia_Block_Myshopping extends Mage_Adminhtml_Block_System_Conf
29
  'size' => 28,
30
  ));
31
  $this->addColumn('xmlfeed', array(
32
- 'label' => Mage::helper('adminhtml')->__('Shopbot feed tag'),
33
  'size' => 28
34
  ));
35
  $this->_addAfter = false;
@@ -47,8 +47,7 @@ class Fontis_Australia_Block_Myshopping extends Mage_Adminhtml_Block_System_Conf
47
  $attribute = $eav_config_model->getAttribute('catalog_product', $att_code);
48
  Mage::log($attribute);
49
 
50
- if ($att_code != ''
51
- )
52
  {
53
  $this->magentoOptions[$att_code] = $att_code;
54
  }
@@ -75,9 +74,14 @@ class Fontis_Australia_Block_Myshopping extends Mage_Adminhtml_Block_System_Conf
75
  }
76
  else
77
  {
78
- return '<input type="text" name="' . $inputName . '" value="#{' . $columnName . '}" ' . ($column['size'] ? 'size="' . $column['size'] . '"' : '') . '/>';
 
 
 
 
 
79
  }
80
-
81
  return $rendered;
82
  }
83
  }
20
  */
21
  class Fontis_Australia_Block_Myshopping extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract
22
  {
23
+ protected $magentoOptions = array('instock' => 'instock', 'brand' => 'brand', 'final_price' => 'final_price', 'product_id' => 'product_id', "category" => "category", "link" => "link", "image_url" => "image_url");
24
 
25
  public function __construct()
26
  {
29
  'size' => 28,
30
  ));
31
  $this->addColumn('xmlfeed', array(
32
+ 'label' => Mage::helper('adminhtml')->__('Myshopping feed tag'),
33
  'size' => 28
34
  ));
35
  $this->_addAfter = false;
47
  $attribute = $eav_config_model->getAttribute('catalog_product', $att_code);
48
  Mage::log($attribute);
49
 
50
+ if ($att_code != '')
 
51
  {
52
  $this->magentoOptions[$att_code] = $att_code;
53
  }
74
  }
75
  else
76
  {
77
+ $rendered = '<select name="' . $inputName . '">';
78
+ $model = Mage::getModel('australia/myshopping');
79
+ foreach ($model->available_fields as $field) {
80
+ $rendered .= '<option value="'.$field.'">'.str_replace("_", " ", $field)."</option>";
81
+ }
82
+ $rendered .= '</select>';
83
  }
84
+
85
  return $rendered;
86
  }
87
  }
app/code/community/Fontis/Australia/Block/Shopbot.php CHANGED
@@ -20,7 +20,7 @@
20
  */
21
  class Fontis_Australia_Block_Shopbot extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract
22
  {
23
- protected $magentoOptions;
24
 
25
  public function __construct()
26
  {
@@ -52,8 +52,7 @@ class Fontis_Australia_Block_Shopbot extends Mage_Adminhtml_Block_System_Config_
52
  $attribute = $eav_config_model->getAttribute('catalog_product', $att_code);
53
  Mage::log($attribute);
54
 
55
- if ($att_code != ''
56
- )
57
  {
58
  $this->magentoOptions[$att_code] = $att_code;
59
  }
@@ -80,7 +79,12 @@ class Fontis_Australia_Block_Shopbot extends Mage_Adminhtml_Block_System_Config_
80
  }
81
  else
82
  {
83
- return '<input type="text" name="' . $inputName . '" value="#{' . $columnName . '}" ' . ($column['size'] ? 'size="' . $column['size'] . '"' : '') . '/>';
 
 
 
 
 
84
  }
85
 
86
  return $rendered;
20
  */
21
  class Fontis_Australia_Block_Shopbot extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract
22
  {
23
+ protected $magentoOptions = array("final_price" => "final_price", "link" => "link", "availability" => "availability", "price" => "price");
24
 
25
  public function __construct()
26
  {
52
  $attribute = $eav_config_model->getAttribute('catalog_product', $att_code);
53
  Mage::log($attribute);
54
 
55
+ if ($att_code != '')
 
56
  {
57
  $this->magentoOptions[$att_code] = $att_code;
58
  }
79
  }
80
  else
81
  {
82
+ $rendered = '<select name="' . $inputName . '">';
83
+ $model = Mage::getModel('australia/shopbot');
84
+ foreach ($model->available_fields as $field) {
85
+ $rendered .= '<option value="'.$field.'">'.str_replace("_", " ", $field)."</option>";
86
+ }
87
+ $rendered .= '</select>';
88
  }
89
 
90
  return $rendered;
app/code/community/Fontis/Australia/Block/Shoppingdotcom.php ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com and you will be sent a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Peter Spiller
18
+ * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Fontis_Australia_Block_Shoppingdotcom extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract
22
+ {
23
+ // Map in some of the values not normally visible
24
+ protected $magentoOptions = array('is_salable' => 'is_saleable', 'manufacturer_name' => 'manufacturer_name', 'final_price' => 'final_price');
25
+
26
+ public function __construct()
27
+ {
28
+ $this->addColumn('magento', array(
29
+ 'label' => Mage::helper('adminhtml')->__('Magento product attribute'),
30
+ 'size' => 28,
31
+ ));
32
+ $this->addColumn('xmlfeed', array(
33
+ 'label' => Mage::helper('adminhtml')->__('Shopping.com feed tag'),
34
+ 'size' => 28
35
+ ));
36
+ $this->_addAfter = false;
37
+ $this->_addButtonLabel = Mage::helper('adminhtml')->__('Add linked attribute');
38
+
39
+ parent::__construct();
40
+ $this->setTemplate('fontis/australia/system/config/form/field/array_dropdown.phtml');
41
+
42
+ // product options
43
+ $eav_config_model = Mage::getModel('eav/config');
44
+ $attributes = $eav_config_model->getEntityAttributeCodes('catalog_product');
45
+
46
+ foreach($attributes as $att_code)
47
+ {
48
+ $attribute = $eav_config_model->getAttribute('catalog_product', $att_code);
49
+ if ($att_code != '')
50
+ {
51
+ $this->magentoOptions[$att_code] = $att_code;
52
+ }
53
+ }
54
+ asort($this->magentoOptions);
55
+ }
56
+
57
+ protected function _renderCellTemplate($columnName)
58
+ {
59
+ if (empty($this->_columns[$columnName])) {
60
+ throw new Exception('Wrong column name specified.');
61
+ }
62
+ $column = $this->_columns[$columnName];
63
+ $inputName = $this->getElement()->getName() . '[#{_id}][' . $columnName . ']';
64
+
65
+ if($columnName == 'magento')
66
+ {
67
+ $rendered = '<select name="'.$inputName.'">';
68
+ foreach($this->magentoOptions as $att => $name)
69
+ {
70
+ $rendered .= '<option value="'.$att.'">'.$name.'</option>';
71
+ }
72
+ $rendered .= '</select>';
73
+ }
74
+ else
75
+ {
76
+ $rendered = '<select name="' . $inputName . '">';
77
+ $model = Mage::getModel('australia/shoppingdotcom');
78
+ foreach ($model->available_fields as $field) {
79
+ $rendered .= '<option value="'.$field.'">'.str_replace("_", " ", $field)."</option>";
80
+ }
81
+ $rendered .= '</select>';
82
+ }
83
+
84
+ return $rendered;
85
+ }
86
+ }
app/code/community/Fontis/Australia/Model/Child.php ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com and you will be sent a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Peter Spiller
18
+ * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ $input = "";
23
+ do {
24
+ $input .= fgets(STDIN);
25
+ } while (!feof(STDIN));
26
+
27
+ $config = json_decode($input);
28
+
29
+ errlog("Child got: ".$input);
30
+
31
+ // Start-up Magento stack
32
+ require_once $config->magento_path . '/app/Mage.php';
33
+ // Copied from the original - apparently it fixes problems on some flavours of hosting...
34
+ // TODO: Explain why/what?
35
+ $_SERVER['SCRIPT_NAME'] = $_SERVER['PHP_SELF'] = $config->magento_path . "/app/code/community/Fontis/Australia/Model/Child.php";
36
+
37
+ $store_id = $config->store_id;
38
+ Mage::app($store_id);
39
+
40
+
41
+ $products = array();
42
+ foreach($config->entity_ids as $entity_id) {
43
+ errlog("Processing $entity_id");
44
+ // Load product, tax helper and generate final price information
45
+ $product = Mage::getModel('catalog/product')->load($entity_id);
46
+
47
+ //Collect basic attributes
48
+ $product_data = $product->getData();
49
+
50
+ // Add generated attributes
51
+ $tax = Mage::helper('tax');
52
+ $final_price = $tax->getPrice($product, $product->getFinalPrice(), true);
53
+ $product_data['final_price'] = $final_price;
54
+ $product_data['manufacturer_name'] = $product->getResource()->getAttribute('manufacturer')->getFrontend()->getValue($product);
55
+ $product_data['link'] = str_replace("Child.php/", "", $product->getProductUrl());
56
+ $product_data['sku'] = $product->getSku();
57
+ $product_data['image_url'] = (string)Mage::helper('catalog/image')->init($product, 'image');
58
+ $product_data['instock'] = $product->isSaleable() ? "Y" : "N"; // myshopping
59
+ $product_data['availability'] = $product->isSaleable() ? "yes" : "no"; // shopbot
60
+ $product_data['product_id'] = $product->getId();
61
+ $product_data['product_num'] = $product->getEntityId();
62
+ $product_data['brand'] = $product_data['manufacturer_name'] == "No" ? "Generic" : $product_data['manufacturer_name']; // myshopping
63
+ $product_data['currency'] = Mage::getStoreConfig('fontis_feeds/'. $config->config_path .'/currency');
64
+
65
+ if (Mage::getStoreConfig('fontis_feeds/'. $config->config_path .'/manufacturer')) {
66
+ if ($product_data['manufacturer_name'] != "No") {
67
+ $product_data['manufacturer'] = $product_data['manufacturer_name']; // getprice
68
+ }
69
+ }
70
+
71
+ if ($config->generate_categories) {
72
+ $category_found = false;
73
+ foreach($product->getCategoryCollection() as $c) {
74
+ $children = $c->getData('children_count');
75
+ if ($children <= 0) {
76
+ $product_data['category'] = utf8_encode($c->getName());
77
+
78
+ $loaded_categories = Mage::getModel('catalog/category')
79
+ ->getCollection()
80
+ ->addIdFilter(array($c->getId()))
81
+ ->addAttributeToSelect(array('name'), 'inner')->load();
82
+
83
+ foreach($loaded_categories as $loaded_category) {
84
+ $product_data['category'] = utf8_encode($loaded_category->getName());
85
+ }
86
+ $category_found = true;
87
+ }
88
+ }
89
+ if (!$category_found) {
90
+ $product_data['category'] = utf8_encode(Mage::getStoreConfig('fontis_feeds/'. $config->config_path .'/defaultcategory'));
91
+ }
92
+ }
93
+
94
+ $products[] = $product_data;
95
+ }
96
+ fwrite (STDOUT, json_encode($products));
97
+
98
+ function errlog($mesg) {
99
+ fwrite (STDERR, "Child: ".$mesg."\n");
100
+ }
app/code/community/Fontis/Australia/Model/Config/Condition.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Fontis_Australia_Model_Config_Condition
4
+ {
5
+ public function toOptionArray()
6
+ {
7
+ return array(
8
+ array('value' => 'new', 'label' => 'New'),
9
+ array('value' => 'used', 'label' => 'Used'),
10
+ array('value' => 'refurbished', 'label' => 'Refurbished'),
11
+ );
12
+ }
13
+ }
app/code/community/Fontis/Australia/Model/FeedCronBase.php ADDED
@@ -0,0 +1,281 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com and you will be sent a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Peter Spiller
18
+ * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ abstract class Fontis_Australia_Model_FeedCronBase {
23
+ protected $BATCH_SIZE = 100;
24
+ protected $accumulator;
25
+ protected $product_category_accumulator;
26
+ protected $store;
27
+ protected $required_fields = array();
28
+ protected $generate_product_category = false;
29
+
30
+ protected function getPath() {
31
+ $path = "";
32
+ $output_path = Mage::getStoreConfig('fontis_feeds/'.$this->config_path.'/output');
33
+
34
+ if (substr($output_path, 0, 1) == "/") {
35
+ $path = $output_path . '/';
36
+ } else {
37
+ $path = $this->info("base_dir") . '/' . $output_path . '/';
38
+ }
39
+
40
+ return str_replace('//', '/', $path);
41
+ }
42
+
43
+ public function generateFeed() {
44
+ $this->log('Entering update function');
45
+ if (!Mage::getStoreConfig('fontis_feeds/'.$this->config_path.'/active')) {
46
+ $this->log('Module disabled');
47
+ } else {
48
+ $this->setupAppData();
49
+
50
+ $stores = Mage::app()->getStores();
51
+ $this->log("Found " . count($stores) . " stores - starting to process.");
52
+ foreach($stores as $this->store) {
53
+ $this->log('Processing store: ' . $this->store->getName());
54
+ if ($this->generate_product_category) {
55
+ // Create the entire products xml file
56
+ $this->batchProcessStore();
57
+ // Create for each leaf category, their products xml file
58
+ $categories = $this->getCategoriesXml();
59
+ foreach($categories['link_ids'] as $category_id) {
60
+ $this->log('Generating Product Category XML File: ' . $category_id);
61
+ $this->batchProcessStore($category_id);
62
+ }
63
+ } else {
64
+ $this->batchProcessStore();
65
+ }
66
+ }
67
+ $this->finaliseAppData();
68
+ }
69
+ $this->log('Finished update function');
70
+ }
71
+
72
+ private function batchProcessStore($cat_id = null) {
73
+ $this->setupStoreData();
74
+
75
+ $product_class = Mage::getModel('catalog/product');
76
+ $product_collection = $product_class->getCollection();
77
+ $product_collection->setStoreId($this->store);
78
+ $product_collection->addStoreFilter();
79
+ $product_collection->addAttributeToSelect('*');
80
+ $product_collection->addAttributeToFilter('status', 1);
81
+ $product_collection->addAttributeToFilter('visibility', 4);
82
+
83
+ if ($cat_id != -1 && $cat_id) {
84
+ $product_collection->getSelect()->where("e.entity_id IN (
85
+ SELECT product_id FROM catalog_category_product WHERE category_id = ". $cat_id ."
86
+ )");
87
+ $product_collection->getSelect()->order('product_id');
88
+ }
89
+
90
+ $skip_query = false;
91
+ $include_all = Mage::getStoreConfig('fontis_feeds/'.$this->config_path.'/include_all_products');
92
+ $override_attribute_code = Mage::getStoreConfig('fontis_feeds/'.$this->config_path.'/custom_filter_attribute');
93
+ if ($override_attribute_code != '0') {
94
+ // TODO: Find out why 'no' was originally included in these filters...
95
+ if ($include_all) {
96
+ // Include all with exceptions - test for exclusion by requiring a 'null' value
97
+ $this->log("Include all products, but exclude where $override_attribute_code = true");
98
+ $product_collection->addAttributeToFilter($override_attribute_code, array('in' => array(0, '0', '', false, 'no')));
99
+ } else {
100
+ // Exclude all with exceptions - test for inclusion by requiring something other than a 'null' value
101
+ $this->log("Exclude all products, but include where $override_attribute_code = true");
102
+ $product_collection->addAttributeToFilter($override_attribute_code, array('nin' => array(0, '0', '', false, 'no')));
103
+ }
104
+ } else {
105
+ if ($include_all) {
106
+ // Include all with no exceptions - the simple case
107
+ $this->log("Include all products");
108
+ } else {
109
+ // Exclude all with no exceptions - no results
110
+ $this->log("Exclude all products");
111
+ $skip_query = true;
112
+ }
113
+ }
114
+
115
+ if (!$skip_query) {
116
+ //$this->log("Iterating using SQL:\n" . $product_collection->getSelect());
117
+ Mage::getSingleton('core/resource_iterator')->walk($product_collection->getSelect(), array(array($this, "productBatchCallback")));
118
+ $this->log('Iterating: ' . $product_collection->getSize() . ' products...');
119
+ // Finish off anything left in the array (if we didn't process a multiple of BATCH_SIZE)
120
+ $this->collectDataForAccumulatedEntities();
121
+ }
122
+
123
+ $this->finaliseStoreData($cat_id);
124
+ }
125
+
126
+ public function productBatchCallback ($args) {
127
+ $this->accumulator[] = $args['row']['entity_id'];
128
+ if(count($this->accumulator) >= $this->BATCH_SIZE) {
129
+ $this->collectDataForAccumulatedEntities();
130
+ }
131
+ }
132
+
133
+ private function collectDataForAccumulatedEntities() {
134
+ $total = count($this->accumulator);
135
+ // $this->log("Submitting ".$total." entity ids: ". join(array_slice($this->accumulator, 0, 8), ", "). "... ". $this->accumulator[$total-1]);
136
+
137
+ // Build file descriptor list for talking to sub process
138
+ $descriptorspec = array(
139
+ 0 => array("pipe", "r"), // stdin is a pipe that the child will read from
140
+ 1 => array("pipe", "w"), // stdout is a pipe that the child will write to
141
+ 2 => array("file", "/tmp/error-output.txt", "a") // stderr is a file to write to
142
+ );
143
+ $pipes = array();
144
+
145
+ // Build child path from current file location and Magento path delimiter
146
+ $exec_path = escapeshellarg(dirname(__FILE__) . DS . "Child.php");
147
+
148
+ // Open child process with proc_open
149
+ //$this->log("Opening child: ".$exec_path);
150
+ $process = proc_open('php '.$exec_path, $descriptorspec, &$pipes);
151
+
152
+ if (!is_resource($process)) {
153
+ $this->log("Error opening child");
154
+ fclose($pipes[0]);
155
+ } else {
156
+ // Write entity id/attribute info to pipe
157
+ $data = array(
158
+ "magento_path" => $this->info("base_dir"),
159
+ "store_id" => $this->info("store_id"),
160
+ "entity_ids" => $this->accumulator,
161
+ "attributes" => array(),
162
+ "generate_categories" => $this->generate_categories,
163
+ "config_path" => $this->config_path
164
+ );
165
+ $this->accumulator = array();
166
+
167
+ fwrite($pipes[0], json_encode($data));
168
+ fclose($pipes[0]);
169
+
170
+ // Read child's output until it finishes or child is no longer running
171
+ // TODO: Set time limit (in case child never finishes)
172
+ // TODO: Add stream blocking using stream_select
173
+ $result = "";
174
+ do {
175
+ $result .= fgets($pipes[1]);
176
+ $state = proc_get_status($process);
177
+ } while (!feof($pipes[1]) && $state['running']);
178
+
179
+ // read JSON-encoded data from child process
180
+ $batch_data = json_decode($result, true);
181
+
182
+ if(is_array($batch_data)) {
183
+ $this->populateFeedWithBatchData($batch_data);
184
+ } else {
185
+ $this->log("Could not unserialize to array:");
186
+ $this->log($result);
187
+ $this->log($batch_data);
188
+ }
189
+
190
+ // Close child process with proc_close (should already be finished, but just in case)
191
+ $exit_status = proc_close($process);
192
+ //self::log("Child exit value: ".$exit_status);
193
+ }
194
+
195
+ // close remaining file handles
196
+ @fclose($pipes[1]);
197
+ }
198
+
199
+ protected function collectLinkedAttributes () {
200
+ $result = @unserialize(Mage::getStoreConfig('fontis_feeds/'.$this->config_path.'/m_to_xml_attributes', $this->info('store_id')));
201
+ if (is_array($result)) {
202
+ //$this->log("Found mapping: " . Mage::getStoreConfig('fontis_feeds/'.$this->config_path.'/m_to_xml_attributes', $this->store->getId()));
203
+ return $result;
204
+ } else {
205
+ return array();
206
+ }
207
+ }
208
+
209
+ protected function collectAttributeMapping() {
210
+ $fields = $this->required_fields;
211
+ $flipped = array_flip($fields);
212
+ foreach ($this->collectLinkedAttributes() as $id => $field_data) {
213
+ $attr = $field_data['magento'];
214
+ $feed_tag = $field_data['xmlfeed'];
215
+ //$this->log("Comparing $attr, $feed_tag with:\n" . var_dump($flipped));
216
+ // Remapping default fields: If the feed tag exists in the required fields we remove it and replace it with the user-configured one.
217
+ if (array_key_exists($feed_tag, $flipped)) {
218
+ $existing_key = $flipped[$feed_tag];
219
+ //$this->log("Found $existing_key => $feed_tag - deleting");
220
+ unset($fields[$existing_key]);
221
+ }
222
+ $fields[$attr] = $feed_tag;
223
+ }
224
+ //$this->log("Final mapping: ". var_dump($fields));
225
+
226
+ return $fields;
227
+ }
228
+
229
+ // NOTE: Subclasses can use any or all of the methods below to do setup/teardown, and to process
230
+ // generated data at the batch, store or application level.
231
+ protected function setupAppData() {
232
+ // For feeds generating a single file, set it up here
233
+ }
234
+ protected function setupStoreData() {
235
+ // For feeds generating a single file, set it up here
236
+ }
237
+ protected function populateFeedWithBatchData($batch_data) {
238
+ // Process returned data at the batch level
239
+ }
240
+ protected function finaliseStoreData() {
241
+ // Process returned data at the store level
242
+ }
243
+ protected function finaliseAppData() {
244
+ // Process returned data at the application level
245
+ }
246
+
247
+ protected function info($info_to_get) {
248
+ $store = $this->store;
249
+ $core_date = Mage::getModel('core/date')->timestamp(time());
250
+
251
+ switch($info_to_get) {
252
+ case "store_id":
253
+ $info = $store->getId();
254
+ break;
255
+ case "store_url":
256
+ $info = $store->getBaseUrl();
257
+ break;
258
+ case "shop_name":
259
+ $info = $store->getName();
260
+ break;
261
+ case "date":
262
+ $info = date("d-m-Y", $core_date);
263
+ break;
264
+ case "time":
265
+ $info = date("h:i:s", $core_date);
266
+ break;
267
+ case "clean_store_name":
268
+ $info = str_replace('+', '-', strtolower(urlencode($store->getName())));
269
+ break;
270
+ case "base_dir":
271
+ $info = Mage::getBaseDir();
272
+ break;
273
+ }
274
+ return $info;
275
+ }
276
+
277
+ public function log($mesg) {
278
+ //print $mesg."\n";
279
+ Mage::log(get_class($this).": ".$mesg);
280
+ }
281
+ }
app/code/community/Fontis/Australia/Model/Getprice.php ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Peter Spiller
18
+ * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ /**
23
+ * GetPrice model
24
+ *
25
+ * @category Fontis
26
+ * @package Fontis_Australia
27
+ */
28
+ class Fontis_Australia_Model_GetPrice {
29
+
30
+ public $available_fields = array(
31
+ "product_num",
32
+ "upc",
33
+ "product_name",
34
+ "attribute1",
35
+ "description",
36
+ "category_name",
37
+ "manufacturer",
38
+ "model",
39
+ "product_url",
40
+ "image",
41
+ "shipment_cost",
42
+ "shipping_times",
43
+ "price",
44
+ "sale_price",
45
+ "currency",
46
+ "mpn",
47
+ "availability",
48
+ "color",
49
+ "feature",
50
+ "id",
51
+ "link",
52
+ "model_number",
53
+ "product_type",
54
+ "quantity",
55
+ "shipping_time",
56
+ "size",
57
+ "author",
58
+ "isbn",
59
+ "artist",
60
+ "rating",
61
+ "age",
62
+ "colour",
63
+ "carats",
64
+ "wine Varietal",
65
+ "vintage",
66
+ "platform"
67
+ );
68
+
69
+ }
app/code/community/Fontis/Australia/Model/Getprice/Cron.php CHANGED
@@ -19,138 +19,57 @@
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
- // Callback used by the Magento resource iterator walk() method. Adds a
23
- // product ID to a static array and calls addProductXmlgetPrice() to
24
- // generate XML when the array reaches the batch size.
25
- function addProductXmlCallbackGetPrice($args) {
26
- Fontis_Australia_Model_GetPrice_Cron::$accumulator[] = $args['row']['entity_id'];
27
-
28
- $length = count(Fontis_Australia_Model_GetPrice_Cron::$accumulator);
29
- if($length >= Fontis_Australia_Model_GetPrice_Cron::BATCH_SIZE) {
30
- addProductXmlGetPrice();
31
- }
32
- }
33
-
34
- // Runs a subprocesss to create feed XML for the product IDs in the static
35
- // array, then empties the array.
36
- function addProductXmlGetPrice() {
37
- $length = count(Fontis_Australia_Model_GetPrice_Cron::$accumulator);
38
- if($length > 0) {
39
- Mage::log("Fontis/Australia_Model_Getprice_Cron: Processing product IDs " . Fontis_Australia_Model_GetPrice_Cron::$accumulator[0] .
40
- " to " . Fontis_Australia_Model_GetPrice_Cron::$accumulator[$length - 1]);
41
- $store_id = Fontis_Australia_Model_GetPrice_Cron::$store->getId();
42
-
43
- $data = shell_exec("php " . Mage::getBaseDir() . "/app/code/community/Fontis/Australia/Model/Getprice/Child.php " .
44
- Mage::getBaseDir() . " '" . serialize(Fontis_Australia_Model_GetPrice_Cron::$accumulator) .
45
- "' " . $store_id);
46
- Fontis_Australia_Model_GetPrice_Cron::$accumulator = array();
47
-
48
- $array = json_decode($data, true);
49
-
50
- if(is_array($array)) {
51
- $codes = array();
52
- foreach($array as $prod) {
53
- Fontis_Australia_Model_GetPrice_Cron::$debugCount += 1;
54
- $product_node = Fontis_Australia_Model_GetPrice_Cron::$root_node->addChild('product');
55
- foreach($prod as $key => $val) {
56
- if($key == 'Code') {
57
- $codes[] = $val;
58
- }
59
- $product_node->addChild($key, htmlspecialchars($val));
60
- }
61
- }
62
- if(!empty($codes)) {
63
- Mage::log("Fontis/Australia_Model_Getprice_Cron: Codes: ".implode(",", $codes));
64
- }
65
- } else {
66
- Mage::log("Fontis/Australia_Model_Getprice_Cron: Could not unserialize to array:");
67
- Mage::log($data);
68
- Mage::log($array);
69
- }
70
-
71
- Mage::log('Fontis/Australia_Model_Getprice_Cron: ' . strlen($data) . ' characters returned');
72
- }
73
- }
74
-
75
- class Fontis_Australia_Model_GetPrice_Cron {
76
- const BATCH_SIZE = 100;
77
 
78
- public static $doc;
79
- public static $root_node;
80
- public static $store;
81
- public static $accumulator;
82
- public static $debugCount = 0;
83
-
84
- protected function _construct() {
85
- self::$accumulator = array();
86
- }
87
-
88
- protected function getPath() {
89
- $path = "";
90
- $config_path = Mage::getStoreConfig('fontis_feeds/getpricefeed/output');
91
-
92
- if (substr($config_path, 0, 1) == "/") {
93
- $path = $config_path . '/';
94
- } else {
95
- $path = Mage::getBaseDir() . '/' . $config_path . '/';
96
- }
97
-
98
- return str_replace('//', '/', $path);
99
  }
100
 
101
- public function nonstatic() {
102
- self::update();
103
  }
104
 
105
- public static function update() {
106
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Entered update function');
107
-
108
- if (Mage::getStoreConfig('fontis_feeds/getpricefeed/active')) {
109
- $io = new Varien_Io_File();
110
- $io->setAllowCreateFolders(true);
111
-
112
- $io->open(array('path' => self::getPath()));
113
-
114
- // Loop through all stores:
115
- foreach(Mage::app()->getStores() as $store) {
116
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Processing store: ' . $store->getName());
117
- $clean_store_name = str_replace('+', '-', strtolower(urlencode($store->getName())));
118
-
119
- // Write the entire products xml file:
120
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Generating All Products XML File');
121
- $products_result = self::getProductsXml($store);
122
- $io->write($clean_store_name . '-products.xml', $products_result['xml']);
123
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Wrote to file: ' . $clean_store_name . '-products.xml', $products_result['xml']);
124
-
125
- // Write the leaf categories xml file:
126
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Generating Categories XML File');
127
- $categories_result = self::getCategoriesXml($store);
128
- $io->write($clean_store_name . '-categories.xml', $categories_result['xml']);
129
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Wrote to file: ' . $clean_store_name . '-categories.xml', $categories_result['xml']);
130
-
131
- // Write for each leaf category, their products xml file:
132
- foreach($categories_result['link_ids'] as $link_id) {
133
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Generating Product Category XML File: ' . $link_id);
134
- $subcategory_products_result = self::getProductsXml($store, $link_id);
135
- $io->write($clean_store_name . '-products-'.$link_id.'.xml', $subcategory_products_result['xml']);
136
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Wrote to file: ' . $clean_store_name . '-products-'.$link_id.'.xml', $subcategory_products_result['xml']);
137
- }
138
  }
139
-
140
- $io->close();
141
- } else {
142
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Disabled');
143
  }
144
  }
145
 
146
- public function getCategoriesXml($store) {
147
- $clean_store_name = str_replace('+', '-', strtolower(urlencode($store->getName())));
148
-
149
  $result = array();
150
  $categories = Mage::getModel('catalog/category')->getCollection()
151
- ->setStoreId($store->getId())
152
  ->addAttributeToFilter('is_active', 1);
153
-
154
  $categories->load()->getItems();
155
 
156
  $full_categories = array();
@@ -165,77 +84,52 @@ class Fontis_Australia_Model_GetPrice_Cron {
165
  }
166
  }
167
 
168
- $storeUrl = $store->getBaseUrl();
169
- $shopName = $store->getName();
170
- $date = date("d-m-Y", Mage::getModel('core/date')->timestamp(time()));
171
- $time = date("h:i:s", Mage::getModel('core/date')->timestamp(time()));
172
-
173
- $doc = new SimpleXMLElement('<store url="' . $storeUrl. '" date="'.$date.'" time="'.$time.'" name="' . $shopName . '"></store>');
174
 
175
  foreach($full_categories as $category) {
176
- $category_node = $doc->addChild('cat');
177
 
178
  $title_node = $category_node->addChild('name');
179
  $title_node[0] = htmlspecialchars($category->getName());
180
 
181
  $link_node = $category_node->addChild('link');
182
- $link_node[0] = Mage::getStoreConfig('web/unsecure/base_url') .
183
- Mage::getStoreConfig('fontis_feeds/getpricefeed/output') . "/$clean_store_name-products-" . $category->getId() . '.xml';
184
 
185
  $result['link_ids'][] = $category->getId();
186
- }
187
-
188
- $result['xml'] = self::formatSimpleXML($doc);
 
 
 
189
  return $result;
190
  }
191
 
192
- public function getProductsXml($store, $cat_id = -1) {
193
- Fontis_Australia_Model_GetPrice_Cron::$store = $store;
194
- $result = array();
195
-
196
- $product = Mage::getModel('catalog/product');
197
- $products = $product->getCollection();
198
- $products->setStoreId($store);
199
- $products->addStoreFilter();
200
- $products->addAttributeToSelect('*');
201
- $products->addAttributeToSelect(array('name', 'price', 'image', 'status', 'manufacturer'), 'left');
202
- $products->addAttributeToFilter('status', 1);
203
- $products->addAttributeToFilter('visibility', 4);
204
-
205
- if ($cat_id != -1) {
206
- $products->getSelect()->where("e.entity_id IN (
207
- SELECT product_id FROM catalog_category_product WHERE category_id = ".$cat_id."
208
- )");
209
- }
210
-
211
- $products->getSelect()->order('product_id');
212
-
213
- $storeUrl = $store->getBaseUrl();
214
- $shopName = $store->getName();
215
- $date = date("d-m-Y", Mage::getModel('core/date')->timestamp(time()));
216
- $time = date("h:i:s", Mage::getModel('core/date')->timestamp(time()));
217
-
218
- self::$doc = new SimpleXMLElement('<store url="' . $storeUrl. '" date="'.$date.'" time="'.$time.'" name="' . $shopName . '"></store>');
219
- self::$root_node = self::$doc->addChild('products');
220
-
221
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Iterating: ' . $products->getSize() . ' products...');
222
- Mage::getSingleton('core/resource_iterator')->walk($products->getSelect(), array('addProductXmlCallbackGetPrice'), array('product' => $product));
223
-
224
- // call XML generation function one last time to process remaining batch
225
- addProductXmlGetPrice();
226
- Mage::log('Fontis/Australia_Model_Getprice_Cron: Iteration complete');
227
-
228
- $result['xml'] = self::formatSimpleXML(self::$doc);
229
- return $result;
230
- }
231
-
232
- public static function formatSimpleXML($doc) {
233
  $dom = new DOMDocument('1.0');
234
  $dom->preserveWhiteSpace = false;
235
  $dom->formatOutput = true;
236
- $dom_sxml = dom_import_simplexml($doc);
237
  $dom_sxml = $dom->importNode($dom_sxml, true);
238
  $dom->appendChild($dom_sxml);
239
- return $dom->saveXML();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  }
241
  }
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
+ class Fontis_Australia_Model_GetPrice_Cron extends Fontis_Australia_Model_FeedCronBase {
23
+
24
+ public $config_path = 'getpricefeed';
25
+ public $generate_categories = true;
26
+ protected $generate_product_category = true;
27
+ protected $product_doc;
28
+ protected $category_doc;
29
+ protected $root_node;
30
+ protected $required_fields = array(
31
+ "product_num" => "product_num",
32
+ "sku" => "upc",
33
+ "name" => "attribute1",
34
+ "description" => "description",
35
+ "category" => "category_name",
36
+ "image_url" => "image",
37
+ "final_price" => "price",
38
+ "currency" => "currency",
39
+ "link" => "product_url"
40
+ );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
+ public static function update() {
43
+ // Static launcher fopr Magento's cron logic
44
+ $obj = new self();
45
+ $obj->generateFeed();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  }
47
 
48
+ protected function setupStoreData() {
49
+ $this->product_doc = new SimpleXMLElement('<store url="' . $this->info("store_url") . '" date="'. $this->info("date") .'" time="'. $this->info("time") .'" name="' . $this->info("shop_name") . '"></store>');
50
  }
51
 
52
+ protected function populateFeedWithBatchData($batch_data) {
53
+ $fields = $this->collectAttributeMapping();
54
+ $this->root_node = $this->product_doc->addChild('products');
55
+ foreach($batch_data as $product) {
56
+ $product_node = $this->root_node->addChild('product');
57
+ foreach($fields as $key => $feed_tag) {
58
+ // remove carriage return/HTML tags
59
+ $safe_string = strip_tags($product[$key]);
60
+ $safe_string = preg_replace("/\s*\n\s*/", " ", $safe_string);
61
+ // ...we also need to make it XML safe
62
+ $safe_string = htmlspecialchars($safe_string);
63
+ $product_node->addChild($feed_tag, $safe_string);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  }
 
 
 
 
65
  }
66
  }
67
 
68
+ protected function getCategoriesXml() {
 
 
69
  $result = array();
70
  $categories = Mage::getModel('catalog/category')->getCollection()
71
+ ->setStoreId($this->store)
72
  ->addAttributeToFilter('is_active', 1);
 
73
  $categories->load()->getItems();
74
 
75
  $full_categories = array();
84
  }
85
  }
86
 
87
+ $this->category_doc = new SimpleXMLElement('<store url="' . $this->info("store_url") . '" date="' . $this->info("date") . '" time="' . $this->info("time") . '" name="' . $this->info("shop_name") . '"></store>');
 
 
 
 
 
88
 
89
  foreach($full_categories as $category) {
90
+ $category_node = $this->category_doc->addChild('cat');
91
 
92
  $title_node = $category_node->addChild('name');
93
  $title_node[0] = htmlspecialchars($category->getName());
94
 
95
  $link_node = $category_node->addChild('link');
96
+ $link_node[0] = Mage::getStoreConfig('web/unsecure/base_url', $this->store) .
97
+ Mage::getStoreConfig('fontis_feeds/'. $this->config_path . '/output', $this->store) . $this->info('clean_store_name') ."-products-" . $category->getId() . '.xml';
98
 
99
  $result['link_ids'][] = $category->getId();
100
+ }
101
+ // create categories XML feed
102
+ $this->createXml(array(
103
+ 'name' => "categories",
104
+ 'doc' => $this->category_doc
105
+ ));
106
  return $result;
107
  }
108
 
109
+ protected function createXml($data = array()) {
110
+ // Use DOM to nicely format XML
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  $dom = new DOMDocument('1.0');
112
  $dom->preserveWhiteSpace = false;
113
  $dom->formatOutput = true;
114
+ $dom_sxml = dom_import_simplexml($data['doc']);
115
  $dom_sxml = $dom->importNode($dom_sxml, true);
116
  $dom->appendChild($dom_sxml);
117
+ // $this->log("Generated XML:\n".$dom->saveXML());
118
+
119
+ // Write dom to file
120
+ $filename = $this->info("clean_store_name") . '-' . $data['name'] . '.xml';
121
+ $io = new Varien_Io_File();
122
+ $io->setAllowCreateFolders(true);
123
+ $io->open(array('path' => $this->getPath()));
124
+ $io->write($filename, $dom->saveXML());
125
+ $io->close();
126
+
127
+ }
128
+
129
+ protected function finaliseStoreData($cat_id = null) {
130
+ $this->createXml(array(
131
+ 'name' => $cat_id ? "products-".$cat_id : "products",
132
+ 'doc' => $this->product_doc
133
+ ));
134
  }
135
  }
app/code/community/Fontis/Australia/Model/Googleproducts.php ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Jeremy Champion
18
+ * @copyright Copyright (c) 2011 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ /**
23
+ * Shopping.com data model
24
+ *
25
+ * @category Fontis
26
+ * @package Fontis_Australia
27
+ */
28
+ class Fontis_Australia_Model_Googleproducts {
29
+
30
+ public $available_fields = array(
31
+ 'g:id',
32
+ 'title',
33
+ 'link',
34
+ 'g:price',
35
+ 'description',
36
+ 'g:condition',
37
+ 'g:gtin',
38
+ 'g:brand',
39
+ 'g:mpn',
40
+ 'g:image_link',
41
+ 'g:product_type',
42
+ 'g:quantity',
43
+ 'g:availability',
44
+ //'g:shipping', // TODO: I need to be handled!
45
+ 'g:feature',
46
+ 'g:online_only',
47
+ 'g:manufacturer',
48
+ 'g:expiration_date',
49
+ 'g:shipping_weight',
50
+ 'g:product_review_average',
51
+ 'g:product_review_count',
52
+ 'g:genre',
53
+ 'g:featured_product',
54
+ 'g:color',
55
+ 'g:size',
56
+ 'g:year',
57
+ 'g:author',
58
+ 'g:edition',
59
+ );
60
+
61
+ }
app/code/community/Fontis/Australia/Model/Googleproducts/Cron.php ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Fontis_Australia_Model_Googleproducts_Cron extends Fontis_Australia_Model_FeedCronBase {
4
+ public $config_path = 'googleproductsfeed';
5
+
6
+ protected $doc;
7
+ protected $required_fields = array(
8
+ "sku" => "g:id",
9
+ "name" => "title",
10
+ "link" => "g:link",
11
+ "final_price" => "g:price",
12
+ "description" => "description",
13
+ "image" => "g:image_link",
14
+ );
15
+
16
+ public static function update() {
17
+ // Static launcher for Magento's cron logic
18
+ $obj = new self();
19
+ $obj->generateFeed();
20
+ }
21
+
22
+ protected function getConfig($key)
23
+ {
24
+ return Mage::getStoreConfig('fontis_feeds/' . $this->config_path . '/' . $key);
25
+ }
26
+
27
+ /*
28
+ * Instantiate the XML object
29
+ */
30
+ protected function setupStoreData() {
31
+ // have to use XMLWriter, because SimpleXML destroys the g: of a bunch of the attribute names
32
+ $this->doc = new XMLWriter();
33
+ $this->doc->openMemory();
34
+ $this->doc->setIndent(true);
35
+ $this->doc->setIndentString(' ');
36
+ $this->doc->startDocument('1.0', 'UTF-8');
37
+ $this->doc->startElement('feed');
38
+ $this->doc->writeAttribute('xmlns', 'http://www.w3.org/2005/Atom');
39
+ $this->doc->writeAttribute('xmlns:g', 'http://base.google.com/ns/1.0');
40
+
41
+ $this->doc->writeElement('title', $this->getConfig('title'));
42
+
43
+ $this->doc->startElement('link');
44
+ $this->doc->writeAttribute('rel', 'self');
45
+ $this->doc->writeAttribute('href', $this->store->getBaseUrl());
46
+ $this->doc->endElement();
47
+
48
+ $date = new Zend_Date();
49
+ $this->doc->writeElement('updated', $date->get(Zend_Date::ATOM));
50
+
51
+ $this->doc->startElement('author');
52
+ $this->doc->writeElement('name', $this->getConfig('author'));
53
+ $this->doc->endElement();
54
+
55
+ $url = $this->store->getBaseUrl();
56
+ $day = $date->toString('yyyy-MM-dd');
57
+ $path = Mage::getStoreConfig('fontis_feeds/'.$this->config_path.'/output');
58
+ $filename = $path . '/' . str_replace('+', '-', strtolower(urlencode($this->store->getName()))) . '-products.xml';
59
+
60
+ $this->doc->writeElement('id', 'tag:' . $url . ',' . $day . ':' . $filename);
61
+ }
62
+
63
+ /*
64
+ * Add generated data to the feed element
65
+ */
66
+ protected function populateFeedWithBatchData($batch_data) {
67
+ $fields = $this->collectAttributeMapping();
68
+ $defaultCondition = $this->getConfig('default_condition');
69
+
70
+ foreach($batch_data as $product) {
71
+ $this->doc->startElement('entry');
72
+
73
+ foreach($fields as $key => $tag) {
74
+ if(!is_array($tag)) {
75
+ $feed_tags = array($tag);
76
+ } else {
77
+ $feed_tags = $tag;
78
+ }
79
+ foreach($feed_tags as $feed_tag) {
80
+ switch ($feed_tag) {
81
+ case 'g:price':
82
+ // Prices require two decimal places.
83
+ $safe_string = sprintf('%.2f', $product[$key]);
84
+ $this->doc->writeElement($feed_tag, $safe_string);
85
+ break;
86
+
87
+ case 'g:link':
88
+ // Links must be written as an attribute
89
+ $this->doc->startElement($feed_tag);
90
+ $this->doc->writeAttribute('href', $product[$key]);
91
+ $this->doc->endElement();
92
+ break;
93
+
94
+ case 'g:condition':
95
+ // allow condition override
96
+ if(isset($product[$key]) && $product[$key] != 0) {
97
+ $this->doc->writeElement($feed_tag, $product[$key]);
98
+ } else {
99
+ $this->doc->writeElement($feed_tag, $defaultCondition);
100
+ }
101
+ break;
102
+
103
+ case 'g:image_link':
104
+ $safe_string = $product[$key];
105
+ // check if the link is a full URL
106
+ if(substr($product[$key], 0, 5) != 'http:') {
107
+ $safe_string = $this->store->getBaseUrl('media') . 'catalog/product' . $product[$key];
108
+ }
109
+
110
+ $this->doc->writeElement($feed_tag, $safe_string);
111
+ break;
112
+
113
+ default:
114
+ // Google doesn't like HTML tags in the feed
115
+ $safe_string = strip_tags($product[$key]);
116
+
117
+ $this->doc->writeElement($feed_tag, $safe_string);
118
+ break;
119
+ }
120
+ }
121
+ }
122
+
123
+ $this->doc->endElement();
124
+ }
125
+ }
126
+
127
+ protected function finaliseStoreData() {
128
+ // Write the end of the xml document
129
+ $this->doc->endElement();
130
+ $this->doc->endDocument();
131
+
132
+ // Write dom to file
133
+ $clean_store_name = str_replace('+', '-', strtolower(urlencode($this->store->getName())));
134
+ $filename = $clean_store_name . '-products.xml';
135
+ $io = new Varien_Io_File();
136
+ $io->setAllowCreateFolders(true);
137
+ $io->open(array('path' => $this->getPath()));
138
+ $io->write($filename, $this->doc->outputMemory());
139
+ $io->close();
140
+ }
141
+
142
+ protected function collectAttributeMapping() {
143
+ $fields = $this->required_fields;
144
+ $flipped = array_flip($fields);
145
+ foreach ($this->collectLinkedAttributes() as $id => $field_data) {
146
+ $attr = $field_data['magento'];
147
+ $feed_tag = $field_data['xmlfeed'];
148
+ //$this->log("Comparing $attr, $feed_tag with:\n" . var_dump($flipped));
149
+ // Remapping default fields: If the feed tag exists in the required fields we remove it and replace it with the user-configured one.
150
+ if (array_key_exists($feed_tag, $flipped)) {
151
+ $existing_key = $flipped[$feed_tag];
152
+ //$this->log("Found $existing_key => $feed_tag - deleting");
153
+ unset($fields[$existing_key]);
154
+ }
155
+
156
+ // If the attribute already exists in the mapping list (not the
157
+ // required list) then add the tag as an array. This supports
158
+ // things like the g:image_link tag which allows for multiple
159
+ // entities in each entry.
160
+ if(isset($fields[$attr])) {
161
+ if(is_array($fields[$attr])) {
162
+ $fields[$attr][] = $feed_tag;
163
+ } else {
164
+ $cur = $fields[$attr];
165
+ $fields[$attr] = array($cur, $feed_tag);
166
+ }
167
+ } else {
168
+ $fields[$attr] = $feed_tag;
169
+ }
170
+ }
171
+ //$this->log("Final mapping: ". var_dump($fields));
172
+
173
+ if(!in_array('g:condition', array_values($fields)))
174
+ {
175
+ $fields['UNSET_CONDITION'] = 'g:condition';
176
+ }
177
+
178
+ return $fields;
179
+ }
180
+ }
app/code/community/Fontis/Australia/Model/Myshopping.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Peter Spiller
18
+ * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ /**
23
+ * Myshopping data model
24
+ *
25
+ * @category Fontis
26
+ * @package Fontis_Australia
27
+ */
28
+ class Fontis_Australia_Model_MyShopping {
29
+
30
+ public $available_fields = array(
31
+ "Code",
32
+ "Name",
33
+ "Description",
34
+ "Category",
35
+ "Price",
36
+ "Product_URL",
37
+ "Image_URL",
38
+ "Brand",
39
+ "Shipping",
40
+ "InStock",
41
+ "size",
42
+ "author",
43
+ "isbn",
44
+ "artist",
45
+ "release_date",
46
+ "rating",
47
+ "format",
48
+ "gender",
49
+ "wine_varietal",
50
+ "vintages",
51
+ "age",
52
+ "gold_carats",
53
+ "carats",
54
+ "platform"
55
+ );
56
+
57
+ }
app/code/community/Fontis/Australia/Model/Myshopping/Cron.php CHANGED
@@ -19,157 +19,71 @@
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
- // Callback used by the Magento resource iterator walk() method. Adds a
23
- // product ID to a static array and calls addProductXmlMyShopping() to
24
- // generate XML when the array reaches the batch size.
25
- function addProductXmlCallbackMyShopping($args) {
26
- Fontis_Australia_Model_MyShopping_Cron::$accumulator[] = $args['row']['entity_id'];
27
 
28
- $length = count(Fontis_Australia_Model_MyShopping_Cron::$accumulator);
29
- if($length >= Fontis_Australia_Model_MyShopping_Cron::BATCH_SIZE) {
30
- addProductXmlMyShopping();
31
- }
32
- }
33
-
34
- // Runs a subprocesss to create feed XML for the product IDs in the static
35
- // array, then empties the array.
36
- function addProductXmlMyShopping() {
37
- $length = count(Fontis_Australia_Model_MyShopping_Cron::$accumulator);
38
- if($length > 0) {
39
- Mage::log("Fontis/Australia_Model_Myshopping_Cron: Processing product IDs " . Fontis_Australia_Model_MyShopping_Cron::$accumulator[0] .
40
- " to " . Fontis_Australia_Model_MyShopping_Cron::$accumulator[$length - 1]);
41
- $store_id = Fontis_Australia_Model_MyShopping_Cron::$store->getId();
42
-
43
- $data = shell_exec("php " . Mage::getBaseDir() . "/app/code/community/Fontis/Australia/Model/Myshopping/Child.php " .
44
- Mage::getBaseDir() . " '" . serialize(Fontis_Australia_Model_MyShopping_Cron::$accumulator) .
45
- "' " . $store_id);
46
- Fontis_Australia_Model_MyShopping_Cron::$accumulator = array();
47
-
48
- $array = json_decode($data, true);
49
-
50
- if(is_array($array)) {
51
- $codes = array();
52
- foreach($array as $prod) {
53
- Fontis_Australia_Model_MyShopping_Cron::$debugCount += 1;
54
- $product_node = Fontis_Australia_Model_Myshopping_Cron::$root_node->addChild('product');
55
- foreach($prod as $key => $val) {
56
- if($key == 'Code') {
57
- $codes[] = $val;
58
- }
59
- $product_node->addChild($key, htmlspecialchars($val));
60
- }
61
- }
62
- if(!empty($codes)) {
63
- Mage::log("Fontis/Australia_Model_Myshopping_Cron: Codes: ".implode(",", $codes));
64
- }
65
- } else {
66
- Mage::log("Fontis/Australia_Model_Myshopping_Cron: Could not unserialize to array:");
67
- Mage::log($data);
68
- Mage::log($array);
69
- }
70
-
71
- Mage::log("Fontis/Australia_Model_Myshopping_Cron: " . strlen($data) . " characters returned");
72
- }
73
- }
74
-
75
- class Fontis_Australia_Model_MyShopping_Cron {
76
- const BATCH_SIZE = 100;
77
-
78
- public static $doc;
79
- public static $root_node;
80
- public static $store;
81
- public static $accumulator;
82
- public static $debugCount = 0;
83
-
84
- protected function _construct() {
85
- self::$accumulator = array();
86
- }
87
-
88
- protected function getPath() {
89
- $path = "";
90
- $config_path = Mage::getStoreConfig('fontis_feeds/myshoppingfeed/output');
91
-
92
- if (substr($config_path, 0, 1) == "/") {
93
- $path = $config_path . '/';
94
- } else {
95
- $path = Mage::getBaseDir() . '/' . $config_path . '/';
96
- }
97
 
98
- return str_replace('//', '/', $path);
 
 
 
99
  }
100
 
101
- public function nonstatic() {
102
- self::update();
103
  }
104
-
105
- public static function update() {
106
- Mage::log('Fontis/Australia_Model_MyShopping_Cron: Entered update function');
107
-
108
- if (Mage::getStoreConfig('fontis_feeds/myshoppingfeed/active')) {
109
- $io = new Varien_Io_File();
110
- $io->setAllowCreateFolders(true);
111
 
112
- $io->open(array('path' => self::getPath()));
113
-
114
- // Loop through all stores:
115
- foreach(Mage::app()->getStores() as $store) {
116
- Mage::log('Fontis/Australia_Model_MyShopping_Cron: Processing store: ' . $store->getName());
117
- $clean_store_name = str_replace('+', '-', strtolower(urlencode($store->getName())));
118
-
119
- Fontis_Australia_Model_MyShopping_Cron::$debugCount = 0;
120
-
121
- // Write the entire products xml file:
122
- Mage::log('Fontis/Australia_Model_MyShopping_Cron: Generating All Products XML File');
123
- $products_result = self::getProductsXml($store);
124
-
125
- $filename = $clean_store_name . '-products.xml';
126
- $io->write($filename, $products_result['xml']);
127
- Mage::log('Fontis/Australia_Model_MyShopping_Cron: Wrote ' . Fontis_Australia_Model_MyShopping_Cron::$debugCount
128
- . " records to " . self::getPath() . $filename);
 
129
  }
130
-
131
- $io->close();
132
- } else {
133
- Mage::log('Fontis/Australia_Model_MyShopping_Cron: Disabled');
134
  }
135
  }
136
-
137
- public function getProductsXml($store) {
138
- Mage::log('new getproductsxml');
139
- Fontis_Australia_Model_MyShopping_Cron::$store = $store;
140
-
141
- $result = array();
142
-
143
- $product = Mage::getModel('catalog/product');
144
- $products = $product->getCollection();
145
- $products->setStoreId($store);
146
- $products->addStoreFilter();
147
- $products->addAttributeToSelect('*');
148
- $products->addAttributeToFilter('status', 1);
149
- $products->addAttributeToFilter('visibility', 4);
150
-
151
- $storeUrl = $store->getBaseUrl();
152
- $shopName = $store->getName();
153
- $date = date("d-m-Y", Mage::getModel('core/date')->timestamp(time()));
154
- $time = date("h:i:s", Mage::getModel('core/date')->timestamp(time()));
155
-
156
- self::$doc = new SimpleXMLElement('<productset></productset>');
157
- self::$root_node = self::$doc;
158
-
159
- Mage::log('Fontis/Australia_Model_MyShopping_Cron: Iterating: ' . $products->getSize() . ' products...');
160
- Mage::getSingleton('core/resource_iterator')->walk($products->getSelect(), array('addProductXmlCallbackMyShopping'));
161
-
162
- // call XML generation function one last time to process remaining batch
163
- addProductXmlMyShopping();
164
- Mage::log('Fontis/Australia_Model_MyShopping_Cron: Iteration complete');
165
-
166
  $dom = new DOMDocument('1.0');
167
  $dom->preserveWhiteSpace = false;
168
  $dom->formatOutput = true;
169
- $dom_sxml = dom_import_simplexml(self::$doc);
170
  $dom_sxml = $dom->importNode($dom_sxml, true);
171
  $dom->appendChild($dom_sxml);
172
- $result['xml'] = $dom->saveXML();
173
- return $result;
 
 
 
 
 
 
 
174
  }
175
  }
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
+ class Fontis_Australia_Model_MyShopping_Cron extends Fontis_Australia_Model_FeedCronBase {
 
 
 
 
23
 
24
+ public $config_path = 'myshoppingfeed';
25
+ public $generate_categories = true;
26
+ protected $doc;
27
+ protected $required_fields = array(
28
+ "sku" => "Code",
29
+ "category" => "Category",
30
+ "name" => "Name",
31
+ "description" => "Description",
32
+ "link" => "Product_URL",
33
+ "final_price" => "Price",
34
+ "image_url" => "Image_URL",
35
+ "brand" => "Brand",
36
+ "instock" => "InStock"
37
+ );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
 
39
+ public static function update() {
40
+ // Static launcher fopr Magento's cron logic
41
+ $obj = new self();
42
+ $obj->generateFeed();
43
  }
44
 
45
+ protected function setupStoreData() {
46
+ $this->doc = new SimpleXMLElement('<productset></productset>');
47
  }
 
 
 
 
 
 
 
48
 
49
+ protected function populateFeedWithBatchData($batch_data) {
50
+ $fields = $this->collectAttributeMapping();
51
+
52
+ foreach($batch_data as $product) {
53
+ $product_node = $this->doc->addChild('product');
54
+ foreach($fields as $key => $feed_tag) {
55
+ // $this->log("Mapping $key to $feed_tag with value: ".(substr($product[$key], 0, 20)));
56
+ if (strstr($feed_tag, "Price") != false) {
57
+ // Prices require two decimal places and a $ sign.
58
+ $safe_string = sprintf('$%.2f', $product[$key]);
59
+ } else {
60
+ // remove carriage returns or HTML tags
61
+ $safe_string = strip_tags($product[$key]);
62
+ $safe_string = preg_replace("/\s*\n\s*/", " ", $safe_string);
63
+ // ...we also need to make it XML safe
64
+ $safe_string = htmlspecialchars($safe_string);
65
+ }
66
+ $product_node->addChild($feed_tag, $safe_string);
67
  }
 
 
 
 
68
  }
69
  }
70
+
71
+ protected function finaliseStoreData() {
72
+ // Use DOM to nicely format XML
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  $dom = new DOMDocument('1.0');
74
  $dom->preserveWhiteSpace = false;
75
  $dom->formatOutput = true;
76
+ $dom_sxml = dom_import_simplexml($this->doc);
77
  $dom_sxml = $dom->importNode($dom_sxml, true);
78
  $dom->appendChild($dom_sxml);
79
+ // $this->log("Generated XML:\n".$dom->saveXML());
80
+
81
+ // Write dom to file
82
+ $filename = $this->info("clean_store_name") . '-products.xml';
83
+ $io = new Varien_Io_File();
84
+ $io->setAllowCreateFolders(true);
85
+ $io->open(array('path' => $this->getPath()));
86
+ $io->write($filename, $dom->saveXML());
87
+ $io->close();
88
  }
89
  }
app/code/community/Fontis/Australia/Model/Mysql4/Shipping/Carrier/Eparcel.php CHANGED
@@ -178,9 +178,6 @@ class Fontis_Australia_Model_Mysql4_Shipping_Carrier_Eparcel extends Mage_Core_M
178
 
179
  $websiteId = $object->getScopeId();
180
  $websiteModel = Mage::app()->getWebsite($websiteId);
181
- /*
182
- getting condition name from post instead of the following commented logic
183
- */
184
 
185
  if (isset($_POST['groups']['eparcel']['fields']['condition_name']['inherit'])) {
186
  $conditionName = (string)Mage::getConfig()->getNode('default/carriers/eparcel/condition_name');
@@ -189,6 +186,7 @@ class Fontis_Australia_Model_Mysql4_Shipping_Carrier_Eparcel extends Mage_Core_M
189
  }
190
 
191
  $conditionFullName = Mage::getModel('australia/shipping_carrier_eparcel')->getCode('condition_name_short', $conditionName);
 
192
  if (!empty($csv)) {
193
  $exceptions = array();
194
  $csvLines = explode("\n", $csv);
@@ -283,8 +281,37 @@ class Fontis_Australia_Model_Mysql4_Shipping_Carrier_Eparcel extends Mage_Core_M
283
  $csvLine[6] = (float)$csvLine[6];
284
  }
285
 
286
- $data[] = array('website_id'=>$websiteId, 'dest_country_id'=>$countryId, 'dest_region_id'=>$regionId, 'dest_zip'=>$zip, 'condition_name'=>$conditionName, 'condition_from_value'=>$csvLine[3],'condition_to_value'=>$csvLine[4], 'price'=>$csvLine[5], 'price_per_kg'=>$csvLine[6], 'delivery_type'=>$csvLine[7]);
287
- $dataDetails[] = array('country'=>$csvLine[0], 'region'=>$csvLine[1]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
288
  }
289
  }
290
 
@@ -341,6 +368,26 @@ class Fontis_Australia_Model_Mysql4_Shipping_Carrier_Eparcel extends Mage_Core_M
341
  }
342
  }
343
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
344
  protected function _getCsvValues($string, $separator=",")
345
  {
346
  $elements = explode($separator, trim($string));
@@ -348,7 +395,7 @@ class Fontis_Australia_Model_Mysql4_Shipping_Carrier_Eparcel extends Mage_Core_M
348
  $nquotes = substr_count($elements[$i], '"');
349
  if ($nquotes %2 == 1) {
350
  for ($j = $i+1; $j < count($elements); $j++) {
351
- if (substr_count($elements[$j], '"') > 0) {
352
  // Put the quoted string's pieces back together again
353
  array_splice($elements, $i, $j-$i+1, implode($separator, array_slice($elements, $i, $j-$i+1)));
354
  break;
178
 
179
  $websiteId = $object->getScopeId();
180
  $websiteModel = Mage::app()->getWebsite($websiteId);
 
 
 
181
 
182
  if (isset($_POST['groups']['eparcel']['fields']['condition_name']['inherit'])) {
183
  $conditionName = (string)Mage::getConfig()->getNode('default/carriers/eparcel/condition_name');
186
  }
187
 
188
  $conditionFullName = Mage::getModel('australia/shipping_carrier_eparcel')->getCode('condition_name_short', $conditionName);
189
+
190
  if (!empty($csv)) {
191
  $exceptions = array();
192
  $csvLines = explode("\n", $csv);
281
  $csvLine[6] = (float)$csvLine[6];
282
  }
283
 
284
+ if (isset($csvLine[8]) AND !$this->_isValidChargeCode($csvLine[8])) {
285
+ $exceptions[] = Mage::helper('shipping')->__('Invalid Charge Code "%s" in the Row #%s', $csvLine[8], ($k+1));
286
+ } else {
287
+ $csvLine[8] = isset($csvLine[8]) ? (string)$csvLine[8] : null;
288
+ }
289
+
290
+ if (isset($csvLine[9]) AND !$this->_isValidChargeCode($csvLine[9])) {
291
+ $exceptions[] = Mage::helper('shipping')->__('Invalid Charge Code "%s" in the Row #%s', $csvLine[9], ($k+1));
292
+ } else {
293
+ $csvLine[9] = isset($csvLine[9]) ? (string)$csvLine[9] : null;
294
+ }
295
+
296
+ $data[] = array(
297
+ 'website_id' => $websiteId,
298
+ 'dest_country_id' => $countryId,
299
+ 'dest_region_id' => $regionId,
300
+ 'dest_zip' => $zip,
301
+ 'condition_name' => $conditionName,
302
+ 'condition_from_value' => $csvLine[3],
303
+ 'condition_to_value' => $csvLine[4],
304
+ 'price' => $csvLine[5],
305
+ 'price_per_kg' => $csvLine[6],
306
+ 'delivery_type' => $csvLine[7],
307
+ 'charge_codes_individual' => $csvLine[8],
308
+ 'charge_codes_business' => $csvLine[9]
309
+ );
310
+
311
+ $dataDetails[] = array(
312
+ 'country' => $csvLine[0],
313
+ 'region' => $csvLine[1]
314
+ );
315
  }
316
  }
317
 
368
  }
369
  }
370
 
371
+ /**
372
+ * Due to bugs in fgetcsv(), this extension is using tips from php.net.
373
+ * We could potentially swap this out for Zend's CSV parsers after testing for bugs in that.
374
+ *
375
+ * Note: I've updated this code the latest version in the comments on php.net (Jonathan Melnick)
376
+ *
377
+ * @author Jonathan Melnick
378
+ * @author Chris Norton
379
+ * @author Dave Walter
380
+ * @author justin at cam dot org
381
+ * @author Theodule
382
+ * @author dan dot jones at lunarfish dot co dot uk
383
+ *
384
+ * @see http://www.php.net/manual/en/function.split.php#81490
385
+ * @see https://bugs.php.net/bug.php?id=45356
386
+ * @see http://stackoverflow.com/questions/12390851/fgetcsv-is-eating-the-first-letter-of-a-string-if-its-an-umlaut
387
+ *
388
+ * @param string $string
389
+ * @param string $separator
390
+ */
391
  protected function _getCsvValues($string, $separator=",")
392
  {
393
  $elements = explode($separator, trim($string));
395
  $nquotes = substr_count($elements[$i], '"');
396
  if ($nquotes %2 == 1) {
397
  for ($j = $i+1; $j < count($elements); $j++) {
398
+ if (substr_count($elements[$j], '"') %2 == 1) { // Look for an odd-number of quotes
399
  // Put the quoted string's pieces back together again
400
  array_splice($elements, $i, $j-$i+1, implode($separator, array_slice($elements, $i, $j-$i+1)));
401
  break;
app/code/community/Fontis/Australia/Model/Payment/Directdeposit.php CHANGED
@@ -34,6 +34,9 @@ class Fontis_Australia_Model_Payment_Directdeposit extends Mage_Payment_Model_Me
34
  protected $_formBlockType = 'fontis_australia_block_directdeposit_form';
35
  protected $_infoBlockType = 'fontis_australia_block_directdeposit_info';
36
 
 
 
 
37
  public function isAvailable($quote = null)
38
  {
39
  if($this->getConfigData('active') == 0)
@@ -106,22 +109,22 @@ class Fontis_Australia_Model_Payment_Directdeposit extends Mage_Payment_Model_Me
106
 
107
  public function getAccountName()
108
  {
109
- return $this->getConfigData('account_name');
110
  }
111
 
112
  public function getAccountBSB()
113
  {
114
- return $this->getConfigData('account_bsb');
115
  }
116
 
117
  public function getAccountNumber()
118
  {
119
- return $this->getConfigData('account_number');
120
  }
121
 
122
  public function getMessage()
123
  {
124
- return $this->getConfigData('message');
125
  }
126
 
127
  }
34
  protected $_formBlockType = 'fontis_australia_block_directdeposit_form';
35
  protected $_infoBlockType = 'fontis_australia_block_directdeposit_info';
36
 
37
+ // Set to allow the admin to set whether or not payment has been received
38
+ protected $_canCapture = true;
39
+
40
  public function isAvailable($quote = null)
41
  {
42
  if($this->getConfigData('active') == 0)
109
 
110
  public function getAccountName()
111
  {
112
+ return Mage::getStoreConfig('payment/directdeposit_au/account_name', $this->getInfoInstance()->getQuote()->getStoreId());
113
  }
114
 
115
  public function getAccountBSB()
116
  {
117
+ return Mage::getStoreConfig('payment/directdeposit_au/account_bsb', $this->getInfoInstance()->getQuote()->getStoreId());
118
  }
119
 
120
  public function getAccountNumber()
121
  {
122
+ return Mage::getStoreConfig('payment/directdeposit_au/account_number', $this->getInfoInstance()->getQuote()->getStoreId());
123
  }
124
 
125
  public function getMessage()
126
  {
127
+ return Mage::getStoreConfig('payment/directdeposit_au/message', $this->getInfoInstance()->getQuote()->getStoreId());
128
  }
129
 
130
  }
app/code/community/Fontis/Australia/Model/Shipping/Carrier/Australiapost.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * Fontis Australia Extension
4
  *
@@ -25,9 +26,7 @@
25
  * @category Fontis
26
  * @package Fontis_Australia
27
  */
28
- class Fontis_Australia_Model_Shipping_Carrier_Australiapost
29
- extends Mage_Shipping_Model_Carrier_Abstract
30
- implements Mage_Shipping_Model_Carrier_Interface
31
  {
32
 
33
  protected $_code = 'australiapost';
@@ -39,245 +38,216 @@ class Fontis_Australia_Model_Shipping_Carrier_Australiapost
39
  * @return Mage_Shipping_Model_Rate_Result
40
  */
41
  public function collectRates(Mage_Shipping_Model_Rate_Request $request)
42
- {
43
- // Check if this method is active
44
- if (!$this->getConfigFlag('active'))
45
- {
46
- return false;
47
- }
48
-
49
- // Check if this method is even applicable (shipping from Australia)
50
- $origCountry = Mage::getStoreConfig('shipping/origin/country_id', $this->getStore());
51
- if ($origCountry != "AU")
52
- {
53
- return false;
54
- }
55
-
56
- $result = Mage::getModel('shipping/rate_result');
57
-
58
- // TODO: Add some more validations
59
- $frompcode = Mage::getStoreConfig('shipping/origin/postcode', $this->getStore());
60
- $topcode = $request->getDestPostcode();
61
-
62
- if ($request->getDestCountryId())
63
- {
64
- $destCountry = $request->getDestCountryId();
65
- }
66
- else
67
- {
68
- $destCountry = "AU";
69
- }
70
-
71
- // Here we get the weight (and convert it to grams) and set some
72
- // sensible defaults for other shipping parameters.
73
- $sweight = (int)((float)$request->getPackageWeight() * (float)$this->getConfigData('weight_units'));
74
- $sheight = $swidth = $slength = 100;
75
- $shipping_num_boxes = 1;
76
-
77
- // Switch between domestic and international shipping methods based
78
- // on destination country.
79
- if($destCountry == "AU")
80
- {
81
- //============= Domestic Shipping ==================
82
- $shipping_methods = array('STANDARD', 'EXPRESS');
83
-
84
- foreach($shipping_methods as $shipping_method)
85
- {
86
- $drc = $this->_drcRequest($shipping_method, $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
87
-
88
- if($drc['err_msg'] == 'OK')
89
- {
90
- // Check for registered post activation. If so, add extra options
91
- if($this->getConfigData('registered_post'))
92
- {
93
- $title_days = ($drc['days'] == 1) ? ' (1 day)' : ' (' . $drc['days'] . ' days)';
94
- $title = $this->getConfigData('name') . " " .
95
- ucfirst(strtolower($shipping_method)) .
96
- $title_days;
97
-
98
- $charge = $drc['charge'];
99
- $charge += $this->getConfigData('registered_post_charge');
100
-
101
- if($this->getConfigData('person_to_person'))
102
- {
103
- $charge += 5.50;
104
- }
105
- elseif($this->getConfigData('delivery_confirmation'))
106
- {
107
- $charge += 1.85;
108
- }
109
-
110
- $method = $this->_createMethod($request, $shipping_method, $title, $charge, $charge);
111
- $result->append($method);
112
-
113
- // Insurance only covers up to $5000 worth of goods.
114
- $packageValue = ($request->getPackageValue() > 5000) ? 5000 : $request->getPackageValue();
115
-
116
- // Insurance cost is $1.25 per $100 or part thereof. First $100 is
117
- // included in normal registered post costs.
118
- $insurance = (ceil($packageValue / 100) - 1) * 1.25;
119
-
120
- // Only add a new method if the insurance is different
121
- if($insurance > 0) {
122
- $charge += $insurance;
123
-
124
- $title = $this->getConfigData('name') . " " . ucfirst(strtolower($shipping_method)) . ' with Extra Cover';
125
- $method = $this->_createMethod($request, $shipping_method . '_EC', $title, $charge, $charge);
126
- $result->append($method);
127
- }
128
- }
129
- else
130
- {
131
- $title_days = ($drc['days'] == 1) ? ' (1 day)' : ' (' . $drc['days'] . ' days)';
132
- $title = $this->getConfigData('name') . " " .
133
- ucfirst(strtolower($shipping_method)) .
134
- $title_days;
135
-
136
- $method = $this->_createMethod($request, $shipping_method, $title, $drc['charge'], $drc['charge']);
137
- $result->append($method);
138
- }
139
- }
140
- }
141
- }
142
- else
143
- {
144
- //============= International Shipping ==================
145
- // International shipping options are highly dependent upon whether
146
- // or not you are using registered post.
147
- if($this->getConfigData('registered_post'))
148
- {
149
- //============= Registered Post ================
150
- // Registered Post International
151
- // Same price as Air Mail, plus $5. Extra cover is not available.
152
- // A weight limit of 2kg applies.
153
- if($sweight <= 2000)
154
- {
155
- $drc = $this->_drcRequest('AIR', $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
156
-
157
- if($drc['err_msg'] == 'OK')
158
- {
159
- $title_days = ($drc['days'] == 1) ? ' (1 day)' : ' (' . $drc['days'] . ' days)';
160
- $title = $this->getConfigData('name') . ' Registered Post International' . $title_days;
161
-
162
- // RPI is another 5 dollars.
163
- $charge = $drc['charge'] + 5;
164
-
165
- if($this->getConfigData('delivery_confirmation'))
166
- {
167
- $charge += 3.30;
168
- }
169
-
170
- $charge += $this->getConfigData('registered_post_charge');
171
-
172
- $method = $this->_createMethod($request, 'AIR', $title, $charge, $charge);
173
- $result->append($method);
174
- }
175
- }
176
-
177
- // Express Post International
178
- $drc = $this->_drcRequest('EPI', $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
179
-
180
- if($drc['err_msg'] == 'OK')
181
- {
182
- $title_days = ($drc['days'] == 1) ? ' (1 day)' : ' (' . $drc['days'] . ' days)';
183
- $title = $this->getConfigData('name') . ' Express Post International' . $title_days;
184
-
185
- $charge = $drc['charge'];
186
-
187
- if($this->getConfigData('delivery_confirmation'))
188
- {
189
- $charge += 3.30;
190
- }
191
-
192
- $charge += $this->getConfigData('registered_post_charge');
193
-
194
- $method = $this->_createMethod($request, 'EPI', $title, $charge, $charge);
195
- $result->append($method);
196
-
197
- // Insurance only covers up to $5000 worth of goods.
198
- $packageValue = ($request->getPackageValue() > 5000) ? 5000 : $request->getPackageValue();
199
-
200
- // Insurance cost is $2.25 per $100 or part thereof. First $100 is $8.45.
201
- $insurance = 8.45 + (ceil($packageValue / 100) - 1) * 1.25;
202
- $charge += $insurance;
203
-
204
- $title = $this->getConfigData('name') . ' Express Post International with Extra Cover';
205
- $method = $this->_createMethod($request, 'EPI-EC', $title, $charge, $charge);
206
- $result->append($method);
207
- }
208
-
209
- // Express Courier International
210
- // TODO: Create a table for this method.
211
- }
212
- else
213
- {
214
- //============= Standard Post ================
215
- // Sea Shipping
216
- $drc = $this->_drcRequest('SEA', $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
217
-
218
- if($drc['err_msg'] == 'OK')
219
- {
220
- $title_days = ($drc['days'] == 1) ? ' (1 day)' : ' (' . $drc['days'] . ' days)';
221
- $title = $this->getConfigData('name') . ' Sea Mail' .
222
- $title_days;
223
-
224
- $method = $this->_createMethod($request, 'SEA', $title, $drc['charge'], $drc['charge']);
225
- $result->append($method);
226
- }
227
-
228
- // Air Mail
229
- $drc = $this->_drcRequest('AIR', $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
230
-
231
- if($drc['err_msg'] == 'OK')
232
- {
233
- $title_days = ($drc['days'] == 1) ? ' (1 day)' : ' (' . $drc['days'] . ' days)';
234
- $title = $this->getConfigData('name') . ' Air Mail' .
235
- $title_days;
236
-
237
- $method = $this->_createMethod($request, 'AIR', $title, $drc['charge'], $drc['charge']);
238
- $result->append($method);
239
- }
240
-
241
- // Express Post International
242
- $drc = $this->_drcRequest('EPI', $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
243
-
244
- if($drc['err_msg'] == 'OK')
245
- {
246
- $title_days = ($drc['days'] == 1) ? ' (1 day)' : ' (' . $drc['days'] . ' days)';
247
- $title = $this->getConfigData('name') . ' Express Post International' .
248
- $title_days;
249
-
250
- $method = $this->_createMethod($request, 'EPI', $title, $drc['charge'], $drc['charge']);
251
- $result->append($method);
252
- }
253
-
254
- // Express Courier International
255
- // TODO: Create a table for this method.
256
- }
257
-
258
- }
259
-
260
- Mage::log(print_r($result->asArray(), true), null, 'rates.log');
261
-
262
  return $result;
263
  }
264
-
265
  protected function _createMethod($request, $method_code, $title, $price, $cost)
266
  {
267
- $method = Mage::getModel('shipping/rate_result_method');
 
 
 
268
 
269
- $method->setCarrier('australiapost');
270
- $method->setCarrierTitle($this->getConfigData('title'));
271
 
272
- $method->setMethod($method_code);
273
- $method->setMethodTitle($title);
274
 
275
- $method->setPrice($this->getFinalPriceWithHandlingFee($price));
276
- $method->setCost($cost);
277
-
278
- return $method;
279
  }
280
-
281
  protected function _curl_get_file_contents($url)
282
  {
283
  $c = curl_init();
@@ -285,77 +255,65 @@ class Fontis_Australia_Model_Shipping_Carrier_Australiapost
285
  curl_setopt($c, CURLOPT_URL, $url);
286
  $contents = curl_exec($c);
287
  curl_close($c);
288
-
289
- if ($contents)
290
- {
291
  return $contents;
292
- }
293
- else
294
- {
295
  return false;
296
  }
297
  }
298
-
299
- protected function _drcRequest($service, $fromPostCode, $toPostCode, $destCountry, $weight, $length, $width, $height, $num_boxes)
300
- {
301
- // Construct the appropriate URL and send all the information
302
- // to the Australia Post DRC.
303
- $url = "http://drc.edeliver.com.au/ratecalc.asp?" .
304
- "Pickup_Postcode=" . rawurlencode($fromPostCode) .
305
- "&Destination_Postcode=" . rawurlencode($toPostCode) .
306
- "&Country=" . rawurlencode($destCountry) .
307
- "&Weight=" . rawurlencode($weight) .
308
- "&Service_Type=" . rawurlencode($service) .
309
- "&Height=" . rawurlencode($height) .
310
- "&Width=" . rawurlencode($width) .
311
- "&Length=" . rawurlencode($length) .
312
- "&Quantity=" . rawurlencode($num_boxes);
313
-
314
- if(ini_get('allow_url_fopen'))
315
- {
316
- Mage::log('Using fopen URL wrappers', null, 'fontis_australia.log');
317
  $drc_result = file($url);
318
- }
319
- else if(extension_loaded('curl'))
320
- {
321
- Mage::log('fopen URL wrappers unavailable, using curl', null, 'fontis_australia.log');
322
  try {
323
  $drc_result = $this->_curl_get_file_contents($url);
324
- } catch(Exception $e) {
325
- Mage::log($e);
326
  $drc_result = array();
327
  $drc_result['err_msg'] = 'FAIL';
328
  }
329
 
330
- $drc_result = explode("\n",$drc_result);
331
-
332
  //clean up array
333
- foreach($drc_result as $k => $vals) {
334
- if($vals == '') unset($drc_result[$k]);
 
335
  }
336
  }
337
- else
338
- {
339
- Mage::log('No download method available, could not contact DRC!', null, 'fontis_australia.log');
340
  $a = array();
341
  $a['err_msg'] = 'FAIL';
342
  return $a;
343
  }
344
- Mage::log("DRC result: " . $drc_result, null, 'fontis_australia.log');
345
-
346
- $result = array();
347
- foreach($drc_result as $vals)
348
- {
349
- $tokens = split("=", $vals);
350
- if(isset($tokens[1])) {
351
- $result[$tokens[0]] = trim($tokens[1]);
352
- } else {
353
- return array('err_msg' => 'Parsing error on Australia Post results');
354
- }
355
- }
356
-
357
- return $result;
358
- }
359
 
360
  /**
361
  * Get allowed shipping methods
@@ -367,4 +325,18 @@ class Fontis_Australia_Model_Shipping_Carrier_Australiapost
367
  return array('australiapost' => $this->getConfigData('name'));
368
  }
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  }
1
  <?php
2
+
3
  /**
4
  * Fontis Australia Extension
5
  *
26
  * @category Fontis
27
  * @package Fontis_Australia
28
  */
29
+ class Fontis_Australia_Model_Shipping_Carrier_Australiapost extends Mage_Shipping_Model_Carrier_Abstract implements Mage_Shipping_Model_Carrier_Interface
 
 
30
  {
31
 
32
  protected $_code = 'australiapost';
38
  * @return Mage_Shipping_Model_Rate_Result
39
  */
40
  public function collectRates(Mage_Shipping_Model_Rate_Request $request)
41
+ {
42
+ $allowedShippingMethods = explode(',', $this->getConfigData('shipping_methods'));
43
+
44
+ // Check if this method is active
45
+ if (!$this->getConfigFlag('active')) {
46
+ return false;
47
+ }
48
+
49
+ // Check if this method is even applicable (shipping from Australia)
50
+ $origCountry = Mage::getStoreConfig('shipping/origin/country_id', $this->getStore());
51
+
52
+ if ($origCountry != "AU") {
53
+ return false;
54
+ }
55
+
56
+ $result = Mage::getModel('shipping/rate_result');
57
+
58
+ // TODO: Add some more validations
59
+ $frompcode = Mage::getStoreConfig('shipping/origin/postcode', $this->getStore());
60
+ $topcode = $request->getDestPostcode();
61
+
62
+ if ($request->getDestCountryId()) {
63
+ $destCountry = $request->getDestCountryId();
64
+ } else {
65
+ $destCountry = "AU";
66
+ }
67
+
68
+ // Here we get the weight (and convert it to grams) and set some
69
+ // sensible defaults for other shipping parameters.
70
+ $sweight = (int) ((float) $request->getPackageWeight() * (float) $this->getConfigData('weight_units'));
71
+ $sheight = $swidth = $slength = 100;
72
+ $shipping_num_boxes = 1;
73
+
74
+ // Switch between domestic and international shipping methods based
75
+ // on destination country.
76
+ if ($destCountry == "AU") {
77
+ //============= Domestic Shipping ==================
78
+ $shipping_methods = array('STANDARD', 'EXPRESS');
79
+
80
+ foreach ($shipping_methods as $shipping_method) {
81
+ $drc = $this->_drcRequest($shipping_method, $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
82
+
83
+ if ($drc['err_msg'] == 'OK') {
84
+ // Check for registered post activation. If so, add extra options
85
+ if ($this->getConfigData('registered_post'))
86
+ if (in_array('STANDARD', $allowedShippingMethods)) {
87
+ $title = $this->getConfigData('name') . " " . ucfirst(strtolower($shipping_method));
88
+
89
+ $charge = $drc['charge'];
90
+ $charge += $this->getConfigData('registered_post_charge');
91
+
92
+ if ($this->getConfigData('person_to_person')) {
93
+ $charge += 5.50;
94
+ } elseif ($this->getConfigData('delivery_confirmation')) {
95
+ $charge += 1.85;
96
+ }
97
+
98
+ $method = $this->_createMethod($request, $shipping_method, $title, $charge, $charge);
99
+ $result->append($method);
100
+
101
+ // Insurance only covers up to $5000 worth of goods.
102
+ $packageValue = ($request->getPackageValue() > 5000) ? 5000 : $request->getPackageValue();
103
+
104
+ // Insurance cost is $1.25 per $100 or part thereof. First $100 is
105
+ // included in normal registered post costs.
106
+ $insurance = (ceil($packageValue / 100) - 1) * 1.25;
107
+
108
+ // Only add a new method if the insurance is different
109
+ if ($insurance > 0) {
110
+ $charge += $insurance;
111
+
112
+ $title = $this->getConfigData('name') . " " . ucfirst(strtolower($shipping_method)) . ' with Extra Cover';
113
+ $method = $this->_createMethod($request, $shipping_method . '_EC', $title, $charge, $charge);
114
+ $result->append($method);
115
+ }
116
+ } else {
117
+ $title = $this->getConfigData('name') . " " . ucfirst(strtolower($shipping_method));
118
+
119
+ $method = $this->_createMethod($request, $shipping_method, $title, $drc['charge'], $drc['charge']);
120
+ $result->append($method);
121
+ }
122
+ }
123
+ }
124
+ } else {
125
+ //============= International Shipping ==================
126
+ // International shipping options are highly dependent upon whether
127
+ // or not you are using registered post.
128
+
129
+ if ($this->getConfigData('registered_post')) {
130
+ //============= Registered Post ================
131
+ // Registered Post International
132
+ // Same price as Air Mail, plus $5. Extra cover is not available.
133
+ // A weight limit of 2kg applies.
134
+ // if($sweight <= 2000)
135
+ if (in_array('AIR', $allowedShippingMethods) && $sweight <= 2000) {
136
+ $drc = $this->_drcRequest('AIR', $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
137
+
138
+ if ($drc['err_msg'] == 'OK') {
139
+ $title = $this->getConfigData('name') . ' Registered Post International';
140
+
141
+ // RPI is another 5 dollars.
142
+ $charge = $drc['charge'] + 5;
143
+
144
+ if ($this->getConfigData('delivery_confirmation')) {
145
+ $charge += 3.30;
146
+ }
147
+
148
+ $charge += $this->getConfigData('registered_post_charge');
149
+
150
+ $method = $this->_createMethod($request, 'AIR', $title, $charge, $charge);
151
+ $result->append($method);
152
+ }
153
+ }
154
+
155
+ if (in_array('EPI', $allowedShippingMethods)) {
156
+ // Express Post International
157
+ $drc = $this->_drcRequest('EPI', $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
158
+
159
+ if ($drc['err_msg'] == 'OK') {
160
+ $title = $this->getConfigData('name') . ' Express Post International';
161
+
162
+ $charge = $drc['charge'];
163
+
164
+ if ($this->getConfigData('delivery_confirmation')) {
165
+ $charge += 3.30;
166
+ }
167
+
168
+ $charge += $this->getConfigData('registered_post_charge');
169
+
170
+ $method = $this->_createMethod($request, 'EPI', $title, $charge, $charge);
171
+ $result->append($method);
172
+
173
+ // Insurance only covers up to $5000 worth of goods.
174
+ $packageValue = ($request->getPackageValue() > 5000) ? 5000 : $request->getPackageValue();
175
+
176
+ // Insurance cost is $2.25 per $100 or part thereof. First $100 is $8.45.
177
+ $insurance = 8.45 + (ceil($packageValue / 100) - 1) * 1.25;
178
+ $charge += $insurance;
179
+
180
+ $title = $this->getConfigData('name') . ' Express Post International with Extra Cover';
181
+ $method = $this->_createMethod($request, 'EPI-EC', $title, $charge, $charge);
182
+ $result->append($method);
183
+ }
184
+
185
+ // Express Courier International
186
+ // TODO: Create a table for this method.
187
+ }
188
+ } else {
189
+ if (in_array('SEA', $allowedShippingMethods)) {
190
+ //============= Standard Post ================
191
+ // Sea Shipping
192
+ $drc = $this->_drcRequest('SEA', $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
193
+
194
+ if ($drc['err_msg'] == 'OK') {
195
+ $title = $this->getConfigData('name') . ' Sea Mail';
196
+
197
+ $method = $this->_createMethod($request, 'SEA', $title, $drc['charge'], $drc['charge']);
198
+ $result->append($method);
199
+ }
200
+ }
201
+
202
+
203
+ if (in_array('AIR', $allowedShippingMethods)) {
204
+ // Air Mail
205
+ $drc = $this->_drcRequest('AIR', $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
206
+
207
+ if ($drc['err_msg'] == 'OK') {
208
+ $title = $this->getConfigData('name') . ' Air Mail';
209
+
210
+ $method = $this->_createMethod($request, 'AIR', $title, $drc['charge'], $drc['charge']);
211
+ $result->append($method);
212
+ }
213
+ }
214
+
215
+ if (in_array('EPI', $allowedShippingMethods)) {
216
+ // Express Post International
217
+ $drc = $this->_drcRequest('EPI', $frompcode, $topcode, $destCountry, $sweight, $slength, $swidth, $sheight, $shipping_num_boxes);
218
+
219
+ if ($drc['err_msg'] == 'OK') {
220
+ $title = $this->getConfigData('name') . ' Express Post International';
221
+
222
+ $method = $this->_createMethod($request, 'EPI', $title, $drc['charge'], $drc['charge']);
223
+ $result->append($method);
224
+ }
225
+ }
226
+
227
+ // Express Courier International
228
+ // TODO: Create a table for this method.
229
+ }
230
+ }
231
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
  return $result;
233
  }
234
+
235
  protected function _createMethod($request, $method_code, $title, $price, $cost)
236
  {
237
+ $method = Mage::getModel('shipping/rate_result_method');
238
+
239
+ $method->setCarrier('australiapost');
240
+ $method->setCarrierTitle($this->getConfigData('title'));
241
 
242
+ $method->setMethod($method_code);
243
+ $method->setMethodTitle($title);
244
 
245
+ $method->setPrice($this->getFinalPriceWithHandlingFee($price));
246
+ $method->setCost($cost);
247
 
248
+ return $method;
 
 
 
249
  }
250
+
251
  protected function _curl_get_file_contents($url)
252
  {
253
  $c = curl_init();
255
  curl_setopt($c, CURLOPT_URL, $url);
256
  $contents = curl_exec($c);
257
  curl_close($c);
258
+
259
+ if ($contents) {
 
260
  return $contents;
261
+ } else {
 
 
262
  return false;
263
  }
264
  }
265
+
266
+ protected function _drcRequest($service, $fromPostCode, $toPostCode, $destCountry, $weight, $length, $width, $height, $num_boxes)
267
+ {
268
+ // Construct the appropriate URL and send all the information
269
+ // to the Australia Post DRC.
270
+ $url = "http://drc.edeliver.com.au/ratecalc.asp?" .
271
+ "Pickup_Postcode=" . rawurlencode($fromPostCode) .
272
+ "&Destination_Postcode=" . rawurlencode($toPostCode) .
273
+ "&Country=" . rawurlencode($destCountry) .
274
+ "&Weight=" . rawurlencode($weight) .
275
+ "&Service_Type=" . rawurlencode($service) .
276
+ "&Height=" . rawurlencode($height) .
277
+ "&Width=" . rawurlencode($width) .
278
+ "&Length=" . rawurlencode($length) .
279
+ "&Quantity=" . rawurlencode($num_boxes);
280
+
281
+ if (ini_get('allow_url_fopen')) {
 
 
282
  $drc_result = file($url);
283
+ } else if (extension_loaded('curl')) {
 
 
 
284
  try {
285
  $drc_result = $this->_curl_get_file_contents($url);
286
+ } catch (Exception $e) {
 
287
  $drc_result = array();
288
  $drc_result['err_msg'] = 'FAIL';
289
  }
290
 
291
+ $drc_result = explode("\n", $drc_result);
292
+
293
  //clean up array
294
+ foreach ($drc_result as $k => $vals) {
295
+ if ($vals == '')
296
+ unset($drc_result[$k]);
297
  }
298
  }
299
+ else {
 
 
300
  $a = array();
301
  $a['err_msg'] = 'FAIL';
302
  return $a;
303
  }
304
+
305
+ $result = array();
306
+ foreach ($drc_result as $vals) {
307
+ $tokens = explode("=", $vals);
308
+ if (isset($tokens[1])) {
309
+ $result[$tokens[0]] = trim($tokens[1]);
310
+ } else {
311
+ return array('err_msg' => 'Parsing error on Australia Post results');
312
+ }
313
+ }
314
+
315
+ return $result;
316
+ }
 
 
317
 
318
  /**
319
  * Get allowed shipping methods
325
  return array('australiapost' => $this->getConfigData('name'));
326
  }
327
 
328
+ public function getAllShippingMethods()
329
+ {
330
+ $shipping_methods = array(
331
+ 'STANDARD' => 'Registered post',
332
+ 'SEA' => 'Sea Mail',
333
+ 'AIR' => 'Air Mail',
334
+ 'EPI' => 'Express Post International',
335
+ );
336
+
337
+ // TODO: Create a table for this method.
338
+
339
+ return $shipping_methods;
340
+ }
341
+
342
  }
app/code/community/Fontis/Australia/Model/Shipping/Carrier/Eparcel.php CHANGED
@@ -70,8 +70,11 @@ class Fontis_Australia_Model_Shipping_Carrier_Eparcel
70
  $method->setCarrier('eparcel');
71
  $method->setCarrierTitle($this->getConfigData('title'));
72
 
73
- $method->setMethod($rate['delivery_type']);
74
  $method->setMethodTitle($rate['delivery_type']);
 
 
 
75
 
76
  $shippingPrice = $this->getFinalPriceWithHandlingFee($rate['price']);
77
 
@@ -94,6 +97,9 @@ class Fontis_Australia_Model_Shipping_Carrier_Eparcel
94
  $method->setMethod('bestway');
95
  $method->setMethodTitle($this->getConfigData('name'));
96
 
 
 
 
97
  $shippingPrice = $this->getFinalPriceWithHandlingFee($rates['price']);
98
 
99
  $method->setPrice($shippingPrice);
@@ -107,6 +113,30 @@ class Fontis_Australia_Model_Shipping_Carrier_Eparcel
107
  return $result;
108
  }
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  public function getRate(Mage_Shipping_Model_Rate_Request $request)
111
  {
112
  return Mage::getResourceModel('australia/shipping_carrier_eparcel')->getRate($request);
@@ -206,11 +236,35 @@ class Fontis_Australia_Model_Shipping_Carrier_Eparcel
206
  return $result;
207
  }
208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209
  /**
210
  * Event Observer. Triggered when a shipment is created.
211
  */
212
  public function sendManifest($observer)
213
  {
 
 
 
 
 
 
 
 
214
  //Mage::log('=========================================================================');
215
 
216
  $order = $observer->getEvent()->getShipment()->getOrder();
70
  $method->setCarrier('eparcel');
71
  $method->setCarrierTitle($this->getConfigData('title'));
72
 
73
+ $method->setMethod($this->_getChargeCode($rate));
74
  $method->setMethodTitle($rate['delivery_type']);
75
+
76
+ $method->setMethodChargeCodeIndividual($rate['charge_code_individual']);
77
+ $method->setMethodChargeCodeBusiness($rate['charge_code_business']);
78
 
79
  $shippingPrice = $this->getFinalPriceWithHandlingFee($rate['price']);
80
 
97
  $method->setMethod('bestway');
98
  $method->setMethodTitle($this->getConfigData('name'));
99
 
100
+ $method->setMethodChargeCodeIndividual($rates['charge_code_individual']);
101
+ $method->setMethodChargeCodeBusiness($rates['charge_code_business']);
102
+
103
  $shippingPrice = $this->getFinalPriceWithHandlingFee($rates['price']);
104
 
105
  $method->setPrice($shippingPrice);
113
  return $result;
114
  }
115
 
116
+ protected function _getChargeCode($rate)
117
+ {
118
+ /* Is this customer is in a ~business~ group ? */
119
+ $isBusinessCustomer = (
120
+ Mage::getSingleton('customer/session')->isLoggedIn()
121
+ AND
122
+ in_array(
123
+ Mage::getSingleton('customer/session')->getCustomerGroupId(),
124
+ explode(',',
125
+ Mage::getStoreConfig('doghouse_eparcelexport/charge_codes/business_groups')
126
+ )
127
+ )
128
+ );
129
+
130
+ if ($isBusinessCustomer) {
131
+ return $rate['charge_code_business'] ?:
132
+ Mage::getStoreConfig('doghouse_eparcelexport/charge_codes/default_charge_code_business');
133
+ }
134
+ else {
135
+ return $rate['charge_code_individual'] ?:
136
+ Mage::getStoreConfig('doghouse_eparcelexport/charge_codes/default_charge_code_individual');
137
+ }
138
+ }
139
+
140
  public function getRate(Mage_Shipping_Model_Rate_Request $request)
141
  {
142
  return Mage::getResourceModel('australia/shipping_carrier_eparcel')->getRate($request);
236
  return $result;
237
  }
238
 
239
+ /**
240
+ * Event Observer. Triggered before an adminhtml widget template is rendered.
241
+ * We use this to add our action to bulk actions in the sales order grid instead of overridding the class.
242
+ */
243
+ public function addExportToBulkAction($observer)
244
+ {
245
+ if (! $observer->block instanceof Mage_Adminhtml_Block_Sales_Order_Grid) {
246
+ return;
247
+ }
248
+
249
+ $observer->block->getMassactionBlock()->addItem('eparcelexport', array(
250
+ 'label' => $observer->block->__('Eparcel CSV export'),
251
+ 'url' => $observer->block->getUrl('australia/eparcel/export')
252
+ ));
253
+ }
254
+
255
  /**
256
  * Event Observer. Triggered when a shipment is created.
257
  */
258
  public function sendManifest($observer)
259
  {
260
+ /**
261
+ * As far as I can tell, this has never worked.
262
+ * I'll refactor to work is possible and integrate with new charge code management.
263
+ * @author Jonathan Melnick
264
+ */
265
+ return;
266
+
267
+
268
  //Mage::log('=========================================================================');
269
 
270
  $order = $observer->getEvent()->getShipment()->getOrder();
app/code/community/Fontis/Australia/Model/Shipping/Carrier/Eparcel/Export/Abstract.php ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Fontis_Australia
4
+ */
5
+
6
+
7
+ /**
8
+ * This abstract class is based on Slandsbek's SImple Order Export extension
9
+ * @see http://www.magentocommerce.com/magento-connect/simple-order-export.html
10
+ *
11
+ * @abstract Jonathan Melnick (http://www.dhmedia.com.au)
12
+ * @author Slandsbek (http://www.magentocommerce.com/magento-connect/developer/slandsbek)
13
+ */
14
+ abstract class Fontis_Australia_Model_Shipping_Carrier_Eparcel_Export_Abstract
15
+ extends Mage_Core_Model_Abstract
16
+ {
17
+ /**
18
+ * Returns the name of the website, store and store view the order was placed in.
19
+ *
20
+ * @param Mage_Sales_Model_Order $order The order to return info from
21
+ * @return String The name of the website, store and store view the order was placed in
22
+ */
23
+ protected function getStoreName($order)
24
+ {
25
+ $storeId = $order->getStoreId();
26
+ if (is_null($storeId)) {
27
+ return $this->getOrder()->getStoreName();
28
+ }
29
+ $store = Mage::app()->getStore($storeId);
30
+ $name = array(
31
+ $store->getWebsite()->getName(),
32
+ $store->getGroup()->getName(),
33
+ $store->getName()
34
+ );
35
+ return implode(', ', $name);
36
+ }
37
+
38
+ /**
39
+ * Returns the payment method of the given order.
40
+ *
41
+ * @param Mage_Sales_Model_Order $order The order to return info from
42
+ * @return String The name of the payment method
43
+ */
44
+ protected function getPaymentMethod($order)
45
+ {
46
+ return $order->getPayment()->getMethod();
47
+ }
48
+
49
+ /**
50
+ * Returns the shipping method of the given order.
51
+ *
52
+ * @param Mage_Sales_Model_Order $order The order to return info from
53
+ * @return String The name of the shipping method
54
+ */
55
+ protected function getShippingMethod($order)
56
+ {
57
+ if (!$order->getIsVirtual() && $order->getShippingMethod()) {
58
+ return $order->getShippingMethod();
59
+ }
60
+ return '';
61
+ }
62
+
63
+ /**
64
+ * Returns the total quantity of ordered items of the given order.
65
+ *
66
+ * @param Mage_Sales_Model_Order $order The order to return info from
67
+ * @return int The total quantity of ordered items
68
+ */
69
+ protected function getTotalQtyItemsOrdered($order) {
70
+ $qty = 0;
71
+ $orderedItems = $order->getItemsCollection();
72
+ foreach ($orderedItems as $item)
73
+ {
74
+ if (!$item->isDummy()) {
75
+ $qty += (int)$item->getQtyOrdered();
76
+ }
77
+ }
78
+ return $qty;
79
+ }
80
+
81
+ /**
82
+ * Returns the sku of the given item dependant on the product type.
83
+ *
84
+ * @param Mage_Sales_Model_Order_Item $item The item to return info from
85
+ * @return String The sku
86
+ */
87
+ protected function getItemSku($item)
88
+ {
89
+ if ($item->getProductType() == Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE) {
90
+ return $item->getProductOptionByCode('simple_sku');
91
+ }
92
+ return $item->getSku();
93
+ }
94
+
95
+ /**
96
+ * Returns the options of the given item separated by comma(s) like this:
97
+ * option1: value1, option2: value2
98
+ *
99
+ * @param Mage_Sales_Model_Order_Item $item The item to return info from
100
+ * @return String The item options
101
+ */
102
+ protected function getItemOptions($item)
103
+ {
104
+ $options = '';
105
+ if ($orderOptions = $this->getItemOrderOptions($item)) {
106
+ foreach ($orderOptions as $_option) {
107
+ if (strlen($options) > 0) {
108
+ $options .= ', ';
109
+ }
110
+ $options .= $_option['label'].': '.$_option['value'];
111
+ }
112
+ }
113
+ return $options;
114
+ }
115
+
116
+ /**
117
+ * Returns all the product options of the given item including additional_options and
118
+ * attributes_info.
119
+ *
120
+ * @param Mage_Sales_Model_Order_Item $item The item to return info from
121
+ * @return Array The item options
122
+ */
123
+ protected function getItemOrderOptions($item)
124
+ {
125
+ $result = array();
126
+ if ($options = $item->getProductOptions()) {
127
+ if (isset($options['options'])) {
128
+ $result = array_merge($result, $options['options']);
129
+ }
130
+ if (isset($options['additional_options'])) {
131
+ $result = array_merge($result, $options['additional_options']);
132
+ }
133
+ if (!empty($options['attributes_info'])) {
134
+ $result = array_merge($options['attributes_info'], $result);
135
+ }
136
+ }
137
+ return $result;
138
+ }
139
+
140
+ /**
141
+ * Calculates and returns the grand total of an item including tax and excluding
142
+ * discount.
143
+ *
144
+ * @param Mage_Sales_Model_Order_Item $item The item to return info from
145
+ * @return Float The grand total
146
+ */
147
+ protected function getItemTotal($item)
148
+ {
149
+ return $item->getRowTotal() - $item->getDiscountAmount() + $item->getTaxAmount() + $item->getWeeeTaxAppliedRowAmount();
150
+ }
151
+
152
+ /**
153
+ * Formats a price by adding the currency symbol and formatting the number
154
+ * depending on the current locale.
155
+ *
156
+ * @param Float $price The price to format
157
+ * @param Mage_Sales_Model_Order $formatter The order to format the price by implementing the method formatPriceTxt($price)
158
+ * @return String The formatted price
159
+ */
160
+ protected function formatPrice($price, $formatter)
161
+ {
162
+ return $formatter->formatPriceTxt($price);
163
+ }
164
+ }
app/code/community/Fontis/Australia/Model/Shipping/Carrier/Eparcel/Export/Csv.php ADDED
@@ -0,0 +1,303 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Fontis_Australia
4
+ */
5
+
6
+
7
+
8
+ class Fontis_Australia_Model_Shipping_Carrier_Eparcel_Export_Csv
9
+ extends Fontis_Australia_Model_Shipping_Carrier_Eparcel_Export_Abstract
10
+ {
11
+ const ENCLOSURE = '"';
12
+ const DELIMITER = ',';
13
+
14
+ const DEBUG = false;
15
+
16
+ protected $_defaults = null;
17
+
18
+ /* AUSTRALIA POST CHARGE CODES */
19
+ protected $_chargeCodes = array(
20
+
21
+ /* Domestic / Standard / Individual */
22
+
23
+ 'S1', // EPARCEL 1 Domestic
24
+ 'S2', // EPARCEL 2 Domestic
25
+ 'S3', // EPARCEL 3 Domestic
26
+ 'S4', // EPARCEL 4 Domestic
27
+ 'S5', // EPARCEL 5 Domestic
28
+ 'S6', // EPARCEL 6 Domestic
29
+ 'S7', // EPARCEL 7 Domestic
30
+ 'S8', // EPARCEL 8 Domestic
31
+
32
+ /* Domestic / Standard / Business */
33
+
34
+ 'B1', // B TO B EPARCEL 1 Domestic
35
+ 'B2', // B TO B EPARCEL 2 Domestic
36
+ 'B5', // B TO B EPARCEL 5 Domestic
37
+
38
+ /* Domestic / Express / Individual */
39
+ 'X1', // EXPRESS POST EPARCEL Domestic
40
+ 'X2', // EXPRESS POST EPARCEL 2 Domestic
41
+
42
+ /* Domestic / Express / Business */
43
+ 'XB1', // EXPRESS POST EPARCEL B2B Domestic
44
+ 'XB2', // EXPRESS POST EPARCEL B2B 2 Domestic
45
+
46
+ /* International / Standard */
47
+ 'AIR1', // INTERNATIONAL Airmail 1 International
48
+ 'AIR2', // INTERNATIONAL Airmail 2 International
49
+ 'AIR3', // INTERNATIONAL Airmail - 8 Zones International
50
+
51
+ /* International / Express */
52
+ 'EPI1', // Express Post International International
53
+ 'EPI2', // Express Post International International
54
+ 'EPI3', // Express Post International – 8 zones International
55
+
56
+ 'ECM1', // Express Courier Int’l Merchandise 1 International
57
+ 'ECM2', // Express Courier Int’l Merchandise 2 International
58
+ 'ECM3', // Express Courier Int’l Merch 8Zone International
59
+
60
+ 'ECD1', // EXPRESS COURIER INT'L DOC 1 International
61
+ 'ECD2', // EXPRESS COURIER INT'L DOC 2 International
62
+ 'ECD3', // Express Courier Int’l Doc – 8 zones International
63
+
64
+ /* Other */
65
+
66
+ 'CFR', // eParcel Call For Return Domestic
67
+ 'PR', // eParcel Post Returns Service Domestic
68
+
69
+ 'CS1', // CTC EPARCEL Domestic
70
+ 'CS4', // CTC EPARCEL Domestic
71
+ 'CS5', // CTC EPARCEL 5 Domestic
72
+ 'CS6', // CTC EPARCEL 6 Domestic
73
+ 'CS7', // CTC EPARCEL 7 Domestic
74
+ 'CS8', // CTC EPARCEL 8 Domestic
75
+
76
+ 'CX1', // CTC EXPRESS POST 500G BRK Domestic
77
+ 'CX2', // CTC EXPRESS POST MULTI BRK Domestic
78
+
79
+ 'RPI1', // Registered Post International International
80
+ );
81
+
82
+ /**
83
+ * Implementation of abstract method to export given orders to csv file in var/export.
84
+ *
85
+ * @param $orders List of orders of type Mage_Sales_Model_Order or order ids to export.
86
+ * @return String The name of the written csv file in var/export
87
+ */
88
+ public function exportOrders($orders)
89
+ {
90
+ $eparcel = new Doghouse_Australia_Eparcel();
91
+
92
+ foreach ($orders as $order) {
93
+ $order = Mage::getModel('sales/order')->load($order);
94
+
95
+ if ( ! $order->getShippingCarrier() instanceof Fontis_Australia_Model_Shipping_Carrier_Eparcel ) {
96
+ throw new Fontis_Australia_Model_Shipping_Carrier_Eparcel_Export_Exception(
97
+ "Order #" . $order->getIncrementId() . " doesn't use Australia Post's Eparcel as it's carrier!"
98
+ );
99
+ }
100
+
101
+ $orderItems = $order->getItemsCollection();
102
+ $currentParcel = $this->getNewParcel();
103
+ $consignementRecord = $this->getConsignementRecord($order,$currentParcel);
104
+
105
+ foreach ($orderItems as $item) {
106
+ /* Check item is valid */
107
+ if ( $item->isDummy() ) continue;
108
+
109
+ /* Calculate item quantity */
110
+ $itemQuantity = $item->getData('qty_ordered') - $item->getData('qty_canceled') - $item->getData('qty_shipped');
111
+
112
+ /* Check item quantity */
113
+ if ( $itemQuantity == 0 ) continue;
114
+
115
+ /*
116
+ * Populate Good Record
117
+ *
118
+ * UPDATE 2010.06.16 : Auspost support has said that we should only have ONE good record
119
+ * per consignment (though their documentation says otherwise)
120
+ *
121
+ * @var Doghouse_Australia_Eparcel_Record_Good
122
+ */
123
+ $goodRecord = new Doghouse_Australia_Eparcel_Record_Good();
124
+ $goodRecord->originCountryCode = '';
125
+ $goodRecord->hsTariffCode = '';
126
+ $goodRecord->description = str_replace(',', '', $item['name']); // remove commas
127
+ $goodRecord->productType = $this->getDefault('good/product_type');
128
+ $goodRecord->productClassification = null;
129
+ $goodRecord->quantity = $itemQuantity;
130
+ $goodRecord->weight = max($item['weight'], 0);
131
+ $goodRecord->unitValue = max($item->getData('price') + $item->getData('tax_amount'), 0);
132
+ $goodRecord->totalValue = max($goodRecord->unitValue * $goodRecord->quantity, 0);
133
+
134
+ /* We have at least one Good, yime to add the consignementRecord if not done yet */
135
+ if (! $consignementRecord->isAddedToEparcel()) {
136
+ $eparcel->addRecord($consignementRecord);
137
+ }
138
+
139
+ /* If current parcel can't fit extra item, close it, and open new parcel */
140
+ if (! $currentParcel->canAddGood($goodRecord)) {
141
+ $this->closeParcel($eparcel,$currentParcel);
142
+ $currentParcel = $this->getNewParcel();
143
+ }
144
+
145
+ /* Add item to Parcel */
146
+ $currentParcel->addGood($goodRecord);
147
+ }
148
+
149
+ $this->closeParcel($eparcel, $currentParcel);
150
+ }
151
+
152
+ if (self::DEBUG) {
153
+ throw new Fontis_Australia_Model_Shipping_Carrier_Eparcel_Export_Exception(
154
+ nl2br($this->log())
155
+ );
156
+ }
157
+
158
+ /* Save file */
159
+ $fileName = 'order_export_'.date("Ymd_His").'_eparcel.csv';
160
+ $filePath = Mage::getBaseDir('export').'/'.$fileName;
161
+
162
+ if ($eparcel->makeCsv($filePath)) {
163
+ return $filePath;
164
+ }
165
+
166
+ throw new Fontis_Australia_Model_Shipping_Carrier_Eparcel_Export_Exception(
167
+ "Unable to build .CSV file!"
168
+ );
169
+ }
170
+
171
+ protected function getNewParcel()
172
+ {
173
+ $parcel = new Doghouse_Australia_Eparcel_Parcel_Carton();
174
+
175
+ $parcel->isInsuranceRequired(true);
176
+
177
+ $parcel->weightMax = $this->getDefault('parcel/weightmax');
178
+ $parcel->width = (int) $this->getDefault('parcel/width');
179
+ $parcel->height = (int) $this->getDefault('parcel/height');
180
+ $parcel->length = (int) $this->getDefault('parcel/length');
181
+
182
+ return $parcel;
183
+ }
184
+
185
+ protected function closeParcel(Doghouse_Australia_Eparcel $eparcel, Doghouse_Australia_Eparcel_Parcel $parcel)
186
+ {
187
+ $articleRecordClass = (bool) $this->getDefault('parcel/use_cubicweight') ?
188
+ 'Doghouse_Australia_Eparcel_Record_Article_CubicWeight' :
189
+ 'Doghouse_Australia_Eparcel_Record_Article';
190
+
191
+ $goodRecords = $parcel->getGoodRecords();
192
+
193
+ if (count($goodRecords) == 0) {
194
+ return false;
195
+ }
196
+
197
+ $eparcel->addRecord(
198
+ $parcel->processArticleRecord(
199
+ new $articleRecordClass()
200
+ )
201
+ );
202
+
203
+ if ((bool) $this->getDefault('good/use_multiplegoodrecords')) {
204
+ foreach ($parcel->getGoodRecords() as $_goodRecord) {
205
+ $eparcel->addRecord($_goodRecord);
206
+ }
207
+ }
208
+ else {
209
+ $goodRecord = new Doghouse_Australia_Eparcel_Record_Good();
210
+ $goodRecord->originCountryCode = '';
211
+ $goodRecord->hsTariffCode = '';
212
+ $goodRecord->productClassification = null;
213
+ $goodRecord->quantity = 1;
214
+
215
+ foreach ($parcel->getGoodRecords() as $_goodRecord) {
216
+ /* Set product type and description */
217
+ $goodRecord->productType = $_goodRecord->productType;
218
+ $goodRecord->description = str_replace(',', '', $_goodRecord->productType); // remove commas
219
+
220
+ /* Add weight * quantity */
221
+ $goodRecord->weight += $_goodRecord->weight * $_goodRecord->quantity;
222
+ $goodRecord->unitValue += $_goodRecord->unitValue * $_goodRecord->quantity;
223
+ $goodRecord->totalValue += $_goodRecord->totalValue;
224
+ }
225
+
226
+ $eparcel->addRecord($goodRecord);
227
+ }
228
+
229
+ return true;
230
+ }
231
+
232
+
233
+ protected function getConsignementRecord(Mage_Sales_Model_Order $order, Dhmedia_AustraliaPost_Eparcel_Parcel $parcel)
234
+ {
235
+ $consignementRecord = new Doghouse_Australia_Eparcel_Record_Consignement();
236
+
237
+ $consignementRecord->chargeCode =
238
+
239
+ $consignementRecord->isSignatureRequired = (bool) $this->getDefault('consignement/is_signature_required');
240
+ $consignementRecord->addToAddressBook = (bool) $this->getDefault('consignement/add_to_address_book');
241
+ $consignementRecord->isRefPrintRequired = (bool) $this->getDefault('consignement/print_ref1');
242
+ $consignementRecord->isRef2PrintRequired = (bool) $this->getDefault('consignement/print_ref2');
243
+
244
+ /* AusPost said this was useless/pointless */
245
+ //$consignementRecord->merchantConsigneeCode = $order->getCustomerId(); // only returns if customer not anonymous
246
+
247
+ $consignementRecord->consigneeName = $order->getShippingAddress()->getName();
248
+ $consignementRecord->consigneeAddressLine1 = $order->getShippingAddress()->getStreet1();
249
+ $consignementRecord->consigneeAddressLine2 = $order->getShippingAddress()->getStreet2();
250
+ $consignementRecord->consigneeAddressLine3 = $order->getShippingAddress()->getStreet3();
251
+ $consignementRecord->consigneeAddressLine4 = $order->getShippingAddress()->getStreet4();
252
+ $consignementRecord->consigneeSuburb = $order->getShippingAddress()->getCity();
253
+ $consignementRecord->consigneeStateCode = $order->getShippingAddress()->getRegionCode();
254
+ $consignementRecord->consigneePostcode = $order->getShippingAddress()->getPostcode();
255
+ $consignementRecord->consigneeCountryCode = $order->getShippingAddress()->getCountry();
256
+ $consignementRecord->consigneePhoneNumber = $order->getShippingAddress()->getData('telephone');
257
+ $consignementRecord->ref = $order->hasInvoices() ? $order->getInvoiceCollection()->getLastItem()->getData('increment_id') : "";
258
+ $consignementRecord->ref2 = $order->getRealOrderId();
259
+
260
+ return $consignementRecord;
261
+ }
262
+
263
+ protected function _getChargeCode(Mage_Sales_Model_Order $order)
264
+ {
265
+ list ($carrierCode, $chargeCode) = explode('_', $order->getData('shipping_method'));
266
+
267
+ if ($this->_isValidChargeCode($chargeCode)) {
268
+ return $chargeCode;
269
+ }
270
+
271
+ /* Is this customer is in a ~business~ group ? */
272
+ $isBusinessCustomer = in_array(
273
+ $order->getData('customer_group_id'),
274
+ explode(',',
275
+ Mage::getStoreConfig('doghouse_eparcelexport/charge_codes/business_groups')
276
+ )
277
+ );
278
+
279
+ return $isBusinessCustomer ?
280
+ Mage::getStoreConfig('doghouse_eparcelexport/charge_codes/default_charge_code_business') :
281
+ Mage::getStoreConfig('doghouse_eparcelexport/charge_codes/default_charge_code_individual');
282
+ }
283
+
284
+ protected function _isValidChargeCode($chargeCode)
285
+ {
286
+ return in_array($chargeCode, $this->_chargeCodes);
287
+ }
288
+
289
+ protected function getDefault($key)
290
+ {
291
+ if (! is_array($this->_defaults)) {
292
+ $this->_defaults = Mage::getStoreConfig('doghouse_eparcelexport');
293
+ }
294
+
295
+ $_defaults = $this->_defaults;
296
+
297
+ foreach (explode('/',$key) as $keyPart) {
298
+ $_defaults = $_defaults[$keyPart];
299
+ }
300
+
301
+ return $_defaults;
302
+ }
303
+ }
app/code/community/Fontis/Australia/Model/Shipping/Carrier/Eparcel/Export/Exception.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Fontis_Australia_Model_Shipping_Carrier_Eparcel_Export_Exception
4
+ extends Mage_Core_Exception
5
+ {
6
+
7
+ }
app/{design/frontend/default/default/template/fontis/australia/payment/bpay/form.phtml → code/community/Fontis/Australia/Model/Shipping/Config/Shippingmethods.php} RENAMED
@@ -18,15 +18,23 @@
18
  * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
- ?>
22
- <fieldset class="form-list">
23
- <ul id="payment_form_<?php echo $this->getMethodCode(); ?>" style="display:none">
24
- <li>
25
- <?php if ($this->getMethod()->getMessage()): ?>
26
- <div class="input-box">
27
- <p><?php echo $this->getMethod()->getMessage(); ?></p>
28
- </div>
29
- <?php endif; ?>
30
- </li>
31
- </ul>
32
- </fieldset>
 
 
 
 
 
 
 
 
18
  * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
+
22
+ /**
23
+ * Australia Post allowed shipping methods
24
+ *
25
+ * @category Fontis
26
+ * @package Fontis_Australia
27
+ */
28
+ class Fontis_Australia_Model_Shipping_Config_Shippingmethods
29
+ {
30
+ public function toOptionArray()
31
+ {
32
+ $methods = Mage::getModel('Fontis_Australia_Model_Shipping_Carrier_Australiapost')->getAllShippingMethods();
33
+ foreach($methods as $key => $value)
34
+ {
35
+ $shippingMethods[] = array('value' => $key, 'label' => $value);
36
+ }
37
+
38
+ return $shippingMethods;
39
+ }
40
+ }
app/{design/frontend/default/default/template/fontis/australia/payment/bpay/info.phtml → code/community/Fontis/Australia/Model/Shopbot.php} RENAMED
@@ -14,13 +14,25 @@
14
  *
15
  * @category Fontis
16
  * @package Fontis_Australia
17
- * @author Chris Norton
18
  * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
- ?>
22
- <?php if($this->getParentBlock() && $this->getParentBlock()->getModuleName() == 'Mage_Checkout'): ?>
23
- <p><?php echo $this->getMethod()->getTitle() ?></p>
24
- <?php else: ?>
25
- <?php echo Mage::helper('australia/bpay')->bpayInfoBlock($this->getMethod()->getBillerCode(), $this->getMethod()->getRef()); ?>
26
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
14
  *
15
  * @category Fontis
16
  * @package Fontis_Australia
17
+ * @author Peter Spiller
18
  * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
+
22
+ /**
23
+ * Shopping.com data model
24
+ *
25
+ * @category Fontis
26
+ * @package Fontis_Australia
27
+ */
28
+ class Fontis_Australia_Model_Shopbot {
29
+
30
+ public $available_fields = array(
31
+ "name",
32
+ "price",
33
+ "link",
34
+ "availability",
35
+ "Price"
36
+ );
37
+
38
+ }
app/code/community/Fontis/Australia/Model/Shopbot/Cron.php CHANGED
@@ -19,168 +19,63 @@
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
- // Callback used by the Magento resource iterator walk() method. Adds a
23
- // product ID to a static array and calls addProductXmlShopBot() to
24
- // generate XML when the array reaches the batch size.
25
- function addProductXmlCallbackShopBot($args) {
26
- Fontis_Australia_Model_ShopBot_Cron::$accumulator[] = $args['row']['entity_id'];
 
 
 
 
 
 
 
 
27
 
28
- $length = count(Fontis_Australia_Model_ShopBot_Cron::$accumulator);
29
- if($length >= Fontis_Australia_Model_ShopBot_Cron::BATCH_SIZE) {
30
- addProductXmlShopBot();
31
- }
32
- }
33
-
34
- // Runs a subprocesss to create feed XML for the product IDs in the static
35
- // array, then empties the array.
36
- function addProductXmlShopBot() {
37
- $length = count(Fontis_Australia_Model_ShopBot_Cron::$accumulator);
38
- if($length > 0) {
39
- Mage::log("Fontis/Australia_Model_Shopbot_Cron: Processing product IDs " . Fontis_Australia_Model_ShopBot_Cron::$accumulator[0] .
40
- " to " . Fontis_Australia_Model_ShopBot_Cron::$accumulator[$length - 1]);
41
- $store_id = Fontis_Australia_Model_ShopBot_Cron::$store->getId();
42
-
43
- $data = shell_exec("php " . Mage::getBaseDir() . "/app/code/community/Fontis/Australia/Model/Shopbot/Child.php " .
44
- Mage::getBaseDir() . " '" . serialize(Fontis_Australia_Model_ShopBot_Cron::$accumulator) .
45
- "' " . $store_id);
46
- Fontis_Australia_Model_ShopBot_Cron::$accumulator = array();
47
-
48
- $array = json_decode($data, true);
49
-
50
- if(is_array($array)) {
51
- $codes = array();
52
- foreach($array as $prod) {
53
- Fontis_Australia_Model_ShopBot_Cron::$debugCount += 1;
54
- $product_node = Fontis_Australia_Model_ShopBot_Cron::$root_node->addChild('product');
55
- foreach($prod as $key => $val) {
56
- if($key == 'Code') {
57
- $codes[] = $val;
58
- }
59
- $product_node->addChild($key, htmlspecialchars($val));
60
- }
61
- }
62
- if(!empty($codes)) {
63
- Mage::log("Fontis/Australia_Model_Shopbot_Cron: Codes: ".implode(",", $codes));
64
- }
65
- } else {
66
- Mage::log("Fontis/Australia_Model_Shopbot_Cron: Could not unserialize to array:");
67
- Mage::log($data);
68
- Mage::log($array);
69
- }
70
-
71
- Mage::log('Fontis/Australia_Model_Shopbot_Cron: ' . strlen($data) . " characters returned");
72
- }
73
- }
74
-
75
-
76
- class Fontis_Australia_Model_ShopBot_Cron {
77
- const BATCH_SIZE = 100;
78
-
79
- public static $doc;
80
- public static $root_node;
81
- public static $store;
82
- public static $accumulator;
83
- public static $debugCount = 0;
84
-
85
- protected function _construct() {
86
- self::$accumulator = array();
87
- }
88
-
89
- protected function getPath() {
90
- $path = "";
91
- $config_path = Mage::getStoreConfig('fontis_feeds/shopbotfeed/output');
92
-
93
- if (substr($config_path, 0, 1) == "/") {
94
- $path = $config_path . '/';
95
- } else {
96
- $path = Mage::getBaseDir() . '/' . $config_path . '/';
97
- }
98
-
99
- return str_replace('//', '/', $path);
100
  }
101
 
102
- public function nonstatic() {
103
- self::update();
104
  }
105
 
106
- public static function update() {
107
- Mage::log('Fontis/Australia_Model_Shopbot_Cron: Entered update function');
108
- if (Mage::getStoreConfig('fontis_feeds/shopbotfeed/active')) {
109
- $io = new Varien_Io_File();
110
- $io->setAllowCreateFolders(true);
111
-
112
- $io->open(array('path' => self::getPath()));
113
-
114
- foreach(Mage::app()->getStores() as $store) {
115
- Mage::log('Fontis/Australia_Model_Shopbot_Cron: Processing store: ' . $store->getName());
116
- $clean_store_name = str_replace('+', '-', strtolower(urlencode($store->getName())));
117
-
118
- Fontis_Australia_Model_ShopBot_Cron::$debugCount = 0;
119
-
120
- // Write the entire products xml file:
121
- Mage::log('Fontis/Australia_Model_Shopbot_Cron: Generating All Products XML File');
122
- $products_result = self::getProductsXml($store);
123
-
124
- $filename = $clean_store_name . '-products.xml';
125
- $io->write($filename, $products_result['xml']);
126
- Mage::log("Fontis/Australia_Model_Shopbot_Cron: Wrote " . Fontis_Australia_Model_ShopBot_Cron::$debugCount
127
- . " records to " . self::getPath() . $filename);
128
  }
129
-
130
- $io->close();
131
- } else {
132
- Mage::log('Fontis/Australia_Model_Shopbot_Cron: Disabled');
133
  }
134
  }
135
 
136
- public function getProductsXml($store) {
137
- Fontis_Australia_Model_ShopBot_Cron::$store = $store;
138
-
139
- $result = array();
140
-
141
- $product = Mage::getModel('catalog/product');
142
- $products = $product->getCollection();
143
- $products->setStoreId($store);
144
- $products->addStoreFilter();
145
- $products->addAttributeToSelect('*');
146
- $products->addAttributeToFilter('status', 1);
147
- $products->addAttributeToFilter('visibility', 4);
148
-
149
- $attributes_select_array = array('name', 'price', 'image', 'status');
150
- $linkedAttributes = @unserialize(Mage::getStoreConfig('fontis_feeds/shopbotfeed/m_to_xml_attributes', $store->getId()));
151
- if(!empty($linkedAttributes)) {
152
- foreach($linkedAttributes as $la) {
153
- if (strpos($la['magento'], 'FONTIS') === false) {
154
- $attributes_select_array[] = $la['magento'];
155
- }
156
- }
157
- }
158
- Mage::log(var_export($attributes_select_array, true));
159
-
160
- $products->addAttributeToSelect($attributes_select_array, 'left');
161
-
162
- $storeUrl = $store->getBaseUrl();
163
- $shopName = $store->getName();
164
- $date = date("d-m-Y", Mage::getModel('core/date')->timestamp(time()));
165
- $time = date("h:i:s", Mage::getModel('core/date')->timestamp(time()));
166
-
167
- self::$doc = new SimpleXMLElement('<store url="' . $storeUrl. '" date="'.$date.'" time="'.$time.'" name="' . $shopName . '"></store>');
168
- self::$root_node = self::$doc->addChild('products');
169
-
170
- Mage::log('Fontis/Australia_Model_Shopbot_Cron: Iterating: ' . $products->getSize() . ' products...');
171
- Mage::getSingleton('core/resource_iterator')->walk($products->getSelect(), array('addProductXmlCallbackShopBot'));
172
-
173
- // call XML generation function one last time to process remaining batch
174
- addProductXmlShopBot();
175
- Mage::log('Fontis/Australia_Model_Shopbot_Cron: Iteration complete');
176
-
177
  $dom = new DOMDocument('1.0');
178
  $dom->preserveWhiteSpace = false;
179
  $dom->formatOutput = true;
180
- $dom_sxml = dom_import_simplexml(self::$doc);
181
  $dom_sxml = $dom->importNode($dom_sxml, true);
182
  $dom->appendChild($dom_sxml);
183
- $result['xml'] = $dom->saveXML();
184
- return $result;
 
 
 
 
 
 
 
185
  }
186
  }
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
 
22
+ class Fontis_Australia_Model_ShopBot_Cron extends Fontis_Australia_Model_FeedCronBase {
23
+
24
+ public $config_path = 'shopbotfeed';
25
+ public $generate_categories = false;
26
+ protected $doc;
27
+ protected $root_node;
28
+ protected $required_fields = array(
29
+ "name" => "name",
30
+ "final_price" => "price",
31
+ "link" => "link",
32
+ "availability" => "availability",
33
+ "price" => "Price"
34
+ );
35
 
36
+ public static function update() {
37
+ // Static launcher fopr Magento's cron logic
38
+ $obj = new self();
39
+ $obj->generateFeed();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  }
41
 
42
+ protected function setupStoreData() {
43
+ $this->doc = new SimpleXMLElement('<store url="' . $this->info("store_url") . '" date="'. $this->info("date") .'" time="'. $this->info("time") .'" name="' . $this->info("shop_name") . '"></store>');
44
  }
45
 
46
+ protected function populateFeedWithBatchData($batch_data) {
47
+ $fields = $this->collectAttributeMapping();
48
+ $this->root_node = $this->doc->addChild('products');
49
+ foreach($batch_data as $product) {
50
+ $product_node = $this->root_node->addChild('product');
51
+ foreach($fields as $key => $feed_tag) {
52
+ //$this->log("Mapping $key to $feed_tag with value: ".(substr($product[$key], 0, 20)));
53
+ // remove carriage returns or HTML tags
54
+ $safe_string = strip_tags($product[$key]);
55
+ $safe_string = preg_replace("/\s*\n\s*/", " ", $safe_string);
56
+ // ...we also need to make it XML safe
57
+ $safe_string = htmlspecialchars($safe_string);
58
+ $product_node->addChild($feed_tag, $safe_string);
 
 
 
 
 
 
 
 
 
59
  }
 
 
 
 
60
  }
61
  }
62
 
63
+ protected function finaliseStoreData() {
64
+ // Use DOM to nicely format XML
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  $dom = new DOMDocument('1.0');
66
  $dom->preserveWhiteSpace = false;
67
  $dom->formatOutput = true;
68
+ $dom_sxml = dom_import_simplexml($this->doc);
69
  $dom_sxml = $dom->importNode($dom_sxml, true);
70
  $dom->appendChild($dom_sxml);
71
+ //$this->log("Generated XML:\n".$dom->saveXML());
72
+
73
+ // Write dom to file
74
+ $filename = $this->info("clean_store_name") . '-products.xml';
75
+ $io = new Varien_Io_File();
76
+ $io->setAllowCreateFolders(true);
77
+ $io->open(array('path' => $this->getPath()));
78
+ $io->write($filename, $dom->saveXML());
79
+ $io->close();
80
  }
81
  }
app/code/community/Fontis/Australia/Model/Shoppingdotcom.php ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Peter Spiller
18
+ * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ /**
23
+ * Shopping.com data model
24
+ *
25
+ * @category Fontis
26
+ * @package Fontis_Australia
27
+ */
28
+ class Fontis_Australia_Model_ShoppingDotCom {
29
+
30
+ public $available_fields = array(
31
+ "Merchant_SKU",
32
+ "MPN",
33
+ "UPC",
34
+ "EAN",
35
+ "ISBN",
36
+ "Manufacturer",
37
+ "Product_Name",
38
+ "Product_URL",
39
+ "Mobile_URL",
40
+ "Current_Price",
41
+ "Original_Price",
42
+ "Category_ID",
43
+ "Category_Name",
44
+ "Sub-category_Name",
45
+ "Parent_SKU",
46
+ "Parent_Name",
47
+ "Product_Description",
48
+ "Stock_Description",
49
+ "Product_Bullet_Point_1",
50
+ "Product_Bullet_Point_2",
51
+ "Product_Bullet_Point_3",
52
+ "Product_Bullet_Point_4",
53
+ "Product_Bullet_Point_5",
54
+ "Image_URL",
55
+ "Alternative_Image_URL_1",
56
+ "Alternative_Image_URL_2",
57
+ "Alternative_Image_URL_3",
58
+ "Alternative_Image_URL_4",
59
+ "Alternative_Image_URL_5",
60
+ "Product_Type",
61
+ "Style",
62
+ "Condition",
63
+ "Gender",
64
+ "Department",
65
+ "Age_Range",
66
+ "Color",
67
+ "Material",
68
+ "Format",
69
+ "Team",
70
+ "League",
71
+ "Fan_Gear_Type",
72
+ "Software_Platform",
73
+ "Software_Type",
74
+ "Watch_Display_Type",
75
+ "Cell_Phone_Type",
76
+ "Cell_Phone_Service_Provider",
77
+ "Cell_Phone_Plan_Type",
78
+ "Usage_Profile",
79
+ "Size",
80
+ "Size_Unit_of_Measure",
81
+ "Product_Length",
82
+ "Length_Unit_of_Measure",
83
+ "Product_Width",
84
+ "Width_Unit_of_Measure",
85
+ "Product_Height",
86
+ "Height_Unit_of_Measure",
87
+ "Product_Weight",
88
+ "Weight_Unit_of_Measure",
89
+ "Unit_Price",
90
+ "Top_Seller_Rank",
91
+ "Product_Launch_Date",
92
+ "Stock_Availability",
93
+ "Shipping_Rate",
94
+ "Shipping_Weight",
95
+ "Zip_Code",
96
+ "Estimated_Ship_Date",
97
+ "Coupon_Code",
98
+ "Coupon_Code_Description",
99
+ "Merchandising_Type",
100
+ "Bundle",
101
+ "Related_Products",
102
+ );
103
+
104
+ }
app/code/community/Fontis/Australia/Model/Shoppingdotcom/Cron.php ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com and you will be sent a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Peter Spiller
18
+ * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ class Fontis_Australia_Model_ShoppingDotCom_Cron extends Fontis_Australia_Model_FeedCronBase {
23
+
24
+ public $config_path = 'shoppingdotcomfeed';
25
+ public $generate_categories = false;
26
+ protected $doc;
27
+ protected $required_fields = array(
28
+ "name" => "Product_Name",
29
+ "link" => "Product_URL",
30
+ "image_url" => "Image_URL",
31
+ "final_price" => "Current_Price",
32
+ "sku" => "Merchant_SKU",
33
+ "manufacturer_name" => "Manufacturer",
34
+ "description" => "Product_Description",
35
+ "is_salable" => "Stock_Availability"
36
+ );
37
+
38
+ public static function update() {
39
+ // Static launcher fopr Magento's cron logic
40
+ $obj = new self();
41
+ $obj->generateFeed();
42
+ }
43
+
44
+ protected function setupStoreData() {
45
+ $this->doc = new SimpleXMLElement('<products></products>');
46
+ }
47
+
48
+ protected function populateFeedWithBatchData($batch_data) {
49
+ $fields = $this->collectAttributeMapping();
50
+
51
+ foreach($batch_data as $product) {
52
+ $product_node = $this->doc->addChild('product');
53
+ foreach($fields as $key => $feed_tag) {
54
+ //$this->log("Mapping $key to $feed_tag with value: ".(substr($product[$key], 0, 20)));
55
+ if (strstr($feed_tag, "_Price") != false) {
56
+ // Prices require two decimal places and a $ sign.
57
+ $safe_string = sprintf('$%.2f', $product[$key]);
58
+ } else {
59
+ // Shopping.Com requires no carriage returns or HTML tags in their feed...
60
+ $safe_string = strip_tags($product[$key]);
61
+ $safe_string = preg_replace("/\s*\n\s*/", " ", $safe_string);
62
+ // ...we also need to make it XML safe
63
+ $safe_string = htmlspecialchars($safe_string);
64
+ }
65
+ $product_node->addChild($feed_tag, $safe_string);
66
+ }
67
+ }
68
+ }
69
+
70
+ protected function finaliseStoreData() {
71
+ // Use DOM to nicely format XML
72
+ $dom = new DOMDocument('1.0');
73
+ $dom->preserveWhiteSpace = false;
74
+ $dom->formatOutput = true;
75
+ $dom_sxml = dom_import_simplexml($this->doc);
76
+ $dom_sxml = $dom->importNode($dom_sxml, true);
77
+ $dom->appendChild($dom_sxml);
78
+ //$this->log("Generated XML:\n".$dom->saveXML());
79
+
80
+ // Write dom to file
81
+ $filename = $this->info('clean_store_name') . '-products.xml';
82
+ $io = new Varien_Io_File();
83
+ $io->setAllowCreateFolders(true);
84
+ $io->open(array('path' => $this->getPath()));
85
+ $io->write($filename, $dom->saveXML());
86
+ $io->close();
87
+ }
88
+
89
+ }
app/code/community/Fontis/Australia/controllers/EparcelController.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Fontis_Australia
4
+ */
5
+
6
+ /**
7
+ * Controller handling order export requests.
8
+ */
9
+ class Fontis_Australia_EparcelController extends Mage_Adminhtml_Controller_Action
10
+ {
11
+ /**
12
+ * Export Orders to CSV
13
+ *
14
+ * This action exports orders to a CSV file and downloads the file.
15
+ * The orders to be exported depend on the HTTP POST param "order_ids".
16
+ */
17
+ public function exportAction()
18
+ {
19
+ $orders = $this->getRequest()->getPost('order_ids', array());
20
+
21
+ try
22
+ {
23
+ /* Build the CSV and retrieve its path */
24
+ $filePath = Mage::getModel('australia/shipping_carrier_eparcel_export_csv')->exportOrders($orders);
25
+
26
+ /* Download the file */
27
+ $this->_prepareDownloadResponse( basename($filePath), file_get_contents($filePath) );
28
+ }
29
+ catch(Fontis_Australia_Model_Shipping_Carrier_Eparcel_Export_Exception $e)
30
+ {
31
+ Mage::getSingleton('core/session')->addError($e->getMessage());
32
+
33
+ $this->_redirect('adminhtml/sales_order/index');
34
+ }
35
+ catch(Exception $e)
36
+ {
37
+ Mage::getSingleton('core/session')->addError('An error occurred. ' . $e->getMessage());
38
+
39
+ $this->_redirect('adminhtml/sales_order/index');
40
+ }
41
+ }
42
+ }
app/code/community/Fontis/Australia/etc/config.xml CHANGED
@@ -23,17 +23,23 @@
23
  <config>
24
  <modules>
25
  <Fontis_Australia>
26
- <version>2.0.7</version>
27
  <depends>
28
  <Mage_Shipping />
29
  <Mage_Payment />
30
- <Mage_Paygate />
31
- <Mage_Checkout />
32
  </depends>
33
  </Fontis_Australia>
34
  </modules>
35
  <crontab>
36
  <jobs>
 
 
 
 
 
 
 
 
37
  <Fontis_Australia_Myshopping>
38
  <schedule>
39
  <cron_expr>0 0 * * *</cron_expr>
@@ -58,72 +64,87 @@
58
  <model>australia/getprice_cron::update</model>
59
  </run>
60
  </Fontis_Australia_Getprice>
 
 
 
 
 
 
 
 
61
  </jobs>
62
  </crontab>
63
  <global>
64
- <models>
65
- <australia>
66
- <class>Fontis_Australia_Model</class>
67
- <resourceModel>australia_mysql4</resourceModel>
68
- </australia>
69
- <australia_mysql4>
70
- <class>Fontis_Australia_Model_Mysql4</class>
71
- <entities>
72
- <eparcel>
73
- <table>australia_eparcel</table>
74
- </eparcel>
75
- </entities>
76
- </australia_mysql4>
77
- </models>
78
- <helpers>
79
- <australia>
80
- <class>Fontis_Australia_Helper</class>
81
- </australia>
82
- </helpers>
83
- <blocks>
84
- <australia>
85
- <class>Fontis_Australia_Block</class>
86
- </australia>
87
- </blocks>
88
- <resources>
89
- <australia_setup>
90
- <setup>
91
- <module>Fontis_Australia</module>
92
- </setup>
93
- <connection>
94
- <use>directory_setup</use>
95
- </connection>
96
- </australia_setup>
97
- <australia_write>
98
- <connection>
99
- <use>core_write</use>
100
- </connection>
101
- </australia_write>
102
- <australia_read>
103
- <connection>
104
- <use>core_read</use>
105
- </connection>
106
- </australia_read>
107
- </resources>
108
- <sales>
109
- <shipping>
110
- <carriers>
111
- <australiapost>
112
- <class>Fontis_Australia_Model_Shipping_Carrier_Australiapost</class>
113
- </australiapost>
114
- </carriers>
115
- </shipping>
116
- <tax>
117
- <methods>
118
- <gst>
119
- <class>Fontis_Australia_Model_Tax_Gst</class>
120
- </gst>
121
- </methods>
122
- </tax>
 
 
 
123
  <order>
124
  <statuses>
125
- <pending_bpay translate="label"><label>Pending BPAY</label></pending_bpay>
126
- <pending_deposit translate="label"><label>Pending Direct Deposit</label></pending_deposit>
 
 
 
 
127
  </statuses>
128
  <states>
129
  <new>
@@ -134,18 +155,27 @@
134
  </new>
135
  </states>
136
  </order>
137
- </sales>
138
- <events>
139
- <sales_order_shipment_save_after>
140
- <observers>
141
- <fontis_australia_shipment_save>
142
- <type>singleton</type>
143
- <class>australia/shipping_carrier_eparcel</class>
144
- <method>sendManifest</method>
145
- </fontis_australia_shipment_save>
146
- </observers>
147
- </sales_order_shipment_save_after>
148
- </events>
 
 
 
 
 
 
 
 
 
149
  </global>
150
  <frontend>
151
  <routers>
@@ -157,48 +187,47 @@
157
  </args>
158
  </australia>
159
  </routers>
160
- <layout>
161
- <updates>
162
- <australia module="Fontis_Australia">
163
- <file>fontis_australia.xml</file>
164
- </australia>
165
- </updates>
166
- </layout>
167
  </frontend>
168
- <default>
169
- <carriers>
170
- <australiapost>
171
- <active>0</active>
172
- <sallowspecific>0</sallowspecific>
173
- <model>australia/shipping_carrier_australiapost</model>
174
- <title>Australia Post</title>
175
- <name></name>
176
- <weight_units>1000</weight_units>
177
- <registered_post>0</registered_post>
178
- <registered_post_charge>2.75</registered_post_charge>
179
- <delivery_confirmation>0</delivery_confirmation>
180
- <person_to_person>0</person_to_person>
181
- </australiapost>
182
- <eparcel>
183
- <active>0</active>
184
- <sallowspecific>0</sallowspecific>
185
- <condition_name>package_weight</condition_name>
186
- <model>australia/shipping_carrier_eparcel</model>
187
- <name>eParcel</name>
188
- <title>Australia Post eParcel</title>
189
- <sallowspecific>1</sallowspecific>
190
- <specificcountry>AU</specificcountry>
191
- <specificerrmsg>This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.</specificerrmsg>
192
- <handling_type>F</handling_type>
193
- <merchant_location_id>AWV</merchant_location_id>
194
- <charge_code>S2</charge_code>
195
- <post_charge_account>1234567</post_charge_account>
196
- <signature_required>0</signature_required>
197
  <signature_cost>6.44</signature_cost>
198
  <insurance_step>100.0</insurance_step>
199
  <insurance_cost_per_step>1.05</insurance_cost_per_step>
200
- </eparcel>
201
- </carriers>
202
 
203
  <payment>
204
  <bpay>
@@ -218,7 +247,7 @@
218
  <model>australia/payment_directdeposit</model>
219
  <order_status>pending</order_status>
220
  <customer_group_access>0</customer_group_access>
221
- <customer_group>0</customer_group>
222
  <title>Direct Deposit</title>
223
  <account_name></account_name>
224
  <account_bsb>000000</account_bsb>
@@ -229,8 +258,12 @@
229
  </payment>
230
 
231
  <fontis_feeds>
 
 
 
 
232
  <getpricefeed>
233
- <output>getprice-feeds</output>
234
  <defaultcategory>Products</defaultcategory>
235
  <include_all_products>1</include_all_products>
236
  <currency>AUS</currency>
@@ -239,14 +272,17 @@
239
  <output>shopbot-feeds/</output>
240
  <defaultcategory>Products</defaultcategory>
241
  <include_all_products>1</include_all_products>
242
- <m_to_xml_attributes>a:4:{s:18:"_1260239763475_475";a:2:{s:7:"magento";s:12:"manufacturer";s:7:"xmlfeed";s:5:"brand";}s:18:"_1260241020747_747";a:2:{s:7:"magento";s:11:"description";s:7:"xmlfeed";s:11:"description";}s:18:"_1260413375112_112";a:2:{s:7:"magento";s:15:"FONTIS-category";s:7:"xmlfeed";s:8:"category";}s:18:"_1260420319241_241";a:2:{s:7:"magento";s:17:"FONTIS-image-link";s:7:"xmlfeed";s:5:"image";}}</m_to_xml_attributes>
243
  </shopbotfeed>
244
- <myshopping>
245
  <output>myshopping-feeds/</output>
246
  <defaultcategory>Products</defaultcategory>
247
  <include_all_products>1</include_all_products>
248
- <m_to_xml_attributes>a:4:{s:18:"_1260239763475_475";a:2:{s:7:"magento";s:12:"manufacturer";s:7:"xmlfeed";s:5:"brand";}s:18:"_1260241020747_747";a:2:{s:7:"magento";s:11:"description";s:7:"xmlfeed";s:11:"description";}s:18:"_1260413375112_112";a:2:{s:7:"magento";s:15:"FONTIS-category";s:7:"xmlfeed";s:8:"category";}s:18:"_1260420319241_241";a:2:{s:7:"magento";s:17:"FONTIS-image-link";s:7:"xmlfeed";s:5:"image";}}</m_to_xml_attributes>
249
- </myshopping>
 
 
 
 
250
  </fontis_feeds>
251
  </default>
252
  <adminhtml>
@@ -267,6 +303,9 @@
267
  <fontis_feeds>
268
  <title>Feeds</title>
269
  </fontis_feeds>
 
 
 
270
  </children>
271
  </config>
272
  </children>
23
  <config>
24
  <modules>
25
  <Fontis_Australia>
26
+ <version>2.2.4</version>
27
  <depends>
28
  <Mage_Shipping />
29
  <Mage_Payment />
 
 
30
  </depends>
31
  </Fontis_Australia>
32
  </modules>
33
  <crontab>
34
  <jobs>
35
+ <Fontis_Australia_Shoppingdotcom>
36
+ <schedule>
37
+ <cron_expr>0 0 * * *</cron_expr>
38
+ </schedule>
39
+ <run>
40
+ <model>australia/shoppingdotcom_cron::update</model>
41
+ </run>
42
+ </Fontis_Australia_Shoppingdotcom>
43
  <Fontis_Australia_Myshopping>
44
  <schedule>
45
  <cron_expr>0 0 * * *</cron_expr>
64
  <model>australia/getprice_cron::update</model>
65
  </run>
66
  </Fontis_Australia_Getprice>
67
+ <Fontis_Australia_Googleproducts>
68
+ <schedule>
69
+ <cron_expr>0 0 * * *</cron_expr>
70
+ </schedule>
71
+ <run>
72
+ <model>australia/googleproducts_cron::update</model>
73
+ </run>
74
+ </Fontis_Australia_Googleproducts>
75
  </jobs>
76
  </crontab>
77
  <global>
78
+ <models>
79
+ <australia>
80
+ <class>Fontis_Australia_Model</class>
81
+ <resourceModel>australia_mysql4</resourceModel>
82
+ </australia>
83
+ <australia_mysql4>
84
+ <class>Fontis_Australia_Model_Mysql4</class>
85
+ <entities>
86
+ <australia_postcode>
87
+ <table>australia_postcode</table>
88
+ </australia_postcode>
89
+ <eparcel>
90
+ <table>australia_eparcel</table>
91
+ </eparcel>
92
+ </entities>
93
+ </australia_mysql4>
94
+ </models>
95
+ <helpers>
96
+ <australia>
97
+ <class>Fontis_Australia_Helper</class>
98
+ </australia>
99
+ </helpers>
100
+ <blocks>
101
+ <australia>
102
+ <class>Fontis_Australia_Block</class>
103
+ </australia>
104
+ </blocks>
105
+ <resources>
106
+ <australia_setup>
107
+ <setup>
108
+ <module>Fontis_Australia</module>
109
+ </setup>
110
+ <connection>
111
+ <use>directory_setup</use>
112
+ </connection>
113
+ </australia_setup>
114
+ <australia_write>
115
+ <connection>
116
+ <use>core_write</use>
117
+ </connection>
118
+ </australia_write>
119
+ <australia_read>
120
+ <connection>
121
+ <use>core_read</use>
122
+ </connection>
123
+ </australia_read>
124
+ </resources>
125
+ <sales>
126
+ <shipping>
127
+ <carriers>
128
+ <australiapost>
129
+ <class>Fontis_Australia_Model_Shipping_Carrier_Australiapost</class>
130
+ </australiapost>
131
+ </carriers>
132
+ </shipping>
133
+ <tax>
134
+ <methods>
135
+ <gst>
136
+ <class>Fontis_Australia_Model_Tax_Gst</class>
137
+ </gst>
138
+ </methods>
139
+ </tax>
140
  <order>
141
  <statuses>
142
+ <pending_bpay translate="label">
143
+ <label>Pending BPAY</label>
144
+ </pending_bpay>
145
+ <pending_deposit translate="label">
146
+ <label>Pending Direct Deposit</label>
147
+ </pending_deposit>
148
  </statuses>
149
  <states>
150
  <new>
155
  </new>
156
  </states>
157
  </order>
158
+ </sales>
159
+ <events>
160
+ <sales_order_shipment_save_after>
161
+ <observers>
162
+ <fontis_australia_shipment_save>
163
+ <type>singleton</type>
164
+ <class>australia/shipping_carrier_eparcel</class>
165
+ <method>sendManifest</method>
166
+ </fontis_australia_shipment_save>
167
+ </observers>
168
+ </sales_order_shipment_save_after>
169
+ <adminhtml_block_html_before>
170
+ <observers>
171
+ <fontis_australia_shipment_eparcel_export_bulkaction>
172
+ <type>singleton</type>
173
+ <class>australia/shipping_carrier_eparcel</class>
174
+ <method>addExportToBulkAction</method>
175
+ </fontis_australia_shipment_eparcel_export_bulkaction>
176
+ </observers>
177
+ </adminhtml_block_html_before>
178
+ </events>
179
  </global>
180
  <frontend>
181
  <routers>
187
  </args>
188
  </australia>
189
  </routers>
190
+ <layout>
191
+ <updates>
192
+ <australia module="Fontis_Australia">
193
+ <file>fontis_australia.xml</file>
194
+ </australia>
195
+ </updates>
196
+ </layout>
197
  </frontend>
198
+ <default>
199
+ <carriers>
200
+ <australiapost>
201
+ <active>0</active>
202
+ <sallowspecific>0</sallowspecific>
203
+ <model>australia/shipping_carrier_australiapost</model>
204
+ <title>Australia Post</title>
205
+ <name></name>
206
+ <weight_units>1000</weight_units>
207
+ <registered_post>0</registered_post>
208
+ <registered_post_charge>2.75</registered_post_charge>
209
+ <delivery_confirmation>0</delivery_confirmation>
210
+ <person_to_person>0</person_to_person>
211
+ </australiapost>
212
+ <eparcel>
213
+ <active>0</active>
214
+ <sallowspecific>0</sallowspecific>
215
+ <condition_name>package_weight</condition_name>
216
+ <model>australia/shipping_carrier_eparcel</model>
217
+ <name>eParcel</name>
218
+ <title>Australia Post eParcel</title>
219
+ <sallowspecific>1</sallowspecific>
220
+ <specificcountry>AU</specificcountry>
221
+ <specificerrmsg>This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.</specificerrmsg>
222
+ <handling_type>F</handling_type>
223
+ <merchant_location_id>AWV</merchant_location_id>
224
+ <post_charge_account>1234567</post_charge_account>
225
+ <signature_required>0</signature_required>
 
226
  <signature_cost>6.44</signature_cost>
227
  <insurance_step>100.0</insurance_step>
228
  <insurance_cost_per_step>1.05</insurance_cost_per_step>
229
+ </eparcel>
230
+ </carriers>
231
 
232
  <payment>
233
  <bpay>
247
  <model>australia/payment_directdeposit</model>
248
  <order_status>pending</order_status>
249
  <customer_group_access>0</customer_group_access>
250
+ <customer_group>0</customer_group>
251
  <title>Direct Deposit</title>
252
  <account_name></account_name>
253
  <account_bsb>000000</account_bsb>
258
  </payment>
259
 
260
  <fontis_feeds>
261
+ <shoppingdotcomfeed>
262
+ <output>shoppingdotcom-feeds/</output>
263
+ <include_all_products>1</include_all_products>
264
+ </shoppingdotcomfeed>
265
  <getpricefeed>
266
+ <output>getprice-feeds/</output>
267
  <defaultcategory>Products</defaultcategory>
268
  <include_all_products>1</include_all_products>
269
  <currency>AUS</currency>
272
  <output>shopbot-feeds/</output>
273
  <defaultcategory>Products</defaultcategory>
274
  <include_all_products>1</include_all_products>
 
275
  </shopbotfeed>
276
+ <myshoppingfeed>
277
  <output>myshopping-feeds/</output>
278
  <defaultcategory>Products</defaultcategory>
279
  <include_all_products>1</include_all_products>
280
+ </myshoppingfeed>
281
+ <googleproductsfeed>
282
+ <output>googleproducts-feeds/</output>
283
+ <include_all_products>1</include_all_products>
284
+ <default_condition>new</default_condition>
285
+ </googleproductsfeed>
286
  </fontis_feeds>
287
  </default>
288
  <adminhtml>
303
  <fontis_feeds>
304
  <title>Feeds</title>
305
  </fontis_feeds>
306
+ <doghouse_eparcelexport>
307
+ <title>Eparcel Export</title>
308
+ </doghouse_eparcelexport>
309
  </children>
310
  </config>
311
  </children>
app/code/community/Fontis/Australia/etc/system.xml CHANGED
@@ -56,6 +56,17 @@
56
  <show_in_store>1</show_in_store>
57
  <comment>Shown before each shipping method</comment>
58
  </name>
 
 
 
 
 
 
 
 
 
 
 
59
  <handling_type translate="label">
60
  <label>Calculate Handling Fee</label>
61
  <frontend_type>select</frontend_type>
@@ -210,15 +221,6 @@
210
  <show_in_store>1</show_in_store>
211
  <comment>Provided by Australia Post. The unique ID specifying a specific merchant location.</comment>
212
  </merchant_location_id>
213
- <charge_code translate="label">
214
- <label>Charge Code</label>
215
- <frontend_type>text</frontend_type>
216
- <sort_order>10</sort_order>
217
- <show_in_default>1</show_in_default>
218
- <show_in_website>1</show_in_website>
219
- <show_in_store>1</show_in_store>
220
- <comment>This is an alphanumeric code which identifies the service being used and is supplied by Australia Post.</comment>
221
- </charge_code>
222
  <post_charge_account translate="label">
223
  <label>Post Charge To Account</label>
224
  <frontend_type>text</frontend_type>
@@ -729,6 +731,64 @@
729
  <show_in_website>1</show_in_website>
730
  <show_in_store>1</show_in_store>
731
  <groups>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
732
  <getpricefeed>
733
  <label>GetPrice</label>
734
  <frontend_type>text</frontend_type>
@@ -767,7 +827,7 @@
767
  <comment>Products with this selected attribute and where the attribute resolves to true for the product will be excluded from the feed if inclusion is set to default (see above option). Otherwise products will only be included if this attribute is available for the product and the attribute resolves to true when inclusion by default is turned off (see above option).</comment>
768
  </custom_filter_attribute>
769
  <output translate="label">
770
- <label>Output Filename</label>
771
  <frontend_type>text</frontend_type>
772
  <sort_order>4</sort_order>
773
  <show_in_default>1</show_in_default>
@@ -801,6 +861,16 @@
801
  <show_in_website>1</show_in_website>
802
  <show_in_store>0</show_in_store>
803
  </currency>
 
 
 
 
 
 
 
 
 
 
804
  </fields>
805
  </getpricefeed>
806
  <shopbotfeed>
@@ -937,7 +1007,277 @@
937
  </m_to_xml_attributes>
938
  </fields>
939
  </myshoppingfeed>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
940
  </groups>
941
  </fontis_feeds>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
942
  </sections>
943
  </config>
56
  <show_in_store>1</show_in_store>
57
  <comment>Shown before each shipping method</comment>
58
  </name>
59
+
60
+ <shipping_methods translate="label">
61
+ <label>Allowed Shipping Methods</label>
62
+ <frontend_type>multiselect</frontend_type>
63
+ <source_model>australia/shipping_config_shippingmethods</source_model>
64
+ <sort_order>3</sort_order>
65
+ <show_in_default>1</show_in_default>
66
+ <show_in_website>1</show_in_website>
67
+ <show_in_store>1</show_in_store>
68
+ </shipping_methods>
69
+
70
  <handling_type translate="label">
71
  <label>Calculate Handling Fee</label>
72
  <frontend_type>select</frontend_type>
221
  <show_in_store>1</show_in_store>
222
  <comment>Provided by Australia Post. The unique ID specifying a specific merchant location.</comment>
223
  </merchant_location_id>
 
 
 
 
 
 
 
 
 
224
  <post_charge_account translate="label">
225
  <label>Post Charge To Account</label>
226
  <frontend_type>text</frontend_type>
731
  <show_in_website>1</show_in_website>
732
  <show_in_store>1</show_in_store>
733
  <groups>
734
+ <shoppingdotcomfeed>
735
+ <label>Shopping.Com</label>
736
+ <frontend_type>text</frontend_type>
737
+ <sort_order>-1</sort_order>
738
+ <show_in_default>1</show_in_default>
739
+ <show_in_website>1</show_in_website>
740
+ <show_in_store>1</show_in_store>
741
+ <fields>
742
+ <active translate="label">
743
+ <label>Enabled</label>
744
+ <frontend_type>select</frontend_type>
745
+ <source_model>adminhtml/system_config_source_yesno</source_model>
746
+ <sort_order>1</sort_order>
747
+ <show_in_default>1</show_in_default>
748
+ <show_in_website>1</show_in_website>
749
+ <show_in_store>0</show_in_store>
750
+ </active>
751
+ <include_all_products translate="label">
752
+ <label>Include products by default</label>
753
+ <frontend_type>select</frontend_type>
754
+ <source_model>adminhtml/system_config_source_yesno</source_model>
755
+ <sort_order>2</sort_order>
756
+ <show_in_default>1</show_in_default>
757
+ <show_in_website>1</show_in_website>
758
+ <show_in_store>0</show_in_store>
759
+ <comment>If 'yes', products will be included by default and excluded if the override attribute resolves true for the product. If 'no', products will be excluded by default and only included if the override attribute resolves true for the product.</comment>
760
+ </include_all_products>
761
+ <custom_filter_attribute translate="label">
762
+ <label>Override individual products with attribute</label>
763
+ <frontend_type>select</frontend_type>
764
+ <source_model>australia/config_productAttributes</source_model>
765
+ <sort_order>3</sort_order>
766
+ <show_in_default>1</show_in_default>
767
+ <show_in_website>1</show_in_website>
768
+ <show_in_store>1</show_in_store>
769
+ <comment>Products with this selected attribute and where the attribute resolves to true for the product will be excluded from the feed if inclusion is set to default (see above option). Otherwise products will only be included if this attribute is available for the product and the attribute resolves to true when inclusion by default is turned off (see above option).</comment>
770
+ </custom_filter_attribute>
771
+ <output translate="label">
772
+ <label>Output Path</label>
773
+ <frontend_type>text</frontend_type>
774
+ <sort_order>4</sort_order>
775
+ <show_in_default>1</show_in_default>
776
+ <show_in_website>1</show_in_website>
777
+ <show_in_store>1</show_in_store>
778
+ <comment>XML files will be generated into this path.</comment>
779
+ </output>
780
+ <m_to_xml_attributes translate="comment">
781
+ <label>Optional attributes to include in product feed</label>
782
+ <frontend_model>fontis_australia_block_shoppingdotcom</frontend_model>
783
+ <backend_model>adminhtml/system_config_backend_serialized_array</backend_model>
784
+ <sort_order>25</sort_order>
785
+ <show_in_default>1</show_in_default>
786
+ <show_in_website>1</show_in_website>
787
+ <show_in_store>1</show_in_store>
788
+ <comment></comment>
789
+ </m_to_xml_attributes>
790
+ </fields>
791
+ </shoppingdotcomfeed>
792
  <getpricefeed>
793
  <label>GetPrice</label>
794
  <frontend_type>text</frontend_type>
827
  <comment>Products with this selected attribute and where the attribute resolves to true for the product will be excluded from the feed if inclusion is set to default (see above option). Otherwise products will only be included if this attribute is available for the product and the attribute resolves to true when inclusion by default is turned off (see above option).</comment>
828
  </custom_filter_attribute>
829
  <output translate="label">
830
+ <label>Output Path</label>
831
  <frontend_type>text</frontend_type>
832
  <sort_order>4</sort_order>
833
  <show_in_default>1</show_in_default>
861
  <show_in_website>1</show_in_website>
862
  <show_in_store>0</show_in_store>
863
  </currency>
864
+ <m_to_xml_attributes translate="comment">
865
+ <label>Attributes to include in product feed</label>
866
+ <frontend_model>fontis_australia_block_getprice</frontend_model>
867
+ <backend_model>adminhtml/system_config_backend_serialized_array</backend_model>
868
+ <sort_order>25</sort_order>
869
+ <show_in_default>1</show_in_default>
870
+ <show_in_website>1</show_in_website>
871
+ <show_in_store>1</show_in_store>
872
+ <comment></comment>
873
+ </m_to_xml_attributes>
874
  </fields>
875
  </getpricefeed>
876
  <shopbotfeed>
1007
  </m_to_xml_attributes>
1008
  </fields>
1009
  </myshoppingfeed>
1010
+ <googleproductsfeed>
1011
+ <label>Google Products</label>
1012
+ <frontend_type>text</frontend_type>
1013
+ <sort_order>3</sort_order>
1014
+ <show_in_default>1</show_in_default>
1015
+ <show_in_website>1</show_in_website>
1016
+ <show_in_store>1</show_in_store>
1017
+ <fields>
1018
+ <active>
1019
+ <label>Enabled</label>
1020
+ <frontend_type>select</frontend_type>
1021
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1022
+ <sort_order>1</sort_order>
1023
+ <show_in_default>1</show_in_default>
1024
+ <show_in_website>1</show_in_website>
1025
+ <show_in_store>0</show_in_store>
1026
+ </active>
1027
+ <include_all_products>
1028
+ <label>Include products by default</label>
1029
+ <frontend_type>select</frontend_type>
1030
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1031
+ <sort_order>2</sort_order>
1032
+ <show_in_default>1</show_in_default>
1033
+ <show_in_website>1</show_in_website>
1034
+ <show_in_store>0</show_in_store>
1035
+ <comment>If 'yes', products will be included by default and excluded if the override attribute resolves true for the product. If 'no', products will be excluded by default and only included if the override attribute resolves true for the product.</comment>
1036
+ </include_all_products>
1037
+ <custom_filter_attribute>
1038
+ <label>Override individual products with attribute</label>
1039
+ <frontend_type>select</frontend_type>
1040
+ <source_model>australia/config_productAttributes</source_model>
1041
+ <sort_order>3</sort_order>
1042
+ <show_in_default>1</show_in_default>
1043
+ <show_in_website>1</show_in_website>
1044
+ <show_in_store>1</show_in_store>
1045
+ <comment>Products with this selected attribute and where the attribute resolves to true for the product will be excluded from the feed if inclusion is set to default (see above option). Otherwise products will only be included if this attribute is available for the product and the attribute resolves to true when inclusion by default is turned off (see above option).</comment>
1046
+ </custom_filter_attribute>
1047
+ <output>
1048
+ <label>Output Path</label>
1049
+ <frontend_type>text</frontend_type>
1050
+ <sort_order>4</sort_order>
1051
+ <show_in_default>1</show_in_default>
1052
+ <show_in_website>1</show_in_website>
1053
+ <show_in_store>1</show_in_store>
1054
+ <comment>XML files will be generated into this path.</comment>
1055
+ </output>
1056
+ <title>
1057
+ <label>Title</label>
1058
+ <frontend_type>text</frontend_type>
1059
+ <sort_order>5</sort_order>
1060
+ <show_in_default>1</show_in_default>
1061
+ <show_in_website>1</show_in_website>
1062
+ <show_in_store>1</show_in_store>
1063
+ </title>
1064
+ <author>
1065
+ <label>Author</label>
1066
+ <frontend_type>text</frontend_type>
1067
+ <sort_order>5</sort_order>
1068
+ <show_in_default>1</show_in_default>
1069
+ <show_in_website>1</show_in_website>
1070
+ <show_in_store>1</show_in_store>
1071
+ </author>
1072
+ <default_condition>
1073
+ <label>Default Condition</label>
1074
+ <frontend_type>select</frontend_type>
1075
+ <source_model>australia/config_condition</source_model>
1076
+ <sort_order>6</sort_order>
1077
+ <show_in_default>1</show_in_default>
1078
+ <show_in_website>1</show_in_website>
1079
+ <show_in_store>1</show_in_store>
1080
+ <comment>The default value for the condition attribute in the product feed</comment>
1081
+ </default_condition>
1082
+ <m_to_xml_attributes translate="comment">
1083
+ <label>Optional attributes to include in product feed</label>
1084
+ <frontend_model>fontis_australia_block_googleproducts</frontend_model>
1085
+ <backend_model>adminhtml/system_config_backend_serialized_array</backend_model>
1086
+ <sort_order>25</sort_order>
1087
+ <show_in_default>1</show_in_default>
1088
+ <show_in_website>1</show_in_website>
1089
+ <show_in_store>1</show_in_store>
1090
+ <comment></comment>
1091
+ </m_to_xml_attributes>
1092
+ </fields>
1093
+ </googleproductsfeed>
1094
  </groups>
1095
  </fontis_feeds>
1096
+
1097
+ <doghouse_eparcelexport translate="label comment">
1098
+ <tab>sales</tab>
1099
+ <label>Eparcel Export</label>
1100
+ <frontend_type>text</frontend_type>
1101
+ <sort_order>600</sort_order>
1102
+ <show_in_default>1</show_in_default>
1103
+ <show_in_website>1</show_in_website>
1104
+ <show_in_store>1</show_in_store>
1105
+ <groups>
1106
+ <parcel translate="label comment">
1107
+ <label>Parcel Settings</label>
1108
+ <frontend_type>text</frontend_type>
1109
+ <sort_order>10</sort_order>
1110
+ <show_in_default>1</show_in_default>
1111
+ <show_in_website>1</show_in_website>
1112
+ <show_in_store>1</show_in_store>
1113
+ <fields>
1114
+ <use_cubicweight translate="label">
1115
+ <label>Use Cubic Weight ?</label>
1116
+ <frontend_type>select</frontend_type>
1117
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1118
+ <sort_order>10</sort_order>
1119
+ <show_in_default>1</show_in_default>
1120
+ <show_in_website>1</show_in_website>
1121
+ <show_in_store>1</show_in_store>
1122
+ <comment>Ask your Australia Post account manager how your account is setup.</comment>
1123
+ </use_cubicweight>
1124
+ <weightmax translate="label">
1125
+ <label>Parcel Max Weight</label>
1126
+ <frontend_type>text</frontend_type>
1127
+ <sort_order>15</sort_order>
1128
+ <show_in_default>1</show_in_default>
1129
+ <show_in_website>1</show_in_website>
1130
+ <show_in_store>1</show_in_store>
1131
+ <comment>Kilograms (without box weight)</comment>
1132
+ </weightmax>
1133
+ <width translate="label">
1134
+ <label>Parcel Width</label>
1135
+ <frontend_type>text</frontend_type>
1136
+ <sort_order>21</sort_order>
1137
+ <show_in_default>1</show_in_default>
1138
+ <show_in_website>1</show_in_website>
1139
+ <show_in_store>1</show_in_store>
1140
+ <comment>Centimeters - no decimals</comment>
1141
+ </width>
1142
+ <height translate="label">
1143
+ <label>Parcel Height</label>
1144
+ <frontend_type>text</frontend_type>
1145
+ <sort_order>22</sort_order>
1146
+ <show_in_default>1</show_in_default>
1147
+ <show_in_website>1</show_in_website>
1148
+ <show_in_store>1</show_in_store>
1149
+ <comment>Centimeters - no decimals</comment>
1150
+ </height>
1151
+ <length translate="label">
1152
+ <label>Parcel Length</label>
1153
+ <frontend_type>text</frontend_type>
1154
+ <sort_order>23</sort_order>
1155
+ <show_in_default>1</show_in_default>
1156
+ <show_in_website>1</show_in_website>
1157
+ <show_in_store>1</show_in_store>
1158
+ <comment>Centimeters - no decimals</comment>
1159
+ </length>
1160
+ </fields>
1161
+ </parcel>
1162
+ <consignement translate="label comment">
1163
+ <label>Consignement Defaults</label>
1164
+ <frontend_type>text</frontend_type>
1165
+ <sort_order>20</sort_order>
1166
+ <show_in_default>1</show_in_default>
1167
+ <show_in_website>1</show_in_website>
1168
+ <show_in_store>1</show_in_store>
1169
+ <fields>
1170
+ <is_signature_required translate="label">
1171
+ <label>Is Signature Required ?</label>
1172
+ <frontend_type>select</frontend_type>
1173
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1174
+ <sort_order>10</sort_order>
1175
+ <show_in_default>1</show_in_default>
1176
+ <show_in_website>1</show_in_website>
1177
+ <show_in_store>1</show_in_store>
1178
+ <comment>Should signature be required by default ? Specific shipping methods will override this setting. Check cost of service on your Australia Post contract.</comment>
1179
+ </is_signature_required>
1180
+ <add_to_address_book translate="label">
1181
+ <label>Add to Address Book ?</label>
1182
+ <frontend_type>select</frontend_type>
1183
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1184
+ <sort_order>20</sort_order>
1185
+ <show_in_default>1</show_in_default>
1186
+ <show_in_website>1</show_in_website>
1187
+ <show_in_store>1</show_in_store>
1188
+ <comment></comment>
1189
+ </add_to_address_book>
1190
+ <print_ref1 translate="label">
1191
+ <label>Print Reference #1 ?</label>
1192
+ <frontend_type>select</frontend_type>
1193
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1194
+ <sort_order>30</sort_order>
1195
+ <show_in_default>1</show_in_default>
1196
+ <show_in_website>1</show_in_website>
1197
+ <show_in_store>1</show_in_store>
1198
+ <comment>Ref #1 contains the invoice number (if the order has been invoiced)</comment>
1199
+ </print_ref1>
1200
+ <print_ref2 translate="label">
1201
+ <label>Print Reference #2 ?</label>
1202
+ <frontend_type>select</frontend_type>
1203
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1204
+ <sort_order>40</sort_order>
1205
+ <show_in_default>1</show_in_default>
1206
+ <show_in_website>1</show_in_website>
1207
+ <show_in_store>1</show_in_store>
1208
+ <comment>Ref #2 contains the order number</comment>
1209
+ </print_ref2>
1210
+ </fields>
1211
+ </consignement>
1212
+ <good translate="label comment">
1213
+ <label>Good Defaults</label>
1214
+ <frontend_type>text</frontend_type>
1215
+ <sort_order>20</sort_order>
1216
+ <show_in_default>1</show_in_default>
1217
+ <show_in_website>1</show_in_website>
1218
+ <show_in_store>1</show_in_store>
1219
+ <fields>
1220
+ <product_type translate="label">
1221
+ <label>Product type</label>
1222
+ <frontend_type>text</frontend_type>
1223
+ <sort_order>10</sort_order>
1224
+ <show_in_default>1</show_in_default>
1225
+ <show_in_website>1</show_in_website>
1226
+ <show_in_store>1</show_in_store>
1227
+ <comment></comment>
1228
+ </product_type>
1229
+ <use_multiplegoodrecords translate="label">
1230
+ <label>Use multiple good records</label>
1231
+ <frontend_type>select</frontend_type>
1232
+ <source_model>adminhtml/system_config_source_yesno</source_model>
1233
+ <sort_order>10</sort_order>
1234
+ <show_in_default>1</show_in_default>
1235
+ <show_in_website>1</show_in_website>
1236
+ <show_in_store>1</show_in_store>
1237
+ <comment>Australia Post's documentation says to use multiple good lines but their tech support says no. Also, it only seems to work when set to 'No'.</comment>
1238
+ </use_multiplegoodrecords>
1239
+
1240
+ </fields>
1241
+ </good>
1242
+ <charge_codes translate="label comment">
1243
+ <label>Charge codes</label>
1244
+ <frontend_type>text</frontend_type>
1245
+ <sort_order>20</sort_order>
1246
+ <show_in_default>1</show_in_default>
1247
+ <show_in_website>1</show_in_website>
1248
+ <show_in_store>1</show_in_store>
1249
+ <fields>
1250
+ <default_charge_code_individual translate="label">
1251
+ <label>Default charge Code (individual)</label>
1252
+ <frontend_type>text</frontend_type>
1253
+ <sort_order>10</sort_order>
1254
+ <show_in_default>1</show_in_default>
1255
+ <show_in_website>1</show_in_website>
1256
+ <show_in_store>1</show_in_store>
1257
+ <comment>The default charge code for individuals. Will be overridden by values in your table rates.</comment>
1258
+ </default_charge_code_individual>
1259
+ <default_charge_code_business translate="label">
1260
+ <label>Default charge Code (business)</label>
1261
+ <frontend_type>text</frontend_type>
1262
+ <sort_order>10</sort_order>
1263
+ <show_in_default>1</show_in_default>
1264
+ <show_in_website>1</show_in_website>
1265
+ <show_in_store>1</show_in_store>
1266
+ <comment>The default charge code for businesses, as defined by the customer groups below. Will be overridden by values in your table rates.</comment>
1267
+ </default_charge_code_business>
1268
+ <business_groups translate="label">
1269
+ <label>Business customer groups</label>
1270
+ <frontend_type>multiselect</frontend_type>
1271
+ <source_model>adminhtml/system_config_source_customer_group</source_model>
1272
+ <sort_order>50</sort_order>
1273
+ <show_in_default>1</show_in_default>
1274
+ <show_in_website>1</show_in_website>
1275
+ <show_in_store>1</show_in_store>
1276
+ <comment>The selected customer groups will use the "Business" version of the "Standard" and "Express" charge codes. Make sure your contract supports business (B2B) charge codes.</comment>
1277
+ </business_groups>
1278
+ </fields>
1279
+ </charge_codes>
1280
+ </groups>
1281
+ </doghouse_eparcelexport>
1282
  </sections>
1283
  </config>
app/code/community/Fontis/Australia/sql/australia_setup/mysql4-install-0.7.0.php CHANGED
@@ -110,9 +110,18 @@ set_time_limit(0);
110
  // available prior to PHP 5.3.0.
111
  $fp = fopen( dirname(__FILE__) . '/postcodes.txt', 'r');
112
 
 
 
113
  while ($row = fgets($fp)) {
114
- $installer->run("INSERT INTO {$this->getTable('au_postcode')} (postcode, city, region_code) VALUES ".$row);
 
 
 
 
 
115
  }
 
 
116
 
117
  fclose($fp);
118
 
110
  // available prior to PHP 5.3.0.
111
  $fp = fopen( dirname(__FILE__) . '/postcodes.txt', 'r');
112
 
113
+ $_values = '';
114
+ $i =0;
115
  while ($row = fgets($fp)) {
116
+ if($i++==0){
117
+ $_values = trim($row);
118
+ } else {
119
+ $_values = $_values . ", " . trim($row);
120
+ }
121
+
122
  }
123
+ //Import all values in a single expression and commit, _much_ faster and avoids timeouts on shared hosting accounts
124
+ $installer->run("INSERT INTO {$this->getTable('au_postcode')} (postcode, city, region_code) VALUES ". $_values . ";");
125
 
126
  fclose($fp);
127
 
app/code/community/Fontis/Australia/sql/australia_setup/mysql4-install-2.2.0.php ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Chris Norton
18
+ * @copyright Copyright (c) 2010 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ set_time_limit(0);
23
+
24
+ $installer = $this;
25
+ $installer->startSetup();
26
+
27
+ // Create a database table for eParcel table rates.
28
+ // This table uses the same structure as the normal table rate table.
29
+ $installer->run("
30
+ DROP TABLE IF EXISTS {$this->getTable('australia_eparcel')};
31
+ CREATE TABLE {$this->getTable('australia_eparcel')} (
32
+ `pk` int(10) unsigned NOT NULL auto_increment,
33
+ `website_id` int(11) NOT NULL default '0',
34
+ `dest_country_id` varchar(4) NOT NULL default '0',
35
+ `dest_region_id` int(10) NOT NULL default '0',
36
+ `dest_zip` varchar(10) NOT NULL default '',
37
+ `condition_name` varchar(20) NOT NULL default '',
38
+ `condition_from_value` decimal(12,4) NOT NULL default '0.0000',
39
+ `condition_to_value` decimal(12,4) NOT NULL default '0.0000',
40
+ `price` decimal(12,4) NOT NULL default '0.0000',
41
+ `price_per_kg` decimal(12,4) NOT NULL default '0.0000',
42
+ `cost` decimal(12,4) NOT NULL default '0.0000',
43
+ `delivery_type` varchar(50) NOT NULL default '',
44
+ PRIMARY KEY (`pk`),
45
+ UNIQUE KEY `dest_country` ( `website_id` , `dest_country_id` , `dest_region_id` , `dest_zip` , `condition_name` , `condition_to_value` , `delivery_type`)
46
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
47
+ ");
48
+
49
+ // Insert a list of states into the regions database. Magento will then pick
50
+ // these up when displaying addresses and allow the user to select from a drop-down
51
+ // list, rather than having to type them in manually.
52
+ $regions = array(
53
+ array('code' => 'ACT', 'name' => 'Australia Capital Territory'),
54
+ array('code' => 'NSW', 'name' => 'New South Wales'),
55
+ array('code' => 'NT', 'name' => 'Northern Territory'),
56
+ array('code' => 'QLD', 'name' => 'Queensland'),
57
+ array('code' => 'SA', 'name' => 'South Australia'),
58
+ array('code' => 'TAS', 'name' => 'Tasmania'),
59
+ array('code' => 'VIC', 'name' => 'Victoria'),
60
+ array('code' => 'WA', 'name' => 'Western Australia')
61
+ );
62
+
63
+ $db = Mage::getSingleton('core/resource')->getConnection('core_read');
64
+
65
+ foreach($regions as $region) {
66
+ // Check if this region has already been added
67
+ $result = $db->fetchOne("SELECT code FROM " . $this->getTable('directory_country_region') . " WHERE `country_id` = 'AU' AND `code` = '" . $region['code'] . "'");
68
+ if($result != $region['code']) {
69
+ $installer->run(
70
+ "INSERT INTO `{$this->getTable('directory_country_region')}` (`country_id`, `code`, `default_name`) VALUES
71
+ ('AU', '" . $region['code'] . "', '" . $region['name'] . "');
72
+ INSERT INTO `{$this->getTable('directory_country_region_name')}` (`locale`, `region_id`, `name`) VALUES
73
+ ('en_US', LAST_INSERT_ID(), '" . $region['name'] . "'), ('en_AU', LAST_INSERT_ID(), '" . $region['name'] . "');"
74
+ );
75
+ }
76
+ }
77
+
78
+ $installer->run("
79
+ DROP TABLE IF EXISTS {$this->getTable('australia_postcode')};
80
+ CREATE TABLE {$this->getTable('australia_postcode')} (
81
+ `country_id` varchar(2) NOT NULL default 'AU',
82
+ `postcode` varchar(4) NOT NULL default '',
83
+ `region_code` varchar(6) NOT NULL default '0',
84
+ `city` varchar(50) NOT NULL default '',
85
+ PRIMARY KEY (`country_id`,`postcode`, `region_code`, `city`),
86
+ KEY `country_id_2` (`country_id`,`region_code`),
87
+ KEY `country_id_3` (`country_id`,`city`),
88
+ KEY `country_id` (`country_id`),
89
+ KEY `postcode` (`postcode`)
90
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;");
91
+
92
+ // Note: dirname(__FILE__) is used instead of __DIR__ as the latter was not
93
+ // available prior to PHP 5.3.0.
94
+ $postcodefile = dirname(__FILE__) . '/postcodes.csv';
95
+ $success = false;
96
+
97
+ try {
98
+ // Try using LOAD DATA which is extremely fast
99
+ $installer->run("LOAD DATA LOCAL INFILE '$postcodefile' INTO TABLE {$this->getTable('australia_postcode')}
100
+ FIELDS TERMINATED BY ','
101
+ OPTIONALLY ENCLOSED BY '\"'
102
+ LINES TERMINATED BY '\\n'");
103
+
104
+ $success = true;
105
+ } catch(Exception $e) {
106
+ $success = false;
107
+ }
108
+
109
+ // Check if our LOAD DATA method worked (may not work in some environments)
110
+ if(!$success) {
111
+ // Attempt to load the rows one at a time; this is slower but should work in all cases
112
+ $fp = fopen($postcodefile, 'r');
113
+
114
+ $_values = '';
115
+ $i =0;
116
+ while ($row = fgets($fp)) {
117
+ if($i++==0){
118
+ $_values = trim($row);
119
+ } else {
120
+ $_values = $_values . ", " . trim($row);
121
+ }
122
+
123
+ }
124
+
125
+ // Import all values in a single expression and commit, _much_ faster and avoids timeouts on shared hosting accounts
126
+ $installer->run("INSERT INTO {$this->getTable('au_postcode')} (postcode, city, region_code) VALUES ". $_values . ";");
127
+
128
+ fclose($fp);
129
+ }
130
+
131
+ $installer->endSetup();
app/code/community/Fontis/Australia/sql/australia_setup/mysql4-install-2.2.2.php ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Chris Norton (minor contribution by Jonathan Melnick)
18
+ * @copyright Copyright (c) 2010 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ set_time_limit(0);
23
+
24
+ $installer = $this;
25
+ $installer->startSetup();
26
+
27
+ // Create a database table for eParcel table rates.
28
+ // This table uses the same structure as the normal table rate table.
29
+ $installer->run("
30
+ DROP TABLE IF EXISTS {$this->getTable('australia_eparcel')};
31
+ CREATE TABLE {$this->getTable('australia_eparcel')} (
32
+ `pk` int(10) unsigned NOT NULL auto_increment,
33
+ `website_id` int(11) NOT NULL default '0',
34
+ `dest_country_id` varchar(4) NOT NULL default '0',
35
+ `dest_region_id` int(10) NOT NULL default '0',
36
+ `dest_zip` varchar(10) NOT NULL default '',
37
+ `condition_name` varchar(20) NOT NULL default '',
38
+ `condition_from_value` decimal(12,4) NOT NULL default '0.0000',
39
+ `condition_to_value` decimal(12,4) NOT NULL default '0.0000',
40
+ `price` decimal(12,4) NOT NULL default '0.0000',
41
+ `price_per_kg` decimal(12,4) NOT NULL default '0.0000',
42
+ `cost` decimal(12,4) NOT NULL default '0.0000',
43
+ `delivery_type` varchar(50) NOT NULL default '',
44
+ `charge_code_individual` varchar(50) NULL default NULL,
45
+ `charge_code_business` varchar(50) NULL default NULL,
46
+ PRIMARY KEY (`pk`),
47
+ UNIQUE KEY `dest_country` ( `website_id` , `dest_country_id` , `dest_region_id` , `dest_zip` , `condition_name` , `condition_to_value` , `delivery_type`)
48
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
49
+ ");
50
+
51
+ // Insert a list of states into the regions database. Magento will then pick
52
+ // these up when displaying addresses and allow the user to select from a drop-down
53
+ // list, rather than having to type them in manually.
54
+ $regions = array(
55
+ array('code' => 'ACT', 'name' => 'Australia Capital Territory'),
56
+ array('code' => 'NSW', 'name' => 'New South Wales'),
57
+ array('code' => 'NT', 'name' => 'Northern Territory'),
58
+ array('code' => 'QLD', 'name' => 'Queensland'),
59
+ array('code' => 'SA', 'name' => 'South Australia'),
60
+ array('code' => 'TAS', 'name' => 'Tasmania'),
61
+ array('code' => 'VIC', 'name' => 'Victoria'),
62
+ array('code' => 'WA', 'name' => 'Western Australia')
63
+ );
64
+
65
+ $db = Mage::getSingleton('core/resource')->getConnection('core_read');
66
+
67
+ foreach($regions as $region) {
68
+ // Check if this region has already been added
69
+ $result = $db->fetchOne("SELECT code FROM " . $this->getTable('directory_country_region') . " WHERE `country_id` = 'AU' AND `code` = '" . $region['code'] . "'");
70
+ if($result != $region['code']) {
71
+ $installer->run(
72
+ "INSERT INTO `{$this->getTable('directory_country_region')}` (`country_id`, `code`, `default_name`) VALUES
73
+ ('AU', '" . $region['code'] . "', '" . $region['name'] . "');
74
+ INSERT INTO `{$this->getTable('directory_country_region_name')}` (`locale`, `region_id`, `name`) VALUES
75
+ ('en_US', LAST_INSERT_ID(), '" . $region['name'] . "'), ('en_AU', LAST_INSERT_ID(), '" . $region['name'] . "');"
76
+ );
77
+ }
78
+ }
79
+
80
+ $installer->run("
81
+ DROP TABLE IF EXISTS {$this->getTable('australia_postcode')};
82
+ CREATE TABLE {$this->getTable('australia_postcode')} (
83
+ `country_id` varchar(2) NOT NULL default 'AU',
84
+ `postcode` varchar(4) NOT NULL default '',
85
+ `region_code` varchar(6) NOT NULL default '0',
86
+ `city` varchar(50) NOT NULL default '',
87
+ PRIMARY KEY (`country_id`,`postcode`, `region_code`, `city`),
88
+ KEY `country_id_2` (`country_id`,`region_code`),
89
+ KEY `country_id_3` (`country_id`,`city`),
90
+ KEY `country_id` (`country_id`),
91
+ KEY `postcode` (`postcode`)
92
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;");
93
+
94
+ // Note: dirname(__FILE__) is used instead of __DIR__ as the latter was not
95
+ // available prior to PHP 5.3.0.
96
+ $postcodefile = dirname(__FILE__) . '/postcodes.csv';
97
+ $success = false;
98
+
99
+ try {
100
+ // Try using LOAD DATA which is extremely fast
101
+ $installer->run("LOAD DATA LOCAL INFILE '$postcodefile' INTO TABLE {$this->getTable('australia_postcode')}
102
+ FIELDS TERMINATED BY ','
103
+ OPTIONALLY ENCLOSED BY '\"'
104
+ LINES TERMINATED BY '\\n'");
105
+
106
+ $success = true;
107
+ } catch(Exception $e) {
108
+ $success = false;
109
+ }
110
+
111
+ // Check if our LOAD DATA method worked (may not work in some environments)
112
+ if(!$success) {
113
+ // Here we import values in larger expressions, which is slower than LOAD DATA
114
+ // but should be available in all environments
115
+ $fp = fopen($postcodefile, 'r');
116
+
117
+ $_values = array();
118
+ $i = 0;
119
+
120
+ while ($row = fgets($fp)) {
121
+ $_values[] = '(' . trim($row) . ')';
122
+
123
+ // Process the file in batches
124
+ if($i++ % 1000 == 0) {
125
+ $insertValues = implode(',', $_values);
126
+ $installer->run("INSERT INTO {$this->getTable('australia_postcode')} (country_id, postcode, region_code, city) VALUES ". $insertValues . ";");
127
+ $_values = array();
128
+ }
129
+ }
130
+
131
+ // Insert any remaining values
132
+ if(count($_values)) {
133
+ $insertValues = implode(',', $_values);
134
+ $installer->run("INSERT INTO {$this->getTable('australia_postcode')} (country_id, postcode, region_code, city) VALUES ". $insertValues . ";");
135
+ }
136
+
137
+ fclose($fp);
138
+ }
139
+
140
+ $installer->endSetup();
app/{design/frontend/default/default/template/fontis/australia/payment/directdeposit/info.phtml → code/community/Fontis/Australia/sql/australia_setup/mysql4-upgrade-2.1.0-2.2.0.php} RENAMED
@@ -15,14 +15,13 @@
15
  * @category Fontis
16
  * @package Fontis_Australia
17
  * @author Chris Norton
18
- * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
- ?>
22
- <p><?php echo $this->getMethod()->getTitle() ?>
23
- <?php //if($this->getInfo()->getAdditionalData()): ?>
24
- <?php if($this->getAccountName()): ?><br /><?php echo $this->__('Account Name: %s', $this->getAccountName()); ?><?php endif; ?>
25
- <?php if($this->getAccountBSB()): ?><br /><?php echo $this->__('Account BSB: %s', $this->getAccountBSB()); ?><?php endif; ?>
26
- <?php if($this->getAccountNumber()): ?><br /><?php echo $this->__('Account Number: %s', $this->getAccountNumber()); ?><?php endif; ?>
27
- <?php //endif;?>
28
- </p>
15
  * @category Fontis
16
  * @package Fontis_Australia
17
  * @author Chris Norton
18
+ * @copyright Copyright (c) 2010 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
  */
21
+
22
+ $installer = $this;
23
+ $installer->startSetup();
24
+
25
+ $installer->run("RENAME TABLE {$this->getTable('au_postcode')} TO {$this->getTable('australia_postcode')}");
26
+
27
+ $installer->endSetup();
 
app/code/community/Fontis/Australia/sql/australia_setup/mysql4-upgrade-2.2.1-2.2.2.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Fontis Australia Extension
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category Fontis
16
+ * @package Fontis_Australia
17
+ * @author Jonathan Melnick
18
+ * @copyright Copyright (c) 2012 Doghouse Media Pty Ltd (http://www.dhmedia.com.au)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+
22
+ $installer = $this;
23
+ $installer->startSetup();
24
+
25
+ $installer->run(
26
+ "ALTER TABLE `australia_eparcel`"
27
+ . " ADD `charge_code_individual` VARCHAR( 50 ) NULL DEFAULT NULL,"
28
+ . " ADD `charge_code_business` VARCHAR( 50 ) NULL DEFAULT NULL"
29
+ );
30
+
31
+ $installer->endSetup();
app/code/community/Fontis/Australia/sql/australia_setup/postcodes.csv ADDED
@@ -0,0 +1,16933 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 'AU','0200','ACT','Australian National University'
2
+ 'AU','0221','ACT','Barton'
3
+ 'AU','0800','NT','Darwin'
4
+ 'AU','0801','NT','Darwin'
5
+ 'AU','0804','NT','Parap'
6
+ 'AU','0810','NT','Alawa'
7
+ 'AU','0810','NT','Brinkin'
8
+ 'AU','0810','NT','Casuarina'
9
+ 'AU','0810','NT','Coconut Grove'
10
+ 'AU','0810','NT','Jingili'
11
+ 'AU','0810','NT','Lee Point'
12
+ 'AU','0810','NT','Lyons'
13
+ 'AU','0810','NT','Millner'
14
+ 'AU','0810','NT','Moil'
15
+ 'AU','0810','NT','Muirhead'
16
+ 'AU','0810','NT','Nakara'
17
+ 'AU','0810','NT','Nightcliff'
18
+ 'AU','0810','NT','Rapid Creek'
19
+ 'AU','0810','NT','Tiwi'
20
+ 'AU','0810','NT','Wagaman'
21
+ 'AU','0810','NT','Wanguri'
22
+ 'AU','0811','NT','Casuarina'
23
+ 'AU','0812','NT','Anula'
24
+ 'AU','0812','NT','Buffalo Creek'
25
+ 'AU','0812','NT','Holmes'
26
+ 'AU','0812','NT','Karama'
27
+ 'AU','0812','NT','Leanyer'
28
+ 'AU','0812','NT','Malak'
29
+ 'AU','0812','NT','Marrara'
30
+ 'AU','0812','NT','Northlakes'
31
+ 'AU','0812','NT','Sanderson'
32
+ 'AU','0812','NT','Woodleigh Gardens'
33
+ 'AU','0812','NT','Wulagi'
34
+ 'AU','0813','NT','Sanderson'
35
+ 'AU','0814','NT','Nightcliff'
36
+ 'AU','0815','NT','Charles Darwin University'
37
+ 'AU','0820','NT','Bagot'
38
+ 'AU','0820','NT','Bayview'
39
+ 'AU','0820','NT','Charles Darwin'
40
+ 'AU','0820','NT','Coonawarra'
41
+ 'AU','0820','NT','Cullen Bay'
42
+ 'AU','0820','NT','Darwin Dc'
43
+ 'AU','0820','NT','Darwin International Airport'
44
+ 'AU','0820','NT','Darwin Mc'
45
+ 'AU','0820','NT','East Point'
46
+ 'AU','0820','NT','Eaton'
47
+ 'AU','0820','NT','Fannie Bay'
48
+ 'AU','0820','NT','Larrakeyah'
49
+ 'AU','0820','NT','Ludmilla'
50
+ 'AU','0820','NT','Parap'
51
+ 'AU','0820','NT','Raaf Base Darwin'
52
+ 'AU','0820','NT','Stuart Park'
53
+ 'AU','0820','NT','The Gardens'
54
+ 'AU','0820','NT','The Narrows'
55
+ 'AU','0820','NT','Winnellie'
56
+ 'AU','0820','NT','Woolner'
57
+ 'AU','0821','NT','Winnellie'
58
+ 'AU','0822','NT','Acacia Hills'
59
+ 'AU','0822','NT','Angurugu'
60
+ 'AU','0822','NT','Anindilyakwa'
61
+ 'AU','0822','NT','Annie River'
62
+ 'AU','0822','NT','Bathurst Island'
63
+ 'AU','0822','NT','Bees Creek'
64
+ 'AU','0822','NT','Belyuen'
65
+ 'AU','0822','NT','Black Jungle'
66
+ 'AU','0822','NT','Blackmore'
67
+ 'AU','0822','NT','Border Store'
68
+ 'AU','0822','NT','Burrundie'
69
+ 'AU','0822','NT','Bynoe'
70
+ 'AU','0822','NT','Bynoe Harbour'
71
+ 'AU','0822','NT','Camp Creek'
72
+ 'AU','0822','NT','Channel Island'
73
+ 'AU','0822','NT','Charles Darwin'
74
+ 'AU','0822','NT','Charlotte'
75
+ 'AU','0822','NT','Claravale'
76
+ 'AU','0822','NT','Cobourg'
77
+ 'AU','0822','NT','Collett Creek'
78
+ 'AU','0822','NT','Coomalie Creek'
79
+ 'AU','0822','NT','Cox Peninsula'
80
+ 'AU','0822','NT','Croker Island'
81
+ 'AU','0822','NT','Daly'
82
+ 'AU','0822','NT','Daly River'
83
+ 'AU','0822','NT','Darwin Mc'
84
+ 'AU','0822','NT','Darwin River Dam'
85
+ 'AU','0822','NT','Delissaville'
86
+ 'AU','0822','NT','Douglas\-Daly'
87
+ 'AU','0822','NT','East Arm'
88
+ 'AU','0822','NT','East Arnhem'
89
+ 'AU','0822','NT','Elrundie'
90
+ 'AU','0822','NT','Eva Valley'
91
+ 'AU','0822','NT','Finniss Valley'
92
+ 'AU','0822','NT','Fleming'
93
+ 'AU','0822','NT','Fly Creek'
94
+ 'AU','0822','NT','Freds Pass'
95
+ 'AU','0822','NT','Galiwinku'
96
+ 'AU','0822','NT','Glyde Point'
97
+ 'AU','0822','NT','Goulburn Island'
98
+ 'AU','0822','NT','Gunbalanya'
99
+ 'AU','0822','NT','Gunn Point'
100
+ 'AU','0822','NT','Hayes Creek'
101
+ 'AU','0822','NT','Hidden Valley'
102
+ 'AU','0822','NT','Hotham'
103
+ 'AU','0822','NT','Hughes'
104
+ 'AU','0822','NT','Kakadu'
105
+ 'AU','0822','NT','Koolpinyah'
106
+ 'AU','0822','NT','Lake Bennett'
107
+ 'AU','0822','NT','Lambells Lagoon'
108
+ 'AU','0822','NT','Litchfield Park'
109
+ 'AU','0822','NT','Livingstone'
110
+ 'AU','0822','NT','Lloyd Creek'
111
+ 'AU','0822','NT','Mandorah'
112
+ 'AU','0822','NT','Maningrida'
113
+ 'AU','0822','NT','Maranunga'
114
+ 'AU','0822','NT','Margaret River'
115
+ 'AU','0822','NT','Marrakai'
116
+ 'AU','0822','NT','Mcminns Lagoon'
117
+ 'AU','0822','NT','Mickett Creek'
118
+ 'AU','0822','NT','Middle Point'
119
+ 'AU','0822','NT','Milikapiti'
120
+ 'AU','0822','NT','Milingimbi'
121
+ 'AU','0822','NT','Millwood'
122
+ 'AU','0822','NT','Milyakburra'
123
+ 'AU','0822','NT','Minjilang'
124
+ 'AU','0822','NT','Mount Bundey'
125
+ 'AU','0822','NT','Murrumujuk'
126
+ 'AU','0822','NT','Nauiyu'
127
+ 'AU','0822','NT','Nemarluk'
128
+ 'AU','0822','NT','Nganmarriyanga'
129
+ 'AU','0822','NT','Nguiu'
130
+ 'AU','0822','NT','Numburindi'
131
+ 'AU','0822','NT','Oenpelli'
132
+ 'AU','0822','NT','Palumpa'
133
+ 'AU','0822','NT','Peppimenarti'
134
+ 'AU','0822','NT','Pirlangimpi'
135
+ 'AU','0822','NT','Point Stephens'
136
+ 'AU','0822','NT','Point Stuart'
137
+ 'AU','0822','NT','Pularumpi'
138
+ 'AU','0822','NT','Rakula'
139
+ 'AU','0822','NT','Ramingining'
140
+ 'AU','0822','NT','Robin Falls'
141
+ 'AU','0822','NT','Rum Jungle'
142
+ 'AU','0822','NT','Southport'
143
+ 'AU','0822','NT','Stapleton'
144
+ 'AU','0822','NT','Thamarrurr'
145
+ 'AU','0822','NT','Tipperary'
146
+ 'AU','0822','NT','Tivendale'
147
+ 'AU','0822','NT','Tiwi Islands'
148
+ 'AU','0822','NT','Tortilla Flats'
149
+ 'AU','0822','NT','Tumbling Waters'
150
+ 'AU','0822','NT','Umbakumba'
151
+ 'AU','0822','NT','Vernon Islands'
152
+ 'AU','0822','NT','Wadeye'
153
+ 'AU','0822','NT','Wagait Beach'
154
+ 'AU','0822','NT','Wak Wak'
155
+ 'AU','0822','NT','Warruwi'
156
+ 'AU','0822','NT','Weddell'
157
+ 'AU','0822','NT','West Arnhem'
158
+ 'AU','0822','NT','Wickham'
159
+ 'AU','0822','NT','Winnellie'
160
+ 'AU','0822','NT','Wishart'
161
+ 'AU','0822','NT','Woolaning'
162
+ 'AU','0828','NT','Berrimah'
163
+ 'AU','0828','NT','Knuckey Lagoon'
164
+ 'AU','0829','NT','Holtze'
165
+ 'AU','0829','NT','Pinelands'
166
+ 'AU','0830','NT','Archer'
167
+ 'AU','0830','NT','Driver'
168
+ 'AU','0830','NT','Durack'
169
+ 'AU','0830','NT','Farrar'
170
+ 'AU','0830','NT','Gray'
171
+ 'AU','0830','NT','Marlow Lagoon'
172
+ 'AU','0830','NT','Moulden'
173
+ 'AU','0830','NT','Palmerston'
174
+ 'AU','0830','NT','Shoal Bay'
175
+ 'AU','0830','NT','Woodroffe'
176
+ 'AU','0830','NT','Yarrawonga'
177
+ 'AU','0831','NT','Palmerston'
178
+ 'AU','0832','NT','Bakewell'
179
+ 'AU','0832','NT','Bellamack'
180
+ 'AU','0832','NT','Gunn'
181
+ 'AU','0832','NT','Johnston'
182
+ 'AU','0832','NT','Mitchell'
183
+ 'AU','0832','NT','Rosebery'
184
+ 'AU','0832','NT','Rosebery Heights'
185
+ 'AU','0832','NT','Zuccoli'
186
+ 'AU','0835','NT','Coolalinga'
187
+ 'AU','0835','NT','Howard Springs'
188
+ 'AU','0835','NT','Virginia'
189
+ 'AU','0836','NT','Girraween'
190
+ 'AU','0836','NT','Herbert'
191
+ 'AU','0836','NT','Humpty Doo'
192
+ 'AU','0837','NT','Manton'
193
+ 'AU','0837','NT','Noonamah'
194
+ 'AU','0838','NT','Berry Springs'
195
+ 'AU','0840','NT','Dundee Beach'
196
+ 'AU','0840','NT','Dundee Downs'
197
+ 'AU','0840','NT','Dundee Forest'
198
+ 'AU','0841','NT','Darwin River'
199
+ 'AU','0845','NT','Batchelor'
200
+ 'AU','0846','NT','Adelaide River'
201
+ 'AU','0847','NT','Pine Creek'
202
+ 'AU','0850','NT','Cossack'
203
+ 'AU','0850','NT','Emungalan'
204
+ 'AU','0850','NT','Katherine'
205
+ 'AU','0850','NT','Katherine East'
206
+ 'AU','0850','NT','Katherine South'
207
+ 'AU','0850','NT','Lansdowne'
208
+ 'AU','0851','NT','Katherine'
209
+ 'AU','0852','NT','Arnold'
210
+ 'AU','0852','NT','Baines'
211
+ 'AU','0852','NT','Barunga'
212
+ 'AU','0852','NT','Beswick'
213
+ 'AU','0852','NT','Beswick Creek'
214
+ 'AU','0852','NT','Binjari'
215
+ 'AU','0852','NT','Birdum'
216
+ 'AU','0852','NT','Bradshaw'
217
+ 'AU','0852','NT','Buchanan'
218
+ 'AU','0852','NT','Bulman Weemol'
219
+ 'AU','0852','NT','Creswell'
220
+ 'AU','0852','NT','Daguragu'
221
+ 'AU','0852','NT','Daly Waters'
222
+ 'AU','0852','NT','Delamere'
223
+ 'AU','0852','NT','Dunmarra'
224
+ 'AU','0852','NT','Edith'
225
+ 'AU','0852','NT','Elsey'
226
+ 'AU','0852','NT','Elsey Station'
227
+ 'AU','0852','NT','Florina'
228
+ 'AU','0852','NT','Flying Fox'
229
+ 'AU','0852','NT','Gregory'
230
+ 'AU','0852','NT','Gulung Mardrulk'
231
+ 'AU','0852','NT','Gurindji'
232
+ 'AU','0852','NT','Jilkminggan'
233
+ 'AU','0852','NT','Kalkarindji'
234
+ 'AU','0852','NT','Katherine'
235
+ 'AU','0852','NT','Lajamanu'
236
+ 'AU','0852','NT','Larrimah'
237
+ 'AU','0852','NT','Limmen'
238
+ 'AU','0852','NT','Manbulloo'
239
+ 'AU','0852','NT','Maranboy'
240
+ 'AU','0852','NT','Mataranka'
241
+ 'AU','0852','NT','Mcarthur'
242
+ 'AU','0852','NT','Miniyeri'
243
+ 'AU','0852','NT','Ngukurr'
244
+ 'AU','0852','NT','Nitmiluk'
245
+ 'AU','0852','NT','Numbulwar'
246
+ 'AU','0852','NT','Pellew Islands'
247
+ 'AU','0852','NT','Pigeon Hole'
248
+ 'AU','0852','NT','Robinson River'
249
+ 'AU','0852','NT','Sturt Plateau'
250
+ 'AU','0852','NT','Tanami East'
251
+ 'AU','0852','NT','Timber Creek'
252
+ 'AU','0852','NT','Top Springs'
253
+ 'AU','0852','NT','Uralla'
254
+ 'AU','0852','NT','Venn'
255
+ 'AU','0852','NT','Victoria River'
256
+ 'AU','0852','NT','Victoria River Downs'
257
+ 'AU','0852','NT','Warumungu'
258
+ 'AU','0852','NT','Wave Hill'
259
+ 'AU','0852','NT','Wilton'
260
+ 'AU','0852','NT','Yarralin'
261
+ 'AU','0853','NT','Tindal'
262
+ 'AU','0854','NT','Borroloola'
263
+ 'AU','0854','NT','King Ash Bay'
264
+ 'AU','0860','NT','Tennant Creek'
265
+ 'AU','0861','NT','Brunchilly'
266
+ 'AU','0861','NT','Tennant Creek'
267
+ 'AU','0862','NT','Avon Downs'
268
+ 'AU','0862','NT','Calvert'
269
+ 'AU','0862','NT','Cresswell Downs'
270
+ 'AU','0862','NT','Elliott'
271
+ 'AU','0862','NT','Helen Springs'
272
+ 'AU','0862','NT','Muckaty Station'
273
+ 'AU','0862','NT','Newcastle Waters'
274
+ 'AU','0862','NT','Nicholson'
275
+ 'AU','0862','NT','Pamayu'
276
+ 'AU','0862','NT','Phillip Creek Station'
277
+ 'AU','0862','NT','Renner Springs'
278
+ 'AU','0862','NT','Tablelands'
279
+ 'AU','0862','NT','Tennant Creek'
280
+ 'AU','0862','NT','Three Ways'
281
+ 'AU','0862','NT','Warrego'
282
+ 'AU','0862','NT','Wollogorang Station'
283
+ 'AU','0862','NT','Wycliffe Well'
284
+ 'AU','0870','NT','Alice Springs'
285
+ 'AU','0870','NT','Araluen'
286
+ 'AU','0870','NT','Arumbera'
287
+ 'AU','0870','NT','Braitling'
288
+ 'AU','0870','NT','Ciccone'
289
+ 'AU','0870','NT','Connellan'
290
+ 'AU','0870','NT','Desert Springs'
291
+ 'AU','0870','NT','East Side'
292
+ 'AU','0870','NT','Flynn'
293
+ 'AU','0870','NT','Gillen'
294
+ 'AU','0870','NT','Ilparpa'
295
+ 'AU','0870','NT','Irlpme'
296
+ 'AU','0870','NT','Larapinta'
297
+ 'AU','0870','NT','Mount Johns'
298
+ 'AU','0870','NT','Ross'
299
+ 'AU','0870','NT','Sadadeen'
300
+ 'AU','0870','NT','Stuart'
301
+ 'AU','0870','NT','The Gap'
302
+ 'AU','0870','NT','Undoolya'
303
+ 'AU','0870','NT','White Gums'
304
+ 'AU','0871','NT','Alice Springs'
305
+ 'AU','0872','NT','Aherrenge'
306
+ 'AU','0872','NT','Ali Curung'
307
+ 'AU','0872','NT','Alice Springs'
308
+ 'AU','0872','NT','Amata'
309
+ 'AU','0872','NT','Amoonguna'
310
+ 'AU','0872','NT','Ampilatwatja'
311
+ 'AU','0872','NT','Anatye'
312
+ 'AU','0872','NT','Anmatjere'
313
+ 'AU','0872','NT','Antewenegerrde'
314
+ 'AU','0872','NT','Areyonga'
315
+ 'AU','0872','NT','Atitjere'
316
+ 'AU','0872','NT','Ayers Rock'
317
+ 'AU','0872','NT','Barrow Creek'
318
+ 'AU','0872','NT','Burt Plain'
319
+ 'AU','0872','NT','Canteen Creek'
320
+ 'AU','0872','NT','Chilla Well'
321
+ 'AU','0872','NT','Costello'
322
+ 'AU','0872','NT','Davenport'
323
+ 'AU','0872','NT','Docker River'
324
+ 'AU','0872','NT','Engawala'
325
+ 'AU','0872','NT','Erldunda'
326
+ 'AU','0872','SA','Ernabella'
327
+ 'AU','0872','NT','Finke'
328
+ 'AU','0872','SA','Fregon'
329
+ 'AU','0872','NT','Ghan'
330
+ 'AU','0872','WA','Gibson Desert North'
331
+ 'AU','0872','WA','Gibson Desert South'
332
+ 'AU','0872','NT','Haasts Bluff'
333
+ 'AU','0872','NT','Hale'
334
+ 'AU','0872','NT','Hart'
335
+ 'AU','0872','NT','Hart Range'
336
+ 'AU','0872','NT','Hermannsburg'
337
+ 'AU','0872','NT','Hugh'
338
+ 'AU','0872','NT','Imanpa'
339
+ 'AU','0872','SA','Indulkana'
340
+ 'AU','0872','NT','Jay Creek'
341
+ 'AU','0872','NT','Kaltukatjara'
342
+ 'AU','0872','NT','Kintore'
343
+ 'AU','0872','NT','Kiwirrkurra'
344
+ 'AU','0872','NT','Kulgera'
345
+ 'AU','0872','NT','Kunparrka'
346
+ 'AU','0872','NT','Lake Mackay'
347
+ 'AU','0872','NT','Laramba'
348
+ 'AU','0872','NT','Mereenie'
349
+ 'AU','0872','SA','Mimili'
350
+ 'AU','0872','NT','Mount Liebig'
351
+ 'AU','0872','NT','Mount Zeil'
352
+ 'AU','0872','NT','Mulga Bore'
353
+ 'AU','0872','NT','Murputja Homelands'
354
+ 'AU','0872','NT','Mutitjulu'
355
+ 'AU','0872','NT','Namatjira'
356
+ 'AU','0872','WA','Ngaanyatjarra\-Giles'
357
+ 'AU','0872','NT','Nyapari'
358
+ 'AU','0872','NT','Nyirripi'
359
+ 'AU','0872','NT','Papunya'
360
+ 'AU','0872','NT','Patjarr'
361
+ 'AU','0872','NT','Petermann'
362
+ 'AU','0872','NT','Pitjantjatjara Homelands'
363
+ 'AU','0872','NT','Sandover'
364
+ 'AU','0872','NT','Santa Teresa'
365
+ 'AU','0872','NT','Simpson'
366
+ 'AU','0872','NT','Tanami'
367
+ 'AU','0872','NT','Tara'
368
+ 'AU','0872','NT','Thangkenharenge'
369
+ 'AU','0872','NT','Ti Tree'
370
+ 'AU','0872','NT','Titjikala'
371
+ 'AU','0872','NT','Tjirrkarli'
372
+ 'AU','0872','NT','Tjukurla'
373
+ 'AU','0872','NT','Uluru'
374
+ 'AU','0872','NT','Umpangara'
375
+ 'AU','0872','NT','Urapuntja'
376
+ 'AU','0872','NT','Wallace Rockhole'
377
+ 'AU','0872','NT','Wanarn'
378
+ 'AU','0872','NT','Willowra'
379
+ 'AU','0872','NT','Wilora'
380
+ 'AU','0872','NT','Wingellina'
381
+ 'AU','0872','NT','Wutunugurra'
382
+ 'AU','0872','NT','Yuelamu'
383
+ 'AU','0872','NT','Yuendumu'
384
+ 'AU','0872','NT','Yulara'
385
+ 'AU','0880','NT','Gapuwiyak'
386
+ 'AU','0880','NT','Gove'
387
+ 'AU','0880','NT','Gunyangara'
388
+ 'AU','0880','NT','Nhulunbuy'
389
+ 'AU','0880','NT','Yirrkala'
390
+ 'AU','0881','NT','Nhulunbuy'
391
+ 'AU','0885','NT','Alyangula'
392
+ 'AU','0886','NT','Jabiru'
393
+ 'AU','0906','NT','Winnellie'
394
+ 'AU','0907','NT','Winnellie'
395
+ 'AU','0909','NT','Charles Darwin University'
396
+ 'AU','1001','NSW','Sydney'
397
+ 'AU','1002','NSW','Sydney'
398
+ 'AU','1003','NSW','Sydney'
399
+ 'AU','1004','NSW','Sydney'
400
+ 'AU','1005','NSW','Sydney'
401
+ 'AU','1006','NSW','Sydney'
402
+ 'AU','1007','NSW','Sydney'
403
+ 'AU','1008','NSW','Sydney'
404
+ 'AU','1009','NSW','Sydney'
405
+ 'AU','1010','NSW','Sydney'
406
+ 'AU','1011','NSW','Sydney'
407
+ 'AU','1020','NSW','Sydney'
408
+ 'AU','1021','NSW','Sydney'
409
+ 'AU','1022','NSW','Sydney'
410
+ 'AU','1023','NSW','Sydney'
411
+ 'AU','1025','NSW','Sydney'
412
+ 'AU','1026','NSW','Sydney'
413
+ 'AU','1027','NSW','Sydney'
414
+ 'AU','1028','NSW','Sydney'
415
+ 'AU','1029','NSW','Sydney'
416
+ 'AU','1030','NSW','Sydney'
417
+ 'AU','1031','NSW','Sydney'
418
+ 'AU','1032','NSW','Sydney'
419
+ 'AU','1033','NSW','Sydney'
420
+ 'AU','1034','NSW','Sydney'
421
+ 'AU','1035','NSW','Sydney'
422
+ 'AU','1036','NSW','Sydney'
423
+ 'AU','1037','NSW','Sydney'
424
+ 'AU','1038','NSW','Sydney'
425
+ 'AU','1039','NSW','Sydney'
426
+ 'AU','1040','NSW','Sydney'
427
+ 'AU','1041','NSW','Sydney'
428
+ 'AU','1042','NSW','Sydney'
429
+ 'AU','1043','NSW','Sydney'
430
+ 'AU','1044','NSW','Sydney'
431
+ 'AU','1045','NSW','Sydney'
432
+ 'AU','1046','NSW','Sydney'
433
+ 'AU','1100','NSW','Sydney'
434
+ 'AU','1101','NSW','Sydney'
435
+ 'AU','1105','NSW','Sydney'
436
+ 'AU','1106','NSW','Sydney'
437
+ 'AU','1107','NSW','Sydney'
438
+ 'AU','1108','NSW','Sydney'
439
+ 'AU','1109','NSW','Sydney'
440
+ 'AU','1110','NSW','Sydney'
441
+ 'AU','1112','NSW','Sydney'
442
+ 'AU','1113','NSW','Sydney'
443
+ 'AU','1114','NSW','Sydney'
444
+ 'AU','1115','NSW','Sydney'
445
+ 'AU','1116','NSW','Sydney'
446
+ 'AU','1117','NSW','Sydney'
447
+ 'AU','1118','NSW','Sydney'
448
+ 'AU','1119','NSW','Sydney'
449
+ 'AU','1120','NSW','Sydney'
450
+ 'AU','1121','NSW','Sydney'
451
+ 'AU','1122','NSW','Sydney'
452
+ 'AU','1123','NSW','Sydney'
453
+ 'AU','1124','NSW','Sydney'
454
+ 'AU','1125','NSW','Sydney'
455
+ 'AU','1126','NSW','Sydney'
456
+ 'AU','1127','NSW','Sydney'
457
+ 'AU','1128','NSW','Sydney'
458
+ 'AU','1129','NSW','Sydney'
459
+ 'AU','1130','NSW','Sydney'
460
+ 'AU','1131','NSW','Sydney'
461
+ 'AU','1132','NSW','Sydney'
462
+ 'AU','1133','NSW','Sydney'
463
+ 'AU','1134','NSW','Sydney'
464
+ 'AU','1135','NSW','Sydney'
465
+ 'AU','1136','NSW','Sydney'
466
+ 'AU','1137','NSW','Sydney'
467
+ 'AU','1138','NSW','Sydney'
468
+ 'AU','1139','NSW','Sydney'
469
+ 'AU','1140','NSW','Sydney'
470
+ 'AU','1141','NSW','Sydney'
471
+ 'AU','1142','NSW','Sydney'
472
+ 'AU','1143','NSW','Sydney'
473
+ 'AU','1144','NSW','Sydney'
474
+ 'AU','1145','NSW','Sydney'
475
+ 'AU','1146','NSW','Sydney'
476
+ 'AU','1147','NSW','Sydney'
477
+ 'AU','1148','NSW','Sydney'
478
+ 'AU','1149','NSW','Sydney'
479
+ 'AU','1150','NSW','Sydney'
480
+ 'AU','1151','NSW','Sydney'
481
+ 'AU','1152','NSW','Sydney'
482
+ 'AU','1153','NSW','Sydney'
483
+ 'AU','1154','NSW','Sydney'
484
+ 'AU','1155','NSW','Sydney'
485
+ 'AU','1156','NSW','Sydney'
486
+ 'AU','1157','NSW','Sydney'
487
+ 'AU','1158','NSW','Sydney'
488
+ 'AU','1159','NSW','Sydney'
489
+ 'AU','1160','NSW','Sydney'
490
+ 'AU','1161','NSW','Sydney'
491
+ 'AU','1162','NSW','Sydney'
492
+ 'AU','1163','NSW','Sydney'
493
+ 'AU','1164','NSW','Sydney'
494
+ 'AU','1165','NSW','Sydney'
495
+ 'AU','1166','NSW','Sydney'
496
+ 'AU','1167','NSW','Sydney'
497
+ 'AU','1168','NSW','Sydney'
498
+ 'AU','1169','NSW','Sydney'
499
+ 'AU','1170','NSW','Sydney'
500
+ 'AU','1171','NSW','Sydney'
501
+ 'AU','1172','NSW','Sydney'
502
+ 'AU','1173','NSW','Sydney'
503
+ 'AU','1174','NSW','Sydney'
504
+ 'AU','1175','NSW','Sydney'
505
+ 'AU','1176','NSW','Sydney'
506
+ 'AU','1177','NSW','Sydney'
507
+ 'AU','1178','NSW','Sydney'
508
+ 'AU','1179','NSW','Sydney'
509
+ 'AU','1180','NSW','Sydney'
510
+ 'AU','1181','NSW','Sydney'
511
+ 'AU','1182','NSW','Sydney'
512
+ 'AU','1183','NSW','Sydney'
513
+ 'AU','1184','NSW','Sydney'
514
+ 'AU','1185','NSW','Sydney'
515
+ 'AU','1186','NSW','Sydney'
516
+ 'AU','1187','NSW','Sydney'
517
+ 'AU','1188','NSW','Sydney'
518
+ 'AU','1189','NSW','Sydney'
519
+ 'AU','1190','NSW','Sydney'
520
+ 'AU','1191','NSW','Sydney'
521
+ 'AU','1192','NSW','Sydney'
522
+ 'AU','1193','NSW','Sydney'
523
+ 'AU','1194','NSW','Sydney'
524
+ 'AU','1195','NSW','Sydney'
525
+ 'AU','1196','NSW','Sydney'
526
+ 'AU','1197','NSW','Sydney'
527
+ 'AU','1198','NSW','Sydney'
528
+ 'AU','1199','NSW','Sydney'
529
+ 'AU','1200','NSW','Sydney'
530
+ 'AU','1201','NSW','Sydney'
531
+ 'AU','1202','NSW','Sydney'
532
+ 'AU','1203','NSW','Sydney'
533
+ 'AU','1204','NSW','Sydney'
534
+ 'AU','1205','NSW','Sydney'
535
+ 'AU','1206','NSW','Sydney'
536
+ 'AU','1207','NSW','Sydney'
537
+ 'AU','1208','NSW','Haymarket'
538
+ 'AU','1209','NSW','Australia Square'
539
+ 'AU','1210','NSW','Australia Square'
540
+ 'AU','1211','NSW','Australia Square'
541
+ 'AU','1212','NSW','Australia Square'
542
+ 'AU','1213','NSW','Australia Square'
543
+ 'AU','1214','NSW','Australia Square'
544
+ 'AU','1215','NSW','Australia Square'
545
+ 'AU','1216','NSW','Grosvenor Place'
546
+ 'AU','1217','NSW','Grosvenor Place'
547
+ 'AU','1218','NSW','Grosvenor Place'
548
+ 'AU','1219','NSW','Grosvenor Place'
549
+ 'AU','1220','NSW','Grosvenor Place'
550
+ 'AU','1221','NSW','Royal Exchange'
551
+ 'AU','1222','NSW','Royal Exchange'
552
+ 'AU','1223','NSW','Royal Exchange'
553
+ 'AU','1224','NSW','Royal Exchange'
554
+ 'AU','1225','NSW','Royal Exchange'
555
+ 'AU','1226','NSW','Queen Victoria Building'
556
+ 'AU','1227','NSW','Queen Victoria Building'
557
+ 'AU','1228','NSW','Queen Victoria Building'
558
+ 'AU','1229','NSW','Queen Victoria Building'
559
+ 'AU','1230','NSW','Queen Victoria Building'
560
+ 'AU','1231','NSW','Sydney South'
561
+ 'AU','1232','NSW','Sydney South'
562
+ 'AU','1233','NSW','Sydney South'
563
+ 'AU','1234','NSW','Sydney South'
564
+ 'AU','1235','NSW','Sydney South'
565
+ 'AU','1236','NSW','Haymarket'
566
+ 'AU','1237','NSW','Haymarket'
567
+ 'AU','1238','NSW','Haymarket'
568
+ 'AU','1239','NSW','Haymarket'
569
+ 'AU','1240','NSW','Haymarket'
570
+ 'AU','1291','NSW','Sydney'
571
+ 'AU','1292','NSW','Sydney'
572
+ 'AU','1293','NSW','Sydney'
573
+ 'AU','1294','NSW','Sydney'
574
+ 'AU','1295','NSW','Sydney'
575
+ 'AU','1296','NSW','Sydney'
576
+ 'AU','1297','NSW','Sydney'
577
+ 'AU','1298','NSW','Sydney'
578
+ 'AU','1299','NSW','Sydney'
579
+ 'AU','1300','NSW','Darlinghurst'
580
+ 'AU','1311','NSW','Eastern Suburbs Mc'
581
+ 'AU','1312','NSW','Eastern Suburbs Mc'
582
+ 'AU','1313','NSW','Eastern Suburbs Mc'
583
+ 'AU','1314','NSW','Eastern Suburbs Mc'
584
+ 'AU','1315','NSW','Eastern Suburbs Mc'
585
+ 'AU','1316','NSW','Eastern Suburbs Mc'
586
+ 'AU','1317','NSW','Eastern Suburbs Mc'
587
+ 'AU','1318','NSW','Eastern Suburbs Mc'
588
+ 'AU','1319','NSW','Eastern Suburbs Mc'
589
+ 'AU','1320','NSW','Eastern Suburbs Mc'
590
+ 'AU','1321','NSW','Eastern Suburbs Mc'
591
+ 'AU','1322','NSW','Eastern Suburbs Mc'
592
+ 'AU','1323','NSW','Eastern Suburbs Mc'
593
+ 'AU','1324','NSW','Eastern Suburbs Mc'
594
+ 'AU','1325','NSW','Eastern Suburbs Mc'
595
+ 'AU','1326','NSW','Eastern Suburbs Mc'
596
+ 'AU','1327','NSW','Eastern Suburbs Mc'
597
+ 'AU','1328','NSW','Eastern Suburbs Mc'
598
+ 'AU','1329','NSW','Eastern Suburbs Mc'
599
+ 'AU','1330','NSW','Eastern Suburbs Mc'
600
+ 'AU','1331','NSW','Eastern Suburbs Mc'
601
+ 'AU','1332','NSW','Eastern Suburbs Mc'
602
+ 'AU','1333','NSW','Eastern Suburbs Mc'
603
+ 'AU','1334','NSW','Eastern Suburbs Mc'
604
+ 'AU','1335','NSW','Potts Point'
605
+ 'AU','1340','NSW','Kings Cross'
606
+ 'AU','1350','NSW','Woollahra'
607
+ 'AU','1355','NSW','Bondi Junction'
608
+ 'AU','1360','NSW','Double Bay'
609
+ 'AU','1391','NSW','Ato Activity Statements'
610
+ 'AU','1401','NSW','Broadway'
611
+ 'AU','1416','NSW','Southern Suburbs Mc'
612
+ 'AU','1419','NSW','Southern Suburbs Mc'
613
+ 'AU','1420','NSW','Strawberry Hills'
614
+ 'AU','1422','NSW','Strawberry Hills'
615
+ 'AU','1423','NSW','Strawberry Hills'
616
+ 'AU','1424','NSW','Strawberry Hills'
617
+ 'AU','1425','NSW','Strawberry Hills'
618
+ 'AU','1426','NSW','Strawberry Hills'
619
+ 'AU','1427','NSW','Strawberry Hills'
620
+ 'AU','1428','NSW','Strawberry Hills'
621
+ 'AU','1429','NSW','Strawberry Hills'
622
+ 'AU','1430','NSW','Eveleigh'
623
+ 'AU','1435','NSW','Alexandria'
624
+ 'AU','1440','NSW','Waterloo'
625
+ 'AU','1441','NSW','Waterloo'
626
+ 'AU','1445','NSW','Rosebery'
627
+ 'AU','1450','NSW','Camperdown'
628
+ 'AU','1455','NSW','Botany'
629
+ 'AU','1460','NSW','Mascot'
630
+ 'AU','1465','NSW','Kensington'
631
+ 'AU','1466','NSW','Unsw Sydney'
632
+ 'AU','1470','NSW','Drummoyne'
633
+ 'AU','1475','NSW','Marrickville'
634
+ 'AU','1476','NSW','Marrickville'
635
+ 'AU','1480','NSW','Kingsgrove'
636
+ 'AU','1481','NSW','Hurstville Bc'
637
+ 'AU','1484','NSW','Kingsgrove Dc'
638
+ 'AU','1485','NSW','Kogarah'
639
+ 'AU','1487','NSW','Kogarah'
640
+ 'AU','1490','NSW','Miranda'
641
+ 'AU','1493','NSW','Hurstville'
642
+ 'AU','1495','NSW','Caringbah'
643
+ 'AU','1499','NSW','Sutherland'
644
+ 'AU','1515','NSW','West Chatswood'
645
+ 'AU','1560','NSW','Northbridge'
646
+ 'AU','1565','NSW','Milsons Point'
647
+ 'AU','1570','NSW','Artarmon'
648
+ 'AU','1582','NSW','Crows Nest'
649
+ 'AU','1585','NSW','Crows Nest'
650
+ 'AU','1590','NSW','St Leonards'
651
+ 'AU','1595','NSW','Lane Cove'
652
+ 'AU','1597','NSW','Lane Cove'
653
+ 'AU','1602','NSW','Lane Cove Dc'
654
+ 'AU','1608','NSW','Lane Cove Dc'
655
+ 'AU','1610','NSW','Lane Cove Dc'
656
+ 'AU','1611','NSW','Lane Cove Dc'
657
+ 'AU','1630','NSW','Hornsby'
658
+ 'AU','1635','NSW','Hornsby Westfield'
659
+ 'AU','1639','NSW','Frenchs Forest'
660
+ 'AU','1640','NSW','Frenchs Forest'
661
+ 'AU','1655','NSW','Manly'
662
+ 'AU','1658','NSW','Mona Vale'
663
+ 'AU','1660','NSW','Mona Vale'
664
+ 'AU','1670','NSW','North Ryde Bc'
665
+ 'AU','1675','NSW','Gladesville'
666
+ 'AU','1680','NSW','Ryde'
667
+ 'AU','1685','NSW','West Ryde'
668
+ 'AU','1690','NSW','Northern Suburbs Mc'
669
+ 'AU','1691','NSW','Northern Suburbs Mc'
670
+ 'AU','1692','NSW','Northern Suburbs Mc'
671
+ 'AU','1693','NSW','Northern Suburbs Mc'
672
+ 'AU','1694','NSW','Northern Suburbs Mc'
673
+ 'AU','1695','NSW','Northern Suburbs Mc'
674
+ 'AU','1696','NSW','Northern Suburbs Mc'
675
+ 'AU','1697','NSW','Northern Suburbs Mc'
676
+ 'AU','1698','NSW','Northern Suburbs Mc'
677
+ 'AU','1699','NSW','Northern Suburbs Mc'
678
+ 'AU','1700','NSW','Ermington'
679
+ 'AU','1701','NSW','Rydalmere Bc'
680
+ 'AU','1710','NSW','Epping'
681
+ 'AU','1712','NSW','Epping'
682
+ 'AU','1715','NSW','Pennant Hills'
683
+ 'AU','1730','NSW','Seven Hills'
684
+ 'AU','1740','NSW','Parramatta'
685
+ 'AU','1741','NSW','Parramatta'
686
+ 'AU','1750','NSW','North Parramatta'
687
+ 'AU','1755','NSW','Baulkham Hills'
688
+ 'AU','1765','NSW','Castle Hill'
689
+ 'AU','1771','NSW','Pennant Hills'
690
+ 'AU','1781','NSW','Seven Hills Mc'
691
+ 'AU','1790','NSW','St Marys'
692
+ 'AU','1797','NSW','Penrith South Dc'
693
+ 'AU','1800','NSW','Ashfield'
694
+ 'AU','1805','NSW','Burwood'
695
+ 'AU','1811','NSW','Silverwater'
696
+ 'AU','1816','NSW','Strathfield'
697
+ 'AU','1819','NSW','Strathfield'
698
+ 'AU','1825','NSW','Lidcombe'
699
+ 'AU','1826','NSW','Lidcombe'
700
+ 'AU','1830','NSW','Granville'
701
+ 'AU','1831','NSW','Granville'
702
+ 'AU','1835','NSW','Auburn'
703
+ 'AU','1848','NSW','Guildford'
704
+ 'AU','1851','NSW','Wetherill Park Dc'
705
+ 'AU','1860','NSW','Fairfield'
706
+ 'AU','1871','NSW','Liverpool'
707
+ 'AU','1875','NSW','Moorebank'
708
+ 'AU','1885','NSW','Bankstown'
709
+ 'AU','1888','NSW','Bankstown'
710
+ 'AU','1890','NSW','Ingleburn'
711
+ 'AU','1891','NSW','Milperra'
712
+ 'AU','1900','NSW','Leightonfield Mc'
713
+ 'AU','1902','NSW','Leightonfield Mc'
714
+ 'AU','2000','NSW','Barangaroo'
715
+ 'AU','2000','NSW','Dawes Point'
716
+ 'AU','2000','NSW','Haymarket'
717
+ 'AU','2000','NSW','Millers Point'
718
+ 'AU','2000','NSW','Parliament House'
719
+ 'AU','2000','NSW','Sydney'
720
+ 'AU','2000','NSW','Sydney South'
721
+ 'AU','2000','NSW','The Rocks'
722
+ 'AU','2001','NSW','Sydney'
723
+ 'AU','2002','NSW','World Square'
724
+ 'AU','2004','NSW','Alexandria Mc'
725
+ 'AU','2004','NSW','Eastern Suburbs Mc'
726
+ 'AU','2006','NSW','The University Of Sydney'
727
+ 'AU','2007','NSW','Broadway'
728
+ 'AU','2007','NSW','Ultimo'
729
+ 'AU','2008','NSW','Chippendale'
730
+ 'AU','2008','NSW','Darlington'
731
+ 'AU','2009','NSW','Pyrmont'
732
+ 'AU','2010','NSW','Darlinghurst'
733
+ 'AU','2010','NSW','Surry Hills'
734
+ 'AU','2011','NSW','Elizabeth Bay'
735
+ 'AU','2011','NSW','Hmas Kuttabul'
736
+ 'AU','2011','NSW','Potts Point'
737
+ 'AU','2011','NSW','Rushcutters Bay'
738
+ 'AU','2011','NSW','Woolloomooloo'
739
+ 'AU','2012','NSW','Strawberry Hills'
740
+ 'AU','2013','NSW','Strawberry Hills'
741
+ 'AU','2015','NSW','Alexandria'
742
+ 'AU','2015','NSW','Beaconsfield'
743
+ 'AU','2015','NSW','Eveleigh'
744
+ 'AU','2016','NSW','Redfern'
745
+ 'AU','2017','NSW','Waterloo'
746
+ 'AU','2017','NSW','Zetland'
747
+ 'AU','2018','NSW','Eastlakes'
748
+ 'AU','2018','NSW','Rosebery'
749
+ 'AU','2019','NSW','Banksmeadow'
750
+ 'AU','2019','NSW','Botany'
751
+ 'AU','2020','NSW','Mascot'
752
+ 'AU','2020','NSW','Sydney Domestic Airport'
753
+ 'AU','2020','NSW','Sydney International Airport'
754
+ 'AU','2021','NSW','Centennial Park'
755
+ 'AU','2021','NSW','Moore Park'
756
+ 'AU','2021','NSW','Paddington'
757
+ 'AU','2022','NSW','Bondi Junction'
758
+ 'AU','2022','NSW','Bondi Junction Plaza'
759
+ 'AU','2022','NSW','Queens Park'
760
+ 'AU','2023','NSW','Bellevue Hill'
761
+ 'AU','2024','NSW','Bronte'
762
+ 'AU','2024','NSW','Waverley'
763
+ 'AU','2025','NSW','Woollahra'
764
+ 'AU','2026','NSW','Bondi'
765
+ 'AU','2026','NSW','Bondi Beach'
766
+ 'AU','2026','NSW','North Bondi'
767
+ 'AU','2026','NSW','Tamarama'
768
+ 'AU','2027','NSW','Darling Point'
769
+ 'AU','2027','NSW','Edgecliff'
770
+ 'AU','2027','NSW','Hmas Rushcutters'
771
+ 'AU','2027','NSW','Point Piper'
772
+ 'AU','2028','NSW','Double Bay'
773
+ 'AU','2029','NSW','Rose Bay'
774
+ 'AU','2030','NSW','Dover Heights'
775
+ 'AU','2030','NSW','Hmas Watson'
776
+ 'AU','2030','NSW','Rose Bay North'
777
+ 'AU','2030','NSW','Vaucluse'
778
+ 'AU','2030','NSW','Watsons Bay'
779
+ 'AU','2031','NSW','Clovelly'
780
+ 'AU','2031','NSW','Clovelly West'
781
+ 'AU','2031','NSW','Randwick'
782
+ 'AU','2031','NSW','St Pauls'
783
+ 'AU','2032','NSW','Daceyville'
784
+ 'AU','2032','NSW','Kingsford'
785
+ 'AU','2033','NSW','Kensington'
786
+ 'AU','2034','NSW','Coogee'
787
+ 'AU','2034','NSW','South Coogee'
788
+ 'AU','2035','NSW','Maroubra'
789
+ 'AU','2035','NSW','Maroubra South'
790
+ 'AU','2035','NSW','Pagewood'
791
+ 'AU','2036','NSW','Chifley'
792
+ 'AU','2036','NSW','Eastgardens'
793
+ 'AU','2036','NSW','Hillsdale'
794
+ 'AU','2036','NSW','La Perouse'
795
+ 'AU','2036','NSW','Little Bay'
796
+ 'AU','2036','NSW','Malabar'
797
+ 'AU','2036','NSW','Matraville'
798
+ 'AU','2036','NSW','Phillip Bay'
799
+ 'AU','2036','NSW','Port Botany'
800
+ 'AU','2037','NSW','Forest Lodge'
801
+ 'AU','2037','NSW','Glebe'
802
+ 'AU','2038','NSW','Annandale'
803
+ 'AU','2039','NSW','Rozelle'
804
+ 'AU','2040','NSW','Leichhardt'
805
+ 'AU','2040','NSW','Lilyfield'
806
+ 'AU','2041','NSW','Balmain'
807
+ 'AU','2041','NSW','Balmain East'
808
+ 'AU','2041','NSW','Birchgrove'
809
+ 'AU','2042','NSW','Enmore'
810
+ 'AU','2042','NSW','Newtown'
811
+ 'AU','2043','NSW','Erskineville'
812
+ 'AU','2044','NSW','St Peters'
813
+ 'AU','2044','NSW','Sydenham'
814
+ 'AU','2044','NSW','Tempe'
815
+ 'AU','2045','NSW','Haberfield'
816
+ 'AU','2046','NSW','Abbotsford'
817
+ 'AU','2046','NSW','Canada Bay'
818
+ 'AU','2046','NSW','Chiswick'
819
+ 'AU','2046','NSW','Five Dock'
820
+ 'AU','2046','NSW','Rodd Point'
821
+ 'AU','2046','NSW','Russell Lea'
822
+ 'AU','2046','NSW','Wareemba'
823
+ 'AU','2047','NSW','Drummoyne'
824
+ 'AU','2048','NSW','Stanmore'
825
+ 'AU','2048','NSW','Westgate'
826
+ 'AU','2049','NSW','Lewisham'
827
+ 'AU','2049','NSW','Petersham'
828
+ 'AU','2049','NSW','Petersham North'
829
+ 'AU','2050','NSW','Camperdown'
830
+ 'AU','2050','NSW','Missenden Road'
831
+ 'AU','2052','NSW','Unsw Sydney'
832
+ 'AU','2055','NSW','North Sydney'
833
+ 'AU','2057','NSW','Chatswood'
834
+ 'AU','2058','NSW','Northern Suburbs Mc'
835
+ 'AU','2059','NSW','North Sydney'
836
+ 'AU','2060','NSW','Hmas Platypus'
837
+ 'AU','2060','NSW','Hmas Waterhen'
838
+ 'AU','2060','NSW','Lavender Bay'
839
+ 'AU','2060','NSW','Mcmahons Point'
840
+ 'AU','2060','NSW','North Sydney'
841
+ 'AU','2060','NSW','North Sydney Shoppingworld'
842
+ 'AU','2060','NSW','Waverton'
843
+ 'AU','2061','NSW','Kirribilli'
844
+ 'AU','2061','NSW','Milsons Point'
845
+ 'AU','2062','NSW','Cammeray'
846
+ 'AU','2063','NSW','Northbridge'
847
+ 'AU','2064','NSW','Artarmon'
848
+ 'AU','2065','NSW','Crows Nest'
849
+ 'AU','2065','NSW','Greenwich'
850
+ 'AU','2065','NSW','Naremburn'
851
+ 'AU','2065','NSW','Royal North Shore Hospital'
852
+ 'AU','2065','NSW','St Leonards'
853
+ 'AU','2065','NSW','Wollstonecraft'
854
+ 'AU','2066','NSW','Lane Cove'
855
+ 'AU','2066','NSW','Lane Cove North'
856
+ 'AU','2066','NSW','Lane Cove West'
857
+ 'AU','2066','NSW','Linley Point'
858
+ 'AU','2066','NSW','Longueville'
859
+ 'AU','2066','NSW','Northwood'
860
+ 'AU','2066','NSW','Riverview'
861
+ 'AU','2067','NSW','Chatswood'
862
+ 'AU','2067','NSW','Chatswood West'
863
+ 'AU','2068','NSW','Castlecrag'
864
+ 'AU','2068','NSW','Middle Cove'
865
+ 'AU','2068','NSW','North Willoughby'
866
+ 'AU','2068','NSW','Willoughby'
867
+ 'AU','2068','NSW','Willoughby East'
868
+ 'AU','2068','NSW','Willoughby North'
869
+ 'AU','2069','NSW','Castle Cove'
870
+ 'AU','2069','NSW','Roseville'
871
+ 'AU','2069','NSW','Roseville Chase'
872
+ 'AU','2070','NSW','East Lindfield'
873
+ 'AU','2070','NSW','Lindfield'
874
+ 'AU','2070','NSW','Lindfield West'
875
+ 'AU','2071','NSW','East Killara'
876
+ 'AU','2071','NSW','Killara'
877
+ 'AU','2072','NSW','Gordon'
878
+ 'AU','2073','NSW','Pymble'
879
+ 'AU','2073','NSW','West Pymble'
880
+ 'AU','2074','NSW','North Turramurra'
881
+ 'AU','2074','NSW','South Turramurra'
882
+ 'AU','2074','NSW','Turramurra'
883
+ 'AU','2074','NSW','Warrawee'
884
+ 'AU','2075','NSW','St Ives'
885
+ 'AU','2075','NSW','St Ives Chase'
886
+ 'AU','2076','NSW','Normanhurst'
887
+ 'AU','2076','NSW','North Wahroonga'
888
+ 'AU','2076','NSW','Wahroonga'
889
+ 'AU','2077','NSW','Asquith'
890
+ 'AU','2077','NSW','Hornsby'
891
+ 'AU','2077','NSW','Hornsby Heights'
892
+ 'AU','2077','NSW','Waitara'
893
+ 'AU','2079','NSW','Mount Colah'
894
+ 'AU','2080','NSW','Mount Kuring\-Gai'
895
+ 'AU','2081','NSW','Berowra'
896
+ 'AU','2081','NSW','Cowan'
897
+ 'AU','2082','NSW','Berowra Creek'
898
+ 'AU','2082','NSW','Berowra Heights'
899
+ 'AU','2082','NSW','Berowra Waters'
900
+ 'AU','2083','NSW','Bar Point'
901
+ 'AU','2083','NSW','Brooklyn'
902
+ 'AU','2083','NSW','Cheero Point'
903
+ 'AU','2083','NSW','Cogra Bay'
904
+ 'AU','2083','NSW','Dangar Island'
905
+ 'AU','2083','NSW','Milsons Passage'
906
+ 'AU','2083','NSW','Mooney Mooney'
907
+ 'AU','2084','NSW','Cottage Point'
908
+ 'AU','2084','NSW','Duffys Forest'
909
+ 'AU','2084','NSW','Terrey Hills'
910
+ 'AU','2085','NSW','Belrose'
911
+ 'AU','2085','NSW','Belrose West'
912
+ 'AU','2085','NSW','Davidson'
913
+ 'AU','2086','NSW','Frenchs Forest'
914
+ 'AU','2086','NSW','Frenchs Forest East'
915
+ 'AU','2087','NSW','Forestville'
916
+ 'AU','2087','NSW','Killarney Heights'
917
+ 'AU','2088','NSW','Mosman'
918
+ 'AU','2088','NSW','Spit Junction'
919
+ 'AU','2089','NSW','Neutral Bay'
920
+ 'AU','2089','NSW','Neutral Bay Junction'
921
+ 'AU','2090','NSW','Cremorne'
922
+ 'AU','2090','NSW','Cremorne Junction'
923
+ 'AU','2090','NSW','Cremorne Point'
924
+ 'AU','2091','NSW','Hmas Penguin'
925
+ 'AU','2092','NSW','Seaforth'
926
+ 'AU','2093','NSW','Balgowlah'
927
+ 'AU','2093','NSW','Balgowlah Heights'
928
+ 'AU','2093','NSW','Clontarf'
929
+ 'AU','2093','NSW','Manly Vale'
930
+ 'AU','2093','NSW','North Balgowlah'
931
+ 'AU','2094','NSW','Fairlight'
932
+ 'AU','2095','NSW','Manly'
933
+ 'AU','2095','NSW','Manly East'
934
+ 'AU','2096','NSW','Curl Curl'
935
+ 'AU','2096','NSW','Freshwater'
936
+ 'AU','2096','NSW','Harbord'
937
+ 'AU','2096','NSW','Queenscliff'
938
+ 'AU','2097','NSW','Collaroy'
939
+ 'AU','2097','NSW','Collaroy Beach'
940
+ 'AU','2097','NSW','Collaroy Plateau West'
941
+ 'AU','2097','NSW','Wheeler Heights'
942
+ 'AU','2099','NSW','Cromer'
943
+ 'AU','2099','NSW','Dee Why'
944
+ 'AU','2099','NSW','Narraweena'
945
+ 'AU','2099','NSW','North Curl Curl'
946
+ 'AU','2100','NSW','Allambie Heights'
947
+ 'AU','2100','NSW','Beacon Hill'
948
+ 'AU','2100','NSW','Brookvale'
949
+ 'AU','2100','NSW','North Manly'
950
+ 'AU','2100','NSW','Oxford Falls'
951
+ 'AU','2100','NSW','Warringah Mall'
952
+ 'AU','2101','NSW','Elanora Heights'
953
+ 'AU','2101','NSW','Ingleside'
954
+ 'AU','2101','NSW','Narrabeen'
955
+ 'AU','2101','NSW','North Narrabeen'
956
+ 'AU','2102','NSW','Warriewood'
957
+ 'AU','2102','NSW','Warriewood Shopping Square'
958
+ 'AU','2103','NSW','Mona Vale'
959
+ 'AU','2104','NSW','Bayview'
960
+ 'AU','2105','NSW','Church Point'
961
+ 'AU','2105','NSW','Elvina Bay'
962
+ 'AU','2105','NSW','Lovett Bay'
963
+ 'AU','2105','NSW','Morning Bay'
964
+ 'AU','2105','NSW','Scotland Island'
965
+ 'AU','2106','NSW','Newport'
966
+ 'AU','2106','NSW','Newport Beach'
967
+ 'AU','2107','NSW','Avalon'
968
+ 'AU','2107','NSW','Avalon Beach'
969
+ 'AU','2107','NSW','Bilgola'
970
+ 'AU','2107','NSW','Careel Bay'
971
+ 'AU','2107','NSW','Clareville'
972
+ 'AU','2107','NSW','Paradise Beach'
973
+ 'AU','2107','NSW','Taylors Point'
974
+ 'AU','2107','NSW','Whale Beach'
975
+ 'AU','2108','NSW','Coasters Retreat'
976
+ 'AU','2108','NSW','Currawong Beach'
977
+ 'AU','2108','NSW','Great Mackerel Beach'
978
+ 'AU','2108','NSW','Palm Beach'
979
+ 'AU','2108','NSW','The Basin'
980
+ 'AU','2109','NSW','Macquarie University'
981
+ 'AU','2110','NSW','Hunters Hill'
982
+ 'AU','2110','NSW','Woolwich'
983
+ 'AU','2111','NSW','Boronia Park'
984
+ 'AU','2111','NSW','Gladesville'
985
+ 'AU','2111','NSW','Henley'
986
+ 'AU','2111','NSW','Huntleys Cove'
987
+ 'AU','2111','NSW','Huntleys Point'
988
+ 'AU','2111','NSW','Monash Park'
989
+ 'AU','2111','NSW','Tennyson Point'
990
+ 'AU','2112','NSW','Denistone East'
991
+ 'AU','2112','NSW','Putney'
992
+ 'AU','2112','NSW','Ryde'
993
+ 'AU','2113','NSW','Blenheim Road'
994
+ 'AU','2113','NSW','East Ryde'
995
+ 'AU','2113','NSW','Macquarie Centre'
996
+ 'AU','2113','NSW','Macquarie Park'
997
+ 'AU','2113','NSW','North Ryde'
998
+ 'AU','2114','NSW','Denistone'
999
+ 'AU','2114','NSW','Denistone West'
1000
+ 'AU','2114','NSW','Meadowbank'
1001
+ 'AU','2114','NSW','Melrose Park'
1002
+ 'AU','2114','NSW','West Ryde'
1003
+ 'AU','2115','NSW','Ermington'
1004
+ 'AU','2116','NSW','Rydalmere'
1005
+ 'AU','2117','NSW','Dundas'
1006
+ 'AU','2117','NSW','Dundas Valley'
1007
+ 'AU','2117','NSW','Oatlands'
1008
+ 'AU','2117','NSW','Telopea'
1009
+ 'AU','2118','NSW','Carlingford'
1010
+ 'AU','2118','NSW','Carlingford Court'
1011
+ 'AU','2118','NSW','Carlingford North'
1012
+ 'AU','2118','NSW','Kingsdene'
1013
+ 'AU','2119','NSW','Beecroft'
1014
+ 'AU','2119','NSW','Cheltenham'
1015
+ 'AU','2120','NSW','Pennant Hills'
1016
+ 'AU','2120','NSW','Thornleigh'
1017
+ 'AU','2120','NSW','Westleigh'
1018
+ 'AU','2121','NSW','Epping'
1019
+ 'AU','2121','NSW','North Epping'
1020
+ 'AU','2122','NSW','Eastwood'
1021
+ 'AU','2122','NSW','Marsfield'
1022
+ 'AU','2123','NSW','Parramatta'
1023
+ 'AU','2124','NSW','Parramatta'
1024
+ 'AU','2125','NSW','West Pennant Hills'
1025
+ 'AU','2126','NSW','Cherrybrook'
1026
+ 'AU','2127','NSW','Homebush Bay'
1027
+ 'AU','2127','NSW','Newington'
1028
+ 'AU','2128','NSW','Silverwater'
1029
+ 'AU','2129','NSW','Sydney Markets'
1030
+ 'AU','2130','NSW','Summer Hill'
1031
+ 'AU','2131','NSW','Ashfield'
1032
+ 'AU','2132','NSW','Croydon'
1033
+ 'AU','2133','NSW','Croydon Park'
1034
+ 'AU','2133','NSW','Enfield South'
1035
+ 'AU','2134','NSW','Burwood'
1036
+ 'AU','2134','NSW','Burwood North'
1037
+ 'AU','2135','NSW','Strathfield'
1038
+ 'AU','2136','NSW','Burwood Heights'
1039
+ 'AU','2136','NSW','Enfield'
1040
+ 'AU','2136','NSW','Strathfield South'
1041
+ 'AU','2137','NSW','Breakfast Point'
1042
+ 'AU','2137','NSW','Cabarita'
1043
+ 'AU','2137','NSW','Concord'
1044
+ 'AU','2137','NSW','Mortlake'
1045
+ 'AU','2137','NSW','North Strathfield'
1046
+ 'AU','2138','NSW','Concord West'
1047
+ 'AU','2138','NSW','Liberty Grove'
1048
+ 'AU','2138','NSW','Rhodes'
1049
+ 'AU','2139','NSW','Concord Repatriation Hospital'
1050
+ 'AU','2140','NSW','Homebush'
1051
+ 'AU','2140','NSW','Homebush South'
1052
+ 'AU','2140','NSW','Homebush West'
1053
+ 'AU','2141','NSW','Berala'
1054
+ 'AU','2141','NSW','Lidcombe'
1055
+ 'AU','2141','NSW','Lidcombe North'
1056
+ 'AU','2141','NSW','Rookwood'
1057
+ 'AU','2142','NSW','Blaxcell'
1058
+ 'AU','2142','NSW','Camellia'
1059
+ 'AU','2142','NSW','Clyde'
1060
+ 'AU','2142','NSW','Granville'
1061
+ 'AU','2142','NSW','Holroyd'
1062
+ 'AU','2142','NSW','Rosehill'
1063
+ 'AU','2142','NSW','South Granville'
1064
+ 'AU','2143','NSW','Birrong'
1065
+ 'AU','2143','NSW','Potts Hill'
1066
+ 'AU','2143','NSW','Regents Park'
1067
+ 'AU','2144','NSW','Auburn'
1068
+ 'AU','2145','NSW','Constitution Hill'
1069
+ 'AU','2145','NSW','Girraween'
1070
+ 'AU','2145','NSW','Greystanes'
1071
+ 'AU','2145','NSW','Mays Hill'
1072
+ 'AU','2145','NSW','Pemulwuy'
1073
+ 'AU','2145','NSW','Pendle Hill'
1074
+ 'AU','2145','NSW','South Wentworthville'
1075
+ 'AU','2145','NSW','Wentworthville'
1076
+ 'AU','2145','NSW','Westmead'
1077
+ 'AU','2146','NSW','Old Toongabbie'
1078
+ 'AU','2146','NSW','Toongabbie'
1079
+ 'AU','2146','NSW','Toongabbie East'
1080
+ 'AU','2147','NSW','Kings Langley'
1081
+ 'AU','2147','NSW','Lalor Park'
1082
+ 'AU','2147','NSW','Seven Hills'
1083
+ 'AU','2147','NSW','Seven Hills West'
1084
+ 'AU','2148','NSW','Arndell Park'
1085
+ 'AU','2148','NSW','Blacktown'
1086
+ 'AU','2148','NSW','Blacktown Westpoint'
1087
+ 'AU','2148','NSW','Huntingwood'
1088
+ 'AU','2148','NSW','Kings Park'
1089
+ 'AU','2148','NSW','Marayong'
1090
+ 'AU','2148','NSW','Prospect'
1091
+ 'AU','2150','NSW','Harris Park'
1092
+ 'AU','2150','NSW','Parramatta'
1093
+ 'AU','2150','NSW','Parramatta Westfield'
1094
+ 'AU','2151','NSW','North Parramatta'
1095
+ 'AU','2151','NSW','North Rocks'
1096
+ 'AU','2152','NSW','Northmead'
1097
+ 'AU','2153','NSW','Baulkham Hills'
1098
+ 'AU','2153','NSW','Bella Vista'
1099
+ 'AU','2153','NSW','Winston Hills'
1100
+ 'AU','2154','NSW','Castle Hill'
1101
+ 'AU','2155','NSW','Beaumont Hills'
1102
+ 'AU','2155','NSW','Kellyville'
1103
+ 'AU','2155','NSW','Kellyville Ridge'
1104
+ 'AU','2155','NSW','Rouse Hill'
1105
+ 'AU','2156','NSW','Annangrove'
1106
+ 'AU','2156','NSW','Glenhaven'
1107
+ 'AU','2156','NSW','Kenthurst'
1108
+ 'AU','2157','NSW','Canoelands'
1109
+ 'AU','2157','NSW','Forest Glen'
1110
+ 'AU','2157','NSW','Glenorie'
1111
+ 'AU','2158','NSW','Dural'
1112
+ 'AU','2158','NSW','Middle Dural'
1113
+ 'AU','2158','NSW','Round Corner'
1114
+ 'AU','2159','NSW','Arcadia'
1115
+ 'AU','2159','NSW','Berrilee'
1116
+ 'AU','2159','NSW','Fiddletown'
1117
+ 'AU','2159','NSW','Galston'
1118
+ 'AU','2160','NSW','Merrylands'
1119
+ 'AU','2160','NSW','Merrylands West'
1120
+ 'AU','2161','NSW','Guildford'
1121
+ 'AU','2161','NSW','Guildford West'
1122
+ 'AU','2161','NSW','Old Guildford'
1123
+ 'AU','2161','NSW','Yennora'
1124
+ 'AU','2162','NSW','Chester Hill'
1125
+ 'AU','2162','NSW','Sefton'
1126
+ 'AU','2163','NSW','Carramar'
1127
+ 'AU','2163','NSW','Lansdowne'
1128
+ 'AU','2163','NSW','Villawood'
1129
+ 'AU','2164','NSW','Smithfield'
1130
+ 'AU','2164','NSW','Smithfield West'
1131
+ 'AU','2164','NSW','Wetherill Park'
1132
+ 'AU','2164','NSW','Woodpark'
1133
+ 'AU','2165','NSW','Fairfield'
1134
+ 'AU','2165','NSW','Fairfield East'
1135
+ 'AU','2165','NSW','Fairfield Heights'
1136
+ 'AU','2165','NSW','Fairfield West'
1137
+ 'AU','2166','NSW','Cabramatta'
1138
+ 'AU','2166','NSW','Cabramatta West'
1139
+ 'AU','2166','NSW','Canley Heights'
1140
+ 'AU','2166','NSW','Canley Vale'
1141
+ 'AU','2166','NSW','Lansvale'
1142
+ 'AU','2167','NSW','Glenfield'
1143
+ 'AU','2168','NSW','Ashcroft'
1144
+ 'AU','2168','NSW','Busby'
1145
+ 'AU','2168','NSW','Cartwright'
1146
+ 'AU','2168','NSW','Green Valley'
1147
+ 'AU','2168','NSW','Heckenberg'
1148
+ 'AU','2168','NSW','Hinchinbrook'
1149
+ 'AU','2168','NSW','Miller'
1150
+ 'AU','2168','NSW','Sadleir'
1151
+ 'AU','2170','NSW','Casula'
1152
+ 'AU','2170','NSW','Casula Mall'
1153
+ 'AU','2170','NSW','Chipping Norton'
1154
+ 'AU','2170','NSW','Hammondville'
1155
+ 'AU','2170','NSW','Liverpool'
1156
+ 'AU','2170','NSW','Liverpool South'
1157
+ 'AU','2170','NSW','Liverpool Westfield'
1158
+ 'AU','2170','NSW','Lurnea'
1159
+ 'AU','2170','NSW','Moorebank'
1160
+ 'AU','2170','NSW','Mount Pritchard'
1161
+ 'AU','2170','NSW','Prestons'
1162
+ 'AU','2170','NSW','Warwick Farm'
1163
+ 'AU','2171','NSW','Cecil Hills'
1164
+ 'AU','2171','NSW','Horningsea Park'
1165
+ 'AU','2171','NSW','Hoxton Park'
1166
+ 'AU','2171','NSW','Middleton Grange'
1167
+ 'AU','2171','NSW','West Hoxton'
1168
+ 'AU','2172','NSW','Pleasure Point'
1169
+ 'AU','2172','NSW','Sandy Point'
1170
+ 'AU','2172','NSW','Voyager Point'
1171
+ 'AU','2173','NSW','Holsworthy'
1172
+ 'AU','2173','NSW','Wattle Grove'
1173
+ 'AU','2174','NSW','Edmondson Park'
1174
+ 'AU','2174','NSW','Ingleburn Milpo'
1175
+ 'AU','2175','NSW','Horsley Park'
1176
+ 'AU','2176','NSW','Abbotsbury'
1177
+ 'AU','2176','NSW','Bossley Park'
1178
+ 'AU','2176','NSW','Edensor Park'
1179
+ 'AU','2176','NSW','Greenfield Park'
1180
+ 'AU','2176','NSW','Prairiewood'
1181
+ 'AU','2176','NSW','St Johns Park'
1182
+ 'AU','2176','NSW','Wakeley'
1183
+ 'AU','2177','NSW','Bonnyrigg'
1184
+ 'AU','2177','NSW','Bonnyrigg Heights'
1185
+ 'AU','2178','NSW','Cecil Park'
1186
+ 'AU','2178','NSW','Kemps Creek'
1187
+ 'AU','2178','NSW','Mount Vernon'
1188
+ 'AU','2179','NSW','Austral'
1189
+ 'AU','2179','NSW','Leppington'
1190
+ 'AU','2190','NSW','Chullora'
1191
+ 'AU','2190','NSW','Greenacre'
1192
+ 'AU','2190','NSW','Mount Lewis'
1193
+ 'AU','2191','NSW','Belfield'
1194
+ 'AU','2192','NSW','Belmore'
1195
+ 'AU','2193','NSW','Ashbury'
1196
+ 'AU','2193','NSW','Canterbury'
1197
+ 'AU','2193','NSW','Hurlstone Park'
1198
+ 'AU','2194','NSW','Campsie'
1199
+ 'AU','2195','NSW','Lakemba'
1200
+ 'AU','2195','NSW','Wiley Park'
1201
+ 'AU','2196','NSW','Punchbowl'
1202
+ 'AU','2196','NSW','Roselands'
1203
+ 'AU','2197','NSW','Bass Hill'
1204
+ 'AU','2198','NSW','Georges Hall'
1205
+ 'AU','2199','NSW','Yagoona'
1206
+ 'AU','2199','NSW','Yagoona West'
1207
+ 'AU','2200','NSW','Bankstown'
1208
+ 'AU','2200','NSW','Bankstown Aerodrome'
1209
+ 'AU','2200','NSW','Bankstown North'
1210
+ 'AU','2200','NSW','Bankstown Square'
1211
+ 'AU','2200','NSW','Condell Park'
1212
+ 'AU','2200','NSW','Manahan'
1213
+ 'AU','2200','NSW','Mount Lewis'
1214
+ 'AU','2203','NSW','Dulwich Hill'
1215
+ 'AU','2204','NSW','Marrickville'
1216
+ 'AU','2204','NSW','Marrickville Metro'
1217
+ 'AU','2204','NSW','Marrickville South'
1218
+ 'AU','2205','NSW','Arncliffe'
1219
+ 'AU','2205','NSW','Turrella'
1220
+ 'AU','2205','NSW','Wolli Creek'
1221
+ 'AU','2206','NSW','Clemton Park'
1222
+ 'AU','2206','NSW','Earlwood'
1223
+ 'AU','2207','NSW','Bardwell Park'
1224
+ 'AU','2207','NSW','Bardwell Valley'
1225
+ 'AU','2207','NSW','Bexley'
1226
+ 'AU','2207','NSW','Bexley North'
1227
+ 'AU','2207','NSW','Bexley South'
1228
+ 'AU','2208','NSW','Kingsgrove'
1229
+ 'AU','2208','NSW','Kingsway West'
1230
+ 'AU','2209','NSW','Beverly Hills'
1231
+ 'AU','2209','NSW','Narwee'
1232
+ 'AU','2210','NSW','Lugarno'
1233
+ 'AU','2210','NSW','Peakhurst'
1234
+ 'AU','2210','NSW','Peakhurst Heights'
1235
+ 'AU','2210','NSW','Riverwood'
1236
+ 'AU','2211','NSW','Padstow'
1237
+ 'AU','2211','NSW','Padstow Heights'
1238
+ 'AU','2212','NSW','Revesby'
1239
+ 'AU','2212','NSW','Revesby Heights'
1240
+ 'AU','2212','NSW','Revesby North'
1241
+ 'AU','2213','NSW','East Hills'
1242
+ 'AU','2213','NSW','Panania'
1243
+ 'AU','2213','NSW','Picnic Point'
1244
+ 'AU','2214','NSW','Milperra'
1245
+ 'AU','2216','NSW','Banksia'
1246
+ 'AU','2216','NSW','Brighton\-Le\-Sands'
1247
+ 'AU','2216','NSW','Kyeemagh'
1248
+ 'AU','2216','NSW','Rockdale'
1249
+ 'AU','2217','NSW','Beverley Park'
1250
+ 'AU','2217','NSW','Kogarah'
1251
+ 'AU','2217','NSW','Kogarah Bay'
1252
+ 'AU','2217','NSW','Monterey'
1253
+ 'AU','2217','NSW','Ramsgate'
1254
+ 'AU','2217','NSW','Ramsgate Beach'
1255
+ 'AU','2218','NSW','Allawah'
1256
+ 'AU','2218','NSW','Carlton'
1257
+ 'AU','2219','NSW','Dolls Point'
1258
+ 'AU','2219','NSW','Sandringham'
1259
+ 'AU','2219','NSW','Sans Souci'
1260
+ 'AU','2220','NSW','Hurstville'
1261
+ 'AU','2220','NSW','Hurstville Grove'
1262
+ 'AU','2220','NSW','Hurstville Westfield'
1263
+ 'AU','2221','NSW','Blakehurst'
1264
+ 'AU','2221','NSW','Carss Park'
1265
+ 'AU','2221','NSW','Connells Point'
1266
+ 'AU','2221','NSW','Kyle Bay'
1267
+ 'AU','2221','NSW','South Hurstville'
1268
+ 'AU','2222','NSW','Penshurst'
1269
+ 'AU','2223','NSW','Mortdale'
1270
+ 'AU','2223','NSW','Oatley'
1271
+ 'AU','2224','NSW','Kangaroo Point'
1272
+ 'AU','2224','NSW','Sylvania'
1273
+ 'AU','2224','NSW','Sylvania Southgate'
1274
+ 'AU','2224','NSW','Sylvania Waters'
1275
+ 'AU','2225','NSW','Caravan Head'
1276
+ 'AU','2225','NSW','Oyster Bay'
1277
+ 'AU','2226','NSW','Bonnet Bay'
1278
+ 'AU','2226','NSW','Como'
1279
+ 'AU','2226','NSW','Jannali'
1280
+ 'AU','2227','NSW','Gymea'
1281
+ 'AU','2227','NSW','Gymea Bay'
1282
+ 'AU','2228','NSW','Miranda'
1283
+ 'AU','2228','NSW','Yowie Bay'
1284
+ 'AU','2229','NSW','Caringbah'
1285
+ 'AU','2229','NSW','Dolans Bay'
1286
+ 'AU','2229','NSW','Lilli Pilli'
1287
+ 'AU','2229','NSW','Port Hacking'
1288
+ 'AU','2229','NSW','Taren Point'
1289
+ 'AU','2229','NSW','Warumbul'
1290
+ 'AU','2230','NSW','Bundeena'
1291
+ 'AU','2230','NSW','Burraneer'
1292
+ 'AU','2230','NSW','Cronulla'
1293
+ 'AU','2230','NSW','Maianbar'
1294
+ 'AU','2230','NSW','Woolooware'
1295
+ 'AU','2231','NSW','Kurnell'
1296
+ 'AU','2232','NSW','Audley'
1297
+ 'AU','2232','NSW','Garie'
1298
+ 'AU','2232','NSW','Grays Point'
1299
+ 'AU','2232','NSW','Kareela'
1300
+ 'AU','2232','NSW','Kirrawee'
1301
+ 'AU','2232','NSW','Loftus'
1302
+ 'AU','2232','NSW','Sutherland'
1303
+ 'AU','2232','NSW','Woronora'
1304
+ 'AU','2233','NSW','Engadine'
1305
+ 'AU','2233','NSW','Heathcote'
1306
+ 'AU','2233','NSW','Waterfall'
1307
+ 'AU','2233','NSW','Woronora Heights'
1308
+ 'AU','2233','NSW','Yarrawarrah'
1309
+ 'AU','2234','NSW','Alfords Point'
1310
+ 'AU','2234','NSW','Bangor'
1311
+ 'AU','2234','NSW','Barden Ridge'
1312
+ 'AU','2234','NSW','Illawong'
1313
+ 'AU','2234','NSW','Lucas Heights'
1314
+ 'AU','2234','NSW','Menai'
1315
+ 'AU','2234','NSW','Menai Central'
1316
+ 'AU','2250','NSW','Bucketty'
1317
+ 'AU','2250','NSW','Calga'
1318
+ 'AU','2250','NSW','Central Mangrove'
1319
+ 'AU','2250','NSW','East Gosford'
1320
+ 'AU','2250','NSW','Erina'
1321
+ 'AU','2250','NSW','Erina Fair'
1322
+ 'AU','2250','NSW','Glenworth Valley'
1323
+ 'AU','2250','NSW','Gosford'
1324
+ 'AU','2250','NSW','Greengrove'
1325
+ 'AU','2250','NSW','Holgate'
1326
+ 'AU','2250','NSW','Kariong'
1327
+ 'AU','2250','NSW','Kulnura'
1328
+ 'AU','2250','NSW','Lisarow'
1329
+ 'AU','2250','NSW','Lower Mangrove'
1330
+ 'AU','2250','NSW','Mangrove Creek'
1331
+ 'AU','2250','NSW','Mangrove Mountain'
1332
+ 'AU','2250','NSW','Matcham'
1333
+ 'AU','2250','NSW','Mooney Mooney Creek'
1334
+ 'AU','2250','NSW','Mount Elliot'
1335
+ 'AU','2250','NSW','Mount White'
1336
+ 'AU','2250','NSW','Narara'
1337
+ 'AU','2250','NSW','Niagara Park'
1338
+ 'AU','2250','NSW','North Gosford'
1339
+ 'AU','2250','NSW','Peats Ridge'
1340
+ 'AU','2250','NSW','Point Clare'
1341
+ 'AU','2250','NSW','Point Frederick'
1342
+ 'AU','2250','NSW','Somersby'
1343
+ 'AU','2250','NSW','Springfield'
1344
+ 'AU','2250','NSW','Tascott'
1345
+ 'AU','2250','NSW','Ten Mile Hollow'
1346
+ 'AU','2250','NSW','Upper Mangrove'
1347
+ 'AU','2250','NSW','Wendoree Park'
1348
+ 'AU','2250','NSW','West Gosford'
1349
+ 'AU','2250','NSW','Wyoming'
1350
+ 'AU','2251','NSW','Avoca Beach'
1351
+ 'AU','2251','NSW','Bensville'
1352
+ 'AU','2251','NSW','Bouddi'
1353
+ 'AU','2251','NSW','Copacabana'
1354
+ 'AU','2251','NSW','Davistown'
1355
+ 'AU','2251','NSW','Green Point'
1356
+ 'AU','2251','NSW','Kincumber'
1357
+ 'AU','2251','NSW','Kincumber South'
1358
+ 'AU','2251','NSW','Macmasters Beach'
1359
+ 'AU','2251','NSW','Picketts Valley'
1360
+ 'AU','2251','NSW','Saratoga'
1361
+ 'AU','2251','NSW','Yattalunga'
1362
+ 'AU','2252','NSW','Central Coast Mc'
1363
+ 'AU','2256','NSW','Blackwall'
1364
+ 'AU','2256','NSW','Horsfield Bay'
1365
+ 'AU','2256','NSW','Koolewong'
1366
+ 'AU','2256','NSW','Little Wobby'
1367
+ 'AU','2256','NSW','Patonga'
1368
+ 'AU','2256','NSW','Pearl Beach'
1369
+ 'AU','2256','NSW','Phegans Bay'
1370
+ 'AU','2256','NSW','Wondabyne'
1371
+ 'AU','2256','NSW','Woy Woy'
1372
+ 'AU','2256','NSW','Woy Woy Bay'
1373
+ 'AU','2257','NSW','Booker Bay'
1374
+ 'AU','2257','NSW','Box Head'
1375
+ 'AU','2257','NSW','Daleys Point'
1376
+ 'AU','2257','NSW','Empire Bay'
1377
+ 'AU','2257','NSW','Ettalong Beach'
1378
+ 'AU','2257','NSW','Hardys Bay'
1379
+ 'AU','2257','NSW','Killcare'
1380
+ 'AU','2257','NSW','Killcare Heights'
1381
+ 'AU','2257','NSW','Pretty Beach'
1382
+ 'AU','2257','NSW','St Huberts Island'
1383
+ 'AU','2257','NSW','Umina Beach'
1384
+ 'AU','2257','NSW','Wagstaffe'
1385
+ 'AU','2258','NSW','Fountaindale'
1386
+ 'AU','2258','NSW','Kangy Angy'
1387
+ 'AU','2258','NSW','Ourimbah'
1388
+ 'AU','2258','NSW','Palm Grove'
1389
+ 'AU','2258','NSW','Palmdale'
1390
+ 'AU','2259','NSW','Alison'
1391
+ 'AU','2259','NSW','Bushells Ridge'
1392
+ 'AU','2259','NSW','Cedar Brush Creek'
1393
+ 'AU','2259','NSW','Chain Valley Bay'
1394
+ 'AU','2259','NSW','Crangan Bay'
1395
+ 'AU','2259','NSW','Dooralong'
1396
+ 'AU','2259','NSW','Durren Durren'
1397
+ 'AU','2259','NSW','Frazer Park'
1398
+ 'AU','2259','NSW','Freemans'
1399
+ 'AU','2259','NSW','Gwandalan'
1400
+ 'AU','2259','NSW','Halloran'
1401
+ 'AU','2259','NSW','Hamlyn Terrace'
1402
+ 'AU','2259','NSW','Jilliby'
1403
+ 'AU','2259','NSW','Kanwal'
1404
+ 'AU','2259','NSW','Kiar'
1405
+ 'AU','2259','NSW','Kingfisher Shores'
1406
+ 'AU','2259','NSW','Lake Munmorah'
1407
+ 'AU','2259','NSW','Lemon Tree'
1408
+ 'AU','2259','NSW','Little Jilliby'
1409
+ 'AU','2259','NSW','Mannering Park'
1410
+ 'AU','2259','NSW','Mardi'
1411
+ 'AU','2259','NSW','Moonee'
1412
+ 'AU','2259','NSW','Point Wolstoncroft'
1413
+ 'AU','2259','NSW','Ravensdale'
1414
+ 'AU','2259','NSW','Rocky Point'
1415
+ 'AU','2259','NSW','Summerland Point'
1416
+ 'AU','2259','NSW','Tacoma'
1417
+ 'AU','2259','NSW','Tacoma South'
1418
+ 'AU','2259','NSW','Tuggerah'
1419
+ 'AU','2259','NSW','Tuggerawong'
1420
+ 'AU','2259','NSW','Wadalba'
1421
+ 'AU','2259','NSW','Wallarah'
1422
+ 'AU','2259','NSW','Warnervale'
1423
+ 'AU','2259','NSW','Watanobbi'
1424
+ 'AU','2259','NSW','Woongarrah'
1425
+ 'AU','2259','NSW','Wybung'
1426
+ 'AU','2259','NSW','Wyee'
1427
+ 'AU','2259','NSW','Wyee Point'
1428
+ 'AU','2259','NSW','Wyong'
1429
+ 'AU','2259','NSW','Wyong Creek'
1430
+ 'AU','2259','NSW','Wyongah'
1431
+ 'AU','2259','NSW','Yarramalong'
1432
+ 'AU','2260','NSW','Erina Heights'
1433
+ 'AU','2260','NSW','Forresters Beach'
1434
+ 'AU','2260','NSW','North Avoca'
1435
+ 'AU','2260','NSW','Terrigal'
1436
+ 'AU','2260','NSW','Wamberal'
1437
+ 'AU','2261','NSW','Bateau Bay'
1438
+ 'AU','2261','NSW','Bay Village'
1439
+ 'AU','2261','NSW','Berkeley Vale'
1440
+ 'AU','2261','NSW','Blue Bay'
1441
+ 'AU','2261','NSW','Chittaway Bay'
1442
+ 'AU','2261','NSW','Chittaway Point'
1443
+ 'AU','2261','NSW','Glenning Valley'
1444
+ 'AU','2261','NSW','Killarney Vale'
1445
+ 'AU','2261','NSW','Long Jetty'
1446
+ 'AU','2261','NSW','Magenta'
1447
+ 'AU','2261','NSW','Shelly Beach'
1448
+ 'AU','2261','NSW','The Entrance'
1449
+ 'AU','2261','NSW','The Entrance North'
1450
+ 'AU','2261','NSW','Toowoon Bay'
1451
+ 'AU','2261','NSW','Tumbi Umbi'
1452
+ 'AU','2262','NSW','Blue Haven'
1453
+ 'AU','2262','NSW','Budgewoi'
1454
+ 'AU','2262','NSW','Budgewoi Peninsula'
1455
+ 'AU','2262','NSW','Buff Point'
1456
+ 'AU','2262','NSW','Colongra'
1457
+ 'AU','2262','NSW','Doyalson'
1458
+ 'AU','2262','NSW','Doyalson North'
1459
+ 'AU','2262','NSW','Halekulani'
1460
+ 'AU','2262','NSW','San Remo'
1461
+ 'AU','2263','NSW','Canton Beach'
1462
+ 'AU','2263','NSW','Charmhaven'
1463
+ 'AU','2263','NSW','Gorokan'
1464
+ 'AU','2263','NSW','Lake Haven'
1465
+ 'AU','2263','NSW','Norah Head'
1466
+ 'AU','2263','NSW','Noraville'
1467
+ 'AU','2263','NSW','Toukley'
1468
+ 'AU','2264','NSW','Balcolyn'
1469
+ 'AU','2264','NSW','Bonnells Bay'
1470
+ 'AU','2264','NSW','Brightwaters'
1471
+ 'AU','2264','NSW','Dora Creek'
1472
+ 'AU','2264','NSW','Eraring'
1473
+ 'AU','2264','NSW','Mandalong'
1474
+ 'AU','2264','NSW','Mirrabooka'
1475
+ 'AU','2264','NSW','Morisset'
1476
+ 'AU','2264','NSW','Morisset Park'
1477
+ 'AU','2264','NSW','Myuna Bay'
1478
+ 'AU','2264','NSW','Silverwater'
1479
+ 'AU','2264','NSW','Sunshine'
1480
+ 'AU','2264','NSW','Windermere Park'
1481
+ 'AU','2264','NSW','Yarrawonga Park'
1482
+ 'AU','2265','NSW','Cooranbong'
1483
+ 'AU','2265','NSW','Martinsville'
1484
+ 'AU','2267','NSW','Wangi Wangi'
1485
+ 'AU','2278','NSW','Barnsley'
1486
+ 'AU','2278','NSW','Killingworth'
1487
+ 'AU','2278','NSW','Wakefield'
1488
+ 'AU','2280','NSW','Belmont'
1489
+ 'AU','2280','NSW','Belmont North'
1490
+ 'AU','2280','NSW','Belmont South'
1491
+ 'AU','2280','NSW','Croudace Bay'
1492
+ 'AU','2280','NSW','Floraville'
1493
+ 'AU','2280','NSW','Jewells'
1494
+ 'AU','2280','NSW','Marks Point'
1495
+ 'AU','2280','NSW','Valentine'
1496
+ 'AU','2281','NSW','Blacksmiths'
1497
+ 'AU','2281','NSW','Cams Wharf'
1498
+ 'AU','2281','NSW','Catherine Hill Bay'
1499
+ 'AU','2281','NSW','Caves Beach'
1500
+ 'AU','2281','NSW','Little Pelican'
1501
+ 'AU','2281','NSW','Middle Camp'
1502
+ 'AU','2281','NSW','Murrays Beach'
1503
+ 'AU','2281','NSW','Nords Wharf'
1504
+ 'AU','2281','NSW','Pelican'
1505
+ 'AU','2281','NSW','Pinny Beach'
1506
+ 'AU','2281','NSW','Swansea'
1507
+ 'AU','2281','NSW','Swansea Heads'
1508
+ 'AU','2282','NSW','Eleebana'
1509
+ 'AU','2282','NSW','Lakelands'
1510
+ 'AU','2282','NSW','Warners Bay'
1511
+ 'AU','2283','NSW','Arcadia Vale'
1512
+ 'AU','2283','NSW','Awaba'
1513
+ 'AU','2283','NSW','Balmoral'
1514
+ 'AU','2283','NSW','Blackalls Park'
1515
+ 'AU','2283','NSW','Bolton Point'
1516
+ 'AU','2283','NSW','Buttaba'
1517
+ 'AU','2283','NSW','Carey Bay'
1518
+ 'AU','2283','NSW','Coal Point'
1519
+ 'AU','2283','NSW','Fassifern'
1520
+ 'AU','2283','NSW','Fennell Bay'
1521
+ 'AU','2283','NSW','Fishing Point'
1522
+ 'AU','2283','NSW','Kilaben Bay'
1523
+ 'AU','2283','NSW','Rathmines'
1524
+ 'AU','2283','NSW','Ryhope'
1525
+ 'AU','2283','NSW','Toronto'
1526
+ 'AU','2284','NSW','Argenton'
1527
+ 'AU','2284','NSW','Boolaroo'
1528
+ 'AU','2284','NSW','Booragul'
1529
+ 'AU','2284','NSW','Marmong Point'
1530
+ 'AU','2284','NSW','Speers Point'
1531
+ 'AU','2284','NSW','Teralba'
1532
+ 'AU','2284','NSW','Woodrising'
1533
+ 'AU','2285','NSW','Cameron Park'
1534
+ 'AU','2285','NSW','Cardiff'
1535
+ 'AU','2285','NSW','Cardiff Heights'
1536
+ 'AU','2285','NSW','Cardiff South'
1537
+ 'AU','2285','NSW','Edgeworth'
1538
+ 'AU','2285','NSW','Glendale'
1539
+ 'AU','2285','NSW','Macquarie Hills'
1540
+ 'AU','2286','NSW','Holmesville'
1541
+ 'AU','2286','NSW','Seahampton'
1542
+ 'AU','2286','NSW','West Wallsend'
1543
+ 'AU','2287','NSW','Birmingham Gardens'
1544
+ 'AU','2287','NSW','Elermore Vale'
1545
+ 'AU','2287','NSW','Fletcher'
1546
+ 'AU','2287','NSW','Maryland'
1547
+ 'AU','2287','NSW','Minmi'
1548
+ 'AU','2287','NSW','Rankin Park'
1549
+ 'AU','2287','NSW','Summer Hill'
1550
+ 'AU','2287','NSW','Wallsend'
1551
+ 'AU','2287','NSW','Wallsend South'
1552
+ 'AU','2289','NSW','Adamstown'
1553
+ 'AU','2289','NSW','Adamstown Heights'
1554
+ 'AU','2289','NSW','Garden Suburb'
1555
+ 'AU','2289','NSW','Highfields'
1556
+ 'AU','2289','NSW','Kotara'
1557
+ 'AU','2289','NSW','Kotara Fair'
1558
+ 'AU','2289','NSW','Kotara South'
1559
+ 'AU','2290','NSW','Bennetts Green'
1560
+ 'AU','2290','NSW','Charlestown'
1561
+ 'AU','2290','NSW','Dudley'
1562
+ 'AU','2290','NSW','Gateshead'
1563
+ 'AU','2290','NSW','Hillsborough'
1564
+ 'AU','2290','NSW','Kahibah'
1565
+ 'AU','2290','NSW','Mount Hutton'
1566
+ 'AU','2290','NSW','Redhead'
1567
+ 'AU','2290','NSW','Tingira Heights'
1568
+ 'AU','2290','NSW','Whitebridge'
1569
+ 'AU','2291','NSW','Merewether'
1570
+ 'AU','2291','NSW','Merewether Heights'
1571
+ 'AU','2291','NSW','The Junction'
1572
+ 'AU','2292','NSW','Broadmeadow'
1573
+ 'AU','2292','NSW','Hamilton North'
1574
+ 'AU','2293','NSW','Maryville'
1575
+ 'AU','2293','NSW','Wickham'
1576
+ 'AU','2294','NSW','Carrington'
1577
+ 'AU','2295','NSW','Fern Bay'
1578
+ 'AU','2295','NSW','Stockton'
1579
+ 'AU','2296','NSW','Islington'
1580
+ 'AU','2297','NSW','Tighes Hill'
1581
+ 'AU','2298','NSW','Georgetown'
1582
+ 'AU','2298','NSW','Waratah'
1583
+ 'AU','2298','NSW','Waratah West'
1584
+ 'AU','2299','NSW','Jesmond'
1585
+ 'AU','2299','NSW','Lambton'
1586
+ 'AU','2299','NSW','North Lambton'
1587
+ 'AU','2300','NSW','Bar Beach'
1588
+ 'AU','2300','NSW','Cooks Hill'
1589
+ 'AU','2300','NSW','Newcastle'
1590
+ 'AU','2300','NSW','Newcastle East'
1591
+ 'AU','2300','NSW','The Hill'
1592
+ 'AU','2302','NSW','Newcastle West'
1593
+ 'AU','2303','NSW','Hamilton'
1594
+ 'AU','2303','NSW','Hamilton East'
1595
+ 'AU','2303','NSW','Hamilton South'
1596
+ 'AU','2304','NSW','Kooragang'
1597
+ 'AU','2304','NSW','Mayfield'
1598
+ 'AU','2304','NSW','Mayfield East'
1599
+ 'AU','2304','NSW','Mayfield North'
1600
+ 'AU','2304','NSW','Mayfield West'
1601
+ 'AU','2304','NSW','Sandgate'
1602
+ 'AU','2304','NSW','Warabrook'
1603
+ 'AU','2305','NSW','Kotara East'
1604
+ 'AU','2305','NSW','New Lambton'
1605
+ 'AU','2305','NSW','New Lambton Heights'
1606
+ 'AU','2306','NSW','Windale'
1607
+ 'AU','2307','NSW','Shortland'
1608
+ 'AU','2308','NSW','Callaghan'
1609
+ 'AU','2308','NSW','Newcastle University'
1610
+ 'AU','2309','NSW','Dangar'
1611
+ 'AU','2310','NSW','Hunter Region Mc'
1612
+ 'AU','2311','NSW','Allynbrook'
1613
+ 'AU','2311','NSW','Bingleburra'
1614
+ 'AU','2311','NSW','Carrabolla'
1615
+ 'AU','2311','NSW','East Gresford'
1616
+ 'AU','2311','NSW','Eccleston'
1617
+ 'AU','2311','NSW','Gresford'
1618
+ 'AU','2311','NSW','Halton'
1619
+ 'AU','2311','NSW','Lewinsbrook'
1620
+ 'AU','2311','NSW','Lostock'
1621
+ 'AU','2311','NSW','Mount Rivers'
1622
+ 'AU','2311','NSW','Upper Allyn'
1623
+ 'AU','2312','NSW','Minimbah'
1624
+ 'AU','2312','NSW','Nabiac'
1625
+ 'AU','2314','NSW','Williamtown Raaf'
1626
+ 'AU','2315','NSW','Corlette'
1627
+ 'AU','2315','NSW','Fingal Bay'
1628
+ 'AU','2315','NSW','Nelson Bay'
1629
+ 'AU','2315','NSW','Shoal Bay'
1630
+ 'AU','2316','NSW','Anna Bay'
1631
+ 'AU','2316','NSW','Boat Harbour'
1632
+ 'AU','2316','NSW','Bobs Farm'
1633
+ 'AU','2316','NSW','Fishermans Bay'
1634
+ 'AU','2316','NSW','One Mile'
1635
+ 'AU','2316','NSW','Taylors Beach'
1636
+ 'AU','2317','NSW','Salamander Bay'
1637
+ 'AU','2317','NSW','Soldiers Point'
1638
+ 'AU','2318','NSW','Campvale'
1639
+ 'AU','2318','NSW','Ferodale'
1640
+ 'AU','2318','NSW','Fullerton Cove'
1641
+ 'AU','2318','NSW','Medowie'
1642
+ 'AU','2318','NSW','Oyster Cove'
1643
+ 'AU','2318','NSW','Salt Ash'
1644
+ 'AU','2318','NSW','Williamtown'
1645
+ 'AU','2319','NSW','Lemon Tree Passage'
1646
+ 'AU','2319','NSW','Mallabula'
1647
+ 'AU','2319','NSW','Tanilba Bay'
1648
+ 'AU','2319','NSW','Tilligerry Creek'
1649
+ 'AU','2320','NSW','Aberglasslyn'
1650
+ 'AU','2320','NSW','Allandale'
1651
+ 'AU','2320','NSW','Anambah'
1652
+ 'AU','2320','NSW','Bolwarra'
1653
+ 'AU','2320','NSW','Bolwarra Heights'
1654
+ 'AU','2320','NSW','Farley'
1655
+ 'AU','2320','NSW','Glen Oak'
1656
+ 'AU','2320','NSW','Gosforth'
1657
+ 'AU','2320','NSW','Hillsborough'
1658
+ 'AU','2320','NSW','Horseshoe Bend'
1659
+ 'AU','2320','NSW','Keinbah'
1660
+ 'AU','2320','NSW','Largs'
1661
+ 'AU','2320','NSW','Lorn'
1662
+ 'AU','2320','NSW','Louth Park'
1663
+ 'AU','2320','NSW','Maitland'
1664
+ 'AU','2320','NSW','Maitland North'
1665
+ 'AU','2320','NSW','Maitland Vale'
1666
+ 'AU','2320','NSW','Melville'
1667
+ 'AU','2320','NSW','Mindaribba'
1668
+ 'AU','2320','NSW','Mount Dee'
1669
+ 'AU','2320','NSW','Oakhampton'
1670
+ 'AU','2320','NSW','Oakhampton Heights'
1671
+ 'AU','2320','NSW','Pokolbin'
1672
+ 'AU','2320','NSW','Rosebrook'
1673
+ 'AU','2320','NSW','Rothbury'
1674
+ 'AU','2320','NSW','Rutherford'
1675
+ 'AU','2320','NSW','South Maitland'
1676
+ 'AU','2320','NSW','Telarah'
1677
+ 'AU','2320','NSW','Wallalong'
1678
+ 'AU','2320','NSW','Windella'
1679
+ 'AU','2321','NSW','Berry Park'
1680
+ 'AU','2321','NSW','Butterwick'
1681
+ 'AU','2321','NSW','Clarence Town'
1682
+ 'AU','2321','NSW','Cliftleigh'
1683
+ 'AU','2321','NSW','Duckenfield'
1684
+ 'AU','2321','NSW','Duns Creek'
1685
+ 'AU','2321','NSW','Gillieston Heights'
1686
+ 'AU','2321','NSW','Glen Martin'
1687
+ 'AU','2321','NSW','Glen William'
1688
+ 'AU','2321','NSW','Harpers Hill'
1689
+ 'AU','2321','NSW','Heddon Greta'
1690
+ 'AU','2321','NSW','Hinton'
1691
+ 'AU','2321','NSW','Lochinvar'
1692
+ 'AU','2321','NSW','Luskintyre'
1693
+ 'AU','2321','NSW','Morpeth'
1694
+ 'AU','2321','NSW','Oswald'
1695
+ 'AU','2321','NSW','Phoenix Park'
1696
+ 'AU','2321','NSW','Raworth'
1697
+ 'AU','2321','NSW','Windermere'
1698
+ 'AU','2321','NSW','Woodville'
1699
+ 'AU','2322','NSW','Beresfield'
1700
+ 'AU','2322','NSW','Black Hill'
1701
+ 'AU','2322','NSW','Chisholm'
1702
+ 'AU','2322','NSW','Hexham'
1703
+ 'AU','2322','NSW','Lenaghan'
1704
+ 'AU','2322','NSW','Stockrington'
1705
+ 'AU','2322','NSW','Tarro'
1706
+ 'AU','2322','NSW','Thornton'
1707
+ 'AU','2322','NSW','Tomago'
1708
+ 'AU','2322','NSW','Woodberry'
1709
+ 'AU','2323','NSW','Ashtonfield'
1710
+ 'AU','2323','NSW','Brunkerville'
1711
+ 'AU','2323','NSW','Buchanan'
1712
+ 'AU','2323','NSW','Buttai'
1713
+ 'AU','2323','NSW','East Maitland'
1714
+ 'AU','2323','NSW','Four Mile Creek'
1715
+ 'AU','2323','NSW','Freemans Waterhole'
1716
+ 'AU','2323','NSW','Green Hills'
1717
+ 'AU','2323','NSW','Metford'
1718
+ 'AU','2323','NSW','Metford Dc'
1719
+ 'AU','2323','NSW','Mount Vincent'
1720
+ 'AU','2323','NSW','Mulbring'
1721
+ 'AU','2323','NSW','Pitnacree'
1722
+ 'AU','2323','NSW','Richmond Vale'
1723
+ 'AU','2323','NSW','Tenambit'
1724
+ 'AU','2324','NSW','Balickera'
1725
+ 'AU','2324','NSW','Brandy Hill'
1726
+ 'AU','2324','NSW','Bundabah'
1727
+ 'AU','2324','NSW','Carrington'
1728
+ 'AU','2324','NSW','Eagleton'
1729
+ 'AU','2324','NSW','East Seaham'
1730
+ 'AU','2324','NSW','Hawks Nest'
1731
+ 'AU','2324','NSW','Heatherbrae'
1732
+ 'AU','2324','NSW','Karuah'
1733
+ 'AU','2324','NSW','Limeburners Creek'
1734
+ 'AU','2324','NSW','Millers Forest'
1735
+ 'AU','2324','NSW','Nelsons Plains'
1736
+ 'AU','2324','NSW','North Arm Cove'
1737
+ 'AU','2324','NSW','Osterley'
1738
+ 'AU','2324','NSW','Pindimar'
1739
+ 'AU','2324','NSW','Raymond Terrace'
1740
+ 'AU','2324','NSW','Raymond Terrace East'
1741
+ 'AU','2324','NSW','Seaham'
1742
+ 'AU','2324','NSW','Swan Bay'
1743
+ 'AU','2324','NSW','Tahlee'
1744
+ 'AU','2324','NSW','Tea Gardens'
1745
+ 'AU','2324','NSW','Twelve Mile Creek'
1746
+ 'AU','2325','NSW','Aberdare'
1747
+ 'AU','2325','NSW','Abernethy'
1748
+ 'AU','2325','NSW','Bellbird'
1749
+ 'AU','2325','NSW','Bellbird Heights'
1750
+ 'AU','2325','NSW','Boree'
1751
+ 'AU','2325','NSW','Cedar Creek'
1752
+ 'AU','2325','NSW','Cessnock'
1753
+ 'AU','2325','NSW','Cessnock West'
1754
+ 'AU','2325','NSW','Congewai'
1755
+ 'AU','2325','NSW','Corrabare'
1756
+ 'AU','2325','NSW','Ellalong'
1757
+ 'AU','2325','NSW','Elrington'
1758
+ 'AU','2325','NSW','Greta Main'
1759
+ 'AU','2325','NSW','Kearsley'
1760
+ 'AU','2325','NSW','Kitchener'
1761
+ 'AU','2325','NSW','Laguna'
1762
+ 'AU','2325','NSW','Lovedale'
1763
+ 'AU','2325','NSW','Millfield'
1764
+ 'AU','2325','NSW','Moruben'
1765
+ 'AU','2325','NSW','Mount View'
1766
+ 'AU','2325','NSW','Nulkaba'
1767
+ 'AU','2325','NSW','Olney'
1768
+ 'AU','2325','NSW','Paxton'
1769
+ 'AU','2325','NSW','Paynes Crossing'
1770
+ 'AU','2325','NSW','Pelton'
1771
+ 'AU','2325','NSW','Quorrobolong'
1772
+ 'AU','2325','NSW','Sweetmans Creek'
1773
+ 'AU','2325','NSW','Wollombi'
1774
+ 'AU','2326','NSW','Abermain'
1775
+ 'AU','2326','NSW','Bishops Bridge'
1776
+ 'AU','2326','NSW','Loxford'
1777
+ 'AU','2326','NSW','Neath'
1778
+ 'AU','2326','NSW','Sawyers Gully'
1779
+ 'AU','2326','NSW','Weston'
1780
+ 'AU','2327','NSW','Kurri Kurri'
1781
+ 'AU','2327','NSW','Pelaw Main'
1782
+ 'AU','2327','NSW','Stanford Merthyr'
1783
+ 'AU','2328','NSW','Bureen'
1784
+ 'AU','2328','NSW','Dalswinton'
1785
+ 'AU','2328','NSW','Denman'
1786
+ 'AU','2328','NSW','Giants Creek'
1787
+ 'AU','2328','NSW','Hollydeen'
1788
+ 'AU','2328','NSW','Kerrabee'
1789
+ 'AU','2328','NSW','Mangoola'
1790
+ 'AU','2328','NSW','Martindale'
1791
+ 'AU','2328','NSW','Widden'
1792
+ 'AU','2328','NSW','Yarrawa'
1793
+ 'AU','2329','NSW','Borambil'
1794
+ 'AU','2329','NSW','Cassilis'
1795
+ 'AU','2329','NSW','Merriwa'
1796
+ 'AU','2329','NSW','Uarbry'
1797
+ 'AU','2330','NSW','Appletree Flat'
1798
+ 'AU','2330','NSW','Big Ridge'
1799
+ 'AU','2330','NSW','Big Yengo'
1800
+ 'AU','2330','NSW','Bowmans Creek'
1801
+ 'AU','2330','NSW','Bridgman'
1802
+ 'AU','2330','NSW','Broke'
1803
+ 'AU','2330','NSW','Bulga'
1804
+ 'AU','2330','NSW','Camberwell'
1805
+ 'AU','2330','NSW','Carrowbrook'
1806
+ 'AU','2330','NSW','Clydesdale'
1807
+ 'AU','2330','NSW','Combo'
1808
+ 'AU','2330','NSW','Darlington'
1809
+ 'AU','2330','NSW','Doyles Creek'
1810
+ 'AU','2330','NSW','Dunolly'
1811
+ 'AU','2330','NSW','Dural'
1812
+ 'AU','2330','NSW','Dyrring'
1813
+ 'AU','2330','NSW','Falbrook'
1814
+ 'AU','2330','NSW','Fern Gully'
1815
+ 'AU','2330','NSW','Fordwich'
1816
+ 'AU','2330','NSW','Garland Valley'
1817
+ 'AU','2330','NSW','Glendon'
1818
+ 'AU','2330','NSW','Glendon Brook'
1819
+ 'AU','2330','NSW','Glennies Creek'
1820
+ 'AU','2330','NSW','Glenridding'
1821
+ 'AU','2330','NSW','Goorangoola'
1822
+ 'AU','2330','NSW','Gouldsville'
1823
+ 'AU','2330','NSW','Gowrie'
1824
+ 'AU','2330','NSW','Greenlands'
1825
+ 'AU','2330','NSW','Hambledon Hill'
1826
+ 'AU','2330','NSW','Hebden'
1827
+ 'AU','2330','NSW','Howes Valley'
1828
+ 'AU','2330','NSW','Howick'
1829
+ 'AU','2330','NSW','Hunterview'
1830
+ 'AU','2330','NSW','Jerrys Plains'
1831
+ 'AU','2330','NSW','Lemington'
1832
+ 'AU','2330','NSW','Long Point'
1833
+ 'AU','2330','NSW','Maison Dieu'
1834
+ 'AU','2330','NSW','Mcdougalls Hill'
1835
+ 'AU','2330','NSW','Middle Falbrook'
1836
+ 'AU','2330','NSW','Milbrodale'
1837
+ 'AU','2330','NSW','Mirannie'
1838
+ 'AU','2330','NSW','Mitchells Flat'
1839
+ 'AU','2330','NSW','Mount Olive'
1840
+ 'AU','2330','NSW','Mount Royal'
1841
+ 'AU','2330','NSW','Mount Thorley'
1842
+ 'AU','2330','NSW','Obanvale'
1843
+ 'AU','2330','NSW','Putty'
1844
+ 'AU','2330','NSW','Ravensworth'
1845
+ 'AU','2330','NSW','Redbournberry'
1846
+ 'AU','2330','NSW','Reedy Creek'
1847
+ 'AU','2330','NSW','Rixs Creek'
1848
+ 'AU','2330','NSW','Roughit'
1849
+ 'AU','2330','NSW','Scotts Flat'
1850
+ 'AU','2330','NSW','Sedgefield'
1851
+ 'AU','2330','NSW','Singleton'
1852
+ 'AU','2330','NSW','Singleton Heights'
1853
+ 'AU','2330','NSW','St Clair'
1854
+ 'AU','2330','NSW','Warkworth'
1855
+ 'AU','2330','NSW','Wattle Ponds'
1856
+ 'AU','2330','NSW','Westbrook'
1857
+ 'AU','2330','NSW','Whittingham'
1858
+ 'AU','2330','NSW','Wollemi'
1859
+ 'AU','2330','NSW','Wylies Flat'
1860
+ 'AU','2331','NSW','Singleton Military Area'
1861
+ 'AU','2331','NSW','Singleton Milpo'
1862
+ 'AU','2333','NSW','Baerami'
1863
+ 'AU','2333','NSW','Baerami Creek'
1864
+ 'AU','2333','NSW','Bengalla'
1865
+ 'AU','2333','NSW','Castle Rock'
1866
+ 'AU','2333','NSW','Edderton'
1867
+ 'AU','2333','NSW','Gungal'
1868
+ 'AU','2333','NSW','Kayuga'
1869
+ 'AU','2333','NSW','Liddell'
1870
+ 'AU','2333','NSW','Manobalai'
1871
+ 'AU','2333','NSW','Mccullys Gap'
1872
+ 'AU','2333','NSW','Muscle Creek'
1873
+ 'AU','2333','NSW','Muswellbrook'
1874
+ 'AU','2333','NSW','Sandy Hollow'
1875
+ 'AU','2333','NSW','Wybong'
1876
+ 'AU','2334','NSW','Greta'
1877
+ 'AU','2335','NSW','Belford'
1878
+ 'AU','2335','NSW','Branxton'
1879
+ 'AU','2335','NSW','Dalwood'
1880
+ 'AU','2335','NSW','East Branxton'
1881
+ 'AU','2335','NSW','Elderslie'
1882
+ 'AU','2335','NSW','Lambs Valley'
1883
+ 'AU','2335','NSW','Leconfield'
1884
+ 'AU','2335','NSW','Lower Belford'
1885
+ 'AU','2335','NSW','North Rothbury'
1886
+ 'AU','2335','NSW','Stanhope'
1887
+ 'AU','2336','NSW','Aberdeen'
1888
+ 'AU','2336','NSW','Dartbrook'
1889
+ 'AU','2336','NSW','Davis Creek'
1890
+ 'AU','2336','NSW','Rossgole'
1891
+ 'AU','2336','NSW','Rouchel'
1892
+ 'AU','2336','NSW','Rouchel Brook'
1893
+ 'AU','2336','NSW','Upper Dartbrook'
1894
+ 'AU','2336','NSW','Upper Rouchel'
1895
+ 'AU','2337','NSW','Belltrees'
1896
+ 'AU','2337','NSW','Brawboy'
1897
+ 'AU','2337','NSW','Bunnan'
1898
+ 'AU','2337','NSW','Dry Creek'
1899
+ 'AU','2337','NSW','Ellerston'
1900
+ 'AU','2337','NSW','Glenbawn'
1901
+ 'AU','2337','NSW','Glenrock'
1902
+ 'AU','2337','NSW','Gundy'
1903
+ 'AU','2337','NSW','Kars Springs'
1904
+ 'AU','2337','NSW','Middle Brook'
1905
+ 'AU','2337','NSW','Moobi'
1906
+ 'AU','2337','NSW','Moonan Brook'
1907
+ 'AU','2337','NSW','Moonan Flat'
1908
+ 'AU','2337','NSW','Murulla'
1909
+ 'AU','2337','NSW','Omadale'
1910
+ 'AU','2337','NSW','Owens Gap'
1911
+ 'AU','2337','NSW','Pages Creek'
1912
+ 'AU','2337','NSW','Parkville'
1913
+ 'AU','2337','NSW','Scone'
1914
+ 'AU','2337','NSW','Segenhoe'
1915
+ 'AU','2337','NSW','Stewarts Brook'
1916
+ 'AU','2337','NSW','Tomalla'
1917
+ 'AU','2337','NSW','Waverly'
1918
+ 'AU','2337','NSW','Wingen'
1919
+ 'AU','2337','NSW','Woolooma'
1920
+ 'AU','2338','NSW','Ardglen'
1921
+ 'AU','2338','NSW','Blandford'
1922
+ 'AU','2338','NSW','Crawney'
1923
+ 'AU','2338','NSW','Green Creek'
1924
+ 'AU','2338','NSW','Murrurundi'
1925
+ 'AU','2338','NSW','Pages River'
1926
+ 'AU','2338','NSW','Sandy Creek'
1927
+ 'AU','2338','NSW','Scotts Creek'
1928
+ 'AU','2338','NSW','Timor'
1929
+ 'AU','2339','NSW','Big Jacks Creek'
1930
+ 'AU','2339','NSW','Braefield'
1931
+ 'AU','2339','NSW','Cattle Creek'
1932
+ 'AU','2339','NSW','Chilcotts Creek'
1933
+ 'AU','2339','NSW','Little Jacks Creek'
1934
+ 'AU','2339','NSW','Macdonalds Creek'
1935
+ 'AU','2339','NSW','Parraweena'
1936
+ 'AU','2339','NSW','Warrah'
1937
+ 'AU','2339','NSW','Warrah Creek'
1938
+ 'AU','2339','NSW','Willow Tree'
1939
+ 'AU','2340','NSW','Appleby'
1940
+ 'AU','2340','NSW','Barry'
1941
+ 'AU','2340','NSW','Bective'
1942
+ 'AU','2340','NSW','Bithramere'
1943
+ 'AU','2340','NSW','Bowling Alley Point'
1944
+ 'AU','2340','NSW','Calala'
1945
+ 'AU','2340','NSW','Carroll'
1946
+ 'AU','2340','NSW','Daruka'
1947
+ 'AU','2340','NSW','Duncans Creek'
1948
+ 'AU','2340','NSW','Dungowan'
1949
+ 'AU','2340','NSW','East Tamworth'
1950
+ 'AU','2340','NSW','Garoo'
1951
+ 'AU','2340','NSW','Gidley'
1952
+ 'AU','2340','NSW','Goonoo Goonoo'
1953
+ 'AU','2340','NSW','Gowrie'
1954
+ 'AU','2340','NSW','Hallsville'
1955
+ 'AU','2340','NSW','Hanging Rock'
1956
+ 'AU','2340','NSW','Hillvue'
1957
+ 'AU','2340','NSW','Keepit'
1958
+ 'AU','2340','NSW','Kingswood'
1959
+ 'AU','2340','NSW','Loomberah'
1960
+ 'AU','2340','NSW','Moore Creek'
1961
+ 'AU','2340','NSW','Nemingha'
1962
+ 'AU','2340','NSW','North Tamworth'
1963
+ 'AU','2340','NSW','Nundle'
1964
+ 'AU','2340','NSW','Ogunbil'
1965
+ 'AU','2340','NSW','Oxley Vale'
1966
+ 'AU','2340','NSW','Piallamore'
1967
+ 'AU','2340','NSW','Somerton'
1968
+ 'AU','2340','NSW','South Tamworth'
1969
+ 'AU','2340','NSW','Taminda'
1970
+ 'AU','2340','NSW','Tamworth'
1971
+ 'AU','2340','NSW','Timbumburi'
1972
+ 'AU','2340','NSW','Wallamore'
1973
+ 'AU','2340','NSW','Warral'
1974
+ 'AU','2340','NSW','Weabonga'
1975
+ 'AU','2340','NSW','West Tamworth'
1976
+ 'AU','2340','NSW','Westdale'
1977
+ 'AU','2340','NSW','Woolomin'
1978
+ 'AU','2341','NSW','Werris Creek'
1979
+ 'AU','2342','NSW','Currabubula'
1980
+ 'AU','2342','NSW','Piallaway'
1981
+ 'AU','2343','NSW','Blackville'
1982
+ 'AU','2343','NSW','Bundella'
1983
+ 'AU','2343','NSW','Caroona'
1984
+ 'AU','2343','NSW','Colly Blue'
1985
+ 'AU','2343','NSW','Coomoo Coomoo'
1986
+ 'AU','2343','NSW','Pine Ridge'
1987
+ 'AU','2343','NSW','Quipolly'
1988
+ 'AU','2343','NSW','Quirindi'
1989
+ 'AU','2343','NSW','Spring Ridge'
1990
+ 'AU','2343','NSW','Wallabadah'
1991
+ 'AU','2343','NSW','Warrah Ridge'
1992
+ 'AU','2343','NSW','Windy'
1993
+ 'AU','2343','NSW','Yannergee'
1994
+ 'AU','2344','NSW','Duri'
1995
+ 'AU','2344','NSW','Winton'
1996
+ 'AU','2345','NSW','Attunga'
1997
+ 'AU','2345','NSW','Garthowen'
1998
+ 'AU','2346','NSW','Borah Creek'
1999
+ 'AU','2346','NSW','Halls Creek'
2000
+ 'AU','2346','NSW','Klori'
2001
+ 'AU','2346','NSW','Manilla'
2002
+ 'AU','2346','NSW','Namoi River'
2003
+ 'AU','2346','NSW','New Mexico'
2004
+ 'AU','2346','NSW','Rushes Creek'
2005
+ 'AU','2346','NSW','Upper Manilla'
2006
+ 'AU','2346','NSW','Warrabah'
2007
+ 'AU','2346','NSW','Wimborne'
2008
+ 'AU','2346','NSW','Wongo Creek'
2009
+ 'AU','2347','NSW','Banoon'
2010
+ 'AU','2347','NSW','Barraba'
2011
+ 'AU','2347','NSW','Caroda'
2012
+ 'AU','2347','NSW','Cobbadah'
2013
+ 'AU','2347','NSW','Gulf Creek'
2014
+ 'AU','2347','NSW','Gundamulda'
2015
+ 'AU','2347','NSW','Ironbark'
2016
+ 'AU','2347','NSW','Lindesay'
2017
+ 'AU','2347','NSW','Longarm'
2018
+ 'AU','2347','NSW','Mayvale'
2019
+ 'AU','2347','NSW','Red Hill'
2020
+ 'AU','2347','NSW','Thirloene'
2021
+ 'AU','2347','NSW','Upper Horton'
2022
+ 'AU','2347','NSW','Woodsreef'
2023
+ 'AU','2348','NSW','New England Mc'
2024
+ 'AU','2350','NSW','Aberfoyle'
2025
+ 'AU','2350','NSW','Abington'
2026
+ 'AU','2350','NSW','Argyle'
2027
+ 'AU','2350','NSW','Armidale'
2028
+ 'AU','2350','NSW','Bona Vista'
2029
+ 'AU','2350','NSW','Boorolong'
2030
+ 'AU','2350','NSW','Castle Doyle'
2031
+ 'AU','2350','NSW','Dangarsleigh'
2032
+ 'AU','2350','NSW','Donald Creek'
2033
+ 'AU','2350','NSW','Dumaresq'
2034
+ 'AU','2350','NSW','Duval'
2035
+ 'AU','2350','NSW','Enmore'
2036
+ 'AU','2350','NSW','Hillgrove'
2037
+ 'AU','2350','NSW','Invergowrie'
2038
+ 'AU','2350','NSW','Jeogla'
2039
+ 'AU','2350','NSW','Kellys Plains'
2040
+ 'AU','2350','NSW','Lyndhurst'
2041
+ 'AU','2350','NSW','Puddledock'
2042
+ 'AU','2350','NSW','Saumarez'
2043
+ 'AU','2350','NSW','Saumarez Ponds'
2044
+ 'AU','2350','NSW','Thalgarrah'
2045
+ 'AU','2350','NSW','Tilbuster'
2046
+ 'AU','2350','NSW','Wards Mistake'
2047
+ 'AU','2350','NSW','West Armidale'
2048
+ 'AU','2350','NSW','Wollomombi'
2049
+ 'AU','2350','NSW','Wongwibinda'
2050
+ 'AU','2351','NSW','University Of New England'
2051
+ 'AU','2352','NSW','Kootingal'
2052
+ 'AU','2352','NSW','Limbri'
2053
+ 'AU','2352','NSW','Mulla Creek'
2054
+ 'AU','2352','NSW','Tintinhull'
2055
+ 'AU','2353','NSW','Moonbi'
2056
+ 'AU','2354','NSW','Branga Plains'
2057
+ 'AU','2354','NSW','Kentucky'
2058
+ 'AU','2354','NSW','Kentucky South'
2059
+ 'AU','2354','NSW','Moona Plains'
2060
+ 'AU','2354','NSW','Niangala'
2061
+ 'AU','2354','NSW','Nowendoc'
2062
+ 'AU','2354','NSW','Upper Yarrowitch'
2063
+ 'AU','2354','NSW','Walcha'
2064
+ 'AU','2354','NSW','Walcha Road'
2065
+ 'AU','2354','NSW','Wollun'
2066
+ 'AU','2354','NSW','Woolbrook'
2067
+ 'AU','2354','NSW','Yarrowitch'
2068
+ 'AU','2355','NSW','Bendemeer'
2069
+ 'AU','2355','NSW','Retreat'
2070
+ 'AU','2355','NSW','Watsons Creek'
2071
+ 'AU','2356','NSW','Gwabegar'
2072
+ 'AU','2357','NSW','Bomera'
2073
+ 'AU','2357','NSW','Bugaldie'
2074
+ 'AU','2357','NSW','Coonabarabran'
2075
+ 'AU','2357','NSW','Dandry'
2076
+ 'AU','2357','NSW','Gowang'
2077
+ 'AU','2357','NSW','Purlewaugh'
2078
+ 'AU','2357','NSW','Rocky Glen'
2079
+ 'AU','2357','NSW','Tannabar'
2080
+ 'AU','2357','NSW','Ulamambri'
2081
+ 'AU','2358','NSW','Arding'
2082
+ 'AU','2358','NSW','Balala'
2083
+ 'AU','2358','NSW','Gostwyck'
2084
+ 'AU','2358','NSW','Kingstown'
2085
+ 'AU','2358','NSW','Mihi'
2086
+ 'AU','2358','NSW','Rocky River'
2087
+ 'AU','2358','NSW','Salisbury Plains'
2088
+ 'AU','2358','NSW','Torryburn'
2089
+ 'AU','2358','NSW','Uralla'
2090
+ 'AU','2358','NSW','Yarrowyck'
2091
+ 'AU','2359','NSW','Aberdeen'
2092
+ 'AU','2359','NSW','Bakers Creek'
2093
+ 'AU','2359','NSW','Bundarra'
2094
+ 'AU','2359','NSW','Camerons Creek'
2095
+ 'AU','2360','NSW','Auburn Vale'
2096
+ 'AU','2360','NSW','Brodies Plains'
2097
+ 'AU','2360','NSW','Bukkulla'
2098
+ 'AU','2360','NSW','Cherry Tree Hill'
2099
+ 'AU','2360','NSW','Copeton'
2100
+ 'AU','2360','NSW','Elsmore'
2101
+ 'AU','2360','NSW','Gilgai'
2102
+ 'AU','2360','NSW','Graman'
2103
+ 'AU','2360','NSW','Gum Flat'
2104
+ 'AU','2360','NSW','Howell'
2105
+ 'AU','2360','NSW','Inverell'
2106
+ 'AU','2360','NSW','Kings Plains'
2107
+ 'AU','2360','NSW','Little Plain'
2108
+ 'AU','2360','NSW','Long Plain'
2109
+ 'AU','2360','NSW','Mount Russell'
2110
+ 'AU','2360','NSW','Newstead'
2111
+ 'AU','2360','NSW','Nullamanna'
2112
+ 'AU','2360','NSW','Oakwood'
2113
+ 'AU','2360','NSW','Paradise'
2114
+ 'AU','2360','NSW','Rob Roy'
2115
+ 'AU','2360','NSW','Sapphire'
2116
+ 'AU','2360','NSW','Spring Mountain'
2117
+ 'AU','2360','NSW','Stanborough'
2118
+ 'AU','2360','NSW','Swanbrook'
2119
+ 'AU','2360','NSW','Wallangra'
2120
+ 'AU','2360','NSW','Wandera'
2121
+ 'AU','2360','NSW','Woodstock'
2122
+ 'AU','2361','NSW','Ashford'
2123
+ 'AU','2361','NSW','Atholwood'
2124
+ 'AU','2361','NSW','Bonshaw'
2125
+ 'AU','2361','NSW','Limestone'
2126
+ 'AU','2361','NSW','Pindaroi'
2127
+ 'AU','2365','NSW','Backwater'
2128
+ 'AU','2365','NSW','Bald Blair'
2129
+ 'AU','2365','NSW','Baldersleigh'
2130
+ 'AU','2365','NSW','Bassendean'
2131
+ 'AU','2365','NSW','Ben Lomond'
2132
+ 'AU','2365','NSW','Black Mountain'
2133
+ 'AU','2365','NSW','Briarbrook'
2134
+ 'AU','2365','NSW','Brockley'
2135
+ 'AU','2365','NSW','Brushy Creek'
2136
+ 'AU','2365','NSW','Falconer'
2137
+ 'AU','2365','NSW','Georges Creek'
2138
+ 'AU','2365','NSW','Glen Nevis'
2139
+ 'AU','2365','NSW','Glencoe'
2140
+ 'AU','2365','NSW','Green Hills'
2141
+ 'AU','2365','NSW','Guyra'
2142
+ 'AU','2365','NSW','Llangothlin'
2143
+ 'AU','2365','NSW','Maybole'
2144
+ 'AU','2365','NSW','Mount Mitchell'
2145
+ 'AU','2365','NSW','New Valley'
2146
+ 'AU','2365','NSW','Oban'
2147
+ 'AU','2365','NSW','South Guyra'
2148
+ 'AU','2365','NSW','Tenterden'
2149
+ 'AU','2365','NSW','The Basin'
2150
+ 'AU','2365','NSW','The Gulf'
2151
+ 'AU','2365','NSW','Tubbamurra'
2152
+ 'AU','2365','NSW','Wandsworth'
2153
+ 'AU','2369','NSW','Old Mill'
2154
+ 'AU','2369','NSW','Stannifer'
2155
+ 'AU','2369','NSW','Tingha'
2156
+ 'AU','2370','NSW','Bald Nob'
2157
+ 'AU','2370','NSW','Diehard'
2158
+ 'AU','2370','NSW','Dundee'
2159
+ 'AU','2370','NSW','Furracabad'
2160
+ 'AU','2370','NSW','Gibraltar Range'
2161
+ 'AU','2370','NSW','Glen Elgin'
2162
+ 'AU','2370','NSW','Glen Innes'
2163
+ 'AU','2370','NSW','Kingsgate'
2164
+ 'AU','2370','NSW','Kookabookra'
2165
+ 'AU','2370','NSW','Lambs Valley'
2166
+ 'AU','2370','NSW','Matheson'
2167
+ 'AU','2370','NSW','Moggs Swamp'
2168
+ 'AU','2370','NSW','Moogem'
2169
+ 'AU','2370','NSW','Morven'
2170
+ 'AU','2370','NSW','Newton Boyd'
2171
+ 'AU','2370','NSW','Pinkett'
2172
+ 'AU','2370','NSW','Rangers Valley'
2173
+ 'AU','2370','NSW','Red Range'
2174
+ 'AU','2370','NSW','Reddestone'
2175
+ 'AU','2370','NSW','Shannon Vale'
2176
+ 'AU','2370','NSW','Stonehenge'
2177
+ 'AU','2370','NSW','Swan Vale'
2178
+ 'AU','2370','NSW','Wellingrove'
2179
+ 'AU','2370','NSW','Yarrowford'
2180
+ 'AU','2371','NSW','Capoompeta'
2181
+ 'AU','2371','NSW','Deepwater'
2182
+ 'AU','2371','NSW','Emmaville'
2183
+ 'AU','2371','NSW','Rocky Creek'
2184
+ 'AU','2371','NSW','Stannum'
2185
+ 'AU','2371','NSW','Tent Hill'
2186
+ 'AU','2371','NSW','The Gulf'
2187
+ 'AU','2371','NSW','Torrington'
2188
+ 'AU','2371','NSW','Tungsten'
2189
+ 'AU','2371','NSW','Wellington Vale'
2190
+ 'AU','2371','NSW','Yellow Dam'
2191
+ 'AU','2372','NSW','Back Creek'
2192
+ 'AU','2372','NSW','Barney Downs'
2193
+ 'AU','2372','NSW','Billyrimba'
2194
+ 'AU','2372','NSW','Black Swamp'
2195
+ 'AU','2372','NSW','Bluff Rock'
2196
+ 'AU','2372','NSW','Bolivia'
2197
+ 'AU','2372','NSW','Boonoo Boonoo'
2198
+ 'AU','2372','NSW','Boorook'
2199
+ 'AU','2372','NSW','Bryans Gap'
2200
+ 'AU','2372','NSW','Bungulla'
2201
+ 'AU','2372','NSW','Carrolls Creek'
2202
+ 'AU','2372','NSW','Cullendore'
2203
+ 'AU','2372','NSW','Forest Land'
2204
+ 'AU','2372','NSW','Homestead'
2205
+ 'AU','2372','NSW','Jennings'
2206
+ 'AU','2372','NSW','Leechs Gully'
2207
+ 'AU','2372','NSW','Liston'
2208
+ 'AU','2372','NSW','Mingoola'
2209
+ 'AU','2372','NSW','Mole River'
2210
+ 'AU','2372','NSW','Mount Mackenzie'
2211
+ 'AU','2372','NSW','Pyes Creek'
2212
+ 'AU','2372','NSW','Rivertree'
2213
+ 'AU','2372','NSW','Rocky River'
2214
+ 'AU','2372','NSW','Sandy Flat'
2215
+ 'AU','2372','NSW','Sandy Hill'
2216
+ 'AU','2372','NSW','Silent Grove'
2217
+ 'AU','2372','NSW','Steinbrook'
2218
+ 'AU','2372','NSW','Sunnyside'
2219
+ 'AU','2372','NSW','Tarban'
2220
+ 'AU','2372','NSW','Tenterfield'
2221
+ 'AU','2372','NSW','The Scrub'
2222
+ 'AU','2372','NSW','Timbarra'
2223
+ 'AU','2372','NSW','Willsons Downfall'
2224
+ 'AU','2372','NSW','Woodside'
2225
+ 'AU','2372','NSW','Wylie Creek'
2226
+ 'AU','2379','NSW','Goolhi'
2227
+ 'AU','2379','NSW','Mullaley'
2228
+ 'AU','2379','NSW','Napier Lane'
2229
+ 'AU','2379','NSW','Nombi'
2230
+ 'AU','2380','NSW','Blue Vale'
2231
+ 'AU','2380','NSW','Emerald Hill'
2232
+ 'AU','2380','NSW','Ghoolendaadi'
2233
+ 'AU','2380','NSW','Gunnedah'
2234
+ 'AU','2380','NSW','Kelvin'
2235
+ 'AU','2380','NSW','Marys Mount'
2236
+ 'AU','2380','NSW','Milroy'
2237
+ 'AU','2380','NSW','Orange Grove'
2238
+ 'AU','2380','NSW','Rangari'
2239
+ 'AU','2381','NSW','Breeza'
2240
+ 'AU','2381','NSW','Curlewis'
2241
+ 'AU','2381','NSW','Premer'
2242
+ 'AU','2381','NSW','Tambar Springs'
2243
+ 'AU','2382','NSW','Boggabri'
2244
+ 'AU','2382','NSW','Maules Creek'
2245
+ 'AU','2382','NSW','Wean'
2246
+ 'AU','2382','NSW','Willala'
2247
+ 'AU','2386','NSW','Burren Junction'
2248
+ 'AU','2386','NSW','Drildool'
2249
+ 'AU','2386','NSW','Nowley'
2250
+ 'AU','2387','NSW','Bulyeroi'
2251
+ 'AU','2387','NSW','Rowena'
2252
+ 'AU','2388','NSW','Boolcarroll'
2253
+ 'AU','2388','NSW','Cuttabri'
2254
+ 'AU','2388','NSW','Jews Lagoon'
2255
+ 'AU','2388','NSW','Merah North'
2256
+ 'AU','2388','NSW','Pilliga'
2257
+ 'AU','2388','NSW','Spring Plains'
2258
+ 'AU','2388','NSW','The Pilliga'
2259
+ 'AU','2388','NSW','Wee Waa'
2260
+ 'AU','2388','NSW','Yarrie Lake'
2261
+ 'AU','2390','NSW','Baan Baa'
2262
+ 'AU','2390','NSW','Back Creek'
2263
+ 'AU','2390','NSW','Berrigal'
2264
+ 'AU','2390','NSW','Bohena Creek'
2265
+ 'AU','2390','NSW','Bullawa Creek'
2266
+ 'AU','2390','NSW','Couradda'
2267
+ 'AU','2390','NSW','Edgeroi'
2268
+ 'AU','2390','NSW','Eulah Creek'
2269
+ 'AU','2390','NSW','Harparary'
2270
+ 'AU','2390','NSW','Jacks Creek'
2271
+ 'AU','2390','NSW','Kaputar'
2272
+ 'AU','2390','NSW','Narrabri'
2273
+ 'AU','2390','NSW','Narrabri West'
2274
+ 'AU','2390','NSW','Rocky Creek'
2275
+ 'AU','2390','NSW','Tarriaro'
2276
+ 'AU','2390','NSW','Turrawan'
2277
+ 'AU','2395','NSW','Binnaway'
2278
+ 'AU','2395','NSW','Ropers Road'
2279
+ 'AU','2395','NSW','Weetaliba'
2280
+ 'AU','2396','NSW','Baradine'
2281
+ 'AU','2396','NSW','Barwon'
2282
+ 'AU','2396','NSW','Goorianawa'
2283
+ 'AU','2396','NSW','Kenebri'
2284
+ 'AU','2397','NSW','Bellata'
2285
+ 'AU','2397','NSW','Millie'
2286
+ 'AU','2397','NSW','Thalaba'
2287
+ 'AU','2398','NSW','Gurley'
2288
+ 'AU','2399','NSW','Biniguy'
2289
+ 'AU','2399','NSW','Pallamallawa'
2290
+ 'AU','2400','NSW','Ashley'
2291
+ 'AU','2400','NSW','Bullarah'
2292
+ 'AU','2400','NSW','Crooble'
2293
+ 'AU','2400','NSW','Mallowa'
2294
+ 'AU','2400','NSW','Moree'
2295
+ 'AU','2400','NSW','Moree East'
2296
+ 'AU','2400','NSW','Terry Hie Hie'
2297
+ 'AU','2400','NSW','Tulloona'
2298
+ 'AU','2400','NSW','Yarraman'
2299
+ 'AU','2401','NSW','Gravesend'
2300
+ 'AU','2402','NSW','Balfours Peak'
2301
+ 'AU','2402','NSW','Coolatai'
2302
+ 'AU','2402','NSW','Warialda'
2303
+ 'AU','2402','NSW','Warialda Rail'
2304
+ 'AU','2403','NSW','Delungra'
2305
+ 'AU','2403','NSW','Gragin'
2306
+ 'AU','2403','NSW','Myall Creek'
2307
+ 'AU','2404','NSW','Bangheet'
2308
+ 'AU','2404','NSW','Bingara'
2309
+ 'AU','2404','NSW','Dinoga'
2310
+ 'AU','2404','NSW','Elcombe'
2311
+ 'AU','2404','NSW','Gineroi'
2312
+ 'AU','2404','NSW','Keera'
2313
+ 'AU','2404','NSW','Pallal'
2314
+ 'AU','2404','NSW','Riverview'
2315
+ 'AU','2404','NSW','Upper Bingara'
2316
+ 'AU','2405','NSW','Boomi'
2317
+ 'AU','2405','NSW','Garah'
2318
+ 'AU','2406','NSW','Mungindi'
2319
+ 'AU','2406','NSW','Weemelah'
2320
+ 'AU','2408','NSW','North Star'
2321
+ 'AU','2409','NSW','Boggabilla'
2322
+ 'AU','2409','NSW','Boonal'
2323
+ 'AU','2410','NSW','Blue Nobby'
2324
+ 'AU','2410','NSW','Twin Rivers'
2325
+ 'AU','2410','NSW','Yetman'
2326
+ 'AU','2411','NSW','Croppa Creek'
2327
+ 'AU','2411','NSW','Yallaroi'
2328
+ 'AU','2415','NSW','Monkerai'
2329
+ 'AU','2415','NSW','Nooroo'
2330
+ 'AU','2415','NSW','Stroud Road'
2331
+ 'AU','2415','NSW','Upper Karuah River'
2332
+ 'AU','2415','NSW','Weismantels'
2333
+ 'AU','2420','NSW','Alison'
2334
+ 'AU','2420','NSW','Bandon Grove'
2335
+ 'AU','2420','NSW','Bendolba'
2336
+ 'AU','2420','NSW','Brookfield'
2337
+ 'AU','2420','NSW','Cambra'
2338
+ 'AU','2420','NSW','Chichester'
2339
+ 'AU','2420','NSW','Dungog'
2340
+ 'AU','2420','NSW','Flat Tops'
2341
+ 'AU','2420','NSW','Fosterton'
2342
+ 'AU','2420','NSW','Hanleys Creek'
2343
+ 'AU','2420','NSW','Hilldale'
2344
+ 'AU','2420','NSW','Main Creek'
2345
+ 'AU','2420','NSW','Marshdale'
2346
+ 'AU','2420','NSW','Martins Creek'
2347
+ 'AU','2420','NSW','Munni'
2348
+ 'AU','2420','NSW','Salisbury'
2349
+ 'AU','2420','NSW','Stroud Hill'
2350
+ 'AU','2420','NSW','Sugarloaf'
2351
+ 'AU','2420','NSW','Tabbil Creek'
2352
+ 'AU','2420','NSW','Underbank'
2353
+ 'AU','2420','NSW','Wallaringa'
2354
+ 'AU','2420','NSW','Wallarobba'
2355
+ 'AU','2420','NSW','Wirragulla'
2356
+ 'AU','2421','NSW','Fishers Hill'
2357
+ 'AU','2421','NSW','Paterson'
2358
+ 'AU','2421','NSW','Tocal'
2359
+ 'AU','2421','NSW','Torryburn'
2360
+ 'AU','2421','NSW','Vacy'
2361
+ 'AU','2421','NSW','Webbers Creek'
2362
+ 'AU','2422','NSW','Back Creek'
2363
+ 'AU','2422','NSW','Bakers Creek'
2364
+ 'AU','2422','NSW','Barrington'
2365
+ 'AU','2422','NSW','Barrington Tops'
2366
+ 'AU','2422','NSW','Baxters Ridge'
2367
+ 'AU','2422','NSW','Belbora'
2368
+ 'AU','2422','NSW','Berrico'
2369
+ 'AU','2422','NSW','Bindera'
2370
+ 'AU','2422','NSW','Bowman'
2371
+ 'AU','2422','NSW','Bowman Farm'
2372
+ 'AU','2422','NSW','Bretti'
2373
+ 'AU','2422','NSW','Bulliac'
2374
+ 'AU','2422','NSW','Bundook'
2375
+ 'AU','2422','NSW','Callaghans Creek'
2376
+ 'AU','2422','NSW','Cobark'
2377
+ 'AU','2422','NSW','Coneac'
2378
+ 'AU','2422','NSW','Copeland'
2379
+ 'AU','2422','NSW','Craven'
2380
+ 'AU','2422','NSW','Craven Plateau'
2381
+ 'AU','2422','NSW','Curricabark'
2382
+ 'AU','2422','NSW','Dewitt'
2383
+ 'AU','2422','NSW','Faulkland'
2384
+ 'AU','2422','NSW','Forbesdale'
2385
+ 'AU','2422','NSW','Gangat'
2386
+ 'AU','2422','NSW','Giro'
2387
+ 'AU','2422','NSW','Glen Ward'
2388
+ 'AU','2422','NSW','Gloucester'
2389
+ 'AU','2422','NSW','Gloucester Tops'
2390
+ 'AU','2422','NSW','Invergordon'
2391
+ 'AU','2422','NSW','Kia Ora'
2392
+ 'AU','2422','NSW','Mares Run'
2393
+ 'AU','2422','NSW','Mernot'
2394
+ 'AU','2422','NSW','Mograni'
2395
+ 'AU','2422','NSW','Moppy'
2396
+ 'AU','2422','NSW','Rawdon Vale'
2397
+ 'AU','2422','NSW','Rookhurst'
2398
+ 'AU','2422','NSW','Stratford'
2399
+ 'AU','2422','NSW','Terreel'
2400
+ 'AU','2422','NSW','Tibbuc'
2401
+ 'AU','2422','NSW','Titaatee Creek'
2402
+ 'AU','2422','NSW','Tugrabakh'
2403
+ 'AU','2422','NSW','Upper Bowman'
2404
+ 'AU','2422','NSW','Wallanbah'
2405
+ 'AU','2422','NSW','Wards River'
2406
+ 'AU','2422','NSW','Waukivory'
2407
+ 'AU','2422','NSW','Woko'
2408
+ 'AU','2423','NSW','Bombah Point'
2409
+ 'AU','2423','NSW','Boolambayte'
2410
+ 'AU','2423','NSW','Bulahdelah'
2411
+ 'AU','2423','NSW','Bungwahl'
2412
+ 'AU','2423','NSW','Coolongolook'
2413
+ 'AU','2423','NSW','Crawford River'
2414
+ 'AU','2423','NSW','Markwell'
2415
+ 'AU','2423','NSW','Mayers Flat'
2416
+ 'AU','2423','NSW','Mungo Brush'
2417
+ 'AU','2423','NSW','Myall Lake'
2418
+ 'AU','2423','NSW','Nerong'
2419
+ 'AU','2423','NSW','Seal Rocks'
2420
+ 'AU','2423','NSW','Topi Topi'
2421
+ 'AU','2423','NSW','Upper Myall'
2422
+ 'AU','2423','NSW','Violet Hill'
2423
+ 'AU','2423','NSW','Wang Wauk'
2424
+ 'AU','2423','NSW','Warranulla'
2425
+ 'AU','2423','NSW','Willina'
2426
+ 'AU','2423','NSW','Wootton'
2427
+ 'AU','2423','NSW','Yagon'
2428
+ 'AU','2424','NSW','Caffreys Flat'
2429
+ 'AU','2424','NSW','Cells River'
2430
+ 'AU','2424','NSW','Cooplacurripa'
2431
+ 'AU','2424','NSW','Cundle Flat'
2432
+ 'AU','2424','NSW','Knorrit Flat'
2433
+ 'AU','2424','NSW','Knorrit Forest'
2434
+ 'AU','2424','NSW','Mount George'
2435
+ 'AU','2424','NSW','Number One'
2436
+ 'AU','2424','NSW','Tiri'
2437
+ 'AU','2425','NSW','Allworth'
2438
+ 'AU','2425','NSW','Booral'
2439
+ 'AU','2425','NSW','Girvan'
2440
+ 'AU','2425','NSW','Stroud'
2441
+ 'AU','2425','NSW','The Branch'
2442
+ 'AU','2425','NSW','Washpool'
2443
+ 'AU','2426','NSW','Coopernook'
2444
+ 'AU','2426','NSW','Langley Vale'
2445
+ 'AU','2426','NSW','Moto'
2446
+ 'AU','2427','NSW','Crowdy Head'
2447
+ 'AU','2427','NSW','Harrington'
2448
+ 'AU','2428','NSW','Blueys Beach'
2449
+ 'AU','2428','NSW','Boomerang Beach'
2450
+ 'AU','2428','NSW','Booti Booti'
2451
+ 'AU','2428','NSW','Charlotte Bay'
2452
+ 'AU','2428','NSW','Coomba Bay'
2453
+ 'AU','2428','NSW','Coomba Park'
2454
+ 'AU','2428','NSW','Darawank'
2455
+ 'AU','2428','NSW','Elizabeth Beach'
2456
+ 'AU','2428','NSW','Forster'
2457
+ 'AU','2428','NSW','Forster Shopping Village'
2458
+ 'AU','2428','NSW','Green Point'
2459
+ 'AU','2428','NSW','Pacific Palms'
2460
+ 'AU','2428','NSW','Sandbar'
2461
+ 'AU','2428','NSW','Shallow Bay'
2462
+ 'AU','2428','NSW','Smiths Lake'
2463
+ 'AU','2428','NSW','Tarbuck Bay'
2464
+ 'AU','2428','NSW','Tiona'
2465
+ 'AU','2428','NSW','Tuncurry'
2466
+ 'AU','2428','NSW','Wallingat'
2467
+ 'AU','2428','NSW','Wallis Lake'
2468
+ 'AU','2428','NSW','Whoota'
2469
+ 'AU','2429','NSW','Bobin'
2470
+ 'AU','2429','NSW','Boorganna'
2471
+ 'AU','2429','NSW','Bucca Wauka'
2472
+ 'AU','2429','NSW','Bulga Forest'
2473
+ 'AU','2429','NSW','Bunyah'
2474
+ 'AU','2429','NSW','Burrell Creek'
2475
+ 'AU','2429','NSW','Caparra'
2476
+ 'AU','2429','NSW','Cedar Party'
2477
+ 'AU','2429','NSW','Comboyne'
2478
+ 'AU','2429','NSW','Dingo Forest'
2479
+ 'AU','2429','NSW','Dollys Flat'
2480
+ 'AU','2429','NSW','Dyers Crossing'
2481
+ 'AU','2429','NSW','Elands'
2482
+ 'AU','2429','NSW','Firefly'
2483
+ 'AU','2429','NSW','Innes View'
2484
+ 'AU','2429','NSW','Karaak Flat'
2485
+ 'AU','2429','NSW','Khatambuhl'
2486
+ 'AU','2429','NSW','Killabakh'
2487
+ 'AU','2429','NSW','Killawarra'
2488
+ 'AU','2429','NSW','Kimbriki'
2489
+ 'AU','2429','NSW','Kippaxs'
2490
+ 'AU','2429','NSW','Krambach'
2491
+ 'AU','2429','NSW','Kundibakh'
2492
+ 'AU','2429','NSW','Marlee'
2493
+ 'AU','2429','NSW','Mooral Creek'
2494
+ 'AU','2429','NSW','Strathcedar'
2495
+ 'AU','2429','NSW','The Bight'
2496
+ 'AU','2429','NSW','Tipperary'
2497
+ 'AU','2429','NSW','Warriwillah'
2498
+ 'AU','2429','NSW','Wherrol Flat'
2499
+ 'AU','2429','NSW','Wingham'
2500
+ 'AU','2429','NSW','Yarratt Forest'
2501
+ 'AU','2430','NSW','Black Head'
2502
+ 'AU','2430','NSW','Bohnock'
2503
+ 'AU','2430','NSW','Bootawa'
2504
+ 'AU','2430','NSW','Brimbin'
2505
+ 'AU','2430','NSW','Cabbage Tree Island'
2506
+ 'AU','2430','NSW','Chatham'
2507
+ 'AU','2430','NSW','Croki'
2508
+ 'AU','2430','NSW','Cundletown'
2509
+ 'AU','2430','NSW','Diamond Beach'
2510
+ 'AU','2430','NSW','Dumaresq Island'
2511
+ 'AU','2430','NSW','Failford'
2512
+ 'AU','2430','NSW','Ghinni Ghinni'
2513
+ 'AU','2430','NSW','Glenthorne'
2514
+ 'AU','2430','NSW','Hallidays Point'
2515
+ 'AU','2430','NSW','Hillville'
2516
+ 'AU','2430','NSW','Jones Island'
2517
+ 'AU','2430','NSW','Kiwarrak'
2518
+ 'AU','2430','NSW','Koorainghat'
2519
+ 'AU','2430','NSW','Kundle Kundle'
2520
+ 'AU','2430','NSW','Lansdowne'
2521
+ 'AU','2430','NSW','Lansdowne Forest'
2522
+ 'AU','2430','NSW','Manning Point'
2523
+ 'AU','2430','NSW','Melinga'
2524
+ 'AU','2430','NSW','Mitchells Island'
2525
+ 'AU','2430','NSW','Mondrook'
2526
+ 'AU','2430','NSW','Old Bar'
2527
+ 'AU','2430','NSW','Oxley Island'
2528
+ 'AU','2430','NSW','Pampoolah'
2529
+ 'AU','2430','NSW','Possum Brush'
2530
+ 'AU','2430','NSW','Purfleet'
2531
+ 'AU','2430','NSW','Rainbow Flat'
2532
+ 'AU','2430','NSW','Red Head'
2533
+ 'AU','2430','NSW','Saltwater'
2534
+ 'AU','2430','NSW','Tallwoods Village'
2535
+ 'AU','2430','NSW','Taree'
2536
+ 'AU','2430','NSW','Taree South'
2537
+ 'AU','2430','NSW','Tinonee'
2538
+ 'AU','2430','NSW','Upper Lansdowne'
2539
+ 'AU','2430','NSW','Wallabi Point'
2540
+ 'AU','2431','NSW','Arakoon'
2541
+ 'AU','2431','NSW','Jerseyville'
2542
+ 'AU','2431','NSW','South West Rocks'
2543
+ 'AU','2439','NSW','Batar Creek'
2544
+ 'AU','2439','NSW','Black Creek'
2545
+ 'AU','2439','NSW','Kendall'
2546
+ 'AU','2439','NSW','Kerewong'
2547
+ 'AU','2439','NSW','Kew'
2548
+ 'AU','2439','NSW','Logans Crossing'
2549
+ 'AU','2439','NSW','Lorne'
2550
+ 'AU','2439','NSW','Rossglen'
2551
+ 'AU','2439','NSW','Swans Crossing'
2552
+ 'AU','2439','NSW','Upsalls Creek'
2553
+ 'AU','2440','NSW','Aldavilla'
2554
+ 'AU','2440','NSW','Austral Eden'
2555
+ 'AU','2440','NSW','Bellbrook'
2556
+ 'AU','2440','NSW','Bellimbopinni'
2557
+ 'AU','2440','NSW','Belmore River'
2558
+ 'AU','2440','NSW','Burnt Bridge'
2559
+ 'AU','2440','NSW','Carrai'
2560
+ 'AU','2440','NSW','Clybucca'
2561
+ 'AU','2440','NSW','Collombatti'
2562
+ 'AU','2440','NSW','Comara'
2563
+ 'AU','2440','NSW','Corangula'
2564
+ 'AU','2440','NSW','Crescent Head'
2565
+ 'AU','2440','NSW','Deep Creek'
2566
+ 'AU','2440','NSW','Dondingalong'
2567
+ 'AU','2440','NSW','East Kempsey'
2568
+ 'AU','2440','NSW','Euroka'
2569
+ 'AU','2440','NSW','Frederickton'
2570
+ 'AU','2440','NSW','Gladstone'
2571
+ 'AU','2440','NSW','Greenhill'
2572
+ 'AU','2440','NSW','Hampden Hall'
2573
+ 'AU','2440','NSW','Hat Head'
2574
+ 'AU','2440','NSW','Hickeys Creek'
2575
+ 'AU','2440','NSW','Kempsey'
2576
+ 'AU','2440','NSW','Kinchela'
2577
+ 'AU','2440','NSW','Lower Creek'
2578
+ 'AU','2440','NSW','Millbank'
2579
+ 'AU','2440','NSW','Mooneba'
2580
+ 'AU','2440','NSW','Moparrabah'
2581
+ 'AU','2440','NSW','Mungay Creek'
2582
+ 'AU','2440','NSW','Old Station'
2583
+ 'AU','2440','NSW','Pola Creek'
2584
+ 'AU','2440','NSW','Rainbow Reach'
2585
+ 'AU','2440','NSW','Seven Oaks'
2586
+ 'AU','2440','NSW','Sherwood'
2587
+ 'AU','2440','NSW','Skillion Flat'
2588
+ 'AU','2440','NSW','Smithtown'
2589
+ 'AU','2440','NSW','South Kempsey'
2590
+ 'AU','2440','NSW','Summer Island'
2591
+ 'AU','2440','NSW','Temagog'
2592
+ 'AU','2440','NSW','Toorooka'
2593
+ 'AU','2440','NSW','Turners Flat'
2594
+ 'AU','2440','NSW','Verges Creek'
2595
+ 'AU','2440','NSW','West Kempsey'
2596
+ 'AU','2440','NSW','Willawarrin'
2597
+ 'AU','2440','NSW','Willi Willi'
2598
+ 'AU','2440','NSW','Wittitrin'
2599
+ 'AU','2440','NSW','Yarravel'
2600
+ 'AU','2440','NSW','Yessabah'
2601
+ 'AU','2441','NSW','Allgomera'
2602
+ 'AU','2441','NSW','Ballengarra'
2603
+ 'AU','2441','NSW','Barraganyatti'
2604
+ 'AU','2441','NSW','Bonville'
2605
+ 'AU','2441','NSW','Bril Bril'
2606
+ 'AU','2441','NSW','Brinerville'
2607
+ 'AU','2441','NSW','Cooperabung'
2608
+ 'AU','2441','NSW','Eungai Creek'
2609
+ 'AU','2441','NSW','Eungai Rail'
2610
+ 'AU','2441','NSW','Fishermans Reach'
2611
+ 'AU','2441','NSW','Grassy Head'
2612
+ 'AU','2441','NSW','Gum Scrub'
2613
+ 'AU','2441','NSW','Hacks Ferry'
2614
+ 'AU','2441','NSW','Kippara'
2615
+ 'AU','2441','NSW','Kundabung'
2616
+ 'AU','2441','NSW','Rollands Plains'
2617
+ 'AU','2441','NSW','Stuarts Point'
2618
+ 'AU','2441','NSW','Tamban'
2619
+ 'AU','2441','NSW','Telegraph Point'
2620
+ 'AU','2441','NSW','Upper Rollands Plains'
2621
+ 'AU','2441','NSW','Yarrahapinni'
2622
+ 'AU','2442','NSW','Kempsey Msc'
2623
+ 'AU','2442','NSW','Mid North Coast Msc'
2624
+ 'AU','2443','NSW','Bobs Creek'
2625
+ 'AU','2443','NSW','Camden Head'
2626
+ 'AU','2443','NSW','Coralville'
2627
+ 'AU','2443','NSW','Deauville'
2628
+ 'AU','2443','NSW','Diamond Head'
2629
+ 'AU','2443','NSW','Dunbogan'
2630
+ 'AU','2443','NSW','Hannam Vale'
2631
+ 'AU','2443','NSW','Herons Creek'
2632
+ 'AU','2443','NSW','Johns River'
2633
+ 'AU','2443','NSW','Lakewood'
2634
+ 'AU','2443','NSW','Laurieton'
2635
+ 'AU','2443','NSW','Middle Brother'
2636
+ 'AU','2443','NSW','Moorland'
2637
+ 'AU','2443','NSW','North Brother'
2638
+ 'AU','2443','NSW','North Haven'
2639
+ 'AU','2443','NSW','Stewarts River'
2640
+ 'AU','2443','NSW','Waitui'
2641
+ 'AU','2443','NSW','West Haven'
2642
+ 'AU','2444','NSW','Blackmans Point'
2643
+ 'AU','2444','NSW','Fernbank Creek'
2644
+ 'AU','2444','NSW','Flynns Beach'
2645
+ 'AU','2444','NSW','Lighthouse Beach'
2646
+ 'AU','2444','NSW','Limeburners Creek'
2647
+ 'AU','2444','NSW','North Shore'
2648
+ 'AU','2444','NSW','Port Macquarie'
2649
+ 'AU','2444','NSW','Port Macquarie Bc'
2650
+ 'AU','2444','NSW','Riverside'
2651
+ 'AU','2444','NSW','Settlement City'
2652
+ 'AU','2444','NSW','The Hatch'
2653
+ 'AU','2444','NSW','Thrumster'
2654
+ 'AU','2445','NSW','Bonny Hills'
2655
+ 'AU','2445','NSW','Grants Beach'
2656
+ 'AU','2445','NSW','Jolly Nose'
2657
+ 'AU','2445','NSW','Lake Cathie'
2658
+ 'AU','2446','NSW','Bagnoo'
2659
+ 'AU','2446','NSW','Bago'
2660
+ 'AU','2446','NSW','Banda Banda'
2661
+ 'AU','2446','NSW','Beechwood'
2662
+ 'AU','2446','NSW','Bellangry'
2663
+ 'AU','2446','NSW','Birdwood'
2664
+ 'AU','2446','NSW','Brombin'
2665
+ 'AU','2446','NSW','Byabarra'
2666
+ 'AU','2446','NSW','Cairncross'
2667
+ 'AU','2446','NSW','Crosslands'
2668
+ 'AU','2446','NSW','Debenham'
2669
+ 'AU','2446','NSW','Doyles River'
2670
+ 'AU','2446','NSW','Ellenborough'
2671
+ 'AU','2446','NSW','Forbes River'
2672
+ 'AU','2446','NSW','Frazers Creek'
2673
+ 'AU','2446','NSW','Gearys Flat'
2674
+ 'AU','2446','NSW','Hartys Plains'
2675
+ 'AU','2446','NSW','Hollisdale'
2676
+ 'AU','2446','NSW','Huntingdon'
2677
+ 'AU','2446','NSW','Hyndmans Creek'
2678
+ 'AU','2446','NSW','Kindee'
2679
+ 'AU','2446','NSW','King Creek'
2680
+ 'AU','2446','NSW','Lake Innes'
2681
+ 'AU','2446','NSW','Long Flat'
2682
+ 'AU','2446','NSW','Lower Pappinbarra'
2683
+ 'AU','2446','NSW','Marlo Merrican'
2684
+ 'AU','2446','NSW','Mortons Creek'
2685
+ 'AU','2446','NSW','Mount Seaview'
2686
+ 'AU','2446','NSW','Pappinbarra'
2687
+ 'AU','2446','NSW','Pembrooke'
2688
+ 'AU','2446','NSW','Pipeclay'
2689
+ 'AU','2446','NSW','Rawdon Island'
2690
+ 'AU','2446','NSW','Redbank'
2691
+ 'AU','2446','NSW','Rosewood'
2692
+ 'AU','2446','NSW','Sancrox'
2693
+ 'AU','2446','NSW','Toms Creek'
2694
+ 'AU','2446','NSW','Upper Pappinbarra'
2695
+ 'AU','2446','NSW','Wauchope'
2696
+ 'AU','2446','NSW','Werrikimbe'
2697
+ 'AU','2446','NSW','Yarras'
2698
+ 'AU','2446','NSW','Yippin Creek'
2699
+ 'AU','2447','NSW','Bakers Creek'
2700
+ 'AU','2447','NSW','Burrapine'
2701
+ 'AU','2447','NSW','Congarinni'
2702
+ 'AU','2447','NSW','Congarinni North'
2703
+ 'AU','2447','NSW','Donnellyville'
2704
+ 'AU','2447','NSW','Gumma'
2705
+ 'AU','2447','NSW','Macksville'
2706
+ 'AU','2447','NSW','Newee Creek'
2707
+ 'AU','2447','NSW','North Macksville'
2708
+ 'AU','2447','NSW','Scotts Head'
2709
+ 'AU','2447','NSW','Talarm'
2710
+ 'AU','2447','NSW','Taylors Arm'
2711
+ 'AU','2447','NSW','Thumb Creek'
2712
+ 'AU','2447','NSW','Upper Taylors Arm'
2713
+ 'AU','2447','NSW','Utungun'
2714
+ 'AU','2447','NSW','Warrell Creek'
2715
+ 'AU','2447','NSW','Way Way'
2716
+ 'AU','2447','NSW','Wirrimbi'
2717
+ 'AU','2447','NSW','Yarranbella'
2718
+ 'AU','2448','NSW','Hyland Park'
2719
+ 'AU','2448','NSW','Nambucca Heads'
2720
+ 'AU','2448','NSW','Valla'
2721
+ 'AU','2448','NSW','Valla Beach'
2722
+ 'AU','2449','NSW','Argents Hill'
2723
+ 'AU','2449','NSW','Bowraville'
2724
+ 'AU','2449','NSW','Buckra Bendinni'
2725
+ 'AU','2449','NSW','Girralong'
2726
+ 'AU','2449','NSW','Kennaicle Creek'
2727
+ 'AU','2449','NSW','Killiekrankie'
2728
+ 'AU','2449','NSW','Missabotti'
2729
+ 'AU','2449','NSW','South Arm'
2730
+ 'AU','2449','NSW','Tewinga'
2731
+ 'AU','2450','NSW','Boambee'
2732
+ 'AU','2450','NSW','Brooklana'
2733
+ 'AU','2450','NSW','Bucca'
2734
+ 'AU','2450','NSW','Coffs Harbour'
2735
+ 'AU','2450','NSW','Coffs Harbour Jetty'
2736
+ 'AU','2450','NSW','Coffs Harbour Plaza'
2737
+ 'AU','2450','NSW','Coramba'
2738
+ 'AU','2450','NSW','Glenreagh'
2739
+ 'AU','2450','NSW','Karangi'
2740
+ 'AU','2450','NSW','Korora'
2741
+ 'AU','2450','NSW','Lowanna'
2742
+ 'AU','2450','NSW','Moonee Beach'
2743
+ 'AU','2450','NSW','Nana Glen'
2744
+ 'AU','2450','NSW','North Boambee Valley'
2745
+ 'AU','2450','NSW','Sapphire Beach'
2746
+ 'AU','2450','NSW','Sherwood'
2747
+ 'AU','2450','NSW','Ulong'
2748
+ 'AU','2450','NSW','Upper Orara'
2749
+ 'AU','2452','NSW','Boambee East'
2750
+ 'AU','2452','NSW','Sawtell'
2751
+ 'AU','2452','NSW','Toormina'
2752
+ 'AU','2453','NSW','Bielsdown Hills'
2753
+ 'AU','2453','NSW','Billys Creek'
2754
+ 'AU','2453','NSW','Bostobrick'
2755
+ 'AU','2453','NSW','Cascade'
2756
+ 'AU','2453','NSW','Clouds Creek'
2757
+ 'AU','2453','NSW','Deer Vale'
2758
+ 'AU','2453','NSW','Dorrigo'
2759
+ 'AU','2453','NSW','Dorrigo Mountain'
2760
+ 'AU','2453','NSW','Dundurrabin'
2761
+ 'AU','2453','NSW','Ebor'
2762
+ 'AU','2453','NSW','Fernbrook'
2763
+ 'AU','2453','NSW','Gangara'
2764
+ 'AU','2453','NSW','Harness Cask'
2765
+ 'AU','2453','NSW','Hernani'
2766
+ 'AU','2453','NSW','Marengo'
2767
+ 'AU','2453','NSW','Megan'
2768
+ 'AU','2453','NSW','Meldrum Downs'
2769
+ 'AU','2453','NSW','Moonpar'
2770
+ 'AU','2453','NSW','Never Never'
2771
+ 'AU','2453','NSW','North Dorrigo'
2772
+ 'AU','2453','NSW','Paddys Plain'
2773
+ 'AU','2453','NSW','Tallowwood Ridge'
2774
+ 'AU','2453','NSW','Tyringham'
2775
+ 'AU','2453','NSW','Wild Cattle Creek'
2776
+ 'AU','2454','NSW','Bellingen'
2777
+ 'AU','2454','NSW','Brierfield'
2778
+ 'AU','2454','NSW','Buffer Creek'
2779
+ 'AU','2454','NSW','Bundagen'
2780
+ 'AU','2454','NSW','Darkwood'
2781
+ 'AU','2454','NSW','Fernmount'
2782
+ 'AU','2454','NSW','Gleniffer'
2783
+ 'AU','2454','NSW','Kalang'
2784
+ 'AU','2454','NSW','Kooroowi'
2785
+ 'AU','2454','NSW','Marx Hill'
2786
+ 'AU','2454','NSW','Mylestom'
2787
+ 'AU','2454','NSW','North Bellingen'
2788
+ 'AU','2454','NSW','Promised Land'
2789
+ 'AU','2454','NSW','Raleigh'
2790
+ 'AU','2454','NSW','Repton'
2791
+ 'AU','2454','NSW','Scotchman'
2792
+ 'AU','2454','NSW','Spicketts Creek'
2793
+ 'AU','2454','NSW','Thora'
2794
+ 'AU','2454','NSW','Valery'
2795
+ 'AU','2455','NSW','Newry'
2796
+ 'AU','2455','NSW','Newry Island'
2797
+ 'AU','2455','NSW','Urunga'
2798
+ 'AU','2455','NSW','Wenonah Head'
2799
+ 'AU','2456','NSW','Arrawarra'
2800
+ 'AU','2456','NSW','Arrawarra Headland'
2801
+ 'AU','2456','NSW','Corindi Beach'
2802
+ 'AU','2456','NSW','Emerald Beach'
2803
+ 'AU','2456','NSW','Mullaway'
2804
+ 'AU','2456','NSW','Red Rock'
2805
+ 'AU','2456','NSW','Safety Beach'
2806
+ 'AU','2456','NSW','Sandy Beach'
2807
+ 'AU','2456','NSW','Upper Corindi'
2808
+ 'AU','2456','NSW','Woolgoolga'
2809
+ 'AU','2460','NSW','Alice'
2810
+ 'AU','2460','NSW','Alumy Creek'
2811
+ 'AU','2460','NSW','Barcoongere'
2812
+ 'AU','2460','NSW','Barretts Creek'
2813
+ 'AU','2460','NSW','Baryulgil'
2814
+ 'AU','2460','NSW','Blaxlands Creek'
2815
+ 'AU','2460','NSW','Bom Bom'
2816
+ 'AU','2460','NSW','Bookram'
2817
+ 'AU','2460','NSW','Braunstone'
2818
+ 'AU','2460','NSW','Brushgrove'
2819
+ 'AU','2460','NSW','Buccarumbi'
2820
+ 'AU','2460','NSW','Calamia'
2821
+ 'AU','2460','NSW','Cangai'
2822
+ 'AU','2460','NSW','Carnham'
2823
+ 'AU','2460','NSW','Carrs Creek'
2824
+ 'AU','2460','NSW','Carrs Island'
2825
+ 'AU','2460','NSW','Carrs Peninsular'
2826
+ 'AU','2460','NSW','Chaelundi'
2827
+ 'AU','2460','NSW','Chambigne'
2828
+ 'AU','2460','NSW','Clarenza'
2829
+ 'AU','2460','NSW','Clifden'
2830
+ 'AU','2460','NSW','Coaldale'
2831
+ 'AU','2460','NSW','Collum Collum'
2832
+ 'AU','2460','NSW','Coombadjha'
2833
+ 'AU','2460','NSW','Copmanhurst'
2834
+ 'AU','2460','NSW','Coutts Crossing'
2835
+ 'AU','2460','NSW','Cowper'
2836
+ 'AU','2460','NSW','Crowther Island'
2837
+ 'AU','2460','NSW','Dalmorton'
2838
+ 'AU','2460','NSW','Dilkoon'
2839
+ 'AU','2460','NSW','Dirty Creek'
2840
+ 'AU','2460','NSW','Dumbudgery'
2841
+ 'AU','2460','NSW','Eatonsville'
2842
+ 'AU','2460','NSW','Eighteen Mile'
2843
+ 'AU','2460','NSW','Elland'
2844
+ 'AU','2460','NSW','Fine Flower'
2845
+ 'AU','2460','NSW','Fortis Creek'
2846
+ 'AU','2460','NSW','Glenugie'
2847
+ 'AU','2460','NSW','Grafton'
2848
+ 'AU','2460','NSW','Grafton West'
2849
+ 'AU','2460','NSW','Great Marlow'
2850
+ 'AU','2460','NSW','Gurranang'
2851
+ 'AU','2460','NSW','Halfway Creek'
2852
+ 'AU','2460','NSW','Heifer Station'
2853
+ 'AU','2460','NSW','Jackadgery'
2854
+ 'AU','2460','NSW','Junction Hill'
2855
+ 'AU','2460','NSW','Kangaroo Creek'
2856
+ 'AU','2460','NSW','Keybarbin'
2857
+ 'AU','2460','NSW','Koolkhan'
2858
+ 'AU','2460','NSW','Kremnos'
2859
+ 'AU','2460','NSW','Kungala'
2860
+ 'AU','2460','NSW','Kyarran'
2861
+ 'AU','2460','NSW','Lanitza'
2862
+ 'AU','2460','NSW','Lawrence'
2863
+ 'AU','2460','NSW','Levenstrath'
2864
+ 'AU','2460','NSW','Lilydale'
2865
+ 'AU','2460','NSW','Lionsville'
2866
+ 'AU','2460','NSW','Lower Southgate'
2867
+ 'AU','2460','NSW','Malabugilmah'
2868
+ 'AU','2460','NSW','Moleville Creek'
2869
+ 'AU','2460','NSW','Mountain View'
2870
+ 'AU','2460','NSW','Mylneford'
2871
+ 'AU','2460','NSW','Newbold'
2872
+ 'AU','2460','NSW','Nymboida'
2873
+ 'AU','2460','NSW','Pulganbar'
2874
+ 'AU','2460','NSW','Punchbowl'
2875
+ 'AU','2460','NSW','Ramornie'
2876
+ 'AU','2460','NSW','Rushforth'
2877
+ 'AU','2460','NSW','Sandy Crossing'
2878
+ 'AU','2460','NSW','Seelands'
2879
+ 'AU','2460','NSW','Shannondale'
2880
+ 'AU','2460','NSW','Smiths Creek'
2881
+ 'AU','2460','NSW','South Arm'
2882
+ 'AU','2460','NSW','South Grafton'
2883
+ 'AU','2460','NSW','Southampton'
2884
+ 'AU','2460','NSW','Southgate'
2885
+ 'AU','2460','NSW','Stockyard Creek'
2886
+ 'AU','2460','NSW','The Pinnacles'
2887
+ 'AU','2460','NSW','The Whiteman'
2888
+ 'AU','2460','NSW','Towallum'
2889
+ 'AU','2460','NSW','Trenayr'
2890
+ 'AU','2460','NSW','Tyndale'
2891
+ 'AU','2460','NSW','Upper Copmanhurst'
2892
+ 'AU','2460','NSW','Upper Fine Flower'
2893
+ 'AU','2460','NSW','Warragai Creek'
2894
+ 'AU','2460','NSW','Washpool'
2895
+ 'AU','2460','NSW','Waterview'
2896
+ 'AU','2460','NSW','Waterview Heights'
2897
+ 'AU','2460','NSW','Wells Crossing'
2898
+ 'AU','2460','NSW','Whiteman Creek'
2899
+ 'AU','2460','NSW','Winegrove'
2900
+ 'AU','2460','NSW','Wombat Creek'
2901
+ 'AU','2462','NSW','Calliope'
2902
+ 'AU','2462','NSW','Coldstream'
2903
+ 'AU','2462','NSW','Diggers Camp'
2904
+ 'AU','2462','NSW','Gilletts Ridge'
2905
+ 'AU','2462','NSW','Lake Hiawatha'
2906
+ 'AU','2462','NSW','Lavadia'
2907
+ 'AU','2462','NSW','Minnie Water'
2908
+ 'AU','2462','NSW','Pillar Valley'
2909
+ 'AU','2462','NSW','Swan Creek'
2910
+ 'AU','2462','NSW','Tucabia'
2911
+ 'AU','2462','NSW','Ulmarra'
2912
+ 'AU','2462','NSW','Wooli'
2913
+ 'AU','2463','NSW','Ashby'
2914
+ 'AU','2463','NSW','Ashby Heights'
2915
+ 'AU','2463','NSW','Ashby Island'
2916
+ 'AU','2463','NSW','Brooms Head'
2917
+ 'AU','2463','NSW','Gulmarrad'
2918
+ 'AU','2463','NSW','Ilarwill'
2919
+ 'AU','2463','NSW','Jacky Bulbin Flat'
2920
+ 'AU','2463','NSW','James Creek'
2921
+ 'AU','2463','NSW','Maclean'
2922
+ 'AU','2463','NSW','Palmers Channel'
2923
+ 'AU','2463','NSW','Palmers Island'
2924
+ 'AU','2463','NSW','Sandon'
2925
+ 'AU','2463','NSW','Shark Creek'
2926
+ 'AU','2463','NSW','Taloumbi'
2927
+ 'AU','2463','NSW','The Sandon'
2928
+ 'AU','2463','NSW','Townsend'
2929
+ 'AU','2463','NSW','Tullymorgan'
2930
+ 'AU','2463','NSW','Woodford Island'
2931
+ 'AU','2464','NSW','Angourie'
2932
+ 'AU','2464','NSW','Freeburn Island'
2933
+ 'AU','2464','NSW','Micalo Island'
2934
+ 'AU','2464','NSW','Wooloweyah'
2935
+ 'AU','2464','NSW','Yamba'
2936
+ 'AU','2464','NSW','Yuraygir'
2937
+ 'AU','2465','NSW','Harwood'
2938
+ 'AU','2466','NSW','Iluka'
2939
+ 'AU','2466','NSW','The Freshwater'
2940
+ 'AU','2466','NSW','Woody Head'
2941
+ 'AU','2469','NSW','Banyabba'
2942
+ 'AU','2469','NSW','Bean Creek'
2943
+ 'AU','2469','NSW','Bingeebeebra Creek'
2944
+ 'AU','2469','NSW','Bonalbo'
2945
+ 'AU','2469','NSW','Boomoodeerie'
2946
+ 'AU','2469','NSW','Bottle Creek'
2947
+ 'AU','2469','NSW','Bulldog'
2948
+ 'AU','2469','NSW','Bungawalbin'
2949
+ 'AU','2469','NSW','Busbys Flat'
2950
+ 'AU','2469','NSW','Cambridge Plateau'
2951
+ 'AU','2469','NSW','Camira'
2952
+ 'AU','2469','NSW','Capeen Creek'
2953
+ 'AU','2469','NSW','Chatsworth'
2954
+ 'AU','2469','NSW','Clearfield'
2955
+ 'AU','2469','NSW','Coongbar'
2956
+ 'AU','2469','NSW','Culmaran Creek'
2957
+ 'AU','2469','NSW','Deep Creek'
2958
+ 'AU','2469','NSW','Drake'
2959
+ 'AU','2469','NSW','Drake Village'
2960
+ 'AU','2469','NSW','Duck Creek'
2961
+ 'AU','2469','NSW','Ewingar'
2962
+ 'AU','2469','NSW','Gibberagee'
2963
+ 'AU','2469','NSW','Goodwood Island'
2964
+ 'AU','2469','NSW','Gorge Creek'
2965
+ 'AU','2469','NSW','Haystack'
2966
+ 'AU','2469','NSW','Hogarth Range'
2967
+ 'AU','2469','NSW','Jacksons Flat'
2968
+ 'AU','2469','NSW','Joes Box'
2969
+ 'AU','2469','NSW','Kippenduff'
2970
+ 'AU','2469','NSW','Louisa Creek'
2971
+ 'AU','2469','NSW','Lower Bottle Creek'
2972
+ 'AU','2469','NSW','Lower Duck Creek'
2973
+ 'AU','2469','NSW','Lower Peacock'
2974
+ 'AU','2469','NSW','Mallanganee'
2975
+ 'AU','2469','NSW','Mookima Wybra'
2976
+ 'AU','2469','NSW','Mororo'
2977
+ 'AU','2469','NSW','Mount Marsh'
2978
+ 'AU','2469','NSW','Mummulgum'
2979
+ 'AU','2469','NSW','Myrtle Creek'
2980
+ 'AU','2469','NSW','Old Bonalbo'
2981
+ 'AU','2469','NSW','Paddys Flat'
2982
+ 'AU','2469','NSW','Pagans Flat'
2983
+ 'AU','2469','NSW','Peacock Creek'
2984
+ 'AU','2469','NSW','Pikapene'
2985
+ 'AU','2469','NSW','Pretty Gully'
2986
+ 'AU','2469','NSW','Rappville'
2987
+ 'AU','2469','NSW','Sandilands'
2988
+ 'AU','2469','NSW','Simpkins Creek'
2989
+ 'AU','2469','NSW','Six Mile Swamp'
2990
+ 'AU','2469','NSW','Tabulam'
2991
+ 'AU','2469','NSW','Theresa Creek'
2992
+ 'AU','2469','NSW','Tunglebung'
2993
+ 'AU','2469','NSW','Upper Duck Creek'
2994
+ 'AU','2469','NSW','Warregah Island'
2995
+ 'AU','2469','NSW','Whiporie'
2996
+ 'AU','2469','NSW','Woombah'
2997
+ 'AU','2469','NSW','Wyan'
2998
+ 'AU','2469','NSW','Yabbra'
2999
+ 'AU','2470','NSW','Babyl Creek'
3000
+ 'AU','2470','NSW','Backmede'
3001
+ 'AU','2470','NSW','Baraimal'
3002
+ 'AU','2470','NSW','Casino'
3003
+ 'AU','2470','NSW','Coolaness'
3004
+ 'AU','2470','NSW','Coombell'
3005
+ 'AU','2470','NSW','Dobies Bight'
3006
+ 'AU','2470','NSW','Doubtful Creek'
3007
+ 'AU','2470','NSW','Dyraaba'
3008
+ 'AU','2470','NSW','Ellangowan'
3009
+ 'AU','2470','NSW','Fairy Hill'
3010
+ 'AU','2470','NSW','Irvington'
3011
+ 'AU','2470','NSW','Leeville'
3012
+ 'AU','2470','NSW','Lower Dyraaba'
3013
+ 'AU','2470','NSW','Mongogarie'
3014
+ 'AU','2470','NSW','Naughtons Gap'
3015
+ 'AU','2470','NSW','North Casino'
3016
+ 'AU','2470','NSW','Piora'
3017
+ 'AU','2470','NSW','Sextonville'
3018
+ 'AU','2470','NSW','Shannon Brook'
3019
+ 'AU','2470','NSW','Spring Grove'
3020
+ 'AU','2470','NSW','Stratheden'
3021
+ 'AU','2470','NSW','Upper Mongogarie'
3022
+ 'AU','2470','NSW','Woodview'
3023
+ 'AU','2470','NSW','Woolners Arm'
3024
+ 'AU','2470','NSW','Wooroowoolgan'
3025
+ 'AU','2470','NSW','Yorklea'
3026
+ 'AU','2471','NSW','Bora Ridge'
3027
+ 'AU','2471','NSW','Codrington'
3028
+ 'AU','2471','NSW','Coraki'
3029
+ 'AU','2471','NSW','East Coraki'
3030
+ 'AU','2471','NSW','Green Forest'
3031
+ 'AU','2471','NSW','Greenridge'
3032
+ 'AU','2471','NSW','North Woodburn'
3033
+ 'AU','2471','NSW','Swan Bay'
3034
+ 'AU','2471','NSW','Tatham'
3035
+ 'AU','2471','NSW','West Coraki'
3036
+ 'AU','2472','NSW','Broadwater'
3037
+ 'AU','2472','NSW','Buckendoon'
3038
+ 'AU','2472','NSW','Esk'
3039
+ 'AU','2472','NSW','Kilgin'
3040
+ 'AU','2472','NSW','Moonem'
3041
+ 'AU','2472','NSW','New Italy'
3042
+ 'AU','2472','NSW','Rileys Hill'
3043
+ 'AU','2472','NSW','Tabbimoble'
3044
+ 'AU','2472','NSW','The Gap'
3045
+ 'AU','2472','NSW','Trustums Hill'
3046
+ 'AU','2472','NSW','Woodburn'
3047
+ 'AU','2473','NSW','Bundjalung'
3048
+ 'AU','2473','NSW','Doonbah'
3049
+ 'AU','2473','NSW','Evans Head'
3050
+ 'AU','2473','NSW','Iron Gates'
3051
+ 'AU','2473','NSW','South Evans Head'
3052
+ 'AU','2474','NSW','Afterlee'
3053
+ 'AU','2474','NSW','Barkers Vale'
3054
+ 'AU','2474','NSW','Border Ranges'
3055
+ 'AU','2474','NSW','Cawongla'
3056
+ 'AU','2474','NSW','Cedar Point'
3057
+ 'AU','2474','NSW','Collins Creek'
3058
+ 'AU','2474','NSW','Cougal'
3059
+ 'AU','2474','NSW','Dairy Flat'
3060
+ 'AU','2474','NSW','Eden Creek'
3061
+ 'AU','2474','NSW','Edenville'
3062
+ 'AU','2474','NSW','Ettrick'
3063
+ 'AU','2474','NSW','Fawcetts Plain'
3064
+ 'AU','2474','NSW','Findon Creek'
3065
+ 'AU','2474','NSW','Geneva'
3066
+ 'AU','2474','NSW','Ghinni Ghi'
3067
+ 'AU','2474','NSW','Gradys Creek'
3068
+ 'AU','2474','NSW','Green Pigeon'
3069
+ 'AU','2474','NSW','Grevillia'
3070
+ 'AU','2474','NSW','Homeleigh'
3071
+ 'AU','2474','NSW','Horse Station Creek'
3072
+ 'AU','2474','NSW','Horseshoe Creek'
3073
+ 'AU','2474','NSW','Iron Pot Creek'
3074
+ 'AU','2474','NSW','Kilgra'
3075
+ 'AU','2474','NSW','Kyogle'
3076
+ 'AU','2474','NSW','Little Back Creek'
3077
+ 'AU','2474','NSW','Loadstone'
3078
+ 'AU','2474','NSW','Lynchs Creek'
3079
+ 'AU','2474','NSW','New Park'
3080
+ 'AU','2474','NSW','Old Grevillia'
3081
+ 'AU','2474','NSW','Roseberry'
3082
+ 'AU','2474','NSW','Roseberry Creek'
3083
+ 'AU','2474','NSW','Rukenvale'
3084
+ 'AU','2474','NSW','Sawpit Creek'
3085
+ 'AU','2474','NSW','Sherwood'
3086
+ 'AU','2474','NSW','Smiths Creek'
3087
+ 'AU','2474','NSW','Terrace Creek'
3088
+ 'AU','2474','NSW','The Risk'
3089
+ 'AU','2474','NSW','Toonumbar'
3090
+ 'AU','2474','NSW','Unumgar'
3091
+ 'AU','2474','NSW','Upper Eden Creek'
3092
+ 'AU','2474','NSW','Upper Horseshoe Creek'
3093
+ 'AU','2474','NSW','Wadeville'
3094
+ 'AU','2474','NSW','Warrazambil Creek'
3095
+ 'AU','2474','NSW','West Wiangaree'
3096
+ 'AU','2474','NSW','Wiangaree'
3097
+ 'AU','2474','NSW','Wyneden'
3098
+ 'AU','2475','NSW','Tooloom'
3099
+ 'AU','2475','NSW','Upper Tooloom'
3100
+ 'AU','2475','NSW','Urbenville'
3101
+ 'AU','2475','NSW','Wallaby Creek'
3102
+ 'AU','2476','NSW','Acacia Creek'
3103
+ 'AU','2476','NSW','Acacia Plateau'
3104
+ 'AU','2476','NSW','Boomi Creek'
3105
+ 'AU','2476','NSW','Brumby Plains'
3106
+ 'AU','2476','NSW','Koreelah'
3107
+ 'AU','2476','NSW','Legume'
3108
+ 'AU','2476','NSW','Lindesay Creek'
3109
+ 'AU','2476','NSW','Lower Acacia Creek'
3110
+ 'AU','2476','NSW','Muli Muli'
3111
+ 'AU','2476','NSW','Old Koreelah'
3112
+ 'AU','2476','NSW','The Glen'
3113
+ 'AU','2476','NSW','Woodenbong'
3114
+ 'AU','2477','NSW','Alstonvale'
3115
+ 'AU','2477','NSW','Alstonville'
3116
+ 'AU','2477','NSW','Bagotville'
3117
+ 'AU','2477','NSW','Cabbage Tree Island'
3118
+ 'AU','2477','NSW','Dalwood'
3119
+ 'AU','2477','NSW','East Wardell'
3120
+ 'AU','2477','NSW','Goat Island'
3121
+ 'AU','2477','NSW','Lynwood'
3122
+ 'AU','2477','NSW','Meerschaum Vale'
3123
+ 'AU','2477','NSW','Pearces Creek'
3124
+ 'AU','2477','NSW','Rous'
3125
+ 'AU','2477','NSW','Rous Mill'
3126
+ 'AU','2477','NSW','Tuckombil'
3127
+ 'AU','2477','NSW','Uralba'
3128
+ 'AU','2477','NSW','Wardell'
3129
+ 'AU','2477','NSW','Wollongbar'
3130
+ 'AU','2478','NSW','Ballina'
3131
+ 'AU','2478','NSW','Coolgardie'
3132
+ 'AU','2478','NSW','Cumbalum'
3133
+ 'AU','2478','NSW','East Ballina'
3134
+ 'AU','2478','NSW','Empire Vale'
3135
+ 'AU','2478','NSW','Keith Hall'
3136
+ 'AU','2478','NSW','Lennox Head'
3137
+ 'AU','2478','NSW','Patchs Beach'
3138
+ 'AU','2478','NSW','Pimlico'
3139
+ 'AU','2478','NSW','Pimlico Island'
3140
+ 'AU','2478','NSW','Skennars Head'
3141
+ 'AU','2478','NSW','South Ballina'
3142
+ 'AU','2478','NSW','Teven'
3143
+ 'AU','2478','NSW','Tintenbar'
3144
+ 'AU','2478','NSW','West Ballina'
3145
+ 'AU','2479','NSW','Bangalow'
3146
+ 'AU','2479','NSW','Binna Burra'
3147
+ 'AU','2479','NSW','Brooklet'
3148
+ 'AU','2479','NSW','Coopers Shoot'
3149
+ 'AU','2479','NSW','Coorabell'
3150
+ 'AU','2479','NSW','Fernleigh'
3151
+ 'AU','2479','NSW','Knockrow'
3152
+ 'AU','2479','NSW','Mcleods Shoot'
3153
+ 'AU','2479','NSW','Nashua'
3154
+ 'AU','2479','NSW','Newrybar'
3155
+ 'AU','2479','NSW','Opossum Creek'
3156
+ 'AU','2479','NSW','Possum Creek'
3157
+ 'AU','2480','NSW','Back Creek'
3158
+ 'AU','2480','NSW','Bentley'
3159
+ 'AU','2480','NSW','Bexhill'
3160
+ 'AU','2480','NSW','Blakebrook'
3161
+ 'AU','2480','NSW','Blue Knob'
3162
+ 'AU','2480','NSW','Boat Harbour'
3163
+ 'AU','2480','NSW','Booerie Creek'
3164
+ 'AU','2480','NSW','Boorabee Park'
3165
+ 'AU','2480','NSW','Booyong'
3166
+ 'AU','2480','NSW','Bungabbee'
3167
+ 'AU','2480','NSW','Caniaba'
3168
+ 'AU','2480','NSW','Chilcotts Grass'
3169
+ 'AU','2480','NSW','Clovass'
3170
+ 'AU','2480','NSW','Clunes'
3171
+ 'AU','2480','NSW','Coffee Camp'
3172
+ 'AU','2480','NSW','Corndale'
3173
+ 'AU','2480','NSW','Dorroughby'
3174
+ 'AU','2480','NSW','Dungarubba'
3175
+ 'AU','2480','NSW','Dunoon'
3176
+ 'AU','2480','NSW','East Lismore'
3177
+ 'AU','2480','NSW','Eltham'
3178
+ 'AU','2480','NSW','Eureka'
3179
+ 'AU','2480','NSW','Federal'
3180
+ 'AU','2480','NSW','Fernside'
3181
+ 'AU','2480','NSW','Georgica'
3182
+ 'AU','2480','NSW','Girards Hill'
3183
+ 'AU','2480','NSW','Goolmangar'
3184
+ 'AU','2480','NSW','Goonellabah'
3185
+ 'AU','2480','NSW','Howards Grass'
3186
+ 'AU','2480','NSW','Jiggi'
3187
+ 'AU','2480','NSW','Keerrong'
3188
+ 'AU','2480','NSW','Koonorigan'
3189
+ 'AU','2480','NSW','Lagoon Grass'
3190
+ 'AU','2480','NSW','Larnook'
3191
+ 'AU','2480','NSW','Leycester'
3192
+ 'AU','2480','NSW','Lillian Rock'
3193
+ 'AU','2480','NSW','Lindendale'
3194
+ 'AU','2480','NSW','Lismore'
3195
+ 'AU','2480','NSW','Lismore Heights'
3196
+ 'AU','2480','NSW','Loftville'
3197
+ 'AU','2480','NSW','Marom Creek'
3198
+ 'AU','2480','NSW','Mckees Hill'
3199
+ 'AU','2480','NSW','Mcleans Ridges'
3200
+ 'AU','2480','NSW','Modanville'
3201
+ 'AU','2480','NSW','Monaltrie'
3202
+ 'AU','2480','NSW','Mountain Top'
3203
+ 'AU','2480','NSW','Nightcap'
3204
+ 'AU','2480','NSW','Nimbin'
3205
+ 'AU','2480','NSW','North Lismore'
3206
+ 'AU','2480','NSW','Numulgi'
3207
+ 'AU','2480','NSW','Repentance Creek'
3208
+ 'AU','2480','NSW','Richmond Hill'
3209
+ 'AU','2480','NSW','Rock Valley'
3210
+ 'AU','2480','NSW','Rosebank'
3211
+ 'AU','2480','NSW','Ruthven'
3212
+ 'AU','2480','NSW','South Gundurimba'
3213
+ 'AU','2480','NSW','South Lismore'
3214
+ 'AU','2480','NSW','Stony Chute'
3215
+ 'AU','2480','NSW','Terania Creek'
3216
+ 'AU','2480','NSW','The Channon'
3217
+ 'AU','2480','NSW','Tregeagle'
3218
+ 'AU','2480','NSW','Tucki Tucki'
3219
+ 'AU','2480','NSW','Tuckurimba'
3220
+ 'AU','2480','NSW','Tullera'
3221
+ 'AU','2480','NSW','Tuncester'
3222
+ 'AU','2480','NSW','Tuntable Creek'
3223
+ 'AU','2480','NSW','Whian Whian'
3224
+ 'AU','2480','NSW','Woodlawn'
3225
+ 'AU','2480','NSW','Wyrallah'
3226
+ 'AU','2481','NSW','Broken Head'
3227
+ 'AU','2481','NSW','Byron Bay'
3228
+ 'AU','2481','NSW','Ewingsdale'
3229
+ 'AU','2481','NSW','Hayters Hill'
3230
+ 'AU','2481','NSW','Myocum'
3231
+ 'AU','2481','NSW','Skinners Shoot'
3232
+ 'AU','2481','NSW','Suffolk Park'
3233
+ 'AU','2481','NSW','Talofa'
3234
+ 'AU','2481','NSW','Tyagarah'
3235
+ 'AU','2482','NSW','Goonengerry'
3236
+ 'AU','2482','NSW','Huonbrook'
3237
+ 'AU','2482','NSW','Koonyum Range'
3238
+ 'AU','2482','NSW','Main Arm'
3239
+ 'AU','2482','NSW','Montecollum'
3240
+ 'AU','2482','NSW','Mullumbimby'
3241
+ 'AU','2482','NSW','Mullumbimby Creek'
3242
+ 'AU','2482','NSW','Palmwoods'
3243
+ 'AU','2482','NSW','Upper Coopers Creek'
3244
+ 'AU','2482','NSW','Upper Main Arm'
3245
+ 'AU','2482','NSW','Upper Wilsons Creek'
3246
+ 'AU','2482','NSW','Wanganui'
3247
+ 'AU','2482','NSW','Wilsons Creek'
3248
+ 'AU','2483','NSW','Billinudgel'
3249
+ 'AU','2483','NSW','Brunswick Heads'
3250
+ 'AU','2483','NSW','Burringbar'
3251
+ 'AU','2483','NSW','Crabbes Creek'
3252
+ 'AU','2483','NSW','Middle Pocket'
3253
+ 'AU','2483','NSW','Mooball'
3254
+ 'AU','2483','NSW','New Brighton'
3255
+ 'AU','2483','NSW','Ocean Shores'
3256
+ 'AU','2483','NSW','Sleepy Hollow'
3257
+ 'AU','2483','NSW','South Golden Beach'
3258
+ 'AU','2483','NSW','The Pocket'
3259
+ 'AU','2483','NSW','Upper Burringbar'
3260
+ 'AU','2483','NSW','Wooyung'
3261
+ 'AU','2483','NSW','Yelgun'
3262
+ 'AU','2484','NSW','Back Creek'
3263
+ 'AU','2484','NSW','Bray Park'
3264
+ 'AU','2484','NSW','Brays Creek'
3265
+ 'AU','2484','NSW','Byangum'
3266
+ 'AU','2484','NSW','Byrrill Creek'
3267
+ 'AU','2484','NSW','Cedar Creek'
3268
+ 'AU','2484','NSW','Chillingham'
3269
+ 'AU','2484','NSW','Chowan Creek'
3270
+ 'AU','2484','NSW','Clothiers Creek'
3271
+ 'AU','2484','NSW','Commissioners Creek'
3272
+ 'AU','2484','NSW','Condong'
3273
+ 'AU','2484','NSW','Crystal Creek'
3274
+ 'AU','2484','NSW','Cudgera Creek'
3275
+ 'AU','2484','NSW','Doon Doon'
3276
+ 'AU','2484','NSW','Dulguigan'
3277
+ 'AU','2484','NSW','Dum Dum'
3278
+ 'AU','2484','NSW','Dunbible'
3279
+ 'AU','2484','NSW','Dungay'
3280
+ 'AU','2484','NSW','Eungella'
3281
+ 'AU','2484','NSW','Eviron'
3282
+ 'AU','2484','NSW','Farrants Hill'
3283
+ 'AU','2484','NSW','Fernvale'
3284
+ 'AU','2484','NSW','Hopkins Creek'
3285
+ 'AU','2484','NSW','Kielvale'
3286
+ 'AU','2484','NSW','Kunghur'
3287
+ 'AU','2484','NSW','Kunghur Creek'
3288
+ 'AU','2484','NSW','Kynnumboon'
3289
+ 'AU','2484','NSW','Limpinwood'
3290
+ 'AU','2484','NSW','Mebbin'
3291
+ 'AU','2484','NSW','Midginbil'
3292
+ 'AU','2484','NSW','Mount Burrell'
3293
+ 'AU','2484','NSW','Mount Warning'
3294
+ 'AU','2484','NSW','Murwillumbah'
3295
+ 'AU','2484','NSW','Murwillumbah South'
3296
+ 'AU','2484','NSW','Nobbys Creek'
3297
+ 'AU','2484','NSW','North Arm'
3298
+ 'AU','2484','NSW','Numinbah'
3299
+ 'AU','2484','NSW','Nunderi'
3300
+ 'AU','2484','NSW','Palmvale'
3301
+ 'AU','2484','NSW','Pumpenbil'
3302
+ 'AU','2484','NSW','Reserve Creek'
3303
+ 'AU','2484','NSW','Round Mountain'
3304
+ 'AU','2484','NSW','Rowlands Creek'
3305
+ 'AU','2484','NSW','Smiths Creek'
3306
+ 'AU','2484','NSW','South Murwillumbah'
3307
+ 'AU','2484','NSW','Stokers Siding'
3308
+ 'AU','2484','NSW','Terragon'
3309
+ 'AU','2484','NSW','Tomewin'
3310
+ 'AU','2484','NSW','Tyalgum'
3311
+ 'AU','2484','NSW','Tyalgum Creek'
3312
+ 'AU','2484','NSW','Tygalgah'
3313
+ 'AU','2484','NSW','Uki'
3314
+ 'AU','2484','NSW','Upper Crystal Creek'
3315
+ 'AU','2484','NSW','Urliup'
3316
+ 'AU','2484','NSW','Wardrop Valley'
3317
+ 'AU','2484','NSW','Zara'
3318
+ 'AU','2485','NSW','Tweed Heads'
3319
+ 'AU','2485','NSW','Tweed Heads West'
3320
+ 'AU','2486','NSW','Banora Point'
3321
+ 'AU','2486','NSW','Bilambil'
3322
+ 'AU','2486','NSW','Bilambil Heights'
3323
+ 'AU','2486','NSW','Bungalora'
3324
+ 'AU','2486','NSW','Carool'
3325
+ 'AU','2486','NSW','Cobaki'
3326
+ 'AU','2486','NSW','Cobaki Lakes'
3327
+ 'AU','2486','NSW','Duroby'
3328
+ 'AU','2486','NSW','Glengarrie'
3329
+ 'AU','2486','NSW','Piggabeen'
3330
+ 'AU','2486','NSW','Terranora'
3331
+ 'AU','2486','NSW','Tweed Heads South'
3332
+ 'AU','2486','NSW','Upper Duroby'
3333
+ 'AU','2487','NSW','Casuarina'
3334
+ 'AU','2487','NSW','Chinderah'
3335
+ 'AU','2487','NSW','Cudgen'
3336
+ 'AU','2487','NSW','Duranbah'
3337
+ 'AU','2487','NSW','Fingal Head'
3338
+ 'AU','2487','NSW','Kings Forest'
3339
+ 'AU','2487','NSW','Kingscliff'
3340
+ 'AU','2487','NSW','Stotts Creek'
3341
+ 'AU','2488','NSW','Bogangar'
3342
+ 'AU','2488','NSW','Cabarita Beach'
3343
+ 'AU','2488','NSW','Tanglewood'
3344
+ 'AU','2489','NSW','Hastings Point'
3345
+ 'AU','2489','NSW','Pottsville'
3346
+ 'AU','2490','NSW','North Tumbulgum'
3347
+ 'AU','2490','NSW','Tumbulgum'
3348
+ 'AU','2500','NSW','Coniston'
3349
+ 'AU','2500','NSW','Gwynneville'
3350
+ 'AU','2500','NSW','Keiraville'
3351
+ 'AU','2500','NSW','Mangerton'
3352
+ 'AU','2500','NSW','Mount Keira'
3353
+ 'AU','2500','NSW','Mount Saint Thomas'
3354
+ 'AU','2500','NSW','North Wollongong'
3355
+ 'AU','2500','NSW','Spring Hill'
3356
+ 'AU','2500','NSW','West Wollongong'
3357
+ 'AU','2500','NSW','Wollongong'
3358
+ 'AU','2500','NSW','Wollongong Dc'
3359
+ 'AU','2500','NSW','Wollongong West'
3360
+ 'AU','2502','NSW','Cringila'
3361
+ 'AU','2502','NSW','Lake Heights'
3362
+ 'AU','2502','NSW','Primbee'
3363
+ 'AU','2502','NSW','Warrawong'
3364
+ 'AU','2505','NSW','Kemblawarra'
3365
+ 'AU','2505','NSW','Port Kembla'
3366
+ 'AU','2506','NSW','Berkeley'
3367
+ 'AU','2508','NSW','Coalcliff'
3368
+ 'AU','2508','NSW','Darkes Forest'
3369
+ 'AU','2508','NSW','Helensburgh'
3370
+ 'AU','2508','NSW','Lilyvale'
3371
+ 'AU','2508','NSW','Maddens Plains'
3372
+ 'AU','2508','NSW','Otford'
3373
+ 'AU','2508','NSW','Stanwell Park'
3374
+ 'AU','2508','NSW','Stanwell Tops'
3375
+ 'AU','2508','NSW','Woronora Dam'
3376
+ 'AU','2515','NSW','Austinmer'
3377
+ 'AU','2515','NSW','Clifton'
3378
+ 'AU','2515','NSW','Coledale'
3379
+ 'AU','2515','NSW','Scarborough'
3380
+ 'AU','2515','NSW','Thirroul'
3381
+ 'AU','2515','NSW','Wombarra'
3382
+ 'AU','2516','NSW','Bulli'
3383
+ 'AU','2517','NSW','Russell Vale'
3384
+ 'AU','2517','NSW','Woonona'
3385
+ 'AU','2517','NSW','Woonona East'
3386
+ 'AU','2518','NSW','Bellambi'
3387
+ 'AU','2518','NSW','Corrimal'
3388
+ 'AU','2518','NSW','Corrimal East'
3389
+ 'AU','2518','NSW','East Corrimal'
3390
+ 'AU','2518','NSW','Tarrawanna'
3391
+ 'AU','2518','NSW','Towradgi'
3392
+ 'AU','2519','NSW','Balgownie'
3393
+ 'AU','2519','NSW','Fairy Meadow'
3394
+ 'AU','2519','NSW','Fernhill'
3395
+ 'AU','2519','NSW','Mount Ousley'
3396
+ 'AU','2519','NSW','Mount Pleasant'
3397
+ 'AU','2519','NSW','Reidtown'
3398
+ 'AU','2520','NSW','Wollongong'
3399
+ 'AU','2522','NSW','University Of Wollongong'
3400
+ 'AU','2525','NSW','Figtree'
3401
+ 'AU','2526','NSW','Cordeaux'
3402
+ 'AU','2526','NSW','Cordeaux Heights'
3403
+ 'AU','2526','NSW','Dombarton'
3404
+ 'AU','2526','NSW','Farmborough Heights'
3405
+ 'AU','2526','NSW','Kembla Grange'
3406
+ 'AU','2526','NSW','Kembla Heights'
3407
+ 'AU','2526','NSW','Mount Kembla'
3408
+ 'AU','2526','NSW','Unanderra'
3409
+ 'AU','2526','NSW','Unanderra Dc'
3410
+ 'AU','2527','NSW','Albion Park'
3411
+ 'AU','2527','NSW','Albion Park Rail'
3412
+ 'AU','2527','NSW','Calderwood'
3413
+ 'AU','2527','NSW','Croom'
3414
+ 'AU','2527','NSW','North Macquarie'
3415
+ 'AU','2527','NSW','Tongarra'
3416
+ 'AU','2527','NSW','Tullimbar'
3417
+ 'AU','2527','NSW','Yellow Rock'
3418
+ 'AU','2528','NSW','Barrack Heights'
3419
+ 'AU','2528','NSW','Barrack Point'
3420
+ 'AU','2528','NSW','Lake Illawarra'
3421
+ 'AU','2528','NSW','Mount Warrigal'
3422
+ 'AU','2528','NSW','Warilla'
3423
+ 'AU','2528','NSW','Windang'
3424
+ 'AU','2529','NSW','Blackbutt'
3425
+ 'AU','2529','NSW','Dunmore'
3426
+ 'AU','2529','NSW','Flinders'
3427
+ 'AU','2529','NSW','Oak Flats'
3428
+ 'AU','2529','NSW','Oak Flats Dc'
3429
+ 'AU','2529','NSW','Shell Cove'
3430
+ 'AU','2529','NSW','Shellharbour'
3431
+ 'AU','2529','NSW','Shellharbour City Centre'
3432
+ 'AU','2530','NSW','Avondale'
3433
+ 'AU','2530','NSW','Brownsville'
3434
+ 'AU','2530','NSW','Cleveland'
3435
+ 'AU','2530','NSW','Dapto'
3436
+ 'AU','2530','NSW','Haywards Bay'
3437
+ 'AU','2530','NSW','Horsley'
3438
+ 'AU','2530','NSW','Huntley'
3439
+ 'AU','2530','NSW','Kanahooka'
3440
+ 'AU','2530','NSW','Koonawarra'
3441
+ 'AU','2530','NSW','Marshall Mount'
3442
+ 'AU','2530','NSW','Penrose'
3443
+ 'AU','2530','NSW','Wongawilli'
3444
+ 'AU','2530','NSW','Yallah'
3445
+ 'AU','2533','NSW','Bombo'
3446
+ 'AU','2533','NSW','Curramore'
3447
+ 'AU','2533','NSW','Jamberoo'
3448
+ 'AU','2533','NSW','Jerrara'
3449
+ 'AU','2533','NSW','Kiama'
3450
+ 'AU','2533','NSW','Kiama Downs'
3451
+ 'AU','2533','NSW','Kiama Heights'
3452
+ 'AU','2533','NSW','Minnamurra'
3453
+ 'AU','2533','NSW','Saddleback Mountain'
3454
+ 'AU','2534','NSW','Foxground'
3455
+ 'AU','2534','NSW','Gerringong'
3456
+ 'AU','2534','NSW','Gerroa'
3457
+ 'AU','2534','NSW','Rose Valley'
3458
+ 'AU','2534','NSW','Toolijooa'
3459
+ 'AU','2534','NSW','Werri Beach'
3460
+ 'AU','2534','NSW','Willow Vale'
3461
+ 'AU','2535','NSW','Back Forest'
3462
+ 'AU','2535','NSW','Bellawongarah'
3463
+ 'AU','2535','NSW','Berry'
3464
+ 'AU','2535','NSW','Berry Mountain'
3465
+ 'AU','2535','NSW','Brogers Creek'
3466
+ 'AU','2535','NSW','Broughton'
3467
+ 'AU','2535','NSW','Broughton Vale'
3468
+ 'AU','2535','NSW','Broughton Village'
3469
+ 'AU','2535','NSW','Budderoo'
3470
+ 'AU','2535','NSW','Bundewallah'
3471
+ 'AU','2535','NSW','Coolangatta'
3472
+ 'AU','2535','NSW','Far Meadow'
3473
+ 'AU','2535','NSW','Jaspers Brush'
3474
+ 'AU','2535','NSW','Shoalhaven Heads'
3475
+ 'AU','2535','NSW','Wattamolla'
3476
+ 'AU','2535','NSW','Woodhill'
3477
+ 'AU','2536','NSW','Batehaven'
3478
+ 'AU','2536','NSW','Batemans Bay'
3479
+ 'AU','2536','NSW','Benandarah'
3480
+ 'AU','2536','NSW','Bimbimbie'
3481
+ 'AU','2536','NSW','Buckenbowra'
3482
+ 'AU','2536','NSW','Catalina'
3483
+ 'AU','2536','NSW','Currowan'
3484
+ 'AU','2536','NSW','Denhams Beach'
3485
+ 'AU','2536','NSW','Depot Beach'
3486
+ 'AU','2536','NSW','Durras North'
3487
+ 'AU','2536','NSW','East Lynne'
3488
+ 'AU','2536','NSW','Guerilla Bay'
3489
+ 'AU','2536','NSW','Jeremadra'
3490
+ 'AU','2536','NSW','Lilli Pilli'
3491
+ 'AU','2536','NSW','Long Beach'
3492
+ 'AU','2536','NSW','Maloneys Beach'
3493
+ 'AU','2536','NSW','Malua Bay'
3494
+ 'AU','2536','NSW','Mogo'
3495
+ 'AU','2536','NSW','Nelligen'
3496
+ 'AU','2536','NSW','North Batemans Bay'
3497
+ 'AU','2536','NSW','Pebbly Beach'
3498
+ 'AU','2536','NSW','Rosedale'
3499
+ 'AU','2536','NSW','Runnyford'
3500
+ 'AU','2536','NSW','South Durras'
3501
+ 'AU','2536','NSW','Sunshine Bay'
3502
+ 'AU','2536','NSW','Surf Beach'
3503
+ 'AU','2536','NSW','Surfside'
3504
+ 'AU','2536','NSW','Woodlands'
3505
+ 'AU','2537','NSW','Bergalia'
3506
+ 'AU','2537','NSW','Bingie'
3507
+ 'AU','2537','NSW','Broulee'
3508
+ 'AU','2537','NSW','Coila'
3509
+ 'AU','2537','NSW','Congo'
3510
+ 'AU','2537','NSW','Deua'
3511
+ 'AU','2537','NSW','Deua River Valley'
3512
+ 'AU','2537','NSW','Kiora'
3513
+ 'AU','2537','NSW','Meringo'
3514
+ 'AU','2537','NSW','Mogendoura'
3515
+ 'AU','2537','NSW','Moruya'
3516
+ 'AU','2537','NSW','Moruya Heads'
3517
+ 'AU','2537','NSW','Mossy Point'
3518
+ 'AU','2537','NSW','Tomakin'
3519
+ 'AU','2537','NSW','Turlinjah'
3520
+ 'AU','2537','NSW','Tuross Head'
3521
+ 'AU','2537','NSW','Wamban'
3522
+ 'AU','2538','NSW','Brooman'
3523
+ 'AU','2538','NSW','Little Forest'
3524
+ 'AU','2538','NSW','Milton'
3525
+ 'AU','2538','NSW','Mogood'
3526
+ 'AU','2538','NSW','Morton'
3527
+ 'AU','2538','NSW','Porters Creek'
3528
+ 'AU','2538','NSW','Woodburn'
3529
+ 'AU','2538','NSW','Woodstock'
3530
+ 'AU','2539','NSW','Bawley Point'
3531
+ 'AU','2539','NSW','Bendalong'
3532
+ 'AU','2539','NSW','Berringer Lake'
3533
+ 'AU','2539','NSW','Burrill Lake'
3534
+ 'AU','2539','NSW','Cockwhy'
3535
+ 'AU','2539','NSW','Conjola'
3536
+ 'AU','2539','NSW','Conjola Park'
3537
+ 'AU','2539','NSW','Croobyar'
3538
+ 'AU','2539','NSW','Cunjurong Point'
3539
+ 'AU','2539','NSW','Dolphin Point'
3540
+ 'AU','2539','NSW','Fishermans Paradise'
3541
+ 'AU','2539','NSW','Kings Point'
3542
+ 'AU','2539','NSW','Kioloa'
3543
+ 'AU','2539','NSW','Lake Conjola'
3544
+ 'AU','2539','NSW','Lake Tabourie'
3545
+ 'AU','2539','NSW','Manyana'
3546
+ 'AU','2539','NSW','Mollymook'
3547
+ 'AU','2539','NSW','Mollymook Beach'
3548
+ 'AU','2539','NSW','Mount Kingiman'
3549
+ 'AU','2539','NSW','Narrawallee'
3550
+ 'AU','2539','NSW','Pointer Mountain'
3551
+ 'AU','2539','NSW','Pretty Beach'
3552
+ 'AU','2539','NSW','Termeil'
3553
+ 'AU','2539','NSW','Ulladulla'
3554
+ 'AU','2539','NSW','Yadboro'
3555
+ 'AU','2539','NSW','Yatte Yattah'
3556
+ 'AU','2540','NSW','Bamarang'
3557
+ 'AU','2540','NSW','Barringella'
3558
+ 'AU','2540','NSW','Basin View'
3559
+ 'AU','2540','NSW','Beecroft Peninsula'
3560
+ 'AU','2540','NSW','Berrara'
3561
+ 'AU','2540','NSW','Bewong'
3562
+ 'AU','2540','NSW','Bolong'
3563
+ 'AU','2540','NSW','Boolijah'
3564
+ 'AU','2540','NSW','Bream Beach'
3565
+ 'AU','2540','NSW','Browns Mountain'
3566
+ 'AU','2540','NSW','Brundee'
3567
+ 'AU','2540','NSW','Buangla'
3568
+ 'AU','2540','NSW','Burrier'
3569
+ 'AU','2540','NSW','Callala Bay'
3570
+ 'AU','2540','NSW','Callala Beach'
3571
+ 'AU','2540','NSW','Cambewarra'
3572
+ 'AU','2540','NSW','Cambewarra Village'
3573
+ 'AU','2540','NSW','Comberton'
3574
+ 'AU','2540','NSW','Comerong Island'
3575
+ 'AU','2540','NSW','Cudmirrah'
3576
+ 'AU','2540','NSW','Culburra Beach'
3577
+ 'AU','2540','NSW','Currarong'
3578
+ 'AU','2540','NSW','Erowal Bay'
3579
+ 'AU','2540','NSW','Ettrema'
3580
+ 'AU','2540','NSW','Falls Creek'
3581
+ 'AU','2540','NSW','Greenwell Point'
3582
+ 'AU','2540','NSW','Hmas Albatross'
3583
+ 'AU','2540','ACT','Hmas Creswell'
3584
+ 'AU','2540','NSW','Huskisson'
3585
+ 'AU','2540','NSW','Hyams Beach'
3586
+ 'AU','2540','NSW','Illaroo'
3587
+ 'AU','2540','NSW','Jerrawangala'
3588
+ 'AU','2540','ACT','Jervis Bay'
3589
+ 'AU','2540','NSW','Kinghorne'
3590
+ 'AU','2540','NSW','Longreach'
3591
+ 'AU','2540','NSW','Mayfield'
3592
+ 'AU','2540','NSW','Meroo Meadow'
3593
+ 'AU','2540','NSW','Mondayong'
3594
+ 'AU','2540','NSW','Moollattoo'
3595
+ 'AU','2540','NSW','Mundamia'
3596
+ 'AU','2540','NSW','Myola'
3597
+ 'AU','2540','NSW','Nowra Hill'
3598
+ 'AU','2540','NSW','Nowra Naval Po'
3599
+ 'AU','2540','NSW','Numbaa'
3600
+ 'AU','2540','NSW','Old Erowal Bay'
3601
+ 'AU','2540','NSW','Orient Point'
3602
+ 'AU','2540','NSW','Parma'
3603
+ 'AU','2540','NSW','Pyree'
3604
+ 'AU','2540','NSW','Sanctuary Point'
3605
+ 'AU','2540','NSW','St Georges Basin'
3606
+ 'AU','2540','NSW','Sussex Inlet'
3607
+ 'AU','2540','NSW','Swanhaven'
3608
+ 'AU','2540','NSW','Tallowal'
3609
+ 'AU','2540','NSW','Tapitallee'
3610
+ 'AU','2540','NSW','Terara'
3611
+ 'AU','2540','NSW','Tomerong'
3612
+ 'AU','2540','NSW','Tullarwalla'
3613
+ 'AU','2540','NSW','Twelve Mile Peg'
3614
+ 'AU','2540','NSW','Vincentia'
3615
+ 'AU','2540','NSW','Wandandian'
3616
+ 'AU','2540','NSW','Watersleigh'
3617
+ 'AU','2540','NSW','Wollumboola'
3618
+ 'AU','2540','NSW','Woollamia'
3619
+ 'AU','2540','NSW','Worrigee'
3620
+ 'AU','2540','NSW','Worrowing Heights'
3621
+ 'AU','2540','NSW','Wrights Beach'
3622
+ 'AU','2540','NSW','Yalwal'
3623
+ 'AU','2540','NSW','Yerriyong'
3624
+ 'AU','2541','NSW','Bangalee'
3625
+ 'AU','2541','NSW','Bomaderry'
3626
+ 'AU','2541','NSW','North Nowra'
3627
+ 'AU','2541','NSW','Nowra'
3628
+ 'AU','2541','NSW','Nowra Dc'
3629
+ 'AU','2541','NSW','Nowra East'
3630
+ 'AU','2541','NSW','Nowra North'
3631
+ 'AU','2541','NSW','South Nowra'
3632
+ 'AU','2541','NSW','West Nowra'
3633
+ 'AU','2545','NSW','Belowra'
3634
+ 'AU','2545','NSW','Bodalla'
3635
+ 'AU','2545','NSW','Cadgee'
3636
+ 'AU','2545','NSW','Eurobodalla'
3637
+ 'AU','2545','NSW','Nerrigundah'
3638
+ 'AU','2545','NSW','Potato Point'
3639
+ 'AU','2546','NSW','Akolele'
3640
+ 'AU','2546','NSW','Barragga Bay'
3641
+ 'AU','2546','NSW','Bermagui'
3642
+ 'AU','2546','NSW','Central Tilba'
3643
+ 'AU','2546','NSW','Corunna'
3644
+ 'AU','2546','NSW','Cuttagee'
3645
+ 'AU','2546','NSW','Dalmeny'
3646
+ 'AU','2546','NSW','Dignams Creek'
3647
+ 'AU','2546','NSW','Kianga'
3648
+ 'AU','2546','NSW','Mystery Bay'
3649
+ 'AU','2546','NSW','Narooma'
3650
+ 'AU','2546','NSW','North Narooma'
3651
+ 'AU','2546','NSW','Tilba Tilba'
3652
+ 'AU','2546','NSW','Tinpot'
3653
+ 'AU','2546','NSW','Wadbilliga'
3654
+ 'AU','2546','NSW','Wallaga Lake'
3655
+ 'AU','2548','NSW','Berrambool'
3656
+ 'AU','2548','NSW','Merimbula'
3657
+ 'AU','2548','NSW','Mirador'
3658
+ 'AU','2548','NSW','Tura Beach'
3659
+ 'AU','2548','NSW','Yellow Pinch'
3660
+ 'AU','2549','NSW','Bald Hills'
3661
+ 'AU','2549','NSW','Broadwater'
3662
+ 'AU','2549','NSW','Greigs Flat'
3663
+ 'AU','2549','NSW','Lochiel'
3664
+ 'AU','2549','NSW','Millingandi'
3665
+ 'AU','2549','NSW','Nethercote'
3666
+ 'AU','2549','NSW','Pambula'
3667
+ 'AU','2549','NSW','Pambula Beach'
3668
+ 'AU','2549','NSW','South Pambula'
3669
+ 'AU','2550','NSW','Angledale'
3670
+ 'AU','2550','NSW','Bega'
3671
+ 'AU','2550','NSW','Bemboka'
3672
+ 'AU','2550','NSW','Black Range'
3673
+ 'AU','2550','NSW','Bournda'
3674
+ 'AU','2550','NSW','Brogo'
3675
+ 'AU','2550','NSW','Buckajo'
3676
+ 'AU','2550','NSW','Bunga'
3677
+ 'AU','2550','NSW','Burragate'
3678
+ 'AU','2550','NSW','Candelo'
3679
+ 'AU','2550','NSW','Chinnock'
3680
+ 'AU','2550','NSW','Cobargo'
3681
+ 'AU','2550','NSW','Coolagolite'
3682
+ 'AU','2550','NSW','Coolangubra'
3683
+ 'AU','2550','NSW','Coopers Gully'
3684
+ 'AU','2550','NSW','Devils Hole'
3685
+ 'AU','2550','NSW','Doctor George Mountain'
3686
+ 'AU','2550','NSW','Frogs Hollow'
3687
+ 'AU','2550','NSW','Greendale'
3688
+ 'AU','2550','NSW','Jellat Jellat'
3689
+ 'AU','2550','NSW','Kalaru'
3690
+ 'AU','2550','NSW','Kameruka'
3691
+ 'AU','2550','NSW','Kanoona'
3692
+ 'AU','2550','NSW','Kingswood'
3693
+ 'AU','2550','NSW','Mogareeka'
3694
+ 'AU','2550','NSW','Mogilla'
3695
+ 'AU','2550','NSW','Morans Crossing'
3696
+ 'AU','2550','NSW','Mumbulla Mountain'
3697
+ 'AU','2550','NSW','Murrah'
3698
+ 'AU','2550','NSW','Myrtle Mountain'
3699
+ 'AU','2550','NSW','Nelson'
3700
+ 'AU','2550','NSW','New Buildings'
3701
+ 'AU','2550','NSW','Numbugga'
3702
+ 'AU','2550','NSW','Pericoe'
3703
+ 'AU','2550','NSW','Quaama'
3704
+ 'AU','2550','NSW','Reedy Swamp'
3705
+ 'AU','2550','NSW','Rocky Hall'
3706
+ 'AU','2550','NSW','South Wolumla'
3707
+ 'AU','2550','NSW','Stony Creek'
3708
+ 'AU','2550','NSW','Tanja'
3709
+ 'AU','2550','NSW','Tantawangalo'
3710
+ 'AU','2550','NSW','Tarraganda'
3711
+ 'AU','2550','NSW','Tathra'
3712
+ 'AU','2550','NSW','Toothdale'
3713
+ 'AU','2550','NSW','Towamba'
3714
+ 'AU','2550','NSW','Verona'
3715
+ 'AU','2550','NSW','Wallagoot'
3716
+ 'AU','2550','NSW','Wandella'
3717
+ 'AU','2550','NSW','Wapengo'
3718
+ 'AU','2550','NSW','Wog Wog'
3719
+ 'AU','2550','NSW','Wolumla'
3720
+ 'AU','2550','NSW','Wyndham'
3721
+ 'AU','2550','NSW','Yambulla'
3722
+ 'AU','2550','NSW','Yankees Creek'
3723
+ 'AU','2550','NSW','Yowrie'
3724
+ 'AU','2551','NSW','Boydtown'
3725
+ 'AU','2551','NSW','Eden'
3726
+ 'AU','2551','NSW','Edrom'
3727
+ 'AU','2551','NSW','Green Cape'
3728
+ 'AU','2551','NSW','Kiah'
3729
+ 'AU','2551','NSW','Nadgee'
3730
+ 'AU','2551','NSW','Narrabarba'
3731
+ 'AU','2551','NSW','Nullica'
3732
+ 'AU','2551','NSW','Nungatta'
3733
+ 'AU','2551','NSW','Nungatta South'
3734
+ 'AU','2551','NSW','Timbillica'
3735
+ 'AU','2551','NSW','Wonboyn'
3736
+ 'AU','2551','NSW','Wonboyn Lake'
3737
+ 'AU','2551','NSW','Wonboyn North'
3738
+ 'AU','2555','NSW','Badgerys Creek'
3739
+ 'AU','2556','NSW','Bringelly'
3740
+ 'AU','2557','NSW','Catherine Field'
3741
+ 'AU','2557','NSW','Rossmore'
3742
+ 'AU','2558','NSW','Eagle Vale'
3743
+ 'AU','2558','NSW','Eschol Park'
3744
+ 'AU','2558','NSW','Kearns'
3745
+ 'AU','2559','NSW','Blairmount'
3746
+ 'AU','2559','NSW','Claymore'
3747
+ 'AU','2560','NSW','Airds'
3748
+ 'AU','2560','NSW','Ambarvale'
3749
+ 'AU','2560','NSW','Appin'
3750
+ 'AU','2560','NSW','Blair Athol'
3751
+ 'AU','2560','NSW','Bradbury'
3752
+ 'AU','2560','NSW','Campbelltown'
3753
+ 'AU','2560','NSW','Campbelltown North'
3754
+ 'AU','2560','NSW','Cataract'
3755
+ 'AU','2560','NSW','Englorie Park'
3756
+ 'AU','2560','NSW','Gilead'
3757
+ 'AU','2560','NSW','Glen Alpine'
3758
+ 'AU','2560','NSW','Kentlyn'
3759
+ 'AU','2560','NSW','Leumeah'
3760
+ 'AU','2560','NSW','Macarthur Square'
3761
+ 'AU','2560','NSW','Rosemeadow'
3762
+ 'AU','2560','NSW','Ruse'
3763
+ 'AU','2560','NSW','St Helens Park'
3764
+ 'AU','2560','NSW','Wedderburn'
3765
+ 'AU','2560','NSW','Woodbine'
3766
+ 'AU','2563','NSW','Menangle Park'
3767
+ 'AU','2564','NSW','Glenquarie'
3768
+ 'AU','2564','NSW','Long Point'
3769
+ 'AU','2564','NSW','Macquarie Fields'
3770
+ 'AU','2565','NSW','Denham Court'
3771
+ 'AU','2565','NSW','Ingleburn'
3772
+ 'AU','2565','NSW','Macquarie Links'
3773
+ 'AU','2566','NSW','Bow Bowing'
3774
+ 'AU','2566','NSW','Minto'
3775
+ 'AU','2566','NSW','Minto Dc'
3776
+ 'AU','2566','NSW','Minto Heights'
3777
+ 'AU','2566','NSW','Raby'
3778
+ 'AU','2566','NSW','St Andrews'
3779
+ 'AU','2566','NSW','Varroville'
3780
+ 'AU','2567','NSW','Currans Hill'
3781
+ 'AU','2567','NSW','Harrington Park'
3782
+ 'AU','2567','NSW','Mount Annan'
3783
+ 'AU','2567','NSW','Narellan'
3784
+ 'AU','2567','NSW','Narellan Dc'
3785
+ 'AU','2567','NSW','Narellan Vale'
3786
+ 'AU','2567','NSW','Smeaton Grange'
3787
+ 'AU','2568','NSW','Menangle'
3788
+ 'AU','2569','NSW','Douglas Park'
3789
+ 'AU','2570','NSW','Belimbla Park'
3790
+ 'AU','2570','NSW','Bickley Vale'
3791
+ 'AU','2570','NSW','Brownlow Hill'
3792
+ 'AU','2570','NSW','Camden'
3793
+ 'AU','2570','NSW','Camden Park'
3794
+ 'AU','2570','NSW','Camden South'
3795
+ 'AU','2570','NSW','Cawdor'
3796
+ 'AU','2570','NSW','Cobbitty'
3797
+ 'AU','2570','NSW','Elderslie'
3798
+ 'AU','2570','NSW','Ellis Lane'
3799
+ 'AU','2570','NSW','Glenmore'
3800
+ 'AU','2570','NSW','Grasmere'
3801
+ 'AU','2570','NSW','Kirkham'
3802
+ 'AU','2570','NSW','Mount Hunter'
3803
+ 'AU','2570','NSW','Nattai'
3804
+ 'AU','2570','NSW','Oakdale'
3805
+ 'AU','2570','NSW','Oran Park'
3806
+ 'AU','2570','NSW','Orangeville'
3807
+ 'AU','2570','NSW','Spring Farm'
3808
+ 'AU','2570','NSW','The Oaks'
3809
+ 'AU','2570','NSW','Theresa Park'
3810
+ 'AU','2570','NSW','Werombi'
3811
+ 'AU','2571','NSW','Balmoral'
3812
+ 'AU','2571','NSW','Buxton'
3813
+ 'AU','2571','NSW','Couridjah'
3814
+ 'AU','2571','NSW','Maldon'
3815
+ 'AU','2571','NSW','Mowbray Park'
3816
+ 'AU','2571','NSW','Picton'
3817
+ 'AU','2571','NSW','Razorback'
3818
+ 'AU','2571','NSW','Wilton'
3819
+ 'AU','2572','NSW','Lakesland'
3820
+ 'AU','2572','NSW','Thirlmere'
3821
+ 'AU','2573','NSW','Tahmoor'
3822
+ 'AU','2574','NSW','Avon'
3823
+ 'AU','2574','NSW','Bargo'
3824
+ 'AU','2574','NSW','Pheasants Nest'
3825
+ 'AU','2574','NSW','Yanderra'
3826
+ 'AU','2575','NSW','Alpine'
3827
+ 'AU','2575','NSW','Aylmerton'
3828
+ 'AU','2575','NSW','Braemar'
3829
+ 'AU','2575','NSW','Bullio'
3830
+ 'AU','2575','NSW','Colo Vale'
3831
+ 'AU','2575','NSW','High Range'
3832
+ 'AU','2575','NSW','Hill Top'
3833
+ 'AU','2575','NSW','Joadja'
3834
+ 'AU','2575','NSW','Mandemar'
3835
+ 'AU','2575','NSW','Mittagong'
3836
+ 'AU','2575','NSW','Mount Lindsey'
3837
+ 'AU','2575','NSW','Wattle Ridge'
3838
+ 'AU','2575','NSW','Welby'
3839
+ 'AU','2575','NSW','Willow Vale'
3840
+ 'AU','2575','NSW','Woodlands'
3841
+ 'AU','2575','NSW','Yerrinbool'
3842
+ 'AU','2576','NSW','Bong Bong'
3843
+ 'AU','2576','NSW','Bowral'
3844
+ 'AU','2576','NSW','Burradoo'
3845
+ 'AU','2576','NSW','East Bowral'
3846
+ 'AU','2576','NSW','East Kangaloon'
3847
+ 'AU','2576','NSW','Glenquarry'
3848
+ 'AU','2576','NSW','Kangaloon'
3849
+ 'AU','2577','NSW','Avoca'
3850
+ 'AU','2577','NSW','Bangadilly'
3851
+ 'AU','2577','NSW','Barren Grounds'
3852
+ 'AU','2577','NSW','Barrengarry'
3853
+ 'AU','2577','NSW','Beaumont'
3854
+ 'AU','2577','NSW','Belanglo'
3855
+ 'AU','2577','NSW','Berrima'
3856
+ 'AU','2577','NSW','Budgong'
3857
+ 'AU','2577','NSW','Burrawang'
3858
+ 'AU','2577','NSW','Calwalla'
3859
+ 'AU','2577','NSW','Canyonleigh'
3860
+ 'AU','2577','NSW','Carrington Falls'
3861
+ 'AU','2577','NSW','Fitzroy Falls'
3862
+ 'AU','2577','NSW','Hanging Rock'
3863
+ 'AU','2577','NSW','Kangaroo Valley'
3864
+ 'AU','2577','NSW','Knights Hill'
3865
+ 'AU','2577','NSW','Macquarie Pass'
3866
+ 'AU','2577','NSW','Manchester Square'
3867
+ 'AU','2577','NSW','Medway'
3868
+ 'AU','2577','NSW','Meryla'
3869
+ 'AU','2577','NSW','Moss Vale'
3870
+ 'AU','2577','NSW','Mount Murray'
3871
+ 'AU','2577','NSW','Myra Vale'
3872
+ 'AU','2577','NSW','New Berrima'
3873
+ 'AU','2577','NSW','Paddys River'
3874
+ 'AU','2577','NSW','Pheasant Ground'
3875
+ 'AU','2577','NSW','Red Rocks'
3876
+ 'AU','2577','NSW','Robertson'
3877
+ 'AU','2577','NSW','Sutton Forest'
3878
+ 'AU','2577','NSW','Upper Kangaroo River'
3879
+ 'AU','2577','NSW','Upper Kangaroo Valley'
3880
+ 'AU','2577','NSW','Werai'
3881
+ 'AU','2577','NSW','Wildes Meadow'
3882
+ 'AU','2577','NSW','Yarrunga'
3883
+ 'AU','2578','NSW','Bundanoon'
3884
+ 'AU','2579','NSW','Big Hill'
3885
+ 'AU','2579','NSW','Brayton'
3886
+ 'AU','2579','NSW','Exeter'
3887
+ 'AU','2579','NSW','Marulan'
3888
+ 'AU','2579','NSW','Marulan South'
3889
+ 'AU','2579','NSW','Penrose'
3890
+ 'AU','2579','NSW','Tallong'
3891
+ 'AU','2579','NSW','Wingello'
3892
+ 'AU','2580','NSW','Bannaby'
3893
+ 'AU','2580','NSW','Bannister'
3894
+ 'AU','2580','NSW','Baw Baw'
3895
+ 'AU','2580','NSW','Boxers Creek'
3896
+ 'AU','2580','NSW','Brisbane Grove'
3897
+ 'AU','2580','NSW','Bungonia'
3898
+ 'AU','2580','NSW','Carrick'
3899
+ 'AU','2580','NSW','Chatsbury'
3900
+ 'AU','2580','NSW','Currawang'
3901
+ 'AU','2580','NSW','Golspie'
3902
+ 'AU','2580','NSW','Goulburn'
3903
+ 'AU','2580','NSW','Goulburn Dc'
3904
+ 'AU','2580','NSW','Goulburn North'
3905
+ 'AU','2580','NSW','Greenwich Park'
3906
+ 'AU','2580','NSW','Gundary'
3907
+ 'AU','2580','NSW','Jerrong'
3908
+ 'AU','2580','NSW','Kingsdale'
3909
+ 'AU','2580','NSW','Lake Bathurst'
3910
+ 'AU','2580','NSW','Leighwood'
3911
+ 'AU','2580','NSW','Lower Boro'
3912
+ 'AU','2580','NSW','Mayfield'
3913
+ 'AU','2580','NSW','Mcalister'
3914
+ 'AU','2580','NSW','Middle Arm'
3915
+ 'AU','2580','NSW','Mount Fairy'
3916
+ 'AU','2580','NSW','Mount Rae'
3917
+ 'AU','2580','NSW','Mummel'
3918
+ 'AU','2580','NSW','Myrtleville'
3919
+ 'AU','2580','NSW','Parkesbourne'
3920
+ 'AU','2580','NSW','Pomeroy'
3921
+ 'AU','2580','NSW','Quialigo'
3922
+ 'AU','2580','NSW','Richlands'
3923
+ 'AU','2580','NSW','Roslyn'
3924
+ 'AU','2580','NSW','Run\-O\-Waters'
3925
+ 'AU','2580','NSW','Tarago'
3926
+ 'AU','2580','NSW','Taralga'
3927
+ 'AU','2580','NSW','Tarlo'
3928
+ 'AU','2580','NSW','Tirrannaville'
3929
+ 'AU','2580','NSW','Towrang'
3930
+ 'AU','2580','NSW','Wayo'
3931
+ 'AU','2580','NSW','Wiarborough'
3932
+ 'AU','2580','NSW','Windellama'
3933
+ 'AU','2580','NSW','Wombeyan Caves'
3934
+ 'AU','2580','NSW','Woodhouselee'
3935
+ 'AU','2580','NSW','Wowagin'
3936
+ 'AU','2580','NSW','Yalbraith'
3937
+ 'AU','2580','NSW','Yarra'
3938
+ 'AU','2581','NSW','Bellmount Forest'
3939
+ 'AU','2581','NSW','Bevendale'
3940
+ 'AU','2581','NSW','Biala'
3941
+ 'AU','2581','NSW','Blakney Creek'
3942
+ 'AU','2581','NSW','Breadalbane'
3943
+ 'AU','2581','NSW','Broadway'
3944
+ 'AU','2581','NSW','Collector'
3945
+ 'AU','2581','NSW','Cullerin'
3946
+ 'AU','2581','NSW','Dalton'
3947
+ 'AU','2581','NSW','Gunning'
3948
+ 'AU','2581','NSW','Gurrundah'
3949
+ 'AU','2581','NSW','Lade Vale'
3950
+ 'AU','2581','NSW','Lake George'
3951
+ 'AU','2581','NSW','Lerida'
3952
+ 'AU','2581','NSW','Merrill'
3953
+ 'AU','2581','NSW','Oolong'
3954
+ 'AU','2581','NSW','Wollogorang'
3955
+ 'AU','2582','NSW','Bango'
3956
+ 'AU','2582','NSW','Berremangra'
3957
+ 'AU','2582','NSW','Boambolo'
3958
+ 'AU','2582','NSW','Bookham'
3959
+ 'AU','2582','NSW','Bowning'
3960
+ 'AU','2582','NSW','Burrinjuck'
3961
+ 'AU','2582','NSW','Cavan'
3962
+ 'AU','2582','NSW','Good Hope'
3963
+ 'AU','2582','NSW','Jeir'
3964
+ 'AU','2582','NSW','Jerrawa'
3965
+ 'AU','2582','NSW','Kangiara'
3966
+ 'AU','2582','NSW','Laverstock'
3967
+ 'AU','2582','NSW','Manton'
3968
+ 'AU','2582','NSW','Marchmont'
3969
+ 'AU','2582','NSW','Mullion'
3970
+ 'AU','2582','NSW','Murrumbateman'
3971
+ 'AU','2582','NSW','Nanangroe'
3972
+ 'AU','2582','NSW','Narrangullen'
3973
+ 'AU','2582','NSW','Wee Jasper'
3974
+ 'AU','2582','NSW','Woolgarlo'
3975
+ 'AU','2582','NSW','Yass'
3976
+ 'AU','2582','NSW','Yass River'
3977
+ 'AU','2583','NSW','Bigga'
3978
+ 'AU','2583','NSW','Binda'
3979
+ 'AU','2583','NSW','Blanket Flat'
3980
+ 'AU','2583','NSW','Brooklands'
3981
+ 'AU','2583','NSW','Cottawalla'
3982
+ 'AU','2583','NSW','Crooked Corner'
3983
+ 'AU','2583','NSW','Crookwell'
3984
+ 'AU','2583','NSW','Fullerton'
3985
+ 'AU','2583','NSW','Glenerin'
3986
+ 'AU','2583','NSW','Grabben Gullen'
3987
+ 'AU','2583','NSW','Grabine'
3988
+ 'AU','2583','NSW','Greenmantle'
3989
+ 'AU','2583','NSW','Hadley'
3990
+ 'AU','2583','NSW','Junction Point'
3991
+ 'AU','2583','NSW','Kempton'
3992
+ 'AU','2583','NSW','Kialla'
3993
+ 'AU','2583','NSW','Laggan'
3994
+ 'AU','2583','NSW','Limerick'
3995
+ 'AU','2583','NSW','Lost River'
3996
+ 'AU','2583','NSW','Mulgowrie'
3997
+ 'AU','2583','NSW','Narrawa'
3998
+ 'AU','2583','NSW','Peelwood'
3999
+ 'AU','2583','NSW','Pejar'
4000
+ 'AU','2583','NSW','Rugby'
4001
+ 'AU','2583','NSW','Thalaba'
4002
+ 'AU','2583','NSW','Third Creek'
4003
+ 'AU','2583','NSW','Tuena'
4004
+ 'AU','2583','NSW','Wheeo'
4005
+ 'AU','2584','NSW','Binalong'
4006
+ 'AU','2585','NSW','Galong'
4007
+ 'AU','2586','NSW','Boorowa'
4008
+ 'AU','2586','NSW','Frogmore'
4009
+ 'AU','2586','NSW','Goba Creek'
4010
+ 'AU','2586','NSW','Godfreys Creek'
4011
+ 'AU','2586','NSW','Kenyu'
4012
+ 'AU','2586','NSW','Murringo'
4013
+ 'AU','2586','NSW','Reids Flat'
4014
+ 'AU','2586','NSW','Rye Park'
4015
+ 'AU','2586','NSW','Taylors Flat'
4016
+ 'AU','2587','NSW','Aurville'
4017
+ 'AU','2587','NSW','Cunningar'
4018
+ 'AU','2587','NSW','Demondrille'
4019
+ 'AU','2587','NSW','Garangula'
4020
+ 'AU','2587','NSW','Harden'
4021
+ 'AU','2587','NSW','Kingsvale'
4022
+ 'AU','2587','NSW','Mcmahons Reef'
4023
+ 'AU','2587','NSW','Murrumburrah'
4024
+ 'AU','2587','NSW','Nubba'
4025
+ 'AU','2587','NSW','Prunevale'
4026
+ 'AU','2587','NSW','Wombat'
4027
+ 'AU','2588','NSW','Wallendbeen'
4028
+ 'AU','2590','NSW','Bethungra'
4029
+ 'AU','2590','NSW','Cootamundra'
4030
+ 'AU','2590','NSW','Illabo'
4031
+ 'AU','2594','NSW','Berthong'
4032
+ 'AU','2594','NSW','Bribbaree'
4033
+ 'AU','2594','NSW','Bulla Creek'
4034
+ 'AU','2594','NSW','Burrangong'
4035
+ 'AU','2594','NSW','Kikiamah'
4036
+ 'AU','2594','NSW','Maimuru'
4037
+ 'AU','2594','NSW','Memagong'
4038
+ 'AU','2594','NSW','Milvale'
4039
+ 'AU','2594','NSW','Monteagle'
4040
+ 'AU','2594','NSW','Thuddungra'
4041
+ 'AU','2594','NSW','Tubbul'
4042
+ 'AU','2594','NSW','Weedallion'
4043
+ 'AU','2594','NSW','Young'
4044
+ 'AU','2600','ACT','Barton'
4045
+ 'AU','2600','ACT','Canberra'
4046
+ 'AU','2600','ACT','Capital Hill'
4047
+ 'AU','2600','ACT','Deakin'
4048
+ 'AU','2600','ACT','Deakin West'
4049
+ 'AU','2600','ACT','Duntroon'
4050
+ 'AU','2600','ACT','Harman'
4051
+ 'AU','2600','ACT','Hmas Harman'
4052
+ 'AU','2600','ACT','Parkes'
4053
+ 'AU','2600','ACT','Parliament House'
4054
+ 'AU','2600','ACT','Russell'
4055
+ 'AU','2600','ACT','Russell Hill'
4056
+ 'AU','2600','ACT','Yarralumla'
4057
+ 'AU','2601','ACT','Acton'
4058
+ 'AU','2601','ACT','Black Mountain'
4059
+ 'AU','2601','ACT','Canberra'
4060
+ 'AU','2601','ACT','City'
4061
+ 'AU','2602','ACT','Ainslie'
4062
+ 'AU','2602','ACT','Dickson'
4063
+ 'AU','2602','ACT','Downer'
4064
+ 'AU','2602','ACT','Hackett'
4065
+ 'AU','2602','ACT','Lyneham'
4066
+ 'AU','2602','ACT','O''Connor'
4067
+ 'AU','2602','ACT','Watson'
4068
+ 'AU','2603','ACT','Forrest'
4069
+ 'AU','2603','ACT','Griffith'
4070
+ 'AU','2603','ACT','Manuka'
4071
+ 'AU','2603','ACT','Red Hill'
4072
+ 'AU','2604','ACT','Causeway'
4073
+ 'AU','2604','ACT','Kingston'
4074
+ 'AU','2604','ACT','Narrabundah'
4075
+ 'AU','2605','ACT','Curtin'
4076
+ 'AU','2605','ACT','Garran'
4077
+ 'AU','2605','ACT','Hughes'
4078
+ 'AU','2606','ACT','Chifley'
4079
+ 'AU','2606','ACT','Lyons'
4080
+ 'AU','2606','ACT','O''Malley'
4081
+ 'AU','2606','ACT','Phillip'
4082
+ 'AU','2606','ACT','Phillip Dc'
4083
+ 'AU','2606','ACT','Swinger Hill'
4084
+ 'AU','2606','ACT','Woden'
4085
+ 'AU','2607','ACT','Farrer'
4086
+ 'AU','2607','ACT','Isaacs'
4087
+ 'AU','2607','ACT','Mawson'
4088
+ 'AU','2607','ACT','Pearce'
4089
+ 'AU','2607','ACT','Torrens'
4090
+ 'AU','2608','ACT','Civic Square'
4091
+ 'AU','2609','ACT','Canberra International Airport'
4092
+ 'AU','2609','ACT','Fyshwick'
4093
+ 'AU','2609','ACT','Majura'
4094
+ 'AU','2609','ACT','Pialligo'
4095
+ 'AU','2609','ACT','Symonston'
4096
+ 'AU','2610','ACT','Canberra Bc'
4097
+ 'AU','2610','ACT','Canberra Mc'
4098
+ 'AU','2611','NSW','Bimberi'
4099
+ 'AU','2611','NSW','Brindabella'
4100
+ 'AU','2611','ACT','Chapman'
4101
+ 'AU','2611','NSW','Cooleman'
4102
+ 'AU','2611','ACT','Duffy'
4103
+ 'AU','2611','ACT','Fisher'
4104
+ 'AU','2611','ACT','Holder'
4105
+ 'AU','2611','ACT','Mount Stromlo'
4106
+ 'AU','2611','ACT','Pierces Creek'
4107
+ 'AU','2611','ACT','Rivett'
4108
+ 'AU','2611','ACT','Stirling'
4109
+ 'AU','2611','NSW','Uriarra'
4110
+ 'AU','2611','ACT','Uriarra'
4111
+ 'AU','2611','ACT','Uriarra Forest'
4112
+ 'AU','2611','ACT','Waramanga'
4113
+ 'AU','2611','ACT','Weston'
4114
+ 'AU','2611','ACT','Weston Creek'
4115
+ 'AU','2612','ACT','Braddon'
4116
+ 'AU','2612','ACT','Campbell'
4117
+ 'AU','2612','ACT','Reid'
4118
+ 'AU','2612','ACT','Turner'
4119
+ 'AU','2614','ACT','Aranda'
4120
+ 'AU','2614','ACT','Cook'
4121
+ 'AU','2614','ACT','Hawker'
4122
+ 'AU','2614','ACT','Jamison Centre'
4123
+ 'AU','2614','ACT','Macquarie'
4124
+ 'AU','2614','ACT','Page'
4125
+ 'AU','2614','ACT','Scullin'
4126
+ 'AU','2614','ACT','Weetangera'
4127
+ 'AU','2615','ACT','Charnwood'
4128
+ 'AU','2615','ACT','Dunlop'
4129
+ 'AU','2615','ACT','Florey'
4130
+ 'AU','2615','ACT','Flynn'
4131
+ 'AU','2615','ACT','Fraser'
4132
+ 'AU','2615','ACT','Higgins'
4133
+ 'AU','2615','ACT','Holt'
4134
+ 'AU','2615','ACT','Kippax'
4135
+ 'AU','2615','ACT','Latham'
4136
+ 'AU','2615','ACT','Macgregor'
4137
+ 'AU','2615','ACT','Melba'
4138
+ 'AU','2615','ACT','Spence'
4139
+ 'AU','2616','ACT','Belconnen'
4140
+ 'AU','2617','ACT','Belconnen'
4141
+ 'AU','2617','ACT','Belconnen Dc'
4142
+ 'AU','2617','ACT','Bruce'
4143
+ 'AU','2617','ACT','Evatt'
4144
+ 'AU','2617','ACT','Giralang'
4145
+ 'AU','2617','ACT','Kaleen'
4146
+ 'AU','2617','ACT','Lawson'
4147
+ 'AU','2617','ACT','Mckellar'
4148
+ 'AU','2617','ACT','University Of Canberra'
4149
+ 'AU','2618','ACT','Hall'
4150
+ 'AU','2618','NSW','Nanima'
4151
+ 'AU','2618','NSW','Springrange'
4152
+ 'AU','2618','NSW','Wallaroo'
4153
+ 'AU','2619','NSW','Jerrabomberra'
4154
+ 'AU','2620','NSW','Burra'
4155
+ 'AU','2620','NSW','Carwoola'
4156
+ 'AU','2620','NSW','Clear Range'
4157
+ 'AU','2620','NSW','Crestwood'
4158
+ 'AU','2620','NSW','Dodsworth'
4159
+ 'AU','2620','NSW','Environa'
4160
+ 'AU','2620','NSW','Googong'
4161
+ 'AU','2620','NSW','Greenleigh'
4162
+ 'AU','2620','NSW','Gundaroo'
4163
+ 'AU','2620','ACT','Hume'
4164
+ 'AU','2620','NSW','Karabar'
4165
+ 'AU','2620','ACT','Kowen Forest'
4166
+ 'AU','2620','NSW','Letchworth'
4167
+ 'AU','2620','NSW','Michelago'
4168
+ 'AU','2620','ACT','Oaks Estate'
4169
+ 'AU','2620','NSW','Queanbeyan'
4170
+ 'AU','2620','NSW','Queanbeyan Dc'
4171
+ 'AU','2620','NSW','Queanbeyan East'
4172
+ 'AU','2620','NSW','Queanbeyan West'
4173
+ 'AU','2620','NSW','Royalla'
4174
+ 'AU','2620','NSW','Sutton'
4175
+ 'AU','2620','ACT','Tharwa'
4176
+ 'AU','2620','NSW','The Angle'
4177
+ 'AU','2620','NSW','The Ridgeway'
4178
+ 'AU','2620','NSW','Tinderry'
4179
+ 'AU','2620','ACT','Top Naas'
4180
+ 'AU','2620','NSW','Tralee'
4181
+ 'AU','2620','NSW','Urila'
4182
+ 'AU','2620','NSW','Wamboin'
4183
+ 'AU','2620','NSW','Williamsdale'
4184
+ 'AU','2620','NSW','Yarrow'
4185
+ 'AU','2621','NSW','Anembo'
4186
+ 'AU','2621','NSW','Bungendore'
4187
+ 'AU','2621','NSW','Bywong'
4188
+ 'AU','2621','NSW','Forbes Creek'
4189
+ 'AU','2621','NSW','Hoskinstown'
4190
+ 'AU','2621','NSW','Primrose Valley'
4191
+ 'AU','2621','NSW','Rossi'
4192
+ 'AU','2622','NSW','Araluen'
4193
+ 'AU','2622','NSW','Araluen North'
4194
+ 'AU','2622','NSW','Back Creek'
4195
+ 'AU','2622','NSW','Ballalaba'
4196
+ 'AU','2622','NSW','Bendoura'
4197
+ 'AU','2622','NSW','Berlang'
4198
+ 'AU','2622','NSW','Bombay'
4199
+ 'AU','2622','NSW','Boro'
4200
+ 'AU','2622','NSW','Braidwood'
4201
+ 'AU','2622','NSW','Budawang'
4202
+ 'AU','2622','NSW','Bulee'
4203
+ 'AU','2622','NSW','Charleys Forest'
4204
+ 'AU','2622','NSW','Coolumburra'
4205
+ 'AU','2622','NSW','Corang'
4206
+ 'AU','2622','NSW','Durran Durra'
4207
+ 'AU','2622','NSW','Endrick'
4208
+ 'AU','2622','NSW','Farringdon'
4209
+ 'AU','2622','NSW','Gundillion'
4210
+ 'AU','2622','NSW','Harolds Cross'
4211
+ 'AU','2622','NSW','Hereford Hall'
4212
+ 'AU','2622','NSW','Jembaicumbene'
4213
+ 'AU','2622','NSW','Jerrabattgulla'
4214
+ 'AU','2622','NSW','Jinden'
4215
+ 'AU','2622','NSW','Jingera'
4216
+ 'AU','2622','NSW','Kindervale'
4217
+ 'AU','2622','NSW','Krawarree'
4218
+ 'AU','2622','NSW','Larbert'
4219
+ 'AU','2622','NSW','Majors Creek'
4220
+ 'AU','2622','NSW','Manar'
4221
+ 'AU','2622','NSW','Marlowe'
4222
+ 'AU','2622','NSW','Merricumbene'
4223
+ 'AU','2622','NSW','Monga'
4224
+ 'AU','2622','NSW','Mongarlowe'
4225
+ 'AU','2622','NSW','Mulloon'
4226
+ 'AU','2622','NSW','Murrengenburg'
4227
+ 'AU','2622','NSW','Neringla'
4228
+ 'AU','2622','NSW','Nerriga'
4229
+ 'AU','2622','NSW','Northangera'
4230
+ 'AU','2622','NSW','Oallen'
4231
+ 'AU','2622','NSW','Palerang'
4232
+ 'AU','2622','NSW','Quiera'
4233
+ 'AU','2622','NSW','Reidsdale'
4234
+ 'AU','2622','NSW','Sassafras'
4235
+ 'AU','2622','NSW','Snowball'
4236
+ 'AU','2622','NSW','St George'
4237
+ 'AU','2622','NSW','Tianjara'
4238
+ 'AU','2622','NSW','Tolwong'
4239
+ 'AU','2622','NSW','Tomboye'
4240
+ 'AU','2622','NSW','Touga'
4241
+ 'AU','2622','NSW','Warri'
4242
+ 'AU','2622','NSW','Wog Wog'
4243
+ 'AU','2622','NSW','Wyanbene'
4244
+ 'AU','2623','NSW','Captains Flat'
4245
+ 'AU','2624','NSW','Kosciuszko'
4246
+ 'AU','2624','NSW','Perisher Valley'
4247
+ 'AU','2625','NSW','Thredbo'
4248
+ 'AU','2625','NSW','Thredbo Village'
4249
+ 'AU','2626','NSW','Bredbo'
4250
+ 'AU','2626','NSW','Bumbalong'
4251
+ 'AU','2626','NSW','Colinton'
4252
+ 'AU','2627','NSW','Crackenback'
4253
+ 'AU','2627','NSW','East Jindabyne'
4254
+ 'AU','2627','NSW','Grosses Plain'
4255
+ 'AU','2627','NSW','Gungarlin'
4256
+ 'AU','2627','NSW','Ingebirah'
4257
+ 'AU','2627','NSW','Jindabyne'
4258
+ 'AU','2627','NSW','Kalkite'
4259
+ 'AU','2627','NSW','Moonbah'
4260
+ 'AU','2627','NSW','Pilot Wilderness'
4261
+ 'AU','2628','NSW','Avonside'
4262
+ 'AU','2628','NSW','Beloka'
4263
+ 'AU','2628','NSW','Berridale'
4264
+ 'AU','2628','NSW','Braemar'
4265
+ 'AU','2628','NSW','Byadbo Wilderness'
4266
+ 'AU','2628','NSW','Cootralantra'
4267
+ 'AU','2628','NSW','Dalgety'
4268
+ 'AU','2628','NSW','Eucumbene'
4269
+ 'AU','2628','NSW','Eucumbene Cove'
4270
+ 'AU','2628','NSW','Hill Top'
4271
+ 'AU','2628','NSW','Nimmo'
4272
+ 'AU','2628','NSW','Numbla Vale'
4273
+ 'AU','2628','NSW','Paupong'
4274
+ 'AU','2628','NSW','Rocky Plain'
4275
+ 'AU','2628','NSW','Snowy Plain'
4276
+ 'AU','2629','NSW','Adaminaby'
4277
+ 'AU','2629','NSW','Anglers Reach'
4278
+ 'AU','2629','NSW','Bolaro'
4279
+ 'AU','2629','NSW','Cabramurra'
4280
+ 'AU','2629','NSW','Long Plain'
4281
+ 'AU','2629','NSW','Old Adaminaby'
4282
+ 'AU','2629','NSW','Providence Portal'
4283
+ 'AU','2629','NSW','Tantangara'
4284
+ 'AU','2629','NSW','Yaouk'
4285
+ 'AU','2630','NSW','Arable'
4286
+ 'AU','2630','NSW','Badja'
4287
+ 'AU','2630','NSW','Billilingra'
4288
+ 'AU','2630','NSW','Binjura'
4289
+ 'AU','2630','NSW','Bobundara'
4290
+ 'AU','2630','NSW','Buckenderra'
4291
+ 'AU','2630','NSW','Bungarby'
4292
+ 'AU','2630','NSW','Bunyan'
4293
+ 'AU','2630','NSW','Carlaminda'
4294
+ 'AU','2630','NSW','Chakola'
4295
+ 'AU','2630','NSW','Coolringdon'
4296
+ 'AU','2630','NSW','Cooma'
4297
+ 'AU','2630','NSW','Cooma North'
4298
+ 'AU','2630','NSW','Countegany'
4299
+ 'AU','2630','NSW','Dairymans Plains'
4300
+ 'AU','2630','NSW','Dangelong'
4301
+ 'AU','2630','NSW','Dry Plain'
4302
+ 'AU','2630','NSW','Frying Pan'
4303
+ 'AU','2630','NSW','Glen Fergus'
4304
+ 'AU','2630','NSW','Ironmungy'
4305
+ 'AU','2630','NSW','Jerangle'
4306
+ 'AU','2630','NSW','Jimenbuen'
4307
+ 'AU','2630','NSW','Maffra'
4308
+ 'AU','2630','NSW','Middle Flat'
4309
+ 'AU','2630','NSW','Middlingbank'
4310
+ 'AU','2630','NSW','Murrumbucca'
4311
+ 'AU','2630','NSW','Myalla'
4312
+ 'AU','2630','NSW','Numeralla'
4313
+ 'AU','2630','NSW','Peak View'
4314
+ 'AU','2630','NSW','Pine Valley'
4315
+ 'AU','2630','NSW','Polo Flat'
4316
+ 'AU','2630','NSW','Rhine Falls'
4317
+ 'AU','2630','NSW','Rock Flat'
4318
+ 'AU','2630','NSW','Rose Valley'
4319
+ 'AU','2630','NSW','Shannons Flat'
4320
+ 'AU','2630','NSW','Springfield'
4321
+ 'AU','2630','NSW','The Brothers'
4322
+ 'AU','2630','NSW','Tuross'
4323
+ 'AU','2630','NSW','Wambrook'
4324
+ 'AU','2631','NSW','Ando'
4325
+ 'AU','2631','NSW','Boco'
4326
+ 'AU','2631','NSW','Creewah'
4327
+ 'AU','2631','NSW','Glen Allen'
4328
+ 'AU','2631','NSW','Greenlands'
4329
+ 'AU','2631','NSW','Holts Flat'
4330
+ 'AU','2631','NSW','Jincumbilly'
4331
+ 'AU','2631','NSW','Kybeyan'
4332
+ 'AU','2631','NSW','Mount Cooper'
4333
+ 'AU','2631','NSW','Nimmitabel'
4334
+ 'AU','2631','NSW','Steeple Flat'
4335
+ 'AU','2631','NSW','Winifred'
4336
+ 'AU','2632','NSW','Bibbenluke'
4337
+ 'AU','2632','NSW','Bombala'
4338
+ 'AU','2632','NSW','Bondi Forest'
4339
+ 'AU','2632','NSW','Bukalong'
4340
+ 'AU','2632','NSW','Cambalong'
4341
+ 'AU','2632','NSW','Cathcart'
4342
+ 'AU','2632','NSW','Coolumbooka'
4343
+ 'AU','2632','NSW','Craigie'
4344
+ 'AU','2632','NSW','Gunningrah'
4345
+ 'AU','2632','NSW','Lords Hill'
4346
+ 'AU','2632','NSW','Merriangaah'
4347
+ 'AU','2632','NSW','Mila'
4348
+ 'AU','2632','NSW','Mount Darragh'
4349
+ 'AU','2632','NSW','Paddys Flat'
4350
+ 'AU','2632','NSW','Palarang'
4351
+ 'AU','2632','NSW','Quidong'
4352
+ 'AU','2632','NSW','Rockton'
4353
+ 'AU','2632','NSW','Rosemeath'
4354
+ 'AU','2633','NSW','Corrowong'
4355
+ 'AU','2633','NSW','Delegate'
4356
+ 'AU','2633','NSW','Tombong'
4357
+ 'AU','2640','NSW','Albury'
4358
+ 'AU','2640','NSW','Bungowannah'
4359
+ 'AU','2640','NSW','East Albury'
4360
+ 'AU','2640','NSW','Ettamogah'
4361
+ 'AU','2640','NSW','Glenroy'
4362
+ 'AU','2640','NSW','Lake Hume Village'
4363
+ 'AU','2640','NSW','Lavington Dc'
4364
+ 'AU','2640','NSW','Moorwatha'
4365
+ 'AU','2640','NSW','North Albury'
4366
+ 'AU','2640','NSW','Ournie'
4367
+ 'AU','2640','NSW','South Albury'
4368
+ 'AU','2640','NSW','Splitters Creek'
4369
+ 'AU','2640','NSW','Table Top'
4370
+ 'AU','2640','NSW','Talmalmo'
4371
+ 'AU','2640','NSW','Thurgoona'
4372
+ 'AU','2640','NSW','West Albury'
4373
+ 'AU','2640','NSW','Wirlinga'
4374
+ 'AU','2640','NSW','Wymah'
4375
+ 'AU','2641','NSW','Hamilton Valley'
4376
+ 'AU','2641','NSW','Lavington'
4377
+ 'AU','2641','NSW','Springdale Heights'
4378
+ 'AU','2642','NSW','Bidgeemia'
4379
+ 'AU','2642','NSW','Brocklesby'
4380
+ 'AU','2642','NSW','Burrumbuttock'
4381
+ 'AU','2642','NSW','Geehi'
4382
+ 'AU','2642','NSW','Gerogery'
4383
+ 'AU','2642','NSW','Glenellen'
4384
+ 'AU','2642','NSW','Greg Greg'
4385
+ 'AU','2642','NSW','Indi'
4386
+ 'AU','2642','NSW','Jagumba'
4387
+ 'AU','2642','NSW','Jagungal Wilderness'
4388
+ 'AU','2642','NSW','Jindera'
4389
+ 'AU','2642','NSW','Jingellic'
4390
+ 'AU','2642','NSW','Khancoban'
4391
+ 'AU','2642','NSW','Murray Gorge'
4392
+ 'AU','2642','NSW','Rand'
4393
+ 'AU','2642','NSW','Tooma'
4394
+ 'AU','2642','NSW','Walbundrie'
4395
+ 'AU','2642','NSW','Welaregang'
4396
+ 'AU','2642','NSW','Wrathall'
4397
+ 'AU','2642','NSW','Yerong Creek'
4398
+ 'AU','2643','NSW','Howlong'
4399
+ 'AU','2644','NSW','Bowna'
4400
+ 'AU','2644','NSW','Coppabella'
4401
+ 'AU','2644','NSW','Holbrook'
4402
+ 'AU','2644','NSW','Lankeys Creek'
4403
+ 'AU','2644','NSW','Little Billabong'
4404
+ 'AU','2644','NSW','Mountain Creek'
4405
+ 'AU','2644','NSW','Mullengandra'
4406
+ 'AU','2644','NSW','Wantagong'
4407
+ 'AU','2644','NSW','Woomargama'
4408
+ 'AU','2644','NSW','Yarara'
4409
+ 'AU','2645','NSW','Coonong'
4410
+ 'AU','2645','NSW','Cullivel'
4411
+ 'AU','2645','NSW','Urana'
4412
+ 'AU','2645','NSW','Yuluma'
4413
+ 'AU','2646','NSW','Balldale'
4414
+ 'AU','2646','NSW','Bull Plain'
4415
+ 'AU','2646','NSW','Buraja'
4416
+ 'AU','2646','NSW','Coads Tank'
4417
+ 'AU','2646','NSW','Collendina'
4418
+ 'AU','2646','NSW','Coreen'
4419
+ 'AU','2646','NSW','Corowa'
4420
+ 'AU','2646','NSW','Daysdale'
4421
+ 'AU','2646','NSW','Goombargana'
4422
+ 'AU','2646','NSW','Hopefield'
4423
+ 'AU','2646','NSW','Lowesdale'
4424
+ 'AU','2646','NSW','Merton Vale'
4425
+ 'AU','2646','NSW','Nyora'
4426
+ 'AU','2646','NSW','Oaklands'
4427
+ 'AU','2646','NSW','Redlands'
4428
+ 'AU','2646','NSW','Rennie'
4429
+ 'AU','2646','NSW','Ringwood'
4430
+ 'AU','2646','NSW','Sanger'
4431
+ 'AU','2646','NSW','Savernake'
4432
+ 'AU','2647','NSW','Mulwala'
4433
+ 'AU','2648','NSW','Anabranch'
4434
+ 'AU','2648','NSW','Boeill Creek'
4435
+ 'AU','2648','NSW','Cal Lal'
4436
+ 'AU','2648','NSW','Curlwaa'
4437
+ 'AU','2648','NSW','Mourquong'
4438
+ 'AU','2648','NSW','Palinyewah'
4439
+ 'AU','2648','NSW','Pan Ban'
4440
+ 'AU','2648','NSW','Pomona'
4441
+ 'AU','2648','NSW','Pooncarie'
4442
+ 'AU','2648','NSW','Rufus River'
4443
+ 'AU','2648','NSW','Scotia'
4444
+ 'AU','2648','NSW','Wentworth'
4445
+ 'AU','2649','NSW','Laurel Hill'
4446
+ 'AU','2649','NSW','Nurenmerenmong'
4447
+ 'AU','2650','NSW','Alfredtown'
4448
+ 'AU','2650','NSW','Ashmont'
4449
+ 'AU','2650','NSW','Belfrayden'
4450
+ 'AU','2650','NSW','Big Springs'
4451
+ 'AU','2650','NSW','Bomen'
4452
+ 'AU','2650','NSW','Book Book'
4453
+ 'AU','2650','NSW','Boorooma'
4454
+ 'AU','2650','NSW','Borambola'
4455
+ 'AU','2650','NSW','Bourkelands'
4456
+ 'AU','2650','NSW','Brucedale'
4457
+ 'AU','2650','NSW','Bulgary'
4458
+ 'AU','2650','NSW','Burrandana'
4459
+ 'AU','2650','NSW','Carabost'
4460
+ 'AU','2650','NSW','Cartwrights Hill'
4461
+ 'AU','2650','NSW','Collingullie'
4462
+ 'AU','2650','NSW','Cookardinia'
4463
+ 'AU','2650','NSW','Currawananna'
4464
+ 'AU','2650','NSW','Currawarna'
4465
+ 'AU','2650','NSW','Downside'
4466
+ 'AU','2650','NSW','East Wagga Wagga'
4467
+ 'AU','2650','NSW','Estella'
4468
+ 'AU','2650','NSW','Euberta'
4469
+ 'AU','2650','NSW','Eunanoreenya'
4470
+ 'AU','2650','NSW','Galore'
4471
+ 'AU','2650','NSW','Gelston Park'
4472
+ 'AU','2650','NSW','Glenfield Park'
4473
+ 'AU','2650','NSW','Gobbagombalin'
4474
+ 'AU','2650','NSW','Gregadoo'
4475
+ 'AU','2650','NSW','Harefield'
4476
+ 'AU','2650','NSW','Hillgrove'
4477
+ 'AU','2650','NSW','Kooringal'
4478
+ 'AU','2650','NSW','Kyeamba'
4479
+ 'AU','2650','NSW','Lake Albert'
4480
+ 'AU','2650','NSW','Lloyd'
4481
+ 'AU','2650','NSW','Maxwell'
4482
+ 'AU','2650','NSW','Moorong'
4483
+ 'AU','2650','NSW','Mount Austin'
4484
+ 'AU','2650','NSW','North Wagga Wagga'
4485
+ 'AU','2650','NSW','Oberne Creek'
4486
+ 'AU','2650','NSW','Oura'
4487
+ 'AU','2650','NSW','Pulletop'
4488
+ 'AU','2650','NSW','Rowan'
4489
+ 'AU','2650','NSW','San Isidore'
4490
+ 'AU','2650','NSW','South Wagga Wagga'
4491
+ 'AU','2650','NSW','Springvale'
4492
+ 'AU','2650','NSW','Tatton'
4493
+ 'AU','2650','NSW','The Gap'
4494
+ 'AU','2650','NSW','Tolland'
4495
+ 'AU','2650','NSW','Turvey Park'
4496
+ 'AU','2650','NSW','Wagga Wagga'
4497
+ 'AU','2650','NSW','Wagga Wagga Bc'
4498
+ 'AU','2650','NSW','Wallacetown'
4499
+ 'AU','2650','NSW','Wantabadgery'
4500
+ 'AU','2650','NSW','Yarragundry'
4501
+ 'AU','2650','NSW','Yathella'
4502
+ 'AU','2651','NSW','Forest Hill'
4503
+ 'AU','2651','NSW','Wagga Wagga Raaf'
4504
+ 'AU','2652','NSW','Boorga'
4505
+ 'AU','2652','NSW','Boree Creek'
4506
+ 'AU','2652','NSW','Goolgowi'
4507
+ 'AU','2652','NSW','Grong Grong'
4508
+ 'AU','2652','NSW','Gumly Gumly'
4509
+ 'AU','2652','NSW','Humula'
4510
+ 'AU','2652','NSW','Ladysmith'
4511
+ 'AU','2652','NSW','Mangoplah'
4512
+ 'AU','2652','NSW','Marrar'
4513
+ 'AU','2652','NSW','Matong'
4514
+ 'AU','2652','NSW','Merriwagga'
4515
+ 'AU','2652','NSW','Murrulebale'
4516
+ 'AU','2652','NSW','Old Junee'
4517
+ 'AU','2652','NSW','Rosewood'
4518
+ 'AU','2652','NSW','Tabbita'
4519
+ 'AU','2652','NSW','Tarcutta'
4520
+ 'AU','2652','NSW','Uranquinty'
4521
+ 'AU','2653','NSW','Burra'
4522
+ 'AU','2653','NSW','Courabyra'
4523
+ 'AU','2653','NSW','Glenroy'
4524
+ 'AU','2653','NSW','Mannus'
4525
+ 'AU','2653','NSW','Maragle'
4526
+ 'AU','2653','NSW','Munderoo'
4527
+ 'AU','2653','NSW','Paddys River'
4528
+ 'AU','2653','NSW','Taradale'
4529
+ 'AU','2653','NSW','Tumbarumba'
4530
+ 'AU','2653','NSW','Westdale'
4531
+ 'AU','2653','NSW','Willigobung'
4532
+ 'AU','2655','NSW','Birdlip'
4533
+ 'AU','2655','NSW','French Park'
4534
+ 'AU','2655','NSW','Kubura'
4535
+ 'AU','2655','NSW','The Rock'
4536
+ 'AU','2655','NSW','Tootool'
4537
+ 'AU','2656','NSW','Brookdale'
4538
+ 'AU','2656','NSW','Brookong'
4539
+ 'AU','2656','NSW','Fargunyah'
4540
+ 'AU','2656','NSW','Lockhart'
4541
+ 'AU','2656','NSW','Milbrulong'
4542
+ 'AU','2656','NSW','Osborne'
4543
+ 'AU','2656','NSW','Urangeline'
4544
+ 'AU','2656','NSW','Urangeline East'
4545
+ 'AU','2658','NSW','Grubben'
4546
+ 'AU','2658','NSW','Henty'
4547
+ 'AU','2658','NSW','Munyabla'
4548
+ 'AU','2658','NSW','Pleasant Hills'
4549
+ 'AU','2658','NSW','Ryan'
4550
+ 'AU','2659','NSW','Alma Park'
4551
+ 'AU','2659','NSW','Walla Walla'
4552
+ 'AU','2660','NSW','Carnsdale'
4553
+ 'AU','2660','NSW','Culcairn'
4554
+ 'AU','2660','NSW','Morven'
4555
+ 'AU','2661','NSW','Kapooka'
4556
+ 'AU','2663','NSW','Bundure'
4557
+ 'AU','2663','NSW','Cooba'
4558
+ 'AU','2663','NSW','Cowabbie'
4559
+ 'AU','2663','NSW','Erin Vale'
4560
+ 'AU','2663','NSW','Eurongilly'
4561
+ 'AU','2663','NSW','Junee'
4562
+ 'AU','2663','NSW','Landervale'
4563
+ 'AU','2663','NSW','Marinna'
4564
+ 'AU','2663','NSW','Wantiool'
4565
+ 'AU','2665','NSW','Ardlethan'
4566
+ 'AU','2665','NSW','Ariah Park'
4567
+ 'AU','2665','NSW','Barellan'
4568
+ 'AU','2665','NSW','Beckom'
4569
+ 'AU','2665','NSW','Bectric'
4570
+ 'AU','2665','NSW','Binya'
4571
+ 'AU','2665','NSW','Kamarah'
4572
+ 'AU','2665','NSW','Mirrool'
4573
+ 'AU','2665','NSW','Moombooldool'
4574
+ 'AU','2665','NSW','Mount Crystal'
4575
+ 'AU','2665','NSW','Quandary'
4576
+ 'AU','2665','NSW','Tara'
4577
+ 'AU','2665','NSW','Walleroobie'
4578
+ 'AU','2666','NSW','Combaning'
4579
+ 'AU','2666','NSW','Dirnaseer'
4580
+ 'AU','2666','NSW','Gidginbung'
4581
+ 'AU','2666','NSW','Grogan'
4582
+ 'AU','2666','NSW','Junee Reefs'
4583
+ 'AU','2666','NSW','Mimosa'
4584
+ 'AU','2666','NSW','Morangarell'
4585
+ 'AU','2666','NSW','Narraburra'
4586
+ 'AU','2666','NSW','Pucawan'
4587
+ 'AU','2666','NSW','Reefton'
4588
+ 'AU','2666','NSW','Sebastopol'
4589
+ 'AU','2666','NSW','Springdale'
4590
+ 'AU','2666','NSW','Temora'
4591
+ 'AU','2666','NSW','Trungley Hall'
4592
+ 'AU','2668','NSW','Barmedman'
4593
+ 'AU','2669','NSW','Bygalorie'
4594
+ 'AU','2669','NSW','Erigolia'
4595
+ 'AU','2669','NSW','Girral'
4596
+ 'AU','2669','NSW','Kikoira'
4597
+ 'AU','2669','NSW','Melbergen'
4598
+ 'AU','2669','NSW','Naradhan'
4599
+ 'AU','2669','NSW','Rankins Springs'
4600
+ 'AU','2669','NSW','Tallimba'
4601
+ 'AU','2669','NSW','Tullibigeal'
4602
+ 'AU','2669','NSW','Ungarie'
4603
+ 'AU','2669','NSW','Weethalle'
4604
+ 'AU','2669','NSW','Weja'
4605
+ 'AU','2669','NSW','Yaddra'
4606
+ 'AU','2671','NSW','Alleena'
4607
+ 'AU','2671','NSW','Back Creek'
4608
+ 'AU','2671','NSW','Burcher'
4609
+ 'AU','2671','NSW','Lake Cowal'
4610
+ 'AU','2671','NSW','North Yalgogrin'
4611
+ 'AU','2671','NSW','West Wyalong'
4612
+ 'AU','2671','NSW','Wyalong'
4613
+ 'AU','2672','NSW','Burgooney'
4614
+ 'AU','2672','NSW','Curlew Waters'
4615
+ 'AU','2672','NSW','Lake Cargelligo'
4616
+ 'AU','2672','NSW','Murrin Bridge'
4617
+ 'AU','2672','NSW','Wargambegal'
4618
+ 'AU','2675','NSW','Hillston'
4619
+ 'AU','2675','NSW','Lake Brewster'
4620
+ 'AU','2675','NSW','Monia Gap'
4621
+ 'AU','2675','NSW','Roto'
4622
+ 'AU','2675','NSW','Wallanthery'
4623
+ 'AU','2678','NSW','Charles Sturt University'
4624
+ 'AU','2678','NSW','Riverina Msc'
4625
+ 'AU','2680','NSW','Beelbangera'
4626
+ 'AU','2680','NSW','Benerembah'
4627
+ 'AU','2680','NSW','Bilbul'
4628
+ 'AU','2680','NSW','Griffith'
4629
+ 'AU','2680','NSW','Griffith Dc'
4630
+ 'AU','2680','NSW','Griffith East'
4631
+ 'AU','2680','NSW','Hanwood'
4632
+ 'AU','2680','NSW','Kooba'
4633
+ 'AU','2680','NSW','Lake Wyangan'
4634
+ 'AU','2680','NSW','Nericon'
4635
+ 'AU','2680','NSW','Tharbogang'
4636
+ 'AU','2680','NSW','Warburn'
4637
+ 'AU','2680','NSW','Warrawidgee'
4638
+ 'AU','2680','NSW','Widgelli'
4639
+ 'AU','2680','NSW','Willbriggie'
4640
+ 'AU','2680','NSW','Yoogali'
4641
+ 'AU','2681','NSW','Myall Park'
4642
+ 'AU','2681','NSW','Yenda'
4643
+ 'AU','2700','NSW','Birrego'
4644
+ 'AU','2700','NSW','Colinroobie'
4645
+ 'AU','2700','NSW','Corobimilla'
4646
+ 'AU','2700','NSW','Cudgel'
4647
+ 'AU','2700','NSW','Euroley'
4648
+ 'AU','2700','NSW','Faithfull'
4649
+ 'AU','2700','NSW','Gillenbah'
4650
+ 'AU','2700','NSW','Kywong'
4651
+ 'AU','2700','NSW','Morundah'
4652
+ 'AU','2700','NSW','Narrandera'
4653
+ 'AU','2700','NSW','Paynters Siding'
4654
+ 'AU','2700','NSW','Sandigo'
4655
+ 'AU','2700','NSW','Widgiewa'
4656
+ 'AU','2701','NSW','Berry Jerry'
4657
+ 'AU','2701','NSW','Coolamon'
4658
+ 'AU','2701','NSW','Methul'
4659
+ 'AU','2701','NSW','Rannock'
4660
+ 'AU','2701','NSW','Tooyal'
4661
+ 'AU','2702','NSW','Ganmain'
4662
+ 'AU','2703','NSW','Yanco'
4663
+ 'AU','2705','NSW','Brobenah'
4664
+ 'AU','2705','NSW','Calorafield'
4665
+ 'AU','2705','NSW','Corbie Hill'
4666
+ 'AU','2705','NSW','Gogeldrie'
4667
+ 'AU','2705','NSW','Leeton'
4668
+ 'AU','2705','NSW','Merungle Hill'
4669
+ 'AU','2705','NSW','Murrami'
4670
+ 'AU','2705','NSW','Stanbridge'
4671
+ 'AU','2705','NSW','Wamoon'
4672
+ 'AU','2705','NSW','Whitton'
4673
+ 'AU','2706','NSW','Darlington Point'
4674
+ 'AU','2707','NSW','Argoon'
4675
+ 'AU','2707','NSW','Coleambally'
4676
+ 'AU','2708','NSW','Albury Msc'
4677
+ 'AU','2708','NSW','Murray Region Mc'
4678
+ 'AU','2710','NSW','Barratta'
4679
+ 'AU','2710','NSW','Benarca'
4680
+ 'AU','2710','NSW','Birganbigil'
4681
+ 'AU','2710','NSW','Booroorban'
4682
+ 'AU','2710','NSW','Brassi'
4683
+ 'AU','2710','NSW','Bullatale'
4684
+ 'AU','2710','NSW','Caldwell'
4685
+ 'AU','2710','NSW','Calimo'
4686
+ 'AU','2710','NSW','Conargo'
4687
+ 'AU','2710','NSW','Coree'
4688
+ 'AU','2710','NSW','Cornalla'
4689
+ 'AU','2710','NSW','Deniliquin'
4690
+ 'AU','2710','NSW','Gulpa'
4691
+ 'AU','2710','NSW','Hartwood'
4692
+ 'AU','2710','NSW','Hill Plain'
4693
+ 'AU','2710','NSW','Lindifferon'
4694
+ 'AU','2710','NSW','Mathoura'
4695
+ 'AU','2710','NSW','Mayrung'
4696
+ 'AU','2710','NSW','Moira'
4697
+ 'AU','2710','NSW','Moonahcullah'
4698
+ 'AU','2710','NSW','Moonbria'
4699
+ 'AU','2710','NSW','Morago'
4700
+ 'AU','2710','NSW','Pretty Pine'
4701
+ 'AU','2710','NSW','Steam Plains'
4702
+ 'AU','2710','NSW','Stud Park'
4703
+ 'AU','2710','NSW','Wakool'
4704
+ 'AU','2710','NSW','Wandook'
4705
+ 'AU','2710','NSW','Wanganella'
4706
+ 'AU','2710','NSW','Warragoon'
4707
+ 'AU','2710','NSW','Willurah'
4708
+ 'AU','2710','NSW','Yallakool'
4709
+ 'AU','2711','NSW','Booligal'
4710
+ 'AU','2711','NSW','Carrathool'
4711
+ 'AU','2711','NSW','Clare'
4712
+ 'AU','2711','NSW','Corrong'
4713
+ 'AU','2711','NSW','Gunbar'
4714
+ 'AU','2711','NSW','Hay'
4715
+ 'AU','2711','NSW','Hay South'
4716
+ 'AU','2711','NSW','Keri Keri'
4717
+ 'AU','2711','NSW','Maude'
4718
+ 'AU','2711','NSW','One Tree'
4719
+ 'AU','2711','NSW','Oxley'
4720
+ 'AU','2711','NSW','Waugorah'
4721
+ 'AU','2711','NSW','Yanga'
4722
+ 'AU','2712','NSW','Berrigan'
4723
+ 'AU','2712','NSW','Boomanoomana'
4724
+ 'AU','2713','NSW','Blighty'
4725
+ 'AU','2713','NSW','Finley'
4726
+ 'AU','2713','NSW','Logie Brae'
4727
+ 'AU','2713','NSW','Myrtle Park'
4728
+ 'AU','2714','NSW','Aratula'
4729
+ 'AU','2714','NSW','Pine Lodge'
4730
+ 'AU','2714','NSW','Tocumwal'
4731
+ 'AU','2714','NSW','Tuppal'
4732
+ 'AU','2715','NSW','Arumpo'
4733
+ 'AU','2715','NSW','Balranald'
4734
+ 'AU','2715','NSW','Hatfield'
4735
+ 'AU','2715','NSW','Mungo'
4736
+ 'AU','2715','NSW','Penarie'
4737
+ 'AU','2716','NSW','Coree South'
4738
+ 'AU','2716','NSW','Four Corners'
4739
+ 'AU','2716','NSW','Gala Vale'
4740
+ 'AU','2716','NSW','Jerilderie'
4741
+ 'AU','2716','NSW','Mabins Well'
4742
+ 'AU','2716','NSW','Mairjimmy'
4743
+ 'AU','2717','NSW','Dareton'
4744
+ 'AU','2720','NSW','Argalong'
4745
+ 'AU','2720','NSW','Blowering'
4746
+ 'AU','2720','NSW','Bogong Peaks Wilderness'
4747
+ 'AU','2720','NSW','Bombowlee'
4748
+ 'AU','2720','NSW','Bombowlee Creek'
4749
+ 'AU','2720','NSW','Buddong'
4750
+ 'AU','2720','NSW','Couragago'
4751
+ 'AU','2720','NSW','Gadara'
4752
+ 'AU','2720','NSW','Gilmore'
4753
+ 'AU','2720','NSW','Gocup'
4754
+ 'AU','2720','NSW','Goobarragandra'
4755
+ 'AU','2720','NSW','Jones Bridge'
4756
+ 'AU','2720','NSW','Killimicat'
4757
+ 'AU','2720','NSW','Lacmalac'
4758
+ 'AU','2720','NSW','Little River'
4759
+ 'AU','2720','NSW','Minjary'
4760
+ 'AU','2720','NSW','Mundongo'
4761
+ 'AU','2720','NSW','Pinbeyan'
4762
+ 'AU','2720','NSW','Red Hill'
4763
+ 'AU','2720','NSW','Talbingo'
4764
+ 'AU','2720','NSW','Tumorrama'
4765
+ 'AU','2720','NSW','Tumut'
4766
+ 'AU','2720','NSW','Tumut Plains'
4767
+ 'AU','2720','NSW','Wereboldera'
4768
+ 'AU','2720','NSW','Wermatong'
4769
+ 'AU','2720','NSW','Windowie'
4770
+ 'AU','2720','NSW','Wyangle'
4771
+ 'AU','2720','NSW','Yarrangobilly'
4772
+ 'AU','2721','NSW','Bland'
4773
+ 'AU','2721','NSW','Quandialla'
4774
+ 'AU','2722','NSW','Bongalong'
4775
+ 'AU','2722','NSW','Bongongalong'
4776
+ 'AU','2722','NSW','Brungle'
4777
+ 'AU','2722','NSW','Brungle Creek'
4778
+ 'AU','2722','NSW','Burra Creek'
4779
+ 'AU','2722','NSW','Darbalara'
4780
+ 'AU','2722','NSW','Edwardstown'
4781
+ 'AU','2722','NSW','Gundagai'
4782
+ 'AU','2722','NSW','Jackalass'
4783
+ 'AU','2722','NSW','Jones Creek'
4784
+ 'AU','2722','NSW','Muttama'
4785
+ 'AU','2722','NSW','Nangus'
4786
+ 'AU','2722','NSW','Reno'
4787
+ 'AU','2722','NSW','South Gundagai'
4788
+ 'AU','2722','NSW','Tarrabandra'
4789
+ 'AU','2722','NSW','Wagragobilly'
4790
+ 'AU','2722','NSW','Willie Ploma'
4791
+ 'AU','2725','NSW','Stockinbingal'
4792
+ 'AU','2726','NSW','Bundarbo'
4793
+ 'AU','2726','NSW','Jugiong'
4794
+ 'AU','2727','NSW','Adjungbilly'
4795
+ 'AU','2727','NSW','Coolac'
4796
+ 'AU','2727','NSW','Gobarralong'
4797
+ 'AU','2727','NSW','Mingay'
4798
+ 'AU','2729','NSW','Adelong'
4799
+ 'AU','2729','NSW','Bangadang'
4800
+ 'AU','2729','NSW','Black Creek'
4801
+ 'AU','2729','NSW','Califat'
4802
+ 'AU','2729','NSW','Cooleys Creek'
4803
+ 'AU','2729','NSW','Darlow'
4804
+ 'AU','2729','NSW','Ellerslie'
4805
+ 'AU','2729','NSW','Grahamstown'
4806
+ 'AU','2729','NSW','Mount Adrah'
4807
+ 'AU','2729','NSW','Mount Horeb'
4808
+ 'AU','2729','NSW','Mundarlo'
4809
+ 'AU','2729','NSW','Sandy Gully'
4810
+ 'AU','2729','NSW','Sharps Creek'
4811
+ 'AU','2729','NSW','Tumblong'
4812
+ 'AU','2729','NSW','Westwood'
4813
+ 'AU','2729','NSW','Wondalga'
4814
+ 'AU','2729','NSW','Yaven Creek'
4815
+ 'AU','2730','NSW','Batlow'
4816
+ 'AU','2730','NSW','Green Hills'
4817
+ 'AU','2730','NSW','Kunama'
4818
+ 'AU','2730','NSW','Lower Bago'
4819
+ 'AU','2731','NSW','Bunnaloo'
4820
+ 'AU','2731','NSW','Moama'
4821
+ 'AU','2731','NSW','Tantonan'
4822
+ 'AU','2731','NSW','Thyra'
4823
+ 'AU','2731','NSW','Womboota'
4824
+ 'AU','2732','NSW','Barham'
4825
+ 'AU','2732','NSW','Burraboi'
4826
+ 'AU','2732','NSW','Cobramunga'
4827
+ 'AU','2732','NSW','Gonn'
4828
+ 'AU','2732','NSW','Noorong'
4829
+ 'AU','2732','NSW','Thule'
4830
+ 'AU','2732','NSW','Tullakool'
4831
+ 'AU','2733','NSW','Dhuragoon'
4832
+ 'AU','2733','NSW','Moulamein'
4833
+ 'AU','2733','NSW','Niemur'
4834
+ 'AU','2734','NSW','Cunninyeuk'
4835
+ 'AU','2734','NSW','Dilpurra'
4836
+ 'AU','2734','NSW','Kyalite'
4837
+ 'AU','2734','NSW','Mellool'
4838
+ 'AU','2734','NSW','Moolpa'
4839
+ 'AU','2734','NSW','Stony Crossing'
4840
+ 'AU','2734','NSW','Tooranie'
4841
+ 'AU','2734','NSW','Wetuppa'
4842
+ 'AU','2735','NSW','Koraleigh'
4843
+ 'AU','2735','NSW','Speewa'
4844
+ 'AU','2736','NSW','Goodnight'
4845
+ 'AU','2736','NSW','Tooleybuc'
4846
+ 'AU','2737','NSW','Benanee'
4847
+ 'AU','2737','NSW','Euston'
4848
+ 'AU','2738','NSW','Gol Gol'
4849
+ 'AU','2738','NSW','Monak'
4850
+ 'AU','2738','NSW','Trentham Cliffs'
4851
+ 'AU','2739','NSW','Buronga'
4852
+ 'AU','2745','NSW','Glenmore Park'
4853
+ 'AU','2745','NSW','Greendale'
4854
+ 'AU','2745','NSW','Luddenham'
4855
+ 'AU','2745','NSW','Mulgoa'
4856
+ 'AU','2745','NSW','Regentville'
4857
+ 'AU','2745','NSW','Wallacia'
4858
+ 'AU','2747','NSW','Cambridge Gardens'
4859
+ 'AU','2747','NSW','Cambridge Park'
4860
+ 'AU','2747','NSW','Claremont Meadows'
4861
+ 'AU','2747','NSW','Kingswood'
4862
+ 'AU','2747','NSW','Llandilo'
4863
+ 'AU','2747','NSW','Shanes Park'
4864
+ 'AU','2747','NSW','Werrington'
4865
+ 'AU','2747','NSW','Werrington County'
4866
+ 'AU','2747','NSW','Werrington Downs'
4867
+ 'AU','2748','NSW','Orchard Hills'
4868
+ 'AU','2749','NSW','Castlereagh'
4869
+ 'AU','2749','NSW','Cranebrook'
4870
+ 'AU','2750','NSW','Emu Heights'
4871
+ 'AU','2750','NSW','Emu Plains'
4872
+ 'AU','2750','NSW','Jamisontown'
4873
+ 'AU','2750','NSW','Leonay'
4874
+ 'AU','2750','NSW','Penrith'
4875
+ 'AU','2750','NSW','Penrith Plaza'
4876
+ 'AU','2750','NSW','Penrith South'
4877
+ 'AU','2750','NSW','South Penrith'
4878
+ 'AU','2751','NSW','Penrith'
4879
+ 'AU','2752','NSW','Silverdale'
4880
+ 'AU','2752','NSW','Warragamba'
4881
+ 'AU','2753','NSW','Agnes Banks'
4882
+ 'AU','2753','NSW','Bowen Mountain'
4883
+ 'AU','2753','NSW','Grose Vale'
4884
+ 'AU','2753','NSW','Grose Wold'
4885
+ 'AU','2753','NSW','Hobartville'
4886
+ 'AU','2753','NSW','Londonderry'
4887
+ 'AU','2753','NSW','Richmond'
4888
+ 'AU','2753','NSW','Richmond Lowlands'
4889
+ 'AU','2753','NSW','Yarramundi'
4890
+ 'AU','2754','NSW','North Richmond'
4891
+ 'AU','2754','NSW','Tennyson'
4892
+ 'AU','2754','NSW','The Slopes'
4893
+ 'AU','2755','NSW','Richmond Raaf'
4894
+ 'AU','2756','NSW','Bligh Park'
4895
+ 'AU','2756','NSW','Cattai'
4896
+ 'AU','2756','NSW','Central Colo'
4897
+ 'AU','2756','NSW','Clarendon'
4898
+ 'AU','2756','NSW','Colo'
4899
+ 'AU','2756','NSW','Colo Heights'
4900
+ 'AU','2756','NSW','Cornwallis'
4901
+ 'AU','2756','NSW','Cumberland Reach'
4902
+ 'AU','2756','NSW','Ebenezer'
4903
+ 'AU','2756','NSW','Freemans Reach'
4904
+ 'AU','2756','NSW','Glossodia'
4905
+ 'AU','2756','NSW','Lower Portland'
4906
+ 'AU','2756','NSW','Maroota'
4907
+ 'AU','2756','NSW','Mcgraths Hill'
4908
+ 'AU','2756','NSW','Mellong'
4909
+ 'AU','2756','NSW','Mulgrave'
4910
+ 'AU','2756','NSW','Pitt Town'
4911
+ 'AU','2756','NSW','Pitt Town Bottoms'
4912
+ 'AU','2756','NSW','Sackville'
4913
+ 'AU','2756','NSW','Sackville North'
4914
+ 'AU','2756','NSW','Scheyville'
4915
+ 'AU','2756','NSW','South Maroota'
4916
+ 'AU','2756','NSW','South Windsor'
4917
+ 'AU','2756','NSW','Upper Colo'
4918
+ 'AU','2756','NSW','Wilberforce'
4919
+ 'AU','2756','NSW','Windsor'
4920
+ 'AU','2756','NSW','Windsor Downs'
4921
+ 'AU','2756','NSW','Womerah'
4922
+ 'AU','2757','NSW','Kurmond'
4923
+ 'AU','2758','NSW','Berambing'
4924
+ 'AU','2758','NSW','Bilpin'
4925
+ 'AU','2758','NSW','Blaxlands Ridge'
4926
+ 'AU','2758','NSW','East Kurrajong'
4927
+ 'AU','2758','NSW','Kurrajong'
4928
+ 'AU','2758','NSW','Kurrajong Heights'
4929
+ 'AU','2758','NSW','Kurrajong Hills'
4930
+ 'AU','2758','NSW','Mount Tomah'
4931
+ 'AU','2758','NSW','Mountain Lagoon'
4932
+ 'AU','2758','NSW','The Devils Wilderness'
4933
+ 'AU','2758','NSW','Wheeny Creek'
4934
+ 'AU','2759','NSW','Erskine Park'
4935
+ 'AU','2759','NSW','St Clair'
4936
+ 'AU','2760','NSW','Colyton'
4937
+ 'AU','2760','NSW','North St Marys'
4938
+ 'AU','2760','NSW','Oxley Park'
4939
+ 'AU','2760','NSW','Ropes Crossing'
4940
+ 'AU','2760','NSW','St Marys'
4941
+ 'AU','2760','NSW','St Marys East'
4942
+ 'AU','2760','NSW','St Marys South'
4943
+ 'AU','2761','NSW','Colebee'
4944
+ 'AU','2761','NSW','Dean Park'
4945
+ 'AU','2761','NSW','Glendenning'
4946
+ 'AU','2761','NSW','Glendenning Dc'
4947
+ 'AU','2761','NSW','Hassall Grove'
4948
+ 'AU','2761','NSW','Oakhurst'
4949
+ 'AU','2761','NSW','Plumpton'
4950
+ 'AU','2762','NSW','Schofields'
4951
+ 'AU','2763','NSW','Acacia Gardens'
4952
+ 'AU','2763','NSW','Quakers Hill'
4953
+ 'AU','2765','NSW','Berkshire Park'
4954
+ 'AU','2765','NSW','Box Hill'
4955
+ 'AU','2765','NSW','Maraylya'
4956
+ 'AU','2765','NSW','Marsden Park'
4957
+ 'AU','2765','NSW','Nelson'
4958
+ 'AU','2765','NSW','Oakville'
4959
+ 'AU','2765','NSW','Riverstone'
4960
+ 'AU','2765','NSW','Vineyard'
4961
+ 'AU','2766','NSW','Eastern Creek'
4962
+ 'AU','2766','NSW','Rooty Hill'
4963
+ 'AU','2767','NSW','Doonside'
4964
+ 'AU','2767','NSW','Woodcroft'
4965
+ 'AU','2768','NSW','Glenwood'
4966
+ 'AU','2768','NSW','Parklea'
4967
+ 'AU','2768','NSW','Stanhope Gardens'
4968
+ 'AU','2769','NSW','The Ponds'
4969
+ 'AU','2770','NSW','Bidwill'
4970
+ 'AU','2770','NSW','Blackett'
4971
+ 'AU','2770','NSW','Dharruk'
4972
+ 'AU','2770','NSW','Emerton'
4973
+ 'AU','2770','NSW','Hebersham'
4974
+ 'AU','2770','NSW','Lethbridge Park'
4975
+ 'AU','2770','NSW','Minchinbury'
4976
+ 'AU','2770','NSW','Mount Druitt'
4977
+ 'AU','2770','NSW','Mount Druitt Village'
4978
+ 'AU','2770','NSW','Shalvey'
4979
+ 'AU','2770','NSW','Tregear'
4980
+ 'AU','2770','NSW','Whalan'
4981
+ 'AU','2770','NSW','Willmot'
4982
+ 'AU','2773','NSW','Glenbrook'
4983
+ 'AU','2773','NSW','Lapstone'
4984
+ 'AU','2774','NSW','Blaxland'
4985
+ 'AU','2774','NSW','Blaxland East'
4986
+ 'AU','2774','NSW','Mount Riverview'
4987
+ 'AU','2774','NSW','Warrimoo'
4988
+ 'AU','2775','NSW','Central Macdonald'
4989
+ 'AU','2775','NSW','Fernances'
4990
+ 'AU','2775','NSW','Gunderman'
4991
+ 'AU','2775','NSW','Higher Macdonald'
4992
+ 'AU','2775','NSW','Laughtondale'
4993
+ 'AU','2775','NSW','Leets Vale'
4994
+ 'AU','2775','NSW','Lower Macdonald'
4995
+ 'AU','2775','NSW','Marlow'
4996
+ 'AU','2775','NSW','Mogo Creek'
4997
+ 'AU','2775','NSW','Perrys Crossing'
4998
+ 'AU','2775','NSW','Singletons Mill'
4999
+ 'AU','2775','NSW','Spencer'
5000
+ 'AU','2775','NSW','St Albans'
5001
+ 'AU','2775','NSW','Upper Macdonald'
5002
+ 'AU','2775','NSW','Webbs Creek'
5003
+ 'AU','2775','NSW','Wisemans Ferry'
5004
+ 'AU','2775','NSW','Wrights Creek'
5005
+ 'AU','2776','NSW','Faulconbridge'
5006
+ 'AU','2777','NSW','Hawkesbury Heights'
5007
+ 'AU','2777','NSW','Springwood'
5008
+ 'AU','2777','NSW','Sun Valley'
5009
+ 'AU','2777','NSW','Valley Heights'
5010
+ 'AU','2777','NSW','Winmalee'
5011
+ 'AU','2777','NSW','Yellow Rock'
5012
+ 'AU','2778','NSW','Bulls Camp'
5013
+ 'AU','2778','NSW','Linden'
5014
+ 'AU','2778','NSW','Woodford'
5015
+ 'AU','2779','NSW','Hazelbrook'
5016
+ 'AU','2780','NSW','Katoomba'
5017
+ 'AU','2780','NSW','Katoomba Dc'
5018
+ 'AU','2780','NSW','Leura'
5019
+ 'AU','2780','NSW','Medlow Bath'
5020
+ 'AU','2780','NSW','Yosemite'
5021
+ 'AU','2782','NSW','Wentworth Falls'
5022
+ 'AU','2783','NSW','Lawson'
5023
+ 'AU','2784','NSW','Bullaburra'
5024
+ 'AU','2785','NSW','Blackheath'
5025
+ 'AU','2785','NSW','Megalong'
5026
+ 'AU','2786','NSW','Bell'
5027
+ 'AU','2786','NSW','Dargan'
5028
+ 'AU','2786','NSW','Mount Irvine'
5029
+ 'AU','2786','NSW','Mount Victoria'
5030
+ 'AU','2786','NSW','Mount Wilson'
5031
+ 'AU','2787','NSW','Black Springs'
5032
+ 'AU','2787','NSW','Chatham Valley'
5033
+ 'AU','2787','NSW','Duckmaloi'
5034
+ 'AU','2787','NSW','Edith'
5035
+ 'AU','2787','NSW','Gingkin'
5036
+ 'AU','2787','NSW','Gurnang'
5037
+ 'AU','2787','NSW','Hazelgrove'
5038
+ 'AU','2787','NSW','Jaunter'
5039
+ 'AU','2787','NSW','Kanangra'
5040
+ 'AU','2787','NSW','Mayfield'
5041
+ 'AU','2787','NSW','Mount Olive'
5042
+ 'AU','2787','NSW','Mount Werong'
5043
+ 'AU','2787','NSW','Mozart'
5044
+ 'AU','2787','NSW','Norway'
5045
+ 'AU','2787','NSW','Oberon'
5046
+ 'AU','2787','NSW','Porters Retreat'
5047
+ 'AU','2787','NSW','Shooters Hill'
5048
+ 'AU','2787','NSW','Tarana'
5049
+ 'AU','2787','NSW','The Meadows'
5050
+ 'AU','2790','NSW','Ben Bullen'
5051
+ 'AU','2790','NSW','Blackmans Flat'
5052
+ 'AU','2790','NSW','Bowenfels'
5053
+ 'AU','2790','NSW','Clarence'
5054
+ 'AU','2790','NSW','Cobar Park'
5055
+ 'AU','2790','NSW','Corney Town'
5056
+ 'AU','2790','NSW','Cullen Bullen'
5057
+ 'AU','2790','NSW','Doctors Gap'
5058
+ 'AU','2790','NSW','Ganbenang'
5059
+ 'AU','2790','NSW','Hampton'
5060
+ 'AU','2790','NSW','Hartley'
5061
+ 'AU','2790','NSW','Hartley Vale'
5062
+ 'AU','2790','NSW','Hassans Walls'
5063
+ 'AU','2790','NSW','Hermitage Flat'
5064
+ 'AU','2790','NSW','Jenolan'
5065
+ 'AU','2790','NSW','Kanimbla'
5066
+ 'AU','2790','NSW','Lidsdale'
5067
+ 'AU','2790','NSW','Lithgow'
5068
+ 'AU','2790','NSW','Lithgow Dc'
5069
+ 'AU','2790','NSW','Little Hartley'
5070
+ 'AU','2790','NSW','Littleton'
5071
+ 'AU','2790','NSW','Lowther'
5072
+ 'AU','2790','NSW','Marrangaroo'
5073
+ 'AU','2790','NSW','Mckellars Park'
5074
+ 'AU','2790','NSW','Morts Estate'
5075
+ 'AU','2790','NSW','Mount Lambie'
5076
+ 'AU','2790','NSW','Newnes'
5077
+ 'AU','2790','NSW','Newnes Plateau'
5078
+ 'AU','2790','NSW','Oaky Park'
5079
+ 'AU','2790','NSW','Pottery Estate'
5080
+ 'AU','2790','NSW','Rydal'
5081
+ 'AU','2790','NSW','Sheedys Gully'
5082
+ 'AU','2790','NSW','Sodwalls'
5083
+ 'AU','2790','NSW','South Bowenfels'
5084
+ 'AU','2790','NSW','South Littleton'
5085
+ 'AU','2790','NSW','Springvale'
5086
+ 'AU','2790','NSW','State Mine Gully'
5087
+ 'AU','2790','NSW','Vale Of Clwydd'
5088
+ 'AU','2790','NSW','Wolgan Valley'
5089
+ 'AU','2790','NSW','Wollangambe'
5090
+ 'AU','2791','NSW','Carcoar'
5091
+ 'AU','2791','NSW','Errowanbang'
5092
+ 'AU','2792','NSW','Burnt Yards'
5093
+ 'AU','2792','NSW','Mandurama'
5094
+ 'AU','2793','NSW','Darbys Falls'
5095
+ 'AU','2793','NSW','Mount Mcdonald'
5096
+ 'AU','2793','NSW','Roseberg'
5097
+ 'AU','2793','NSW','Woodstock'
5098
+ 'AU','2794','NSW','Bumbaldry'
5099
+ 'AU','2794','NSW','Cowra'
5100
+ 'AU','2794','NSW','Hovells Creek'
5101
+ 'AU','2794','NSW','Mount Collins'
5102
+ 'AU','2794','NSW','Noonbinna'
5103
+ 'AU','2794','NSW','Wattamondara'
5104
+ 'AU','2795','NSW','Abercrombie'
5105
+ 'AU','2795','NSW','Abercrombie River'
5106
+ 'AU','2795','NSW','Arkell'
5107
+ 'AU','2795','NSW','Arkstone'
5108
+ 'AU','2795','NSW','Bald Ridge'
5109
+ 'AU','2795','NSW','Ballyroe'
5110
+ 'AU','2795','NSW','Bathampton'
5111
+ 'AU','2795','NSW','Bathurst'
5112
+ 'AU','2795','NSW','Billywillinga'
5113
+ 'AU','2795','NSW','Box Ridge'
5114
+ 'AU','2795','NSW','Brewongle'
5115
+ 'AU','2795','NSW','Bruinbun'
5116
+ 'AU','2795','NSW','Burraga'
5117
+ 'AU','2795','NSW','Caloola'
5118
+ 'AU','2795','NSW','Charles Sturt University'
5119
+ 'AU','2795','NSW','Charlton'
5120
+ 'AU','2795','NSW','Clear Creek'
5121
+ 'AU','2795','NSW','Colo'
5122
+ 'AU','2795','NSW','Copperhannia'
5123
+ 'AU','2795','NSW','Cow Flat'
5124
+ 'AU','2795','NSW','Crudine'
5125
+ 'AU','2795','NSW','Curragh'
5126
+ 'AU','2795','NSW','Dark Corner'
5127
+ 'AU','2795','NSW','Dog Rocks'
5128
+ 'AU','2795','NSW','Dunkeld'
5129
+ 'AU','2795','NSW','Duramana'
5130
+ 'AU','2795','NSW','Eglinton'
5131
+ 'AU','2795','NSW','Essington'
5132
+ 'AU','2795','NSW','Evans Plains'
5133
+ 'AU','2795','NSW','Fitzgeralds Valley'
5134
+ 'AU','2795','NSW','Forest Grove'
5135
+ 'AU','2795','NSW','Fosters Valley'
5136
+ 'AU','2795','NSW','Freemantle'
5137
+ 'AU','2795','NSW','Garthowen'
5138
+ 'AU','2795','NSW','Gemalla'
5139
+ 'AU','2795','NSW','Georges Plains'
5140
+ 'AU','2795','NSW','Gilmandyke'
5141
+ 'AU','2795','NSW','Glanmire'
5142
+ 'AU','2795','NSW','Gormans Hill'
5143
+ 'AU','2795','NSW','Gowan'
5144
+ 'AU','2795','NSW','Hobbys Yards'
5145
+ 'AU','2795','NSW','Isabella'
5146
+ 'AU','2795','NSW','Jeremy'
5147
+ 'AU','2795','NSW','Judds Creek'
5148
+ 'AU','2795','NSW','Kelso'
5149
+ 'AU','2795','NSW','Killongbutta'
5150
+ 'AU','2795','NSW','Kirkconnell'
5151
+ 'AU','2795','NSW','Laffing Waters'
5152
+ 'AU','2795','NSW','Limekilns'
5153
+ 'AU','2795','NSW','Llanarth'
5154
+ 'AU','2795','NSW','Locksley'
5155
+ 'AU','2795','NSW','Meadow Flat'
5156
+ 'AU','2795','NSW','Milkers Flat'
5157
+ 'AU','2795','NSW','Millah Murrah'
5158
+ 'AU','2795','NSW','Mitchell'
5159
+ 'AU','2795','NSW','Moorilda'
5160
+ 'AU','2795','NSW','Mount David'
5161
+ 'AU','2795','NSW','Mount Panorama'
5162
+ 'AU','2795','NSW','Mount Rankin'
5163
+ 'AU','2795','NSW','Napoleon Reef'
5164
+ 'AU','2795','NSW','Newbridge'
5165
+ 'AU','2795','NSW','O''Connell'
5166
+ 'AU','2795','NSW','Orton Park'
5167
+ 'AU','2795','NSW','Paling Yards'
5168
+ 'AU','2795','NSW','Palmers Oaky'
5169
+ 'AU','2795','NSW','Peel'
5170
+ 'AU','2795','NSW','Perthville'
5171
+ 'AU','2795','NSW','Raglan'
5172
+ 'AU','2795','NSW','Robin Hill'
5173
+ 'AU','2795','NSW','Rock Forest'
5174
+ 'AU','2795','NSW','Rockley'
5175
+ 'AU','2795','NSW','Rockley Mount'
5176
+ 'AU','2795','NSW','Sofala'
5177
+ 'AU','2795','NSW','South Bathurst'
5178
+ 'AU','2795','NSW','Stewarts Mount'
5179
+ 'AU','2795','NSW','Sunny Corner'
5180
+ 'AU','2795','NSW','Tambaroora'
5181
+ 'AU','2795','NSW','Tannas Mount'
5182
+ 'AU','2795','NSW','The Lagoon'
5183
+ 'AU','2795','NSW','The Rocks'
5184
+ 'AU','2795','NSW','Triangle Flat'
5185
+ 'AU','2795','NSW','Trunkey Creek'
5186
+ 'AU','2795','NSW','Turondale'
5187
+ 'AU','2795','NSW','Twenty Forests'
5188
+ 'AU','2795','NSW','Upper Turon'
5189
+ 'AU','2795','NSW','Walang'
5190
+ 'AU','2795','NSW','Wambool'
5191
+ 'AU','2795','NSW','Wattle Flat'
5192
+ 'AU','2795','NSW','Watton'
5193
+ 'AU','2795','NSW','West Bathurst'
5194
+ 'AU','2795','NSW','White Rock'
5195
+ 'AU','2795','NSW','Wiagdon'
5196
+ 'AU','2795','NSW','Wimbledon'
5197
+ 'AU','2795','NSW','Winburndale'
5198
+ 'AU','2795','NSW','Windradyne'
5199
+ 'AU','2795','NSW','Wisemans Creek'
5200
+ 'AU','2795','NSW','Yarras'
5201
+ 'AU','2795','NSW','Yetholme'
5202
+ 'AU','2796','NSW','Bathurst Mc'
5203
+ 'AU','2797','NSW','Garland'
5204
+ 'AU','2797','NSW','Lyndhurst'
5205
+ 'AU','2798','NSW','Byng'
5206
+ 'AU','2798','NSW','Flyers Creek'
5207
+ 'AU','2798','NSW','Forest Reefs'
5208
+ 'AU','2798','NSW','Guyong'
5209
+ 'AU','2798','NSW','Millthorpe'
5210
+ 'AU','2798','NSW','Spring Terrace'
5211
+ 'AU','2798','NSW','Tallwood'
5212
+ 'AU','2799','NSW','Barry'
5213
+ 'AU','2799','NSW','Blayney'
5214
+ 'AU','2799','NSW','Browns Creek'
5215
+ 'AU','2799','NSW','Fitzgeralds Mount'
5216
+ 'AU','2799','NSW','Kings Plains'
5217
+ 'AU','2799','NSW','Neville'
5218
+ 'AU','2799','NSW','Vittoria'
5219
+ 'AU','2800','NSW','Belgravia'
5220
+ 'AU','2800','NSW','Bloomfield'
5221
+ 'AU','2800','NSW','Borenore'
5222
+ 'AU','2800','NSW','Cadia'
5223
+ 'AU','2800','NSW','Canobolas'
5224
+ 'AU','2800','NSW','Cargo'
5225
+ 'AU','2800','NSW','Clergate'
5226
+ 'AU','2800','NSW','Clifton Grove'
5227
+ 'AU','2800','NSW','Emu Swamp'
5228
+ 'AU','2800','NSW','Four Mile Creek'
5229
+ 'AU','2800','NSW','Huntley'
5230
+ 'AU','2800','NSW','Kaleentha'
5231
+ 'AU','2800','NSW','Kangaroobie'
5232
+ 'AU','2800','NSW','Kerrs Creek'
5233
+ 'AU','2800','NSW','Lewis Ponds'
5234
+ 'AU','2800','NSW','Lidster'
5235
+ 'AU','2800','NSW','Long Point'
5236
+ 'AU','2800','NSW','Lower Lewis Ponds'
5237
+ 'AU','2800','NSW','Lucknow'
5238
+ 'AU','2800','NSW','March'
5239
+ 'AU','2800','NSW','Mullion Creek'
5240
+ 'AU','2800','NSW','Nangar'
5241
+ 'AU','2800','NSW','Nashdale'
5242
+ 'AU','2800','NSW','Ophir'
5243
+ 'AU','2800','NSW','Orange'
5244
+ 'AU','2800','NSW','Orange Dc'
5245
+ 'AU','2800','NSW','Orange East'
5246
+ 'AU','2800','NSW','Panuara'
5247
+ 'AU','2800','NSW','Pinnacle'
5248
+ 'AU','2800','NSW','Shadforth'
5249
+ 'AU','2800','NSW','Spring Creek'
5250
+ 'AU','2800','NSW','Spring Hill'
5251
+ 'AU','2800','NSW','Springside'
5252
+ 'AU','2800','NSW','Summer Hill Creek'
5253
+ 'AU','2800','NSW','Towac'
5254
+ 'AU','2800','NSW','Waldegrave'
5255
+ 'AU','2800','NSW','Windera'
5256
+ 'AU','2803','NSW','Bendick Murrell'
5257
+ 'AU','2803','NSW','Crowther'
5258
+ 'AU','2803','NSW','Wirrimah'
5259
+ 'AU','2804','NSW','Billimari'
5260
+ 'AU','2804','NSW','Canowindra'
5261
+ 'AU','2804','NSW','Moorbel'
5262
+ 'AU','2804','NSW','Nyrang Creek'
5263
+ 'AU','2805','NSW','Gooloogong'
5264
+ 'AU','2806','NSW','Eugowra'
5265
+ 'AU','2806','NSW','Eulimore'
5266
+ 'AU','2807','NSW','Koorawatha'
5267
+ 'AU','2808','NSW','Wyangala'
5268
+ 'AU','2809','NSW','Greenethorpe'
5269
+ 'AU','2810','NSW','Bimbi'
5270
+ 'AU','2810','NSW','Caragabal'
5271
+ 'AU','2810','NSW','Glenelg'
5272
+ 'AU','2810','NSW','Grenfell'
5273
+ 'AU','2810','NSW','Piney Range'
5274
+ 'AU','2810','NSW','Pinnacle'
5275
+ 'AU','2810','NSW','Pullabooka'
5276
+ 'AU','2810','NSW','Warraderry'
5277
+ 'AU','2820','NSW','Apsley'
5278
+ 'AU','2820','NSW','Arthurville'
5279
+ 'AU','2820','NSW','Bakers Swamp'
5280
+ 'AU','2820','NSW','Bodangora'
5281
+ 'AU','2820','NSW','Comobella'
5282
+ 'AU','2820','NSW','Curra Creek'
5283
+ 'AU','2820','NSW','Dripstone'
5284
+ 'AU','2820','NSW','Farnham'
5285
+ 'AU','2820','NSW','Gollan'
5286
+ 'AU','2820','NSW','Lake Burrendong'
5287
+ 'AU','2820','NSW','Maryvale'
5288
+ 'AU','2820','NSW','Medway'
5289
+ 'AU','2820','NSW','Montefiores'
5290
+ 'AU','2820','NSW','Mookerawa'
5291
+ 'AU','2820','NSW','Mount Aquila'
5292
+ 'AU','2820','NSW','Mount Arthur'
5293
+ 'AU','2820','NSW','Mumbil'
5294
+ 'AU','2820','NSW','Nanima'
5295
+ 'AU','2820','NSW','Neurea'
5296
+ 'AU','2820','NSW','Spicers Creek'
5297
+ 'AU','2820','NSW','Stuart Town'
5298
+ 'AU','2820','NSW','Suntop'
5299
+ 'AU','2820','NSW','Walmer'
5300
+ 'AU','2820','NSW','Wellington'
5301
+ 'AU','2820','NSW','Wuuluman'
5302
+ 'AU','2820','NSW','Yarragal'
5303
+ 'AU','2821','NSW','Burroway'
5304
+ 'AU','2821','NSW','Narromine'
5305
+ 'AU','2823','NSW','Bundemar'
5306
+ 'AU','2823','NSW','Cathundral'
5307
+ 'AU','2823','NSW','Dandaloo'
5308
+ 'AU','2823','NSW','Gin Gin'
5309
+ 'AU','2823','NSW','Trangie'
5310
+ 'AU','2824','NSW','Beemunnel'
5311
+ 'AU','2824','NSW','Eenaweena'
5312
+ 'AU','2824','NSW','Marthaguy'
5313
+ 'AU','2824','NSW','Mount Foster'
5314
+ 'AU','2824','NSW','Mount Harris'
5315
+ 'AU','2824','NSW','Mumblebone Plain'
5316
+ 'AU','2824','NSW','Oxley'
5317
+ 'AU','2824','NSW','Pigeonbah'
5318
+ 'AU','2824','NSW','Ravenswood'
5319
+ 'AU','2824','NSW','Red Hill'
5320
+ 'AU','2824','NSW','Snakes Plain'
5321
+ 'AU','2824','NSW','Tenandra'
5322
+ 'AU','2824','NSW','Warren'
5323
+ 'AU','2825','NSW','Babinda'
5324
+ 'AU','2825','NSW','Bobadah'
5325
+ 'AU','2825','NSW','Bogan'
5326
+ 'AU','2825','NSW','Buddabadah'
5327
+ 'AU','2825','NSW','Canonba'
5328
+ 'AU','2825','NSW','Five Ways'
5329
+ 'AU','2825','NSW','Honeybugle'
5330
+ 'AU','2825','NSW','Miandetta'
5331
+ 'AU','2825','NSW','Mulla'
5332
+ 'AU','2825','NSW','Mullengudgery'
5333
+ 'AU','2825','NSW','Murrawombie'
5334
+ 'AU','2825','NSW','Nyngan'
5335
+ 'AU','2825','NSW','Pangee'
5336
+ 'AU','2827','NSW','Bearbong'
5337
+ 'AU','2827','NSW','Biddon'
5338
+ 'AU','2827','NSW','Breelong'
5339
+ 'AU','2827','NSW','Collie'
5340
+ 'AU','2827','NSW','Curban'
5341
+ 'AU','2827','NSW','Gilgandra'
5342
+ 'AU','2827','NSW','Merrigal'
5343
+ 'AU','2828','NSW','Black Hollow'
5344
+ 'AU','2828','NSW','Bourbah'
5345
+ 'AU','2828','NSW','Gulargambone'
5346
+ 'AU','2828','NSW','Mount Tenandra'
5347
+ 'AU','2828','NSW','Quanda'
5348
+ 'AU','2828','NSW','Tonderburine'
5349
+ 'AU','2828','NSW','Warrumbungle'
5350
+ 'AU','2829','NSW','Combara'
5351
+ 'AU','2829','NSW','Conimbia'
5352
+ 'AU','2829','NSW','Coonamble'
5353
+ 'AU','2829','NSW','Gilgooma'
5354
+ 'AU','2829','NSW','Magometon'
5355
+ 'AU','2829','NSW','Nebea'
5356
+ 'AU','2829','NSW','Pine Grove'
5357
+ 'AU','2829','NSW','Teridgerie'
5358
+ 'AU','2829','NSW','Urawilkie'
5359
+ 'AU','2829','NSW','Wingadee'
5360
+ 'AU','2830','NSW','Ballimore'
5361
+ 'AU','2830','NSW','Barbigal'
5362
+ 'AU','2830','NSW','Beni'
5363
+ 'AU','2830','NSW','Benolong'
5364
+ 'AU','2830','NSW','Boothenba'
5365
+ 'AU','2830','NSW','Brocklehurst'
5366
+ 'AU','2830','NSW','Bruah'
5367
+ 'AU','2830','NSW','Bunglegumbie'
5368
+ 'AU','2830','NSW','Burrabadine'
5369
+ 'AU','2830','NSW','Butlers Falls'
5370
+ 'AU','2830','NSW','Coolbaggie'
5371
+ 'AU','2830','NSW','Cumboogle'
5372
+ 'AU','2830','NSW','Delroy Gardens'
5373
+ 'AU','2830','NSW','Dickygundi'
5374
+ 'AU','2830','NSW','Dubbo'
5375
+ 'AU','2830','NSW','Dubbo Dc'
5376
+ 'AU','2830','NSW','Dubbo East'
5377
+ 'AU','2830','NSW','Dubbo Grove'
5378
+ 'AU','2830','NSW','Dubbo West'
5379
+ 'AU','2830','NSW','Dungary'
5380
+ 'AU','2830','NSW','Erskine'
5381
+ 'AU','2830','NSW','Eschol'
5382
+ 'AU','2830','NSW','Eulomogo'
5383
+ 'AU','2830','NSW','Hyandra'
5384
+ 'AU','2830','NSW','Kickabil'
5385
+ 'AU','2830','NSW','Manera Heights'
5386
+ 'AU','2830','NSW','Minore'
5387
+ 'AU','2830','NSW','Mogriguy'
5388
+ 'AU','2830','NSW','Murrumbidgerie'
5389
+ 'AU','2830','NSW','North Dubbo'
5390
+ 'AU','2830','NSW','Orana Heights'
5391
+ 'AU','2830','NSW','Rawsonville'
5392
+ 'AU','2830','NSW','South Dubbo'
5393
+ 'AU','2830','NSW','Talbragar'
5394
+ 'AU','2830','NSW','Terramungamine'
5395
+ 'AU','2830','NSW','The Springs'
5396
+ 'AU','2830','NSW','Toongi'
5397
+ 'AU','2830','NSW','Troy Junction'
5398
+ 'AU','2830','NSW','Warrie'
5399
+ 'AU','2830','NSW','West Dubbo'
5400
+ 'AU','2830','NSW','Whylandra Crossing'
5401
+ 'AU','2831','NSW','Armatree'
5402
+ 'AU','2831','NSW','Balladoran'
5403
+ 'AU','2831','NSW','Billeroy'
5404
+ 'AU','2831','NSW','Brenda'
5405
+ 'AU','2831','NSW','Bullagreen'
5406
+ 'AU','2831','NSW','Byrock'
5407
+ 'AU','2831','NSW','Carinda'
5408
+ 'AU','2831','NSW','Coolabah'
5409
+ 'AU','2831','NSW','Elong Elong'
5410
+ 'AU','2831','NSW','Eumungerie'
5411
+ 'AU','2831','NSW','Geurie'
5412
+ 'AU','2831','NSW','Girilambone'
5413
+ 'AU','2831','NSW','Goodooga'
5414
+ 'AU','2831','NSW','Gungalman'
5415
+ 'AU','2831','NSW','Hermidale'
5416
+ 'AU','2831','NSW','Macquarie Marshes'
5417
+ 'AU','2831','NSW','Merrygoen'
5418
+ 'AU','2831','NSW','Muriel'
5419
+ 'AU','2831','NSW','Neilrex'
5420
+ 'AU','2831','NSW','Nevertire'
5421
+ 'AU','2831','NSW','Nubingerie'
5422
+ 'AU','2831','NSW','Nymagee'
5423
+ 'AU','2831','NSW','Pine Clump'
5424
+ 'AU','2831','NSW','Ponto'
5425
+ 'AU','2831','NSW','Quambone'
5426
+ 'AU','2831','NSW','Terrabella'
5427
+ 'AU','2831','NSW','The Marra'
5428
+ 'AU','2831','NSW','Tooloon'
5429
+ 'AU','2831','NSW','Tooraweenah'
5430
+ 'AU','2831','NSW','Westella'
5431
+ 'AU','2831','NSW','Wongarbon'
5432
+ 'AU','2832','NSW','Angledool'
5433
+ 'AU','2832','NSW','Boorooma'
5434
+ 'AU','2832','NSW','Come By Chance'
5435
+ 'AU','2832','NSW','Cryon'
5436
+ 'AU','2832','NSW','Cumborah'
5437
+ 'AU','2832','NSW','Walgett'
5438
+ 'AU','2833','NSW','Collarenebri'
5439
+ 'AU','2834','NSW','Lightning Ridge'
5440
+ 'AU','2835','NSW','Bulla'
5441
+ 'AU','2835','NSW','Canbelego'
5442
+ 'AU','2835','NSW','Cobar'
5443
+ 'AU','2835','NSW','Cubba'
5444
+ 'AU','2835','NSW','Gilgunnia'
5445
+ 'AU','2835','NSW','Irymple'
5446
+ 'AU','2835','NSW','Kerrigundi'
5447
+ 'AU','2835','NSW','Kulwin'
5448
+ 'AU','2835','NSW','Lerida'
5449
+ 'AU','2835','NSW','Noona'
5450
+ 'AU','2835','NSW','Sandy Creek'
5451
+ 'AU','2835','NSW','Tindarey'
5452
+ 'AU','2836','NSW','Gemville'
5453
+ 'AU','2836','NSW','White Cliffs'
5454
+ 'AU','2836','NSW','Wilcannia'
5455
+ 'AU','2839','NSW','Bogan'
5456
+ 'AU','2839','NSW','Brewarrina'
5457
+ 'AU','2839','NSW','Gongolgon'
5458
+ 'AU','2839','NSW','Talawanta'
5459
+ 'AU','2839','NSW','Weilmoringle'
5460
+ 'AU','2840','NSW','Barringun'
5461
+ 'AU','2840','NSW','Bourke'
5462
+ 'AU','2840','NSW','Enngonia'
5463
+ 'AU','2840','NSW','Fords Bridge'
5464
+ 'AU','2840','NSW','Gumbalie'
5465
+ 'AU','2840','NSW','Gunderbooka'
5466
+ 'AU','2840','NSW','Hungerford'
5467
+ 'AU','2840','NSW','Louth'
5468
+ 'AU','2840','NSW','Tilpa'
5469
+ 'AU','2840','NSW','Urisino'
5470
+ 'AU','2840','NSW','Wanaaring'
5471
+ 'AU','2840','NSW','Yantabulla'
5472
+ 'AU','2842','NSW','Mendooran'
5473
+ 'AU','2842','NSW','Mollyan'
5474
+ 'AU','2842','NSW','Wattle Springs'
5475
+ 'AU','2842','NSW','Yarragrin'
5476
+ 'AU','2843','NSW','Coolah'
5477
+ 'AU','2844','NSW','Birriwa'
5478
+ 'AU','2844','NSW','Dunedoo'
5479
+ 'AU','2844','NSW','Leadville'
5480
+ 'AU','2845','NSW','Wallerawang'
5481
+ 'AU','2846','NSW','Capertee'
5482
+ 'AU','2846','NSW','Glen Davis'
5483
+ 'AU','2846','NSW','Kangaroo Flat'
5484
+ 'AU','2846','NSW','Round Swamp'
5485
+ 'AU','2847','NSW','Portland'
5486
+ 'AU','2848','NSW','Brogans Creek'
5487
+ 'AU','2848','NSW','Charbon'
5488
+ 'AU','2848','NSW','Clandulla'
5489
+ 'AU','2848','NSW','Kandos'
5490
+ 'AU','2849','NSW','Bogee'
5491
+ 'AU','2849','NSW','Breakfast Creek'
5492
+ 'AU','2849','NSW','Budden'
5493
+ 'AU','2849','NSW','Bylong'
5494
+ 'AU','2849','NSW','Camboon'
5495
+ 'AU','2849','NSW','Carwell'
5496
+ 'AU','2849','NSW','Coggan'
5497
+ 'AU','2849','NSW','Coxs Creek'
5498
+ 'AU','2849','NSW','Coxs Crown'
5499
+ 'AU','2849','NSW','Dabee'
5500
+ 'AU','2849','NSW','Dungeree'
5501
+ 'AU','2849','NSW','Dunville Loop'
5502
+ 'AU','2849','NSW','Ginghi'
5503
+ 'AU','2849','NSW','Glen Alice'
5504
+ 'AU','2849','NSW','Growee'
5505
+ 'AU','2849','NSW','Kelgoola'
5506
+ 'AU','2849','NSW','Lee Creek'
5507
+ 'AU','2849','NSW','Mount Marsden'
5508
+ 'AU','2849','NSW','Murrumbo'
5509
+ 'AU','2849','NSW','Nullo Mountain'
5510
+ 'AU','2849','NSW','Olinda'
5511
+ 'AU','2849','NSW','Pinnacle Swamp'
5512
+ 'AU','2849','NSW','Pyangle'
5513
+ 'AU','2849','NSW','Reedy Creek'
5514
+ 'AU','2849','NSW','Rylstone'
5515
+ 'AU','2849','NSW','Upper Bylong'
5516
+ 'AU','2849','NSW','Upper Growee'
5517
+ 'AU','2849','NSW','Upper Nile'
5518
+ 'AU','2849','NSW','Wirraba'
5519
+ 'AU','2850','NSW','Aarons Pass'
5520
+ 'AU','2850','NSW','Apple Tree Flat'
5521
+ 'AU','2850','NSW','Avisford'
5522
+ 'AU','2850','NSW','Bara'
5523
+ 'AU','2850','NSW','Barigan'
5524
+ 'AU','2850','NSW','Ben Buckley'
5525
+ 'AU','2850','NSW','Bocoble'
5526
+ 'AU','2850','NSW','Bombira'
5527
+ 'AU','2850','NSW','Botobolar'
5528
+ 'AU','2850','NSW','Buckaroo'
5529
+ 'AU','2850','NSW','Budgee Budgee'
5530
+ 'AU','2850','NSW','Burrundulla'
5531
+ 'AU','2850','NSW','Caerleon'
5532
+ 'AU','2850','NSW','Canadian Lead'
5533
+ 'AU','2850','NSW','Carcalgong'
5534
+ 'AU','2850','NSW','Collingwood'
5535
+ 'AU','2850','NSW','Cooks Gap'
5536
+ 'AU','2850','NSW','Cooyal'
5537
+ 'AU','2850','NSW','Cross Roads'
5538
+ 'AU','2850','NSW','Cudgegong'
5539
+ 'AU','2850','NSW','Cullenbone'
5540
+ 'AU','2850','NSW','Cumbo'
5541
+ 'AU','2850','NSW','Erudgere'
5542
+ 'AU','2850','NSW','Eurunderee'
5543
+ 'AU','2850','NSW','Frog Rock'
5544
+ 'AU','2850','NSW','Galambine'
5545
+ 'AU','2850','NSW','Glen Ayr'
5546
+ 'AU','2850','NSW','Grattai'
5547
+ 'AU','2850','NSW','Green Gully'
5548
+ 'AU','2850','NSW','Hargraves'
5549
+ 'AU','2850','NSW','Havilah'
5550
+ 'AU','2850','NSW','Hayes Gap'
5551
+ 'AU','2850','NSW','Hill End'
5552
+ 'AU','2850','NSW','Home Rule'
5553
+ 'AU','2850','NSW','Ilford'
5554
+ 'AU','2850','NSW','Kains Flat'
5555
+ 'AU','2850','NSW','Linburn'
5556
+ 'AU','2850','NSW','Lue'
5557
+ 'AU','2850','NSW','Maitland Bar'
5558
+ 'AU','2850','NSW','Menah'
5559
+ 'AU','2850','NSW','Meroo'
5560
+ 'AU','2850','NSW','Milroy'
5561
+ 'AU','2850','NSW','Mogo'
5562
+ 'AU','2850','NSW','Monivae'
5563
+ 'AU','2850','NSW','Moolarben'
5564
+ 'AU','2850','NSW','Mount Frome'
5565
+ 'AU','2850','NSW','Mount Knowles'
5566
+ 'AU','2850','NSW','Mount Vincent'
5567
+ 'AU','2850','NSW','Mudgee'
5568
+ 'AU','2850','NSW','Mullamuddy'
5569
+ 'AU','2850','NSW','Munghorn'
5570
+ 'AU','2850','NSW','Piambong'
5571
+ 'AU','2850','NSW','Putta Bucca'
5572
+ 'AU','2850','NSW','Pyramul'
5573
+ 'AU','2850','NSW','Queens Pinch'
5574
+ 'AU','2850','NSW','Razorback'
5575
+ 'AU','2850','NSW','Riverlea'
5576
+ 'AU','2850','NSW','Running Stream'
5577
+ 'AU','2850','NSW','Sallys Flat'
5578
+ 'AU','2850','NSW','Spring Flat'
5579
+ 'AU','2850','NSW','St Fillans'
5580
+ 'AU','2850','NSW','Stony Creek'
5581
+ 'AU','2850','NSW','Tambaroora'
5582
+ 'AU','2850','NSW','Tichular'
5583
+ 'AU','2850','NSW','Totnes Valley'
5584
+ 'AU','2850','NSW','Triamble'
5585
+ 'AU','2850','NSW','Turill'
5586
+ 'AU','2850','NSW','Twelve Mile'
5587
+ 'AU','2850','NSW','Ulan'
5588
+ 'AU','2850','NSW','Ullamalla'
5589
+ 'AU','2850','NSW','Wilbetree'
5590
+ 'AU','2850','NSW','Wilpinjong'
5591
+ 'AU','2850','NSW','Windeyer'
5592
+ 'AU','2850','NSW','Wollar'
5593
+ 'AU','2850','NSW','Worlds End'
5594
+ 'AU','2850','NSW','Yarrabin'
5595
+ 'AU','2850','NSW','Yarrawonga'
5596
+ 'AU','2852','NSW','Barneys Reef'
5597
+ 'AU','2852','NSW','Beryl'
5598
+ 'AU','2852','NSW','Biraganbil'
5599
+ 'AU','2852','NSW','Bungaba'
5600
+ 'AU','2852','NSW','Cope'
5601
+ 'AU','2852','NSW','Cumbandry'
5602
+ 'AU','2852','NSW','Goolma'
5603
+ 'AU','2852','NSW','Gulgong'
5604
+ 'AU','2852','NSW','Mebul'
5605
+ 'AU','2852','NSW','Merotherie'
5606
+ 'AU','2852','NSW','Stubbo'
5607
+ 'AU','2852','NSW','Tallawang'
5608
+ 'AU','2864','NSW','Boree'
5609
+ 'AU','2864','NSW','Bowan Park'
5610
+ 'AU','2864','NSW','Cudal'
5611
+ 'AU','2864','NSW','Murga'
5612
+ 'AU','2864','NSW','Toogong'
5613
+ 'AU','2865','NSW','Bocobra'
5614
+ 'AU','2865','NSW','Gregra'
5615
+ 'AU','2865','NSW','Gumble'
5616
+ 'AU','2865','NSW','Manildra'
5617
+ 'AU','2866','NSW','Amaroo'
5618
+ 'AU','2866','NSW','Boomey'
5619
+ 'AU','2866','NSW','Copper Hill'
5620
+ 'AU','2866','NSW','Cundumbul'
5621
+ 'AU','2866','NSW','Euchareena'
5622
+ 'AU','2866','NSW','Garra'
5623
+ 'AU','2866','NSW','Larras Lee'
5624
+ 'AU','2866','NSW','Molong'
5625
+ 'AU','2867','NSW','Baldry'
5626
+ 'AU','2867','NSW','Cumnock'
5627
+ 'AU','2867','NSW','Eurimbla'
5628
+ 'AU','2867','NSW','Loombah'
5629
+ 'AU','2867','NSW','Yullundry'
5630
+ 'AU','2868','NSW','Bournewood'
5631
+ 'AU','2868','NSW','North Yeoval'
5632
+ 'AU','2868','NSW','Obley'
5633
+ 'AU','2868','NSW','Yeoval'
5634
+ 'AU','2869','NSW','Peak Hill'
5635
+ 'AU','2869','NSW','Tomingley'
5636
+ 'AU','2869','NSW','Trewilga'
5637
+ 'AU','2870','NSW','Alectown'
5638
+ 'AU','2870','NSW','Beargamil'
5639
+ 'AU','2870','NSW','Bindogundra'
5640
+ 'AU','2870','NSW','Brolgan'
5641
+ 'AU','2870','NSW','Bumberry'
5642
+ 'AU','2870','NSW','Cookamidgera'
5643
+ 'AU','2870','NSW','Cooks Myalls'
5644
+ 'AU','2870','NSW','Goobang'
5645
+ 'AU','2870','NSW','Goonumbla'
5646
+ 'AU','2870','NSW','Kadina'
5647
+ 'AU','2870','NSW','Mandagery'
5648
+ 'AU','2870','NSW','Mickibri'
5649
+ 'AU','2870','NSW','Mugincoble'
5650
+ 'AU','2870','NSW','Nanardine'
5651
+ 'AU','2870','NSW','Parkes'
5652
+ 'AU','2870','NSW','Parkesborough'
5653
+ 'AU','2870','NSW','Shallow Rush'
5654
+ 'AU','2870','NSW','Tichborne'
5655
+ 'AU','2871','NSW','Bandon'
5656
+ 'AU','2871','NSW','Bedgerebong'
5657
+ 'AU','2871','NSW','Bundaburrah'
5658
+ 'AU','2871','NSW','Calarie'
5659
+ 'AU','2871','NSW','Carrawabbity'
5660
+ 'AU','2871','NSW','Corinella'
5661
+ 'AU','2871','NSW','Cumbijowa'
5662
+ 'AU','2871','NSW','Daroobalgie'
5663
+ 'AU','2871','NSW','Fairholme'
5664
+ 'AU','2871','NSW','Forbes'
5665
+ 'AU','2871','NSW','Garema'
5666
+ 'AU','2871','NSW','Grawlin'
5667
+ 'AU','2871','NSW','Gunning Gap'
5668
+ 'AU','2871','NSW','Jemalong'
5669
+ 'AU','2871','NSW','Mulyandry'
5670
+ 'AU','2871','NSW','Ooma'
5671
+ 'AU','2871','NSW','Warroo'
5672
+ 'AU','2871','NSW','Weelong'
5673
+ 'AU','2871','NSW','Wirrinya'
5674
+ 'AU','2871','NSW','Yarragong'
5675
+ 'AU','2873','NSW','Albert'
5676
+ 'AU','2873','NSW','Lansdale'
5677
+ 'AU','2873','NSW','Miamley'
5678
+ 'AU','2873','NSW','Miamley North'
5679
+ 'AU','2873','NSW','Tottenham'
5680
+ 'AU','2874','NSW','Tullamore'
5681
+ 'AU','2874','NSW','Yethera'
5682
+ 'AU','2875','NSW','Bruie Plains'
5683
+ 'AU','2875','NSW','Fifield'
5684
+ 'AU','2875','NSW','Ootha'
5685
+ 'AU','2875','NSW','The Troffs'
5686
+ 'AU','2875','NSW','Trundle'
5687
+ 'AU','2875','NSW','Yarrabandai'
5688
+ 'AU','2876','NSW','Bogan Gate'
5689
+ 'AU','2876','NSW','Botfields'
5690
+ 'AU','2876','NSW','Gunningbland'
5691
+ 'AU','2876','NSW','Nelungaloo'
5692
+ 'AU','2877','NSW','Boona Mount'
5693
+ 'AU','2877','NSW','Condobolin'
5694
+ 'AU','2877','NSW','Derriwong'
5695
+ 'AU','2877','NSW','Eremerang'
5696
+ 'AU','2877','NSW','Euabalong'
5697
+ 'AU','2877','NSW','Euabalong West'
5698
+ 'AU','2877','NSW','Kiacatoo'
5699
+ 'AU','2877','NSW','Milby'
5700
+ 'AU','2877','NSW','Mount Hope'
5701
+ 'AU','2877','NSW','Mulguthrie'
5702
+ 'AU','2878','NSW','Beilpajah'
5703
+ 'AU','2878','NSW','Conoble'
5704
+ 'AU','2878','NSW','Ivanhoe'
5705
+ 'AU','2878','NSW','Manara'
5706
+ 'AU','2878','NSW','Mossgiel'
5707
+ 'AU','2878','NSW','Trida'
5708
+ 'AU','2879','NSW','Copi Hollow'
5709
+ 'AU','2879','NSW','Menindee'
5710
+ 'AU','2880','NSW','Broken Hill'
5711
+ 'AU','2880','NSW','Broken Hill North'
5712
+ 'AU','2880','NSW','Broken Hill West'
5713
+ 'AU','2880','NSW','Burns'
5714
+ 'AU','2880','NSW','Cameron Corner'
5715
+ 'AU','2880','NSW','Euriowie'
5716
+ 'AU','2880','NSW','Fowlers Gap'
5717
+ 'AU','2880','NSW','Kinalung'
5718
+ 'AU','2880','NSW','Little Topar'
5719
+ 'AU','2880','NSW','Milparinka'
5720
+ 'AU','2880','NSW','Mount Gipps'
5721
+ 'AU','2880','NSW','Packsaddle'
5722
+ 'AU','2880','NSW','Silverton'
5723
+ 'AU','2880','NSW','South Broken Hill'
5724
+ 'AU','2880','NSW','Stephens Creek'
5725
+ 'AU','2880','NSW','Tibooburra'
5726
+ 'AU','2890','NSW','Australian Defence Forces'
5727
+ 'AU','2891','NSW','Sydney Gateway Facility'
5728
+ 'AU','2898','NSW','Lord Howe Island'
5729
+ 'AU','2899','NSW','Norfolk Island'
5730
+ 'AU','2900','ACT','Greenway'
5731
+ 'AU','2900','ACT','Tuggeranong'
5732
+ 'AU','2901','ACT','Tuggeranong Dc'
5733
+ 'AU','2902','ACT','Kambah'
5734
+ 'AU','2903','ACT','Erindale Centre'
5735
+ 'AU','2903','ACT','Oxley'
5736
+ 'AU','2903','ACT','Wanniassa'
5737
+ 'AU','2904','ACT','Fadden'
5738
+ 'AU','2904','ACT','Gowrie'
5739
+ 'AU','2904','ACT','Macarthur'
5740
+ 'AU','2904','ACT','Monash'
5741
+ 'AU','2905','ACT','Bonython'
5742
+ 'AU','2905','ACT','Calwell'
5743
+ 'AU','2905','ACT','Chisholm'
5744
+ 'AU','2905','ACT','Gilmore'
5745
+ 'AU','2905','ACT','Isabella Plains'
5746
+ 'AU','2905','ACT','Richardson'
5747
+ 'AU','2905','ACT','Theodore'
5748
+ 'AU','2906','ACT','Banks'
5749
+ 'AU','2906','ACT','Conder'
5750
+ 'AU','2906','ACT','Gordon'
5751
+ 'AU','2911','ACT','Crace'
5752
+ 'AU','2911','ACT','Mitchell'
5753
+ 'AU','2912','ACT','Gungahlin'
5754
+ 'AU','2913','ACT','Franklin'
5755
+ 'AU','2913','ACT','Ginninderra Village'
5756
+ 'AU','2913','ACT','Ngunnawal'
5757
+ 'AU','2913','ACT','Nicholls'
5758
+ 'AU','2913','ACT','Palmerston'
5759
+ 'AU','2914','ACT','Amaroo'
5760
+ 'AU','2914','ACT','Bonner'
5761
+ 'AU','2914','ACT','Forde'
5762
+ 'AU','2914','ACT','Harrison'
5763
+ 'AU','3000','VIC','Melbourne'
5764
+ 'AU','3001','VIC','Melbourne'
5765
+ 'AU','3002','VIC','East Melbourne'
5766
+ 'AU','3003','VIC','West Melbourne'
5767
+ 'AU','3004','VIC','Melbourne'
5768
+ 'AU','3004','VIC','St Kilda Road Central'
5769
+ 'AU','3005','VIC','World Trade Centre'
5770
+ 'AU','3006','VIC','Southbank'
5771
+ 'AU','3008','VIC','Docklands'
5772
+ 'AU','3010','VIC','University Of Melbourne'
5773
+ 'AU','3011','VIC','Footscray'
5774
+ 'AU','3011','VIC','Seddon'
5775
+ 'AU','3011','VIC','Seddon West'
5776
+ 'AU','3012','VIC','Brooklyn'
5777
+ 'AU','3012','VIC','Kingsville'
5778
+ 'AU','3012','VIC','Kingsville West'
5779
+ 'AU','3012','VIC','Maidstone'
5780
+ 'AU','3012','VIC','Tottenham'
5781
+ 'AU','3012','VIC','West Footscray'
5782
+ 'AU','3013','VIC','Yarraville'
5783
+ 'AU','3013','VIC','Yarraville West'
5784
+ 'AU','3015','VIC','Newport'
5785
+ 'AU','3015','VIC','South Kingsville'
5786
+ 'AU','3015','VIC','Spotswood'
5787
+ 'AU','3016','VIC','Williamstown'
5788
+ 'AU','3016','VIC','Williamstown North'
5789
+ 'AU','3018','VIC','Altona'
5790
+ 'AU','3018','VIC','Seaholme'
5791
+ 'AU','3019','VIC','Braybrook'
5792
+ 'AU','3019','VIC','Braybrook North'
5793
+ 'AU','3019','VIC','Robinson'
5794
+ 'AU','3020','VIC','Albion'
5795
+ 'AU','3020','VIC','Glengala'
5796
+ 'AU','3020','VIC','Sunshine'
5797
+ 'AU','3020','VIC','Sunshine North'
5798
+ 'AU','3020','VIC','Sunshine West'
5799
+ 'AU','3021','VIC','Albanvale'
5800
+ 'AU','3021','VIC','Kealba'
5801
+ 'AU','3021','VIC','Kings Park'
5802
+ 'AU','3021','VIC','St Albans'
5803
+ 'AU','3022','VIC','Ardeer'
5804
+ 'AU','3022','VIC','Deer Park East'
5805
+ 'AU','3023','VIC','Burnside'
5806
+ 'AU','3023','VIC','Burnside Heights'
5807
+ 'AU','3023','VIC','Cairnlea'
5808
+ 'AU','3023','VIC','Caroline Springs'
5809
+ 'AU','3023','VIC','Deer Park'
5810
+ 'AU','3023','VIC','Deer Park North'
5811
+ 'AU','3023','VIC','Ravenhall'
5812
+ 'AU','3024','VIC','Mambourin'
5813
+ 'AU','3024','VIC','Mount Cottrell'
5814
+ 'AU','3024','VIC','Wyndham Vale'
5815
+ 'AU','3025','VIC','Altona East'
5816
+ 'AU','3025','VIC','Altona Gate'
5817
+ 'AU','3025','VIC','Altona North'
5818
+ 'AU','3026','VIC','Laverton North'
5819
+ 'AU','3027','VIC','Laverton Raaf'
5820
+ 'AU','3027','VIC','Williams Landing'
5821
+ 'AU','3027','VIC','Williams Raaf'
5822
+ 'AU','3028','VIC','Altona Meadows'
5823
+ 'AU','3028','VIC','Laverton'
5824
+ 'AU','3028','VIC','Seabrook'
5825
+ 'AU','3029','VIC','Hoppers Crossing'
5826
+ 'AU','3029','VIC','Tarneit'
5827
+ 'AU','3029','VIC','Truganina'
5828
+ 'AU','3030','VIC','Cocoroc'
5829
+ 'AU','3030','VIC','Derrimut'
5830
+ 'AU','3030','VIC','Point Cook'
5831
+ 'AU','3030','VIC','Quandong'
5832
+ 'AU','3030','VIC','Werribee'
5833
+ 'AU','3030','VIC','Werribee South'
5834
+ 'AU','3031','VIC','Flemington'
5835
+ 'AU','3031','VIC','Kensington'
5836
+ 'AU','3032','VIC','Ascot Vale'
5837
+ 'AU','3032','VIC','Highpoint City'
5838
+ 'AU','3032','VIC','Maribyrnong'
5839
+ 'AU','3032','VIC','Travancore'
5840
+ 'AU','3033','VIC','Keilor East'
5841
+ 'AU','3034','VIC','Avondale Heights'
5842
+ 'AU','3036','VIC','Keilor'
5843
+ 'AU','3036','VIC','Keilor North'
5844
+ 'AU','3037','VIC','Delahey'
5845
+ 'AU','3037','VIC','Hillside'
5846
+ 'AU','3037','VIC','Sydenham'
5847
+ 'AU','3037','VIC','Taylors Hill'
5848
+ 'AU','3038','VIC','Keilor Downs'
5849
+ 'AU','3038','VIC','Keilor Lodge'
5850
+ 'AU','3038','VIC','Taylors Lakes'
5851
+ 'AU','3038','VIC','Watergardens'
5852
+ 'AU','3039','VIC','Moonee Ponds'
5853
+ 'AU','3040','VIC','Aberfeldie'
5854
+ 'AU','3040','VIC','Essendon'
5855
+ 'AU','3040','VIC','Essendon West'
5856
+ 'AU','3041','VIC','Essendon North'
5857
+ 'AU','3041','VIC','Strathmore'
5858
+ 'AU','3041','VIC','Strathmore Heights'
5859
+ 'AU','3042','VIC','Airport West'
5860
+ 'AU','3042','VIC','Keilor Park'
5861
+ 'AU','3042','VIC','Niddrie'
5862
+ 'AU','3043','VIC','Gladstone Park'
5863
+ 'AU','3043','VIC','Gowanbrae'
5864
+ 'AU','3043','VIC','Tullamarine'
5865
+ 'AU','3044','VIC','Pascoe Vale'
5866
+ 'AU','3044','VIC','Pascoe Vale South'
5867
+ 'AU','3045','VIC','Melbourne Airport'
5868
+ 'AU','3046','VIC','Glenroy'
5869
+ 'AU','3046','VIC','Hadfield'
5870
+ 'AU','3046','VIC','Oak Park'
5871
+ 'AU','3047','VIC','Broadmeadows'
5872
+ 'AU','3047','VIC','Dallas'
5873
+ 'AU','3047','VIC','Jacana'
5874
+ 'AU','3048','VIC','Coolaroo'
5875
+ 'AU','3048','VIC','Meadow Heights'
5876
+ 'AU','3049','VIC','Attwood'
5877
+ 'AU','3049','VIC','Calder Park'
5878
+ 'AU','3049','VIC','Westmeadows'
5879
+ 'AU','3050','VIC','Royal Melbourne Hospital'
5880
+ 'AU','3051','VIC','Hotham Hill'
5881
+ 'AU','3051','VIC','North Melbourne'
5882
+ 'AU','3052','VIC','Melbourne University'
5883
+ 'AU','3052','VIC','Parkville'
5884
+ 'AU','3053','VIC','Carlton'
5885
+ 'AU','3053','VIC','Carlton South'
5886
+ 'AU','3054','VIC','Carlton North'
5887
+ 'AU','3054','VIC','Princes Hill'
5888
+ 'AU','3055','VIC','Brunswick South'
5889
+ 'AU','3055','VIC','Brunswick West'
5890
+ 'AU','3055','VIC','Moonee Vale'
5891
+ 'AU','3055','VIC','Moreland West'
5892
+ 'AU','3056','VIC','Brunswick'
5893
+ 'AU','3056','VIC','Brunswick Lower'
5894
+ 'AU','3056','VIC','Brunswick North'
5895
+ 'AU','3057','VIC','Brunswick East'
5896
+ 'AU','3057','VIC','Lygon Street North'
5897
+ 'AU','3058','VIC','Batman'
5898
+ 'AU','3058','VIC','Coburg'
5899
+ 'AU','3058','VIC','Coburg North'
5900
+ 'AU','3058','VIC','Merlynston'
5901
+ 'AU','3058','VIC','Moreland'
5902
+ 'AU','3059','VIC','Greenvale'
5903
+ 'AU','3060','VIC','Fawkner'
5904
+ 'AU','3060','VIC','Fawkner East'
5905
+ 'AU','3060','VIC','Fawkner North'
5906
+ 'AU','3061','VIC','Campbellfield'
5907
+ 'AU','3062','VIC','Somerton'
5908
+ 'AU','3063','VIC','Oaklands Junction'
5909
+ 'AU','3063','VIC','Yuroke'
5910
+ 'AU','3064','VIC','Craigieburn'
5911
+ 'AU','3064','VIC','Donnybrook'
5912
+ 'AU','3064','VIC','Kalkallo'
5913
+ 'AU','3064','VIC','Mickleham'
5914
+ 'AU','3064','VIC','Roxburgh Park'
5915
+ 'AU','3065','VIC','Fitzroy'
5916
+ 'AU','3066','VIC','Collingwood'
5917
+ 'AU','3066','VIC','Collingwood North'
5918
+ 'AU','3067','VIC','Abbotsford'
5919
+ 'AU','3068','VIC','Clifton Hill'
5920
+ 'AU','3068','VIC','Fitzroy North'
5921
+ 'AU','3070','VIC','Northcote'
5922
+ 'AU','3070','VIC','Northcote South'
5923
+ 'AU','3071','VIC','Thornbury'
5924
+ 'AU','3072','VIC','Gilberton'
5925
+ 'AU','3072','VIC','Northland Centre'
5926
+ 'AU','3072','VIC','Preston'
5927
+ 'AU','3072','VIC','Preston Lower'
5928
+ 'AU','3072','VIC','Preston South'
5929
+ 'AU','3072','VIC','Preston West'
5930
+ 'AU','3072','VIC','Regent West'
5931
+ 'AU','3073','VIC','Keon Park'
5932
+ 'AU','3073','VIC','Reservoir'
5933
+ 'AU','3073','VIC','Reservoir East'
5934
+ 'AU','3073','VIC','Reservoir North'
5935
+ 'AU','3073','VIC','Reservoir South'
5936
+ 'AU','3074','VIC','Thomastown'
5937
+ 'AU','3075','VIC','Lalor'
5938
+ 'AU','3075','VIC','Lalor Plaza'
5939
+ 'AU','3076','VIC','Epping'
5940
+ 'AU','3076','VIC','Epping Dc'
5941
+ 'AU','3078','VIC','Alphington'
5942
+ 'AU','3078','VIC','Fairfield'
5943
+ 'AU','3079','VIC','Ivanhoe'
5944
+ 'AU','3079','VIC','Ivanhoe East'
5945
+ 'AU','3079','VIC','Ivanhoe North'
5946
+ 'AU','3081','VIC','Bellfield'
5947
+ 'AU','3081','VIC','Heidelberg Heights'
5948
+ 'AU','3081','VIC','Heidelberg Rgh'
5949
+ 'AU','3081','VIC','Heidelberg West'
5950
+ 'AU','3082','VIC','Mill Park'
5951
+ 'AU','3083','VIC','Bundoora'
5952
+ 'AU','3083','VIC','Kingsbury'
5953
+ 'AU','3083','VIC','La Trobe University'
5954
+ 'AU','3084','VIC','Banyule'
5955
+ 'AU','3084','VIC','Eaglemont'
5956
+ 'AU','3084','VIC','Heidelberg'
5957
+ 'AU','3084','VIC','Rosanna'
5958
+ 'AU','3084','VIC','Viewbank'
5959
+ 'AU','3085','VIC','Macleod'
5960
+ 'AU','3085','VIC','Macleod West'
5961
+ 'AU','3085','VIC','Yallambie'
5962
+ 'AU','3086','VIC','La Trobe University'
5963
+ 'AU','3087','VIC','Watsonia'
5964
+ 'AU','3087','VIC','Watsonia North'
5965
+ 'AU','3088','VIC','Briar Hill'
5966
+ 'AU','3088','VIC','Greensborough'
5967
+ 'AU','3088','VIC','Saint Helena'
5968
+ 'AU','3089','VIC','Diamond Creek'
5969
+ 'AU','3090','VIC','Plenty'
5970
+ 'AU','3091','VIC','Yarrambat'
5971
+ 'AU','3093','VIC','Lower Plenty'
5972
+ 'AU','3094','VIC','Montmorency'
5973
+ 'AU','3095','VIC','Eltham'
5974
+ 'AU','3095','VIC','Eltham North'
5975
+ 'AU','3095','VIC','Research'
5976
+ 'AU','3096','VIC','Wattle Glen'
5977
+ 'AU','3097','VIC','Bend Of Islands'
5978
+ 'AU','3097','VIC','Kangaroo Ground'
5979
+ 'AU','3097','VIC','Watsons Creek'
5980
+ 'AU','3099','VIC','Arthurs Creek'
5981
+ 'AU','3099','VIC','Cottles Bridge'
5982
+ 'AU','3099','VIC','Hurstbridge'
5983
+ 'AU','3099','VIC','Nutfield'
5984
+ 'AU','3099','VIC','Strathewen'
5985
+ 'AU','3101','VIC','Cotham'
5986
+ 'AU','3101','VIC','Kew'
5987
+ 'AU','3102','VIC','Kew East'
5988
+ 'AU','3103','VIC','Balwyn'
5989
+ 'AU','3103','VIC','Balwyn East'
5990
+ 'AU','3104','VIC','Balwyn North'
5991
+ 'AU','3104','VIC','Greythorn'
5992
+ 'AU','3105','VIC','Bulleen'
5993
+ 'AU','3105','VIC','Bulleen South'
5994
+ 'AU','3106','VIC','Templestowe'
5995
+ 'AU','3107','VIC','Templestowe Lower'
5996
+ 'AU','3108','VIC','Doncaster'
5997
+ 'AU','3109','VIC','Doncaster East'
5998
+ 'AU','3109','VIC','Doncaster Heights'
5999
+ 'AU','3109','VIC','The Pines'
6000
+ 'AU','3109','VIC','Tunstall Square Po'
6001
+ 'AU','3110','VIC','Nunawading Bc'
6002
+ 'AU','3111','VIC','Donvale'
6003
+ 'AU','3113','VIC','North Warrandyte'
6004
+ 'AU','3113','VIC','Warrandyte'
6005
+ 'AU','3114','VIC','Park Orchards'
6006
+ 'AU','3115','VIC','Wonga Park'
6007
+ 'AU','3116','VIC','Chirnside Park'
6008
+ 'AU','3121','VIC','Burnley'
6009
+ 'AU','3121','VIC','Burnley North'
6010
+ 'AU','3121','VIC','Cremorne'
6011
+ 'AU','3121','VIC','Richmond'
6012
+ 'AU','3121','VIC','Richmond East'
6013
+ 'AU','3121','VIC','Richmond North'
6014
+ 'AU','3121','VIC','Richmond South'
6015
+ 'AU','3122','VIC','Auburn South'
6016
+ 'AU','3122','VIC','Glenferrie South'
6017
+ 'AU','3122','VIC','Hawthorn'
6018
+ 'AU','3122','VIC','Hawthorn North'
6019
+ 'AU','3122','VIC','Hawthorn West'
6020
+ 'AU','3123','VIC','Auburn'
6021
+ 'AU','3123','VIC','Hawthorn East'
6022
+ 'AU','3124','VIC','Camberwell'
6023
+ 'AU','3124','VIC','Camberwell North'
6024
+ 'AU','3124','VIC','Camberwell South'
6025
+ 'AU','3124','VIC','Camberwell West'
6026
+ 'AU','3124','VIC','Hartwell'
6027
+ 'AU','3124','VIC','Middle Camberwell'
6028
+ 'AU','3125','VIC','Bennettswood'
6029
+ 'AU','3125','VIC','Burwood'
6030
+ 'AU','3125','VIC','Surrey Hills South'
6031
+ 'AU','3126','VIC','Camberwell East'
6032
+ 'AU','3126','VIC','Canterbury'
6033
+ 'AU','3127','VIC','Mont Albert'
6034
+ 'AU','3127','VIC','Surrey Hills'
6035
+ 'AU','3127','VIC','Surrey Hills North'
6036
+ 'AU','3128','VIC','Box Hill'
6037
+ 'AU','3128','VIC','Box Hill Central'
6038
+ 'AU','3128','VIC','Box Hill South'
6039
+ 'AU','3128','VIC','Houston'
6040
+ 'AU','3128','VIC','Wattle Park'
6041
+ 'AU','3129','VIC','Box Hill North'
6042
+ 'AU','3129','VIC','Kerrimuir'
6043
+ 'AU','3129','VIC','Mont Albert North'
6044
+ 'AU','3130','VIC','Blackburn'
6045
+ 'AU','3130','VIC','Blackburn North'
6046
+ 'AU','3130','VIC','Blackburn South'
6047
+ 'AU','3130','VIC','Laburnum'
6048
+ 'AU','3131','VIC','Brentford Square'
6049
+ 'AU','3131','VIC','Forest Hill'
6050
+ 'AU','3131','VIC','Nunawading'
6051
+ 'AU','3132','VIC','Mitcham'
6052
+ 'AU','3132','VIC','Mitcham North'
6053
+ 'AU','3132','VIC','Rangeview'
6054
+ 'AU','3133','VIC','Vermont'
6055
+ 'AU','3133','VIC','Vermont South'
6056
+ 'AU','3134','VIC','Ringwood'
6057
+ 'AU','3134','VIC','Ringwood North'
6058
+ 'AU','3134','VIC','Warrandyte South'
6059
+ 'AU','3134','VIC','Warranwood'
6060
+ 'AU','3135','VIC','Bedford Road'
6061
+ 'AU','3135','VIC','Heathmont'
6062
+ 'AU','3135','VIC','Ringwood East'
6063
+ 'AU','3136','VIC','Croydon'
6064
+ 'AU','3136','VIC','Croydon Hills'
6065
+ 'AU','3136','VIC','Croydon North'
6066
+ 'AU','3136','VIC','Croydon South'
6067
+ 'AU','3137','VIC','Kilsyth'
6068
+ 'AU','3137','VIC','Kilsyth South'
6069
+ 'AU','3138','VIC','Mooroolbark'
6070
+ 'AU','3139','VIC','Beenak'
6071
+ 'AU','3139','VIC','Don Valley'
6072
+ 'AU','3139','VIC','Hoddles Creek'
6073
+ 'AU','3139','VIC','Launching Place'
6074
+ 'AU','3139','VIC','Seville'
6075
+ 'AU','3139','VIC','Seville East'
6076
+ 'AU','3139','VIC','Wandin East'
6077
+ 'AU','3139','VIC','Wandin North'
6078
+ 'AU','3139','VIC','Woori Yallock'
6079
+ 'AU','3139','VIC','Yellingbo'
6080
+ 'AU','3140','VIC','Lilydale'
6081
+ 'AU','3141','VIC','Chapel Street North'
6082
+ 'AU','3141','VIC','Domain Road Po'
6083
+ 'AU','3141','VIC','South Yarra'
6084
+ 'AU','3142','VIC','Hawksburn'
6085
+ 'AU','3142','VIC','Toorak'
6086
+ 'AU','3143','VIC','Armadale'
6087
+ 'AU','3143','VIC','Armadale North'
6088
+ 'AU','3144','VIC','Kooyong'
6089
+ 'AU','3144','VIC','Malvern'
6090
+ 'AU','3144','VIC','Malvern North'
6091
+ 'AU','3145','VIC','Caulfield East'
6092
+ 'AU','3145','VIC','Central Park'
6093
+ 'AU','3145','VIC','Darling'
6094
+ 'AU','3145','VIC','Darling South'
6095
+ 'AU','3145','VIC','Malvern East'
6096
+ 'AU','3145','VIC','Wattletree Road Po'
6097
+ 'AU','3146','VIC','Glen Iris'
6098
+ 'AU','3147','VIC','Ashburton'
6099
+ 'AU','3147','VIC','Ashwood'
6100
+ 'AU','3148','VIC','Chadstone'
6101
+ 'AU','3148','VIC','Chadstone Centre'
6102
+ 'AU','3148','VIC','Holmesglen'
6103
+ 'AU','3149','VIC','Mount Waverley'
6104
+ 'AU','3149','VIC','Pinewood'
6105
+ 'AU','3149','VIC','Syndal'
6106
+ 'AU','3150','VIC','Brandon Park'
6107
+ 'AU','3150','VIC','Glen Waverley'
6108
+ 'AU','3150','VIC','Wheelers Hill'
6109
+ 'AU','3151','VIC','Burwood East'
6110
+ 'AU','3151','VIC','Burwood Heights'
6111
+ 'AU','3152','VIC','Knox City Centre'
6112
+ 'AU','3152','VIC','Studfield'
6113
+ 'AU','3152','VIC','Wantirna'
6114
+ 'AU','3152','VIC','Wantirna South'
6115
+ 'AU','3153','VIC','Bayswater'
6116
+ 'AU','3153','VIC','Bayswater North'
6117
+ 'AU','3154','VIC','The Basin'
6118
+ 'AU','3155','VIC','Boronia'
6119
+ 'AU','3156','VIC','Ferntree Gully'
6120
+ 'AU','3156','VIC','Lysterfield'
6121
+ 'AU','3156','VIC','Lysterfield South'
6122
+ 'AU','3156','VIC','Mountain Gate'
6123
+ 'AU','3156','VIC','Upper Ferntree Gully'
6124
+ 'AU','3158','VIC','Upwey'
6125
+ 'AU','3159','VIC','Menzies Creek'
6126
+ 'AU','3159','VIC','Selby'
6127
+ 'AU','3160','VIC','Belgrave'
6128
+ 'AU','3160','VIC','Belgrave Heights'
6129
+ 'AU','3160','VIC','Belgrave South'
6130
+ 'AU','3160','VIC','Tecoma'
6131
+ 'AU','3161','VIC','Caulfield Junction'
6132
+ 'AU','3161','VIC','Caulfield North'
6133
+ 'AU','3162','VIC','Caulfield'
6134
+ 'AU','3162','VIC','Caulfield South'
6135
+ 'AU','3162','VIC','Hopetoun Gardens'
6136
+ 'AU','3163','VIC','Booran Road Po'
6137
+ 'AU','3163','VIC','Carnegie'
6138
+ 'AU','3163','VIC','Glen Huntly'
6139
+ 'AU','3163','VIC','Murrumbeena'
6140
+ 'AU','3164','VIC','Dandenong South'
6141
+ 'AU','3165','VIC','Bentleigh East'
6142
+ 'AU','3165','VIC','Coatesville'
6143
+ 'AU','3166','VIC','Hughesdale'
6144
+ 'AU','3166','VIC','Huntingdale'
6145
+ 'AU','3166','VIC','Oakleigh'
6146
+ 'AU','3166','VIC','Oakleigh East'
6147
+ 'AU','3167','VIC','Oakleigh South'
6148
+ 'AU','3168','VIC','Clayton'
6149
+ 'AU','3168','VIC','Notting Hill'
6150
+ 'AU','3169','VIC','Clarinda'
6151
+ 'AU','3169','VIC','Clayton South'
6152
+ 'AU','3170','VIC','Mulgrave'
6153
+ 'AU','3170','VIC','Waverley Gardens'
6154
+ 'AU','3171','VIC','Sandown Village'
6155
+ 'AU','3171','VIC','Springvale'
6156
+ 'AU','3172','VIC','Dingley Village'
6157
+ 'AU','3172','VIC','Springvale South'
6158
+ 'AU','3173','VIC','Keysborough'
6159
+ 'AU','3174','VIC','Noble Park'
6160
+ 'AU','3174','VIC','Noble Park East'
6161
+ 'AU','3174','VIC','Noble Park North'
6162
+ 'AU','3175','VIC','Bangholme'
6163
+ 'AU','3175','VIC','Dandenong'
6164
+ 'AU','3175','VIC','Dandenong East'
6165
+ 'AU','3175','VIC','Dandenong North'
6166
+ 'AU','3175','VIC','Dandenong South'
6167
+ 'AU','3175','VIC','Dunearn'
6168
+ 'AU','3176','VIC','Scoresby Bc'
6169
+ 'AU','3177','VIC','Doveton'
6170
+ 'AU','3177','VIC','Eumemmerring'
6171
+ 'AU','3178','VIC','Rowville'
6172
+ 'AU','3179','VIC','Scoresby'
6173
+ 'AU','3180','VIC','Knoxfield'
6174
+ 'AU','3181','VIC','Prahran'
6175
+ 'AU','3181','VIC','Prahran East'
6176
+ 'AU','3181','VIC','Windsor'
6177
+ 'AU','3182','VIC','St Kilda'
6178
+ 'AU','3182','VIC','St Kilda South'
6179
+ 'AU','3182','VIC','St Kilda West'
6180
+ 'AU','3183','VIC','Balaclava'
6181
+ 'AU','3183','VIC','St Kilda East'
6182
+ 'AU','3184','VIC','Brighton Road'
6183
+ 'AU','3184','VIC','Elwood'
6184
+ 'AU','3185','VIC','Elsternwick'
6185
+ 'AU','3185','VIC','Gardenvale'
6186
+ 'AU','3185','VIC','Ripponlea'
6187
+ 'AU','3186','VIC','Brighton'
6188
+ 'AU','3186','VIC','Brighton North'
6189
+ 'AU','3186','VIC','Dendy'
6190
+ 'AU','3186','VIC','Were Street Po'
6191
+ 'AU','3187','VIC','Brighton East'
6192
+ 'AU','3187','VIC','North Road'
6193
+ 'AU','3188','VIC','Hampton'
6194
+ 'AU','3188','VIC','Hampton East'
6195
+ 'AU','3188','VIC','Hampton North'
6196
+ 'AU','3189','VIC','Moorabbin'
6197
+ 'AU','3189','VIC','Moorabbin East'
6198
+ 'AU','3189','VIC','Wishart'
6199
+ 'AU','3190','VIC','Highett'
6200
+ 'AU','3191','VIC','Sandringham'
6201
+ 'AU','3192','VIC','Cheltenham'
6202
+ 'AU','3192','VIC','Cheltenham East'
6203
+ 'AU','3192','VIC','Cheltenham North'
6204
+ 'AU','3192','VIC','Southland Centre'
6205
+ 'AU','3193','VIC','Beaumaris'
6206
+ 'AU','3193','VIC','Black Rock'
6207
+ 'AU','3193','VIC','Black Rock North'
6208
+ 'AU','3193','VIC','Cromer'
6209
+ 'AU','3194','VIC','Mentone'
6210
+ 'AU','3194','VIC','Mentone East'
6211
+ 'AU','3194','VIC','Moorabbin Airport'
6212
+ 'AU','3195','VIC','Aspendale'
6213
+ 'AU','3195','VIC','Aspendale Gardens'
6214
+ 'AU','3195','VIC','Braeside'
6215
+ 'AU','3195','VIC','Mordialloc'
6216
+ 'AU','3195','VIC','Mordialloc North'
6217
+ 'AU','3195','VIC','Parkdale'
6218
+ 'AU','3195','VIC','Waterways'
6219
+ 'AU','3196','VIC','Bonbeach'
6220
+ 'AU','3196','VIC','Chelsea'
6221
+ 'AU','3196','VIC','Chelsea Heights'
6222
+ 'AU','3196','VIC','Edithvale'
6223
+ 'AU','3197','VIC','Carrum'
6224
+ 'AU','3197','VIC','Patterson Lakes'
6225
+ 'AU','3198','VIC','Belvedere Park'
6226
+ 'AU','3198','VIC','Seaford'
6227
+ 'AU','3199','VIC','Frankston'
6228
+ 'AU','3199','VIC','Frankston East'
6229
+ 'AU','3199','VIC','Frankston Heights'
6230
+ 'AU','3199','VIC','Frankston South'
6231
+ 'AU','3199','VIC','Karingal'
6232
+ 'AU','3199','VIC','Karingal Centre'
6233
+ 'AU','3200','VIC','Frankston North'
6234
+ 'AU','3200','VIC','Pines Forest'
6235
+ 'AU','3201','VIC','Carrum Downs'
6236
+ 'AU','3202','VIC','Heatherton'
6237
+ 'AU','3204','VIC','Bentleigh'
6238
+ 'AU','3204','VIC','Mckinnon'
6239
+ 'AU','3204','VIC','Ormond'
6240
+ 'AU','3204','VIC','Patterson'
6241
+ 'AU','3205','VIC','South Melbourne'
6242
+ 'AU','3205','VIC','South Melbourne Dc'
6243
+ 'AU','3206','VIC','Albert Park'
6244
+ 'AU','3206','VIC','Middle Park'
6245
+ 'AU','3207','VIC','Garden City'
6246
+ 'AU','3207','VIC','Port Melbourne'
6247
+ 'AU','3211','VIC','Little River'
6248
+ 'AU','3212','VIC','Avalon'
6249
+ 'AU','3212','VIC','Lara'
6250
+ 'AU','3212','VIC','Point Wilson'
6251
+ 'AU','3214','VIC','Corio'
6252
+ 'AU','3214','VIC','Norlane'
6253
+ 'AU','3214','VIC','North Shore'
6254
+ 'AU','3215','VIC','Bell Park'
6255
+ 'AU','3215','VIC','Bell Post Hill'
6256
+ 'AU','3215','VIC','Drumcondra'
6257
+ 'AU','3215','VIC','Geelong North'
6258
+ 'AU','3215','VIC','Hamlyn Heights'
6259
+ 'AU','3215','VIC','North Geelong'
6260
+ 'AU','3215','VIC','Rippleside'
6261
+ 'AU','3216','VIC','Belmont'
6262
+ 'AU','3216','VIC','Freshwater Creek'
6263
+ 'AU','3216','VIC','Grovedale'
6264
+ 'AU','3216','VIC','Grovedale East'
6265
+ 'AU','3216','VIC','Highton'
6266
+ 'AU','3216','VIC','Marshall'
6267
+ 'AU','3216','VIC','Mount Duneed'
6268
+ 'AU','3216','VIC','Wandana Heights'
6269
+ 'AU','3216','VIC','Waurn Ponds'
6270
+ 'AU','3217','VIC','Deakin University'
6271
+ 'AU','3218','VIC','Geelong West'
6272
+ 'AU','3218','VIC','Herne Hill'
6273
+ 'AU','3218','VIC','Manifold Heights'
6274
+ 'AU','3219','VIC','Breakwater'
6275
+ 'AU','3219','VIC','East Geelong'
6276
+ 'AU','3219','VIC','Newcomb'
6277
+ 'AU','3219','VIC','St Albans Park'
6278
+ 'AU','3219','VIC','Thomson'
6279
+ 'AU','3219','VIC','Whittington'
6280
+ 'AU','3220','VIC','Bareena'
6281
+ 'AU','3220','VIC','Geelong'
6282
+ 'AU','3220','VIC','Newtown'
6283
+ 'AU','3220','VIC','South Geelong'
6284
+ 'AU','3221','VIC','Anakie'
6285
+ 'AU','3221','VIC','Barrabool'
6286
+ 'AU','3221','VIC','Batesford'
6287
+ 'AU','3221','VIC','Bellarine'
6288
+ 'AU','3221','VIC','Ceres'
6289
+ 'AU','3221','VIC','Fyansford'
6290
+ 'AU','3221','VIC','Geelong Mc'
6291
+ 'AU','3221','VIC','Gnarwarre'
6292
+ 'AU','3221','VIC','Grey River'
6293
+ 'AU','3221','VIC','Kennett River'
6294
+ 'AU','3221','VIC','Lovely Banks'
6295
+ 'AU','3221','VIC','Moolap'
6296
+ 'AU','3221','VIC','Moorabool'
6297
+ 'AU','3221','VIC','Murgheboluc'
6298
+ 'AU','3221','VIC','Separation Creek'
6299
+ 'AU','3221','VIC','Staughton Vale'
6300
+ 'AU','3221','VIC','Stonehaven'
6301
+ 'AU','3221','VIC','Sugarloaf'
6302
+ 'AU','3221','VIC','Wallington'
6303
+ 'AU','3221','VIC','Wongarra'
6304
+ 'AU','3221','VIC','Wye River'
6305
+ 'AU','3222','VIC','Clifton Springs'
6306
+ 'AU','3222','VIC','Curlewis'
6307
+ 'AU','3222','VIC','Drysdale'
6308
+ 'AU','3222','VIC','Mannerim'
6309
+ 'AU','3222','VIC','Marcus Hill'
6310
+ 'AU','3223','VIC','Indented Head'
6311
+ 'AU','3223','VIC','Portarlington'
6312
+ 'AU','3223','VIC','St Leonards'
6313
+ 'AU','3224','VIC','Leopold'
6314
+ 'AU','3225','VIC','Point Lonsdale'
6315
+ 'AU','3225','VIC','Queenscliff'
6316
+ 'AU','3225','VIC','Swan Bay'
6317
+ 'AU','3225','VIC','Swan Island'
6318
+ 'AU','3226','VIC','Ocean Grove'
6319
+ 'AU','3227','VIC','Barwon Heads'
6320
+ 'AU','3227','VIC','Breamlea'
6321
+ 'AU','3227','VIC','Connewarre'
6322
+ 'AU','3228','VIC','Bellbrae'
6323
+ 'AU','3228','VIC','Bells Beach'
6324
+ 'AU','3228','VIC','Jan Juc'
6325
+ 'AU','3228','VIC','Torquay'
6326
+ 'AU','3230','VIC','Anglesea'
6327
+ 'AU','3231','VIC','Aireys Inlet'
6328
+ 'AU','3231','VIC','Big Hill'
6329
+ 'AU','3231','VIC','Eastern View'
6330
+ 'AU','3231','VIC','Fairhaven'
6331
+ 'AU','3231','VIC','Moggs Creek'
6332
+ 'AU','3232','VIC','Lorne'
6333
+ 'AU','3233','VIC','Apollo Bay'
6334
+ 'AU','3233','VIC','Cape Otway'
6335
+ 'AU','3233','VIC','Marengo'
6336
+ 'AU','3233','VIC','Petticoat Creek'
6337
+ 'AU','3233','VIC','Skenes Creek'
6338
+ 'AU','3233','VIC','Skenes Creek North'
6339
+ 'AU','3235','VIC','Benwerrin'
6340
+ 'AU','3235','VIC','Boonah'
6341
+ 'AU','3235','VIC','Deans Marsh'
6342
+ 'AU','3235','VIC','Pennyroyal'
6343
+ 'AU','3236','VIC','Forrest'
6344
+ 'AU','3236','VIC','Mount Sabine'
6345
+ 'AU','3237','VIC','Aire Valley'
6346
+ 'AU','3237','VIC','Beech Forest'
6347
+ 'AU','3237','VIC','Ferguson'
6348
+ 'AU','3237','VIC','Gellibrand Lower'
6349
+ 'AU','3237','VIC','Wattle Hill'
6350
+ 'AU','3237','VIC','Weeaproinah'
6351
+ 'AU','3237','VIC','Wyelangta'
6352
+ 'AU','3237','VIC','Yuulong'
6353
+ 'AU','3238','VIC','Glenaire'
6354
+ 'AU','3238','VIC','Hordern Vale'
6355
+ 'AU','3238','VIC','Johanna'
6356
+ 'AU','3238','VIC','Lavers Hill'
6357
+ 'AU','3239','VIC','Carlisle River'
6358
+ 'AU','3239','VIC','Chapple Vale'
6359
+ 'AU','3239','VIC','Gellibrand'
6360
+ 'AU','3239','VIC','Kennedys Creek'
6361
+ 'AU','3240','VIC','Buckley'
6362
+ 'AU','3240','VIC','Gherang'
6363
+ 'AU','3240','VIC','Modewarre'
6364
+ 'AU','3240','VIC','Moriac'
6365
+ 'AU','3240','VIC','Mount Moriac'
6366
+ 'AU','3240','VIC','Paraparap'
6367
+ 'AU','3241','VIC','Bambra'
6368
+ 'AU','3241','VIC','Ombersley'
6369
+ 'AU','3241','VIC','Wensleydale'
6370
+ 'AU','3241','VIC','Winchelsea'
6371
+ 'AU','3241','VIC','Winchelsea South'
6372
+ 'AU','3241','VIC','Wurdiboluc'
6373
+ 'AU','3242','VIC','Birregurra'
6374
+ 'AU','3243','VIC','Barwon Downs'
6375
+ 'AU','3243','VIC','Gerangamete'
6376
+ 'AU','3243','VIC','Murroon'
6377
+ 'AU','3243','VIC','Warncoort'
6378
+ 'AU','3243','VIC','Whoorel'
6379
+ 'AU','3249','VIC','Alvie'
6380
+ 'AU','3249','VIC','Balintore'
6381
+ 'AU','3249','VIC','Barongarook'
6382
+ 'AU','3249','VIC','Barongarook West'
6383
+ 'AU','3249','VIC','Barramunga'
6384
+ 'AU','3249','VIC','Coragulac'
6385
+ 'AU','3249','VIC','Corunnun'
6386
+ 'AU','3249','VIC','Dreeite'
6387
+ 'AU','3249','VIC','Dreeite South'
6388
+ 'AU','3249','VIC','Irrewarra'
6389
+ 'AU','3249','VIC','Irrewillipe'
6390
+ 'AU','3249','VIC','Irrewillipe East'
6391
+ 'AU','3249','VIC','Kawarren'
6392
+ 'AU','3249','VIC','Larpent'
6393
+ 'AU','3249','VIC','Nalangil'
6394
+ 'AU','3249','VIC','Ondit'
6395
+ 'AU','3249','VIC','Pirron Yallock'
6396
+ 'AU','3249','VIC','Pomborneit East'
6397
+ 'AU','3249','VIC','Swan Marsh'
6398
+ 'AU','3249','VIC','Tanybryn'
6399
+ 'AU','3249','VIC','Warrion'
6400
+ 'AU','3249','VIC','Wool Wool'
6401
+ 'AU','3249','VIC','Yeo'
6402
+ 'AU','3249','VIC','Yeodene'
6403
+ 'AU','3250','VIC','Colac'
6404
+ 'AU','3250','VIC','Colac East'
6405
+ 'AU','3250','VIC','Colac West'
6406
+ 'AU','3250','VIC','Elliminyt'
6407
+ 'AU','3251','VIC','Beeac'
6408
+ 'AU','3251','VIC','Cundare North'
6409
+ 'AU','3251','VIC','Eurack'
6410
+ 'AU','3251','VIC','Weering'
6411
+ 'AU','3254','VIC','Cororooke'
6412
+ 'AU','3260','VIC','Bookaar'
6413
+ 'AU','3260','VIC','Bostocks Creek'
6414
+ 'AU','3260','VIC','Bungador'
6415
+ 'AU','3260','VIC','Camperdown'
6416
+ 'AU','3260','VIC','Carpendeit'
6417
+ 'AU','3260','VIC','Chocolyn'
6418
+ 'AU','3260','VIC','Gnotuk'
6419
+ 'AU','3260','VIC','Kariah'
6420
+ 'AU','3260','VIC','Koallah'
6421
+ 'AU','3260','VIC','Leslie Manor'
6422
+ 'AU','3260','VIC','Pomborneit'
6423
+ 'AU','3260','VIC','Pomborneit North'
6424
+ 'AU','3260','VIC','Skibo'
6425
+ 'AU','3260','VIC','South Purrumbete'
6426
+ 'AU','3260','VIC','Stonyford'
6427
+ 'AU','3260','VIC','Tandarook'
6428
+ 'AU','3260','VIC','Tesbury'
6429
+ 'AU','3260','VIC','Weerite'
6430
+ 'AU','3264','VIC','Terang'
6431
+ 'AU','3265','VIC','Boorcan'
6432
+ 'AU','3265','VIC','Cudgee'
6433
+ 'AU','3265','VIC','Dixie'
6434
+ 'AU','3265','VIC','Ecklin South'
6435
+ 'AU','3265','VIC','Ellerslie'
6436
+ 'AU','3265','VIC','Framlingham'
6437
+ 'AU','3265','VIC','Framlingham East'
6438
+ 'AU','3265','VIC','Garvoc'
6439
+ 'AU','3265','VIC','Glenormiston North'
6440
+ 'AU','3265','VIC','Glenormiston South'
6441
+ 'AU','3265','VIC','Kolora'
6442
+ 'AU','3265','VIC','Laang'
6443
+ 'AU','3265','VIC','Noorat'
6444
+ 'AU','3265','VIC','Noorat East'
6445
+ 'AU','3265','VIC','Panmure'
6446
+ 'AU','3265','VIC','Taroon'
6447
+ 'AU','3265','VIC','The Sisters'
6448
+ 'AU','3266','VIC','Bullaharre'
6449
+ 'AU','3266','VIC','Cobden'
6450
+ 'AU','3266','VIC','Cobrico'
6451
+ 'AU','3266','VIC','Elingamite'
6452
+ 'AU','3266','VIC','Elingamite North'
6453
+ 'AU','3266','VIC','Glenfyne'
6454
+ 'AU','3266','VIC','Jancourt'
6455
+ 'AU','3266','VIC','Jancourt East'
6456
+ 'AU','3266','VIC','Naroghid'
6457
+ 'AU','3266','VIC','Simpson'
6458
+ 'AU','3267','VIC','Scotts Creek'
6459
+ 'AU','3268','VIC','Ayrford'
6460
+ 'AU','3268','VIC','Brucknell'
6461
+ 'AU','3268','VIC','Cooriemungle'
6462
+ 'AU','3268','VIC','Cowleys Creek'
6463
+ 'AU','3268','VIC','Curdies River'
6464
+ 'AU','3268','VIC','Curdievale'
6465
+ 'AU','3268','VIC','Heytesbury Lower'
6466
+ 'AU','3268','VIC','Newfield'
6467
+ 'AU','3268','VIC','Nirranda'
6468
+ 'AU','3268','VIC','Nirranda East'
6469
+ 'AU','3268','VIC','Nirranda South'
6470
+ 'AU','3268','VIC','Nullawarre'
6471
+ 'AU','3268','VIC','Nullawarre North'
6472
+ 'AU','3268','VIC','Paaratte'
6473
+ 'AU','3268','VIC','The Cove'
6474
+ 'AU','3268','VIC','Timboon'
6475
+ 'AU','3268','VIC','Timboon West'
6476
+ 'AU','3269','VIC','Port Campbell'
6477
+ 'AU','3269','VIC','Princetown'
6478
+ 'AU','3269','VIC','Waarre'
6479
+ 'AU','3270','VIC','Peterborough'
6480
+ 'AU','3271','VIC','Darlington'
6481
+ 'AU','3271','VIC','Dundonnell'
6482
+ 'AU','3271','VIC','Pura Pura'
6483
+ 'AU','3272','VIC','Mortlake'
6484
+ 'AU','3272','VIC','Woorndoo'
6485
+ 'AU','3273','VIC','Hexham'
6486
+ 'AU','3274','VIC','Caramut'
6487
+ 'AU','3275','VIC','Mailors Flat'
6488
+ 'AU','3276','VIC','Minjah'
6489
+ 'AU','3276','VIC','Woolsthorpe'
6490
+ 'AU','3277','VIC','Allansford'
6491
+ 'AU','3277','VIC','Mepunga'
6492
+ 'AU','3277','VIC','Mepunga East'
6493
+ 'AU','3277','VIC','Mepunga West'
6494
+ 'AU','3277','VIC','Naringal'
6495
+ 'AU','3277','VIC','Naringal East'
6496
+ 'AU','3278','VIC','Purnim'
6497
+ 'AU','3278','VIC','Purnim West'
6498
+ 'AU','3279','VIC','Ballangeich'
6499
+ 'AU','3279','VIC','Wangoom'
6500
+ 'AU','3280','VIC','Dennington'
6501
+ 'AU','3280','VIC','Warrnambool'
6502
+ 'AU','3280','VIC','Warrnambool East'
6503
+ 'AU','3280','VIC','Warrnambool West'
6504
+ 'AU','3281','VIC','Bushfield'
6505
+ 'AU','3281','VIC','Grassmere'
6506
+ 'AU','3281','VIC','Winslow'
6507
+ 'AU','3281','VIC','Woodford'
6508
+ 'AU','3282','VIC','Illowa'
6509
+ 'AU','3282','VIC','Koroit'
6510
+ 'AU','3283','VIC','Crossley'
6511
+ 'AU','3283','VIC','Killarney'
6512
+ 'AU','3283','VIC','Kirkstall'
6513
+ 'AU','3283','VIC','Southern Cross'
6514
+ 'AU','3283','VIC','Tarrone'
6515
+ 'AU','3283','VIC','Tower Hill'
6516
+ 'AU','3283','VIC','Warrong'
6517
+ 'AU','3283','VIC','Willatook'
6518
+ 'AU','3283','VIC','Yangery'
6519
+ 'AU','3283','VIC','Yarpturk'
6520
+ 'AU','3284','VIC','Orford'
6521
+ 'AU','3284','VIC','Port Fairy'
6522
+ 'AU','3285','VIC','Codrington'
6523
+ 'AU','3285','VIC','Narrawong'
6524
+ 'AU','3285','VIC','Rosebrook'
6525
+ 'AU','3285','VIC','St Helens'
6526
+ 'AU','3285','VIC','Toolong'
6527
+ 'AU','3285','VIC','Tyrendarra'
6528
+ 'AU','3285','VIC','Tyrendarra East'
6529
+ 'AU','3285','VIC','Yambuk'
6530
+ 'AU','3286','VIC','Condah Swamp'
6531
+ 'AU','3286','VIC','Knebsworth'
6532
+ 'AU','3286','VIC','Macarthur'
6533
+ 'AU','3286','VIC','Ripponhurst'
6534
+ 'AU','3286','VIC','Warrabkook'
6535
+ 'AU','3287','VIC','Hawkesdale'
6536
+ 'AU','3287','VIC','Minhamite'
6537
+ 'AU','3289','VIC','Gazette'
6538
+ 'AU','3289','VIC','Gerrigerrup'
6539
+ 'AU','3289','VIC','Penshurst'
6540
+ 'AU','3289','VIC','Purdeet'
6541
+ 'AU','3289','VIC','Tabor'
6542
+ 'AU','3292','VIC','Nelson'
6543
+ 'AU','3293','VIC','Glenthompson'
6544
+ 'AU','3293','VIC','Nareeb'
6545
+ 'AU','3293','VIC','Narrapumelap South'
6546
+ 'AU','3294','VIC','Dunkeld'
6547
+ 'AU','3294','VIC','Karabeal'
6548
+ 'AU','3294','VIC','Mirranatwa'
6549
+ 'AU','3294','VIC','Moutajup'
6550
+ 'AU','3294','VIC','Victoria Point'
6551
+ 'AU','3294','VIC','Victoria Valley'
6552
+ 'AU','3294','VIC','Woodhouse'
6553
+ 'AU','3300','VIC','Byaduk North'
6554
+ 'AU','3300','VIC','Hamilton'
6555
+ 'AU','3301','VIC','Bochara'
6556
+ 'AU','3301','VIC','Broadwater'
6557
+ 'AU','3301','VIC','Buckley Swamp'
6558
+ 'AU','3301','VIC','Byaduk'
6559
+ 'AU','3301','VIC','Croxton East'
6560
+ 'AU','3301','VIC','Hensley Park'
6561
+ 'AU','3301','VIC','Morgiana'
6562
+ 'AU','3301','VIC','Mount Napier'
6563
+ 'AU','3301','VIC','Strathkellar'
6564
+ 'AU','3301','VIC','Tahara'
6565
+ 'AU','3301','VIC','Tarrington'
6566
+ 'AU','3301','VIC','Wannon'
6567
+ 'AU','3301','VIC','Warrayure'
6568
+ 'AU','3301','VIC','Yatchaw'
6569
+ 'AU','3301','VIC','Yulecart'
6570
+ 'AU','3302','VIC','Branxholme'
6571
+ 'AU','3302','VIC','Grassdale'
6572
+ 'AU','3303','VIC','Breakaway Creek'
6573
+ 'AU','3303','VIC','Condah'
6574
+ 'AU','3303','VIC','Hotspur'
6575
+ 'AU','3303','VIC','Lake Condah'
6576
+ 'AU','3303','VIC','Wallacedale'
6577
+ 'AU','3304','VIC','Bessiebelle'
6578
+ 'AU','3304','VIC','Dartmoor'
6579
+ 'AU','3304','VIC','Drik Drik'
6580
+ 'AU','3304','VIC','Drumborg'
6581
+ 'AU','3304','VIC','Greenwald'
6582
+ 'AU','3304','VIC','Heywood'
6583
+ 'AU','3304','VIC','Homerton'
6584
+ 'AU','3304','VIC','Lyons'
6585
+ 'AU','3304','VIC','Milltown'
6586
+ 'AU','3304','VIC','Mumbannar'
6587
+ 'AU','3304','VIC','Myamyn'
6588
+ 'AU','3304','VIC','Winnap'
6589
+ 'AU','3305','VIC','Allestree'
6590
+ 'AU','3305','VIC','Bolwarra'
6591
+ 'AU','3305','VIC','Cape Bridgewater'
6592
+ 'AU','3305','VIC','Cashmore'
6593
+ 'AU','3305','VIC','Dutton Way'
6594
+ 'AU','3305','VIC','Gorae'
6595
+ 'AU','3305','VIC','Gorae West'
6596
+ 'AU','3305','VIC','Heathmere'
6597
+ 'AU','3305','VIC','Mount Richmond'
6598
+ 'AU','3305','VIC','Portland'
6599
+ 'AU','3305','VIC','Portland North'
6600
+ 'AU','3305','VIC','Portland West'
6601
+ 'AU','3309','VIC','Digby'
6602
+ 'AU','3310','VIC','Merino'
6603
+ 'AU','3310','VIC','Tahara West'
6604
+ 'AU','3311','VIC','Casterton'
6605
+ 'AU','3311','VIC','Corndale'
6606
+ 'AU','3312','VIC','Bahgallah'
6607
+ 'AU','3312','VIC','Brimboal'
6608
+ 'AU','3312','VIC','Carapook'
6609
+ 'AU','3312','VIC','Chetwynd'
6610
+ 'AU','3312','VIC','Dergholm'
6611
+ 'AU','3312','VIC','Dorodong'
6612
+ 'AU','3312','VIC','Dunrobin'
6613
+ 'AU','3312','VIC','Henty'
6614
+ 'AU','3312','VIC','Killara'
6615
+ 'AU','3312','VIC','Lake Mundi'
6616
+ 'AU','3312','VIC','Lindsay'
6617
+ 'AU','3312','VIC','Nangeela'
6618
+ 'AU','3312','VIC','Poolaijelo'
6619
+ 'AU','3312','VIC','Powers Creek'
6620
+ 'AU','3312','VIC','Sandford'
6621
+ 'AU','3312','VIC','Strathdownie'
6622
+ 'AU','3312','VIC','Wando Bridge'
6623
+ 'AU','3312','VIC','Wando Vale'
6624
+ 'AU','3312','VIC','Warrock'
6625
+ 'AU','3314','VIC','Bulart'
6626
+ 'AU','3314','VIC','Cavendish'
6627
+ 'AU','3314','VIC','Glenisla'
6628
+ 'AU','3314','VIC','Grampians'
6629
+ 'AU','3314','VIC','Mooralla'
6630
+ 'AU','3314','VIC','Woohlpooer'
6631
+ 'AU','3315','VIC','Brit Brit'
6632
+ 'AU','3315','VIC','Clover Flat'
6633
+ 'AU','3315','VIC','Coleraine'
6634
+ 'AU','3315','VIC','Coojar'
6635
+ 'AU','3315','VIC','Culla'
6636
+ 'AU','3315','VIC','Gringegalgona'
6637
+ 'AU','3315','VIC','Gritjurk'
6638
+ 'AU','3315','VIC','Hilgay'
6639
+ 'AU','3315','VIC','Konongwootong'
6640
+ 'AU','3315','VIC','Melville Forest'
6641
+ 'AU','3315','VIC','Muntham'
6642
+ 'AU','3315','VIC','Nareen'
6643
+ 'AU','3315','VIC','Paschendale'
6644
+ 'AU','3315','VIC','Tahara Bridge'
6645
+ 'AU','3315','VIC','Tarrayoukyan'
6646
+ 'AU','3315','VIC','Tarrenlea'
6647
+ 'AU','3315','VIC','Wootong Vale'
6648
+ 'AU','3317','VIC','Harrow'
6649
+ 'AU','3318','VIC','Charam'
6650
+ 'AU','3318','VIC','Connewirricoo'
6651
+ 'AU','3318','VIC','Edenhope'
6652
+ 'AU','3318','VIC','Kadnook'
6653
+ 'AU','3318','VIC','Langkoop'
6654
+ 'AU','3318','VIC','Patyah'
6655
+ 'AU','3318','VIC','Ullswater'
6656
+ 'AU','3319','VIC','Apsley'
6657
+ 'AU','3319','VIC','Benayeo'
6658
+ 'AU','3319','VIC','Bringalbert'
6659
+ 'AU','3321','VIC','Hesse'
6660
+ 'AU','3321','VIC','Inverleigh'
6661
+ 'AU','3321','VIC','Wingeel'
6662
+ 'AU','3322','VIC','Cressy'
6663
+ 'AU','3323','VIC','Berrybank'
6664
+ 'AU','3323','VIC','Duverney'
6665
+ 'AU','3323','VIC','Foxhow'
6666
+ 'AU','3324','VIC','Lismore'
6667
+ 'AU','3324','VIC','Mingay'
6668
+ 'AU','3324','VIC','Mount Bute'
6669
+ 'AU','3325','VIC','Derrinallum'
6670
+ 'AU','3325','VIC','Larralea'
6671
+ 'AU','3325','VIC','Vite Vite'
6672
+ 'AU','3325','VIC','Vite Vite North'
6673
+ 'AU','3328','VIC','Teesdale'
6674
+ 'AU','3329','VIC','Barunah Park'
6675
+ 'AU','3329','VIC','Shelford'
6676
+ 'AU','3330','VIC','Rokewood'
6677
+ 'AU','3331','VIC','Bannockburn'
6678
+ 'AU','3331','VIC','Gheringhap'
6679
+ 'AU','3331','VIC','Maude'
6680
+ 'AU','3331','VIC','Russells Bridge'
6681
+ 'AU','3331','VIC','She Oaks'
6682
+ 'AU','3331','VIC','Steiglitz'
6683
+ 'AU','3331','VIC','Sutherlands Creek'
6684
+ 'AU','3332','VIC','Lethbridge'
6685
+ 'AU','3333','VIC','Bamganie'
6686
+ 'AU','3333','VIC','Meredith'
6687
+ 'AU','3334','VIC','Bungal'
6688
+ 'AU','3334','VIC','Cargerie'
6689
+ 'AU','3334','VIC','Elaine'
6690
+ 'AU','3334','VIC','Morrisons'
6691
+ 'AU','3334','VIC','Mount Doran'
6692
+ 'AU','3335','VIC','Plumpton'
6693
+ 'AU','3335','VIC','Rockbank'
6694
+ 'AU','3337','VIC','Kurunjang'
6695
+ 'AU','3337','VIC','Melton'
6696
+ 'AU','3337','VIC','Melton West'
6697
+ 'AU','3337','VIC','Toolern Vale'
6698
+ 'AU','3338','VIC','Brookfield'
6699
+ 'AU','3338','VIC','Exford'
6700
+ 'AU','3338','VIC','Eynesbury'
6701
+ 'AU','3338','VIC','Melton South'
6702
+ 'AU','3340','VIC','Bacchus Marsh'
6703
+ 'AU','3340','VIC','Balliang'
6704
+ 'AU','3340','VIC','Balliang East'
6705
+ 'AU','3340','VIC','Coimadai'
6706
+ 'AU','3340','VIC','Darley'
6707
+ 'AU','3340','VIC','Glenmore'
6708
+ 'AU','3340','VIC','Hopetoun Park'
6709
+ 'AU','3340','VIC','Long Forest'
6710
+ 'AU','3340','VIC','Maddingley'
6711
+ 'AU','3340','VIC','Merrimu'
6712
+ 'AU','3340','VIC','Parwan'
6713
+ 'AU','3340','VIC','Rowsley'
6714
+ 'AU','3341','VIC','Dales Creek'
6715
+ 'AU','3341','VIC','Greendale'
6716
+ 'AU','3341','VIC','Korobeit'
6717
+ 'AU','3341','VIC','Myrniong'
6718
+ 'AU','3341','VIC','Pentland Hills'
6719
+ 'AU','3342','VIC','Ballan'
6720
+ 'AU','3342','VIC','Beremboke'
6721
+ 'AU','3342','VIC','Blakeville'
6722
+ 'AU','3342','VIC','Bunding'
6723
+ 'AU','3342','VIC','Colbrook'
6724
+ 'AU','3342','VIC','Durdidwarrah'
6725
+ 'AU','3342','VIC','Fiskville'
6726
+ 'AU','3342','VIC','Ingliston'
6727
+ 'AU','3342','VIC','Mount Wallace'
6728
+ 'AU','3345','VIC','Gordon'
6729
+ 'AU','3350','VIC','Alfredton'
6730
+ 'AU','3350','VIC','Bakery Hill'
6731
+ 'AU','3350','VIC','Ballarat'
6732
+ 'AU','3350','VIC','Ballarat Central'
6733
+ 'AU','3350','VIC','Ballarat East'
6734
+ 'AU','3350','VIC','Ballarat North'
6735
+ 'AU','3350','VIC','Ballarat West'
6736
+ 'AU','3350','VIC','Black Hill'
6737
+ 'AU','3350','VIC','Brown Hill'
6738
+ 'AU','3350','VIC','Canadian'
6739
+ 'AU','3350','VIC','Eureka'
6740
+ 'AU','3350','VIC','Golden Point'
6741
+ 'AU','3350','VIC','Invermay Park'
6742
+ 'AU','3350','VIC','Lake Wendouree'
6743
+ 'AU','3350','VIC','Mount Clear'
6744
+ 'AU','3350','VIC','Mount Helen'
6745
+ 'AU','3350','VIC','Mount Pleasant'
6746
+ 'AU','3350','VIC','Nerrina'
6747
+ 'AU','3350','VIC','Newington'
6748
+ 'AU','3350','VIC','Redan'
6749
+ 'AU','3350','VIC','Soldiers Hill'
6750
+ 'AU','3350','VIC','Sovereign Hill'
6751
+ 'AU','3351','VIC','Berringa'
6752
+ 'AU','3351','VIC','Bo Peep'
6753
+ 'AU','3351','VIC','Cape Clear'
6754
+ 'AU','3351','VIC','Carngham'
6755
+ 'AU','3351','VIC','Chepstowe'
6756
+ 'AU','3351','VIC','Haddon'
6757
+ 'AU','3351','VIC','Hillcrest'
6758
+ 'AU','3351','VIC','Illabarook'
6759
+ 'AU','3351','VIC','Lake Bolac'
6760
+ 'AU','3351','VIC','Mininera'
6761
+ 'AU','3351','VIC','Mount Emu'
6762
+ 'AU','3351','VIC','Nerrin Nerrin'
6763
+ 'AU','3351','VIC','Newtown'
6764
+ 'AU','3351','VIC','Nintingbool'
6765
+ 'AU','3351','VIC','Piggoreet'
6766
+ 'AU','3351','VIC','Pitfield'
6767
+ 'AU','3351','VIC','Rokewood Junction'
6768
+ 'AU','3351','VIC','Ross Creek'
6769
+ 'AU','3351','VIC','Scarsdale'
6770
+ 'AU','3351','VIC','Smythes Creek'
6771
+ 'AU','3351','VIC','Smythesdale'
6772
+ 'AU','3351','VIC','Snake Valley'
6773
+ 'AU','3351','VIC','Springdallah'
6774
+ 'AU','3351','VIC','Staffordshire Reef'
6775
+ 'AU','3351','VIC','Streatham'
6776
+ 'AU','3351','VIC','Wallinduc'
6777
+ 'AU','3351','VIC','Westmere'
6778
+ 'AU','3352','VIC','Addington'
6779
+ 'AU','3352','VIC','Ballarat Roadside Delivery'
6780
+ 'AU','3352','VIC','Blowhard'
6781
+ 'AU','3352','VIC','Bolwarrah'
6782
+ 'AU','3352','VIC','Bonshaw'
6783
+ 'AU','3352','VIC','Brewster'
6784
+ 'AU','3352','VIC','Bullarook'
6785
+ 'AU','3352','VIC','Bungaree'
6786
+ 'AU','3352','VIC','Bunkers Hill'
6787
+ 'AU','3352','VIC','Burrumbeet'
6788
+ 'AU','3352','VIC','Cambrian Hill'
6789
+ 'AU','3352','VIC','Cardigan'
6790
+ 'AU','3352','VIC','Cardigan Village'
6791
+ 'AU','3352','VIC','Chapel Flat'
6792
+ 'AU','3352','VIC','Clarendon'
6793
+ 'AU','3352','VIC','Claretown'
6794
+ 'AU','3352','VIC','Clarkes Hill'
6795
+ 'AU','3352','VIC','Corindhap'
6796
+ 'AU','3352','VIC','Dereel'
6797
+ 'AU','3352','VIC','Dunnstown'
6798
+ 'AU','3352','VIC','Durham Lead'
6799
+ 'AU','3352','VIC','Enfield'
6800
+ 'AU','3352','VIC','Ercildoune'
6801
+ 'AU','3352','VIC','Garibaldi'
6802
+ 'AU','3352','VIC','Glen Park'
6803
+ 'AU','3352','VIC','Glenbrae'
6804
+ 'AU','3352','VIC','Gong Gong'
6805
+ 'AU','3352','VIC','Grenville'
6806
+ 'AU','3352','VIC','Invermay'
6807
+ 'AU','3352','VIC','Lal Lal'
6808
+ 'AU','3352','VIC','Lamplough'
6809
+ 'AU','3352','VIC','Langi Kal Kal'
6810
+ 'AU','3352','VIC','Learmonth'
6811
+ 'AU','3352','VIC','Leigh Creek'
6812
+ 'AU','3352','VIC','Lexton'
6813
+ 'AU','3352','VIC','Magpie'
6814
+ 'AU','3352','VIC','Millbrook'
6815
+ 'AU','3352','VIC','Miners Rest'
6816
+ 'AU','3352','VIC','Mitchell Park'
6817
+ 'AU','3352','VIC','Mollongghip'
6818
+ 'AU','3352','VIC','Mount Bolton'
6819
+ 'AU','3352','VIC','Mount Egerton'
6820
+ 'AU','3352','VIC','Mount Mercer'
6821
+ 'AU','3352','VIC','Mount Mitchell'
6822
+ 'AU','3352','VIC','Mount Rowan'
6823
+ 'AU','3352','VIC','Napoleons'
6824
+ 'AU','3352','VIC','Navigators'
6825
+ 'AU','3352','VIC','Pootilla'
6826
+ 'AU','3352','VIC','Scotchmans Lead'
6827
+ 'AU','3352','VIC','Scotsburn'
6828
+ 'AU','3352','VIC','Springbank'
6829
+ 'AU','3352','VIC','Sulky'
6830
+ 'AU','3352','VIC','Wallace'
6831
+ 'AU','3352','VIC','Warrenheip'
6832
+ 'AU','3352','VIC','Wattle Flat'
6833
+ 'AU','3352','VIC','Waubra'
6834
+ 'AU','3352','VIC','Weatherboard'
6835
+ 'AU','3352','VIC','Werneth'
6836
+ 'AU','3352','VIC','Windermere'
6837
+ 'AU','3352','VIC','Yendon'
6838
+ 'AU','3353','VIC','Ballarat'
6839
+ 'AU','3354','VIC','Bakery Hill'
6840
+ 'AU','3354','VIC','Ballarat Mc'
6841
+ 'AU','3355','VIC','Lake Gardens'
6842
+ 'AU','3355','VIC','Mitchell Park'
6843
+ 'AU','3355','VIC','Wendouree'
6844
+ 'AU','3355','VIC','Wendouree Village'
6845
+ 'AU','3356','VIC','Delacombe'
6846
+ 'AU','3356','VIC','Sebastopol'
6847
+ 'AU','3357','VIC','Buninyong'
6848
+ 'AU','3357','VIC','Scotsmans Lead'
6849
+ 'AU','3360','VIC','Happy Valley'
6850
+ 'AU','3360','VIC','Linton'
6851
+ 'AU','3360','VIC','Mannibadar'
6852
+ 'AU','3360','VIC','Pittong'
6853
+ 'AU','3360','VIC','Willowvale'
6854
+ 'AU','3361','VIC','Bradvale'
6855
+ 'AU','3361','VIC','Carranballac'
6856
+ 'AU','3361','VIC','Skipton'
6857
+ 'AU','3363','VIC','Creswick'
6858
+ 'AU','3363','VIC','Creswick North'
6859
+ 'AU','3363','VIC','Dean'
6860
+ 'AU','3363','VIC','Glendaruel'
6861
+ 'AU','3363','VIC','Langdons Hill'
6862
+ 'AU','3363','VIC','Mount Beckworth'
6863
+ 'AU','3363','VIC','Tourello'
6864
+ 'AU','3364','VIC','Allendale'
6865
+ 'AU','3364','VIC','Ascot'
6866
+ 'AU','3364','VIC','Bald Hills'
6867
+ 'AU','3364','VIC','Barkstead'
6868
+ 'AU','3364','VIC','Blampied'
6869
+ 'AU','3364','VIC','Broomfield'
6870
+ 'AU','3364','VIC','Cabbage Tree'
6871
+ 'AU','3364','VIC','Campbelltown'
6872
+ 'AU','3364','VIC','Coghills Creek'
6873
+ 'AU','3364','VIC','Glendonnell'
6874
+ 'AU','3364','VIC','Kingston'
6875
+ 'AU','3364','VIC','Kooroocheang'
6876
+ 'AU','3364','VIC','Lawrence'
6877
+ 'AU','3364','VIC','Mount Prospect'
6878
+ 'AU','3364','VIC','Newlyn'
6879
+ 'AU','3364','VIC','Newlyn North'
6880
+ 'AU','3364','VIC','Rocklyn'
6881
+ 'AU','3364','VIC','Smeaton'
6882
+ 'AU','3364','VIC','Smokeytown'
6883
+ 'AU','3364','VIC','Springmount'
6884
+ 'AU','3364','VIC','Strathlea'
6885
+ 'AU','3364','VIC','Werona'
6886
+ 'AU','3370','VIC','Clunes'
6887
+ 'AU','3370','VIC','Glengower'
6888
+ 'AU','3370','VIC','Mount Cameron'
6889
+ 'AU','3370','VIC','Ullina'
6890
+ 'AU','3371','VIC','Amherst'
6891
+ 'AU','3371','VIC','Burnbank'
6892
+ 'AU','3371','VIC','Caralulup'
6893
+ 'AU','3371','VIC','Dunach'
6894
+ 'AU','3371','VIC','Evansford'
6895
+ 'AU','3371','VIC','Lillicur'
6896
+ 'AU','3371','VIC','Mount Glasgow'
6897
+ 'AU','3371','VIC','Red Lion'
6898
+ 'AU','3371','VIC','Stony Creek'
6899
+ 'AU','3371','VIC','Talbot'
6900
+ 'AU','3373','VIC','Beaufort'
6901
+ 'AU','3373','VIC','Chute'
6902
+ 'AU','3373','VIC','Cross Roads'
6903
+ 'AU','3373','VIC','Lake Goldsmith'
6904
+ 'AU','3373','VIC','Lake Wongan'
6905
+ 'AU','3373','VIC','Main Lead'
6906
+ 'AU','3373','VIC','Mena Park'
6907
+ 'AU','3373','VIC','Nerring'
6908
+ 'AU','3373','VIC','Raglan'
6909
+ 'AU','3373','VIC','Shirley'
6910
+ 'AU','3373','VIC','Stockyard Hill'
6911
+ 'AU','3373','VIC','Stoneleigh'
6912
+ 'AU','3373','VIC','Trawalla'
6913
+ 'AU','3373','VIC','Waterloo'
6914
+ 'AU','3375','VIC','Ballyrogan'
6915
+ 'AU','3375','VIC','Bayindeen'
6916
+ 'AU','3375','VIC','Buangor'
6917
+ 'AU','3375','VIC','Middle Creek'
6918
+ 'AU','3377','VIC','Ararat'
6919
+ 'AU','3377','VIC','Armstrong'
6920
+ 'AU','3377','VIC','Bulgana'
6921
+ 'AU','3377','VIC','Cathcart'
6922
+ 'AU','3377','VIC','Crowlands'
6923
+ 'AU','3377','VIC','Denicull Creek'
6924
+ 'AU','3377','VIC','Dobie'
6925
+ 'AU','3377','VIC','Dunneworthy'
6926
+ 'AU','3377','VIC','Eversley'
6927
+ 'AU','3377','VIC','Great Western'
6928
+ 'AU','3377','VIC','Langi Logan'
6929
+ 'AU','3377','VIC','Maroona'
6930
+ 'AU','3377','VIC','Mount Cole'
6931
+ 'AU','3377','VIC','Mount Cole Creek'
6932
+ 'AU','3377','VIC','Moyston'
6933
+ 'AU','3377','VIC','Norval'
6934
+ 'AU','3377','VIC','Rhymney'
6935
+ 'AU','3377','VIC','Rocky Point'
6936
+ 'AU','3377','VIC','Rossbridge'
6937
+ 'AU','3377','VIC','Warrak'
6938
+ 'AU','3378','VIC','Tatyoon'
6939
+ 'AU','3378','VIC','Yalla\-Y\-Poora'
6940
+ 'AU','3379','VIC','Bornes Hill'
6941
+ 'AU','3379','VIC','Chatsworth'
6942
+ 'AU','3379','VIC','Mafeking'
6943
+ 'AU','3379','VIC','Stavely'
6944
+ 'AU','3379','VIC','Wickliffe'
6945
+ 'AU','3379','VIC','Willaura'
6946
+ 'AU','3379','VIC','Willaura North'
6947
+ 'AU','3380','VIC','Bellellen'
6948
+ 'AU','3380','VIC','Bridge Inn'
6949
+ 'AU','3380','VIC','Mokepilly'
6950
+ 'AU','3380','VIC','Stawell'
6951
+ 'AU','3380','VIC','Stawell West'
6952
+ 'AU','3380','VIC','Winjallok'
6953
+ 'AU','3381','VIC','Barkly'
6954
+ 'AU','3381','VIC','Bellfield'
6955
+ 'AU','3381','VIC','Bolangum'
6956
+ 'AU','3381','VIC','Callawadda'
6957
+ 'AU','3381','VIC','Campbells Bridge'
6958
+ 'AU','3381','VIC','Concongella'
6959
+ 'AU','3381','VIC','Deep Lead'
6960
+ 'AU','3381','VIC','Fyans Creek'
6961
+ 'AU','3381','VIC','Germania'
6962
+ 'AU','3381','VIC','Greens Creek'
6963
+ 'AU','3381','VIC','Halls Gap'
6964
+ 'AU','3381','VIC','Illawarra'
6965
+ 'AU','3381','VIC','Joel Joel'
6966
+ 'AU','3381','VIC','Joel South'
6967
+ 'AU','3381','VIC','Kanya'
6968
+ 'AU','3381','VIC','Lake Fyans'
6969
+ 'AU','3381','VIC','Lake Lonsdale'
6970
+ 'AU','3381','VIC','Lubeck'
6971
+ 'AU','3381','VIC','Morrl Morrl'
6972
+ 'AU','3381','VIC','Paradise'
6973
+ 'AU','3381','VIC','Pomonal'
6974
+ 'AU','3381','VIC','Rostron'
6975
+ 'AU','3381','VIC','Wal Wal'
6976
+ 'AU','3381','VIC','Wallaloo'
6977
+ 'AU','3381','VIC','Wallaloo East'
6978
+ 'AU','3384','VIC','Frenchmans'
6979
+ 'AU','3384','VIC','Landsborough'
6980
+ 'AU','3384','VIC','Landsborough West'
6981
+ 'AU','3384','VIC','Navarre'
6982
+ 'AU','3384','VIC','Shays Flat'
6983
+ 'AU','3384','VIC','Wattle Creek'
6984
+ 'AU','3385','VIC','Dadswells Bridge'
6985
+ 'AU','3385','VIC','Glenorchy'
6986
+ 'AU','3385','VIC','Ledcourt'
6987
+ 'AU','3385','VIC','Riachella'
6988
+ 'AU','3387','VIC','Marnoo'
6989
+ 'AU','3388','VIC','Banyena'
6990
+ 'AU','3388','VIC','Rupanyup'
6991
+ 'AU','3390','VIC','Kewell'
6992
+ 'AU','3390','VIC','Murtoa'
6993
+ 'AU','3391','VIC','Brim'
6994
+ 'AU','3392','VIC','Minyip'
6995
+ 'AU','3392','VIC','Sheep Hills'
6996
+ 'AU','3393','VIC','Aubrey'
6997
+ 'AU','3393','VIC','Bangerang'
6998
+ 'AU','3393','VIC','Cannum'
6999
+ 'AU','3393','VIC','Crymelon'
7000
+ 'AU','3393','VIC','Kellalac'
7001
+ 'AU','3393','VIC','Lah'
7002
+ 'AU','3393','VIC','Warracknabeal'
7003
+ 'AU','3393','VIC','Wilkur'
7004
+ 'AU','3393','VIC','Willenabrina'
7005
+ 'AU','3395','VIC','Beulah'
7006
+ 'AU','3395','VIC','Kenmare'
7007
+ 'AU','3395','VIC','Reedy Dam'
7008
+ 'AU','3396','VIC','Hopetoun'
7009
+ 'AU','3400','VIC','Horsham'
7010
+ 'AU','3400','VIC','Horsham West'
7011
+ 'AU','3401','VIC','Blackheath'
7012
+ 'AU','3401','VIC','Brimpaen'
7013
+ 'AU','3401','VIC','Bungalally'
7014
+ 'AU','3401','VIC','Cherrypool'
7015
+ 'AU','3401','VIC','Dooen'
7016
+ 'AU','3401','VIC','Drung'
7017
+ 'AU','3401','VIC','Gymbowen'
7018
+ 'AU','3401','VIC','Haven'
7019
+ 'AU','3401','VIC','Jung'
7020
+ 'AU','3401','VIC','Kalkee'
7021
+ 'AU','3401','VIC','Kanagulk'
7022
+ 'AU','3401','VIC','Karnak'
7023
+ 'AU','3401','VIC','Laharum'
7024
+ 'AU','3401','VIC','Longerenong'
7025
+ 'AU','3401','VIC','Lower Norton'
7026
+ 'AU','3401','VIC','Mckenzie Creek'
7027
+ 'AU','3401','VIC','Mockinya'
7028
+ 'AU','3401','VIC','Murra Warra'
7029
+ 'AU','3401','VIC','Nurcoung'
7030
+ 'AU','3401','VIC','Nurrabiel'
7031
+ 'AU','3401','VIC','Pimpinio'
7032
+ 'AU','3401','VIC','Quantong'
7033
+ 'AU','3401','VIC','Riverside'
7034
+ 'AU','3401','VIC','Rocklands'
7035
+ 'AU','3401','VIC','St Helens Plains'
7036
+ 'AU','3401','VIC','Telangatuk East'
7037
+ 'AU','3401','VIC','Toolondo'
7038
+ 'AU','3401','VIC','Vectis'
7039
+ 'AU','3401','VIC','Wail'
7040
+ 'AU','3401','VIC','Wallup'
7041
+ 'AU','3401','VIC','Wartook'
7042
+ 'AU','3401','VIC','Wonwondah'
7043
+ 'AU','3401','VIC','Zumsteins'
7044
+ 'AU','3402','VIC','Horsham'
7045
+ 'AU','3407','VIC','Balmoral'
7046
+ 'AU','3407','VIC','Englefield'
7047
+ 'AU','3407','VIC','Gatum'
7048
+ 'AU','3407','VIC','Pigeon Ponds'
7049
+ 'AU','3407','VIC','Vasey'
7050
+ 'AU','3409','VIC','Arapiles'
7051
+ 'AU','3409','VIC','Clear Lake'
7052
+ 'AU','3409','VIC','Douglas'
7053
+ 'AU','3409','VIC','Duchembegarra'
7054
+ 'AU','3409','VIC','Grass Flat'
7055
+ 'AU','3409','VIC','Jilpanger'
7056
+ 'AU','3409','VIC','Miga Lake'
7057
+ 'AU','3409','VIC','Mitre'
7058
+ 'AU','3409','VIC','Natimuk'
7059
+ 'AU','3409','VIC','Noradjuha'
7060
+ 'AU','3409','VIC','Tooan'
7061
+ 'AU','3409','VIC','Wombelano'
7062
+ 'AU','3412','VIC','Goroke'
7063
+ 'AU','3413','VIC','Minimay'
7064
+ 'AU','3413','VIC','Neuarpurr'
7065
+ 'AU','3413','VIC','Ozenkadnook'
7066
+ 'AU','3413','VIC','Peronne'
7067
+ 'AU','3414','VIC','Antwerp'
7068
+ 'AU','3414','VIC','Dimboola'
7069
+ 'AU','3414','VIC','Tarranyurk'
7070
+ 'AU','3415','VIC','Miram'
7071
+ 'AU','3418','VIC','Broughton'
7072
+ 'AU','3418','VIC','Gerang Gerung'
7073
+ 'AU','3418','VIC','Glenlee'
7074
+ 'AU','3418','VIC','Kiata'
7075
+ 'AU','3418','VIC','Lawloit'
7076
+ 'AU','3418','VIC','Little Desert'
7077
+ 'AU','3418','VIC','Lorquon'
7078
+ 'AU','3418','VIC','Netherby'
7079
+ 'AU','3418','VIC','Nhill'
7080
+ 'AU','3418','VIC','Yanac'
7081
+ 'AU','3419','VIC','Kaniva'
7082
+ 'AU','3420','VIC','Lillimur'
7083
+ 'AU','3420','VIC','Serviceton'
7084
+ 'AU','3420','VIC','Telopea Downs'
7085
+ 'AU','3423','VIC','Jeparit'
7086
+ 'AU','3424','VIC','Albacutya'
7087
+ 'AU','3424','VIC','Rainbow'
7088
+ 'AU','3424','VIC','Yaapeet'
7089
+ 'AU','3427','VIC','Diggers Rest'
7090
+ 'AU','3428','VIC','Bulla'
7091
+ 'AU','3429','VIC','Sunbury'
7092
+ 'AU','3429','VIC','Wildwood'
7093
+ 'AU','3430','VIC','Clarkefield'
7094
+ 'AU','3431','VIC','Riddells Creek'
7095
+ 'AU','3432','VIC','Bolinda'
7096
+ 'AU','3433','VIC','Monegeetta'
7097
+ 'AU','3434','VIC','Cherokee'
7098
+ 'AU','3434','VIC','Kerrie'
7099
+ 'AU','3434','VIC','Romsey'
7100
+ 'AU','3434','VIC','Springfield'
7101
+ 'AU','3435','VIC','Benloch'
7102
+ 'AU','3435','VIC','Goldie'
7103
+ 'AU','3435','VIC','Lancefield'
7104
+ 'AU','3435','VIC','Nulla Vale'
7105
+ 'AU','3437','VIC','Bullengarook'
7106
+ 'AU','3437','VIC','Gisborne'
7107
+ 'AU','3437','VIC','Gisborne South'
7108
+ 'AU','3438','VIC','New Gisborne'
7109
+ 'AU','3440','VIC','Macedon'
7110
+ 'AU','3441','VIC','Mount Macedon'
7111
+ 'AU','3442','VIC','Ashbourne'
7112
+ 'AU','3442','VIC','Cadello'
7113
+ 'AU','3442','VIC','Carlsruhe'
7114
+ 'AU','3442','VIC','Cobaw'
7115
+ 'AU','3442','VIC','Hesket'
7116
+ 'AU','3442','VIC','Newham'
7117
+ 'AU','3442','VIC','Rochford'
7118
+ 'AU','3442','VIC','Woodend'
7119
+ 'AU','3442','VIC','Woodend North'
7120
+ 'AU','3444','VIC','Barfold'
7121
+ 'AU','3444','VIC','Baynton'
7122
+ 'AU','3444','VIC','Baynton East'
7123
+ 'AU','3444','VIC','Edgecombe'
7124
+ 'AU','3444','VIC','Glenhope'
7125
+ 'AU','3444','VIC','Greenhill'
7126
+ 'AU','3444','VIC','Kyneton'
7127
+ 'AU','3444','VIC','Kyneton South'
7128
+ 'AU','3444','VIC','Langley'
7129
+ 'AU','3444','VIC','Lauriston'
7130
+ 'AU','3444','VIC','Lyal'
7131
+ 'AU','3444','VIC','Metcalfe East'
7132
+ 'AU','3444','VIC','Mia Mia'
7133
+ 'AU','3444','VIC','Myrtle Creek'
7134
+ 'AU','3444','VIC','Pastoria'
7135
+ 'AU','3444','VIC','Pastoria East'
7136
+ 'AU','3444','VIC','Pipers Creek'
7137
+ 'AU','3444','VIC','Redesdale'
7138
+ 'AU','3444','VIC','Sidonia'
7139
+ 'AU','3444','VIC','Spring Hill'
7140
+ 'AU','3444','VIC','Tylden'
7141
+ 'AU','3444','VIC','Tylden South'
7142
+ 'AU','3446','VIC','Drummond North'
7143
+ 'AU','3446','VIC','Malmsbury'
7144
+ 'AU','3447','VIC','Taradale'
7145
+ 'AU','3448','VIC','Elphinstone'
7146
+ 'AU','3448','VIC','Metcalfe'
7147
+ 'AU','3448','VIC','Sutton Grange'
7148
+ 'AU','3450','VIC','Castlemaine'
7149
+ 'AU','3450','VIC','Moonlight Flat'
7150
+ 'AU','3451','VIC','Barkers Creek'
7151
+ 'AU','3451','VIC','Campbells Creek'
7152
+ 'AU','3451','VIC','Chewton'
7153
+ 'AU','3451','VIC','Chewton Bushlands'
7154
+ 'AU','3451','VIC','Faraday'
7155
+ 'AU','3451','VIC','Fryerstown'
7156
+ 'AU','3451','VIC','Glenluce'
7157
+ 'AU','3451','VIC','Golden Point'
7158
+ 'AU','3451','VIC','Gower'
7159
+ 'AU','3451','VIC','Guildford'
7160
+ 'AU','3451','VIC','Irishtown'
7161
+ 'AU','3451','VIC','Mckenzie Hill'
7162
+ 'AU','3451','VIC','Muckleford'
7163
+ 'AU','3451','VIC','Tarilta'
7164
+ 'AU','3451','VIC','Vaughan'
7165
+ 'AU','3451','VIC','Yapeen'
7166
+ 'AU','3453','VIC','Harcourt'
7167
+ 'AU','3453','VIC','Harcourt North'
7168
+ 'AU','3453','VIC','Ravenswood'
7169
+ 'AU','3453','VIC','Ravenswood South'
7170
+ 'AU','3458','VIC','Barrys Reef'
7171
+ 'AU','3458','VIC','Blackwood'
7172
+ 'AU','3458','VIC','Fern Hill'
7173
+ 'AU','3458','VIC','Lerderderg'
7174
+ 'AU','3458','VIC','Little Hampton'
7175
+ 'AU','3458','VIC','Newbury'
7176
+ 'AU','3458','VIC','North Blackwood'
7177
+ 'AU','3458','VIC','Trentham'
7178
+ 'AU','3458','VIC','Trentham East'
7179
+ 'AU','3460','VIC','Basalt'
7180
+ 'AU','3460','VIC','Daylesford'
7181
+ 'AU','3461','VIC','Bullarto'
7182
+ 'AU','3461','VIC','Bullarto South'
7183
+ 'AU','3461','VIC','Clydesdale'
7184
+ 'AU','3461','VIC','Coomoora'
7185
+ 'AU','3461','VIC','Denver'
7186
+ 'AU','3461','VIC','Drummond'
7187
+ 'AU','3461','VIC','Dry Diggings'
7188
+ 'AU','3461','VIC','Eganstown'
7189
+ 'AU','3461','VIC','Elevated Plains'
7190
+ 'AU','3461','VIC','Franklinford'
7191
+ 'AU','3461','VIC','Glenlyon'
7192
+ 'AU','3461','VIC','Hepburn'
7193
+ 'AU','3461','VIC','Hepburn Springs'
7194
+ 'AU','3461','VIC','Korweinguboora'
7195
+ 'AU','3461','VIC','Leonards Hill'
7196
+ 'AU','3461','VIC','Lyonville'
7197
+ 'AU','3461','VIC','Mount Franklin'
7198
+ 'AU','3461','VIC','Musk'
7199
+ 'AU','3461','VIC','Musk Vale'
7200
+ 'AU','3461','VIC','Porcupine Ridge'
7201
+ 'AU','3461','VIC','Sailors Falls'
7202
+ 'AU','3461','VIC','Sailors Hill'
7203
+ 'AU','3461','VIC','Shepherds Flat'
7204
+ 'AU','3461','VIC','Spargo Creek'
7205
+ 'AU','3461','VIC','Strangways'
7206
+ 'AU','3461','VIC','Wheatsheaf'
7207
+ 'AU','3461','VIC','Yandoit'
7208
+ 'AU','3461','VIC','Yandoit Hills'
7209
+ 'AU','3462','VIC','Green Gully'
7210
+ 'AU','3462','VIC','Joyces Creek'
7211
+ 'AU','3462','VIC','Muckleford South'
7212
+ 'AU','3462','VIC','Newstead'
7213
+ 'AU','3462','VIC','Sandon'
7214
+ 'AU','3462','VIC','Welshmans Reef'
7215
+ 'AU','3463','VIC','Baringhup'
7216
+ 'AU','3463','VIC','Baringhup West'
7217
+ 'AU','3463','VIC','Bradford'
7218
+ 'AU','3463','VIC','Eastville'
7219
+ 'AU','3463','VIC','Laanecoorie'
7220
+ 'AU','3463','VIC','Maldon'
7221
+ 'AU','3463','VIC','Neereman'
7222
+ 'AU','3463','VIC','Nuggetty'
7223
+ 'AU','3463','VIC','Perkins Reef'
7224
+ 'AU','3463','VIC','Porcupine Flat'
7225
+ 'AU','3463','VIC','Shelbourne'
7226
+ 'AU','3463','VIC','Tarrengower'
7227
+ 'AU','3463','VIC','Walmer'
7228
+ 'AU','3463','VIC','Woodstock West'
7229
+ 'AU','3464','VIC','Carisbrook'
7230
+ 'AU','3465','VIC','Adelaide Lead'
7231
+ 'AU','3465','VIC','Alma'
7232
+ 'AU','3465','VIC','Bowenvale'
7233
+ 'AU','3465','VIC','Bung Bong'
7234
+ 'AU','3465','VIC','Cotswold'
7235
+ 'AU','3465','VIC','Craigie'
7236
+ 'AU','3465','VIC','Daisy Hill'
7237
+ 'AU','3465','VIC','Flagstaff'
7238
+ 'AU','3465','VIC','Golden Point'
7239
+ 'AU','3465','VIC','Havelock'
7240
+ 'AU','3465','VIC','Homebush'
7241
+ 'AU','3465','VIC','Majorca'
7242
+ 'AU','3465','VIC','Maryborough'
7243
+ 'AU','3465','VIC','Moolort'
7244
+ 'AU','3465','VIC','Moonlight Flat'
7245
+ 'AU','3465','VIC','Natte Yallock'
7246
+ 'AU','3465','VIC','Rathscar'
7247
+ 'AU','3465','VIC','Rathscar West'
7248
+ 'AU','3465','VIC','Rodborough'
7249
+ 'AU','3465','VIC','Simson'
7250
+ 'AU','3465','VIC','Timor'
7251
+ 'AU','3465','VIC','Timor West'
7252
+ 'AU','3465','VIC','Wareek'
7253
+ 'AU','3467','VIC','Avoca'
7254
+ 'AU','3467','VIC','Moyreisk'
7255
+ 'AU','3468','VIC','Amphitheatre'
7256
+ 'AU','3468','VIC','Mount Lonarch'
7257
+ 'AU','3469','VIC','Elmhurst'
7258
+ 'AU','3469','VIC','Glenlofty'
7259
+ 'AU','3469','VIC','Glenlogie'
7260
+ 'AU','3469','VIC','Glenpatrick'
7261
+ 'AU','3469','VIC','Nowhere Creek'
7262
+ 'AU','3472','VIC','Bet Bet'
7263
+ 'AU','3472','VIC','Betley'
7264
+ 'AU','3472','VIC','Bromley'
7265
+ 'AU','3472','VIC','Dunluce'
7266
+ 'AU','3472','VIC','Dunolly'
7267
+ 'AU','3472','VIC','Eddington'
7268
+ 'AU','3472','VIC','Goldsborough'
7269
+ 'AU','3472','VIC','Inkerman'
7270
+ 'AU','3472','VIC','Mcintyre'
7271
+ 'AU','3472','VIC','Moliagul'
7272
+ 'AU','3472','VIC','Mount Hooghly'
7273
+ 'AU','3475','VIC','Archdale'
7274
+ 'AU','3475','VIC','Archdale Junction'
7275
+ 'AU','3475','VIC','Bealiba'
7276
+ 'AU','3475','VIC','Burkes Flat'
7277
+ 'AU','3475','VIC','Cochranes Creek'
7278
+ 'AU','3475','VIC','Emu'
7279
+ 'AU','3475','VIC','Logan'
7280
+ 'AU','3478','VIC','Avon Plains'
7281
+ 'AU','3478','VIC','Beazleys Bridge'
7282
+ 'AU','3478','VIC','Carapooee'
7283
+ 'AU','3478','VIC','Carapooee West'
7284
+ 'AU','3478','VIC','Coonooer Bridge'
7285
+ 'AU','3478','VIC','Coonooer West'
7286
+ 'AU','3478','VIC','Darkbonee'
7287
+ 'AU','3478','VIC','Dooboobetic'
7288
+ 'AU','3478','VIC','Elberton'
7289
+ 'AU','3478','VIC','Gooroc'
7290
+ 'AU','3478','VIC','Gowar East'
7291
+ 'AU','3478','VIC','Gre Gre'
7292
+ 'AU','3478','VIC','Gre Gre North'
7293
+ 'AU','3478','VIC','Gre Gre South'
7294
+ 'AU','3478','VIC','Kooreh'
7295
+ 'AU','3478','VIC','Medlyn'
7296
+ 'AU','3478','VIC','Mitchells Hill'
7297
+ 'AU','3478','VIC','Moolerr'
7298
+ 'AU','3478','VIC','Moonambel'
7299
+ 'AU','3478','VIC','Percydale'
7300
+ 'AU','3478','VIC','Redbank'
7301
+ 'AU','3478','VIC','Slaty Creek'
7302
+ 'AU','3478','VIC','St Arnaud'
7303
+ 'AU','3478','VIC','St Arnaud East'
7304
+ 'AU','3478','VIC','St Arnaud North'
7305
+ 'AU','3478','VIC','Stuart Mill'
7306
+ 'AU','3478','VIC','Sutherland'
7307
+ 'AU','3478','VIC','Swanwater'
7308
+ 'AU','3478','VIC','Tanwood'
7309
+ 'AU','3478','VIC','Tottington'
7310
+ 'AU','3478','VIC','Traynors Lagoon'
7311
+ 'AU','3478','VIC','Tulkara'
7312
+ 'AU','3478','VIC','Warrenmang'
7313
+ 'AU','3478','VIC','Yawong Hills'
7314
+ 'AU','3480','VIC','Areegra'
7315
+ 'AU','3480','VIC','Banyenong'
7316
+ 'AU','3480','VIC','Boolite'
7317
+ 'AU','3480','VIC','Carron'
7318
+ 'AU','3480','VIC','Cope Cope'
7319
+ 'AU','3480','VIC','Corack'
7320
+ 'AU','3480','VIC','Corack East'
7321
+ 'AU','3480','VIC','Donald'
7322
+ 'AU','3480','VIC','Gil Gil'
7323
+ 'AU','3480','VIC','Jeffcott'
7324
+ 'AU','3480','VIC','Jeffcott North'
7325
+ 'AU','3480','VIC','Laen'
7326
+ 'AU','3480','VIC','Laen East'
7327
+ 'AU','3480','VIC','Laen North'
7328
+ 'AU','3480','VIC','Lake Buloke'
7329
+ 'AU','3480','VIC','Lawler'
7330
+ 'AU','3480','VIC','Litchfield'
7331
+ 'AU','3480','VIC','Rich Avon'
7332
+ 'AU','3480','VIC','Rich Avon East'
7333
+ 'AU','3480','VIC','Rich Avon West'
7334
+ 'AU','3480','VIC','Swanwater West'
7335
+ 'AU','3482','VIC','Massey'
7336
+ 'AU','3482','VIC','Morton Plains'
7337
+ 'AU','3482','VIC','Warmur'
7338
+ 'AU','3482','VIC','Watchem'
7339
+ 'AU','3482','VIC','Watchem West'
7340
+ 'AU','3483','VIC','Ballapur'
7341
+ 'AU','3483','VIC','Birchip'
7342
+ 'AU','3483','VIC','Birchip West'
7343
+ 'AU','3483','VIC','Curyo'
7344
+ 'AU','3483','VIC','Jil Jil'
7345
+ 'AU','3483','VIC','Karyrie'
7346
+ 'AU','3483','VIC','Kinnabulla'
7347
+ 'AU','3483','VIC','Marlbed'
7348
+ 'AU','3483','VIC','Narraport'
7349
+ 'AU','3483','VIC','Whirily'
7350
+ 'AU','3485','VIC','Banyan'
7351
+ 'AU','3485','VIC','Watchupga'
7352
+ 'AU','3485','VIC','Willangie'
7353
+ 'AU','3485','VIC','Woomelang'
7354
+ 'AU','3487','VIC','Lascelles'
7355
+ 'AU','3488','VIC','Speed'
7356
+ 'AU','3488','VIC','Turriff East'
7357
+ 'AU','3489','VIC','Tempy'
7358
+ 'AU','3490','VIC','Boinka'
7359
+ 'AU','3490','VIC','Kulwin'
7360
+ 'AU','3490','VIC','Ouyen'
7361
+ 'AU','3490','VIC','Torrita'
7362
+ 'AU','3490','VIC','Tutye'
7363
+ 'AU','3491','VIC','Patchewollock'
7364
+ 'AU','3494','VIC','Carwarp'
7365
+ 'AU','3494','VIC','Colignan'
7366
+ 'AU','3494','VIC','Iraak'
7367
+ 'AU','3494','VIC','Nangiloc'
7368
+ 'AU','3496','VIC','Cardross'
7369
+ 'AU','3496','VIC','Cullulleraine'
7370
+ 'AU','3496','VIC','Meringur'
7371
+ 'AU','3496','VIC','Merrinee'
7372
+ 'AU','3496','VIC','Neds Corner'
7373
+ 'AU','3496','VIC','Red Cliffs'
7374
+ 'AU','3496','VIC','Sunnycliffs'
7375
+ 'AU','3496','VIC','Werrimull'
7376
+ 'AU','3498','VIC','Irymple'
7377
+ 'AU','3500','VIC','Mildura'
7378
+ 'AU','3500','VIC','Mildura East'
7379
+ 'AU','3500','VIC','Mildura West'
7380
+ 'AU','3500','NSW','Paringi'
7381
+ 'AU','3501','VIC','Hattah'
7382
+ 'AU','3501','VIC','Koorlong'
7383
+ 'AU','3501','VIC','Mildura Centre Plaza'
7384
+ 'AU','3501','VIC','Mildura South'
7385
+ 'AU','3501','VIC','Nichols Point'
7386
+ 'AU','3502','VIC','Mildura'
7387
+ 'AU','3505','VIC','Birdwoodton'
7388
+ 'AU','3505','VIC','Cabarita'
7389
+ 'AU','3505','VIC','Merbein'
7390
+ 'AU','3505','VIC','Merbein South'
7391
+ 'AU','3505','VIC','Merbein West'
7392
+ 'AU','3505','VIC','Wargan'
7393
+ 'AU','3505','VIC','Yelta'
7394
+ 'AU','3506','VIC','Cowangie'
7395
+ 'AU','3507','VIC','Walpeup'
7396
+ 'AU','3509','VIC','Linga'
7397
+ 'AU','3509','VIC','Underbool'
7398
+ 'AU','3512','VIC','Carina'
7399
+ 'AU','3512','VIC','Murrayville'
7400
+ 'AU','3515','VIC','Marong'
7401
+ 'AU','3515','VIC','Wilsons Hill'
7402
+ 'AU','3516','VIC','Bridgewater'
7403
+ 'AU','3516','VIC','Bridgewater North'
7404
+ 'AU','3516','VIC','Bridgewater On Loddon'
7405
+ 'AU','3516','VIC','Derby'
7406
+ 'AU','3516','VIC','Leichardt'
7407
+ 'AU','3516','VIC','Yarraberb'
7408
+ 'AU','3517','VIC','Bears Lagoon'
7409
+ 'AU','3517','VIC','Brenanah'
7410
+ 'AU','3517','VIC','Glenalbyn'
7411
+ 'AU','3517','VIC','Inglewood'
7412
+ 'AU','3517','VIC','Jarklin'
7413
+ 'AU','3517','VIC','Kingower'
7414
+ 'AU','3517','VIC','Kurting'
7415
+ 'AU','3517','VIC','Powlett Plains'
7416
+ 'AU','3517','VIC','Rheola'
7417
+ 'AU','3517','VIC','Salisbury West'
7418
+ 'AU','3517','VIC','Serpentine'
7419
+ 'AU','3518','VIC','Berrimal'
7420
+ 'AU','3518','VIC','Borung'
7421
+ 'AU','3518','VIC','Fentons Creek'
7422
+ 'AU','3518','VIC','Fernihurst'
7423
+ 'AU','3518','VIC','Fiery Flat'
7424
+ 'AU','3518','VIC','Kurraca'
7425
+ 'AU','3518','VIC','Kurraca West'
7426
+ 'AU','3518','VIC','Mysia'
7427
+ 'AU','3518','VIC','Nine Mile'
7428
+ 'AU','3518','VIC','Richmond Plains'
7429
+ 'AU','3518','VIC','Skinners Flat'
7430
+ 'AU','3518','VIC','Wedderburn'
7431
+ 'AU','3518','VIC','Wedderburn Junction'
7432
+ 'AU','3518','VIC','Wehla'
7433
+ 'AU','3518','VIC','Woolshed Flat'
7434
+ 'AU','3518','VIC','Woosang'
7435
+ 'AU','3520','VIC','Kinypanial'
7436
+ 'AU','3520','VIC','Korong Vale'
7437
+ 'AU','3521','VIC','Pyalong'
7438
+ 'AU','3522','VIC','Emu Flat'
7439
+ 'AU','3522','VIC','Glenhope East'
7440
+ 'AU','3522','VIC','Tooborac'
7441
+ 'AU','3523','VIC','Argyle'
7442
+ 'AU','3523','VIC','Costerfield'
7443
+ 'AU','3523','VIC','Derrinal'
7444
+ 'AU','3523','VIC','Heathcote'
7445
+ 'AU','3523','VIC','Heathcote South'
7446
+ 'AU','3523','VIC','Knowsley'
7447
+ 'AU','3523','VIC','Ladys Pass'
7448
+ 'AU','3523','VIC','Moormbool West'
7449
+ 'AU','3523','VIC','Mount Camel'
7450
+ 'AU','3523','VIC','Redcastle'
7451
+ 'AU','3525','VIC','Barrakee'
7452
+ 'AU','3525','VIC','Buckrabanyule'
7453
+ 'AU','3525','VIC','Charlton'
7454
+ 'AU','3525','VIC','Chirrip'
7455
+ 'AU','3525','VIC','Granite Flat'
7456
+ 'AU','3525','VIC','Lake Marmal'
7457
+ 'AU','3525','VIC','Nareewillock'
7458
+ 'AU','3525','VIC','Terrappee'
7459
+ 'AU','3525','VIC','Wooroonook'
7460
+ 'AU','3525','VIC','Wychitella'
7461
+ 'AU','3525','VIC','Wychitella North'
7462
+ 'AU','3525','VIC','Yeungroon'
7463
+ 'AU','3525','VIC','Yeungroon East'
7464
+ 'AU','3527','VIC','Bunguluke'
7465
+ 'AU','3527','VIC','Dumosa'
7466
+ 'AU','3527','VIC','Glenloth'
7467
+ 'AU','3527','VIC','Glenloth East'
7468
+ 'AU','3527','VIC','Jeruk'
7469
+ 'AU','3527','VIC','Ninyeunook'
7470
+ 'AU','3527','VIC','Teddywaddy'
7471
+ 'AU','3527','VIC','Teddywaddy West'
7472
+ 'AU','3527','VIC','Thalia'
7473
+ 'AU','3527','VIC','Towaninny'
7474
+ 'AU','3527','VIC','Towaninny South'
7475
+ 'AU','3527','VIC','Wycheproof'
7476
+ 'AU','3527','VIC','Wycheproof South'
7477
+ 'AU','3529','VIC','Kalpienung'
7478
+ 'AU','3529','VIC','Nullawil'
7479
+ 'AU','3530','VIC','Culgoa'
7480
+ 'AU','3530','VIC','Sutton'
7481
+ 'AU','3530','VIC','Wangie'
7482
+ 'AU','3530','VIC','Warne'
7483
+ 'AU','3531','VIC','Berriwillock'
7484
+ 'AU','3531','VIC','Boigbeat'
7485
+ 'AU','3533','VIC','Bimbourie'
7486
+ 'AU','3533','VIC','Lake Tyrrell'
7487
+ 'AU','3533','VIC','Mittyack'
7488
+ 'AU','3533','VIC','Myall'
7489
+ 'AU','3533','VIC','Nandaly'
7490
+ 'AU','3533','VIC','Ninda'
7491
+ 'AU','3533','VIC','Nyarrin'
7492
+ 'AU','3533','VIC','Pier Milan'
7493
+ 'AU','3533','VIC','Sea Lake'
7494
+ 'AU','3533','VIC','Straten'
7495
+ 'AU','3533','VIC','Tyenna'
7496
+ 'AU','3533','VIC','Tyrrell'
7497
+ 'AU','3533','VIC','Tyrrell Downs'
7498
+ 'AU','3537','VIC','Barraport'
7499
+ 'AU','3537','VIC','Barraport West'
7500
+ 'AU','3537','VIC','Boort'
7501
+ 'AU','3537','VIC','Canary Island'
7502
+ 'AU','3537','VIC','Catumnal'
7503
+ 'AU','3537','VIC','Gredgwin'
7504
+ 'AU','3537','VIC','Leaghur'
7505
+ 'AU','3537','VIC','Minmindie'
7506
+ 'AU','3537','VIC','Yando'
7507
+ 'AU','3540','VIC','Cannie'
7508
+ 'AU','3540','VIC','Oakvale'
7509
+ 'AU','3540','VIC','Quambatook'
7510
+ 'AU','3542','VIC','Cokum'
7511
+ 'AU','3542','VIC','Lalbert'
7512
+ 'AU','3542','VIC','Tittybong'
7513
+ 'AU','3544','VIC','Chinangin'
7514
+ 'AU','3544','VIC','Gowanford'
7515
+ 'AU','3544','VIC','Murnungin'
7516
+ 'AU','3544','VIC','Springfield'
7517
+ 'AU','3544','VIC','Ultima'
7518
+ 'AU','3544','VIC','Ultima East'
7519
+ 'AU','3544','VIC','Waitchie'
7520
+ 'AU','3546','VIC','Bolton'
7521
+ 'AU','3546','VIC','Chinkapook'
7522
+ 'AU','3546','VIC','Cocamba'
7523
+ 'AU','3546','VIC','Gerahmin'
7524
+ 'AU','3546','VIC','Manangatang'
7525
+ 'AU','3546','VIC','Turoar'
7526
+ 'AU','3546','VIC','Winnambool'
7527
+ 'AU','3549','VIC','Annuello'
7528
+ 'AU','3549','VIC','Bannerton'
7529
+ 'AU','3549','VIC','Happy Valley'
7530
+ 'AU','3549','VIC','Liparoo'
7531
+ 'AU','3549','VIC','Robinvale'
7532
+ 'AU','3549','VIC','Robinvale Irrigation District Section B'
7533
+ 'AU','3549','VIC','Robinvale Irrigation District Section C'
7534
+ 'AU','3549','VIC','Robinvale Irrigation District Section D'
7535
+ 'AU','3549','VIC','Robinvale Irrigation District Section E'
7536
+ 'AU','3549','VIC','Tol Tol'
7537
+ 'AU','3549','VIC','Wandown'
7538
+ 'AU','3549','VIC','Wemen'
7539
+ 'AU','3550','VIC','Bendigo'
7540
+ 'AU','3550','VIC','Bendigo South'
7541
+ 'AU','3550','VIC','Diamond Hill'
7542
+ 'AU','3550','VIC','East Bendigo'
7543
+ 'AU','3550','VIC','Flora Hill'
7544
+ 'AU','3550','VIC','Ironbark'
7545
+ 'AU','3550','VIC','Kennington'
7546
+ 'AU','3550','VIC','Long Gully'
7547
+ 'AU','3550','VIC','North Bendigo'
7548
+ 'AU','3550','VIC','Quarry Hill'
7549
+ 'AU','3550','VIC','Sandhurst East'
7550
+ 'AU','3550','VIC','Spring Gully'
7551
+ 'AU','3550','VIC','Strathdale'
7552
+ 'AU','3550','VIC','Tysons Reef'
7553
+ 'AU','3550','VIC','West Bendigo'
7554
+ 'AU','3550','VIC','White Hills'
7555
+ 'AU','3551','VIC','Arnold'
7556
+ 'AU','3551','VIC','Arnold West'
7557
+ 'AU','3551','VIC','Ascot'
7558
+ 'AU','3551','VIC','Axe Creek'
7559
+ 'AU','3551','VIC','Axedale'
7560
+ 'AU','3551','VIC','Bagshot'
7561
+ 'AU','3551','VIC','Bagshot North'
7562
+ 'AU','3551','VIC','Bendigo Forward'
7563
+ 'AU','3551','VIC','Cornella'
7564
+ 'AU','3551','VIC','Emu Creek'
7565
+ 'AU','3551','VIC','Eppalock'
7566
+ 'AU','3551','VIC','Epsom'
7567
+ 'AU','3551','VIC','Huntly'
7568
+ 'AU','3551','VIC','Huntly North'
7569
+ 'AU','3551','VIC','Junortoun'
7570
+ 'AU','3551','VIC','Kimbolton'
7571
+ 'AU','3551','VIC','Llanelly'
7572
+ 'AU','3551','VIC','Lockwood'
7573
+ 'AU','3551','VIC','Lockwood South'
7574
+ 'AU','3551','VIC','Longlea'
7575
+ 'AU','3551','VIC','Maiden Gully'
7576
+ 'AU','3551','VIC','Mandurang'
7577
+ 'AU','3551','VIC','Mandurang South'
7578
+ 'AU','3551','VIC','Minto'
7579
+ 'AU','3551','VIC','Murphys Creek'
7580
+ 'AU','3551','VIC','Myola'
7581
+ 'AU','3551','VIC','Myola East'
7582
+ 'AU','3551','VIC','Newbridge'
7583
+ 'AU','3551','VIC','Painswick'
7584
+ 'AU','3551','VIC','Pilchers Bridge'
7585
+ 'AU','3551','VIC','Sedgwick'
7586
+ 'AU','3551','VIC','Strathfieldsaye'
7587
+ 'AU','3551','VIC','Tarnagulla'
7588
+ 'AU','3551','VIC','Toolleen'
7589
+ 'AU','3551','VIC','Waanyarra'
7590
+ 'AU','3551','VIC','Wellsford'
7591
+ 'AU','3551','VIC','Woodstock On Loddon'
7592
+ 'AU','3552','VIC','Bendigo'
7593
+ 'AU','3554','VIC','Bendigo Dc'
7594
+ 'AU','3555','VIC','Big Hill'
7595
+ 'AU','3555','VIC','Golden Gully'
7596
+ 'AU','3555','VIC','Golden Square'
7597
+ 'AU','3555','VIC','Kangaroo Flat'
7598
+ 'AU','3555','VIC','Lansell Plaza'
7599
+ 'AU','3556','VIC','California Gully'
7600
+ 'AU','3556','VIC','Campbells Forest'
7601
+ 'AU','3556','VIC','Eaglehawk'
7602
+ 'AU','3556','VIC','Eaglehawk North'
7603
+ 'AU','3556','VIC','Jackass Flat'
7604
+ 'AU','3556','VIC','Myers Flat'
7605
+ 'AU','3556','VIC','Sailors Gully'
7606
+ 'AU','3556','VIC','Sebastian'
7607
+ 'AU','3556','VIC','Whipstick'
7608
+ 'AU','3556','VIC','Woodvale'
7609
+ 'AU','3557','VIC','Barnadown'
7610
+ 'AU','3557','VIC','Fosterville'
7611
+ 'AU','3557','VIC','Goornong'
7612
+ 'AU','3557','VIC','Muskerry'
7613
+ 'AU','3557','VIC','Muskerry East'
7614
+ 'AU','3558','VIC','Burnewang'
7615
+ 'AU','3558','VIC','Corop West'
7616
+ 'AU','3558','VIC','Creek View'
7617
+ 'AU','3558','VIC','Elmore'
7618
+ 'AU','3558','VIC','Hunter'
7619
+ 'AU','3559','VIC','Avonmore'
7620
+ 'AU','3559','VIC','Colbinabbin'
7621
+ 'AU','3559','VIC','Corop'
7622
+ 'AU','3559','VIC','Runnymede'
7623
+ 'AU','3561','VIC','Ballendella'
7624
+ 'AU','3561','VIC','Bamawm'
7625
+ 'AU','3561','VIC','Bamawm Extension'
7626
+ 'AU','3561','VIC','Diggora'
7627
+ 'AU','3561','VIC','Diggora West'
7628
+ 'AU','3561','VIC','Fairy Dell'
7629
+ 'AU','3561','VIC','Nanneella'
7630
+ 'AU','3561','VIC','Rochester'
7631
+ 'AU','3561','VIC','Rochester West'
7632
+ 'AU','3561','VIC','The Settlement'
7633
+ 'AU','3561','VIC','Timmering'
7634
+ 'AU','3562','VIC','Torrumbarry'
7635
+ 'AU','3563','VIC','Lockington'
7636
+ 'AU','3564','VIC','Campaspe West'
7637
+ 'AU','3564','VIC','Echuca'
7638
+ 'AU','3564','VIC','Echuca East'
7639
+ 'AU','3564','VIC','Echuca South'
7640
+ 'AU','3564','VIC','Echuca Village'
7641
+ 'AU','3564','VIC','Echuca West'
7642
+ 'AU','3564','VIC','Kanyapella'
7643
+ 'AU','3564','VIC','Mcevoys'
7644
+ 'AU','3564','VIC','Patho'
7645
+ 'AU','3564','VIC','Patho West'
7646
+ 'AU','3564','VIC','Roslynmead'
7647
+ 'AU','3564','VIC','Simmie'
7648
+ 'AU','3564','VIC','Wharparilla'
7649
+ 'AU','3565','VIC','Kotta'
7650
+ 'AU','3566','VIC','Gunbower'
7651
+ 'AU','3567','VIC','Horfield'
7652
+ 'AU','3567','VIC','Leitchville'
7653
+ 'AU','3568','VIC','Burkes Bridge'
7654
+ 'AU','3568','VIC','Cohuna'
7655
+ 'AU','3568','VIC','Cullen'
7656
+ 'AU','3568','VIC','Daltons Bridge'
7657
+ 'AU','3568','VIC','Gannawarra'
7658
+ 'AU','3568','VIC','Keely'
7659
+ 'AU','3568','VIC','Macorna North'
7660
+ 'AU','3568','VIC','Mcmillans'
7661
+ 'AU','3568','VIC','Mead'
7662
+ 'AU','3568','VIC','Mincha West'
7663
+ 'AU','3568','VIC','Wee Wee Rup'
7664
+ 'AU','3570','VIC','Auchmore'
7665
+ 'AU','3570','VIC','Drummartin'
7666
+ 'AU','3570','VIC','Kamarooka'
7667
+ 'AU','3570','VIC','Neilborough'
7668
+ 'AU','3570','VIC','Raywood'
7669
+ 'AU','3570','VIC','Summerfield'
7670
+ 'AU','3571','VIC','Dingee'
7671
+ 'AU','3571','VIC','Kamarooka North'
7672
+ 'AU','3571','VIC','Pompapiel'
7673
+ 'AU','3571','VIC','Tandarra'
7674
+ 'AU','3572','VIC','Milloo'
7675
+ 'AU','3572','VIC','Piavella'
7676
+ 'AU','3572','VIC','Prairie'
7677
+ 'AU','3572','VIC','Tennyson'
7678
+ 'AU','3573','VIC','Calivil'
7679
+ 'AU','3573','VIC','Mitiamo'
7680
+ 'AU','3573','VIC','Pine Grove'
7681
+ 'AU','3573','VIC','Pine Grove East'
7682
+ 'AU','3573','VIC','Terrick Terrick East'
7683
+ 'AU','3575','VIC','Gladfield'
7684
+ 'AU','3575','VIC','Jungaburra'
7685
+ 'AU','3575','VIC','Loddon Vale'
7686
+ 'AU','3575','VIC','Mincha'
7687
+ 'AU','3575','VIC','Mologa'
7688
+ 'AU','3575','VIC','Pyramid Hill'
7689
+ 'AU','3575','VIC','Sylvaterre'
7690
+ 'AU','3575','VIC','Terrick Terrick'
7691
+ 'AU','3575','VIC','Yarrawalla'
7692
+ 'AU','3576','VIC','Durham Ox'
7693
+ 'AU','3579','VIC','Appin'
7694
+ 'AU','3579','VIC','Appin South'
7695
+ 'AU','3579','VIC','Bael Bael'
7696
+ 'AU','3579','VIC','Beauchamp'
7697
+ 'AU','3579','VIC','Benjeroop'
7698
+ 'AU','3579','VIC','Budgerum East'
7699
+ 'AU','3579','VIC','Capels Crossing'
7700
+ 'AU','3579','VIC','Dingwall'
7701
+ 'AU','3579','VIC','Fairley'
7702
+ 'AU','3579','VIC','Gonn Crossing'
7703
+ 'AU','3579','VIC','Kerang'
7704
+ 'AU','3579','VIC','Kerang East'
7705
+ 'AU','3579','VIC','Koroop'
7706
+ 'AU','3579','VIC','Lake Meran'
7707
+ 'AU','3579','VIC','Macorna'
7708
+ 'AU','3579','VIC','Meering West'
7709
+ 'AU','3579','VIC','Milnes Bridge'
7710
+ 'AU','3579','VIC','Murrabit'
7711
+ 'AU','3579','VIC','Murrabit West'
7712
+ 'AU','3579','VIC','Myall'
7713
+ 'AU','3579','VIC','Mystic Park'
7714
+ 'AU','3579','VIC','Normanville'
7715
+ 'AU','3579','VIC','Pine View'
7716
+ 'AU','3579','VIC','Reedy Lake'
7717
+ 'AU','3579','VIC','Sandhill Lake'
7718
+ 'AU','3579','VIC','Teal Point'
7719
+ 'AU','3579','VIC','Tragowel'
7720
+ 'AU','3579','VIC','Wandella'
7721
+ 'AU','3579','VIC','Westby'
7722
+ 'AU','3580','VIC','Koondrook'
7723
+ 'AU','3581','VIC','Lake Charm'
7724
+ 'AU','3583','VIC','Tresco'
7725
+ 'AU','3584','VIC','Lake Boga'
7726
+ 'AU','3584','VIC','Tresco West'
7727
+ 'AU','3585','VIC','Castle Donnington'
7728
+ 'AU','3585','VIC','Chillingollah'
7729
+ 'AU','3585','VIC','Fish Point'
7730
+ 'AU','3585','VIC','Goschen'
7731
+ 'AU','3585','VIC','Kunat'
7732
+ 'AU','3585','VIC','Meatian'
7733
+ 'AU','3585','NSW','Murray Downs'
7734
+ 'AU','3585','VIC','Nowie'
7735
+ 'AU','3585','VIC','Nyrraby'
7736
+ 'AU','3585','VIC','Pira'
7737
+ 'AU','3585','VIC','Polisbet'
7738
+ 'AU','3585','VIC','Speewa'
7739
+ 'AU','3585','VIC','Swan Hill'
7740
+ 'AU','3585','VIC','Swan Hill Pioneer'
7741
+ 'AU','3585','VIC','Swan Hill West'
7742
+ 'AU','3585','VIC','Winlaton'
7743
+ 'AU','3586','VIC','Bulga'
7744
+ 'AU','3586','NSW','Mallan'
7745
+ 'AU','3586','VIC','Murrawee'
7746
+ 'AU','3586','VIC','Murraydale'
7747
+ 'AU','3586','VIC','Pental Island'
7748
+ 'AU','3586','VIC','Tyntynder'
7749
+ 'AU','3586','VIC','Tyntynder South'
7750
+ 'AU','3588','VIC','Woorinen South'
7751
+ 'AU','3589','VIC','Woorinen'
7752
+ 'AU','3589','VIC','Woorinen North'
7753
+ 'AU','3590','VIC','Beverford'
7754
+ 'AU','3591','VIC','Vinifera'
7755
+ 'AU','3594','VIC','Nyah'
7756
+ 'AU','3595','VIC','Nyah West'
7757
+ 'AU','3596','VIC','Miralie'
7758
+ 'AU','3596','VIC','Towan'
7759
+ 'AU','3596','VIC','Wood Wood'
7760
+ 'AU','3597','VIC','Kenley'
7761
+ 'AU','3597','VIC','Kooloonong'
7762
+ 'AU','3597','VIC','Lake Powell'
7763
+ 'AU','3597','VIC','Narrung'
7764
+ 'AU','3597','VIC','Natya'
7765
+ 'AU','3597','VIC','Piangil'
7766
+ 'AU','3599','VIC','Boundary Bend'
7767
+ 'AU','3607','VIC','Tabilk'
7768
+ 'AU','3608','VIC','Bailieston'
7769
+ 'AU','3608','VIC','Goulburn Weir'
7770
+ 'AU','3608','VIC','Graytown'
7771
+ 'AU','3608','VIC','Kirwans Bridge'
7772
+ 'AU','3608','VIC','Mitchellstown'
7773
+ 'AU','3608','VIC','Nagambie'
7774
+ 'AU','3608','VIC','Wahring'
7775
+ 'AU','3608','VIC','Wirrate'
7776
+ 'AU','3610','VIC','Dhurringile'
7777
+ 'AU','3610','VIC','Moorilim'
7778
+ 'AU','3610','VIC','Murchison'
7779
+ 'AU','3610','VIC','Murchison East'
7780
+ 'AU','3610','VIC','Murchison North'
7781
+ 'AU','3612','VIC','Moora'
7782
+ 'AU','3612','VIC','Rushworth'
7783
+ 'AU','3612','VIC','Wanalta'
7784
+ 'AU','3612','VIC','Waranga Shores'
7785
+ 'AU','3612','VIC','Whroo'
7786
+ 'AU','3614','VIC','Toolamba'
7787
+ 'AU','3614','VIC','Toolamba West'
7788
+ 'AU','3616','VIC','Cooma'
7789
+ 'AU','3616','VIC','Gillieston'
7790
+ 'AU','3616','VIC','Girgarre East'
7791
+ 'AU','3616','VIC','Harston'
7792
+ 'AU','3616','VIC','Mooroopna North West'
7793
+ 'AU','3616','VIC','Tatura'
7794
+ 'AU','3616','VIC','Tatura East'
7795
+ 'AU','3616','VIC','Waranga'
7796
+ 'AU','3617','VIC','Byrneside'
7797
+ 'AU','3618','VIC','Merrigum'
7798
+ 'AU','3619','VIC','Kyabram'
7799
+ 'AU','3620','VIC','Kyabram'
7800
+ 'AU','3620','VIC','Kyabram South'
7801
+ 'AU','3620','VIC','Lancaster'
7802
+ 'AU','3620','VIC','Mount Scobie'
7803
+ 'AU','3620','VIC','St Germains'
7804
+ 'AU','3620','VIC','Taripta'
7805
+ 'AU','3620','VIC','Wyuna'
7806
+ 'AU','3620','VIC','Wyuna East'
7807
+ 'AU','3621','VIC','Koyuga South'
7808
+ 'AU','3621','VIC','Ky West'
7809
+ 'AU','3621','VIC','Kyvalley'
7810
+ 'AU','3621','VIC','Tongala'
7811
+ 'AU','3621','VIC','Yambuna'
7812
+ 'AU','3622','VIC','Cornelia Creek'
7813
+ 'AU','3622','VIC','Koyuga'
7814
+ 'AU','3622','VIC','Strathallan'
7815
+ 'AU','3623','VIC','Carag Carag'
7816
+ 'AU','3623','VIC','Stanhope'
7817
+ 'AU','3623','VIC','Stanhope South'
7818
+ 'AU','3624','VIC','Girgarre'
7819
+ 'AU','3629','VIC','Ardmona'
7820
+ 'AU','3629','VIC','Coomboona'
7821
+ 'AU','3629','VIC','Mooroopna'
7822
+ 'AU','3629','VIC','Mooroopna North'
7823
+ 'AU','3629','VIC','Undera'
7824
+ 'AU','3630','VIC','Branditt'
7825
+ 'AU','3630','VIC','Caniambo'
7826
+ 'AU','3630','VIC','Colliver'
7827
+ 'AU','3630','VIC','Dunkirk'
7828
+ 'AU','3630','VIC','Shepparton'
7829
+ 'AU','3630','VIC','Shepparton South'
7830
+ 'AU','3631','VIC','Arcadia'
7831
+ 'AU','3631','VIC','Arcadia South'
7832
+ 'AU','3631','VIC','Cosgrove'
7833
+ 'AU','3631','VIC','Cosgrove South'
7834
+ 'AU','3631','VIC','Grahamvale'
7835
+ 'AU','3631','VIC','Karramomus'
7836
+ 'AU','3631','VIC','Kialla'
7837
+ 'AU','3631','VIC','Kialla East'
7838
+ 'AU','3631','VIC','Kialla West'
7839
+ 'AU','3631','VIC','Lemnos'
7840
+ 'AU','3631','VIC','Orrvale'
7841
+ 'AU','3631','VIC','Pine Lodge'
7842
+ 'AU','3631','VIC','Shepparton East'
7843
+ 'AU','3631','VIC','Shepparton North'
7844
+ 'AU','3632','VIC','Shepparton'
7845
+ 'AU','3633','VIC','Congupna'
7846
+ 'AU','3634','VIC','Bunbartha'
7847
+ 'AU','3634','VIC','Invergordon South'
7848
+ 'AU','3634','VIC','Katandra'
7849
+ 'AU','3634','VIC','Katandra West'
7850
+ 'AU','3634','VIC','Marionvale'
7851
+ 'AU','3634','VIC','Marungi'
7852
+ 'AU','3634','VIC','Tallygaroopna'
7853
+ 'AU','3634','VIC','Zeerust'
7854
+ 'AU','3635','VIC','Kaarimba'
7855
+ 'AU','3635','VIC','Mundoona'
7856
+ 'AU','3635','VIC','Wunghnu'
7857
+ 'AU','3636','VIC','Drumanure'
7858
+ 'AU','3636','VIC','Invergordon'
7859
+ 'AU','3636','VIC','Naring'
7860
+ 'AU','3636','VIC','Numurkah'
7861
+ 'AU','3637','VIC','Waaia'
7862
+ 'AU','3637','VIC','Yalca'
7863
+ 'AU','3638','VIC','Kotupna'
7864
+ 'AU','3638','VIC','Nathalia'
7865
+ 'AU','3638','VIC','Yielima'
7866
+ 'AU','3639','VIC','Barmah'
7867
+ 'AU','3639','VIC','Lower Moira'
7868
+ 'AU','3639','VIC','Picola'
7869
+ 'AU','3639','VIC','Picola West'
7870
+ 'AU','3640','VIC','Katunga'
7871
+ 'AU','3641','VIC','Bearii'
7872
+ 'AU','3641','VIC','Mywee'
7873
+ 'AU','3641','VIC','Strathmerton'
7874
+ 'AU','3641','VIC','Ulupna'
7875
+ 'AU','3643','VIC','Cobram'
7876
+ 'AU','3644','NSW','Barooga'
7877
+ 'AU','3644','VIC','Cobram'
7878
+ 'AU','3644','VIC','Cobram East'
7879
+ 'AU','3644','VIC','Koonoomoo'
7880
+ 'AU','3644','NSW','Lalalty'
7881
+ 'AU','3644','VIC','Muckatah'
7882
+ 'AU','3644','VIC','Yarroweyah'
7883
+ 'AU','3646','VIC','Dookie'
7884
+ 'AU','3646','VIC','Mount Major'
7885
+ 'AU','3646','VIC','Nalinga'
7886
+ 'AU','3646','VIC','Waggarandall'
7887
+ 'AU','3646','VIC','Yabba North'
7888
+ 'AU','3646','VIC','Yabba South'
7889
+ 'AU','3646','VIC','Youanmite'
7890
+ 'AU','3647','VIC','Dookie College'
7891
+ 'AU','3649','VIC','Katamatite'
7892
+ 'AU','3649','VIC','Katamatite East'
7893
+ 'AU','3658','VIC','Broadford'
7894
+ 'AU','3658','VIC','Clonbinane'
7895
+ 'AU','3658','VIC','Flowerdale'
7896
+ 'AU','3658','VIC','Hazeldene'
7897
+ 'AU','3658','VIC','Reedy Creek'
7898
+ 'AU','3658','VIC','Strath Creek'
7899
+ 'AU','3658','VIC','Sugarloaf Creek'
7900
+ 'AU','3658','VIC','Sunday Creek'
7901
+ 'AU','3658','VIC','Tyaak'
7902
+ 'AU','3658','VIC','Waterford Park'
7903
+ 'AU','3659','VIC','Tallarook'
7904
+ 'AU','3660','VIC','Caveat'
7905
+ 'AU','3660','VIC','Dropmore'
7906
+ 'AU','3660','VIC','Dysart'
7907
+ 'AU','3660','VIC','Highlands'
7908
+ 'AU','3660','VIC','Hilldene'
7909
+ 'AU','3660','VIC','Kerrisdale'
7910
+ 'AU','3660','VIC','Northwood'
7911
+ 'AU','3660','VIC','Seymour'
7912
+ 'AU','3660','VIC','Seymour South'
7913
+ 'AU','3660','VIC','Trawool'
7914
+ 'AU','3660','VIC','Whiteheads Creek'
7915
+ 'AU','3661','VIC','Seymour'
7916
+ 'AU','3662','VIC','Puckapunyal Milpo'
7917
+ 'AU','3663','VIC','Mangalore'
7918
+ 'AU','3664','VIC','Avenel'
7919
+ 'AU','3664','VIC','Upton Hill'
7920
+ 'AU','3665','VIC','Locksley'
7921
+ 'AU','3665','VIC','Longwood'
7922
+ 'AU','3666','VIC','Balmattum'
7923
+ 'AU','3666','VIC','Creighton'
7924
+ 'AU','3666','VIC','Creightons Creek'
7925
+ 'AU','3666','VIC','Euroa'
7926
+ 'AU','3666','VIC','Gooram'
7927
+ 'AU','3666','VIC','Kelvin View'
7928
+ 'AU','3666','VIC','Kithbrook'
7929
+ 'AU','3666','VIC','Longwood East'
7930
+ 'AU','3666','VIC','Miepoll'
7931
+ 'AU','3666','VIC','Moglonemby'
7932
+ 'AU','3666','VIC','Molka'
7933
+ 'AU','3666','VIC','Pranjip'
7934
+ 'AU','3666','VIC','Riggs Creek'
7935
+ 'AU','3666','VIC','Ruffy'
7936
+ 'AU','3666','VIC','Sheans Creek'
7937
+ 'AU','3666','VIC','Strathbogie'
7938
+ 'AU','3666','VIC','Tarcombe'
7939
+ 'AU','3669','VIC','Boho'
7940
+ 'AU','3669','VIC','Boho South'
7941
+ 'AU','3669','VIC','Creek Junction'
7942
+ 'AU','3669','VIC','Earlston'
7943
+ 'AU','3669','VIC','Gowangardie'
7944
+ 'AU','3669','VIC','Koonda'
7945
+ 'AU','3669','VIC','Marraweeney'
7946
+ 'AU','3669','VIC','Tamleugh'
7947
+ 'AU','3669','VIC','Tamleugh North'
7948
+ 'AU','3669','VIC','Upotipotpon'
7949
+ 'AU','3669','VIC','Violet Town'
7950
+ 'AU','3670','VIC','Baddaginnie'
7951
+ 'AU','3670','VIC','Tarnook'
7952
+ 'AU','3670','VIC','Warrenbayne'
7953
+ 'AU','3671','VIC','Benalla'
7954
+ 'AU','3672','VIC','Benalla'
7955
+ 'AU','3672','VIC','Benalla West'
7956
+ 'AU','3673','VIC','Broken Creek'
7957
+ 'AU','3673','VIC','Goomalibee'
7958
+ 'AU','3673','VIC','Lima'
7959
+ 'AU','3673','VIC','Lima East'
7960
+ 'AU','3673','VIC','Lima South'
7961
+ 'AU','3673','VIC','Lurg'
7962
+ 'AU','3673','VIC','Molyullah'
7963
+ 'AU','3673','VIC','Moorngag'
7964
+ 'AU','3673','VIC','Samaria'
7965
+ 'AU','3673','VIC','Swanpool'
7966
+ 'AU','3673','VIC','Tatong'
7967
+ 'AU','3673','VIC','Upper Lurg'
7968
+ 'AU','3673','VIC','Upper Ryans Creek'
7969
+ 'AU','3673','VIC','Winton'
7970
+ 'AU','3673','VIC','Winton North'
7971
+ 'AU','3675','VIC','Boweya'
7972
+ 'AU','3675','VIC','Boweya North'
7973
+ 'AU','3675','VIC','Glenrowan'
7974
+ 'AU','3675','VIC','Glenrowan West'
7975
+ 'AU','3675','VIC','Greta'
7976
+ 'AU','3675','VIC','Greta South'
7977
+ 'AU','3675','VIC','Greta West'
7978
+ 'AU','3675','VIC','Hansonville'
7979
+ 'AU','3675','VIC','Mount Bruno'
7980
+ 'AU','3675','VIC','Taminick'
7981
+ 'AU','3676','VIC','Wangaratta'
7982
+ 'AU','3677','VIC','Appin Park'
7983
+ 'AU','3677','VIC','Wangaratta'
7984
+ 'AU','3677','VIC','Wangaratta West'
7985
+ 'AU','3677','VIC','Yarrunga'
7986
+ 'AU','3678','VIC','Bobinawarrah'
7987
+ 'AU','3678','VIC','Boorhaman'
7988
+ 'AU','3678','VIC','Boorhaman East'
7989
+ 'AU','3678','VIC','Bowser'
7990
+ 'AU','3678','VIC','Byawatha'
7991
+ 'AU','3678','VIC','Carboor'
7992
+ 'AU','3678','VIC','Cheshunt'
7993
+ 'AU','3678','VIC','Cheshunt South'
7994
+ 'AU','3678','VIC','Docker'
7995
+ 'AU','3678','VIC','Dockers Plains'
7996
+ 'AU','3678','VIC','East Wangaratta'
7997
+ 'AU','3678','VIC','Edi'
7998
+ 'AU','3678','VIC','Edi Upper'
7999
+ 'AU','3678','VIC','Everton'
8000
+ 'AU','3678','VIC','Everton Upper'
8001
+ 'AU','3678','VIC','Killawarra'
8002
+ 'AU','3678','VIC','King Valley'
8003
+ 'AU','3678','VIC','Laceby'
8004
+ 'AU','3678','VIC','Londrigan'
8005
+ 'AU','3678','VIC','Markwood'
8006
+ 'AU','3678','VIC','Meadow Creek'
8007
+ 'AU','3678','VIC','Milawa'
8008
+ 'AU','3678','VIC','North Wangaratta'
8009
+ 'AU','3678','VIC','Oxley'
8010
+ 'AU','3678','VIC','Oxley Flats'
8011
+ 'AU','3678','VIC','Peechelba'
8012
+ 'AU','3678','VIC','Peechelba East'
8013
+ 'AU','3678','VIC','Rose River'
8014
+ 'AU','3678','VIC','Tarrawingee'
8015
+ 'AU','3678','VIC','Wabonga'
8016
+ 'AU','3678','VIC','Waldara'
8017
+ 'AU','3678','VIC','Wangandary'
8018
+ 'AU','3678','VIC','Wangaratta Forward'
8019
+ 'AU','3678','VIC','Wangaratta South'
8020
+ 'AU','3678','VIC','Whitlands'
8021
+ 'AU','3682','VIC','Boralma'
8022
+ 'AU','3682','VIC','Lilliput'
8023
+ 'AU','3682','VIC','Norong'
8024
+ 'AU','3682','VIC','Springhurst'
8025
+ 'AU','3683','VIC','Chiltern'
8026
+ 'AU','3683','VIC','Chiltern Valley'
8027
+ 'AU','3683','VIC','Cornishtown'
8028
+ 'AU','3685','VIC','Boorhaman North'
8029
+ 'AU','3685','VIC','Brimin'
8030
+ 'AU','3685','VIC','Browns Plains'
8031
+ 'AU','3685','VIC','Carlyle'
8032
+ 'AU','3685','VIC','Gooramadda'
8033
+ 'AU','3685','VIC','Great Southern'
8034
+ 'AU','3685','VIC','Lake Moodemere'
8035
+ 'AU','3685','VIC','Norong Central'
8036
+ 'AU','3685','VIC','Prentice North'
8037
+ 'AU','3685','VIC','Rutherglen'
8038
+ 'AU','3687','VIC','Wahgunyah'
8039
+ 'AU','3688','VIC','Barnawartha'
8040
+ 'AU','3688','VIC','Indigo Valley'
8041
+ 'AU','3689','VIC','Wodonga'
8042
+ 'AU','3690','VIC','West Wodonga'
8043
+ 'AU','3690','VIC','Wodonga'
8044
+ 'AU','3690','VIC','Wodonga Plaza'
8045
+ 'AU','3691','VIC','Allans Flat'
8046
+ 'AU','3691','VIC','Baranduda'
8047
+ 'AU','3691','VIC','Barnawartha North'
8048
+ 'AU','3691','VIC','Bellbridge'
8049
+ 'AU','3691','VIC','Berringama'
8050
+ 'AU','3691','VIC','Bethanga'
8051
+ 'AU','3691','VIC','Bonegilla'
8052
+ 'AU','3691','VIC','Bungil'
8053
+ 'AU','3691','VIC','Castle Creek'
8054
+ 'AU','3691','VIC','Coral Bank'
8055
+ 'AU','3691','VIC','Dederang'
8056
+ 'AU','3691','VIC','Ebden'
8057
+ 'AU','3691','VIC','Gateway Island'
8058
+ 'AU','3691','VIC','Glen Creek'
8059
+ 'AU','3691','VIC','Gundowring'
8060
+ 'AU','3691','VIC','Huon Creek'
8061
+ 'AU','3691','VIC','Kancoona'
8062
+ 'AU','3691','VIC','Kergunyah'
8063
+ 'AU','3691','VIC','Kergunyah South'
8064
+ 'AU','3691','VIC','Kiewa'
8065
+ 'AU','3691','VIC','Killara'
8066
+ 'AU','3691','VIC','Leneva'
8067
+ 'AU','3691','VIC','Lucyvale'
8068
+ 'AU','3691','VIC','Mongans Bridge'
8069
+ 'AU','3691','VIC','Osbornes Flat'
8070
+ 'AU','3691','VIC','Running Creek'
8071
+ 'AU','3691','VIC','Staghorn Flat'
8072
+ 'AU','3691','VIC','Talgarno'
8073
+ 'AU','3691','VIC','Tangambalanga'
8074
+ 'AU','3691','VIC','Thologolong'
8075
+ 'AU','3691','VIC','Upper Gundowring'
8076
+ 'AU','3691','VIC','Wodonga Forward'
8077
+ 'AU','3694','VIC','Bandiana'
8078
+ 'AU','3694','VIC','Bandiana Milpo'
8079
+ 'AU','3695','VIC','Charleroi'
8080
+ 'AU','3695','VIC','Huon'
8081
+ 'AU','3695','VIC','Sandy Creek'
8082
+ 'AU','3697','VIC','Tawonga'
8083
+ 'AU','3698','VIC','Tawonga South'
8084
+ 'AU','3699','VIC','Bogong'
8085
+ 'AU','3699','VIC','Falls Creek'
8086
+ 'AU','3699','VIC','Mount Beauty'
8087
+ 'AU','3700','VIC','Bullioh'
8088
+ 'AU','3700','VIC','Georges Creek'
8089
+ 'AU','3700','VIC','Jarvis Creek'
8090
+ 'AU','3700','VIC','Tallangatta'
8091
+ 'AU','3700','VIC','Tallangatta East'
8092
+ 'AU','3701','VIC','Dartmouth'
8093
+ 'AU','3701','VIC','Eskdale'
8094
+ 'AU','3701','VIC','Granya'
8095
+ 'AU','3701','VIC','Mitta Mitta'
8096
+ 'AU','3701','VIC','Old Tallangatta'
8097
+ 'AU','3701','VIC','Shelley'
8098
+ 'AU','3701','VIC','Tallandoon'
8099
+ 'AU','3701','VIC','Tallangatta South'
8100
+ 'AU','3701','VIC','Tallangatta Valley'
8101
+ 'AU','3704','VIC','Koetong'
8102
+ 'AU','3705','VIC','Cudgewa'
8103
+ 'AU','3707','VIC','Biggara'
8104
+ 'AU','3707','NSW','Bringenbrong'
8105
+ 'AU','3707','VIC','Colac Colac'
8106
+ 'AU','3707','VIC','Corryong'
8107
+ 'AU','3707','VIC','Nariel Valley'
8108
+ 'AU','3707','VIC','Thowgla Valley'
8109
+ 'AU','3707','VIC','Tom Groggin'
8110
+ 'AU','3707','VIC','Towong'
8111
+ 'AU','3707','VIC','Towong Upper'
8112
+ 'AU','3708','VIC','Tintaldra'
8113
+ 'AU','3709','VIC','Burrowye'
8114
+ 'AU','3709','VIC','Guys Forest'
8115
+ 'AU','3709','VIC','Mount Alfred'
8116
+ 'AU','3709','VIC','Pine Mountain'
8117
+ 'AU','3709','VIC','Walwa'
8118
+ 'AU','3711','VIC','Buxton'
8119
+ 'AU','3712','VIC','Rubicon'
8120
+ 'AU','3712','VIC','Thornton'
8121
+ 'AU','3713','VIC','Eildon'
8122
+ 'AU','3713','VIC','Lake Eildon'
8123
+ 'AU','3713','VIC','Taylor Bay'
8124
+ 'AU','3714','VIC','Acheron'
8125
+ 'AU','3714','VIC','Alexandra'
8126
+ 'AU','3714','VIC','Cathkin'
8127
+ 'AU','3714','VIC','Crystal Creek'
8128
+ 'AU','3714','VIC','Devils River'
8129
+ 'AU','3714','VIC','Fawcett'
8130
+ 'AU','3714','VIC','Koriella'
8131
+ 'AU','3714','VIC','Maintongoon'
8132
+ 'AU','3714','VIC','Taggerty'
8133
+ 'AU','3714','VIC','Whanregarwen'
8134
+ 'AU','3715','VIC','Ancona'
8135
+ 'AU','3715','VIC','Merton'
8136
+ 'AU','3715','VIC','Woodfield'
8137
+ 'AU','3717','VIC','Flowerdale'
8138
+ 'AU','3717','VIC','Ghin Ghin'
8139
+ 'AU','3717','VIC','Glenburn'
8140
+ 'AU','3717','VIC','Homewood'
8141
+ 'AU','3717','VIC','Killingworth'
8142
+ 'AU','3717','VIC','Limestone'
8143
+ 'AU','3717','VIC','Murrindindi'
8144
+ 'AU','3717','VIC','Yea'
8145
+ 'AU','3718','VIC','Molesworth'
8146
+ 'AU','3719','VIC','Gobur'
8147
+ 'AU','3719','VIC','Kanumbra'
8148
+ 'AU','3719','VIC','Terip Terip'
8149
+ 'AU','3719','VIC','Yarck'
8150
+ 'AU','3720','VIC','Bonnie Doon'
8151
+ 'AU','3722','VIC','Barwite'
8152
+ 'AU','3722','VIC','Mansfield'
8153
+ 'AU','3722','VIC','Mirimbah'
8154
+ 'AU','3723','VIC','Archerton'
8155
+ 'AU','3723','VIC','Barjarg'
8156
+ 'AU','3723','VIC','Boorolite'
8157
+ 'AU','3723','VIC','Bridge Creek'
8158
+ 'AU','3723','VIC','Delatite'
8159
+ 'AU','3723','VIC','Gaffneys Creek'
8160
+ 'AU','3723','VIC','Goughs Bay'
8161
+ 'AU','3723','VIC','Howes Creek'
8162
+ 'AU','3723','VIC','Howqua'
8163
+ 'AU','3723','VIC','Howqua Hills'
8164
+ 'AU','3723','VIC','Howqua Inlet'
8165
+ 'AU','3723','VIC','Jamieson'
8166
+ 'AU','3723','VIC','Kevington'
8167
+ 'AU','3723','VIC','Macs Cove'
8168
+ 'AU','3723','VIC','Maindample'
8169
+ 'AU','3723','VIC','Matlock'
8170
+ 'AU','3723','VIC','Merrijig'
8171
+ 'AU','3723','VIC','Mount Buller'
8172
+ 'AU','3723','VIC','Mountain Bay'
8173
+ 'AU','3723','VIC','Piries'
8174
+ 'AU','3723','VIC','Sawmill Settlement'
8175
+ 'AU','3723','VIC','Tolmie'
8176
+ 'AU','3723','VIC','Woods Point'
8177
+ 'AU','3724','VIC','Mansfield'
8178
+ 'AU','3725','VIC','Boxwood'
8179
+ 'AU','3725','VIC','Chesney Vale'
8180
+ 'AU','3725','VIC','Goorambat'
8181
+ 'AU','3725','VIC','Major Plains'
8182
+ 'AU','3725','VIC','Stewarton'
8183
+ 'AU','3726','VIC','Bungeet'
8184
+ 'AU','3726','VIC','Bungeet West'
8185
+ 'AU','3726','VIC','Devenish'
8186
+ 'AU','3726','VIC','Thoona'
8187
+ 'AU','3727','VIC','Almonds'
8188
+ 'AU','3727','VIC','Lake Rowan'
8189
+ 'AU','3727','VIC','Pelluebla'
8190
+ 'AU','3727','VIC','Saint James'
8191
+ 'AU','3727','VIC','Yundool'
8192
+ 'AU','3728','VIC','Boomahnoomoonah'
8193
+ 'AU','3728','VIC','Tungamah'
8194
+ 'AU','3728','VIC','Wilby'
8195
+ 'AU','3728','VIC','Youarang'
8196
+ 'AU','3730','VIC','Bathumi'
8197
+ 'AU','3730','VIC','Boosey'
8198
+ 'AU','3730','VIC','Bundalong'
8199
+ 'AU','3730','VIC','Bundalong South'
8200
+ 'AU','3730','VIC','Burramine'
8201
+ 'AU','3730','VIC','Burramine South'
8202
+ 'AU','3730','VIC','Esmond'
8203
+ 'AU','3730','VIC','Telford'
8204
+ 'AU','3730','VIC','Yarrawonga'
8205
+ 'AU','3730','VIC','Yarrawonga South'
8206
+ 'AU','3732','VIC','Moyhu'
8207
+ 'AU','3732','VIC','Myrrhee'
8208
+ 'AU','3733','VIC','Whitfield'
8209
+ 'AU','3735','VIC','Bowmans Forest'
8210
+ 'AU','3735','VIC','Whorouly'
8211
+ 'AU','3735','VIC','Whorouly East'
8212
+ 'AU','3735','VIC','Whorouly South'
8213
+ 'AU','3736','VIC','Myrtleford'
8214
+ 'AU','3737','VIC','Abbeyard'
8215
+ 'AU','3737','VIC','Barwidgee'
8216
+ 'AU','3737','VIC','Buffalo River'
8217
+ 'AU','3737','VIC','Dandongadale'
8218
+ 'AU','3737','VIC','Gapsted'
8219
+ 'AU','3737','VIC','Havilah'
8220
+ 'AU','3737','VIC','Merriang'
8221
+ 'AU','3737','VIC','Merriang South'
8222
+ 'AU','3737','VIC','Mudgegonga'
8223
+ 'AU','3737','VIC','Myrtleford'
8224
+ 'AU','3737','VIC','Nug Nug'
8225
+ 'AU','3737','VIC','Rosewhite'
8226
+ 'AU','3737','VIC','Selwyn'
8227
+ 'AU','3737','VIC','Wonnangatta'
8228
+ 'AU','3738','VIC','Ovens'
8229
+ 'AU','3739','VIC','Eurobin'
8230
+ 'AU','3740','VIC','Buckland'
8231
+ 'AU','3740','VIC','Mount Buffalo'
8232
+ 'AU','3740','VIC','Porepunkah'
8233
+ 'AU','3741','VIC','Bright'
8234
+ 'AU','3741','VIC','Freeburgh'
8235
+ 'AU','3741','VIC','Germantown'
8236
+ 'AU','3741','VIC','Harrietville'
8237
+ 'AU','3741','VIC','Hotham Heights'
8238
+ 'AU','3741','VIC','Mount Hotham'
8239
+ 'AU','3741','VIC','Smoko'
8240
+ 'AU','3744','VIC','Wandiligong'
8241
+ 'AU','3746','VIC','Eldorado'
8242
+ 'AU','3747','VIC','Beechworth'
8243
+ 'AU','3747','VIC','Murmungee'
8244
+ 'AU','3747','VIC','Stanley'
8245
+ 'AU','3747','VIC','Woolshed'
8246
+ 'AU','3747','VIC','Wooragee'
8247
+ 'AU','3749','VIC','Bruarong'
8248
+ 'AU','3749','VIC','Yackandandah'
8249
+ 'AU','3750','VIC','Wollert'
8250
+ 'AU','3751','VIC','Woodstock'
8251
+ 'AU','3752','VIC','Morang South'
8252
+ 'AU','3752','VIC','South Morang'
8253
+ 'AU','3753','VIC','Beveridge'
8254
+ 'AU','3754','VIC','Doreen'
8255
+ 'AU','3754','VIC','Mernda'
8256
+ 'AU','3755','VIC','Yan Yean'
8257
+ 'AU','3756','VIC','Chintin'
8258
+ 'AU','3756','VIC','Darraweit Guim'
8259
+ 'AU','3756','VIC','Hidden Valley'
8260
+ 'AU','3756','VIC','Upper Plenty'
8261
+ 'AU','3756','VIC','Wallan'
8262
+ 'AU','3757','VIC','Bruces Creek'
8263
+ 'AU','3757','VIC','Eden Park'
8264
+ 'AU','3757','VIC','Humevale'
8265
+ 'AU','3757','VIC','Kinglake Central'
8266
+ 'AU','3757','VIC','Kinglake West'
8267
+ 'AU','3757','VIC','Pheasant Creek'
8268
+ 'AU','3757','VIC','Whittlesea'
8269
+ 'AU','3758','VIC','Heathcote Junction'
8270
+ 'AU','3758','VIC','Wandong'
8271
+ 'AU','3759','VIC','Panton Hill'
8272
+ 'AU','3760','VIC','Smiths Gully'
8273
+ 'AU','3761','VIC','St Andrews'
8274
+ 'AU','3762','VIC','Bylands'
8275
+ 'AU','3763','VIC','Kinglake'
8276
+ 'AU','3763','VIC','Mount Slide'
8277
+ 'AU','3764','VIC','Forbes'
8278
+ 'AU','3764','VIC','Glenaroua'
8279
+ 'AU','3764','VIC','High Camp'
8280
+ 'AU','3764','VIC','Kilmore'
8281
+ 'AU','3764','VIC','Kilmore East'
8282
+ 'AU','3764','VIC','Moranding'
8283
+ 'AU','3764','VIC','Tantaraboo'
8284
+ 'AU','3764','VIC','Willowmavin'
8285
+ 'AU','3765','VIC','Montrose'
8286
+ 'AU','3766','VIC','Kalorama'
8287
+ 'AU','3767','VIC','Mount Dandenong'
8288
+ 'AU','3770','VIC','Coldstream'
8289
+ 'AU','3770','VIC','Gruyere'
8290
+ 'AU','3770','VIC','Yering'
8291
+ 'AU','3775','VIC','Christmas Hills'
8292
+ 'AU','3775','VIC','Dixons Creek'
8293
+ 'AU','3775','VIC','Steels Creek'
8294
+ 'AU','3775','VIC','Tarrawarra'
8295
+ 'AU','3775','VIC','Yarra Glen'
8296
+ 'AU','3777','VIC','Badger Creek'
8297
+ 'AU','3777','VIC','Castella'
8298
+ 'AU','3777','VIC','Chum Creek'
8299
+ 'AU','3777','VIC','Healesville'
8300
+ 'AU','3777','VIC','Healesville Main Street'
8301
+ 'AU','3777','VIC','Healesville Post Shop'
8302
+ 'AU','3777','VIC','Mount Toolebewong'
8303
+ 'AU','3777','VIC','Toolangi'
8304
+ 'AU','3778','VIC','Fernshaw'
8305
+ 'AU','3778','VIC','Narbethong'
8306
+ 'AU','3779','VIC','Cambarville'
8307
+ 'AU','3779','VIC','Marysville'
8308
+ 'AU','3781','VIC','Cockatoo'
8309
+ 'AU','3781','VIC','Mount Burnett'
8310
+ 'AU','3781','VIC','Nangana'
8311
+ 'AU','3782','VIC','Avonsleigh'
8312
+ 'AU','3782','VIC','Clematis'
8313
+ 'AU','3782','VIC','Emerald'
8314
+ 'AU','3782','VIC','Macclesfield'
8315
+ 'AU','3783','VIC','Gembrook'
8316
+ 'AU','3785','VIC','Tremont'
8317
+ 'AU','3786','VIC','Ferny Creek'
8318
+ 'AU','3787','VIC','Sassafras'
8319
+ 'AU','3787','VIC','Sassafras Gully'
8320
+ 'AU','3788','VIC','Olinda'
8321
+ 'AU','3789','VIC','Sherbrooke'
8322
+ 'AU','3791','VIC','Kallista'
8323
+ 'AU','3792','VIC','The Patch'
8324
+ 'AU','3793','VIC','Monbulk'
8325
+ 'AU','3795','VIC','Silvan'
8326
+ 'AU','3796','VIC','Mount Evelyn'
8327
+ 'AU','3797','VIC','Gilderoy'
8328
+ 'AU','3797','VIC','Gladysdale'
8329
+ 'AU','3797','VIC','Powelltown'
8330
+ 'AU','3797','VIC','Three Bridges'
8331
+ 'AU','3797','VIC','Yarra Junction'
8332
+ 'AU','3799','VIC','Big Pats Creek'
8333
+ 'AU','3799','VIC','East Warburton'
8334
+ 'AU','3799','VIC','Mcmahons Creek'
8335
+ 'AU','3799','VIC','Millgrove'
8336
+ 'AU','3799','VIC','Reefton'
8337
+ 'AU','3799','VIC','Warburton'
8338
+ 'AU','3799','VIC','Wesburn'
8339
+ 'AU','3800','VIC','Monash University'
8340
+ 'AU','3802','VIC','Endeavour Hills'
8341
+ 'AU','3803','VIC','Hallam'
8342
+ 'AU','3804','VIC','Narre Warren East'
8343
+ 'AU','3804','VIC','Narre Warren North'
8344
+ 'AU','3805','VIC','Fountain Gate'
8345
+ 'AU','3805','VIC','Narre Warren'
8346
+ 'AU','3805','VIC','Narre Warren South'
8347
+ 'AU','3806','VIC','Berwick'
8348
+ 'AU','3806','VIC','Harkaway'
8349
+ 'AU','3807','VIC','Beaconsfield'
8350
+ 'AU','3807','VIC','Guys Hill'
8351
+ 'AU','3808','VIC','Beaconsfield Upper'
8352
+ 'AU','3808','VIC','Dewhurst'
8353
+ 'AU','3809','VIC','Officer'
8354
+ 'AU','3809','VIC','Officer South'
8355
+ 'AU','3810','VIC','Pakenham'
8356
+ 'AU','3810','VIC','Pakenham South'
8357
+ 'AU','3810','VIC','Pakenham Upper'
8358
+ 'AU','3810','VIC','Rythdale'
8359
+ 'AU','3812','VIC','Maryknoll'
8360
+ 'AU','3812','VIC','Nar Nar Goon'
8361
+ 'AU','3812','VIC','Nar Nar Goon North'
8362
+ 'AU','3813','VIC','Tynong'
8363
+ 'AU','3813','VIC','Tynong North'
8364
+ 'AU','3814','VIC','Cora Lynn'
8365
+ 'AU','3814','VIC','Garfield'
8366
+ 'AU','3814','VIC','Garfield North'
8367
+ 'AU','3814','VIC','Vervale'
8368
+ 'AU','3815','VIC','Bunyip'
8369
+ 'AU','3815','VIC','Bunyip North'
8370
+ 'AU','3815','VIC','Iona'
8371
+ 'AU','3815','VIC','Tonimbuk'
8372
+ 'AU','3816','VIC','Labertouche'
8373
+ 'AU','3816','VIC','Longwarry'
8374
+ 'AU','3816','VIC','Longwarry North'
8375
+ 'AU','3816','VIC','Modella'
8376
+ 'AU','3818','VIC','Athlone'
8377
+ 'AU','3818','VIC','Drouin'
8378
+ 'AU','3818','VIC','Drouin East'
8379
+ 'AU','3818','VIC','Drouin South'
8380
+ 'AU','3818','VIC','Drouin West'
8381
+ 'AU','3818','VIC','Hallora'
8382
+ 'AU','3818','VIC','Jindivick'
8383
+ 'AU','3818','VIC','Ripplebrook'
8384
+ 'AU','3820','VIC','Bona Vista'
8385
+ 'AU','3820','VIC','Lillico'
8386
+ 'AU','3820','VIC','Warragul'
8387
+ 'AU','3821','VIC','Brandy Creek'
8388
+ 'AU','3821','VIC','Bravington'
8389
+ 'AU','3821','VIC','Buln Buln'
8390
+ 'AU','3821','VIC','Buln Buln East'
8391
+ 'AU','3821','VIC','Crossover'
8392
+ 'AU','3821','VIC','Ellinbank'
8393
+ 'AU','3821','VIC','Ferndale'
8394
+ 'AU','3821','VIC','Lardner'
8395
+ 'AU','3821','VIC','Nilma'
8396
+ 'AU','3821','VIC','Nilma North'
8397
+ 'AU','3821','VIC','Rokeby'
8398
+ 'AU','3821','VIC','Seaview'
8399
+ 'AU','3821','VIC','Shady Creek'
8400
+ 'AU','3821','VIC','Tetoora Road'
8401
+ 'AU','3821','VIC','Warragul South'
8402
+ 'AU','3821','VIC','Warragul West'
8403
+ 'AU','3822','VIC','Cloverlea'
8404
+ 'AU','3822','VIC','Darnum'
8405
+ 'AU','3822','VIC','Gainsborough'
8406
+ 'AU','3823','VIC','Allambee'
8407
+ 'AU','3823','VIC','Yarragon'
8408
+ 'AU','3823','VIC','Yarragon South'
8409
+ 'AU','3824','VIC','Childers'
8410
+ 'AU','3824','VIC','Narracan'
8411
+ 'AU','3824','VIC','Thorpdale South'
8412
+ 'AU','3824','VIC','Trafalgar'
8413
+ 'AU','3824','VIC','Trafalgar East'
8414
+ 'AU','3824','VIC','Trafalgar South'
8415
+ 'AU','3825','VIC','Aberfeldy'
8416
+ 'AU','3825','VIC','Amor'
8417
+ 'AU','3825','VIC','Boola'
8418
+ 'AU','3825','VIC','Caringal'
8419
+ 'AU','3825','VIC','Coalville'
8420
+ 'AU','3825','VIC','Coopers Creek'
8421
+ 'AU','3825','VIC','Erica'
8422
+ 'AU','3825','VIC','Fumina'
8423
+ 'AU','3825','VIC','Fumina South'
8424
+ 'AU','3825','VIC','Hernes Oak'
8425
+ 'AU','3825','VIC','Hill End'
8426
+ 'AU','3825','VIC','Jacob Creek'
8427
+ 'AU','3825','VIC','Jericho'
8428
+ 'AU','3825','VIC','Moe'
8429
+ 'AU','3825','VIC','Moe South'
8430
+ 'AU','3825','VIC','Moondarra'
8431
+ 'AU','3825','VIC','Newborough'
8432
+ 'AU','3825','VIC','Newborough East'
8433
+ 'AU','3825','VIC','Rawson'
8434
+ 'AU','3825','VIC','Tanjil'
8435
+ 'AU','3825','VIC','Tanjil South'
8436
+ 'AU','3825','VIC','Thalloo'
8437
+ 'AU','3825','VIC','Thomson'
8438
+ 'AU','3825','VIC','Toombon'
8439
+ 'AU','3825','VIC','Walhalla'
8440
+ 'AU','3825','VIC','Walhalla East'
8441
+ 'AU','3825','VIC','Westbury'
8442
+ 'AU','3825','VIC','Willow Grove'
8443
+ 'AU','3825','VIC','Yallourn'
8444
+ 'AU','3825','VIC','Yallourn North'
8445
+ 'AU','3831','VIC','Neerim'
8446
+ 'AU','3831','VIC','Neerim East'
8447
+ 'AU','3831','VIC','Neerim South'
8448
+ 'AU','3832','VIC','Nayook'
8449
+ 'AU','3832','VIC','Neerim Junction'
8450
+ 'AU','3832','VIC','Neerim North'
8451
+ 'AU','3833','VIC','Ada'
8452
+ 'AU','3833','VIC','Baw Baw'
8453
+ 'AU','3833','VIC','Baw Baw Village'
8454
+ 'AU','3833','VIC','Gentle Annie'
8455
+ 'AU','3833','VIC','Icy Creek'
8456
+ 'AU','3833','VIC','Loch Valley'
8457
+ 'AU','3833','VIC','Noojee'
8458
+ 'AU','3833','VIC','Piedmont'
8459
+ 'AU','3833','VIC','Tanjil Bren'
8460
+ 'AU','3833','VIC','Toorongo'
8461
+ 'AU','3833','VIC','Vesper'
8462
+ 'AU','3835','VIC','Thorpdale'
8463
+ 'AU','3840','VIC','Driffield'
8464
+ 'AU','3840','VIC','Hazelwood'
8465
+ 'AU','3840','VIC','Hazelwood North'
8466
+ 'AU','3840','VIC','Hazelwood South'
8467
+ 'AU','3840','VIC','Jeeralang'
8468
+ 'AU','3840','VIC','Jeeralang Junction'
8469
+ 'AU','3840','VIC','Maryvale'
8470
+ 'AU','3840','VIC','Mid Valley'
8471
+ 'AU','3840','VIC','Morwell'
8472
+ 'AU','3840','VIC','Morwell East'
8473
+ 'AU','3840','VIC','Morwell Upper'
8474
+ 'AU','3841','VIC','Gippsland Mc'
8475
+ 'AU','3842','VIC','Churchill'
8476
+ 'AU','3844','VIC','Blackwarry'
8477
+ 'AU','3844','VIC','Callignee'
8478
+ 'AU','3844','VIC','Callignee North'
8479
+ 'AU','3844','VIC','Callignee South'
8480
+ 'AU','3844','VIC','Carrajung'
8481
+ 'AU','3844','VIC','Carrajung Lower'
8482
+ 'AU','3844','VIC','Carrajung South'
8483
+ 'AU','3844','VIC','Flynn'
8484
+ 'AU','3844','VIC','Flynns Creek'
8485
+ 'AU','3844','VIC','Koornalla'
8486
+ 'AU','3844','VIC','Loy Yang'
8487
+ 'AU','3844','VIC','Mount Tassie'
8488
+ 'AU','3844','VIC','Traralgon'
8489
+ 'AU','3844','VIC','Traralgon East'
8490
+ 'AU','3844','VIC','Traralgon South'
8491
+ 'AU','3844','VIC','Tyers'
8492
+ 'AU','3847','VIC','Hiamdale'
8493
+ 'AU','3847','VIC','Nambrok'
8494
+ 'AU','3847','VIC','Rosedale'
8495
+ 'AU','3847','VIC','Willung'
8496
+ 'AU','3847','VIC','Willung South'
8497
+ 'AU','3850','VIC','Sale'
8498
+ 'AU','3850','VIC','Sale North'
8499
+ 'AU','3850','VIC','Wurruk'
8500
+ 'AU','3851','VIC','Airly'
8501
+ 'AU','3851','VIC','Bundalaguah'
8502
+ 'AU','3851','VIC','Clydebank'
8503
+ 'AU','3851','VIC','Cobains'
8504
+ 'AU','3851','VIC','Darriman'
8505
+ 'AU','3851','VIC','Dutson'
8506
+ 'AU','3851','VIC','Dutson Downs'
8507
+ 'AU','3851','VIC','Flamingo Beach'
8508
+ 'AU','3851','VIC','Fulham'
8509
+ 'AU','3851','VIC','Giffard'
8510
+ 'AU','3851','VIC','Giffard West'
8511
+ 'AU','3851','VIC','Glomar Beach'
8512
+ 'AU','3851','VIC','Golden Beach'
8513
+ 'AU','3851','VIC','Kilmany'
8514
+ 'AU','3851','VIC','Lake Wellington'
8515
+ 'AU','3851','VIC','Loch Sport'
8516
+ 'AU','3851','VIC','Longford'
8517
+ 'AU','3851','VIC','Montgomery'
8518
+ 'AU','3851','VIC','Myrtlebank'
8519
+ 'AU','3851','VIC','Paradise Beach'
8520
+ 'AU','3851','VIC','Pearsondale'
8521
+ 'AU','3851','VIC','Seacombe'
8522
+ 'AU','3851','VIC','Seaspray'
8523
+ 'AU','3851','VIC','Somerton Park'
8524
+ 'AU','3851','VIC','Stradbroke'
8525
+ 'AU','3851','VIC','The Heart'
8526
+ 'AU','3851','VIC','The Honeysuckles'
8527
+ 'AU','3852','VIC','East Sale'
8528
+ 'AU','3852','VIC','Sale East Raaf'
8529
+ 'AU','3853','VIC','Sale'
8530
+ 'AU','3854','VIC','Glengarry'
8531
+ 'AU','3854','VIC','Glengarry North'
8532
+ 'AU','3854','VIC','Glengarry West'
8533
+ 'AU','3856','VIC','Toongabbie'
8534
+ 'AU','3857','VIC','Cowwarr'
8535
+ 'AU','3858','VIC','Arbuckle'
8536
+ 'AU','3858','VIC','Billabong'
8537
+ 'AU','3858','VIC','Buragwonduc'
8538
+ 'AU','3858','VIC','Crookayan'
8539
+ 'AU','3858','VIC','Dawson'
8540
+ 'AU','3858','VIC','Denison'
8541
+ 'AU','3858','VIC','Gillum'
8542
+ 'AU','3858','VIC','Glen Falloch'
8543
+ 'AU','3858','VIC','Glenmaggie'
8544
+ 'AU','3858','VIC','Heyfield'
8545
+ 'AU','3858','VIC','Howitt Plains'
8546
+ 'AU','3858','VIC','Licola'
8547
+ 'AU','3858','VIC','Licola North'
8548
+ 'AU','3858','VIC','Reynard'
8549
+ 'AU','3858','VIC','Sargood'
8550
+ 'AU','3858','VIC','Seaton'
8551
+ 'AU','3858','VIC','Tamboritha'
8552
+ 'AU','3858','VIC','Winnindoo'
8553
+ 'AU','3858','VIC','Worrowing'
8554
+ 'AU','3858','VIC','Yangoura'
8555
+ 'AU','3859','VIC','Maffra West Upper'
8556
+ 'AU','3859','VIC','Newry'
8557
+ 'AU','3859','VIC','Tinamba'
8558
+ 'AU','3859','VIC','Tinamba West'
8559
+ 'AU','3860','VIC','Boisdale'
8560
+ 'AU','3860','VIC','Briagolong'
8561
+ 'AU','3860','VIC','Bushy Park'
8562
+ 'AU','3860','VIC','Coongulla'
8563
+ 'AU','3860','VIC','Koorool'
8564
+ 'AU','3860','VIC','Maffra'
8565
+ 'AU','3860','VIC','Monomak'
8566
+ 'AU','3860','VIC','Moroka'
8567
+ 'AU','3860','VIC','Nap Nap Marra'
8568
+ 'AU','3860','VIC','Riverslea'
8569
+ 'AU','3860','VIC','Toolome'
8570
+ 'AU','3860','VIC','Valencia Creek'
8571
+ 'AU','3860','VIC','Woolenook'
8572
+ 'AU','3860','VIC','Wrathung'
8573
+ 'AU','3860','VIC','Wrixon'
8574
+ 'AU','3862','VIC','Budgee Budgee'
8575
+ 'AU','3862','VIC','Castleburn'
8576
+ 'AU','3862','VIC','Cobbannah'
8577
+ 'AU','3862','VIC','Cowa'
8578
+ 'AU','3862','VIC','Crooked River'
8579
+ 'AU','3862','VIC','Dargo'
8580
+ 'AU','3862','VIC','Hawkhurst'
8581
+ 'AU','3862','VIC','Hollands Landing'
8582
+ 'AU','3862','VIC','Llowalong'
8583
+ 'AU','3862','VIC','Meerlieu'
8584
+ 'AU','3862','VIC','Miowera'
8585
+ 'AU','3862','VIC','Moornapa'
8586
+ 'AU','3862','VIC','Munro'
8587
+ 'AU','3862','VIC','Perry Bridge'
8588
+ 'AU','3862','VIC','Stockdale'
8589
+ 'AU','3862','VIC','Stratford'
8590
+ 'AU','3862','VIC','Waterford'
8591
+ 'AU','3862','VIC','Wongungarra'
8592
+ 'AU','3864','VIC','Fernbank'
8593
+ 'AU','3864','VIC','Glenaladale'
8594
+ 'AU','3864','VIC','The Fingerboard'
8595
+ 'AU','3865','VIC','Lindenow'
8596
+ 'AU','3869','VIC','Jumbuk'
8597
+ 'AU','3869','VIC','Yinnar'
8598
+ 'AU','3869','VIC','Yinnar South'
8599
+ 'AU','3870','VIC','Boolarra'
8600
+ 'AU','3870','VIC','Boolarra South'
8601
+ 'AU','3870','VIC','Budgeree'
8602
+ 'AU','3870','VIC','Budgeree East'
8603
+ 'AU','3870','VIC','Grand Ridge'
8604
+ 'AU','3870','VIC','Johnstones Hill'
8605
+ 'AU','3870','VIC','Mirboo East'
8606
+ 'AU','3871','VIC','Allambee Reserve'
8607
+ 'AU','3871','VIC','Allambee South'
8608
+ 'AU','3871','VIC','Baromi'
8609
+ 'AU','3871','VIC','Darlimurla'
8610
+ 'AU','3871','VIC','Delburn'
8611
+ 'AU','3871','VIC','Dollar'
8612
+ 'AU','3871','VIC','Mirboo'
8613
+ 'AU','3871','VIC','Mirboo North'
8614
+ 'AU','3873','VIC','Gormandale'
8615
+ 'AU','3874','VIC','Cherrilong'
8616
+ 'AU','3874','VIC','Mcloughlins Beach'
8617
+ 'AU','3874','VIC','Woodside'
8618
+ 'AU','3874','VIC','Woodside Beach'
8619
+ 'AU','3874','VIC','Woodside North'
8620
+ 'AU','3875','VIC','Bairnsdale'
8621
+ 'AU','3875','VIC','Bengworden'
8622
+ 'AU','3875','VIC','Broadlands'
8623
+ 'AU','3875','VIC','Bullumwaal'
8624
+ 'AU','3875','VIC','Calulu'
8625
+ 'AU','3875','VIC','Clifton Creek'
8626
+ 'AU','3875','VIC','Deptford'
8627
+ 'AU','3875','VIC','East Bairnsdale'
8628
+ 'AU','3875','VIC','Ellaswood'
8629
+ 'AU','3875','VIC','Fairy Dell'
8630
+ 'AU','3875','VIC','Flaggy Creek'
8631
+ 'AU','3875','VIC','Forge Creek'
8632
+ 'AU','3875','VIC','Goon Nure'
8633
+ 'AU','3875','VIC','Granite Rock'
8634
+ 'AU','3875','VIC','Hillside'
8635
+ 'AU','3875','VIC','Iguana Creek'
8636
+ 'AU','3875','VIC','Lindenow South'
8637
+ 'AU','3875','VIC','Lucknow'
8638
+ 'AU','3875','VIC','Melwood'
8639
+ 'AU','3875','VIC','Merrijig'
8640
+ 'AU','3875','VIC','Mount Taylor'
8641
+ 'AU','3875','VIC','Newlands Arm'
8642
+ 'AU','3875','VIC','Sarsfield'
8643
+ 'AU','3875','VIC','Tabberabbera'
8644
+ 'AU','3875','VIC','Walpa'
8645
+ 'AU','3875','VIC','Waterholes'
8646
+ 'AU','3875','VIC','Woodglen'
8647
+ 'AU','3875','VIC','Wuk Wuk'
8648
+ 'AU','3875','VIC','Wy Yung'
8649
+ 'AU','3878','VIC','Eagle Point'
8650
+ 'AU','3880','VIC','Boole Poole'
8651
+ 'AU','3880','VIC','Ocean Grange'
8652
+ 'AU','3880','VIC','Paynesville'
8653
+ 'AU','3880','VIC','Raymond Island'
8654
+ 'AU','3882','VIC','Nicholson'
8655
+ 'AU','3885','VIC','Bruthen'
8656
+ 'AU','3885','VIC','Buchan'
8657
+ 'AU','3885','VIC','Buchan South'
8658
+ 'AU','3885','VIC','Butchers Ridge'
8659
+ 'AU','3885','VIC','Gelantipy'
8660
+ 'AU','3885','VIC','Mossiface'
8661
+ 'AU','3885','VIC','Murrindal'
8662
+ 'AU','3885','VIC','Suggan Buggan'
8663
+ 'AU','3885','VIC','Tambo Upper'
8664
+ 'AU','3885','VIC','Timbarra'
8665
+ 'AU','3885','VIC','W Tree'
8666
+ 'AU','3885','VIC','Wiseleigh'
8667
+ 'AU','3885','VIC','Wulgulmerang'
8668
+ 'AU','3885','VIC','Wulgulmerang East'
8669
+ 'AU','3885','VIC','Wulgulmerang West'
8670
+ 'AU','3885','VIC','Yalmy'
8671
+ 'AU','3886','VIC','Newmerella'
8672
+ 'AU','3887','VIC','Lake Tyers'
8673
+ 'AU','3887','VIC','Nowa Nowa'
8674
+ 'AU','3887','VIC','Wairewa'
8675
+ 'AU','3888','VIC','Bendoc'
8676
+ 'AU','3888','VIC','Bete Bolong'
8677
+ 'AU','3888','VIC','Bete Bolong North'
8678
+ 'AU','3888','VIC','Bonang'
8679
+ 'AU','3888','VIC','Brodribb River'
8680
+ 'AU','3888','VIC','Cabanandra'
8681
+ 'AU','3888','VIC','Cape Conran'
8682
+ 'AU','3888','VIC','Corringle'
8683
+ 'AU','3888','VIC','Deddick Valley'
8684
+ 'AU','3888','VIC','Goongerah'
8685
+ 'AU','3888','VIC','Haydens Bog'
8686
+ 'AU','3888','VIC','Jarrahmond'
8687
+ 'AU','3888','VIC','Marlo'
8688
+ 'AU','3888','VIC','Martins Creek'
8689
+ 'AU','3888','VIC','Nurran'
8690
+ 'AU','3888','VIC','Omeo Valley'
8691
+ 'AU','3888','VIC','Orbost'
8692
+ 'AU','3888','VIC','Simpsons Creek'
8693
+ 'AU','3888','VIC','Tostaree'
8694
+ 'AU','3888','VIC','Tubbut'
8695
+ 'AU','3888','VIC','Waygara'
8696
+ 'AU','3888','VIC','Wombat Creek'
8697
+ 'AU','3889','VIC','Bellbird Creek'
8698
+ 'AU','3889','VIC','Bemm River'
8699
+ 'AU','3889','VIC','Cabbage Tree Creek'
8700
+ 'AU','3889','VIC','Club Terrace'
8701
+ 'AU','3889','VIC','Combienbar'
8702
+ 'AU','3889','VIC','Errinundra'
8703
+ 'AU','3889','VIC','Manorina'
8704
+ 'AU','3890','VIC','Buldah'
8705
+ 'AU','3890','VIC','Cann River'
8706
+ 'AU','3890','VIC','Chandlers Creek'
8707
+ 'AU','3890','VIC','Noorinbee'
8708
+ 'AU','3890','VIC','Noorinbee North'
8709
+ 'AU','3890','VIC','Tamboon'
8710
+ 'AU','3890','VIC','Tonghi Creek'
8711
+ 'AU','3890','VIC','Weeragua'
8712
+ 'AU','3891','VIC','Genoa'
8713
+ 'AU','3891','VIC','Gipsy Point'
8714
+ 'AU','3891','VIC','Maramingo Creek'
8715
+ 'AU','3891','VIC','Wallagaraugh'
8716
+ 'AU','3891','VIC','Wangarabell'
8717
+ 'AU','3891','VIC','Wingan River'
8718
+ 'AU','3891','VIC','Wroxham'
8719
+ 'AU','3892','VIC','Mallacoota'
8720
+ 'AU','3893','VIC','Double Bridges'
8721
+ 'AU','3893','VIC','Stirling'
8722
+ 'AU','3893','VIC','Tambo Crossing'
8723
+ 'AU','3895','VIC','Doctors Flat'
8724
+ 'AU','3895','VIC','Ensay'
8725
+ 'AU','3895','VIC','Ensay North'
8726
+ 'AU','3895','VIC','Reedy Creek'
8727
+ 'AU','3896','VIC','Bindi'
8728
+ 'AU','3896','VIC','Brookville'
8729
+ 'AU','3896','VIC','Nunniong'
8730
+ 'AU','3896','VIC','Swifts Creek'
8731
+ 'AU','3896','VIC','Tongio'
8732
+ 'AU','3898','VIC','Anglers Rest'
8733
+ 'AU','3898','VIC','Bingo'
8734
+ 'AU','3898','VIC','Bingo Munjie'
8735
+ 'AU','3898','VIC','Bundara'
8736
+ 'AU','3898','VIC','Cassilis'
8737
+ 'AU','3898','VIC','Cobungra'
8738
+ 'AU','3898','VIC','Dinner Plain'
8739
+ 'AU','3898','VIC','Glen Valley'
8740
+ 'AU','3898','VIC','Glen Wills'
8741
+ 'AU','3898','VIC','Hinnomunjie'
8742
+ 'AU','3898','VIC','Omeo'
8743
+ 'AU','3898','VIC','Shannonvale'
8744
+ 'AU','3900','VIC','Benambra'
8745
+ 'AU','3900','VIC','Cobberas'
8746
+ 'AU','3902','VIC','Bumberrah'
8747
+ 'AU','3902','VIC','Johnsonville'
8748
+ 'AU','3903','VIC','Swan Reach'
8749
+ 'AU','3904','VIC','Metung'
8750
+ 'AU','3909','VIC','Kalimna'
8751
+ 'AU','3909','VIC','Kalimna West'
8752
+ 'AU','3909','VIC','Lake Bunga'
8753
+ 'AU','3909','VIC','Lake Tyers Beach'
8754
+ 'AU','3909','VIC','Lakes Entrance'
8755
+ 'AU','3909','VIC','Nungurner'
8756
+ 'AU','3909','VIC','Nyerimilang'
8757
+ 'AU','3909','VIC','Toorloo Arm'
8758
+ 'AU','3910','VIC','Langwarrin'
8759
+ 'AU','3911','VIC','Baxter'
8760
+ 'AU','3911','VIC','Langwarrin South'
8761
+ 'AU','3912','VIC','Pearcedale'
8762
+ 'AU','3912','VIC','Somerville'
8763
+ 'AU','3913','VIC','Tyabb'
8764
+ 'AU','3915','VIC','Hastings'
8765
+ 'AU','3915','VIC','Tuerong'
8766
+ 'AU','3916','VIC','Merricks'
8767
+ 'AU','3916','VIC','Point Leo'
8768
+ 'AU','3916','VIC','Shoreham'
8769
+ 'AU','3918','VIC','Bittern'
8770
+ 'AU','3919','VIC','Crib Point'
8771
+ 'AU','3920','VIC','Hmas Cerberus'
8772
+ 'AU','3921','VIC','French Island'
8773
+ 'AU','3921','VIC','Tankerton'
8774
+ 'AU','3922','VIC','Cowes'
8775
+ 'AU','3922','VIC','Silverleaves'
8776
+ 'AU','3922','VIC','Smiths Beach'
8777
+ 'AU','3922','VIC','Summerlands'
8778
+ 'AU','3922','VIC','Sunderland Bay'
8779
+ 'AU','3922','VIC','Sunset Strip'
8780
+ 'AU','3922','VIC','Surf Beach'
8781
+ 'AU','3922','VIC','Ventnor'
8782
+ 'AU','3922','VIC','Wimbledon Heights'
8783
+ 'AU','3923','VIC','Rhyll'
8784
+ 'AU','3925','VIC','Cape Woolamai'
8785
+ 'AU','3925','VIC','Churchill Island'
8786
+ 'AU','3925','VIC','Newhaven'
8787
+ 'AU','3925','VIC','San Remo'
8788
+ 'AU','3926','VIC','Balnarring'
8789
+ 'AU','3926','VIC','Balnarring Beach'
8790
+ 'AU','3926','VIC','Merricks Beach'
8791
+ 'AU','3926','VIC','Merricks North'
8792
+ 'AU','3927','VIC','Somers'
8793
+ 'AU','3928','VIC','Main Ridge'
8794
+ 'AU','3929','VIC','Flinders'
8795
+ 'AU','3930','VIC','Kunyung'
8796
+ 'AU','3930','VIC','Mount Eliza'
8797
+ 'AU','3931','VIC','Mornington'
8798
+ 'AU','3933','VIC','Moorooduc'
8799
+ 'AU','3934','VIC','Mount Martha'
8800
+ 'AU','3936','VIC','Arthurs Seat'
8801
+ 'AU','3936','VIC','Dromana'
8802
+ 'AU','3936','VIC','Safety Beach'
8803
+ 'AU','3937','VIC','Red Hill'
8804
+ 'AU','3937','VIC','Red Hill South'
8805
+ 'AU','3938','VIC','Mccrae'
8806
+ 'AU','3939','VIC','Boneo'
8807
+ 'AU','3939','VIC','Cape Schanck'
8808
+ 'AU','3939','VIC','Fingal'
8809
+ 'AU','3939','VIC','Rosebud'
8810
+ 'AU','3939','VIC','Rosebud Plaza'
8811
+ 'AU','3940','VIC','Rosebud West'
8812
+ 'AU','3941','VIC','Rye'
8813
+ 'AU','3941','VIC','St Andrews Beach'
8814
+ 'AU','3941','VIC','Tootgarook'
8815
+ 'AU','3942','VIC','Blairgowrie'
8816
+ 'AU','3943','VIC','Sorrento'
8817
+ 'AU','3944','VIC','Portsea'
8818
+ 'AU','3945','VIC','Bellview'
8819
+ 'AU','3945','VIC','Jeetho'
8820
+ 'AU','3945','VIC','Krowera'
8821
+ 'AU','3945','VIC','Loch'
8822
+ 'AU','3945','VIC','Woodleigh'
8823
+ 'AU','3946','VIC','Bena'
8824
+ 'AU','3950','VIC','Kardella South'
8825
+ 'AU','3950','VIC','Korumburra'
8826
+ 'AU','3950','VIC','Korumburra South'
8827
+ 'AU','3950','VIC','Strzelecki'
8828
+ 'AU','3950','VIC','Whitelaw'
8829
+ 'AU','3951','VIC','Arawata'
8830
+ 'AU','3951','VIC','Fairbank'
8831
+ 'AU','3951','VIC','Jumbunna'
8832
+ 'AU','3951','VIC','Kardella'
8833
+ 'AU','3951','VIC','Kongwak'
8834
+ 'AU','3951','VIC','Moyarra'
8835
+ 'AU','3951','VIC','Outtrim'
8836
+ 'AU','3951','VIC','Ranceby'
8837
+ 'AU','3953','VIC','Berrys Creek'
8838
+ 'AU','3953','VIC','Boorool'
8839
+ 'AU','3953','VIC','Hallston'
8840
+ 'AU','3953','VIC','Koorooman'
8841
+ 'AU','3953','VIC','Leongatha'
8842
+ 'AU','3953','VIC','Leongatha North'
8843
+ 'AU','3953','VIC','Leongatha South'
8844
+ 'AU','3953','VIC','Mardan'
8845
+ 'AU','3953','VIC','Mount Eccles'
8846
+ 'AU','3953','VIC','Mount Eccles South'
8847
+ 'AU','3953','VIC','Nerrena'
8848
+ 'AU','3953','VIC','Ruby'
8849
+ 'AU','3953','VIC','Trida'
8850
+ 'AU','3953','VIC','Wild Dog Valley'
8851
+ 'AU','3954','VIC','Koonwarra'
8852
+ 'AU','3956','VIC','Dumbalk'
8853
+ 'AU','3956','VIC','Dumbalk North'
8854
+ 'AU','3956','VIC','Meeniyan'
8855
+ 'AU','3956','VIC','Tarwin'
8856
+ 'AU','3956','VIC','Tarwin Lower'
8857
+ 'AU','3956','VIC','Venus Bay'
8858
+ 'AU','3956','VIC','Walkerville'
8859
+ 'AU','3956','VIC','Walkerville South'
8860
+ 'AU','3957','VIC','Stony Creek'
8861
+ 'AU','3958','VIC','Buffalo'
8862
+ 'AU','3958','VIC','Buffalo Creek'
8863
+ 'AU','3959','VIC','Fish Creek'
8864
+ 'AU','3959','VIC','Hoddle'
8865
+ 'AU','3959','VIC','Sandy Point'
8866
+ 'AU','3959','VIC','Waratah Bay'
8867
+ 'AU','3960','VIC','Bennison'
8868
+ 'AU','3960','VIC','Boolarong'
8869
+ 'AU','3960','VIC','Foster'
8870
+ 'AU','3960','VIC','Foster North'
8871
+ 'AU','3960','VIC','Gunyah'
8872
+ 'AU','3960','VIC','Mount Best'
8873
+ 'AU','3960','VIC','Shallow Inlet'
8874
+ 'AU','3960','VIC','Tidal River'
8875
+ 'AU','3960','VIC','Turtons Creek'
8876
+ 'AU','3960','VIC','Wilsons Promontory'
8877
+ 'AU','3960','VIC','Wonga'
8878
+ 'AU','3960','VIC','Woorarra West'
8879
+ 'AU','3960','VIC','Yanakie'
8880
+ 'AU','3962','VIC','Agnes'
8881
+ 'AU','3962','VIC','Christies'
8882
+ 'AU','3962','VIC','Toora'
8883
+ 'AU','3962','VIC','Toora North'
8884
+ 'AU','3962','VIC','Wonyip'
8885
+ 'AU','3962','VIC','Woorarra'
8886
+ 'AU','3962','VIC','Woorarra East'
8887
+ 'AU','3964','VIC','Port Franklin'
8888
+ 'AU','3965','VIC','Port Welshpool'
8889
+ 'AU','3966','VIC','Binginwarri'
8890
+ 'AU','3966','VIC','Hazel Park'
8891
+ 'AU','3966','VIC','Welshpool'
8892
+ 'AU','3967','VIC','Hedley'
8893
+ 'AU','3971','VIC','Alberton'
8894
+ 'AU','3971','VIC','Alberton West'
8895
+ 'AU','3971','VIC','Balook'
8896
+ 'AU','3971','VIC','Calrossie'
8897
+ 'AU','3971','VIC','Devon North'
8898
+ 'AU','3971','VIC','Gelliondale'
8899
+ 'AU','3971','VIC','Hiawatha'
8900
+ 'AU','3971','VIC','Hunterston'
8901
+ 'AU','3971','VIC','Jack River'
8902
+ 'AU','3971','VIC','Langsborough'
8903
+ 'AU','3971','VIC','Macks Creek'
8904
+ 'AU','3971','VIC','Madalya'
8905
+ 'AU','3971','VIC','Manns Beach'
8906
+ 'AU','3971','VIC','Port Albert'
8907
+ 'AU','3971','VIC','Robertsons Beach'
8908
+ 'AU','3971','VIC','Snake Island'
8909
+ 'AU','3971','VIC','Staceys Bridge'
8910
+ 'AU','3971','VIC','Tarra Valley'
8911
+ 'AU','3971','VIC','Tarraville'
8912
+ 'AU','3971','VIC','Won Wron'
8913
+ 'AU','3971','VIC','Yarram'
8914
+ 'AU','3975','VIC','Lynbrook'
8915
+ 'AU','3975','VIC','Lyndhurst'
8916
+ 'AU','3976','VIC','Hampton Park'
8917
+ 'AU','3977','VIC','Cannons Creek'
8918
+ 'AU','3977','VIC','Cranbourne'
8919
+ 'AU','3977','VIC','Cranbourne East'
8920
+ 'AU','3977','VIC','Cranbourne North'
8921
+ 'AU','3977','VIC','Cranbourne South'
8922
+ 'AU','3977','VIC','Cranbourne West'
8923
+ 'AU','3977','VIC','Devon Meadows'
8924
+ 'AU','3977','VIC','Junction Village'
8925
+ 'AU','3977','VIC','Sandhurst'
8926
+ 'AU','3977','VIC','Skye'
8927
+ 'AU','3978','VIC','Cardinia'
8928
+ 'AU','3978','VIC','Clyde'
8929
+ 'AU','3978','VIC','Clyde North'
8930
+ 'AU','3979','VIC','Almurta'
8931
+ 'AU','3979','VIC','Glen Alvie'
8932
+ 'AU','3979','VIC','Kernot'
8933
+ 'AU','3980','VIC','Blind Bight'
8934
+ 'AU','3980','VIC','Tooradin'
8935
+ 'AU','3980','VIC','Warneet'
8936
+ 'AU','3981','VIC','Bayles'
8937
+ 'AU','3981','VIC','Catani'
8938
+ 'AU','3981','VIC','Dalmore'
8939
+ 'AU','3981','VIC','Heath Hill'
8940
+ 'AU','3981','VIC','Koo Wee Rup'
8941
+ 'AU','3981','VIC','Koo Wee Rup North'
8942
+ 'AU','3981','VIC','Yannathan'
8943
+ 'AU','3984','VIC','Adams Estate'
8944
+ 'AU','3984','VIC','Caldermeade'
8945
+ 'AU','3984','VIC','Corinella'
8946
+ 'AU','3984','VIC','Coronet Bay'
8947
+ 'AU','3984','VIC','Grantville'
8948
+ 'AU','3984','VIC','Jam Jerrup'
8949
+ 'AU','3984','VIC','Lang Lang'
8950
+ 'AU','3984','VIC','Lang Lang East'
8951
+ 'AU','3984','VIC','Monomeith'
8952
+ 'AU','3984','VIC','Pioneer Bay'
8953
+ 'AU','3984','VIC','Queensferry'
8954
+ 'AU','3984','VIC','Tenby Point'
8955
+ 'AU','3984','VIC','The Gurdies'
8956
+ 'AU','3987','VIC','Nyora'
8957
+ 'AU','3988','VIC','Mountain View'
8958
+ 'AU','3988','VIC','Poowong'
8959
+ 'AU','3988','VIC','Poowong East'
8960
+ 'AU','3988','VIC','Poowong North'
8961
+ 'AU','3990','VIC','Glen Forbes'
8962
+ 'AU','3991','VIC','Bass'
8963
+ 'AU','3992','VIC','Blackwood Forest'
8964
+ 'AU','3992','VIC','Dalyston'
8965
+ 'AU','3992','VIC','Ryanston'
8966
+ 'AU','3992','VIC','West Creek'
8967
+ 'AU','3995','VIC','Anderson'
8968
+ 'AU','3995','VIC','Archies Creek'
8969
+ 'AU','3995','VIC','Cape Paterson'
8970
+ 'AU','3995','VIC','Harmers Haven'
8971
+ 'AU','3995','VIC','Hicksborough'
8972
+ 'AU','3995','VIC','Kilcunda'
8973
+ 'AU','3995','VIC','Lance Creek'
8974
+ 'AU','3995','VIC','North Wonthaggi'
8975
+ 'AU','3995','VIC','Powlett River'
8976
+ 'AU','3995','VIC','South Dudley'
8977
+ 'AU','3995','VIC','St Clair'
8978
+ 'AU','3995','VIC','Wattle Bank'
8979
+ 'AU','3995','VIC','Wonthaggi'
8980
+ 'AU','3995','VIC','Woolamai'
8981
+ 'AU','3996','VIC','Inverloch'
8982
+ 'AU','3996','VIC','Pound Creek'
8983
+ 'AU','4000','QLD','Brisbane'
8984
+ 'AU','4000','QLD','Brisbane Adelaide Street'
8985
+ 'AU','4000','QLD','Brisbane GPO'
8986
+ 'AU','4000','QLD','Spring Hill'
8987
+ 'AU','4001','QLD','Brisbane'
8988
+ 'AU','4001','QLD','Central Plaza'
8989
+ 'AU','4001','QLD','Riverside Centre'
8990
+ 'AU','4001','QLD','Waterfront Place'
8991
+ 'AU','4002','QLD','City East'
8992
+ 'AU','4002','QLD','Wintergarden'
8993
+ 'AU','4003','QLD','George Street'
8994
+ 'AU','4004','QLD','Spring Hill'
8995
+ 'AU','4005','QLD','New Farm'
8996
+ 'AU','4006','QLD','Bowen Hills'
8997
+ 'AU','4006','QLD','Fortitude Valley'
8998
+ 'AU','4006','QLD','Fortitude Valley Bc'
8999
+ 'AU','4006','QLD','Herston'
9000
+ 'AU','4006','QLD','Newstead'
9001
+ 'AU','4007','QLD','Ascot'
9002
+ 'AU','4007','QLD','Hamilton'
9003
+ 'AU','4007','QLD','Hamilton Central'
9004
+ 'AU','4008','QLD','Pinkenba'
9005
+ 'AU','4009','QLD','Eagle Farm'
9006
+ 'AU','4009','QLD','Eagle Farm Bc'
9007
+ 'AU','4010','QLD','Albion'
9008
+ 'AU','4010','QLD','Albion Bc'
9009
+ 'AU','4010','QLD','Albion Dc'
9010
+ 'AU','4011','QLD','Clayfield'
9011
+ 'AU','4011','QLD','Hendra'
9012
+ 'AU','4012','QLD','Nundah'
9013
+ 'AU','4012','QLD','Toombul'
9014
+ 'AU','4012','QLD','Wavell Heights'
9015
+ 'AU','4012','QLD','Wavell Heights North'
9016
+ 'AU','4013','QLD','Northgate'
9017
+ 'AU','4014','QLD','Banyo'
9018
+ 'AU','4014','QLD','Nudgee'
9019
+ 'AU','4014','QLD','Nudgee Beach'
9020
+ 'AU','4014','QLD','Virginia'
9021
+ 'AU','4014','QLD','Virginia Bc'
9022
+ 'AU','4014','QLD','Virginia Dc'
9023
+ 'AU','4017','QLD','Bracken Ridge'
9024
+ 'AU','4017','QLD','Brighton'
9025
+ 'AU','4017','QLD','Brighton Eventide'
9026
+ 'AU','4017','QLD','Brighton Nathan Street'
9027
+ 'AU','4017','QLD','Deagon'
9028
+ 'AU','4017','QLD','Sandgate'
9029
+ 'AU','4017','QLD','Sandgate Dc'
9030
+ 'AU','4017','QLD','Shorncliffe'
9031
+ 'AU','4018','QLD','Fitzgibbon'
9032
+ 'AU','4018','QLD','Taigum'
9033
+ 'AU','4019','QLD','Clontarf'
9034
+ 'AU','4019','QLD','Clontarf Beach'
9035
+ 'AU','4019','QLD','Clontarf Dc'
9036
+ 'AU','4019','QLD','Margate'
9037
+ 'AU','4019','QLD','Margate Beach'
9038
+ 'AU','4019','QLD','Woody Point'
9039
+ 'AU','4020','QLD','Redcliffe'
9040
+ 'AU','4020','QLD','Redcliffe North'
9041
+ 'AU','4020','QLD','Scarborough'
9042
+ 'AU','4021','QLD','Kippa\-Ring'
9043
+ 'AU','4022','QLD','Rothwell'
9044
+ 'AU','4025','QLD','Bulwer'
9045
+ 'AU','4025','QLD','Cape Moreton'
9046
+ 'AU','4025','QLD','Cowan Cowan'
9047
+ 'AU','4025','QLD','Kooringal'
9048
+ 'AU','4025','QLD','Tangalooma'
9049
+ 'AU','4029','QLD','Royal Brisbane Hospital'
9050
+ 'AU','4030','QLD','Lutwyche'
9051
+ 'AU','4030','QLD','Windsor'
9052
+ 'AU','4030','QLD','Wooloowin'
9053
+ 'AU','4031','QLD','Gordon Park'
9054
+ 'AU','4031','QLD','Kedron'
9055
+ 'AU','4032','QLD','Chermside'
9056
+ 'AU','4032','QLD','Chermside Bc'
9057
+ 'AU','4032','QLD','Chermside Centre'
9058
+ 'AU','4032','QLD','Chermside South'
9059
+ 'AU','4032','QLD','Chermside West'
9060
+ 'AU','4034','QLD','Aspley'
9061
+ 'AU','4034','QLD','Boondall'
9062
+ 'AU','4034','QLD','Carseldine'
9063
+ 'AU','4034','QLD','Geebung'
9064
+ 'AU','4034','QLD','Zillmere'
9065
+ 'AU','4035','QLD','Albany Creek'
9066
+ 'AU','4035','QLD','Bridgeman Downs'
9067
+ 'AU','4036','QLD','Bald Hills'
9068
+ 'AU','4037','QLD','Eatons Hill'
9069
+ 'AU','4051','QLD','Alderley'
9070
+ 'AU','4051','QLD','Enoggera'
9071
+ 'AU','4051','QLD','Gaythorne'
9072
+ 'AU','4051','QLD','Grange'
9073
+ 'AU','4051','QLD','Newmarket'
9074
+ 'AU','4051','QLD','Wilston'
9075
+ 'AU','4053','QLD','Brookside Centre'
9076
+ 'AU','4053','QLD','Everton Hills'
9077
+ 'AU','4053','QLD','Everton Park'
9078
+ 'AU','4053','QLD','Mcdowall'
9079
+ 'AU','4053','QLD','Mitchelton'
9080
+ 'AU','4053','QLD','Stafford'
9081
+ 'AU','4053','QLD','Stafford Bc'
9082
+ 'AU','4053','QLD','Stafford Dc'
9083
+ 'AU','4053','QLD','Stafford Heights'
9084
+ 'AU','4054','QLD','Arana Hills'
9085
+ 'AU','4054','QLD','Keperra'
9086
+ 'AU','4055','QLD','Bunya'
9087
+ 'AU','4055','QLD','Ferny Grove'
9088
+ 'AU','4055','QLD','Ferny Hills'
9089
+ 'AU','4055','QLD','Ferny Hills Dc'
9090
+ 'AU','4055','QLD','Upper Kedron'
9091
+ 'AU','4059','QLD','Kelvin Grove'
9092
+ 'AU','4059','QLD','Kelvin Grove Bc'
9093
+ 'AU','4059','QLD','Kelvin Grove Dc'
9094
+ 'AU','4059','QLD','Red Hill'
9095
+ 'AU','4060','QLD','Ashgrove'
9096
+ 'AU','4060','QLD','Ashgrove West'
9097
+ 'AU','4061','QLD','The Gap'
9098
+ 'AU','4064','QLD','Milton'
9099
+ 'AU','4064','QLD','Milton Bc'
9100
+ 'AU','4064','QLD','Paddington'
9101
+ 'AU','4065','QLD','Bardon'
9102
+ 'AU','4066','QLD','Auchenflower'
9103
+ 'AU','4066','QLD','Mount Coot\-Tha'
9104
+ 'AU','4066','QLD','Toowong'
9105
+ 'AU','4066','QLD','Toowong Bc'
9106
+ 'AU','4066','QLD','Toowong Dc'
9107
+ 'AU','4067','QLD','St Lucia'
9108
+ 'AU','4067','QLD','St Lucia South'
9109
+ 'AU','4068','QLD','Chelmer'
9110
+ 'AU','4068','QLD','Indooroopilly'
9111
+ 'AU','4068','QLD','Indooroopilly Centre'
9112
+ 'AU','4068','QLD','Taringa'
9113
+ 'AU','4069','QLD','Brookfield'
9114
+ 'AU','4069','QLD','Chapel Hill'
9115
+ 'AU','4069','QLD','Fig Tree Pocket'
9116
+ 'AU','4069','QLD','Kenmore'
9117
+ 'AU','4069','QLD','Kenmore Dc'
9118
+ 'AU','4069','QLD','Kenmore East'
9119
+ 'AU','4069','QLD','Kenmore Hills'
9120
+ 'AU','4069','QLD','Pinjarra Hills'
9121
+ 'AU','4069','QLD','Pullenvale'
9122
+ 'AU','4069','QLD','Upper Brookfield'
9123
+ 'AU','4070','QLD','Anstead'
9124
+ 'AU','4070','QLD','Bellbowrie'
9125
+ 'AU','4070','QLD','Moggill'
9126
+ 'AU','4072','QLD','University Of Queensland'
9127
+ 'AU','4073','QLD','Seventeen Mile Rocks'
9128
+ 'AU','4073','QLD','Sinnamon Park'
9129
+ 'AU','4074','QLD','Jamboree Heights'
9130
+ 'AU','4074','QLD','Jindalee'
9131
+ 'AU','4074','QLD','Middle Park'
9132
+ 'AU','4074','QLD','Mount Ommaney'
9133
+ 'AU','4074','QLD','Riverhills'
9134
+ 'AU','4074','QLD','Sumner'
9135
+ 'AU','4074','QLD','Sumner Park Bc'
9136
+ 'AU','4074','QLD','Westlake'
9137
+ 'AU','4075','QLD','Corinda'
9138
+ 'AU','4075','QLD','Graceville'
9139
+ 'AU','4075','QLD','Graceville East'
9140
+ 'AU','4075','QLD','Oxley'
9141
+ 'AU','4075','QLD','Sherwood'
9142
+ 'AU','4076','QLD','Darra'
9143
+ 'AU','4076','QLD','Wacol'
9144
+ 'AU','4077','QLD','Doolandella'
9145
+ 'AU','4077','QLD','Durack'
9146
+ 'AU','4077','QLD','Inala'
9147
+ 'AU','4077','QLD','Inala East'
9148
+ 'AU','4077','QLD','Inala Heights'
9149
+ 'AU','4077','QLD','Richlands'
9150
+ 'AU','4077','QLD','Richlands Dc'
9151
+ 'AU','4078','QLD','Ellen Grove'
9152
+ 'AU','4078','QLD','Forest Lake'
9153
+ 'AU','4101','QLD','Highgate Hill'
9154
+ 'AU','4101','QLD','South Brisbane'
9155
+ 'AU','4101','QLD','South Brisbane Bc'
9156
+ 'AU','4101','QLD','West End'
9157
+ 'AU','4102','QLD','Buranda'
9158
+ 'AU','4102','QLD','Dutton Park'
9159
+ 'AU','4102','QLD','Woolloongabba'
9160
+ 'AU','4103','QLD','Annerley'
9161
+ 'AU','4103','QLD','Annerley Dc'
9162
+ 'AU','4103','QLD','Fairfield'
9163
+ 'AU','4103','QLD','Fairfield Gardens'
9164
+ 'AU','4104','QLD','Yeronga'
9165
+ 'AU','4105','QLD','Moorooka'
9166
+ 'AU','4105','QLD','Tennyson'
9167
+ 'AU','4105','QLD','Yeerongpilly'
9168
+ 'AU','4106','QLD','Brisbane Market'
9169
+ 'AU','4106','QLD','Rocklea'
9170
+ 'AU','4106','QLD','Rocklea Dc'
9171
+ 'AU','4107','QLD','Salisbury'
9172
+ 'AU','4107','QLD','Salisbury East'
9173
+ 'AU','4108','QLD','Archerfield'
9174
+ 'AU','4108','QLD','Archerfield Bc'
9175
+ 'AU','4108','QLD','Coopers Plains'
9176
+ 'AU','4109','QLD','Macgregor'
9177
+ 'AU','4109','QLD','Robertson'
9178
+ 'AU','4109','QLD','Sunnybank'
9179
+ 'AU','4109','QLD','Sunnybank Hills'
9180
+ 'AU','4109','QLD','Sunnybank South'
9181
+ 'AU','4110','QLD','Acacia Ridge'
9182
+ 'AU','4110','QLD','Acacia Ridge Bc'
9183
+ 'AU','4110','QLD','Acacia Ridge Dc'
9184
+ 'AU','4110','QLD','Heathwood'
9185
+ 'AU','4110','QLD','Larapinta'
9186
+ 'AU','4110','QLD','Pallara'
9187
+ 'AU','4110','QLD','Willawong'
9188
+ 'AU','4111','QLD','Nathan'
9189
+ 'AU','4112','QLD','Kuraby'
9190
+ 'AU','4113','QLD','Eight Mile Plains'
9191
+ 'AU','4113','QLD','Runcorn'
9192
+ 'AU','4114','QLD','Kingston'
9193
+ 'AU','4114','QLD','Logan Central'
9194
+ 'AU','4114','QLD','Logan City Bc'
9195
+ 'AU','4114','QLD','Logan City Dc'
9196
+ 'AU','4114','QLD','Woodridge'
9197
+ 'AU','4115','QLD','Algester'
9198
+ 'AU','4115','QLD','Parkinson'
9199
+ 'AU','4116','QLD','Calamvale'
9200
+ 'AU','4116','QLD','Drewvale'
9201
+ 'AU','4116','QLD','Stretton'
9202
+ 'AU','4117','QLD','Berrinba'
9203
+ 'AU','4117','QLD','Karawatha'
9204
+ 'AU','4118','QLD','Browns Plains'
9205
+ 'AU','4118','QLD','Browns Plains Bc'
9206
+ 'AU','4118','QLD','Forestdale'
9207
+ 'AU','4118','QLD','Heritage Park'
9208
+ 'AU','4118','QLD','Hillcrest'
9209
+ 'AU','4118','QLD','Regents Park'
9210
+ 'AU','4119','QLD','Underwood'
9211
+ 'AU','4120','QLD','Greenslopes'
9212
+ 'AU','4120','QLD','Stones Corner'
9213
+ 'AU','4121','QLD','Holland Park'
9214
+ 'AU','4121','QLD','Holland Park East'
9215
+ 'AU','4121','QLD','Holland Park West'
9216
+ 'AU','4121','QLD','Tarragindi'
9217
+ 'AU','4121','QLD','Wellers Hill'
9218
+ 'AU','4122','QLD','Mansfield'
9219
+ 'AU','4122','QLD','Mansfield Bc'
9220
+ 'AU','4122','QLD','Mansfield Dc'
9221
+ 'AU','4122','QLD','Mount Gravatt'
9222
+ 'AU','4122','QLD','Mount Gravatt East'
9223
+ 'AU','4122','QLD','Upper Mount Gravatt'
9224
+ 'AU','4122','QLD','Upper Mount Gravatt Bc'
9225
+ 'AU','4122','QLD','Wishart'
9226
+ 'AU','4123','QLD','Rochedale'
9227
+ 'AU','4123','QLD','Rochedale South'
9228
+ 'AU','4124','QLD','Boronia Heights'
9229
+ 'AU','4124','QLD','Greenbank'
9230
+ 'AU','4124','QLD','Lyons'
9231
+ 'AU','4124','QLD','New Beith'
9232
+ 'AU','4124','QLD','Spring Mountain'
9233
+ 'AU','4125','QLD','Munruben'
9234
+ 'AU','4125','QLD','Park Ridge'
9235
+ 'AU','4125','QLD','Park Ridge South'
9236
+ 'AU','4127','QLD','Daisy Hill'
9237
+ 'AU','4127','QLD','Priestdale'
9238
+ 'AU','4127','QLD','Slacks Creek'
9239
+ 'AU','4127','QLD','Springwood'
9240
+ 'AU','4128','QLD','Shailer Park'
9241
+ 'AU','4128','QLD','Tanah Merah'
9242
+ 'AU','4129','QLD','Loganholme'
9243
+ 'AU','4129','QLD','Loganholme Bc'
9244
+ 'AU','4129','QLD','Loganholme Dc'
9245
+ 'AU','4130','QLD','Carbrook'
9246
+ 'AU','4130','QLD','Cornubia'
9247
+ 'AU','4131','QLD','Loganlea'
9248
+ 'AU','4131','QLD','Meadowbrook'
9249
+ 'AU','4132','QLD','Crestmead'
9250
+ 'AU','4132','QLD','Crestmead Dc'
9251
+ 'AU','4132','QLD','Marsden'
9252
+ 'AU','4133','QLD','Chambers Flat'
9253
+ 'AU','4133','QLD','Logan Reserve'
9254
+ 'AU','4133','QLD','Waterford'
9255
+ 'AU','4133','QLD','Waterford West'
9256
+ 'AU','4151','QLD','Coorparoo'
9257
+ 'AU','4151','QLD','Coorparoo Bc'
9258
+ 'AU','4151','QLD','Coorparoo Dc'
9259
+ 'AU','4152','QLD','Camp Hill'
9260
+ 'AU','4152','QLD','Carina'
9261
+ 'AU','4152','QLD','Carina Heights'
9262
+ 'AU','4152','QLD','Carindale'
9263
+ 'AU','4153','QLD','Belmont'
9264
+ 'AU','4154','QLD','Gumdale'
9265
+ 'AU','4154','QLD','Ransome'
9266
+ 'AU','4154','QLD','Wakerley'
9267
+ 'AU','4155','QLD','Chandler'
9268
+ 'AU','4156','QLD','Burbank'
9269
+ 'AU','4156','QLD','Mackenzie'
9270
+ 'AU','4157','QLD','Capalaba'
9271
+ 'AU','4157','QLD','Capalaba Bc'
9272
+ 'AU','4157','QLD','Capalaba Dc'
9273
+ 'AU','4157','QLD','Capalaba West'
9274
+ 'AU','4157','QLD','Sheldon'
9275
+ 'AU','4158','QLD','Thorneside'
9276
+ 'AU','4159','QLD','Birkdale'
9277
+ 'AU','4160','QLD','Ormiston'
9278
+ 'AU','4160','QLD','Wellington Point'
9279
+ 'AU','4161','QLD','Alexandra Hills'
9280
+ 'AU','4163','QLD','Cleveland'
9281
+ 'AU','4163','QLD','Cleveland Dc'
9282
+ 'AU','4164','QLD','Thornlands'
9283
+ 'AU','4165','QLD','Mount Cotton'
9284
+ 'AU','4165','QLD','Redland Bay'
9285
+ 'AU','4165','QLD','Victoria Point'
9286
+ 'AU','4165','QLD','Victoria Point West'
9287
+ 'AU','4169','QLD','East Brisbane'
9288
+ 'AU','4169','QLD','Kangaroo Point'
9289
+ 'AU','4170','QLD','Cannon Hill'
9290
+ 'AU','4170','QLD','Morningside'
9291
+ 'AU','4170','QLD','Norman Park'
9292
+ 'AU','4170','QLD','Seven Hills'
9293
+ 'AU','4171','QLD','Balmoral'
9294
+ 'AU','4171','QLD','Bulimba'
9295
+ 'AU','4171','QLD','Hawthorne'
9296
+ 'AU','4172','QLD','Murarrie'
9297
+ 'AU','4173','QLD','Tingalpa'
9298
+ 'AU','4173','QLD','Tingalpa Bc'
9299
+ 'AU','4173','QLD','Tingalpa Dc'
9300
+ 'AU','4174','QLD','Hemmant'
9301
+ 'AU','4178','QLD','Lytton'
9302
+ 'AU','4178','QLD','Port Of Brisbane'
9303
+ 'AU','4178','QLD','Wynnum'
9304
+ 'AU','4178','QLD','Wynnum North'
9305
+ 'AU','4178','QLD','Wynnum Plaza'
9306
+ 'AU','4178','QLD','Wynnum West'
9307
+ 'AU','4179','QLD','Lota'
9308
+ 'AU','4179','QLD','Manly'
9309
+ 'AU','4179','QLD','Manly West'
9310
+ 'AU','4183','QLD','Amity'
9311
+ 'AU','4183','QLD','Amity Point'
9312
+ 'AU','4183','QLD','Dunwich'
9313
+ 'AU','4183','QLD','North Stradbroke Island'
9314
+ 'AU','4183','QLD','Point Lookout'
9315
+ 'AU','4184','QLD','Coochiemudlo Island'
9316
+ 'AU','4184','QLD','Karragarra Island'
9317
+ 'AU','4184','QLD','Lamb Island'
9318
+ 'AU','4184','QLD','Macleay Island'
9319
+ 'AU','4184','QLD','Peel Island'
9320
+ 'AU','4184','QLD','Perulpa Island'
9321
+ 'AU','4184','QLD','Russell Island'
9322
+ 'AU','4205','QLD','Bethania'
9323
+ 'AU','4207','QLD','Alberton'
9324
+ 'AU','4207','QLD','Bahrs Scrub'
9325
+ 'AU','4207','QLD','Bannockburn'
9326
+ 'AU','4207','QLD','Beenleigh'
9327
+ 'AU','4207','QLD','Belivah'
9328
+ 'AU','4207','QLD','Buccan'
9329
+ 'AU','4207','QLD','Cedar Creek'
9330
+ 'AU','4207','QLD','Eagleby'
9331
+ 'AU','4207','QLD','Edens Landing'
9332
+ 'AU','4207','QLD','Holmview'
9333
+ 'AU','4207','QLD','Logan Village'
9334
+ 'AU','4207','QLD','Luscombe'
9335
+ 'AU','4207','QLD','Mount Warren Park'
9336
+ 'AU','4207','QLD','Stapylton'
9337
+ 'AU','4207','QLD','Steiglitz'
9338
+ 'AU','4207','QLD','Windaroo'
9339
+ 'AU','4207','QLD','Wolffdene'
9340
+ 'AU','4207','QLD','Woongoolba'
9341
+ 'AU','4207','QLD','Yarrabilba'
9342
+ 'AU','4207','QLD','Yatala'
9343
+ 'AU','4207','QLD','Yatala Dc'
9344
+ 'AU','4208','QLD','Gilberton'
9345
+ 'AU','4208','QLD','Jacobs Well'
9346
+ 'AU','4208','QLD','Kingsholme'
9347
+ 'AU','4208','QLD','Norwell'
9348
+ 'AU','4208','QLD','Ormeau'
9349
+ 'AU','4208','QLD','Ormeau Hills'
9350
+ 'AU','4209','QLD','Coomera'
9351
+ 'AU','4209','QLD','Pimpama'
9352
+ 'AU','4209','QLD','Upper Coomera'
9353
+ 'AU','4209','QLD','Willow Vale'
9354
+ 'AU','4210','QLD','Guanaba'
9355
+ 'AU','4210','QLD','Maudsland'
9356
+ 'AU','4210','QLD','Oxenford'
9357
+ 'AU','4210','QLD','Studio Village'
9358
+ 'AU','4210','QLD','Wongawallan'
9359
+ 'AU','4211','QLD','Advancetown'
9360
+ 'AU','4211','QLD','Beechmont'
9361
+ 'AU','4211','QLD','Binna Burra'
9362
+ 'AU','4211','QLD','Carrara'
9363
+ 'AU','4211','QLD','Clagiraba'
9364
+ 'AU','4211','QLD','Gaven'
9365
+ 'AU','4211','QLD','Gilston'
9366
+ 'AU','4211','QLD','Highland Park'
9367
+ 'AU','4211','QLD','Lower Beechmont'
9368
+ 'AU','4211','QLD','Mount Nathan'
9369
+ 'AU','4211','QLD','Natural Bridge'
9370
+ 'AU','4211','QLD','Nerang'
9371
+ 'AU','4211','QLD','Nerang Bc'
9372
+ 'AU','4211','QLD','Nerang Dc'
9373
+ 'AU','4211','QLD','Numinbah Valley'
9374
+ 'AU','4211','QLD','O''Reilly'
9375
+ 'AU','4211','QLD','Pacific Pines'
9376
+ 'AU','4211','QLD','Southern Lamington'
9377
+ 'AU','4212','QLD','Helensvale'
9378
+ 'AU','4212','QLD','Helensvale Town Centre'
9379
+ 'AU','4212','QLD','Hope Island'
9380
+ 'AU','4212','QLD','Sanctuary Cove'
9381
+ 'AU','4213','QLD','Austinville'
9382
+ 'AU','4213','QLD','Bonogin'
9383
+ 'AU','4213','QLD','Mudgeeraba'
9384
+ 'AU','4213','QLD','Springbrook'
9385
+ 'AU','4213','QLD','Tallai'
9386
+ 'AU','4213','QLD','Worongary'
9387
+ 'AU','4214','QLD','Arundel'
9388
+ 'AU','4214','QLD','Arundel Bc'
9389
+ 'AU','4214','QLD','Arundel Dc'
9390
+ 'AU','4214','QLD','Ashmore'
9391
+ 'AU','4214','QLD','Ashmore City'
9392
+ 'AU','4214','QLD','Molendinar'
9393
+ 'AU','4214','QLD','Parkwood'
9394
+ 'AU','4215','QLD','Australia Fair'
9395
+ 'AU','4215','QLD','Chirn Park'
9396
+ 'AU','4215','QLD','Labrador'
9397
+ 'AU','4215','QLD','Southport'
9398
+ 'AU','4215','QLD','Southport Bc'
9399
+ 'AU','4215','QLD','Southport Park'
9400
+ 'AU','4216','QLD','Biggera Waters'
9401
+ 'AU','4216','QLD','Coombabah'
9402
+ 'AU','4216','QLD','Hollywell'
9403
+ 'AU','4216','QLD','Paradise Point'
9404
+ 'AU','4216','QLD','Runaway Bay'
9405
+ 'AU','4216','QLD','South Stradbroke'
9406
+ 'AU','4217','QLD','Benowa'
9407
+ 'AU','4217','QLD','Bundall'
9408
+ 'AU','4217','QLD','Bundall Bc'
9409
+ 'AU','4217','QLD','Bundall Dc'
9410
+ 'AU','4217','QLD','Chevron Island'
9411
+ 'AU','4217','QLD','Gold Coast Mc'
9412
+ 'AU','4217','QLD','Isle Of Capri'
9413
+ 'AU','4217','QLD','Main Beach'
9414
+ 'AU','4217','QLD','Surfers Paradise'
9415
+ 'AU','4218','QLD','Broadbeach'
9416
+ 'AU','4218','QLD','Broadbeach Waters'
9417
+ 'AU','4218','QLD','Mermaid Beach'
9418
+ 'AU','4218','QLD','Mermaid Waters'
9419
+ 'AU','4218','QLD','Nobby Beach'
9420
+ 'AU','4218','QLD','Pacific Fair'
9421
+ 'AU','4218','QLD','Q Supercentre'
9422
+ 'AU','4219','QLD','West Burleigh'
9423
+ 'AU','4220','QLD','Burleigh Bc'
9424
+ 'AU','4220','QLD','Burleigh Dc'
9425
+ 'AU','4220','QLD','Burleigh Heads'
9426
+ 'AU','4220','QLD','Burleigh Town'
9427
+ 'AU','4220','QLD','Burleigh Waters'
9428
+ 'AU','4220','QLD','Miami'
9429
+ 'AU','4221','QLD','Elanora'
9430
+ 'AU','4221','QLD','Palm Beach'
9431
+ 'AU','4222','QLD','Griffith University'
9432
+ 'AU','4223','QLD','Currumbin'
9433
+ 'AU','4223','QLD','Currumbin Dc'
9434
+ 'AU','4223','QLD','Currumbin Valley'
9435
+ 'AU','4223','QLD','Currumbin Waters'
9436
+ 'AU','4224','QLD','Tugun'
9437
+ 'AU','4224','QLD','Tugun Heights'
9438
+ 'AU','4225','QLD','Bilinga'
9439
+ 'AU','4225','QLD','Coolangatta'
9440
+ 'AU','4226','QLD','Clear Island Waters'
9441
+ 'AU','4226','QLD','Merrimac'
9442
+ 'AU','4226','QLD','Robina'
9443
+ 'AU','4226','QLD','Robina Dc'
9444
+ 'AU','4227','QLD','Reedy Creek'
9445
+ 'AU','4227','QLD','Varsity Lakes'
9446
+ 'AU','4228','QLD','Tallebudgera'
9447
+ 'AU','4228','QLD','Tallebudgera Valley'
9448
+ 'AU','4229','QLD','Bond University'
9449
+ 'AU','4230','QLD','Robina Town Centre'
9450
+ 'AU','4270','QLD','Tamborine'
9451
+ 'AU','4271','QLD','Eagle Heights'
9452
+ 'AU','4272','QLD','Mount Tamborine'
9453
+ 'AU','4272','QLD','North Tamborine'
9454
+ 'AU','4272','QLD','Tamborine Mountain'
9455
+ 'AU','4275','QLD','Benobble'
9456
+ 'AU','4275','QLD','Biddaddaba'
9457
+ 'AU','4275','QLD','Boyland'
9458
+ 'AU','4275','QLD','Canungra'
9459
+ 'AU','4275','QLD','Ferny Glen'
9460
+ 'AU','4275','QLD','Flying Fox'
9461
+ 'AU','4275','QLD','Illinbah'
9462
+ 'AU','4275','QLD','Lamington National Park'
9463
+ 'AU','4275','QLD','Sarabah'
9464
+ 'AU','4275','QLD','Witheren'
9465
+ 'AU','4275','QLD','Wonglepong'
9466
+ 'AU','4280','QLD','Jimboomba'
9467
+ 'AU','4280','QLD','North Maclean'
9468
+ 'AU','4280','QLD','South Maclean'
9469
+ 'AU','4280','QLD','Stockleigh'
9470
+ 'AU','4285','QLD','Allenview'
9471
+ 'AU','4285','QLD','Beaudesert'
9472
+ 'AU','4285','QLD','Birnam'
9473
+ 'AU','4285','QLD','Bromelton'
9474
+ 'AU','4285','QLD','Cainbable'
9475
+ 'AU','4285','QLD','Cedar Grove'
9476
+ 'AU','4285','QLD','Cedar Vale'
9477
+ 'AU','4285','QLD','Chinghee Creek'
9478
+ 'AU','4285','QLD','Christmas Creek'
9479
+ 'AU','4285','QLD','Cryna'
9480
+ 'AU','4285','QLD','Darlington'
9481
+ 'AU','4285','QLD','Gleneagle'
9482
+ 'AU','4285','QLD','Hillview'
9483
+ 'AU','4285','QLD','Innisplain'
9484
+ 'AU','4285','QLD','Josephville'
9485
+ 'AU','4285','QLD','Kagaru'
9486
+ 'AU','4285','QLD','Kerry'
9487
+ 'AU','4285','QLD','Knapp Creek'
9488
+ 'AU','4285','QLD','Kooralbyn'
9489
+ 'AU','4285','QLD','Lamington'
9490
+ 'AU','4285','QLD','Laravale'
9491
+ 'AU','4285','QLD','Mount Gipps'
9492
+ 'AU','4285','QLD','Mundoolun'
9493
+ 'AU','4285','QLD','Nindooinbah'
9494
+ 'AU','4285','QLD','Oaky Creek'
9495
+ 'AU','4285','QLD','Tabooba'
9496
+ 'AU','4285','QLD','Tabragalba'
9497
+ 'AU','4285','QLD','Tamrookum'
9498
+ 'AU','4285','QLD','Tamrookum Creek'
9499
+ 'AU','4285','QLD','Undullah'
9500
+ 'AU','4285','QLD','Veresdale'
9501
+ 'AU','4285','QLD','Veresdale Scrub'
9502
+ 'AU','4285','QLD','Woodhill'
9503
+ 'AU','4287','QLD','Barney View'
9504
+ 'AU','4287','QLD','Mount Barney'
9505
+ 'AU','4287','QLD','Mount Lindesay'
9506
+ 'AU','4287','QLD','Palen Creek'
9507
+ 'AU','4287','QLD','Rathdowney'
9508
+ 'AU','4287','QLD','Running Creek'
9509
+ 'AU','4300','QLD','Augustine Heights'
9510
+ 'AU','4300','QLD','Bellbird Park'
9511
+ 'AU','4300','QLD','Brookwater'
9512
+ 'AU','4300','QLD','Camira'
9513
+ 'AU','4300','QLD','Carole Park'
9514
+ 'AU','4300','QLD','Gailes'
9515
+ 'AU','4300','QLD','Goodna'
9516
+ 'AU','4300','QLD','Goodna Dc'
9517
+ 'AU','4300','QLD','Springfield'
9518
+ 'AU','4300','QLD','Springfield Lakes'
9519
+ 'AU','4301','QLD','Collingwood Park'
9520
+ 'AU','4301','QLD','Redbank'
9521
+ 'AU','4301','QLD','Redbank Plains'
9522
+ 'AU','4303','QLD','Dinmore'
9523
+ 'AU','4303','QLD','New Chum'
9524
+ 'AU','4303','QLD','Riverview'
9525
+ 'AU','4304','QLD','Blackstone'
9526
+ 'AU','4304','QLD','Booval'
9527
+ 'AU','4304','QLD','Booval Bc'
9528
+ 'AU','4304','QLD','Booval Dc'
9529
+ 'AU','4304','QLD','Booval Fair'
9530
+ 'AU','4304','QLD','Bundamba'
9531
+ 'AU','4304','QLD','Ebbw Vale'
9532
+ 'AU','4304','QLD','North Booval'
9533
+ 'AU','4304','QLD','Silkstone'
9534
+ 'AU','4305','QLD','Basin Pocket'
9535
+ 'AU','4305','QLD','Brassall'
9536
+ 'AU','4305','QLD','Bremer'
9537
+ 'AU','4305','QLD','Churchill'
9538
+ 'AU','4305','QLD','Coalfalls'
9539
+ 'AU','4305','QLD','East Ipswich'
9540
+ 'AU','4305','QLD','Eastern Heights'
9541
+ 'AU','4305','QLD','Flinders View'
9542
+ 'AU','4305','QLD','Ipswich'
9543
+ 'AU','4305','QLD','Leichhardt'
9544
+ 'AU','4305','QLD','Limestone Ridges'
9545
+ 'AU','4305','QLD','Moores Pocket'
9546
+ 'AU','4305','QLD','Newtown'
9547
+ 'AU','4305','QLD','North Ipswich'
9548
+ 'AU','4305','QLD','North Tivoli'
9549
+ 'AU','4305','QLD','One Mile'
9550
+ 'AU','4305','QLD','Raceview'
9551
+ 'AU','4305','QLD','Sadliers Crossing'
9552
+ 'AU','4305','QLD','Tivoli'
9553
+ 'AU','4305','QLD','West Ipswich'
9554
+ 'AU','4305','QLD','Woodend'
9555
+ 'AU','4305','QLD','Wulkuraka'
9556
+ 'AU','4305','QLD','Yamanto'
9557
+ 'AU','4306','QLD','Amberley'
9558
+ 'AU','4306','QLD','Avoca Vale'
9559
+ 'AU','4306','QLD','Banks Creek'
9560
+ 'AU','4306','QLD','Barellan Point'
9561
+ 'AU','4306','QLD','Benarkin'
9562
+ 'AU','4306','QLD','Benarkin North'
9563
+ 'AU','4306','QLD','Blackbutt'
9564
+ 'AU','4306','QLD','Blackbutt North'
9565
+ 'AU','4306','QLD','Blackbutt South'
9566
+ 'AU','4306','QLD','Blacksoil'
9567
+ 'AU','4306','QLD','Borallon'
9568
+ 'AU','4306','QLD','Cherry Creek'
9569
+ 'AU','4306','QLD','Chuwar'
9570
+ 'AU','4306','QLD','Colinton'
9571
+ 'AU','4306','QLD','Deebing Heights'
9572
+ 'AU','4306','QLD','Dundas'
9573
+ 'AU','4306','QLD','England Creek'
9574
+ 'AU','4306','QLD','Fairney View'
9575
+ 'AU','4306','QLD','Fernvale'
9576
+ 'AU','4306','QLD','Glamorgan Vale'
9577
+ 'AU','4306','QLD','Googa Creek'
9578
+ 'AU','4306','QLD','Goolman'
9579
+ 'AU','4306','QLD','Haigslea'
9580
+ 'AU','4306','QLD','Harlin'
9581
+ 'AU','4306','QLD','Ironbark'
9582
+ 'AU','4306','QLD','Karalee'
9583
+ 'AU','4306','QLD','Karana Downs'
9584
+ 'AU','4306','QLD','Karrabin'
9585
+ 'AU','4306','QLD','Kholo'
9586
+ 'AU','4306','QLD','Lake Manchester'
9587
+ 'AU','4306','QLD','Lark Hill'
9588
+ 'AU','4306','QLD','Linville'
9589
+ 'AU','4306','QLD','Moore'
9590
+ 'AU','4306','QLD','Mount Binga'
9591
+ 'AU','4306','QLD','Mount Crosby'
9592
+ 'AU','4306','QLD','Mount Marrow'
9593
+ 'AU','4306','QLD','Mount Stanley'
9594
+ 'AU','4306','QLD','Muirlea'
9595
+ 'AU','4306','QLD','Nukku'
9596
+ 'AU','4306','QLD','Peak Crossing'
9597
+ 'AU','4306','QLD','Pine Mountain'
9598
+ 'AU','4306','QLD','Purga'
9599
+ 'AU','4306','QLD','Ripley'
9600
+ 'AU','4306','QLD','South Ripley'
9601
+ 'AU','4306','QLD','Split Yard Creek'
9602
+ 'AU','4306','QLD','Swanbank'
9603
+ 'AU','4306','QLD','Taromeo'
9604
+ 'AU','4306','QLD','Teelah'
9605
+ 'AU','4306','QLD','Thagoona'
9606
+ 'AU','4306','QLD','Vernor'
9607
+ 'AU','4306','QLD','Walloon'
9608
+ 'AU','4306','QLD','Wanora'
9609
+ 'AU','4306','QLD','Washpool'
9610
+ 'AU','4306','QLD','West Amberley'
9611
+ 'AU','4306','QLD','White Rock'
9612
+ 'AU','4306','QLD','Willowbank'
9613
+ 'AU','4306','QLD','Wivenhoe Pocket'
9614
+ 'AU','4307','QLD','Coleyville'
9615
+ 'AU','4307','QLD','Harrisville'
9616
+ 'AU','4307','QLD','Mutdapilly'
9617
+ 'AU','4307','QLD','Radford'
9618
+ 'AU','4307','QLD','Silverdale'
9619
+ 'AU','4307','QLD','Warrill View'
9620
+ 'AU','4307','QLD','Wilsons Plains'
9621
+ 'AU','4309','QLD','Aratula'
9622
+ 'AU','4309','QLD','Charlwood'
9623
+ 'AU','4309','QLD','Clumber'
9624
+ 'AU','4309','QLD','Fassifern'
9625
+ 'AU','4309','QLD','Fassifern Valley'
9626
+ 'AU','4309','QLD','Frazerview'
9627
+ 'AU','4309','QLD','Kalbar'
9628
+ 'AU','4309','QLD','Kents Lagoon'
9629
+ 'AU','4309','QLD','Kulgun'
9630
+ 'AU','4309','QLD','Milora'
9631
+ 'AU','4309','QLD','Moogerah'
9632
+ 'AU','4309','QLD','Morwincha'
9633
+ 'AU','4309','QLD','Mount Edwards'
9634
+ 'AU','4309','QLD','Munbilla'
9635
+ 'AU','4309','QLD','Obum Obum'
9636
+ 'AU','4309','QLD','Tarome'
9637
+ 'AU','4309','QLD','Teviotville'
9638
+ 'AU','4310','QLD','Allandale'
9639
+ 'AU','4310','QLD','Anthony'
9640
+ 'AU','4310','QLD','Blantyre'
9641
+ 'AU','4310','QLD','Boonah'
9642
+ 'AU','4310','QLD','Bunburra'
9643
+ 'AU','4310','QLD','Bunjurgen'
9644
+ 'AU','4310','QLD','Burnett Creek'
9645
+ 'AU','4310','QLD','Cannon Creek'
9646
+ 'AU','4310','QLD','Carneys Creek'
9647
+ 'AU','4310','QLD','Coochin'
9648
+ 'AU','4310','QLD','Coulson'
9649
+ 'AU','4310','QLD','Croftby'
9650
+ 'AU','4310','QLD','Dugandan'
9651
+ 'AU','4310','QLD','Frenches Creek'
9652
+ 'AU','4310','QLD','Hoya'
9653
+ 'AU','4310','QLD','Kents Pocket'
9654
+ 'AU','4310','QLD','Maroon'
9655
+ 'AU','4310','QLD','Milbong'
9656
+ 'AU','4310','QLD','Milford'
9657
+ 'AU','4310','QLD','Mount Alford'
9658
+ 'AU','4310','QLD','Mount French'
9659
+ 'AU','4310','QLD','Roadvale'
9660
+ 'AU','4310','QLD','Templin'
9661
+ 'AU','4310','QLD','Wallaces Creek'
9662
+ 'AU','4310','QLD','Woolooman'
9663
+ 'AU','4310','QLD','Wyaralong'
9664
+ 'AU','4311','QLD','Atkinsons Dam'
9665
+ 'AU','4311','QLD','Brightview'
9666
+ 'AU','4311','QLD','Buaraba'
9667
+ 'AU','4311','QLD','Buaraba South'
9668
+ 'AU','4311','QLD','Churchable'
9669
+ 'AU','4311','QLD','Clarendon'
9670
+ 'AU','4311','QLD','Coolana'
9671
+ 'AU','4311','QLD','Coominya'
9672
+ 'AU','4311','QLD','Lockyer Waters'
9673
+ 'AU','4311','QLD','Lowood'
9674
+ 'AU','4311','QLD','Minden'
9675
+ 'AU','4311','QLD','Mount Tarampa'
9676
+ 'AU','4311','QLD','Patrick Estate'
9677
+ 'AU','4311','QLD','Prenzlau'
9678
+ 'AU','4311','QLD','Rifle Range'
9679
+ 'AU','4311','QLD','Tarampa'
9680
+ 'AU','4311','QLD','Wivenhoe Hill'
9681
+ 'AU','4312','QLD','Bryden'
9682
+ 'AU','4312','QLD','Caboonbah'
9683
+ 'AU','4312','QLD','Coal Creek'
9684
+ 'AU','4312','QLD','Crossdale'
9685
+ 'AU','4312','QLD','Esk'
9686
+ 'AU','4312','QLD','Eskdale'
9687
+ 'AU','4312','QLD','Glen Esk'
9688
+ 'AU','4312','QLD','Moombria'
9689
+ 'AU','4312','QLD','Mount Byron'
9690
+ 'AU','4312','QLD','Mount Hallen'
9691
+ 'AU','4312','QLD','Murrumba'
9692
+ 'AU','4312','QLD','Redbank Creek'
9693
+ 'AU','4312','QLD','Somerset Dam'
9694
+ 'AU','4313','QLD','Biarra'
9695
+ 'AU','4313','QLD','Braemore'
9696
+ 'AU','4313','QLD','Cooeeimbardi'
9697
+ 'AU','4313','QLD','Cressbrook'
9698
+ 'AU','4313','QLD','Fulham'
9699
+ 'AU','4313','QLD','Gregors Creek'
9700
+ 'AU','4313','QLD','Ivory Creek'
9701
+ 'AU','4313','QLD','Lower Cressbrook'
9702
+ 'AU','4313','QLD','Mount Beppo'
9703
+ 'AU','4313','QLD','Ottaba'
9704
+ 'AU','4313','QLD','Scrub Creek'
9705
+ 'AU','4313','QLD','Toogoolawah'
9706
+ 'AU','4313','QLD','Yimbun'
9707
+ 'AU','4340','QLD','Ashwell'
9708
+ 'AU','4340','QLD','Calvert'
9709
+ 'AU','4340','QLD','Ebenezer'
9710
+ 'AU','4340','QLD','Grandchester'
9711
+ 'AU','4340','QLD','Jeebropilly'
9712
+ 'AU','4340','QLD','Lanefield'
9713
+ 'AU','4340','QLD','Lower Mount Walker'
9714
+ 'AU','4340','QLD','Merryvale'
9715
+ 'AU','4340','QLD','Moorang'
9716
+ 'AU','4340','QLD','Mount Forbes'
9717
+ 'AU','4340','QLD','Mount Mort'
9718
+ 'AU','4340','QLD','Mount Walker'
9719
+ 'AU','4340','QLD','Mount Walker West'
9720
+ 'AU','4340','QLD','Rosevale'
9721
+ 'AU','4340','QLD','Rosewood'
9722
+ 'AU','4340','QLD','Tallegalla'
9723
+ 'AU','4340','QLD','The Bluff'
9724
+ 'AU','4340','QLD','Woolshed'
9725
+ 'AU','4341','QLD','Blenheim'
9726
+ 'AU','4341','QLD','Hatton Vale'
9727
+ 'AU','4341','QLD','Kensington Grove'
9728
+ 'AU','4341','QLD','Kentville'
9729
+ 'AU','4341','QLD','Laidley'
9730
+ 'AU','4341','QLD','Laidley Creek West'
9731
+ 'AU','4341','QLD','Laidley Heights'
9732
+ 'AU','4341','QLD','Laidley North'
9733
+ 'AU','4341','QLD','Laidley South'
9734
+ 'AU','4341','QLD','Mount Berryman'
9735
+ 'AU','4341','QLD','Mulgowie'
9736
+ 'AU','4341','QLD','Plainland'
9737
+ 'AU','4341','QLD','Regency Downs'
9738
+ 'AU','4341','QLD','Summerholm'
9739
+ 'AU','4341','QLD','Thornton'
9740
+ 'AU','4341','QLD','Townson'
9741
+ 'AU','4342','QLD','Crowley Vale'
9742
+ 'AU','4342','QLD','Forest Hill'
9743
+ 'AU','4342','QLD','Glen Cairn'
9744
+ 'AU','4342','QLD','Glenore Grove'
9745
+ 'AU','4342','QLD','Lockrose'
9746
+ 'AU','4342','QLD','Lynford'
9747
+ 'AU','4343','QLD','Adare'
9748
+ 'AU','4343','QLD','Black Duck Creek'
9749
+ 'AU','4343','QLD','Caffey'
9750
+ 'AU','4343','QLD','College View'
9751
+ 'AU','4343','QLD','East Haldon'
9752
+ 'AU','4343','QLD','Fordsdale'
9753
+ 'AU','4343','QLD','Gatton'
9754
+ 'AU','4343','QLD','Ingoldsby'
9755
+ 'AU','4343','QLD','Junction View'
9756
+ 'AU','4343','QLD','Lake Clarendon'
9757
+ 'AU','4343','QLD','Lawes'
9758
+ 'AU','4343','QLD','Lefthand Branch'
9759
+ 'AU','4343','QLD','Lower Tenthill'
9760
+ 'AU','4343','QLD','Morton Vale'
9761
+ 'AU','4343','QLD','Mount Sylvia'
9762
+ 'AU','4343','QLD','Placid Hills'
9763
+ 'AU','4343','QLD','Ringwood'
9764
+ 'AU','4343','QLD','Rockside'
9765
+ 'AU','4343','QLD','Ropeley'
9766
+ 'AU','4343','QLD','Spring Creek'
9767
+ 'AU','4343','QLD','Upper Tenthill'
9768
+ 'AU','4343','QLD','Vinegar Hill'
9769
+ 'AU','4343','QLD','Woodbine'
9770
+ 'AU','4343','QLD','Woodlands'
9771
+ 'AU','4344','QLD','Carpendale'
9772
+ 'AU','4344','QLD','Egypt'
9773
+ 'AU','4344','QLD','Flagstone Creek'
9774
+ 'AU','4344','QLD','Helidon'
9775
+ 'AU','4344','QLD','Helidon Spa'
9776
+ 'AU','4344','QLD','Iredale'
9777
+ 'AU','4344','QLD','Lilydale'
9778
+ 'AU','4344','QLD','Lockyer'
9779
+ 'AU','4344','QLD','Rockmount'
9780
+ 'AU','4344','QLD','Seventeen Mile'
9781
+ 'AU','4344','QLD','Stockyard'
9782
+ 'AU','4344','QLD','Upper Flagstone'
9783
+ 'AU','4345','QLD','Gatton College'
9784
+ 'AU','4346','QLD','Marburg'
9785
+ 'AU','4347','QLD','Grantham'
9786
+ 'AU','4347','QLD','Ma Ma Creek'
9787
+ 'AU','4347','QLD','Mount Whitestone'
9788
+ 'AU','4347','QLD','Veradilla'
9789
+ 'AU','4347','QLD','Winwill'
9790
+ 'AU','4350','QLD','Athol'
9791
+ 'AU','4350','QLD','Blue Mountain Heights'
9792
+ 'AU','4350','QLD','Centenary Heights'
9793
+ 'AU','4350','QLD','Charlton'
9794
+ 'AU','4350','QLD','Clifford Gardens'
9795
+ 'AU','4350','QLD','Cotswold Hills'
9796
+ 'AU','4350','QLD','Cranley'
9797
+ 'AU','4350','QLD','Darling Heights'
9798
+ 'AU','4350','QLD','Drayton'
9799
+ 'AU','4350','QLD','Drayton North'
9800
+ 'AU','4350','QLD','East Toowoomba'
9801
+ 'AU','4350','QLD','Finnie'
9802
+ 'AU','4350','QLD','Glenvale'
9803
+ 'AU','4350','QLD','Gowrie Mountain'
9804
+ 'AU','4350','QLD','Harlaxton'
9805
+ 'AU','4350','QLD','Harristown'
9806
+ 'AU','4350','QLD','Kearneys Spring'
9807
+ 'AU','4350','QLD','Middle Ridge'
9808
+ 'AU','4350','QLD','Mount Kynoch'
9809
+ 'AU','4350','QLD','Mount Lofty'
9810
+ 'AU','4350','QLD','Mount Rascal'
9811
+ 'AU','4350','QLD','Newtown'
9812
+ 'AU','4350','QLD','North Toowoomba'
9813
+ 'AU','4350','QLD','Northlands'
9814
+ 'AU','4350','QLD','Prince Henry Heights'
9815
+ 'AU','4350','QLD','Rangeville'
9816
+ 'AU','4350','QLD','Redwood'
9817
+ 'AU','4350','QLD','Rockville'
9818
+ 'AU','4350','QLD','South Toowoomba'
9819
+ 'AU','4350','QLD','Southtown'
9820
+ 'AU','4350','QLD','Toowoomba'
9821
+ 'AU','4350','QLD','Toowoomba Bc'
9822
+ 'AU','4350','QLD','Toowoomba City'
9823
+ 'AU','4350','QLD','Toowoomba Dc'
9824
+ 'AU','4350','QLD','Toowoomba East'
9825
+ 'AU','4350','QLD','Toowoomba South'
9826
+ 'AU','4350','QLD','Toowoomba Village Fair'
9827
+ 'AU','4350','QLD','Toowoomba West'
9828
+ 'AU','4350','QLD','Top Camp'
9829
+ 'AU','4350','QLD','Torrington'
9830
+ 'AU','4350','QLD','Wellcamp'
9831
+ 'AU','4350','QLD','Westbrook'
9832
+ 'AU','4350','QLD','Wilsonton'
9833
+ 'AU','4350','QLD','Wilsonton Heights'
9834
+ 'AU','4350','QLD','Wyalla Plaza'
9835
+ 'AU','4352','QLD','Ballard'
9836
+ 'AU','4352','QLD','Bapaume'
9837
+ 'AU','4352','QLD','Birnam'
9838
+ 'AU','4352','QLD','Blanchview'
9839
+ 'AU','4352','QLD','Branchview'
9840
+ 'AU','4352','QLD','Cabarlah'
9841
+ 'AU','4352','QLD','Cawdor'
9842
+ 'AU','4352','QLD','Cement Mills'
9843
+ 'AU','4352','QLD','Coalbank'
9844
+ 'AU','4352','QLD','Condamine Plains'
9845
+ 'AU','4352','QLD','Cutella'
9846
+ 'AU','4352','QLD','Derrymore'
9847
+ 'AU','4352','QLD','Djuan'
9848
+ 'AU','4352','QLD','Doctor Creek'
9849
+ 'AU','4352','QLD','Evergreen'
9850
+ 'AU','4352','QLD','Fifteen Mile'
9851
+ 'AU','4352','QLD','Geham'
9852
+ 'AU','4352','QLD','Glencoe'
9853
+ 'AU','4352','QLD','Gore'
9854
+ 'AU','4352','QLD','Gowrie Junction'
9855
+ 'AU','4352','QLD','Gowrie Little Plain'
9856
+ 'AU','4352','QLD','Grapetree'
9857
+ 'AU','4352','QLD','Groomsville'
9858
+ 'AU','4352','QLD','Hampton'
9859
+ 'AU','4352','QLD','Highfields'
9860
+ 'AU','4352','QLD','Highgrove'
9861
+ 'AU','4352','QLD','Hodgson Vale'
9862
+ 'AU','4352','QLD','Karara'
9863
+ 'AU','4352','QLD','Kleinton'
9864
+ 'AU','4352','QLD','Kulpi'
9865
+ 'AU','4352','QLD','Kurrowah'
9866
+ 'AU','4352','QLD','Lilyvale'
9867
+ 'AU','4352','QLD','Lyra'
9868
+ 'AU','4352','QLD','Maclagan'
9869
+ 'AU','4352','QLD','Malling'
9870
+ 'AU','4352','QLD','Meringandan'
9871
+ 'AU','4352','QLD','Meringandan West'
9872
+ 'AU','4352','QLD','Merritts Creek'
9873
+ 'AU','4352','QLD','Mount Luke'
9874
+ 'AU','4352','QLD','Muniganeen'
9875
+ 'AU','4352','QLD','Murphys Creek'
9876
+ 'AU','4352','QLD','Narko'
9877
+ 'AU','4352','QLD','North Maclagan'
9878
+ 'AU','4352','QLD','Nutgrove'
9879
+ 'AU','4352','QLD','Oman Ama'
9880
+ 'AU','4352','QLD','Palmtree'
9881
+ 'AU','4352','QLD','Pampas'
9882
+ 'AU','4352','QLD','Pechey'
9883
+ 'AU','4352','QLD','Peranga'
9884
+ 'AU','4352','QLD','Perseverance'
9885
+ 'AU','4352','QLD','Postmans Ridge'
9886
+ 'AU','4352','QLD','Pozieres'
9887
+ 'AU','4352','QLD','Preston'
9888
+ 'AU','4352','QLD','Rangemore'
9889
+ 'AU','4352','QLD','Ravensbourne'
9890
+ 'AU','4352','QLD','Silver Ridge'
9891
+ 'AU','4352','QLD','Spring Bluff'
9892
+ 'AU','4352','QLD','St Aubyn'
9893
+ 'AU','4352','QLD','Thornville'
9894
+ 'AU','4352','QLD','Toowoomba Mc'
9895
+ 'AU','4352','QLD','Tummaville'
9896
+ 'AU','4352','QLD','Umbiram'
9897
+ 'AU','4352','QLD','Upper Lockyer'
9898
+ 'AU','4352','QLD','Vale View'
9899
+ 'AU','4352','QLD','Whichello'
9900
+ 'AU','4352','QLD','White Mountain'
9901
+ 'AU','4352','QLD','Withcott'
9902
+ 'AU','4352','QLD','Woodleigh'
9903
+ 'AU','4352','QLD','Woolmer'
9904
+ 'AU','4352','QLD','Wutul'
9905
+ 'AU','4352','QLD','Wyreema'
9906
+ 'AU','4352','QLD','Yalangur'
9907
+ 'AU','4352','QLD','Yandilla'
9908
+ 'AU','4353','QLD','Bergen'
9909
+ 'AU','4353','QLD','East Cooyar'
9910
+ 'AU','4353','QLD','Haden'
9911
+ 'AU','4354','QLD','Douglas'
9912
+ 'AU','4354','QLD','Goombungee'
9913
+ 'AU','4354','QLD','Kilbirnie'
9914
+ 'AU','4355','QLD','Anduramba'
9915
+ 'AU','4355','QLD','Cressbrook Creek'
9916
+ 'AU','4355','QLD','Crows Nest'
9917
+ 'AU','4355','QLD','Emu Creek'
9918
+ 'AU','4355','QLD','Glenaven'
9919
+ 'AU','4355','QLD','Jones Gully'
9920
+ 'AU','4355','QLD','Mountain Camp'
9921
+ 'AU','4355','QLD','Pierces Creek'
9922
+ 'AU','4355','QLD','Pinelands'
9923
+ 'AU','4355','QLD','Plainby'
9924
+ 'AU','4355','QLD','The Bluff'
9925
+ 'AU','4355','QLD','Upper Pinelands'
9926
+ 'AU','4356','QLD','Bongeen'
9927
+ 'AU','4356','QLD','Broxburn'
9928
+ 'AU','4356','QLD','Evanslea'
9929
+ 'AU','4356','QLD','Irongate'
9930
+ 'AU','4356','QLD','Kincora'
9931
+ 'AU','4356','QLD','Linthorpe'
9932
+ 'AU','4356','QLD','Motley'
9933
+ 'AU','4356','QLD','Mount Tyson'
9934
+ 'AU','4356','QLD','North Branch'
9935
+ 'AU','4356','QLD','Norwin'
9936
+ 'AU','4356','QLD','Pittsworth'
9937
+ 'AU','4356','QLD','Purrawunda'
9938
+ 'AU','4356','QLD','Rossvale'
9939
+ 'AU','4356','QLD','Scrubby Mountain'
9940
+ 'AU','4356','QLD','Springside'
9941
+ 'AU','4356','QLD','St Helens'
9942
+ 'AU','4356','QLD','Stoneleigh'
9943
+ 'AU','4356','QLD','Yarranlea'
9944
+ 'AU','4357','QLD','Bringalily'
9945
+ 'AU','4357','QLD','Bulli Creek'
9946
+ 'AU','4357','QLD','Canning Creek'
9947
+ 'AU','4357','QLD','Captains Mountain'
9948
+ 'AU','4357','QLD','Clontarf'
9949
+ 'AU','4357','QLD','Condamine Farms'
9950
+ 'AU','4357','QLD','Cypress Gardens'
9951
+ 'AU','4357','QLD','Domville'
9952
+ 'AU','4357','QLD','Forest Ridge'
9953
+ 'AU','4357','QLD','Grays Gate'
9954
+ 'AU','4357','QLD','Kooroongarra'
9955
+ 'AU','4357','QLD','Lavelle'
9956
+ 'AU','4357','QLD','Lemontree'
9957
+ 'AU','4357','QLD','Millmerran'
9958
+ 'AU','4357','QLD','Millmerran Downs'
9959
+ 'AU','4357','QLD','Millmerran Woods'
9960
+ 'AU','4357','QLD','Millwood'
9961
+ 'AU','4357','QLD','Mount Emlyn'
9962
+ 'AU','4357','QLD','Punchs Creek'
9963
+ 'AU','4357','QLD','Rocky Creek'
9964
+ 'AU','4357','QLD','Stonehenge'
9965
+ 'AU','4357','QLD','The Pines'
9966
+ 'AU','4357','QLD','Turallin'
9967
+ 'AU','4357','QLD','Wattle Ridge'
9968
+ 'AU','4357','QLD','Western Creek'
9969
+ 'AU','4357','QLD','Woondul'
9970
+ 'AU','4358','QLD','Cambooya'
9971
+ 'AU','4358','QLD','Felton'
9972
+ 'AU','4358','QLD','Felton South'
9973
+ 'AU','4358','QLD','Ramsay'
9974
+ 'AU','4359','QLD','Budgee'
9975
+ 'AU','4359','QLD','East Greenmount'
9976
+ 'AU','4359','QLD','Greenmount'
9977
+ 'AU','4359','QLD','Hirstglen'
9978
+ 'AU','4359','QLD','West Haldon'
9979
+ 'AU','4360','QLD','Nobby'
9980
+ 'AU','4361','QLD','Back Plains'
9981
+ 'AU','4361','QLD','Clifton'
9982
+ 'AU','4361','QLD','Ellangowan'
9983
+ 'AU','4361','QLD','Elphinstone'
9984
+ 'AU','4361','QLD','Headington Hill'
9985
+ 'AU','4361','QLD','Kings Creek'
9986
+ 'AU','4361','QLD','Manapouri'
9987
+ 'AU','4361','QLD','Missen Flat'
9988
+ 'AU','4361','QLD','Mount Molar'
9989
+ 'AU','4361','QLD','Nevilton'
9990
+ 'AU','4361','QLD','Pilton'
9991
+ 'AU','4361','QLD','Ryeford'
9992
+ 'AU','4361','QLD','Sandy Camp'
9993
+ 'AU','4361','QLD','Spring Creek'
9994
+ 'AU','4361','QLD','Upper Pilton'
9995
+ 'AU','4361','QLD','Victoria Hill'
9996
+ 'AU','4362','QLD','Allora'
9997
+ 'AU','4362','QLD','Berat'
9998
+ 'AU','4362','QLD','Deuchar'
9999
+ 'AU','4362','QLD','Ellinthorp'
10000
+ 'AU','4362','QLD','Goomburra'
10001
+ 'AU','4362','QLD','Hendon'
10002
+ 'AU','4362','QLD','Mount Marshall'
10003
+ 'AU','4362','QLD','Talgai'
10004
+ 'AU','4363','QLD','Southbrook'
10005
+ 'AU','4364','QLD','Brookstead'
10006
+ 'AU','4365','QLD','Leyburn'
10007
+ 'AU','4370','QLD','Allan'
10008
+ 'AU','4370','QLD','Bony Mountain'
10009
+ 'AU','4370','QLD','Canningvale'
10010
+ 'AU','4370','QLD','Cherry Gully'
10011
+ 'AU','4370','QLD','Clintonvale'
10012
+ 'AU','4370','QLD','Cunningham'
10013
+ 'AU','4370','QLD','Danderoo'
10014
+ 'AU','4370','QLD','Elbow Valley'
10015
+ 'AU','4370','QLD','Freestone'
10016
+ 'AU','4370','QLD','Gladfield'
10017
+ 'AU','4370','QLD','Glengallan'
10018
+ 'AU','4370','QLD','Greymare'
10019
+ 'AU','4370','QLD','Junabee'
10020
+ 'AU','4370','QLD','Leslie'
10021
+ 'AU','4370','QLD','Leslie Dam'
10022
+ 'AU','4370','QLD','Loch Lomond'
10023
+ 'AU','4370','QLD','Maryvale'
10024
+ 'AU','4370','QLD','Massie'
10025
+ 'AU','4370','QLD','Montrose'
10026
+ 'AU','4370','QLD','Morgan Park'
10027
+ 'AU','4370','QLD','Mount Colliery'
10028
+ 'AU','4370','QLD','Mount Tabor'
10029
+ 'AU','4370','QLD','Murrays Bridge'
10030
+ 'AU','4370','QLD','North Branch'
10031
+ 'AU','4370','QLD','Pratten'
10032
+ 'AU','4370','QLD','Rodgers Creek'
10033
+ 'AU','4370','QLD','Rosehill'
10034
+ 'AU','4370','QLD','Rosenthal Heights'
10035
+ 'AU','4370','QLD','Silverwood'
10036
+ 'AU','4370','QLD','Sladevale'
10037
+ 'AU','4370','QLD','Swan Creek'
10038
+ 'AU','4370','QLD','Thane'
10039
+ 'AU','4370','QLD','Thanes Creek'
10040
+ 'AU','4370','QLD','The Glen'
10041
+ 'AU','4370','QLD','The Hermitage'
10042
+ 'AU','4370','QLD','Toolburra'
10043
+ 'AU','4370','QLD','Tregony'
10044
+ 'AU','4370','QLD','Upper Freestone'
10045
+ 'AU','4370','QLD','Upper Wheatvale'
10046
+ 'AU','4370','QLD','Warwick'
10047
+ 'AU','4370','QLD','Warwick Dc'
10048
+ 'AU','4370','QLD','Wheatvale'
10049
+ 'AU','4370','QLD','Wildash'
10050
+ 'AU','4370','QLD','Willowvale'
10051
+ 'AU','4370','QLD','Wiyarra'
10052
+ 'AU','4370','QLD','Womina'
10053
+ 'AU','4371','QLD','Emu Vale'
10054
+ 'AU','4371','QLD','Swanfels'
10055
+ 'AU','4371','QLD','Yangan'
10056
+ 'AU','4372','QLD','Tannymorel'
10057
+ 'AU','4373','QLD','Killarney'
10058
+ 'AU','4373','QLD','The Falls'
10059
+ 'AU','4373','QLD','The Head'
10060
+ 'AU','4374','QLD','Dalveen'
10061
+ 'AU','4375','QLD','Cottonvale'
10062
+ 'AU','4375','QLD','Fleurbaix'
10063
+ 'AU','4376','QLD','Thulimbah'
10064
+ 'AU','4377','QLD','Glen Niven'
10065
+ 'AU','4377','NSW','Maryland'
10066
+ 'AU','4377','QLD','The Summit'
10067
+ 'AU','4378','QLD','Applethorpe'
10068
+ 'AU','4380','QLD','Amiens'
10069
+ 'AU','4380','QLD','Broadwater'
10070
+ 'AU','4380','QLD','Cannon Creek'
10071
+ 'AU','4380','QLD','Dalcouth'
10072
+ 'AU','4380','QLD','Eukey'
10073
+ 'AU','4380','QLD','Glenlyon'
10074
+ 'AU','4380','QLD','Greenlands'
10075
+ 'AU','4380','QLD','Kyoomba'
10076
+ 'AU','4380','QLD','Mingoola'
10077
+ 'AU','4380','QLD','Mount Tully'
10078
+ 'AU','4380','QLD','Nundubbermere'
10079
+ 'AU','4380','QLD','Pikedale'
10080
+ 'AU','4380','QLD','Pikes Creek'
10081
+ 'AU','4380','QLD','Severnlea'
10082
+ 'AU','4380','QLD','Springdale'
10083
+ 'AU','4380','QLD','Stanthorpe'
10084
+ 'AU','4380','QLD','Storm King'
10085
+ 'AU','4380','QLD','Sugarloaf'
10086
+ 'AU','4380','QLD','Thorndale'
10087
+ 'AU','4381','QLD','Glen Aplin'
10088
+ 'AU','4382','QLD','Ballandean'
10089
+ 'AU','4382','QLD','Girraween'
10090
+ 'AU','4382','QLD','Somme'
10091
+ 'AU','4382','QLD','Wyberba'
10092
+ 'AU','4383','QLD','Wallangarra'
10093
+ 'AU','4384','QLD','Limevale'
10094
+ 'AU','4385','QLD','Beebo'
10095
+ 'AU','4385','QLD','Bonshaw'
10096
+ 'AU','4385','QLD','Glenarbon'
10097
+ 'AU','4385','QLD','Maidenhead'
10098
+ 'AU','4385','QLD','Riverton'
10099
+ 'AU','4385','QLD','Silver Spur'
10100
+ 'AU','4385','QLD','Smithlea'
10101
+ 'AU','4385','NSW','Texas'
10102
+ 'AU','4385','QLD','Texas'
10103
+ 'AU','4385','QLD','Watsons Crossing'
10104
+ 'AU','4387','QLD','Brush Creek'
10105
+ 'AU','4387','QLD','Bybera'
10106
+ 'AU','4387','QLD','Coolmunda'
10107
+ 'AU','4387','QLD','Greenup'
10108
+ 'AU','4387','QLD','Inglewood'
10109
+ 'AU','4387','QLD','Mosquito Creek'
10110
+ 'AU','4387','QLD','Terrica'
10111
+ 'AU','4387','QLD','Warroo'
10112
+ 'AU','4387','QLD','Whetstone'
10113
+ 'AU','4388','QLD','Kurumbul'
10114
+ 'AU','4388','QLD','Yelarbon'
10115
+ 'AU','4390','QLD','Billa Billa'
10116
+ 'AU','4390','QLD','Calingunee'
10117
+ 'AU','4390','QLD','Callandoon'
10118
+ 'AU','4390','QLD','Goodar'
10119
+ 'AU','4390','QLD','Goondiwindi'
10120
+ 'AU','4390','QLD','Kindon'
10121
+ 'AU','4390','QLD','Lundavra'
10122
+ 'AU','4390','QLD','Wondalli'
10123
+ 'AU','4390','QLD','Wyaga'
10124
+ 'AU','4390','QLD','Yagaburne'
10125
+ 'AU','4400','QLD','Kingsthorpe'
10126
+ 'AU','4401','QLD','Acland'
10127
+ 'AU','4401','QLD','Aubigny'
10128
+ 'AU','4401','QLD','Balgowan'
10129
+ 'AU','4401','QLD','Biddeston'
10130
+ 'AU','4401','QLD','Boodua'
10131
+ 'AU','4401','QLD','Devon Park'
10132
+ 'AU','4401','QLD','Greenwood'
10133
+ 'AU','4401','QLD','Highland Plains'
10134
+ 'AU','4401','QLD','Kelvinhaugh'
10135
+ 'AU','4401','QLD','Mount Irving'
10136
+ 'AU','4401','QLD','Muldu'
10137
+ 'AU','4401','QLD','Oakey'
10138
+ 'AU','4401','QLD','Rosalie Plains'
10139
+ 'AU','4401','QLD','Sabine'
10140
+ 'AU','4401','QLD','Silverleigh'
10141
+ 'AU','4401','QLD','Yargullen'
10142
+ 'AU','4402','QLD','Cooyar'
10143
+ 'AU','4402','QLD','Kooralgin'
10144
+ 'AU','4402','QLD','Upper Cooyar Creek'
10145
+ 'AU','4403','QLD','Brymaroo'
10146
+ 'AU','4403','QLD','Jondaryan'
10147
+ 'AU','4403','QLD','Malu'
10148
+ 'AU','4403','QLD','Mount Moriah'
10149
+ 'AU','4403','QLD','Quinalow'
10150
+ 'AU','4403','QLD','West Prairie'
10151
+ 'AU','4404','QLD','Bowenville'
10152
+ 'AU','4404','QLD','Formartin'
10153
+ 'AU','4404','QLD','Irvingdale'
10154
+ 'AU','4404','QLD','Wainui'
10155
+ 'AU','4405','QLD','Blaxland'
10156
+ 'AU','4405','QLD','Bunya Mountains'
10157
+ 'AU','4405','QLD','Dalby'
10158
+ 'AU','4405','QLD','Ducklo'
10159
+ 'AU','4405','QLD','Grassdale'
10160
+ 'AU','4405','QLD','Marmadua'
10161
+ 'AU','4405','QLD','Pirrinuan'
10162
+ 'AU','4405','QLD','Ranges Bridge'
10163
+ 'AU','4405','QLD','St Ruth'
10164
+ 'AU','4405','QLD','Tipton'
10165
+ 'AU','4405','QLD','Weranga'
10166
+ 'AU','4406','QLD','Boondandilla'
10167
+ 'AU','4406','QLD','Hannaford'
10168
+ 'AU','4406','QLD','Jimbour'
10169
+ 'AU','4406','QLD','Kaimkillenbun'
10170
+ 'AU','4406','QLD','Kogan'
10171
+ 'AU','4406','QLD','Macalister'
10172
+ 'AU','4406','QLD','Moonie'
10173
+ 'AU','4406','QLD','Southwood'
10174
+ 'AU','4406','QLD','The Gums'
10175
+ 'AU','4406','QLD','Weir River'
10176
+ 'AU','4407','QLD','Cattle Creek'
10177
+ 'AU','4407','QLD','Cecil Plains'
10178
+ 'AU','4407','QLD','Dunmore'
10179
+ 'AU','4407','QLD','Nangwee'
10180
+ 'AU','4408','QLD','Bell'
10181
+ 'AU','4410','QLD','Jandowae'
10182
+ 'AU','4411','QLD','Warra'
10183
+ 'AU','4412','QLD','Brigalow'
10184
+ 'AU','4413','QLD','Baking Board'
10185
+ 'AU','4413','QLD','Boonarga'
10186
+ 'AU','4413','QLD','Burncluith'
10187
+ 'AU','4413','QLD','Canaga'
10188
+ 'AU','4413','QLD','Chances Plain'
10189
+ 'AU','4413','QLD','Chinchilla'
10190
+ 'AU','4413','QLD','Durah'
10191
+ 'AU','4413','QLD','Hopeland'
10192
+ 'AU','4413','QLD','Montrose'
10193
+ 'AU','4413','QLD','Wieambilla'
10194
+ 'AU','4415','QLD','Columboola'
10195
+ 'AU','4415','QLD','Dalwogon'
10196
+ 'AU','4415','QLD','Gurulmundi'
10197
+ 'AU','4415','QLD','Hookswood'
10198
+ 'AU','4415','QLD','Kowguran'
10199
+ 'AU','4415','QLD','Miles'
10200
+ 'AU','4415','QLD','Myall Park'
10201
+ 'AU','4415','QLD','Pelham'
10202
+ 'AU','4416','QLD','Barramornie'
10203
+ 'AU','4416','QLD','Condamine'
10204
+ 'AU','4416','QLD','Moraby'
10205
+ 'AU','4416','QLD','Nangram'
10206
+ 'AU','4416','QLD','Pine Hills'
10207
+ 'AU','4416','QLD','Sunnyside'
10208
+ 'AU','4416','QLD','Yulabilla'
10209
+ 'AU','4417','QLD','Noorindoo'
10210
+ 'AU','4417','QLD','Oberina'
10211
+ 'AU','4417','QLD','Parknook'
10212
+ 'AU','4417','QLD','Surat'
10213
+ 'AU','4417','QLD','Warkon'
10214
+ 'AU','4417','QLD','Wellesley'
10215
+ 'AU','4417','QLD','Weribone'
10216
+ 'AU','4418','QLD','Guluguba'
10217
+ 'AU','4419','QLD','Cockatoo'
10218
+ 'AU','4419','QLD','Grosmont'
10219
+ 'AU','4419','QLD','Wandoan'
10220
+ 'AU','4420','QLD','Broadmere'
10221
+ 'AU','4420','QLD','Coorada'
10222
+ 'AU','4420','QLD','Ghinghinda'
10223
+ 'AU','4420','QLD','Glenhaughton'
10224
+ 'AU','4420','QLD','Gwambegwine'
10225
+ 'AU','4420','QLD','Hornet Bank'
10226
+ 'AU','4420','QLD','Peek\-A\-Doo'
10227
+ 'AU','4420','QLD','Spring Creek'
10228
+ 'AU','4420','QLD','Taroom'
10229
+ 'AU','4421','QLD','Goranba'
10230
+ 'AU','4421','QLD','Tara'
10231
+ 'AU','4422','QLD','Coomrith'
10232
+ 'AU','4422','QLD','Flinton'
10233
+ 'AU','4422','QLD','Inglestone'
10234
+ 'AU','4422','QLD','Meandarra'
10235
+ 'AU','4422','QLD','Westmar'
10236
+ 'AU','4423','QLD','Glenmorgan'
10237
+ 'AU','4423','QLD','Teelba'
10238
+ 'AU','4424','QLD','Drillham'
10239
+ 'AU','4424','QLD','Drillham South'
10240
+ 'AU','4424','QLD','Glenaubyn'
10241
+ 'AU','4425','QLD','Bogandilla'
10242
+ 'AU','4425','QLD','Dulacca'
10243
+ 'AU','4426','QLD','Jackson'
10244
+ 'AU','4426','QLD','Jackson North'
10245
+ 'AU','4426','QLD','Jackson South'
10246
+ 'AU','4427','QLD','Clifford'
10247
+ 'AU','4427','QLD','Yuleba'
10248
+ 'AU','4427','QLD','Yuleba North'
10249
+ 'AU','4427','QLD','Yuleba South'
10250
+ 'AU','4428','QLD','Pickanjinnie'
10251
+ 'AU','4428','QLD','Wallumbilla'
10252
+ 'AU','4428','QLD','Wallumbilla North'
10253
+ 'AU','4428','QLD','Wallumbilla South'
10254
+ 'AU','4454','QLD','Baffle West'
10255
+ 'AU','4454','QLD','Beilba'
10256
+ 'AU','4454','QLD','Durham Downs'
10257
+ 'AU','4454','QLD','Highland Plains'
10258
+ 'AU','4454','QLD','Hutton Creek'
10259
+ 'AU','4454','QLD','Injune'
10260
+ 'AU','4454','QLD','Mount Hutton'
10261
+ 'AU','4454','QLD','Pony Hills'
10262
+ 'AU','4454','QLD','Simmie'
10263
+ 'AU','4454','QLD','Upper Dawson'
10264
+ 'AU','4454','QLD','Westgrove'
10265
+ 'AU','4455','QLD','Ballaroo'
10266
+ 'AU','4455','QLD','Blythdale'
10267
+ 'AU','4455','QLD','Bungeworgorai'
10268
+ 'AU','4455','QLD','Bungil'
10269
+ 'AU','4455','QLD','Bymount'
10270
+ 'AU','4455','QLD','Cornwall'
10271
+ 'AU','4455','QLD','Dargal Road'
10272
+ 'AU','4455','QLD','Eumamurrin'
10273
+ 'AU','4455','QLD','Euthulla'
10274
+ 'AU','4455','QLD','Gunnewin'
10275
+ 'AU','4455','QLD','Hodgson'
10276
+ 'AU','4455','QLD','Mooga'
10277
+ 'AU','4455','QLD','Mount Abundance'
10278
+ 'AU','4455','QLD','Mount Bindango'
10279
+ 'AU','4455','QLD','Orallo'
10280
+ 'AU','4455','QLD','Orange Hill'
10281
+ 'AU','4455','QLD','Roma'
10282
+ 'AU','4455','QLD','Tingun'
10283
+ 'AU','4455','QLD','Wycombe'
10284
+ 'AU','4461','QLD','Muckadilla'
10285
+ 'AU','4462','QLD','Amby'
10286
+ 'AU','4465','QLD','Dunkeld'
10287
+ 'AU','4465','QLD','Forestvale'
10288
+ 'AU','4465','QLD','Mitchell'
10289
+ 'AU','4465','QLD','V Gate'
10290
+ 'AU','4465','QLD','Womalilla'
10291
+ 'AU','4467','QLD','Mungallala'
10292
+ 'AU','4467','QLD','Redford'
10293
+ 'AU','4467','QLD','Tyrconnel'
10294
+ 'AU','4468','QLD','Clara Creek'
10295
+ 'AU','4468','QLD','Morven'
10296
+ 'AU','4470','QLD','Bakers Bend'
10297
+ 'AU','4470','QLD','Charleville'
10298
+ 'AU','4470','QLD','Gowrie Station'
10299
+ 'AU','4470','QLD','Langlo'
10300
+ 'AU','4470','QLD','Murweh'
10301
+ 'AU','4470','QLD','Riversleigh'
10302
+ 'AU','4471','QLD','Claverton'
10303
+ 'AU','4471','QLD','Nardoo Siding'
10304
+ 'AU','4472','QLD','Blackall'
10305
+ 'AU','4472','QLD','Mount Enniskillen'
10306
+ 'AU','4474','QLD','Adavale'
10307
+ 'AU','4475','QLD','Cheepie'
10308
+ 'AU','4477','QLD','Augathella'
10309
+ 'AU','4477','QLD','Upper Warrego'
10310
+ 'AU','4478','QLD','Bayrick'
10311
+ 'AU','4478','QLD','Caldervale'
10312
+ 'AU','4478','QLD','Lansdowne'
10313
+ 'AU','4478','QLD','Lumeah'
10314
+ 'AU','4478','QLD','Macfarlane'
10315
+ 'AU','4478','QLD','Minnie Downs'
10316
+ 'AU','4478','QLD','Scrubby Creek'
10317
+ 'AU','4478','QLD','Tambo'
10318
+ 'AU','4478','QLD','Windeyer'
10319
+ 'AU','4478','QLD','Yandarlo'
10320
+ 'AU','4479','QLD','Cooladdi'
10321
+ 'AU','4480','QLD','Eromanga'
10322
+ 'AU','4480','QLD','Quilpie'
10323
+ 'AU','4481','QLD','Farrars Creek'
10324
+ 'AU','4481','QLD','Tanbar'
10325
+ 'AU','4481','QLD','Windorah'
10326
+ 'AU','4482','QLD','Birdsville'
10327
+ 'AU','4486','QLD','Dirranbandi'
10328
+ 'AU','4486','QLD','Hebel'
10329
+ 'AU','4487','QLD','Begonia'
10330
+ 'AU','4487','QLD','St George'
10331
+ 'AU','4488','QLD','Bollon'
10332
+ 'AU','4488','QLD','Nebine'
10333
+ 'AU','4489','QLD','Wyandra'
10334
+ 'AU','4490','QLD','Barringun'
10335
+ 'AU','4490','QLD','Coongoola'
10336
+ 'AU','4490','QLD','Cunnamulla'
10337
+ 'AU','4490','QLD','Cuttaburra'
10338
+ 'AU','4490','QLD','Humeburn'
10339
+ 'AU','4490','QLD','Jobs Gate'
10340
+ 'AU','4490','QLD','Linden'
10341
+ 'AU','4490','QLD','Noorama'
10342
+ 'AU','4490','QLD','Tuen'
10343
+ 'AU','4490','QLD','Widgeegoara'
10344
+ 'AU','4490','QLD','Yowah'
10345
+ 'AU','4491','QLD','Eulo'
10346
+ 'AU','4492','QLD','Bullawarra'
10347
+ 'AU','4492','QLD','Bulloo Downs'
10348
+ 'AU','4492','QLD','Dynevor'
10349
+ 'AU','4492','QLD','Nockatunga'
10350
+ 'AU','4492','QLD','Norley'
10351
+ 'AU','4492','QLD','Thargomindah'
10352
+ 'AU','4493','QLD','Hungerford'
10353
+ 'AU','4494','QLD','Bungunya'
10354
+ 'AU','4494','QLD','North Bungunya'
10355
+ 'AU','4494','QLD','Tarawera'
10356
+ 'AU','4496','QLD','North Talwood'
10357
+ 'AU','4496','QLD','South Talwood'
10358
+ 'AU','4496','QLD','Talwood'
10359
+ 'AU','4497','QLD','Daymar'
10360
+ 'AU','4497','QLD','Thallon'
10361
+ 'AU','4497','QLD','Weengallon'
10362
+ 'AU','4498','QLD','Kioma'
10363
+ 'AU','4498','QLD','Toobeah'
10364
+ 'AU','4500','QLD','Bray Park'
10365
+ 'AU','4500','QLD','Brendale'
10366
+ 'AU','4500','QLD','Brendale Bc'
10367
+ 'AU','4500','QLD','Brendale Dc'
10368
+ 'AU','4500','QLD','Cashmere'
10369
+ 'AU','4500','QLD','Clear Mountain'
10370
+ 'AU','4500','QLD','Joyner'
10371
+ 'AU','4500','QLD','Strathpine'
10372
+ 'AU','4500','QLD','Strathpine Centre'
10373
+ 'AU','4500','QLD','Warner'
10374
+ 'AU','4501','QLD','Lawnton'
10375
+ 'AU','4502','QLD','Petrie'
10376
+ 'AU','4503','QLD','Dakabin'
10377
+ 'AU','4503','QLD','Griffin'
10378
+ 'AU','4503','QLD','Kallangur'
10379
+ 'AU','4503','QLD','Kurwongbah'
10380
+ 'AU','4503','QLD','Murrumba Downs'
10381
+ 'AU','4503','QLD','Whiteside'
10382
+ 'AU','4504','QLD','Narangba'
10383
+ 'AU','4505','QLD','Burpengary'
10384
+ 'AU','4505','QLD','Burpengary Dc'
10385
+ 'AU','4506','QLD','Moorina'
10386
+ 'AU','4506','QLD','Morayfield'
10387
+ 'AU','4507','QLD','Banksia Beach'
10388
+ 'AU','4507','QLD','Bellara'
10389
+ 'AU','4507','QLD','Bongaree'
10390
+ 'AU','4507','QLD','Bribie Island'
10391
+ 'AU','4507','QLD','Bribie Island North'
10392
+ 'AU','4507','QLD','Welsby'
10393
+ 'AU','4507','QLD','White Patch'
10394
+ 'AU','4507','QLD','Woorim'
10395
+ 'AU','4508','QLD','Deception Bay'
10396
+ 'AU','4509','QLD','Mango Hill'
10397
+ 'AU','4509','QLD','North Lakes'
10398
+ 'AU','4510','QLD','Beachmere'
10399
+ 'AU','4510','QLD','Bellmere'
10400
+ 'AU','4510','QLD','Caboolture'
10401
+ 'AU','4510','QLD','Caboolture Bc'
10402
+ 'AU','4510','QLD','Caboolture South'
10403
+ 'AU','4510','QLD','Donnybrook'
10404
+ 'AU','4510','QLD','Meldale'
10405
+ 'AU','4510','QLD','Moodlu'
10406
+ 'AU','4510','QLD','Rocksberg'
10407
+ 'AU','4510','QLD','Toorbul'
10408
+ 'AU','4510','QLD','Upper Caboolture'
10409
+ 'AU','4511','QLD','Godwin Beach'
10410
+ 'AU','4511','QLD','Ningi'
10411
+ 'AU','4511','QLD','Sandstone Point'
10412
+ 'AU','4512','QLD','Bracalba'
10413
+ 'AU','4512','QLD','Wamuran'
10414
+ 'AU','4512','QLD','Wamuran Basin'
10415
+ 'AU','4514','QLD','Bellthorpe'
10416
+ 'AU','4514','QLD','Cedarton'
10417
+ 'AU','4514','QLD','Commissioners Flat'
10418
+ 'AU','4514','QLD','D''Aguilar'
10419
+ 'AU','4514','QLD','Delaneys Creek'
10420
+ 'AU','4514','QLD','Mount Archer'
10421
+ 'AU','4514','QLD','Mount Delaney'
10422
+ 'AU','4514','QLD','Neurum'
10423
+ 'AU','4514','QLD','Stanmore'
10424
+ 'AU','4514','QLD','Stony Creek'
10425
+ 'AU','4514','QLD','Villeneuve'
10426
+ 'AU','4514','QLD','Woodford'
10427
+ 'AU','4515','QLD','Glenfern'
10428
+ 'AU','4515','QLD','Hazeldean'
10429
+ 'AU','4515','QLD','Jimna'
10430
+ 'AU','4515','QLD','Kilcoy'
10431
+ 'AU','4515','QLD','Kingaham'
10432
+ 'AU','4515','QLD','Monsildale'
10433
+ 'AU','4515','QLD','Mount Kilcoy'
10434
+ 'AU','4515','QLD','Royston'
10435
+ 'AU','4515','QLD','Sandy Creek'
10436
+ 'AU','4515','QLD','Sheep Station Creek'
10437
+ 'AU','4515','QLD','Winya'
10438
+ 'AU','4515','QLD','Woolmar'
10439
+ 'AU','4516','QLD','Elimbah'
10440
+ 'AU','4517','QLD','Beerburrum'
10441
+ 'AU','4518','QLD','Glass House Mountains'
10442
+ 'AU','4519','QLD','Beerwah'
10443
+ 'AU','4519','QLD','Coochin Creek'
10444
+ 'AU','4519','QLD','Crohamhurst'
10445
+ 'AU','4519','QLD','Peachester'
10446
+ 'AU','4520','QLD','Armstrong Creek'
10447
+ 'AU','4520','QLD','Camp Mountain'
10448
+ 'AU','4520','QLD','Cedar Creek'
10449
+ 'AU','4520','QLD','Closeburn'
10450
+ 'AU','4520','QLD','Draper'
10451
+ 'AU','4520','QLD','Enoggera Reservoir'
10452
+ 'AU','4520','QLD','Highvale'
10453
+ 'AU','4520','QLD','Jollys Lookout'
10454
+ 'AU','4520','QLD','Kobble Creek'
10455
+ 'AU','4520','QLD','Mount Glorious'
10456
+ 'AU','4520','QLD','Mount Nebo'
10457
+ 'AU','4520','QLD','Mount Samson'
10458
+ 'AU','4520','QLD','Samford'
10459
+ 'AU','4520','QLD','Samford Valley'
10460
+ 'AU','4520','QLD','Samford Village'
10461
+ 'AU','4520','QLD','Samsonvale'
10462
+ 'AU','4520','QLD','Wights Mountain'
10463
+ 'AU','4520','QLD','Yugar'
10464
+ 'AU','4521','QLD','Campbells Pocket'
10465
+ 'AU','4521','QLD','Dayboro'
10466
+ 'AU','4521','QLD','King Scrub'
10467
+ 'AU','4521','QLD','Laceys Creek'
10468
+ 'AU','4521','QLD','Mount Mee'
10469
+ 'AU','4521','QLD','Mount Pleasant'
10470
+ 'AU','4521','QLD','Ocean View'
10471
+ 'AU','4521','QLD','Rush Creek'
10472
+ 'AU','4550','QLD','Landsborough'
10473
+ 'AU','4550','QLD','Mount Mellum'
10474
+ 'AU','4551','QLD','Aroona'
10475
+ 'AU','4551','QLD','Battery Hill'
10476
+ 'AU','4551','QLD','Bells Creek'
10477
+ 'AU','4551','QLD','Caloundra'
10478
+ 'AU','4551','QLD','Caloundra Bc'
10479
+ 'AU','4551','QLD','Caloundra Dc'
10480
+ 'AU','4551','QLD','Caloundra West'
10481
+ 'AU','4551','QLD','Currimundi'
10482
+ 'AU','4551','QLD','Dicky Beach'
10483
+ 'AU','4551','QLD','Golden Beach'
10484
+ 'AU','4551','QLD','Kings Beach'
10485
+ 'AU','4551','QLD','Little Mountain'
10486
+ 'AU','4551','QLD','Meridan Plains'
10487
+ 'AU','4551','QLD','Moffat Beach'
10488
+ 'AU','4551','QLD','Pelican Waters'
10489
+ 'AU','4551','QLD','Shelly Beach'
10490
+ 'AU','4552','QLD','Bald Knob'
10491
+ 'AU','4552','QLD','Balmoral Ridge'
10492
+ 'AU','4552','QLD','Booroobin'
10493
+ 'AU','4552','QLD','Cambroon'
10494
+ 'AU','4552','QLD','Conondale'
10495
+ 'AU','4552','QLD','Crystal Waters'
10496
+ 'AU','4552','QLD','Curramore'
10497
+ 'AU','4552','QLD','Elaman Creek'
10498
+ 'AU','4552','QLD','Harper Creek'
10499
+ 'AU','4552','QLD','Maleny'
10500
+ 'AU','4552','QLD','North Maleny'
10501
+ 'AU','4552','QLD','Reesville'
10502
+ 'AU','4552','QLD','Witta'
10503
+ 'AU','4552','QLD','Wootha'
10504
+ 'AU','4553','QLD','Diamond Valley'
10505
+ 'AU','4553','QLD','Glenview'
10506
+ 'AU','4553','QLD','Mooloolah'
10507
+ 'AU','4553','QLD','Mooloolah Valley'
10508
+ 'AU','4553','QLD','Palmview'
10509
+ 'AU','4554','QLD','Eudlo'
10510
+ 'AU','4554','QLD','Ilkley'
10511
+ 'AU','4555','QLD','Chevallum'
10512
+ 'AU','4555','QLD','Hunchy'
10513
+ 'AU','4555','QLD','Landers Shoot'
10514
+ 'AU','4555','QLD','Palmwoods'
10515
+ 'AU','4556','QLD','Buderim'
10516
+ 'AU','4556','QLD','Forest Glen'
10517
+ 'AU','4556','QLD','Kunda Park'
10518
+ 'AU','4556','QLD','Mons'
10519
+ 'AU','4556','QLD','Sippy Downs'
10520
+ 'AU','4556','QLD','Tanawha'
10521
+ 'AU','4557','QLD','Mooloolaba'
10522
+ 'AU','4557','QLD','Mountain Creek'
10523
+ 'AU','4558','QLD','Cotton Tree'
10524
+ 'AU','4558','QLD','Kuluin'
10525
+ 'AU','4558','QLD','Maroochydore'
10526
+ 'AU','4558','QLD','Maroochydore Bc'
10527
+ 'AU','4558','QLD','Maroochydore Dc'
10528
+ 'AU','4558','QLD','Sunshine Plaza'
10529
+ 'AU','4559','QLD','Diddillibah'
10530
+ 'AU','4559','QLD','Kiels Mountain'
10531
+ 'AU','4559','QLD','West Woombye'
10532
+ 'AU','4559','QLD','Woombye'
10533
+ 'AU','4560','QLD','Bli Bli'
10534
+ 'AU','4560','QLD','Burnside'
10535
+ 'AU','4560','QLD','Coes Creek'
10536
+ 'AU','4560','QLD','Cooloolabin'
10537
+ 'AU','4560','QLD','Dulong'
10538
+ 'AU','4560','QLD','Flaxton'
10539
+ 'AU','4560','QLD','Highworth'
10540
+ 'AU','4560','QLD','Image Flat'
10541
+ 'AU','4560','QLD','Kiamba'
10542
+ 'AU','4560','QLD','Kulangoor'
10543
+ 'AU','4560','QLD','Kureelpa'
10544
+ 'AU','4560','QLD','Mapleton'
10545
+ 'AU','4560','QLD','Montville'
10546
+ 'AU','4560','QLD','Nambour'
10547
+ 'AU','4560','QLD','Nambour Bc'
10548
+ 'AU','4560','QLD','Nambour Dc'
10549
+ 'AU','4560','QLD','Nambour West'
10550
+ 'AU','4560','QLD','Parklands'
10551
+ 'AU','4560','QLD','Perwillowen'
10552
+ 'AU','4560','QLD','Rosemount'
10553
+ 'AU','4560','QLD','Sunshine Coast Mc'
10554
+ 'AU','4560','QLD','Towen Mountain'
10555
+ 'AU','4561','QLD','Bridges'
10556
+ 'AU','4561','QLD','Maroochy River'
10557
+ 'AU','4561','QLD','Ninderry'
10558
+ 'AU','4561','QLD','North Arm'
10559
+ 'AU','4561','QLD','Valdora'
10560
+ 'AU','4561','QLD','Yandina'
10561
+ 'AU','4561','QLD','Yandina Creek'
10562
+ 'AU','4562','QLD','Belli Park'
10563
+ 'AU','4562','QLD','Doonan'
10564
+ 'AU','4562','QLD','Eerwah Vale'
10565
+ 'AU','4562','QLD','Eumundi'
10566
+ 'AU','4562','QLD','Verrierdale'
10567
+ 'AU','4562','QLD','Weyba Downs'
10568
+ 'AU','4563','QLD','Black Mountain'
10569
+ 'AU','4563','QLD','Carters Ridge'
10570
+ 'AU','4563','QLD','Cooroy'
10571
+ 'AU','4563','QLD','Cooroy Mountain'
10572
+ 'AU','4563','QLD','Lake Macdonald'
10573
+ 'AU','4563','QLD','Ridgewood'
10574
+ 'AU','4563','QLD','Tinbeerwah'
10575
+ 'AU','4564','QLD','Marcoola'
10576
+ 'AU','4564','QLD','Mudjimba'
10577
+ 'AU','4564','QLD','Pacific Paradise'
10578
+ 'AU','4564','QLD','Twin Waters'
10579
+ 'AU','4565','QLD','Boreen Point'
10580
+ 'AU','4565','QLD','Cooroibah'
10581
+ 'AU','4565','QLD','Cootharaba'
10582
+ 'AU','4565','QLD','Noosa North Shore'
10583
+ 'AU','4565','QLD','Ringtail Creek'
10584
+ 'AU','4565','QLD','Tewantin'
10585
+ 'AU','4566','QLD','Noosaville'
10586
+ 'AU','4566','QLD','Noosaville Bc'
10587
+ 'AU','4566','QLD','Noosaville Dc'
10588
+ 'AU','4567','QLD','Castaways Beach'
10589
+ 'AU','4567','QLD','Noosa Heads'
10590
+ 'AU','4567','QLD','Sunrise Beach'
10591
+ 'AU','4567','QLD','Sunshine Beach'
10592
+ 'AU','4568','QLD','Federal'
10593
+ 'AU','4568','QLD','Pinbarren'
10594
+ 'AU','4568','QLD','Pomona'
10595
+ 'AU','4569','QLD','Cooran'
10596
+ 'AU','4570','QLD','Amamoor'
10597
+ 'AU','4570','QLD','Amamoor Creek'
10598
+ 'AU','4570','QLD','Anderleigh'
10599
+ 'AU','4570','QLD','Araluen'
10600
+ 'AU','4570','QLD','Banks Pocket'
10601
+ 'AU','4570','QLD','Beenaam Valley'
10602
+ 'AU','4570','QLD','Bella Creek'
10603
+ 'AU','4570','QLD','Bells Bridge'
10604
+ 'AU','4570','QLD','Bollier'
10605
+ 'AU','4570','QLD','Brooloo'
10606
+ 'AU','4570','QLD','Calgoa'
10607
+ 'AU','4570','QLD','Calico Creek'
10608
+ 'AU','4570','QLD','Canina'
10609
+ 'AU','4570','QLD','Cedar Pocket'
10610
+ 'AU','4570','QLD','Chatsworth'
10611
+ 'AU','4570','QLD','Coles Creek'
10612
+ 'AU','4570','QLD','Coondoo'
10613
+ 'AU','4570','QLD','Corella'
10614
+ 'AU','4570','QLD','Curra'
10615
+ 'AU','4570','QLD','Dagun'
10616
+ 'AU','4570','QLD','Downsfield'
10617
+ 'AU','4570','QLD','East Deep Creek'
10618
+ 'AU','4570','QLD','Fishermans Pocket'
10619
+ 'AU','4570','QLD','Gilldora'
10620
+ 'AU','4570','QLD','Glanmire'
10621
+ 'AU','4570','QLD','Glastonbury'
10622
+ 'AU','4570','QLD','Glen Echo'
10623
+ 'AU','4570','QLD','Glenwood'
10624
+ 'AU','4570','QLD','Goomboorian'
10625
+ 'AU','4570','QLD','Greens Creek'
10626
+ 'AU','4570','QLD','Gunalda'
10627
+ 'AU','4570','QLD','Gympie'
10628
+ 'AU','4570','QLD','Gympie Dc'
10629
+ 'AU','4570','QLD','Imbil'
10630
+ 'AU','4570','QLD','Jones Hill'
10631
+ 'AU','4570','QLD','Kandanga'
10632
+ 'AU','4570','QLD','Kandanga Creek'
10633
+ 'AU','4570','QLD','Kanigan'
10634
+ 'AU','4570','QLD','Kia Ora'
10635
+ 'AU','4570','QLD','Kybong'
10636
+ 'AU','4570','QLD','Lagoon Pocket'
10637
+ 'AU','4570','QLD','Lake Borumba'
10638
+ 'AU','4570','QLD','Langshaw'
10639
+ 'AU','4570','QLD','Long Flat'
10640
+ 'AU','4570','QLD','Lower Wonga'
10641
+ 'AU','4570','QLD','Marodian'
10642
+ 'AU','4570','QLD','Marys Creek'
10643
+ 'AU','4570','QLD','Mcintosh Creek'
10644
+ 'AU','4570','QLD','Melawondi'
10645
+ 'AU','4570','QLD','Miva'
10646
+ 'AU','4570','QLD','Monkland'
10647
+ 'AU','4570','QLD','Mooloo'
10648
+ 'AU','4570','QLD','Mothar Mountain'
10649
+ 'AU','4570','QLD','Munna Creek'
10650
+ 'AU','4570','QLD','Nahrunda'
10651
+ 'AU','4570','QLD','Neerdie'
10652
+ 'AU','4570','QLD','Neusa Vale'
10653
+ 'AU','4570','QLD','North Deep Creek'
10654
+ 'AU','4570','QLD','Paterson'
10655
+ 'AU','4570','QLD','Pie Creek'
10656
+ 'AU','4570','QLD','Ross Creek'
10657
+ 'AU','4570','QLD','Scotchy Pocket'
10658
+ 'AU','4570','QLD','Scrubby Creek'
10659
+ 'AU','4570','QLD','Sexton'
10660
+ 'AU','4570','QLD','Southside'
10661
+ 'AU','4570','QLD','Tamaree'
10662
+ 'AU','4570','QLD','Tandur'
10663
+ 'AU','4570','QLD','The Dawn'
10664
+ 'AU','4570','QLD','The Palms'
10665
+ 'AU','4570','QLD','Theebine'
10666
+ 'AU','4570','QLD','Toolara Forest'
10667
+ 'AU','4570','QLD','Traveston'
10668
+ 'AU','4570','QLD','Tuchekoi'
10669
+ 'AU','4570','QLD','Two Mile'
10670
+ 'AU','4570','QLD','Upper Glastonbury'
10671
+ 'AU','4570','QLD','Upper Kandanga'
10672
+ 'AU','4570','QLD','Veteran'
10673
+ 'AU','4570','QLD','Victory Heights'
10674
+ 'AU','4570','QLD','Wallu'
10675
+ 'AU','4570','QLD','Widgee'
10676
+ 'AU','4570','QLD','Widgee Crossing North'
10677
+ 'AU','4570','QLD','Widgee Crossing South'
10678
+ 'AU','4570','QLD','Wilsons Pocket'
10679
+ 'AU','4570','QLD','Wolvi'
10680
+ 'AU','4570','QLD','Woolooga'
10681
+ 'AU','4570','QLD','Woondum'
10682
+ 'AU','4571','QLD','Como'
10683
+ 'AU','4571','QLD','Kin Kin'
10684
+ 'AU','4572','QLD','Alexandra Headland'
10685
+ 'AU','4573','QLD','Coolum Beach'
10686
+ 'AU','4573','QLD','Marcus Beach'
10687
+ 'AU','4573','QLD','Mount Coolum'
10688
+ 'AU','4573','QLD','Peregian Beach'
10689
+ 'AU','4573','QLD','Peregian Beach South'
10690
+ 'AU','4573','QLD','Peregian Springs'
10691
+ 'AU','4573','QLD','Point Arkwright'
10692
+ 'AU','4573','QLD','Yaroomba'
10693
+ 'AU','4574','QLD','Coolabine'
10694
+ 'AU','4574','QLD','Gheerulla'
10695
+ 'AU','4574','QLD','Kenilworth'
10696
+ 'AU','4574','QLD','Kidaman Creek'
10697
+ 'AU','4574','QLD','Moy Pocket'
10698
+ 'AU','4574','QLD','Obi Obi'
10699
+ 'AU','4575','QLD','Birtinya'
10700
+ 'AU','4575','QLD','Bokarina'
10701
+ 'AU','4575','QLD','Buddina'
10702
+ 'AU','4575','QLD','Minyama'
10703
+ 'AU','4575','QLD','Parrearra'
10704
+ 'AU','4575','QLD','Warana'
10705
+ 'AU','4575','QLD','Wurtulla'
10706
+ 'AU','4580','QLD','Cooloola'
10707
+ 'AU','4580','QLD','Cooloola Cove'
10708
+ 'AU','4580','QLD','Tin Can Bay'
10709
+ 'AU','4581','QLD','Eurong'
10710
+ 'AU','4581','QLD','Fraser Island'
10711
+ 'AU','4581','QLD','Inskip'
10712
+ 'AU','4581','QLD','Orchid Beach'
10713
+ 'AU','4581','QLD','Rainbow Beach'
10714
+ 'AU','4600','QLD','Black Snake'
10715
+ 'AU','4600','QLD','Cinnabar'
10716
+ 'AU','4600','QLD','Kilkivan'
10717
+ 'AU','4600','QLD','Mudlo'
10718
+ 'AU','4600','QLD','Oakview'
10719
+ 'AU','4601','QLD','Barambah'
10720
+ 'AU','4601','QLD','Boonara'
10721
+ 'AU','4601','QLD','Booubyjan'
10722
+ 'AU','4601','QLD','Goomeri'
10723
+ 'AU','4601','QLD','Goomeribong'
10724
+ 'AU','4601','QLD','Kinbombi'
10725
+ 'AU','4601','QLD','Manumbar'
10726
+ 'AU','4601','QLD','Tansey'
10727
+ 'AU','4601','QLD','Wrattens Forest'
10728
+ 'AU','4605','QLD','Barlil'
10729
+ 'AU','4605','QLD','Byee'
10730
+ 'AU','4605','QLD','Cherbourg'
10731
+ 'AU','4605','QLD','Cloyna'
10732
+ 'AU','4605','QLD','Cobbs Hill'
10733
+ 'AU','4605','QLD','Crownthorpe'
10734
+ 'AU','4605','QLD','Glenrock'
10735
+ 'AU','4605','QLD','Kitoba'
10736
+ 'AU','4605','QLD','Manyung'
10737
+ 'AU','4605','QLD','Merlwood'
10738
+ 'AU','4605','QLD','Moffatdale'
10739
+ 'AU','4605','QLD','Moondooner'
10740
+ 'AU','4605','QLD','Murgon'
10741
+ 'AU','4605','QLD','Oakdale'
10742
+ 'AU','4605','QLD','Redgate'
10743
+ 'AU','4605','QLD','Silverleaf'
10744
+ 'AU','4605','QLD','Sunny Nook'
10745
+ 'AU','4605','QLD','Tablelands'
10746
+ 'AU','4605','QLD','Warnung'
10747
+ 'AU','4605','QLD','Windera'
10748
+ 'AU','4605','QLD','Wooroonden'
10749
+ 'AU','4606','QLD','Chelmsford'
10750
+ 'AU','4606','QLD','Fairdale'
10751
+ 'AU','4606','QLD','Ficks Crossing'
10752
+ 'AU','4606','QLD','Greenview'
10753
+ 'AU','4606','QLD','Leafdale'
10754
+ 'AU','4606','QLD','Mount Mceuen'
10755
+ 'AU','4606','QLD','Mp Creek'
10756
+ 'AU','4606','QLD','Wheatlands'
10757
+ 'AU','4606','QLD','Wondai'
10758
+ 'AU','4608','QLD','Charlestown'
10759
+ 'AU','4608','QLD','Cushnie'
10760
+ 'AU','4608','QLD','Tingoora'
10761
+ 'AU','4608','QLD','Wilkesdale'
10762
+ 'AU','4608','QLD','Wooroolin'
10763
+ 'AU','4610','QLD','Alice Creek'
10764
+ 'AU','4610','QLD','Ballogie'
10765
+ 'AU','4610','QLD','Benair'
10766
+ 'AU','4610','QLD','Booie'
10767
+ 'AU','4610','QLD','Boonenne'
10768
+ 'AU','4610','QLD','Boyneside'
10769
+ 'AU','4610','QLD','Chahpingah'
10770
+ 'AU','4610','QLD','Coolabunia'
10771
+ 'AU','4610','QLD','Corndale'
10772
+ 'AU','4610','QLD','Crawford'
10773
+ 'AU','4610','QLD','Dangore'
10774
+ 'AU','4610','QLD','Durong'
10775
+ 'AU','4610','QLD','Durong South'
10776
+ 'AU','4610','QLD','Ellesmere'
10777
+ 'AU','4610','QLD','Goodger'
10778
+ 'AU','4610','QLD','Gordonbrook'
10779
+ 'AU','4610','QLD','Haly Creek'
10780
+ 'AU','4610','QLD','Hodgleigh'
10781
+ 'AU','4610','QLD','Inverlaw'
10782
+ 'AU','4610','QLD','Ironpot'
10783
+ 'AU','4610','QLD','Kingaroy'
10784
+ 'AU','4610','QLD','Kingaroy Dc'
10785
+ 'AU','4610','QLD','Kumbia'
10786
+ 'AU','4610','QLD','Mannuem'
10787
+ 'AU','4610','QLD','Memerambi'
10788
+ 'AU','4610','QLD','Taabinga'
10789
+ 'AU','4610','QLD','Taabinga Village'
10790
+ 'AU','4610','QLD','Wattle Grove'
10791
+ 'AU','4611','QLD','Marshlands'
10792
+ 'AU','4611','QLD','Mondure'
10793
+ 'AU','4612','QLD','Hivesville'
10794
+ 'AU','4612','QLD','Kawl Kawl'
10795
+ 'AU','4612','QLD','Keysland'
10796
+ 'AU','4612','QLD','Stonelands'
10797
+ 'AU','4612','QLD','Wigton'
10798
+ 'AU','4613','QLD','Abbeywood'
10799
+ 'AU','4613','QLD','Boondooma'
10800
+ 'AU','4613','QLD','Brigooda'
10801
+ 'AU','4613','QLD','Coverty'
10802
+ 'AU','4613','QLD','Kinleymore'
10803
+ 'AU','4613','QLD','Melrose'
10804
+ 'AU','4613','QLD','Okeden'
10805
+ 'AU','4613','QLD','Proston'
10806
+ 'AU','4613','QLD','Speedwell'
10807
+ 'AU','4613','QLD','Stalworth'
10808
+ 'AU','4614','QLD','Neumgna'
10809
+ 'AU','4614','QLD','Upper Yarraman'
10810
+ 'AU','4614','QLD','Yarraman'
10811
+ 'AU','4615','QLD','Barker Creek Flat'
10812
+ 'AU','4615','QLD','Brooklands'
10813
+ 'AU','4615','QLD','Bullcamp'
10814
+ 'AU','4615','QLD','East Nanango'
10815
+ 'AU','4615','QLD','Elgin Vale'
10816
+ 'AU','4615','QLD','Glan Devon'
10817
+ 'AU','4615','QLD','Johnstown'
10818
+ 'AU','4615','QLD','Kunioon'
10819
+ 'AU','4615','QLD','Maidenwell'
10820
+ 'AU','4615','QLD','Nanango'
10821
+ 'AU','4615','QLD','Pimpimbudgee'
10822
+ 'AU','4615','QLD','Runnymede'
10823
+ 'AU','4615','QLD','Sandy Ridges'
10824
+ 'AU','4615','QLD','South East Nanango'
10825
+ 'AU','4615','QLD','South Nanango'
10826
+ 'AU','4615','QLD','Tarong'
10827
+ 'AU','4615','QLD','Wattle Camp'
10828
+ 'AU','4615','QLD','Wengenville'
10829
+ 'AU','4615','QLD','Wyalla'
10830
+ 'AU','4620','QLD','Aramara'
10831
+ 'AU','4620','QLD','Brooweena'
10832
+ 'AU','4620','QLD','Doongul'
10833
+ 'AU','4620','QLD','Gigoomgan'
10834
+ 'AU','4620','QLD','Glenbar'
10835
+ 'AU','4620','QLD','Gungaloon'
10836
+ 'AU','4620','QLD','Malarga'
10837
+ 'AU','4620','QLD','North Aramara'
10838
+ 'AU','4620','QLD','Teebar'
10839
+ 'AU','4620','QLD','Woocoo'
10840
+ 'AU','4621','QLD','Biggenden'
10841
+ 'AU','4621','QLD','Boompa'
10842
+ 'AU','4621','QLD','Coalstoun Lakes'
10843
+ 'AU','4621','QLD','Coringa'
10844
+ 'AU','4621','QLD','Dallarnil'
10845
+ 'AU','4621','QLD','Degilbo'
10846
+ 'AU','4621','QLD','Didcot'
10847
+ 'AU','4621','QLD','Golden Fleece'
10848
+ 'AU','4621','QLD','Lakeside'
10849
+ 'AU','4621','QLD','Wateranga'
10850
+ 'AU','4621','QLD','Woowoonga'
10851
+ 'AU','4625','QLD','Aranbanga'
10852
+ 'AU','4625','QLD','Ban Ban'
10853
+ 'AU','4625','QLD','Ban Ban Springs'
10854
+ 'AU','4625','QLD','Barlyne'
10855
+ 'AU','4625','QLD','Binjour'
10856
+ 'AU','4625','QLD','Blairmore'
10857
+ 'AU','4625','QLD','Bon Accord'
10858
+ 'AU','4625','QLD','Branch Creek'
10859
+ 'AU','4625','QLD','Byrnestown'
10860
+ 'AU','4625','QLD','Campbell Creek'
10861
+ 'AU','4625','QLD','Deep Creek'
10862
+ 'AU','4625','QLD','Dirnbir'
10863
+ 'AU','4625','QLD','Dundarrah'
10864
+ 'AU','4625','QLD','Gayndah'
10865
+ 'AU','4625','QLD','Ginoondan'
10866
+ 'AU','4625','QLD','Gooroolba'
10867
+ 'AU','4625','QLD','Harriet'
10868
+ 'AU','4625','QLD','Humphery'
10869
+ 'AU','4625','QLD','Ideraway'
10870
+ 'AU','4625','QLD','Mingo'
10871
+ 'AU','4625','QLD','Mount Debateable'
10872
+ 'AU','4625','QLD','Mount Lawless'
10873
+ 'AU','4625','QLD','Penwhaupell'
10874
+ 'AU','4625','QLD','Pile Gully'
10875
+ 'AU','4625','QLD','Reids Creek'
10876
+ 'AU','4625','QLD','Stockhaven'
10877
+ 'AU','4625','QLD','The Limits'
10878
+ 'AU','4625','QLD','Toondahra'
10879
+ 'AU','4625','QLD','Wahoon'
10880
+ 'AU','4625','QLD','Wetheron'
10881
+ 'AU','4625','QLD','Wilson Valley'
10882
+ 'AU','4625','QLD','Woodmillar'
10883
+ 'AU','4625','QLD','Yenda'
10884
+ 'AU','4626','QLD','Beeron'
10885
+ 'AU','4626','QLD','Boynewood'
10886
+ 'AU','4626','QLD','Brovinia'
10887
+ 'AU','4626','QLD','Cattle Creek'
10888
+ 'AU','4626','QLD','Coonambula'
10889
+ 'AU','4626','QLD','Derri Derra'
10890
+ 'AU','4626','QLD','Dykehead'
10891
+ 'AU','4626','QLD','Glenrae'
10892
+ 'AU','4626','QLD','Gurgeena'
10893
+ 'AU','4626','QLD','Hawkwood'
10894
+ 'AU','4626','QLD','Monogorilby'
10895
+ 'AU','4626','QLD','Mundowran'
10896
+ 'AU','4626','QLD','Mundubbera'
10897
+ 'AU','4626','QLD','O''Bil Bil'
10898
+ 'AU','4626','QLD','Old Cooranga'
10899
+ 'AU','4626','QLD','Philpott'
10900
+ 'AU','4626','QLD','Riverleigh'
10901
+ 'AU','4627','QLD','Abercorn'
10902
+ 'AU','4627','QLD','Ceratodus'
10903
+ 'AU','4627','QLD','Cheltenham'
10904
+ 'AU','4627','QLD','Cynthia'
10905
+ 'AU','4627','QLD','Eidsvold'
10906
+ 'AU','4627','QLD','Eidsvold East'
10907
+ 'AU','4627','QLD','Eidsvold West'
10908
+ 'AU','4627','QLD','Grosvenor'
10909
+ 'AU','4627','QLD','Malmoe'
10910
+ 'AU','4627','QLD','Wuruma Dam'
10911
+ 'AU','4630','QLD','Bancroft'
10912
+ 'AU','4630','QLD','Bukali'
10913
+ 'AU','4630','QLD','Cania'
10914
+ 'AU','4630','QLD','Cannindah'
10915
+ 'AU','4630','QLD','Coominglah'
10916
+ 'AU','4630','QLD','Coominglah Forest'
10917
+ 'AU','4630','QLD','Dalga'
10918
+ 'AU','4630','QLD','Glenleigh'
10919
+ 'AU','4630','QLD','Harrami'
10920
+ 'AU','4630','QLD','Kalpowar'
10921
+ 'AU','4630','QLD','Kapaldo'
10922
+ 'AU','4630','QLD','Langley'
10923
+ 'AU','4630','QLD','Monal'
10924
+ 'AU','4630','QLD','Monto'
10925
+ 'AU','4630','QLD','Moonford'
10926
+ 'AU','4630','QLD','Mulgildie'
10927
+ 'AU','4630','QLD','Mungungo'
10928
+ 'AU','4630','QLD','Rawbelle'
10929
+ 'AU','4630','QLD','Selene'
10930
+ 'AU','4630','QLD','Splinter Creek'
10931
+ 'AU','4630','QLD','Tellebang'
10932
+ 'AU','4630','QLD','Three Moon'
10933
+ 'AU','4630','QLD','Ventnor'
10934
+ 'AU','4630','QLD','Yarrol'
10935
+ 'AU','4650','QLD','Aldershot'
10936
+ 'AU','4650','QLD','Antigua'
10937
+ 'AU','4650','QLD','Bauple'
10938
+ 'AU','4650','QLD','Bauple Forest'
10939
+ 'AU','4650','QLD','Beaver Rock'
10940
+ 'AU','4650','QLD','Bidwill'
10941
+ 'AU','4650','QLD','Boonooroo'
10942
+ 'AU','4650','QLD','Boonooroo Plains'
10943
+ 'AU','4650','QLD','Duckinwilla'
10944
+ 'AU','4650','QLD','Dundathu'
10945
+ 'AU','4650','QLD','Dunmora'
10946
+ 'AU','4650','QLD','Ferney'
10947
+ 'AU','4650','QLD','Glenorchy'
10948
+ 'AU','4650','QLD','Gootchie'
10949
+ 'AU','4650','QLD','Grahams Creek'
10950
+ 'AU','4650','QLD','Granville'
10951
+ 'AU','4650','QLD','Gundiah'
10952
+ 'AU','4650','QLD','Island Plantation'
10953
+ 'AU','4650','QLD','Maaroom'
10954
+ 'AU','4650','QLD','Magnolia'
10955
+ 'AU','4650','QLD','Maryborough'
10956
+ 'AU','4650','QLD','Maryborough Dc'
10957
+ 'AU','4650','QLD','Maryborough West'
10958
+ 'AU','4650','QLD','Mount Steadman'
10959
+ 'AU','4650','QLD','Mount Urah'
10960
+ 'AU','4650','QLD','Mungar'
10961
+ 'AU','4650','QLD','Netherby'
10962
+ 'AU','4650','QLD','Oakhurst'
10963
+ 'AU','4650','QLD','Owanyilla'
10964
+ 'AU','4650','QLD','Pallas Street Maryborough'
10965
+ 'AU','4650','QLD','Pilerwa'
10966
+ 'AU','4650','QLD','Pioneers Rest'
10967
+ 'AU','4650','QLD','Poona'
10968
+ 'AU','4650','QLD','Prawle'
10969
+ 'AU','4650','QLD','St Helens'
10970
+ 'AU','4650','QLD','St Mary'
10971
+ 'AU','4650','QLD','Talegalla Weir'
10972
+ 'AU','4650','QLD','Tandora'
10973
+ 'AU','4650','QLD','Teddington'
10974
+ 'AU','4650','QLD','The Dimonds'
10975
+ 'AU','4650','QLD','Thinoomba'
10976
+ 'AU','4650','QLD','Tiaro'
10977
+ 'AU','4650','QLD','Tinana'
10978
+ 'AU','4650','QLD','Tinana South'
10979
+ 'AU','4650','QLD','Tinnanbar'
10980
+ 'AU','4650','QLD','Tuan'
10981
+ 'AU','4650','QLD','Tuan Forest'
10982
+ 'AU','4650','QLD','Walkers Point'
10983
+ 'AU','4650','QLD','Yengarie'
10984
+ 'AU','4650','QLD','Yerra'
10985
+ 'AU','4655','QLD','Booral'
10986
+ 'AU','4655','QLD','Bunya Creek'
10987
+ 'AU','4655','QLD','Craignish'
10988
+ 'AU','4655','QLD','Dundowran'
10989
+ 'AU','4655','QLD','Dundowran Beach'
10990
+ 'AU','4655','QLD','Eli Waters'
10991
+ 'AU','4655','QLD','Great Sandy Strait'
10992
+ 'AU','4655','QLD','Happy Valley'
10993
+ 'AU','4655','QLD','Hervey Bay'
10994
+ 'AU','4655','QLD','Hervey Bay Dc'
10995
+ 'AU','4655','QLD','Kawungan'
10996
+ 'AU','4655','QLD','Kingfisher Bay Resort'
10997
+ 'AU','4655','QLD','Nikenbah'
10998
+ 'AU','4655','QLD','Pialba'
10999
+ 'AU','4655','QLD','Point Vernon'
11000
+ 'AU','4655','QLD','River Heads'
11001
+ 'AU','4655','QLD','Scarness'
11002
+ 'AU','4655','QLD','Sunshine Acres'
11003
+ 'AU','4655','QLD','Susan River'
11004
+ 'AU','4655','QLD','Takura'
11005
+ 'AU','4655','QLD','Toogoom'
11006
+ 'AU','4655','QLD','Torquay'
11007
+ 'AU','4655','QLD','Urangan'
11008
+ 'AU','4655','QLD','Urraween'
11009
+ 'AU','4655','QLD','Walliebum'
11010
+ 'AU','4655','QLD','Walligan'
11011
+ 'AU','4655','QLD','Wondunna'
11012
+ 'AU','4659','QLD','Beelbi Creek'
11013
+ 'AU','4659','QLD','Burgowan'
11014
+ 'AU','4659','QLD','Burrum'
11015
+ 'AU','4659','QLD','Burrum Heads'
11016
+ 'AU','4659','QLD','Burrum River'
11017
+ 'AU','4659','QLD','Burrum Town'
11018
+ 'AU','4659','QLD','Howard'
11019
+ 'AU','4659','QLD','Pacific Haven'
11020
+ 'AU','4660','QLD','Abington'
11021
+ 'AU','4660','QLD','Apple Tree Creek'
11022
+ 'AU','4660','QLD','Buxton'
11023
+ 'AU','4660','QLD','Cherwell'
11024
+ 'AU','4660','QLD','Childers'
11025
+ 'AU','4660','QLD','Cordalba'
11026
+ 'AU','4660','QLD','Doolbi'
11027
+ 'AU','4660','QLD','Eureka'
11028
+ 'AU','4660','QLD','Farnsfield'
11029
+ 'AU','4660','QLD','Goodwood'
11030
+ 'AU','4660','QLD','Gregory River'
11031
+ 'AU','4660','QLD','Horton'
11032
+ 'AU','4660','QLD','Isis Central'
11033
+ 'AU','4660','QLD','Isis River'
11034
+ 'AU','4660','QLD','Kullogum'
11035
+ 'AU','4660','QLD','North Gregory'
11036
+ 'AU','4660','QLD','North Isis'
11037
+ 'AU','4660','QLD','Promisedland'
11038
+ 'AU','4660','QLD','Redridge'
11039
+ 'AU','4660','QLD','South Isis'
11040
+ 'AU','4660','QLD','Woodgate'
11041
+ 'AU','4662','QLD','Torbanlea'
11042
+ 'AU','4670','QLD','Abbotsford'
11043
+ 'AU','4670','QLD','Alloway'
11044
+ 'AU','4670','QLD','Ashfield'
11045
+ 'AU','4670','QLD','Avenell Heights'
11046
+ 'AU','4670','QLD','Avoca'
11047
+ 'AU','4670','QLD','Avondale'
11048
+ 'AU','4670','QLD','Bargara'
11049
+ 'AU','4670','QLD','Branyan'
11050
+ 'AU','4670','QLD','Bucca'
11051
+ 'AU','4670','QLD','Bundaberg'
11052
+ 'AU','4670','QLD','Bundaberg Central'
11053
+ 'AU','4670','QLD','Bundaberg Dc'
11054
+ 'AU','4670','QLD','Bundaberg East'
11055
+ 'AU','4670','QLD','Bundaberg North'
11056
+ 'AU','4670','QLD','Bundaberg South'
11057
+ 'AU','4670','QLD','Bundaberg West'
11058
+ 'AU','4670','QLD','Burnett Heads'
11059
+ 'AU','4670','QLD','Calavos'
11060
+ 'AU','4670','QLD','Coonarr'
11061
+ 'AU','4670','QLD','Coral Cove'
11062
+ 'AU','4670','QLD','Electra'
11063
+ 'AU','4670','QLD','Elliott'
11064
+ 'AU','4670','QLD','Elliott Heads'
11065
+ 'AU','4670','QLD','Fairymead'
11066
+ 'AU','4670','QLD','Givelda'
11067
+ 'AU','4670','QLD','Gooburrum'
11068
+ 'AU','4670','QLD','Innes Park'
11069
+ 'AU','4670','QLD','Kalkie'
11070
+ 'AU','4670','QLD','Kensington'
11071
+ 'AU','4670','QLD','Kepnock'
11072
+ 'AU','4670','QLD','Kinkuna'
11073
+ 'AU','4670','QLD','Meadowvale'
11074
+ 'AU','4670','QLD','Millbank'
11075
+ 'AU','4670','QLD','Mon Repos'
11076
+ 'AU','4670','QLD','Moore Park Beach'
11077
+ 'AU','4670','QLD','Moorland'
11078
+ 'AU','4670','QLD','Mullett Creek'
11079
+ 'AU','4670','QLD','Norville'
11080
+ 'AU','4670','QLD','Oakwood'
11081
+ 'AU','4670','QLD','Pine Creek'
11082
+ 'AU','4670','QLD','Qunaba'
11083
+ 'AU','4670','QLD','Rubyanna'
11084
+ 'AU','4670','QLD','Sharon'
11085
+ 'AU','4670','QLD','South Bingera'
11086
+ 'AU','4670','QLD','South Kolan'
11087
+ 'AU','4670','QLD','Svensson Heights'
11088
+ 'AU','4670','QLD','Thabeban'
11089
+ 'AU','4670','QLD','Walkervale'
11090
+ 'AU','4670','QLD','Watalgan'
11091
+ 'AU','4670','QLD','Welcome Creek'
11092
+ 'AU','4670','QLD','Windermere'
11093
+ 'AU','4670','QLD','Winfield'
11094
+ 'AU','4670','QLD','Woongarra'
11095
+ 'AU','4671','QLD','Boolboonda'
11096
+ 'AU','4671','QLD','Booyal'
11097
+ 'AU','4671','QLD','Bullyard'
11098
+ 'AU','4671','QLD','Bungadoo'
11099
+ 'AU','4671','QLD','Dalysford'
11100
+ 'AU','4671','QLD','Damascus'
11101
+ 'AU','4671','QLD','Delan'
11102
+ 'AU','4671','QLD','Doughboy'
11103
+ 'AU','4671','QLD','Drinan'
11104
+ 'AU','4671','QLD','Duingal'
11105
+ 'AU','4671','QLD','Gaeta'
11106
+ 'AU','4671','QLD','Gin Gin'
11107
+ 'AU','4671','QLD','Good Night'
11108
+ 'AU','4671','QLD','Horse Camp'
11109
+ 'AU','4671','QLD','Kolonga'
11110
+ 'AU','4671','QLD','Lake Monduran'
11111
+ 'AU','4671','QLD','Maroondan'
11112
+ 'AU','4671','QLD','Mcilwraith'
11113
+ 'AU','4671','QLD','Molangul'
11114
+ 'AU','4671','QLD','Monduran'
11115
+ 'AU','4671','QLD','Moolboolaman'
11116
+ 'AU','4671','QLD','Morganville'
11117
+ 'AU','4671','QLD','Mount Perry'
11118
+ 'AU','4671','QLD','Mungy'
11119
+ 'AU','4671','QLD','Nearum'
11120
+ 'AU','4671','QLD','New Moonta'
11121
+ 'AU','4671','QLD','Redhill Farms'
11122
+ 'AU','4671','QLD','Skyring Reserve'
11123
+ 'AU','4671','QLD','St Agnes'
11124
+ 'AU','4671','QLD','St Kilda'
11125
+ 'AU','4671','QLD','Takilberan'
11126
+ 'AU','4671','QLD','Tirroan'
11127
+ 'AU','4671','QLD','Wallaville'
11128
+ 'AU','4671','QLD','Wonbah'
11129
+ 'AU','4671','QLD','Wonbah Forest'
11130
+ 'AU','4673','QLD','Miara'
11131
+ 'AU','4673','QLD','Waterloo'
11132
+ 'AU','4673','QLD','Yandaran'
11133
+ 'AU','4674','QLD','Baffle Creek'
11134
+ 'AU','4674','QLD','Berajondo'
11135
+ 'AU','4674','QLD','Deepwater'
11136
+ 'AU','4674','QLD','Euleilah'
11137
+ 'AU','4674','QLD','Mount Maria'
11138
+ 'AU','4674','QLD','Oyster Creek'
11139
+ 'AU','4674','QLD','Rosedale'
11140
+ 'AU','4674','QLD','Rules Beach'
11141
+ 'AU','4674','QLD','Taunton'
11142
+ 'AU','4676','QLD','Gindoran'
11143
+ 'AU','4676','QLD','Lowmead'
11144
+ 'AU','4677','QLD','Agnes Water'
11145
+ 'AU','4677','QLD','Captain Creek'
11146
+ 'AU','4677','QLD','Colosseum'
11147
+ 'AU','4677','QLD','Eurimbula'
11148
+ 'AU','4677','QLD','Miriam Vale'
11149
+ 'AU','4677','QLD','Mount Tom'
11150
+ 'AU','4677','QLD','Round Hill'
11151
+ 'AU','4677','QLD','Seventeen Seventy'
11152
+ 'AU','4678','QLD','Bororen'
11153
+ 'AU','4678','QLD','Foreshores'
11154
+ 'AU','4678','QLD','Rodds Bay'
11155
+ 'AU','4678','QLD','Turkey Beach'
11156
+ 'AU','4680','QLD','Barney Point'
11157
+ 'AU','4680','QLD','Beecher'
11158
+ 'AU','4680','QLD','Benaraby'
11159
+ 'AU','4680','QLD','Boyne Island'
11160
+ 'AU','4680','QLD','Boyne Valley'
11161
+ 'AU','4680','QLD','Boynedale'
11162
+ 'AU','4680','QLD','Builyan'
11163
+ 'AU','4680','QLD','Burua'
11164
+ 'AU','4680','QLD','Byellee'
11165
+ 'AU','4680','QLD','Callemondah'
11166
+ 'AU','4680','QLD','Calliope'
11167
+ 'AU','4680','QLD','Clinton'
11168
+ 'AU','4680','QLD','Curtis Island'
11169
+ 'AU','4680','QLD','Diglum'
11170
+ 'AU','4680','QLD','Gladstone'
11171
+ 'AU','4680','QLD','Gladstone Bc'
11172
+ 'AU','4680','QLD','Gladstone Dc'
11173
+ 'AU','4680','QLD','Gladstone South'
11174
+ 'AU','4680','QLD','Gladstone\-City'
11175
+ 'AU','4680','QLD','Glen Eden'
11176
+ 'AU','4680','QLD','Heron Island'
11177
+ 'AU','4680','QLD','Iveragh'
11178
+ 'AU','4680','QLD','Kin Kora'
11179
+ 'AU','4680','QLD','Kirkwood'
11180
+ 'AU','4680','QLD','Many Peaks'
11181
+ 'AU','4680','QLD','Mount Alma'
11182
+ 'AU','4680','QLD','Nagoorin'
11183
+ 'AU','4680','QLD','New Auckland'
11184
+ 'AU','4680','QLD','O''Connell'
11185
+ 'AU','4680','QLD','River Ranch'
11186
+ 'AU','4680','QLD','South End'
11187
+ 'AU','4680','QLD','South Gladstone'
11188
+ 'AU','4680','QLD','South Trees'
11189
+ 'AU','4680','QLD','Sun Valley'
11190
+ 'AU','4680','QLD','Tablelands'
11191
+ 'AU','4680','QLD','Tannum Sands'
11192
+ 'AU','4680','QLD','Taragoola'
11193
+ 'AU','4680','QLD','Telina'
11194
+ 'AU','4680','QLD','Toolooa'
11195
+ 'AU','4680','QLD','Ubobo'
11196
+ 'AU','4680','QLD','West Gladstone'
11197
+ 'AU','4680','QLD','West Stowe'
11198
+ 'AU','4680','QLD','Wooderson'
11199
+ 'AU','4680','QLD','Wurdong Heights'
11200
+ 'AU','4694','QLD','Aldoga'
11201
+ 'AU','4694','QLD','Targinie'
11202
+ 'AU','4694','QLD','Yarwun'
11203
+ 'AU','4695','QLD','Ambrose'
11204
+ 'AU','4695','QLD','Bracewell'
11205
+ 'AU','4695','QLD','Darts Creek'
11206
+ 'AU','4695','QLD','East End'
11207
+ 'AU','4695','QLD','Machine Creek'
11208
+ 'AU','4695','QLD','Mount Larcom'
11209
+ 'AU','4695','QLD','The Narrows'
11210
+ 'AU','4697','QLD','Raglan'
11211
+ 'AU','4699','QLD','Bajool'
11212
+ 'AU','4699','QLD','Port Alma'
11213
+ 'AU','4700','QLD','Allenstown'
11214
+ 'AU','4700','QLD','Depot Hill'
11215
+ 'AU','4700','QLD','Fairy Bower'
11216
+ 'AU','4700','QLD','Great Keppel Island'
11217
+ 'AU','4700','QLD','Port Curtis'
11218
+ 'AU','4700','QLD','Rockhampton'
11219
+ 'AU','4700','QLD','Rockhampton City'
11220
+ 'AU','4700','QLD','Rockhampton Hospital'
11221
+ 'AU','4700','QLD','The Keppels'
11222
+ 'AU','4700','QLD','The Range'
11223
+ 'AU','4700','QLD','Wandal'
11224
+ 'AU','4700','QLD','West Rockhampton'
11225
+ 'AU','4701','QLD','Berserker'
11226
+ 'AU','4701','QLD','Central Queensland University'
11227
+ 'AU','4701','QLD','Frenchville'
11228
+ 'AU','4701','QLD','Greenlake'
11229
+ 'AU','4701','QLD','Ironpot'
11230
+ 'AU','4701','QLD','Kawana'
11231
+ 'AU','4701','QLD','Koongal'
11232
+ 'AU','4701','QLD','Lakes Creek'
11233
+ 'AU','4701','QLD','Limestone Creek'
11234
+ 'AU','4701','QLD','Mount Archer'
11235
+ 'AU','4701','QLD','Nankin'
11236
+ 'AU','4701','QLD','Nerimbera'
11237
+ 'AU','4701','QLD','Norman Gardens'
11238
+ 'AU','4701','QLD','North Rockhampton'
11239
+ 'AU','4701','QLD','Park Avenue'
11240
+ 'AU','4701','QLD','Red Hill Rockhampton'
11241
+ 'AU','4701','QLD','Rockhampton Dc'
11242
+ 'AU','4701','QLD','Rockhampton North'
11243
+ 'AU','4701','QLD','Rockyview'
11244
+ 'AU','4701','QLD','Sandringham'
11245
+ 'AU','4701','QLD','The Common'
11246
+ 'AU','4702','QLD','Alberta'
11247
+ 'AU','4702','QLD','Alsace'
11248
+ 'AU','4702','QLD','Alton Downs'
11249
+ 'AU','4702','QLD','Anakie'
11250
+ 'AU','4702','QLD','Argoon'
11251
+ 'AU','4702','QLD','Balcomba'
11252
+ 'AU','4702','QLD','Banana'
11253
+ 'AU','4702','QLD','Baralaba'
11254
+ 'AU','4702','QLD','Barnard'
11255
+ 'AU','4702','QLD','Bingegang'
11256
+ 'AU','4702','QLD','Blackdown'
11257
+ 'AU','4702','QLD','Bluff'
11258
+ 'AU','4702','QLD','Boolburra'
11259
+ 'AU','4702','QLD','Bouldercombe'
11260
+ 'AU','4702','QLD','Bushley'
11261
+ 'AU','4702','QLD','Canal Creek'
11262
+ 'AU','4702','QLD','Canoona'
11263
+ 'AU','4702','QLD','Cawarral'
11264
+ 'AU','4702','QLD','Central Queensland Mc'
11265
+ 'AU','4702','QLD','Comet'
11266
+ 'AU','4702','QLD','Consuelo'
11267
+ 'AU','4702','QLD','Coomoo'
11268
+ 'AU','4702','QLD','Coorooman'
11269
+ 'AU','4702','QLD','Coorumbene'
11270
+ 'AU','4702','QLD','Coowonga'
11271
+ 'AU','4702','QLD','Dalma'
11272
+ 'AU','4702','QLD','Dingo'
11273
+ 'AU','4702','QLD','Dixalea'
11274
+ 'AU','4702','QLD','Dululu'
11275
+ 'AU','4702','QLD','Dumpy Creek'
11276
+ 'AU','4702','QLD','Etna Creek'
11277
+ 'AU','4702','QLD','Fernlees'
11278
+ 'AU','4702','QLD','Gainsford'
11279
+ 'AU','4702','QLD','Garnant'
11280
+ 'AU','4702','QLD','Gindie'
11281
+ 'AU','4702','QLD','Glenroy'
11282
+ 'AU','4702','QLD','Gogango'
11283
+ 'AU','4702','QLD','Goomally'
11284
+ 'AU','4702','QLD','Goovigen'
11285
+ 'AU','4702','QLD','Goowarra'
11286
+ 'AU','4702','QLD','Gracemere'
11287
+ 'AU','4702','QLD','Jambin'
11288
+ 'AU','4702','QLD','Jardine'
11289
+ 'AU','4702','QLD','Jellinbah'
11290
+ 'AU','4702','QLD','Joskeleigh'
11291
+ 'AU','4702','QLD','Kabra'
11292
+ 'AU','4702','QLD','Kalapa'
11293
+ 'AU','4702','QLD','Keppel Sands'
11294
+ 'AU','4702','QLD','Kokotungo'
11295
+ 'AU','4702','QLD','Kunwarara'
11296
+ 'AU','4702','QLD','Lowesby'
11297
+ 'AU','4702','QLD','Mackenzie'
11298
+ 'AU','4702','QLD','Marmor'
11299
+ 'AU','4702','QLD','Midgee'
11300
+ 'AU','4702','QLD','Milman'
11301
+ 'AU','4702','QLD','Mimosa'
11302
+ 'AU','4702','QLD','Moonmera'
11303
+ 'AU','4702','QLD','Morinish'
11304
+ 'AU','4702','QLD','Morinish South'
11305
+ 'AU','4702','QLD','Mount Chalmers'
11306
+ 'AU','4702','QLD','Nine Mile'
11307
+ 'AU','4702','QLD','Parkhurst'
11308
+ 'AU','4702','QLD','Pheasant Creek'
11309
+ 'AU','4702','QLD','Pink Lily'
11310
+ 'AU','4702','QLD','Plum Tree'
11311
+ 'AU','4702','QLD','Ridgelands'
11312
+ 'AU','4702','QLD','Rolleston'
11313
+ 'AU','4702','QLD','Rossmoya'
11314
+ 'AU','4702','QLD','Rubyvale'
11315
+ 'AU','4702','QLD','Sapphire'
11316
+ 'AU','4702','QLD','Shoalwater'
11317
+ 'AU','4702','QLD','Smoky Creek'
11318
+ 'AU','4702','QLD','South Yaamba'
11319
+ 'AU','4702','QLD','Stanage'
11320
+ 'AU','4702','QLD','Stanwell'
11321
+ 'AU','4702','QLD','Stewarton'
11322
+ 'AU','4702','QLD','The Caves'
11323
+ 'AU','4702','QLD','Thompson Point'
11324
+ 'AU','4702','QLD','Tungamull'
11325
+ 'AU','4702','QLD','Ulogie'
11326
+ 'AU','4702','QLD','Wallaroo'
11327
+ 'AU','4702','QLD','Westwood'
11328
+ 'AU','4702','QLD','Willows'
11329
+ 'AU','4702','QLD','Willows Gemfields'
11330
+ 'AU','4702','QLD','Woolein'
11331
+ 'AU','4702','QLD','Wooroona'
11332
+ 'AU','4702','QLD','Wowan'
11333
+ 'AU','4702','QLD','Wycarbah'
11334
+ 'AU','4702','QLD','Yaraka'
11335
+ 'AU','4703','QLD','Adelaide Park'
11336
+ 'AU','4703','QLD','Bangalee'
11337
+ 'AU','4703','QLD','Barlows Hill'
11338
+ 'AU','4703','QLD','Barmaryee'
11339
+ 'AU','4703','QLD','Barmoya'
11340
+ 'AU','4703','QLD','Bondoola'
11341
+ 'AU','4703','QLD','Bungundarra'
11342
+ 'AU','4703','QLD','Byfield'
11343
+ 'AU','4703','QLD','Causeway Lake'
11344
+ 'AU','4703','QLD','Cobraball'
11345
+ 'AU','4703','QLD','Cooee Bay'
11346
+ 'AU','4703','QLD','Farnborough'
11347
+ 'AU','4703','QLD','Hidden Valley'
11348
+ 'AU','4703','QLD','Inverness'
11349
+ 'AU','4703','QLD','Kinka Beach'
11350
+ 'AU','4703','QLD','Lake Mary'
11351
+ 'AU','4703','QLD','Lammermoor'
11352
+ 'AU','4703','QLD','Maryvale'
11353
+ 'AU','4703','QLD','Meikleville Hill'
11354
+ 'AU','4703','QLD','Mulambin'
11355
+ 'AU','4703','QLD','Mulara'
11356
+ 'AU','4703','QLD','Pacific Heights'
11357
+ 'AU','4703','QLD','Rosslyn'
11358
+ 'AU','4703','QLD','Stockyard'
11359
+ 'AU','4703','QLD','Tanby'
11360
+ 'AU','4703','QLD','Taranganba'
11361
+ 'AU','4703','QLD','Taroomball'
11362
+ 'AU','4703','QLD','Weerriba'
11363
+ 'AU','4703','QLD','Woodbury'
11364
+ 'AU','4703','QLD','Yeppoon'
11365
+ 'AU','4704','QLD','Wattlebank'
11366
+ 'AU','4704','QLD','Yaamba'
11367
+ 'AU','4705','QLD','Clarke Creek'
11368
+ 'AU','4705','QLD','Lotus Creek'
11369
+ 'AU','4705','QLD','Mackenzie River'
11370
+ 'AU','4705','QLD','Marlborough'
11371
+ 'AU','4705','QLD','Mount Gardiner'
11372
+ 'AU','4706','QLD','Ogmore'
11373
+ 'AU','4707','QLD','Collaroy'
11374
+ 'AU','4707','QLD','St Lawrence'
11375
+ 'AU','4707','QLD','The Percy Group'
11376
+ 'AU','4709','QLD','Tieri'
11377
+ 'AU','4710','QLD','Emu Park'
11378
+ 'AU','4710','QLD','Zilzie'
11379
+ 'AU','4711','QLD','Glendale'
11380
+ 'AU','4711','QLD','Glenlee'
11381
+ 'AU','4712','QLD','Duaringa'
11382
+ 'AU','4713','QLD','Woorabinda'
11383
+ 'AU','4714','QLD','Baree'
11384
+ 'AU','4714','QLD','Boulder Creek'
11385
+ 'AU','4714','QLD','Fletcher Creek'
11386
+ 'AU','4714','QLD','Hamilton Creek'
11387
+ 'AU','4714','QLD','Horse Creek'
11388
+ 'AU','4714','QLD','Johnsons Hill'
11389
+ 'AU','4714','QLD','Leydens Hill'
11390
+ 'AU','4714','QLD','Limestone'
11391
+ 'AU','4714','QLD','Moongan'
11392
+ 'AU','4714','QLD','Mount Morgan'
11393
+ 'AU','4714','QLD','Nine Mile Creek'
11394
+ 'AU','4714','QLD','Oakey Creek'
11395
+ 'AU','4714','QLD','Struck Oil'
11396
+ 'AU','4714','QLD','The Mine'
11397
+ 'AU','4714','QLD','Trotter Creek'
11398
+ 'AU','4714','QLD','Walmul'
11399
+ 'AU','4714','QLD','Walterhall'
11400
+ 'AU','4714','QLD','Wura'
11401
+ 'AU','4715','QLD','Biloela'
11402
+ 'AU','4715','QLD','Callide'
11403
+ 'AU','4715','QLD','Castle Creek'
11404
+ 'AU','4715','QLD','Dakenba'
11405
+ 'AU','4715','QLD','Dumgree'
11406
+ 'AU','4715','QLD','Greycliffe'
11407
+ 'AU','4715','QLD','Mount Murchison'
11408
+ 'AU','4715','QLD','Orange Creek'
11409
+ 'AU','4715','QLD','Prospect'
11410
+ 'AU','4715','QLD','Tarramba'
11411
+ 'AU','4715','QLD','Valentine Plains'
11412
+ 'AU','4716','QLD','Lawgi Dawes'
11413
+ 'AU','4716','QLD','Thangool'
11414
+ 'AU','4717','QLD','Blackwater'
11415
+ 'AU','4718','QLD','Bauhinia'
11416
+ 'AU','4718','QLD','Dromedary'
11417
+ 'AU','4718','QLD','Kianga'
11418
+ 'AU','4718','QLD','Moura'
11419
+ 'AU','4718','QLD','Mungabunda'
11420
+ 'AU','4718','QLD','Oombabeer'
11421
+ 'AU','4718','QLD','Rhydding'
11422
+ 'AU','4718','QLD','Roundstone'
11423
+ 'AU','4718','QLD','Warnoah'
11424
+ 'AU','4719','QLD','Camboon'
11425
+ 'AU','4719','QLD','Cracow'
11426
+ 'AU','4719','QLD','Glenmoral'
11427
+ 'AU','4719','QLD','Isla'
11428
+ 'AU','4719','QLD','Lonesome Creek'
11429
+ 'AU','4719','QLD','Theodore'
11430
+ 'AU','4720','QLD','Emerald'
11431
+ 'AU','4720','QLD','Yamala'
11432
+ 'AU','4721','QLD','Argyll'
11433
+ 'AU','4721','QLD','Clermont'
11434
+ 'AU','4721','QLD','Frankfield'
11435
+ 'AU','4721','QLD','Gemini Mountains'
11436
+ 'AU','4721','QLD','Kilcummin'
11437
+ 'AU','4721','QLD','Pasha'
11438
+ 'AU','4721','QLD','Theresa Creek'
11439
+ 'AU','4721','QLD','Wolfang'
11440
+ 'AU','4722','QLD','Buckland'
11441
+ 'AU','4722','QLD','Cairdbeign'
11442
+ 'AU','4722','QLD','Cona Creek'
11443
+ 'AU','4722','QLD','Nandowrie'
11444
+ 'AU','4722','QLD','Orion'
11445
+ 'AU','4722','QLD','Springsure'
11446
+ 'AU','4722','QLD','Wealwandangie'
11447
+ 'AU','4723','QLD','Belcong'
11448
+ 'AU','4723','QLD','Capella'
11449
+ 'AU','4723','QLD','Carbine Creek'
11450
+ 'AU','4723','QLD','Chirnside'
11451
+ 'AU','4723','QLD','Crinum'
11452
+ 'AU','4723','QLD','Hibernia'
11453
+ 'AU','4723','QLD','Khosh Bulduk'
11454
+ 'AU','4723','QLD','Lilyvale'
11455
+ 'AU','4723','QLD','Lowestoff'
11456
+ 'AU','4723','QLD','Mount Macarthur'
11457
+ 'AU','4723','QLD','Retro'
11458
+ 'AU','4724','QLD','Alpha'
11459
+ 'AU','4724','QLD','Beaufort'
11460
+ 'AU','4724','QLD','Drummondslope'
11461
+ 'AU','4724','QLD','Hobartville'
11462
+ 'AU','4724','QLD','Pine Hill'
11463
+ 'AU','4724','QLD','Port Wine'
11464
+ 'AU','4724','QLD','Sedgeford'
11465
+ 'AU','4724','QLD','Surbiton'
11466
+ 'AU','4725','QLD','Barcaldine'
11467
+ 'AU','4725','QLD','Barcaldine Downs'
11468
+ 'AU','4725','QLD','Patrick'
11469
+ 'AU','4725','QLD','Tara Station'
11470
+ 'AU','4726','QLD','Aramac'
11471
+ 'AU','4726','QLD','Pelican Creek'
11472
+ 'AU','4727','QLD','Ilfracombe'
11473
+ 'AU','4728','QLD','Dunrobin'
11474
+ 'AU','4728','QLD','Garfield'
11475
+ 'AU','4728','QLD','Jericho'
11476
+ 'AU','4728','QLD','Mexico'
11477
+ 'AU','4730','QLD','Camoola'
11478
+ 'AU','4730','QLD','Chorregon'
11479
+ 'AU','4730','QLD','Ernestina'
11480
+ 'AU','4730','QLD','Longreach'
11481
+ 'AU','4730','QLD','Maneroo'
11482
+ 'AU','4730','QLD','Morella'
11483
+ 'AU','4730','QLD','Stonehenge'
11484
+ 'AU','4730','QLD','Tocal'
11485
+ 'AU','4730','QLD','Vergemont'
11486
+ 'AU','4731','QLD','Isisford'
11487
+ 'AU','4732','QLD','Muttaburra'
11488
+ 'AU','4732','QLD','Tablederry'
11489
+ 'AU','4733','QLD','Corfield'
11490
+ 'AU','4735','QLD','Diamantina Lakes'
11491
+ 'AU','4735','QLD','Middleton'
11492
+ 'AU','4735','QLD','Opalton'
11493
+ 'AU','4735','QLD','Winton'
11494
+ 'AU','4736','QLD','Jundah'
11495
+ 'AU','4737','QLD','Armstrong Beach'
11496
+ 'AU','4737','QLD','Blue Mountain'
11497
+ 'AU','4737','QLD','Freshwater Point'
11498
+ 'AU','4737','QLD','Sarina'
11499
+ 'AU','4737','QLD','Sarina Beach'
11500
+ 'AU','4737','QLD','Sarina Range'
11501
+ 'AU','4737','QLD','Sunnyside'
11502
+ 'AU','4738','QLD','Ilbilbie'
11503
+ 'AU','4738','QLD','Koumala'
11504
+ 'AU','4739','QLD','Carmila'
11505
+ 'AU','4740','QLD','Alexandra'
11506
+ 'AU','4740','QLD','Alligator Creek'
11507
+ 'AU','4740','QLD','Andergrove'
11508
+ 'AU','4740','QLD','Bakers Creek'
11509
+ 'AU','4740','QLD','Balberra'
11510
+ 'AU','4740','QLD','Balnagowan'
11511
+ 'AU','4740','QLD','Beaconsfield'
11512
+ 'AU','4740','QLD','Belmunda'
11513
+ 'AU','4740','QLD','Blacks Beach'
11514
+ 'AU','4740','QLD','Cape Hillsborough'
11515
+ 'AU','4740','QLD','Chelona'
11516
+ 'AU','4740','QLD','Coningsby'
11517
+ 'AU','4740','QLD','Cremorne'
11518
+ 'AU','4740','QLD','Dolphin Heads'
11519
+ 'AU','4740','QLD','Dumbleton'
11520
+ 'AU','4740','QLD','Dundula'
11521
+ 'AU','4740','QLD','Dunnrock'
11522
+ 'AU','4740','QLD','East Mackay'
11523
+ 'AU','4740','QLD','Eimeo'
11524
+ 'AU','4740','QLD','Erakala'
11525
+ 'AU','4740','QLD','Foulden'
11526
+ 'AU','4740','QLD','Glenella'
11527
+ 'AU','4740','QLD','Grasstree Beach'
11528
+ 'AU','4740','QLD','Habana'
11529
+ 'AU','4740','QLD','Haliday Bay'
11530
+ 'AU','4740','QLD','Hay Point'
11531
+ 'AU','4740','QLD','Homebush'
11532
+ 'AU','4740','QLD','Mackay'
11533
+ 'AU','4740','QLD','Mackay Bc'
11534
+ 'AU','4740','QLD','Mackay Caneland'
11535
+ 'AU','4740','QLD','Mackay Dc'
11536
+ 'AU','4740','QLD','Mackay Harbour'
11537
+ 'AU','4740','QLD','Mackay North'
11538
+ 'AU','4740','QLD','Mackay South'
11539
+ 'AU','4740','QLD','Mackay West'
11540
+ 'AU','4740','QLD','Mcewens Beach'
11541
+ 'AU','4740','QLD','Mount Jukes'
11542
+ 'AU','4740','QLD','Mount Pleasant'
11543
+ 'AU','4740','QLD','Munbura'
11544
+ 'AU','4740','QLD','Nindaroo'
11545
+ 'AU','4740','QLD','North Mackay'
11546
+ 'AU','4740','QLD','Ooralea'
11547
+ 'AU','4740','QLD','Paget'
11548
+ 'AU','4740','QLD','Racecourse'
11549
+ 'AU','4740','QLD','Richmond'
11550
+ 'AU','4740','QLD','Rosella'
11551
+ 'AU','4740','QLD','Rural View'
11552
+ 'AU','4740','QLD','Sandiford'
11553
+ 'AU','4740','QLD','Slade Point'
11554
+ 'AU','4740','QLD','South Mackay'
11555
+ 'AU','4740','QLD','Te Kowai'
11556
+ 'AU','4740','QLD','The Leap'
11557
+ 'AU','4740','QLD','West Mackay'
11558
+ 'AU','4741','QLD','Ball Bay'
11559
+ 'AU','4741','QLD','Brightly'
11560
+ 'AU','4741','QLD','Clairview'
11561
+ 'AU','4741','QLD','Coppabella'
11562
+ 'AU','4741','QLD','Daydream Island'
11563
+ 'AU','4741','QLD','Epsom'
11564
+ 'AU','4741','QLD','Eton'
11565
+ 'AU','4741','QLD','Eton North'
11566
+ 'AU','4741','QLD','Eungella Hinterland'
11567
+ 'AU','4741','QLD','Farleigh'
11568
+ 'AU','4741','QLD','Gargett'
11569
+ 'AU','4741','QLD','Hampden'
11570
+ 'AU','4741','QLD','Hazledean'
11571
+ 'AU','4741','QLD','Hook Island'
11572
+ 'AU','4741','QLD','Kalarka'
11573
+ 'AU','4741','QLD','Kinchant Dam'
11574
+ 'AU','4741','QLD','Kuttabul'
11575
+ 'AU','4741','QLD','Lindeman Island'
11576
+ 'AU','4741','QLD','Long Island'
11577
+ 'AU','4741','QLD','Mackay Mc'
11578
+ 'AU','4741','QLD','Mount Charlton'
11579
+ 'AU','4741','QLD','Mount Ossa'
11580
+ 'AU','4741','QLD','Mount Pelion'
11581
+ 'AU','4741','QLD','North Eton'
11582
+ 'AU','4741','QLD','Oakenden'
11583
+ 'AU','4741','QLD','Orkabie'
11584
+ 'AU','4741','QLD','Owens Creek'
11585
+ 'AU','4741','QLD','Pinnacle'
11586
+ 'AU','4741','QLD','Pleystowe'
11587
+ 'AU','4741','QLD','Seaforth'
11588
+ 'AU','4741','QLD','South Molle'
11589
+ 'AU','4741','QLD','Yalboroo'
11590
+ 'AU','4742','QLD','Burton'
11591
+ 'AU','4742','QLD','Eaglefield'
11592
+ 'AU','4742','QLD','Elphinstone'
11593
+ 'AU','4742','QLD','Hail Creek'
11594
+ 'AU','4742','QLD','Kemmis'
11595
+ 'AU','4742','QLD','Mount Britton'
11596
+ 'AU','4742','QLD','Nebo'
11597
+ 'AU','4742','QLD','Oxford'
11598
+ 'AU','4742','QLD','Strathfield'
11599
+ 'AU','4742','QLD','Turrawulla'
11600
+ 'AU','4742','QLD','Valkyrie'
11601
+ 'AU','4743','QLD','Glenden'
11602
+ 'AU','4743','QLD','Suttor'
11603
+ 'AU','4744','QLD','Moranbah'
11604
+ 'AU','4745','QLD','Dysart'
11605
+ 'AU','4746','QLD','May Downs'
11606
+ 'AU','4746','QLD','Middlemount'
11607
+ 'AU','4750','QLD','Bucasia'
11608
+ 'AU','4750','QLD','Shoal Point'
11609
+ 'AU','4751','QLD','Greenmount'
11610
+ 'AU','4751','QLD','Palmyra'
11611
+ 'AU','4751','QLD','Victoria Plains'
11612
+ 'AU','4751','QLD','Walkerston'
11613
+ 'AU','4753','QLD','Devereux Creek'
11614
+ 'AU','4753','QLD','Marian'
11615
+ 'AU','4754','QLD','Benholme'
11616
+ 'AU','4754','QLD','Dows Creek'
11617
+ 'AU','4754','QLD','Mia Mia'
11618
+ 'AU','4754','QLD','Mirani'
11619
+ 'AU','4754','QLD','Mount Martin'
11620
+ 'AU','4754','QLD','Pinevale'
11621
+ 'AU','4754','QLD','Septimus'
11622
+ 'AU','4756','QLD','Finch Hatton'
11623
+ 'AU','4756','QLD','Netherdale'
11624
+ 'AU','4757','QLD','Broken River'
11625
+ 'AU','4757','QLD','Crediton'
11626
+ 'AU','4757','QLD','Dalrymple Heights'
11627
+ 'AU','4757','QLD','Eungella'
11628
+ 'AU','4757','QLD','Eungella Dam'
11629
+ 'AU','4798','QLD','Calen'
11630
+ 'AU','4798','QLD','Mentmore'
11631
+ 'AU','4798','QLD','Pindi Pindi'
11632
+ 'AU','4798','QLD','St Helens Beach'
11633
+ 'AU','4799','QLD','Bloomsbury'
11634
+ 'AU','4799','QLD','Midge Point'
11635
+ 'AU','4800','QLD','Andromache'
11636
+ 'AU','4800','QLD','Brandy Creek'
11637
+ 'AU','4800','QLD','Breadalbane'
11638
+ 'AU','4800','QLD','Cannon Valley'
11639
+ 'AU','4800','QLD','Cape Conway'
11640
+ 'AU','4800','QLD','Cape Gloucester'
11641
+ 'AU','4800','QLD','Conway'
11642
+ 'AU','4800','QLD','Conway Beach'
11643
+ 'AU','4800','QLD','Crystal Brook'
11644
+ 'AU','4800','QLD','Dingo Beach'
11645
+ 'AU','4800','QLD','Dittmer'
11646
+ 'AU','4800','QLD','Foxdale'
11647
+ 'AU','4800','QLD','Glen Isla'
11648
+ 'AU','4800','QLD','Goorganga Creek'
11649
+ 'AU','4800','QLD','Goorganga Plains'
11650
+ 'AU','4800','QLD','Gregory River'
11651
+ 'AU','4800','QLD','Gunyarra'
11652
+ 'AU','4800','QLD','Hamilton Plains'
11653
+ 'AU','4800','QLD','Hideaway Bay'
11654
+ 'AU','4800','QLD','Kelsey Creek'
11655
+ 'AU','4800','QLD','Laguna Quays'
11656
+ 'AU','4800','QLD','Lake Proserpine'
11657
+ 'AU','4800','QLD','Lethebrook'
11658
+ 'AU','4800','QLD','Mount Julian'
11659
+ 'AU','4800','QLD','Mount Marlow'
11660
+ 'AU','4800','QLD','Mount Pluto'
11661
+ 'AU','4800','QLD','Myrtlevale'
11662
+ 'AU','4800','QLD','North Gregory'
11663
+ 'AU','4800','QLD','Palm Grove'
11664
+ 'AU','4800','QLD','Pauls Pocket'
11665
+ 'AU','4800','QLD','Preston'
11666
+ 'AU','4800','QLD','Proserpine'
11667
+ 'AU','4800','QLD','Riordanvale'
11668
+ 'AU','4800','QLD','Silver Creek'
11669
+ 'AU','4800','QLD','Strathdickie'
11670
+ 'AU','4800','QLD','Sugarloaf'
11671
+ 'AU','4800','QLD','Thoopara'
11672
+ 'AU','4800','QLD','Wilson Beach'
11673
+ 'AU','4801','QLD','Hayman Island'
11674
+ 'AU','4802','QLD','Airlie Beach'
11675
+ 'AU','4802','QLD','Cannonvale'
11676
+ 'AU','4802','QLD','Flametree'
11677
+ 'AU','4802','QLD','Jubilee Pocket'
11678
+ 'AU','4802','QLD','Mandalay'
11679
+ 'AU','4802','QLD','Mount Rooper'
11680
+ 'AU','4802','QLD','Shute Harbour'
11681
+ 'AU','4802','QLD','Whitsundays'
11682
+ 'AU','4802','QLD','Woodwark'
11683
+ 'AU','4803','QLD','Hamilton Island'
11684
+ 'AU','4804','QLD','Collinsville'
11685
+ 'AU','4804','QLD','Mount Coolon'
11686
+ 'AU','4804','QLD','Mount Wyatt'
11687
+ 'AU','4804','QLD','Newlands'
11688
+ 'AU','4804','QLD','Springlands'
11689
+ 'AU','4805','QLD','Binbee'
11690
+ 'AU','4805','QLD','Bogie'
11691
+ 'AU','4805','QLD','Bowen'
11692
+ 'AU','4805','QLD','Brisk Bay'
11693
+ 'AU','4805','QLD','Delta'
11694
+ 'AU','4805','QLD','Gumlu'
11695
+ 'AU','4805','QLD','Guthalungra'
11696
+ 'AU','4805','QLD','Merinda'
11697
+ 'AU','4805','QLD','Queens Beach'
11698
+ 'AU','4806','QLD','Carstairs'
11699
+ 'AU','4806','QLD','Fredericksfield'
11700
+ 'AU','4806','QLD','Home Hill'
11701
+ 'AU','4806','QLD','Inkerman'
11702
+ 'AU','4806','QLD','Kirknie'
11703
+ 'AU','4806','QLD','Osborne'
11704
+ 'AU','4806','QLD','Rangemore'
11705
+ 'AU','4806','QLD','Wangaratta'
11706
+ 'AU','4806','QLD','Wunjunga'
11707
+ 'AU','4807','QLD','Airdmillan'
11708
+ 'AU','4807','QLD','Airville'
11709
+ 'AU','4807','QLD','Alva'
11710
+ 'AU','4807','QLD','Ayr'
11711
+ 'AU','4807','QLD','Clare'
11712
+ 'AU','4807','QLD','Claredale'
11713
+ 'AU','4807','QLD','Dalbeg'
11714
+ 'AU','4807','QLD','Eight Mile Creek'
11715
+ 'AU','4807','QLD','Jarvisfield'
11716
+ 'AU','4807','QLD','Mcdesme'
11717
+ 'AU','4807','QLD','Millaroo'
11718
+ 'AU','4807','QLD','Mona Park'
11719
+ 'AU','4807','QLD','Mount Kelly'
11720
+ 'AU','4807','QLD','Mulgrave'
11721
+ 'AU','4807','QLD','Parkside'
11722
+ 'AU','4807','QLD','Rita Island'
11723
+ 'AU','4807','QLD','Swans Lagoon'
11724
+ 'AU','4808','QLD','Brandon'
11725
+ 'AU','4808','QLD','Colevale'
11726
+ 'AU','4809','QLD','Barratta'
11727
+ 'AU','4809','QLD','Cromarty'
11728
+ 'AU','4809','QLD','Giru'
11729
+ 'AU','4809','QLD','Horseshoe Lagoon'
11730
+ 'AU','4809','QLD','Jerona'
11731
+ 'AU','4809','QLD','Mount Surround'
11732
+ 'AU','4809','QLD','Shirbourne'
11733
+ 'AU','4809','QLD','Upper Haughton'
11734
+ 'AU','4810','QLD','Belgian Gardens'
11735
+ 'AU','4810','QLD','Cape Cleveland'
11736
+ 'AU','4810','QLD','Castle Hill'
11737
+ 'AU','4810','QLD','North Ward'
11738
+ 'AU','4810','QLD','Pallarenda'
11739
+ 'AU','4810','QLD','Railway Estate'
11740
+ 'AU','4810','QLD','Rowes Bay'
11741
+ 'AU','4810','QLD','Shelly Beach'
11742
+ 'AU','4810','QLD','South Townsville'
11743
+ 'AU','4810','QLD','Town Common'
11744
+ 'AU','4810','QLD','Townsville'
11745
+ 'AU','4810','QLD','Townsville City'
11746
+ 'AU','4810','QLD','Townsville Dc'
11747
+ 'AU','4810','QLD','Townsville Mc'
11748
+ 'AU','4810','QLD','West End'
11749
+ 'AU','4811','QLD','Cluden'
11750
+ 'AU','4811','QLD','Idalia'
11751
+ 'AU','4811','QLD','James Cook University'
11752
+ 'AU','4811','QLD','Mount Stuart'
11753
+ 'AU','4811','QLD','Oak Valley'
11754
+ 'AU','4811','QLD','Oonoonba'
11755
+ 'AU','4811','QLD','Roseneath'
11756
+ 'AU','4811','QLD','Stuart'
11757
+ 'AU','4811','QLD','Wulguru'
11758
+ 'AU','4812','QLD','Currajong'
11759
+ 'AU','4812','QLD','Gulliver'
11760
+ 'AU','4812','QLD','Hermit Park'
11761
+ 'AU','4812','QLD','Hyde Park'
11762
+ 'AU','4812','QLD','Hyde Park Castletown'
11763
+ 'AU','4812','QLD','Mundingburra'
11764
+ 'AU','4812','QLD','Mysterton'
11765
+ 'AU','4812','QLD','Pimlico'
11766
+ 'AU','4812','QLD','Rosslea'
11767
+ 'AU','4813','QLD','Townsville Milpo'
11768
+ 'AU','4814','QLD','Aitkenvale'
11769
+ 'AU','4814','QLD','Aitkenvale Bc'
11770
+ 'AU','4814','QLD','Annandale'
11771
+ 'AU','4814','QLD','Cranbrook'
11772
+ 'AU','4814','QLD','Douglas'
11773
+ 'AU','4814','QLD','Garbutt'
11774
+ 'AU','4814','QLD','Garbutt Bc'
11775
+ 'AU','4814','QLD','Garbutt East'
11776
+ 'AU','4814','QLD','Heatley'
11777
+ 'AU','4814','QLD','Mount Louisa'
11778
+ 'AU','4814','QLD','Murray'
11779
+ 'AU','4814','QLD','Thuringowa Dc'
11780
+ 'AU','4814','QLD','Vincent'
11781
+ 'AU','4815','QLD','Condon'
11782
+ 'AU','4815','QLD','Granite Vale'
11783
+ 'AU','4815','QLD','Gumlow'
11784
+ 'AU','4815','QLD','Kelso'
11785
+ 'AU','4815','QLD','Pinnacles'
11786
+ 'AU','4815','QLD','Rasmussen'
11787
+ 'AU','4816','QLD','Alligator Creek'
11788
+ 'AU','4816','QLD','Balgal Beach'
11789
+ 'AU','4816','QLD','Barringha'
11790
+ 'AU','4816','QLD','Brookhill'
11791
+ 'AU','4816','QLD','Buchanan'
11792
+ 'AU','4816','QLD','Calcium'
11793
+ 'AU','4816','QLD','Carruchan'
11794
+ 'AU','4816','QLD','Clemant'
11795
+ 'AU','4816','QLD','Crimea'
11796
+ 'AU','4816','QLD','Crystal Creek'
11797
+ 'AU','4816','QLD','Cungulla'
11798
+ 'AU','4816','QLD','Ellerbeck'
11799
+ 'AU','4816','QLD','Greenvale'
11800
+ 'AU','4816','QLD','Hidden Valley'
11801
+ 'AU','4816','QLD','Homestead'
11802
+ 'AU','4816','QLD','Julago'
11803
+ 'AU','4816','QLD','Kennedy'
11804
+ 'AU','4816','QLD','Macrossan'
11805
+ 'AU','4816','QLD','Majors Creek'
11806
+ 'AU','4816','QLD','Malpas\-Trenton'
11807
+ 'AU','4816','QLD','Mingela'
11808
+ 'AU','4816','QLD','Mount Elliot'
11809
+ 'AU','4816','QLD','Mutarnee'
11810
+ 'AU','4816','QLD','Nelia'
11811
+ 'AU','4816','QLD','Nome'
11812
+ 'AU','4816','QLD','Palm Island'
11813
+ 'AU','4816','QLD','Paluma'
11814
+ 'AU','4816','QLD','Pentland'
11815
+ 'AU','4816','QLD','Prairie'
11816
+ 'AU','4816','QLD','Ravenswood'
11817
+ 'AU','4816','QLD','Reid River'
11818
+ 'AU','4816','QLD','Rollingstone'
11819
+ 'AU','4816','QLD','Ross River'
11820
+ 'AU','4816','QLD','Savannah'
11821
+ 'AU','4816','QLD','Sellheim'
11822
+ 'AU','4816','QLD','The Cape'
11823
+ 'AU','4816','QLD','Toomulla'
11824
+ 'AU','4816','QLD','Toonpan'
11825
+ 'AU','4816','QLD','Torrens Creek'
11826
+ 'AU','4816','QLD','Woodstock'
11827
+ 'AU','4817','QLD','Alice River'
11828
+ 'AU','4817','QLD','Bohle Plains'
11829
+ 'AU','4817','QLD','Hervey Range'
11830
+ 'AU','4817','QLD','Kirwan'
11831
+ 'AU','4817','QLD','Rangewood'
11832
+ 'AU','4817','QLD','Thuringowa Central'
11833
+ 'AU','4817','QLD','Thuringowa Central Bc'
11834
+ 'AU','4818','QLD','Beach Holm'
11835
+ 'AU','4818','QLD','Black River'
11836
+ 'AU','4818','QLD','Blue Hills'
11837
+ 'AU','4818','QLD','Bluewater'
11838
+ 'AU','4818','QLD','Bluewater Park'
11839
+ 'AU','4818','QLD','Bohle'
11840
+ 'AU','4818','QLD','Burdell'
11841
+ 'AU','4818','QLD','Bushland Beach'
11842
+ 'AU','4818','QLD','Deeragun'
11843
+ 'AU','4818','QLD','Jensen'
11844
+ 'AU','4818','QLD','Lynam'
11845
+ 'AU','4818','QLD','Mount Low'
11846
+ 'AU','4818','QLD','Mount St John'
11847
+ 'AU','4818','QLD','Saunders Beach'
11848
+ 'AU','4818','QLD','Shaw'
11849
+ 'AU','4818','QLD','Toolakea'
11850
+ 'AU','4818','QLD','Yabulu'
11851
+ 'AU','4819','QLD','Arcadia'
11852
+ 'AU','4819','QLD','Florence Bay'
11853
+ 'AU','4819','QLD','Horseshoe Bay'
11854
+ 'AU','4819','QLD','Magnetic Island'
11855
+ 'AU','4819','QLD','Nelly Bay'
11856
+ 'AU','4819','QLD','Picnic Bay'
11857
+ 'AU','4819','QLD','West Point'
11858
+ 'AU','4820','QLD','Alabama Hill'
11859
+ 'AU','4820','QLD','Balfes Creek'
11860
+ 'AU','4820','QLD','Basalt'
11861
+ 'AU','4820','QLD','Black Jack'
11862
+ 'AU','4820','QLD','Breddan'
11863
+ 'AU','4820','QLD','Broughton'
11864
+ 'AU','4820','QLD','Campaspe'
11865
+ 'AU','4820','QLD','Charters Towers'
11866
+ 'AU','4820','QLD','Columbia'
11867
+ 'AU','4820','QLD','Dotswood'
11868
+ 'AU','4820','QLD','Grand Secret'
11869
+ 'AU','4820','QLD','Lissner'
11870
+ 'AU','4820','QLD','Llanarth'
11871
+ 'AU','4820','QLD','Millchester'
11872
+ 'AU','4820','QLD','Mosman Park'
11873
+ 'AU','4820','QLD','Queenton'
11874
+ 'AU','4820','QLD','Richmond Hill'
11875
+ 'AU','4820','QLD','Seventy Mile'
11876
+ 'AU','4820','QLD','Southern Cross'
11877
+ 'AU','4820','QLD','Toll'
11878
+ 'AU','4820','QLD','Towers Hill'
11879
+ 'AU','4821','QLD','Dutton River'
11880
+ 'AU','4821','QLD','Hughenden'
11881
+ 'AU','4821','QLD','Porcupine'
11882
+ 'AU','4821','QLD','Stamford'
11883
+ 'AU','4821','QLD','Tangorin'
11884
+ 'AU','4822','QLD','Albion'
11885
+ 'AU','4822','QLD','Bellfield'
11886
+ 'AU','4822','QLD','Burleigh'
11887
+ 'AU','4822','QLD','Cambridge'
11888
+ 'AU','4822','QLD','Maxwelton'
11889
+ 'AU','4822','QLD','Nonda'
11890
+ 'AU','4822','QLD','Richmond'
11891
+ 'AU','4822','QLD','Saxby'
11892
+ 'AU','4822','QLD','Victoria Vale'
11893
+ 'AU','4822','QLD','Woolgar'
11894
+ 'AU','4823','QLD','Carpentaria'
11895
+ 'AU','4823','QLD','Julia Creek'
11896
+ 'AU','4823','QLD','Kynuna'
11897
+ 'AU','4823','QLD','Mckinlay'
11898
+ 'AU','4823','QLD','Stokes'
11899
+ 'AU','4823','QLD','Taldora'
11900
+ 'AU','4823','QLD','Warburton'
11901
+ 'AU','4824','QLD','Cloncurry'
11902
+ 'AU','4824','QLD','Four Ways'
11903
+ 'AU','4824','QLD','Gidya'
11904
+ 'AU','4824','QLD','Kuridala'
11905
+ 'AU','4824','QLD','Oorindi'
11906
+ 'AU','4824','QLD','Three Rivers'
11907
+ 'AU','4825','QLD','Alexandria'
11908
+ 'AU','4825','NT','Alpurrurulam'
11909
+ 'AU','4825','QLD','Barkly'
11910
+ 'AU','4825','QLD','Breakaway'
11911
+ 'AU','4825','QLD','Buckingham'
11912
+ 'AU','4825','QLD','Carrandotta'
11913
+ 'AU','4825','QLD','Dajarra'
11914
+ 'AU','4825','QLD','Duchess'
11915
+ 'AU','4825','QLD','Fielding'
11916
+ 'AU','4825','QLD','Fisher'
11917
+ 'AU','4825','QLD','Georgina'
11918
+ 'AU','4825','QLD','Gunpowder'
11919
+ 'AU','4825','QLD','Happy Valley'
11920
+ 'AU','4825','QLD','Healy'
11921
+ 'AU','4825','QLD','Kalkadoon'
11922
+ 'AU','4825','QLD','Lanskey'
11923
+ 'AU','4825','QLD','Lawn Hill'
11924
+ 'AU','4825','QLD','Menzies'
11925
+ 'AU','4825','QLD','Mica Creek'
11926
+ 'AU','4825','QLD','Miles End'
11927
+ 'AU','4825','QLD','Mornington'
11928
+ 'AU','4825','QLD','Mount Isa'
11929
+ 'AU','4825','QLD','Mount Isa Dc'
11930
+ 'AU','4825','QLD','Mount Isa East'
11931
+ 'AU','4825','QLD','Parkside'
11932
+ 'AU','4825','QLD','Pioneer'
11933
+ 'AU','4825','QLD','Piturie'
11934
+ 'AU','4825','NT','Ranken'
11935
+ 'AU','4825','QLD','Ryan'
11936
+ 'AU','4825','QLD','Soldiers Hill'
11937
+ 'AU','4825','QLD','Spreadborough'
11938
+ 'AU','4825','QLD','Sunset'
11939
+ 'AU','4825','QLD','The Gap'
11940
+ 'AU','4825','QLD','The Monument'
11941
+ 'AU','4825','QLD','Townview'
11942
+ 'AU','4825','QLD','Waverley'
11943
+ 'AU','4825','QLD','Winston'
11944
+ 'AU','4828','QLD','Camooweal'
11945
+ 'AU','4829','QLD','Amaroo'
11946
+ 'AU','4829','QLD','Bedourie'
11947
+ 'AU','4829','QLD','Boulia'
11948
+ 'AU','4829','QLD','Min Min'
11949
+ 'AU','4829','QLD','Sturt'
11950
+ 'AU','4829','QLD','Toko'
11951
+ 'AU','4829','QLD','Warenda'
11952
+ 'AU','4829','QLD','Wills'
11953
+ 'AU','4830','QLD','Burketown'
11954
+ 'AU','4830','QLD','Doomadgee'
11955
+ 'AU','4830','QLD','Gregory'
11956
+ 'AU','4830','QLD','Gregory Downs'
11957
+ 'AU','4830','QLD','Nicholson'
11958
+ 'AU','4849','QLD','Cardwell'
11959
+ 'AU','4849','QLD','Damper Creek'
11960
+ 'AU','4849','QLD','Hinchinbrook'
11961
+ 'AU','4849','QLD','Lumholtz'
11962
+ 'AU','4849','QLD','Rungoo'
11963
+ 'AU','4850','QLD','Abergowrie'
11964
+ 'AU','4850','QLD','Allingham'
11965
+ 'AU','4850','QLD','Bambaroo'
11966
+ 'AU','4850','QLD','Bemerside'
11967
+ 'AU','4850','QLD','Blackrock'
11968
+ 'AU','4850','QLD','Braemeadows'
11969
+ 'AU','4850','QLD','Coolbie'
11970
+ 'AU','4850','QLD','Cordelia'
11971
+ 'AU','4850','QLD','Dalrymple Creek'
11972
+ 'AU','4850','QLD','Foresthome'
11973
+ 'AU','4850','QLD','Forrest Beach'
11974
+ 'AU','4850','QLD','Gairloch'
11975
+ 'AU','4850','QLD','Garrawalt'
11976
+ 'AU','4850','QLD','Halifax'
11977
+ 'AU','4850','QLD','Hawkins Creek'
11978
+ 'AU','4850','QLD','Helens Hill'
11979
+ 'AU','4850','QLD','Ingham'
11980
+ 'AU','4850','QLD','Lannercost'
11981
+ 'AU','4850','QLD','Long Pocket'
11982
+ 'AU','4850','QLD','Lucinda'
11983
+ 'AU','4850','QLD','Macknade'
11984
+ 'AU','4850','QLD','Mount Fox'
11985
+ 'AU','4850','QLD','Orient'
11986
+ 'AU','4850','QLD','Peacock Siding'
11987
+ 'AU','4850','QLD','Taylors Beach'
11988
+ 'AU','4850','QLD','Toobanna'
11989
+ 'AU','4850','QLD','Trebonne'
11990
+ 'AU','4850','QLD','Upper Stone'
11991
+ 'AU','4850','QLD','Valley Of Lagoons'
11992
+ 'AU','4850','QLD','Victoria Estate'
11993
+ 'AU','4850','QLD','Victoria Plantation'
11994
+ 'AU','4850','QLD','Wallaman'
11995
+ 'AU','4850','QLD','Wharps'
11996
+ 'AU','4850','QLD','Yuruga'
11997
+ 'AU','4852','QLD','Bingil Bay'
11998
+ 'AU','4852','QLD','Carmoo'
11999
+ 'AU','4852','QLD','Djiru'
12000
+ 'AU','4852','QLD','Dunk'
12001
+ 'AU','4852','QLD','Garners Beach'
12002
+ 'AU','4852','QLD','Midgeree Bar'
12003
+ 'AU','4852','QLD','Mission Beach'
12004
+ 'AU','4852','QLD','South Mission Beach'
12005
+ 'AU','4852','QLD','Tam O''Shanter'
12006
+ 'AU','4852','QLD','Wongaling Beach'
12007
+ 'AU','4854','QLD','Bilyana'
12008
+ 'AU','4854','QLD','Birkalla'
12009
+ 'AU','4854','QLD','Bulgun'
12010
+ 'AU','4854','QLD','Cardstone'
12011
+ 'AU','4854','QLD','Dingo Pocket'
12012
+ 'AU','4854','QLD','Djarawong'
12013
+ 'AU','4854','QLD','East Feluga'
12014
+ 'AU','4854','QLD','Euramo'
12015
+ 'AU','4854','QLD','Feluga'
12016
+ 'AU','4854','QLD','Hull Heads'
12017
+ 'AU','4854','QLD','Jarra Creek'
12018
+ 'AU','4854','QLD','Kooroomool'
12019
+ 'AU','4854','QLD','Lower Tully'
12020
+ 'AU','4854','QLD','Merryburn'
12021
+ 'AU','4854','QLD','Midgenoo'
12022
+ 'AU','4854','QLD','Mount Mackay'
12023
+ 'AU','4854','QLD','Munro Plains'
12024
+ 'AU','4854','QLD','Murray Upper'
12025
+ 'AU','4854','QLD','Murrigal'
12026
+ 'AU','4854','QLD','Rockingham'
12027
+ 'AU','4854','QLD','Silky Oak'
12028
+ 'AU','4854','QLD','Tully'
12029
+ 'AU','4854','QLD','Tully Heads'
12030
+ 'AU','4854','QLD','Walter Hill'
12031
+ 'AU','4854','QLD','Warrami'
12032
+ 'AU','4855','QLD','Daveson'
12033
+ 'AU','4855','QLD','El Arish'
12034
+ 'AU','4855','QLD','Friday Pocket'
12035
+ 'AU','4855','QLD','Granadilla'
12036
+ 'AU','4855','QLD','Jaffa'
12037
+ 'AU','4855','QLD','Maadi'
12038
+ 'AU','4855','QLD','Maria Creeks'
12039
+ 'AU','4855','QLD','Shell Pocket'
12040
+ 'AU','4856','QLD','Goolboo'
12041
+ 'AU','4856','QLD','Japoonvale'
12042
+ 'AU','4856','QLD','Mccutcheon'
12043
+ 'AU','4856','QLD','No 4 Branch'
12044
+ 'AU','4856','QLD','No 5 Branch'
12045
+ 'AU','4856','QLD','Silkwood'
12046
+ 'AU','4856','QLD','Walter Lever Estate'
12047
+ 'AU','4857','QLD','Silkwood East'
12048
+ 'AU','4858','QLD','Comoon Loop'
12049
+ 'AU','4858','QLD','Etty Bay'
12050
+ 'AU','4858','QLD','Martyville'
12051
+ 'AU','4858','QLD','Mourilyan'
12052
+ 'AU','4858','QLD','Mourilyan Harbour'
12053
+ 'AU','4858','QLD','New Harbourline'
12054
+ 'AU','4859','QLD','Ngatjan'
12055
+ 'AU','4859','QLD','No 6 Branch'
12056
+ 'AU','4859','QLD','South Johnstone'
12057
+ 'AU','4860','QLD','Bamboo Creek'
12058
+ 'AU','4860','QLD','Belvedere'
12059
+ 'AU','4860','QLD','Coconuts'
12060
+ 'AU','4860','QLD','Cooroo Lands'
12061
+ 'AU','4860','QLD','Coorumba'
12062
+ 'AU','4860','QLD','Coquette Point'
12063
+ 'AU','4860','QLD','Cullinane'
12064
+ 'AU','4860','QLD','Daradgee'
12065
+ 'AU','4860','QLD','East Innisfail'
12066
+ 'AU','4860','QLD','East Palmerston'
12067
+ 'AU','4860','QLD','Eaton'
12068
+ 'AU','4860','QLD','Eubenangee'
12069
+ 'AU','4860','QLD','Fitzgerald Creek'
12070
+ 'AU','4860','QLD','Flying Fish Point'
12071
+ 'AU','4860','QLD','Garradunga'
12072
+ 'AU','4860','QLD','Goondi'
12073
+ 'AU','4860','QLD','Goondi Bend'
12074
+ 'AU','4860','QLD','Goondi Hill'
12075
+ 'AU','4860','QLD','Hudson'
12076
+ 'AU','4860','QLD','Innisfail'
12077
+ 'AU','4860','QLD','Innisfail Estate'
12078
+ 'AU','4860','QLD','Jubilee Heights'
12079
+ 'AU','4860','QLD','Mighell'
12080
+ 'AU','4860','QLD','Mundoo'
12081
+ 'AU','4860','QLD','Nerada'
12082
+ 'AU','4860','QLD','Njatjan'
12083
+ 'AU','4860','QLD','O''Briens Hill'
12084
+ 'AU','4860','QLD','Palmerston'
12085
+ 'AU','4860','QLD','Pin Gin Hill'
12086
+ 'AU','4860','QLD','South Innisfail'
12087
+ 'AU','4860','QLD','Stoters Hill'
12088
+ 'AU','4860','QLD','Sundown'
12089
+ 'AU','4860','QLD','Upper Daradgee'
12090
+ 'AU','4860','QLD','Vasa Views'
12091
+ 'AU','4860','QLD','Wanjuru'
12092
+ 'AU','4860','QLD','Webb'
12093
+ 'AU','4860','QLD','Wooroonooran'
12094
+ 'AU','4861','QLD','Babinda'
12095
+ 'AU','4861','QLD','Bartle Frere'
12096
+ 'AU','4861','QLD','East Russell'
12097
+ 'AU','4865','QLD','Goldsborough'
12098
+ 'AU','4865','QLD','Gordonvale'
12099
+ 'AU','4865','QLD','Green Hill'
12100
+ 'AU','4865','QLD','Kamma'
12101
+ 'AU','4865','QLD','Little Mulgrave'
12102
+ 'AU','4865','QLD','Packers Camp'
12103
+ 'AU','4865','QLD','Redbank'
12104
+ 'AU','4868','QLD','Bayview Heights'
12105
+ 'AU','4868','QLD','Mount Sheridan'
12106
+ 'AU','4868','QLD','White Rock'
12107
+ 'AU','4868','QLD','Woree'
12108
+ 'AU','4869','QLD','Bentley Park'
12109
+ 'AU','4869','QLD','Edmonton'
12110
+ 'AU','4869','QLD','Mount Peter'
12111
+ 'AU','4869','QLD','Wrights Creek'
12112
+ 'AU','4870','QLD','Aeroglen'
12113
+ 'AU','4870','QLD','Barron Gorge'
12114
+ 'AU','4870','QLD','Brinsmead'
12115
+ 'AU','4870','QLD','Bungalow'
12116
+ 'AU','4870','QLD','Cairns'
12117
+ 'AU','4870','QLD','Cairns Central'
12118
+ 'AU','4870','QLD','Cairns City'
12119
+ 'AU','4870','QLD','Cairns Dc'
12120
+ 'AU','4870','QLD','Cairns Mc'
12121
+ 'AU','4870','QLD','Cairns North'
12122
+ 'AU','4870','QLD','Cairns Orchid Plaza'
12123
+ 'AU','4870','QLD','Earlville'
12124
+ 'AU','4870','QLD','Earlville Bc'
12125
+ 'AU','4870','QLD','Edge Hill'
12126
+ 'AU','4870','QLD','Freshwater'
12127
+ 'AU','4870','QLD','Kamerunga'
12128
+ 'AU','4870','QLD','Kanimbla'
12129
+ 'AU','4870','QLD','Lamb Range'
12130
+ 'AU','4870','QLD','Manoora'
12131
+ 'AU','4870','QLD','Manunda'
12132
+ 'AU','4870','QLD','Martynvale'
12133
+ 'AU','4870','QLD','Mooroobool'
12134
+ 'AU','4870','QLD','North Cairns'
12135
+ 'AU','4870','QLD','Parramatta Park'
12136
+ 'AU','4870','QLD','Portsmith'
12137
+ 'AU','4870','QLD','Redlynch'
12138
+ 'AU','4870','QLD','Stratford'
12139
+ 'AU','4870','QLD','Westcourt'
12140
+ 'AU','4870','QLD','Whitfield'
12141
+ 'AU','4871','QLD','Abingdon Downs'
12142
+ 'AU','4871','QLD','Almaden'
12143
+ 'AU','4871','QLD','Aloomba'
12144
+ 'AU','4871','QLD','Amber'
12145
+ 'AU','4871','QLD','Arbouin'
12146
+ 'AU','4871','QLD','Archer River'
12147
+ 'AU','4871','QLD','Aurukun'
12148
+ 'AU','4871','QLD','Basilisk'
12149
+ 'AU','4871','QLD','Bellenden Ker'
12150
+ 'AU','4871','QLD','Bellevue'
12151
+ 'AU','4871','QLD','Blackbull'
12152
+ 'AU','4871','QLD','Bolwarra'
12153
+ 'AU','4871','QLD','Bombeeta'
12154
+ 'AU','4871','QLD','Boogan'
12155
+ 'AU','4871','QLD','Bramston Beach'
12156
+ 'AU','4871','QLD','Bulleringa'
12157
+ 'AU','4871','QLD','Camp Creek'
12158
+ 'AU','4871','QLD','Chillagoe'
12159
+ 'AU','4871','QLD','Claraville'
12160
+ 'AU','4871','QLD','Coen'
12161
+ 'AU','4871','QLD','Conjuboy'
12162
+ 'AU','4871','QLD','Coralie'
12163
+ 'AU','4871','QLD','Cowley'
12164
+ 'AU','4871','QLD','Cowley Beach'
12165
+ 'AU','4871','QLD','Cowley Creek'
12166
+ 'AU','4871','QLD','Croydon'
12167
+ 'AU','4871','QLD','Crystalbrook'
12168
+ 'AU','4871','QLD','Currajah'
12169
+ 'AU','4871','QLD','Deeral'
12170
+ 'AU','4871','QLD','Desailly'
12171
+ 'AU','4871','QLD','Dixie'
12172
+ 'AU','4871','QLD','East Creek'
12173
+ 'AU','4871','QLD','East Trinity'
12174
+ 'AU','4871','QLD','Edward River'
12175
+ 'AU','4871','QLD','Einasleigh'
12176
+ 'AU','4871','QLD','Esmeralda'
12177
+ 'AU','4871','QLD','Fishery Falls'
12178
+ 'AU','4871','QLD','Fitzroy Island'
12179
+ 'AU','4871','QLD','Forsayth'
12180
+ 'AU','4871','QLD','Fossilbrook'
12181
+ 'AU','4871','QLD','Gamboola'
12182
+ 'AU','4871','QLD','Georgetown'
12183
+ 'AU','4871','QLD','Germantown'
12184
+ 'AU','4871','QLD','Gilbert River'
12185
+ 'AU','4871','QLD','Glen Boughton'
12186
+ 'AU','4871','QLD','Green Island'
12187
+ 'AU','4871','QLD','Groganville'
12188
+ 'AU','4871','QLD','Gununa'
12189
+ 'AU','4871','QLD','Highbury'
12190
+ 'AU','4871','QLD','Holroyd River'
12191
+ 'AU','4871','QLD','Hurricane'
12192
+ 'AU','4871','QLD','Julatten'
12193
+ 'AU','4871','QLD','Karron'
12194
+ 'AU','4871','QLD','Kowanyama'
12195
+ 'AU','4871','QLD','Kurrimine Beach'
12196
+ 'AU','4871','QLD','Lakefield'
12197
+ 'AU','4871','QLD','Lakeland'
12198
+ 'AU','4871','QLD','Lakeland Downs'
12199
+ 'AU','4871','QLD','Laura'
12200
+ 'AU','4871','QLD','Lizard'
12201
+ 'AU','4871','QLD','Lockhart'
12202
+ 'AU','4871','QLD','Lower Cowley'
12203
+ 'AU','4871','QLD','Lyndhurst'
12204
+ 'AU','4871','QLD','Lyndside'
12205
+ 'AU','4871','QLD','Macalister Range'
12206
+ 'AU','4871','QLD','Maramie'
12207
+ 'AU','4871','QLD','Mena Creek'
12208
+ 'AU','4871','QLD','Miriwinni'
12209
+ 'AU','4871','QLD','Moresby'
12210
+ 'AU','4871','QLD','Mornington Island'
12211
+ 'AU','4871','QLD','Mount Carbine'
12212
+ 'AU','4871','QLD','Mount Molloy'
12213
+ 'AU','4871','QLD','Mount Mulgrave'
12214
+ 'AU','4871','QLD','Mount Mulligan'
12215
+ 'AU','4871','QLD','Mount Surprise'
12216
+ 'AU','4871','QLD','Northhead'
12217
+ 'AU','4871','QLD','Nychum'
12218
+ 'AU','4871','QLD','Palmer'
12219
+ 'AU','4871','QLD','Petford'
12220
+ 'AU','4871','QLD','Pormpuraaw'
12221
+ 'AU','4871','QLD','Portland Roads'
12222
+ 'AU','4871','QLD','Ravensworth'
12223
+ 'AU','4871','QLD','Red River'
12224
+ 'AU','4871','QLD','Rookwood'
12225
+ 'AU','4871','QLD','Sandy Pocket'
12226
+ 'AU','4871','QLD','South Wellesley Islands'
12227
+ 'AU','4871','QLD','Southedge'
12228
+ 'AU','4871','QLD','Springfield'
12229
+ 'AU','4871','QLD','Staaten'
12230
+ 'AU','4871','QLD','Stockton'
12231
+ 'AU','4871','QLD','Strathmore'
12232
+ 'AU','4871','QLD','Talaroo'
12233
+ 'AU','4871','QLD','Thornborough'
12234
+ 'AU','4871','QLD','Utchee Creek'
12235
+ 'AU','4871','QLD','Wangan'
12236
+ 'AU','4871','QLD','Warrubullen'
12237
+ 'AU','4871','QLD','Waugh Pocket'
12238
+ 'AU','4871','QLD','Wellesley Islands'
12239
+ 'AU','4871','QLD','West Wellesley Islands'
12240
+ 'AU','4871','QLD','Woopen Creek'
12241
+ 'AU','4871','QLD','Wrotham'
12242
+ 'AU','4871','QLD','Yagoonya'
12243
+ 'AU','4871','QLD','Yarrabah'
12244
+ 'AU','4871','QLD','Yarraden'
12245
+ 'AU','4872','QLD','Barrine'
12246
+ 'AU','4872','QLD','Barwidgi'
12247
+ 'AU','4872','QLD','Cairns Mc'
12248
+ 'AU','4872','QLD','Danbulla'
12249
+ 'AU','4872','QLD','Dimbulah'
12250
+ 'AU','4872','QLD','Forty Mile'
12251
+ 'AU','4872','QLD','Glen Ruth'
12252
+ 'AU','4872','QLD','Gunnawarra'
12253
+ 'AU','4872','QLD','Innot Hot Springs'
12254
+ 'AU','4872','QLD','Kairi'
12255
+ 'AU','4872','QLD','Kirrama'
12256
+ 'AU','4872','QLD','Koombooloomba'
12257
+ 'AU','4872','QLD','Kowrowa'
12258
+ 'AU','4872','QLD','Lake Tinaroo'
12259
+ 'AU','4872','QLD','Minnamoolka'
12260
+ 'AU','4872','QLD','Mount Garnet'
12261
+ 'AU','4872','QLD','Munderra'
12262
+ 'AU','4872','QLD','Mutchilba'
12263
+ 'AU','4872','QLD','Silver Valley'
12264
+ 'AU','4872','QLD','Tinaroo'
12265
+ 'AU','4872','QLD','Wairuna'
12266
+ 'AU','4872','QLD','Walkamin'
12267
+ 'AU','4873','QLD','Bamboo'
12268
+ 'AU','4873','QLD','Bonnie Doon'
12269
+ 'AU','4873','QLD','Cape Tribulation'
12270
+ 'AU','4873','QLD','Cassowary'
12271
+ 'AU','4873','QLD','Cooya Beach'
12272
+ 'AU','4873','QLD','Cow Bay'
12273
+ 'AU','4873','QLD','Dagmar'
12274
+ 'AU','4873','QLD','Daintree'
12275
+ 'AU','4873','QLD','Dedin'
12276
+ 'AU','4873','QLD','Diwan'
12277
+ 'AU','4873','QLD','Finlay Vale'
12278
+ 'AU','4873','QLD','Forest Creek'
12279
+ 'AU','4873','QLD','Kimberley'
12280
+ 'AU','4873','QLD','Low Isles'
12281
+ 'AU','4873','QLD','Lower Daintree'
12282
+ 'AU','4873','QLD','Miallo'
12283
+ 'AU','4873','QLD','Mossman'
12284
+ 'AU','4873','QLD','Mossman Gorge'
12285
+ 'AU','4873','QLD','Newell'
12286
+ 'AU','4873','QLD','Noah'
12287
+ 'AU','4873','QLD','Rocky Point'
12288
+ 'AU','4873','QLD','Shannonvale'
12289
+ 'AU','4873','QLD','Spurgeon'
12290
+ 'AU','4873','QLD','Stewart Creek Valley'
12291
+ 'AU','4873','QLD','Syndicate'
12292
+ 'AU','4873','QLD','Thornton Beach'
12293
+ 'AU','4873','QLD','Upper Daintree'
12294
+ 'AU','4873','QLD','Whyanbeel'
12295
+ 'AU','4873','QLD','Wonga'
12296
+ 'AU','4874','QLD','Evans Landing'
12297
+ 'AU','4874','QLD','Jardine River'
12298
+ 'AU','4874','QLD','Mapoon'
12299
+ 'AU','4874','QLD','Mission River'
12300
+ 'AU','4874','QLD','Nanum'
12301
+ 'AU','4874','QLD','Napranum'
12302
+ 'AU','4874','QLD','Rocky Point'
12303
+ 'AU','4874','QLD','Shelburne'
12304
+ 'AU','4874','QLD','Trunding'
12305
+ 'AU','4874','QLD','Weipa'
12306
+ 'AU','4874','QLD','Weipa Airport'
12307
+ 'AU','4874','QLD','Wenlock'
12308
+ 'AU','4875','QLD','Badu Island'
12309
+ 'AU','4875','QLD','Banks Island'
12310
+ 'AU','4875','QLD','Boigu Island'
12311
+ 'AU','4875','QLD','Coconut Island'
12312
+ 'AU','4875','QLD','Darnley Island'
12313
+ 'AU','4875','QLD','Dauan Island'
12314
+ 'AU','4875','QLD','Erub'
12315
+ 'AU','4875','QLD','Horn Island'
12316
+ 'AU','4875','QLD','Jervis Island'
12317
+ 'AU','4875','QLD','Kubin Village'
12318
+ 'AU','4875','QLD','Mabuiag Island'
12319
+ 'AU','4875','QLD','Moa Island'
12320
+ 'AU','4875','QLD','Mulgrave Island'
12321
+ 'AU','4875','QLD','Murray Island'
12322
+ 'AU','4875','QLD','Saibai Island'
12323
+ 'AU','4875','QLD','Stephens Island'
12324
+ 'AU','4875','QLD','Talbot Island'
12325
+ 'AU','4875','QLD','Thursday Island'
12326
+ 'AU','4875','QLD','Warraber Island'
12327
+ 'AU','4875','QLD','Yam Island'
12328
+ 'AU','4875','QLD','Yorke Island'
12329
+ 'AU','4876','QLD','Bamaga'
12330
+ 'AU','4876','QLD','Injinoo'
12331
+ 'AU','4876','QLD','New Mapoon'
12332
+ 'AU','4876','QLD','Seisia'
12333
+ 'AU','4876','QLD','Umagico'
12334
+ 'AU','4877','QLD','Craiglie'
12335
+ 'AU','4877','QLD','Killaloe'
12336
+ 'AU','4877','QLD','Mowbray'
12337
+ 'AU','4877','QLD','Oak Beach'
12338
+ 'AU','4877','QLD','Port Douglas'
12339
+ 'AU','4877','QLD','Wangetti'
12340
+ 'AU','4878','QLD','Barron'
12341
+ 'AU','4878','QLD','Caravonica'
12342
+ 'AU','4878','QLD','Holloways Beach'
12343
+ 'AU','4878','QLD','Machans Beach'
12344
+ 'AU','4878','QLD','Smithfield'
12345
+ 'AU','4878','QLD','Yorkeys Knob'
12346
+ 'AU','4879','QLD','Clifton Beach'
12347
+ 'AU','4879','QLD','Ellis Beach'
12348
+ 'AU','4879','QLD','Kewarra Beach'
12349
+ 'AU','4879','QLD','Palm Cove'
12350
+ 'AU','4879','QLD','Trinity Beach'
12351
+ 'AU','4879','QLD','Trinity Park'
12352
+ 'AU','4880','QLD','Arriga'
12353
+ 'AU','4880','QLD','Biboohra'
12354
+ 'AU','4880','QLD','Chewko'
12355
+ 'AU','4880','QLD','Glen Russell'
12356
+ 'AU','4880','QLD','Mareeba'
12357
+ 'AU','4880','QLD','Paddys Green'
12358
+ 'AU','4881','QLD','Koah'
12359
+ 'AU','4881','QLD','Kuranda'
12360
+ 'AU','4881','QLD','Mona Mona'
12361
+ 'AU','4881','QLD','Speewah'
12362
+ 'AU','4882','QLD','Tolga'
12363
+ 'AU','4883','QLD','Atherton'
12364
+ 'AU','4883','QLD','Carrington'
12365
+ 'AU','4883','QLD','East Barron'
12366
+ 'AU','4883','QLD','Upper Barron'
12367
+ 'AU','4883','QLD','Wongabel'
12368
+ 'AU','4884','QLD','Gadgarra'
12369
+ 'AU','4884','QLD','Lake Barrine'
12370
+ 'AU','4884','QLD','Lake Eacham'
12371
+ 'AU','4884','QLD','Yungaburra'
12372
+ 'AU','4885','QLD','Butchers Creek'
12373
+ 'AU','4885','QLD','Glen Allyn'
12374
+ 'AU','4885','QLD','Jaggan'
12375
+ 'AU','4885','QLD','Kureen'
12376
+ 'AU','4885','QLD','Malanda'
12377
+ 'AU','4885','QLD','North Johnstone'
12378
+ 'AU','4885','QLD','Peeramon'
12379
+ 'AU','4885','QLD','Tarzali'
12380
+ 'AU','4885','QLD','Topaz'
12381
+ 'AU','4886','QLD','Beatrice'
12382
+ 'AU','4886','QLD','Ellinjaa'
12383
+ 'AU','4886','QLD','Maalan'
12384
+ 'AU','4886','QLD','Middlebrook'
12385
+ 'AU','4886','QLD','Millaa Millaa'
12386
+ 'AU','4886','QLD','Minbun'
12387
+ 'AU','4886','QLD','Moregatta'
12388
+ 'AU','4886','QLD','Mungalli'
12389
+ 'AU','4887','QLD','Herberton'
12390
+ 'AU','4887','QLD','Irvinebank'
12391
+ 'AU','4887','QLD','Kalunga'
12392
+ 'AU','4887','QLD','Moomin'
12393
+ 'AU','4887','QLD','Watsonville'
12394
+ 'AU','4887','QLD','Wondecla'
12395
+ 'AU','4888','QLD','Evelyn'
12396
+ 'AU','4888','QLD','Kaban'
12397
+ 'AU','4888','QLD','Millstream'
12398
+ 'AU','4888','QLD','Ravenshoe'
12399
+ 'AU','4888','QLD','Tumoulin'
12400
+ 'AU','4890','QLD','Howitt'
12401
+ 'AU','4890','QLD','Norman'
12402
+ 'AU','4890','QLD','Normanton'
12403
+ 'AU','4891','QLD','Karumba'
12404
+ 'AU','4895','QLD','Ayton'
12405
+ 'AU','4895','QLD','Bloomfield'
12406
+ 'AU','4895','QLD','Cooktown'
12407
+ 'AU','4895','QLD','Degarra'
12408
+ 'AU','4895','QLD','Endeavour Falls'
12409
+ 'AU','4895','QLD','Helenvale'
12410
+ 'AU','4895','QLD','Hope Vale'
12411
+ 'AU','4895','QLD','Rossville'
12412
+ 'AU','4895','QLD','Starcke'
12413
+ 'AU','4895','QLD','Wujal Wujal'
12414
+ 'AU','5000','SA','Adelaide'
12415
+ 'AU','5000','SA','Adelaide Bc'
12416
+ 'AU','5000','SA','City West Campus'
12417
+ 'AU','5000','SA','Halifax Street'
12418
+ 'AU','5000','SA','Hutt Street'
12419
+ 'AU','5000','SA','Parliament House'
12420
+ 'AU','5000','SA','Rundle Mall'
12421
+ 'AU','5000','SA','Station Arcade'
12422
+ 'AU','5000','SA','Sturt Street'
12423
+ 'AU','5001','SA','Adelaide'
12424
+ 'AU','5005','SA','Adelaide University'
12425
+ 'AU','5005','SA','The University Of Adelaide'
12426
+ 'AU','5005','SA','University Of Adelaide'
12427
+ 'AU','5006','SA','North Adelaide'
12428
+ 'AU','5006','SA','North Adelaide Melbourne St'
12429
+ 'AU','5007','SA','Bowden'
12430
+ 'AU','5007','SA','Brompton'
12431
+ 'AU','5007','SA','Hindmarsh'
12432
+ 'AU','5007','SA','Welland'
12433
+ 'AU','5007','SA','West Hindmarsh'
12434
+ 'AU','5008','SA','Croydon'
12435
+ 'AU','5008','SA','Croydon Park'
12436
+ 'AU','5008','SA','Croydon Park South'
12437
+ 'AU','5008','SA','Devon Park'
12438
+ 'AU','5008','SA','Dudley Park'
12439
+ 'AU','5008','SA','Renown Park'
12440
+ 'AU','5008','SA','Ridleyton'
12441
+ 'AU','5008','SA','West Croydon'
12442
+ 'AU','5009','SA','Allenby Gardens'
12443
+ 'AU','5009','SA','Beverley'
12444
+ 'AU','5009','SA','Kilkenny'
12445
+ 'AU','5010','SA','Angle Park'
12446
+ 'AU','5010','SA','Ferryden Park'
12447
+ 'AU','5010','SA','Regency Park'
12448
+ 'AU','5010','SA','Regency Park Bc'
12449
+ 'AU','5011','SA','Woodville'
12450
+ 'AU','5011','SA','Woodville Park'
12451
+ 'AU','5011','SA','Woodville South'
12452
+ 'AU','5011','SA','Woodville West'
12453
+ 'AU','5012','SA','Athol Park'
12454
+ 'AU','5012','SA','Mansfield Park'
12455
+ 'AU','5012','SA','Woodville Gardens'
12456
+ 'AU','5012','SA','Woodville North'
12457
+ 'AU','5013','SA','Gillman'
12458
+ 'AU','5013','SA','Ottoway'
12459
+ 'AU','5013','SA','Pennington'
12460
+ 'AU','5013','SA','Rosewater'
12461
+ 'AU','5013','SA','Rosewater East'
12462
+ 'AU','5013','SA','Wingfield'
12463
+ 'AU','5014','SA','Albert Park'
12464
+ 'AU','5014','SA','Alberton'
12465
+ 'AU','5014','SA','Cheltenham'
12466
+ 'AU','5014','SA','Hendon'
12467
+ 'AU','5014','SA','Queenstown'
12468
+ 'AU','5014','SA','Royal Park'
12469
+ 'AU','5015','SA','Birkenhead'
12470
+ 'AU','5015','SA','Ethelton'
12471
+ 'AU','5015','SA','Glanville'
12472
+ 'AU','5015','SA','New Port'
12473
+ 'AU','5015','SA','Port Adelaide'
12474
+ 'AU','5015','SA','Port Adelaide Bc'
12475
+ 'AU','5015','SA','Port Adelaide Dc'
12476
+ 'AU','5016','SA','Largs Bay'
12477
+ 'AU','5016','SA','Largs North'
12478
+ 'AU','5016','SA','Peterhead'
12479
+ 'AU','5017','SA','Osborne'
12480
+ 'AU','5017','SA','Taperoo'
12481
+ 'AU','5018','SA','North Haven'
12482
+ 'AU','5018','SA','Outer Harbor'
12483
+ 'AU','5019','SA','Exeter'
12484
+ 'AU','5019','SA','Semaphore'
12485
+ 'AU','5019','SA','Semaphore Park'
12486
+ 'AU','5019','SA','Semaphore South'
12487
+ 'AU','5020','SA','West Lakes Shore'
12488
+ 'AU','5021','SA','West Lakes'
12489
+ 'AU','5022','SA','Grange'
12490
+ 'AU','5022','SA','Henley Beach'
12491
+ 'AU','5022','SA','Henley Beach South'
12492
+ 'AU','5022','SA','Kirkcaldy'
12493
+ 'AU','5022','SA','Tennyson'
12494
+ 'AU','5023','SA','Findon'
12495
+ 'AU','5023','SA','Seaton'
12496
+ 'AU','5023','SA','Seaton North'
12497
+ 'AU','5024','SA','Fulham'
12498
+ 'AU','5024','SA','Fulham Gardens'
12499
+ 'AU','5024','SA','West Beach'
12500
+ 'AU','5025','SA','Flinders Park'
12501
+ 'AU','5025','SA','Kidman Park'
12502
+ 'AU','5031','SA','Mile End'
12503
+ 'AU','5031','SA','Mile End South'
12504
+ 'AU','5031','SA','Thebarton'
12505
+ 'AU','5031','SA','Torrensville'
12506
+ 'AU','5031','SA','Torrensville Plaza'
12507
+ 'AU','5032','SA','Brooklyn Park'
12508
+ 'AU','5032','SA','Lockleys'
12509
+ 'AU','5032','SA','Underdale'
12510
+ 'AU','5033','SA','Cowandilla'
12511
+ 'AU','5033','SA','Hilton'
12512
+ 'AU','5033','SA','Hilton Plaza'
12513
+ 'AU','5033','SA','Marleston'
12514
+ 'AU','5033','SA','Marleston Dc'
12515
+ 'AU','5033','SA','Richmond'
12516
+ 'AU','5033','SA','West Richmond'
12517
+ 'AU','5034','SA','Clarence Park'
12518
+ 'AU','5034','SA','Goodwood'
12519
+ 'AU','5034','SA','Kings Park'
12520
+ 'AU','5034','SA','Millswood'
12521
+ 'AU','5034','SA','Wayville'
12522
+ 'AU','5035','SA','Ashford'
12523
+ 'AU','5035','SA','Black Forest'
12524
+ 'AU','5035','SA','Everard Park'
12525
+ 'AU','5035','SA','Forestville'
12526
+ 'AU','5035','SA','Keswick'
12527
+ 'AU','5035','SA','Keswick Terminal'
12528
+ 'AU','5037','SA','Glandore'
12529
+ 'AU','5037','SA','Kurralta Park'
12530
+ 'AU','5037','SA','Netley'
12531
+ 'AU','5037','SA','North Plympton'
12532
+ 'AU','5038','SA','Camden Park'
12533
+ 'AU','5038','SA','Plympton'
12534
+ 'AU','5038','SA','Plympton Park'
12535
+ 'AU','5038','SA','South Plympton'
12536
+ 'AU','5039','SA','Clarence Gardens'
12537
+ 'AU','5039','SA','Edwardstown'
12538
+ 'AU','5039','SA','Melrose Park'
12539
+ 'AU','5039','SA','Melrose Park Dc'
12540
+ 'AU','5040','SA','Novar Gardens'
12541
+ 'AU','5041','SA','Colonel Light Gardens'
12542
+ 'AU','5041','SA','Cumberland Park'
12543
+ 'AU','5041','SA','Daw Park'
12544
+ 'AU','5041','SA','Panorama'
12545
+ 'AU','5041','SA','Westbourne Park'
12546
+ 'AU','5042','SA','Bedford Park'
12547
+ 'AU','5042','SA','Clovelly Park'
12548
+ 'AU','5042','SA','Flinders University'
12549
+ 'AU','5042','SA','Pasadena'
12550
+ 'AU','5042','SA','St Marys'
12551
+ 'AU','5043','SA','Ascot Park'
12552
+ 'AU','5043','SA','Marion'
12553
+ 'AU','5043','SA','Mitchell Park'
12554
+ 'AU','5043','SA','Morphettville'
12555
+ 'AU','5043','SA','Park Holme'
12556
+ 'AU','5044','SA','Glengowrie'
12557
+ 'AU','5044','SA','Somerton Park'
12558
+ 'AU','5045','SA','Glenelg'
12559
+ 'AU','5045','SA','Glenelg East'
12560
+ 'AU','5045','SA','Glenelg Jetty Road'
12561
+ 'AU','5045','SA','Glenelg North'
12562
+ 'AU','5045','SA','Glenelg South'
12563
+ 'AU','5046','SA','Oaklands Park'
12564
+ 'AU','5046','SA','Warradale'
12565
+ 'AU','5046','SA','Warradale North'
12566
+ 'AU','5047','SA','Darlington'
12567
+ 'AU','5047','SA','Seacombe Gardens'
12568
+ 'AU','5047','SA','Seacombe Heights'
12569
+ 'AU','5047','SA','Sturt'
12570
+ 'AU','5048','SA','Brighton'
12571
+ 'AU','5048','SA','Dover Gardens'
12572
+ 'AU','5048','SA','Hove'
12573
+ 'AU','5048','SA','North Brighton'
12574
+ 'AU','5048','SA','South Brighton'
12575
+ 'AU','5049','SA','Kingston Park'
12576
+ 'AU','5049','SA','Marino'
12577
+ 'AU','5049','SA','Seacliff'
12578
+ 'AU','5049','SA','Seacliff Park'
12579
+ 'AU','5049','SA','Seaview Downs'
12580
+ 'AU','5050','SA','Bellevue Heights'
12581
+ 'AU','5050','SA','Eden Hills'
12582
+ 'AU','5051','SA','Blackwood'
12583
+ 'AU','5051','SA','Coromandel Valley'
12584
+ 'AU','5051','SA','Craigburn Farm'
12585
+ 'AU','5051','SA','Hawthorndene'
12586
+ 'AU','5052','SA','Belair'
12587
+ 'AU','5052','SA','Glenalta'
12588
+ 'AU','5061','SA','Hyde Park'
12589
+ 'AU','5061','SA','Malvern'
12590
+ 'AU','5061','SA','Unley'
12591
+ 'AU','5061','SA','Unley Bc'
12592
+ 'AU','5061','SA','Unley Dc'
12593
+ 'AU','5061','SA','Unley Park'
12594
+ 'AU','5062','SA','Brown Hill Creek'
12595
+ 'AU','5062','SA','Clapham'
12596
+ 'AU','5062','SA','Hawthorn'
12597
+ 'AU','5062','SA','Kingswood'
12598
+ 'AU','5062','SA','Lower Mitcham'
12599
+ 'AU','5062','SA','Lynton'
12600
+ 'AU','5062','SA','Mitcham'
12601
+ 'AU','5062','SA','Mitcham Shopping Centre'
12602
+ 'AU','5062','SA','Netherby'
12603
+ 'AU','5062','SA','Springfield'
12604
+ 'AU','5062','SA','Torrens Park'
12605
+ 'AU','5063','SA','Eastwood'
12606
+ 'AU','5063','SA','Frewville'
12607
+ 'AU','5063','SA','Fullarton'
12608
+ 'AU','5063','SA','Highgate'
12609
+ 'AU','5063','SA','Parkside'
12610
+ 'AU','5064','SA','Glen Osmond'
12611
+ 'AU','5064','SA','Glenunga'
12612
+ 'AU','5064','SA','Mount Osmond'
12613
+ 'AU','5064','SA','Myrtle Bank'
12614
+ 'AU','5064','SA','St Georges'
12615
+ 'AU','5064','SA','Urrbrae'
12616
+ 'AU','5065','SA','Dulwich'
12617
+ 'AU','5065','SA','Glenside'
12618
+ 'AU','5065','SA','Linden Park'
12619
+ 'AU','5065','SA','Toorak Gardens'
12620
+ 'AU','5065','SA','Tusmore'
12621
+ 'AU','5066','SA','Beaumont'
12622
+ 'AU','5066','SA','Burnside'
12623
+ 'AU','5066','SA','Erindale'
12624
+ 'AU','5066','SA','Hazelwood Park'
12625
+ 'AU','5066','SA','Stonyfell'
12626
+ 'AU','5066','SA','Waterfall Gully'
12627
+ 'AU','5066','SA','Wattle Park'
12628
+ 'AU','5067','SA','Beulah Park'
12629
+ 'AU','5067','SA','Kent Town'
12630
+ 'AU','5067','SA','Norwood'
12631
+ 'AU','5067','SA','Norwood South'
12632
+ 'AU','5067','SA','Rose Park'
12633
+ 'AU','5068','SA','Heathpool'
12634
+ 'AU','5068','SA','Kensington'
12635
+ 'AU','5068','SA','Kensington Gardens'
12636
+ 'AU','5068','SA','Kensington Park'
12637
+ 'AU','5068','SA','Leabrook'
12638
+ 'AU','5068','SA','Marryatville'
12639
+ 'AU','5068','SA','St Morris'
12640
+ 'AU','5068','SA','Trinity Gardens'
12641
+ 'AU','5069','SA','College Park'
12642
+ 'AU','5069','SA','Evandale'
12643
+ 'AU','5069','SA','Hackney'
12644
+ 'AU','5069','SA','Maylands'
12645
+ 'AU','5069','SA','St Peters'
12646
+ 'AU','5069','SA','Stepney'
12647
+ 'AU','5070','SA','Felixstow'
12648
+ 'AU','5070','SA','Firle'
12649
+ 'AU','5070','SA','Glynde'
12650
+ 'AU','5070','SA','Glynde Dc'
12651
+ 'AU','5070','SA','Glynde Plaza'
12652
+ 'AU','5070','SA','Joslin'
12653
+ 'AU','5070','SA','Marden'
12654
+ 'AU','5070','SA','Payneham'
12655
+ 'AU','5070','SA','Payneham South'
12656
+ 'AU','5070','SA','Royston Park'
12657
+ 'AU','5071','SA','Kent Town'
12658
+ 'AU','5071','SA','Kent Town Dc'
12659
+ 'AU','5072','SA','Auldana'
12660
+ 'AU','5072','SA','Magill'
12661
+ 'AU','5072','SA','Magill North'
12662
+ 'AU','5072','SA','Magill South'
12663
+ 'AU','5072','SA','Rosslyn Park'
12664
+ 'AU','5072','SA','Skye'
12665
+ 'AU','5072','SA','Teringie'
12666
+ 'AU','5072','SA','Woodforde'
12667
+ 'AU','5073','SA','Hectorville'
12668
+ 'AU','5073','SA','Rostrevor'
12669
+ 'AU','5073','SA','Tranmere'
12670
+ 'AU','5073','SA','Tranmere North'
12671
+ 'AU','5074','SA','Campbelltown'
12672
+ 'AU','5074','SA','Newton'
12673
+ 'AU','5075','SA','Dernancourt'
12674
+ 'AU','5075','SA','Paradise'
12675
+ 'AU','5076','SA','Athelstone'
12676
+ 'AU','5076','SA','Castambul'
12677
+ 'AU','5081','SA','Collinswood'
12678
+ 'AU','5081','SA','Gilberton'
12679
+ 'AU','5081','SA','Medindie'
12680
+ 'AU','5081','SA','Medindie Gardens'
12681
+ 'AU','5081','SA','Vale Park'
12682
+ 'AU','5081','SA','Walkerville'
12683
+ 'AU','5082','SA','Fitzroy'
12684
+ 'AU','5082','SA','Ovingham'
12685
+ 'AU','5082','SA','Prospect'
12686
+ 'AU','5082','SA','Prospect East'
12687
+ 'AU','5082','SA','Prospect West'
12688
+ 'AU','5082','SA','Thorngate'
12689
+ 'AU','5083','SA','Broadview'
12690
+ 'AU','5083','SA','Nailsworth'
12691
+ 'AU','5083','SA','Sefton Park'
12692
+ 'AU','5084','SA','Blair Athol'
12693
+ 'AU','5084','SA','Blair Athol West'
12694
+ 'AU','5084','SA','Kilburn'
12695
+ 'AU','5084','SA','Kilburn North'
12696
+ 'AU','5085','SA','Clearview'
12697
+ 'AU','5085','SA','Enfield'
12698
+ 'AU','5085','SA','Enfield Plaza'
12699
+ 'AU','5085','SA','Northfield'
12700
+ 'AU','5085','SA','Northgate'
12701
+ 'AU','5086','SA','Gilles Plains'
12702
+ 'AU','5086','SA','Greenacres'
12703
+ 'AU','5086','SA','Hampstead Gardens'
12704
+ 'AU','5086','SA','Hillcrest'
12705
+ 'AU','5086','SA','Manningham'
12706
+ 'AU','5086','SA','Oakden'
12707
+ 'AU','5087','SA','Klemzig'
12708
+ 'AU','5087','SA','Windsor Gardens'
12709
+ 'AU','5088','SA','Holden Hill'
12710
+ 'AU','5089','SA','Highbury'
12711
+ 'AU','5090','SA','Hope Valley'
12712
+ 'AU','5091','SA','Banksia Park'
12713
+ 'AU','5091','SA','Tea Tree Gully'
12714
+ 'AU','5091','SA','Vista'
12715
+ 'AU','5092','SA','Modbury'
12716
+ 'AU','5092','SA','Modbury Heights'
12717
+ 'AU','5092','SA','Modbury North'
12718
+ 'AU','5092','SA','Modbury North Dc'
12719
+ 'AU','5093','SA','Para Vista'
12720
+ 'AU','5093','SA','Valley View'
12721
+ 'AU','5094','SA','Cavan'
12722
+ 'AU','5094','SA','Dry Creek'
12723
+ 'AU','5094','SA','Gepps Cross'
12724
+ 'AU','5095','SA','Mawson Lakes'
12725
+ 'AU','5095','SA','Pooraka'
12726
+ 'AU','5095','SA','The Levels'
12727
+ 'AU','5096','SA','Gulfview Heights'
12728
+ 'AU','5096','SA','Para Hills'
12729
+ 'AU','5096','SA','Para Hills West'
12730
+ 'AU','5097','SA','Redwood Park'
12731
+ 'AU','5097','SA','Ridgehaven'
12732
+ 'AU','5097','SA','St Agnes'
12733
+ 'AU','5098','SA','Ingle Farm'
12734
+ 'AU','5098','SA','Walkley Heights'
12735
+ 'AU','5106','SA','Parafield'
12736
+ 'AU','5106','SA','Parafield Airport'
12737
+ 'AU','5106','SA','Salisbury South'
12738
+ 'AU','5106','SA','Salisbury South Bc'
12739
+ 'AU','5106','SA','Salisbury South Dc'
12740
+ 'AU','5107','SA','Green Fields'
12741
+ 'AU','5107','SA','Parafield Gardens'
12742
+ 'AU','5108','SA','Paralowie'
12743
+ 'AU','5108','SA','Salisbury'
12744
+ 'AU','5108','SA','Salisbury Downs'
12745
+ 'AU','5108','SA','Salisbury North'
12746
+ 'AU','5108','SA','Salisbury North Whites Road'
12747
+ 'AU','5109','SA','Brahma Lodge'
12748
+ 'AU','5109','SA','Salisbury East'
12749
+ 'AU','5109','SA','Salisbury East Northbri Ave'
12750
+ 'AU','5109','SA','Salisbury Heights'
12751
+ 'AU','5109','SA','Salisbury Park'
12752
+ 'AU','5109','SA','Salisbury Plain'
12753
+ 'AU','5110','SA','Bolivar'
12754
+ 'AU','5110','SA','Burton'
12755
+ 'AU','5110','SA','Direk'
12756
+ 'AU','5110','SA','Globe Derby Park'
12757
+ 'AU','5110','SA','St Kilda'
12758
+ 'AU','5110','SA','Waterloo Corner'
12759
+ 'AU','5111','SA','Edinburgh'
12760
+ 'AU','5112','SA','Elizabeth'
12761
+ 'AU','5112','SA','Elizabeth East'
12762
+ 'AU','5112','SA','Elizabeth Grove'
12763
+ 'AU','5112','SA','Elizabeth South'
12764
+ 'AU','5112','SA','Elizabeth Vale'
12765
+ 'AU','5112','SA','Hillbank'
12766
+ 'AU','5113','SA','Davoren Park'
12767
+ 'AU','5113','SA','Davoren Park North'
12768
+ 'AU','5113','SA','Davoren Park South'
12769
+ 'AU','5113','SA','Elizabeth Downs'
12770
+ 'AU','5113','SA','Elizabeth North'
12771
+ 'AU','5113','SA','Elizabeth Park'
12772
+ 'AU','5113','SA','Elizabeth West'
12773
+ 'AU','5113','SA','Elizabeth West Dc'
12774
+ 'AU','5114','SA','Andrews Farm'
12775
+ 'AU','5114','SA','Blakeview'
12776
+ 'AU','5114','SA','Craigmore'
12777
+ 'AU','5114','SA','Gould Creek'
12778
+ 'AU','5114','SA','Humbug Scrub'
12779
+ 'AU','5114','SA','One Tree Hill'
12780
+ 'AU','5114','SA','Sampson Flat'
12781
+ 'AU','5114','SA','Smithfield'
12782
+ 'AU','5114','SA','Smithfield Plains'
12783
+ 'AU','5114','SA','Smithfield West'
12784
+ 'AU','5114','SA','Uleybury'
12785
+ 'AU','5114','SA','Yattalunga'
12786
+ 'AU','5115','SA','Kudla'
12787
+ 'AU','5115','SA','Munno Para'
12788
+ 'AU','5115','SA','Munno Para Downs'
12789
+ 'AU','5115','SA','Munno Para West'
12790
+ 'AU','5116','SA','Evanston'
12791
+ 'AU','5116','SA','Evanston Gardens'
12792
+ 'AU','5116','SA','Evanston Park'
12793
+ 'AU','5116','SA','Evanston South'
12794
+ 'AU','5116','SA','Hillier'
12795
+ 'AU','5117','SA','Angle Vale'
12796
+ 'AU','5118','SA','Bibaringa'
12797
+ 'AU','5118','SA','Buchfelde'
12798
+ 'AU','5118','SA','Concordia'
12799
+ 'AU','5118','SA','Gawler'
12800
+ 'AU','5118','SA','Gawler Belt'
12801
+ 'AU','5118','SA','Gawler East'
12802
+ 'AU','5118','SA','Gawler River'
12803
+ 'AU','5118','SA','Gawler South'
12804
+ 'AU','5118','SA','Gawler West'
12805
+ 'AU','5118','SA','Hewett'
12806
+ 'AU','5118','SA','Kalbeeba'
12807
+ 'AU','5118','SA','Kangaroo Flat'
12808
+ 'AU','5118','SA','Kingsford'
12809
+ 'AU','5118','SA','Reid'
12810
+ 'AU','5118','SA','Ward Belt'
12811
+ 'AU','5118','SA','Willaston'
12812
+ 'AU','5120','SA','Buckland Park'
12813
+ 'AU','5120','SA','Virginia'
12814
+ 'AU','5121','SA','Macdonald Park'
12815
+ 'AU','5121','SA','Penfield'
12816
+ 'AU','5121','SA','Penfield Gardens'
12817
+ 'AU','5125','SA','Golden Grove'
12818
+ 'AU','5125','SA','Golden Grove Village'
12819
+ 'AU','5125','SA','Greenwith'
12820
+ 'AU','5126','SA','Fairview Park'
12821
+ 'AU','5126','SA','Surrey Downs'
12822
+ 'AU','5126','SA','Yatala Vale'
12823
+ 'AU','5127','SA','Wynn Vale'
12824
+ 'AU','5131','SA','Houghton'
12825
+ 'AU','5131','SA','Lower Hermitage'
12826
+ 'AU','5131','SA','Upper Hermitage'
12827
+ 'AU','5132','SA','Paracombe'
12828
+ 'AU','5133','SA','Inglewood'
12829
+ 'AU','5134','SA','Cherryville'
12830
+ 'AU','5134','SA','Montacute'
12831
+ 'AU','5136','SA','Norton Summit'
12832
+ 'AU','5137','SA','Ashton'
12833
+ 'AU','5137','SA','Marble Hill'
12834
+ 'AU','5138','SA','Basket Range'
12835
+ 'AU','5139','SA','Forest Range'
12836
+ 'AU','5140','SA','Greenhill'
12837
+ 'AU','5141','SA','Horsnell Gully'
12838
+ 'AU','5141','SA','Summertown'
12839
+ 'AU','5142','SA','Uraidla'
12840
+ 'AU','5144','SA','Carey Gully'
12841
+ 'AU','5150','SA','Eagle On The Hill'
12842
+ 'AU','5150','SA','Leawood Gardens'
12843
+ 'AU','5151','SA','Piccadilly'
12844
+ 'AU','5152','SA','Cleland'
12845
+ 'AU','5152','SA','Crafers'
12846
+ 'AU','5152','SA','Crafers West'
12847
+ 'AU','5152','SA','Mount Lofty'
12848
+ 'AU','5152','SA','Stirling'
12849
+ 'AU','5153','SA','Biggs Flat'
12850
+ 'AU','5153','SA','Bradbury'
12851
+ 'AU','5153','SA','Chapel Hill'
12852
+ 'AU','5153','SA','Echunga'
12853
+ 'AU','5153','SA','Flaxley'
12854
+ 'AU','5153','SA','Green Hills Range'
12855
+ 'AU','5153','SA','Heathfield'
12856
+ 'AU','5153','SA','Ironbank'
12857
+ 'AU','5153','SA','Jupiter Creek'
12858
+ 'AU','5153','SA','Longwood'
12859
+ 'AU','5153','SA','Macclesfield'
12860
+ 'AU','5153','SA','Mylor'
12861
+ 'AU','5153','SA','Scott Creek'
12862
+ 'AU','5154','SA','Aldgate'
12863
+ 'AU','5155','SA','Bridgewater'
12864
+ 'AU','5155','SA','Mount George'
12865
+ 'AU','5156','SA','Upper Sturt'
12866
+ 'AU','5157','SA','Ashbourne'
12867
+ 'AU','5157','SA','Bull Creek'
12868
+ 'AU','5157','SA','Cherry Gardens'
12869
+ 'AU','5157','SA','Clarendon'
12870
+ 'AU','5157','SA','Coromandel East'
12871
+ 'AU','5157','SA','Dorset Vale'
12872
+ 'AU','5157','SA','Kangarilla'
12873
+ 'AU','5157','SA','Mcharg Creek'
12874
+ 'AU','5158','SA','Hallett Cove'
12875
+ 'AU','5158','SA','O''Halloran Hill'
12876
+ 'AU','5158','SA','O''Halloran Hill Dc'
12877
+ 'AU','5158','SA','Sheidow Park'
12878
+ 'AU','5158','SA','Trott Park'
12879
+ 'AU','5159','SA','Aberfoyle Park'
12880
+ 'AU','5159','SA','Chandlers Hill'
12881
+ 'AU','5159','SA','Flagstaff Hill'
12882
+ 'AU','5159','SA','Happy Valley'
12883
+ 'AU','5160','SA','Lonsdale'
12884
+ 'AU','5160','SA','Lonsdale Dc'
12885
+ 'AU','5160','SA','Port Stanvac'
12886
+ 'AU','5161','SA','Old Reynella'
12887
+ 'AU','5161','SA','Reynella'
12888
+ 'AU','5161','SA','Reynella East'
12889
+ 'AU','5162','SA','Morphett Vale'
12890
+ 'AU','5162','SA','Woodcroft'
12891
+ 'AU','5163','SA','Hackham'
12892
+ 'AU','5163','SA','Hackham West'
12893
+ 'AU','5163','SA','Huntfield Heights'
12894
+ 'AU','5163','SA','Onkaparinga Hills'
12895
+ 'AU','5164','SA','Christie Downs'
12896
+ 'AU','5165','SA','Christies Beach'
12897
+ 'AU','5165','SA','Christies Beach North'
12898
+ 'AU','5166','SA','O''Sullivan Beach'
12899
+ 'AU','5167','SA','Port Noarlunga'
12900
+ 'AU','5167','SA','Port Noarlunga South'
12901
+ 'AU','5168','SA','Noarlunga Centre'
12902
+ 'AU','5168','SA','Noarlunga Downs'
12903
+ 'AU','5168','SA','Old Noarlunga'
12904
+ 'AU','5169','SA','Moana'
12905
+ 'AU','5169','SA','Seaford'
12906
+ 'AU','5169','SA','Seaford Heights'
12907
+ 'AU','5169','SA','Seaford Meadows'
12908
+ 'AU','5169','SA','Seaford Rise'
12909
+ 'AU','5170','SA','Maslin Beach'
12910
+ 'AU','5171','SA','Blewitt Springs'
12911
+ 'AU','5171','SA','Mclaren Flat'
12912
+ 'AU','5171','SA','Mclaren Vale'
12913
+ 'AU','5171','SA','Pedler Creek'
12914
+ 'AU','5171','SA','Tatachilla'
12915
+ 'AU','5172','SA','Dingabledinga'
12916
+ 'AU','5172','SA','Hope Forest'
12917
+ 'AU','5172','SA','Kuitpo'
12918
+ 'AU','5172','SA','Kuitpo Colony'
12919
+ 'AU','5172','SA','Kyeema'
12920
+ 'AU','5172','SA','Montarra'
12921
+ 'AU','5172','SA','Pages Flat'
12922
+ 'AU','5172','SA','The Range'
12923
+ 'AU','5172','SA','Whites Valley'
12924
+ 'AU','5172','SA','Willunga'
12925
+ 'AU','5172','SA','Willunga Hill'
12926
+ 'AU','5172','SA','Willunga South'
12927
+ 'AU','5172','SA','Yundi'
12928
+ 'AU','5173','SA','Aldinga'
12929
+ 'AU','5173','SA','Aldinga Beach'
12930
+ 'AU','5173','SA','Port Willunga'
12931
+ 'AU','5173','SA','Silver Sands'
12932
+ 'AU','5174','SA','Sellicks Beach'
12933
+ 'AU','5174','SA','Sellicks Hill'
12934
+ 'AU','5201','SA','Blackfellows Creek'
12935
+ 'AU','5201','SA','Meadows'
12936
+ 'AU','5201','SA','Paris Creek'
12937
+ 'AU','5201','SA','Prospect Hill'
12938
+ 'AU','5202','SA','Hindmarsh Tiers'
12939
+ 'AU','5202','SA','Myponga'
12940
+ 'AU','5202','SA','Myponga Beach'
12941
+ 'AU','5203','SA','Bald Hills'
12942
+ 'AU','5203','SA','Parawa'
12943
+ 'AU','5203','SA','Torrens Vale'
12944
+ 'AU','5203','SA','Tunkalilla'
12945
+ 'AU','5203','SA','Wattle Flat'
12946
+ 'AU','5203','SA','Yankalilla'
12947
+ 'AU','5204','SA','Cape Jervis'
12948
+ 'AU','5204','SA','Carrickalinga'
12949
+ 'AU','5204','SA','Deep Creek'
12950
+ 'AU','5204','SA','Delamere'
12951
+ 'AU','5204','SA','Hay Flat'
12952
+ 'AU','5204','SA','Normanville'
12953
+ 'AU','5204','SA','Rapid Bay'
12954
+ 'AU','5204','SA','Second Valley'
12955
+ 'AU','5204','SA','Silverton'
12956
+ 'AU','5204','SA','Wirrina Cove'
12957
+ 'AU','5210','SA','Mount Compass'
12958
+ 'AU','5210','SA','Mount Magnificent'
12959
+ 'AU','5210','SA','Nangkita'
12960
+ 'AU','5211','SA','Back Valley'
12961
+ 'AU','5211','SA','Encounter Bay'
12962
+ 'AU','5211','SA','Hayborough'
12963
+ 'AU','5211','SA','Hindmarsh Valley'
12964
+ 'AU','5211','SA','Inman Valley'
12965
+ 'AU','5211','SA','Lower Inman Valley'
12966
+ 'AU','5211','SA','Mccracken'
12967
+ 'AU','5211','SA','Mount Jagged'
12968
+ 'AU','5211','SA','Victor Harbor'
12969
+ 'AU','5211','SA','Waitpinga'
12970
+ 'AU','5211','SA','Willow Creek'
12971
+ 'AU','5211','SA','Yilki'
12972
+ 'AU','5212','SA','Port Elliot'
12973
+ 'AU','5213','SA','Middleton'
12974
+ 'AU','5214','SA','Currency Creek'
12975
+ 'AU','5214','SA','Goolwa'
12976
+ 'AU','5214','SA','Goolwa Beach'
12977
+ 'AU','5214','SA','Goolwa North'
12978
+ 'AU','5214','SA','Goolwa South'
12979
+ 'AU','5214','SA','Hindmarsh Island'
12980
+ 'AU','5214','SA','Mosquito Hill'
12981
+ 'AU','5214','SA','Mundoo Island'
12982
+ 'AU','5220','SA','Parndana'
12983
+ 'AU','5221','SA','American River'
12984
+ 'AU','5221','SA','Ballast Head'
12985
+ 'AU','5221','SA','Muston'
12986
+ 'AU','5222','SA','American Beach'
12987
+ 'AU','5222','SA','Antechamber Bay'
12988
+ 'AU','5222','SA','Baudin Beach'
12989
+ 'AU','5222','SA','Browns Beach'
12990
+ 'AU','5222','SA','Cuttlefish Bay'
12991
+ 'AU','5222','SA','Dudley East'
12992
+ 'AU','5222','SA','Dudley West'
12993
+ 'AU','5222','SA','Hungerford'
12994
+ 'AU','5222','SA','Ironstone'
12995
+ 'AU','5222','SA','Island Beach'
12996
+ 'AU','5222','SA','Kangaroo Head'
12997
+ 'AU','5222','SA','Pelican Lagoon'
12998
+ 'AU','5222','SA','Penneshaw'
12999
+ 'AU','5222','SA','Porky Flat'
13000
+ 'AU','5222','SA','Sapphiretown'
13001
+ 'AU','5222','SA','Willoughby'
13002
+ 'AU','5222','SA','Willson River'
13003
+ 'AU','5223','SA','Bay Of Shoals'
13004
+ 'AU','5223','SA','Birchmore'
13005
+ 'AU','5223','SA','Brownlow Ki'
13006
+ 'AU','5223','SA','Cape Borda'
13007
+ 'AU','5223','SA','Cassini'
13008
+ 'AU','5223','SA','Cygnet River'
13009
+ 'AU','5223','SA','D''Estrees Bay'
13010
+ 'AU','5223','SA','De Mole River'
13011
+ 'AU','5223','SA','Duncan'
13012
+ 'AU','5223','SA','Emu Bay'
13013
+ 'AU','5223','SA','Flinders Chase'
13014
+ 'AU','5223','SA','Gosse'
13015
+ 'AU','5223','SA','Haines'
13016
+ 'AU','5223','SA','Harriet River'
13017
+ 'AU','5223','SA','Karatta'
13018
+ 'AU','5223','SA','Kingscote'
13019
+ 'AU','5223','SA','Kohinoor'
13020
+ 'AU','5223','SA','Macgillivray'
13021
+ 'AU','5223','SA','Menzies'
13022
+ 'AU','5223','SA','Middle River'
13023
+ 'AU','5223','SA','Nepean Bay'
13024
+ 'AU','5223','SA','Newland'
13025
+ 'AU','5223','SA','North Cape'
13026
+ 'AU','5223','SA','Seal Bay'
13027
+ 'AU','5223','SA','Seddon'
13028
+ 'AU','5223','SA','Stokes Bay'
13029
+ 'AU','5223','SA','Stun''Sail Boom'
13030
+ 'AU','5223','SA','Vivonne Bay'
13031
+ 'AU','5223','SA','Western River'
13032
+ 'AU','5223','SA','Wisanger'
13033
+ 'AU','5231','SA','Chain Of Ponds'
13034
+ 'AU','5231','SA','Kersbrook'
13035
+ 'AU','5231','SA','Millbrook'
13036
+ 'AU','5232','SA','Cudlee Creek'
13037
+ 'AU','5233','SA','Forreston'
13038
+ 'AU','5233','SA','Gumeracha'
13039
+ 'AU','5233','SA','Warren'
13040
+ 'AU','5234','SA','Birdwood'
13041
+ 'AU','5235','SA','Cromer'
13042
+ 'AU','5235','SA','Eden Valley'
13043
+ 'AU','5235','SA','Flaxman Valley'
13044
+ 'AU','5235','SA','Mount Pleasant'
13045
+ 'AU','5235','SA','Springton'
13046
+ 'AU','5235','SA','Taunton'
13047
+ 'AU','5236','SA','Tungkillo'
13048
+ 'AU','5237','SA','Apamurra'
13049
+ 'AU','5237','SA','Milendella'
13050
+ 'AU','5237','SA','Palmer'
13051
+ 'AU','5237','SA','Sanderston'
13052
+ 'AU','5238','SA','Angas Valley'
13053
+ 'AU','5238','SA','Big Bend'
13054
+ 'AU','5238','SA','Bolto'
13055
+ 'AU','5238','SA','Bowhill'
13056
+ 'AU','5238','SA','Caurnamont'
13057
+ 'AU','5238','SA','Claypans'
13058
+ 'AU','5238','SA','Cowirra'
13059
+ 'AU','5238','SA','Five Miles'
13060
+ 'AU','5238','SA','Forster'
13061
+ 'AU','5238','SA','Frahns'
13062
+ 'AU','5238','SA','Frayville'
13063
+ 'AU','5238','SA','Julanka Holdings'
13064
+ 'AU','5238','SA','Lake Carlet'
13065
+ 'AU','5238','SA','Mannum'
13066
+ 'AU','5238','SA','Nildottie'
13067
+ 'AU','5238','SA','Old Teal Flat'
13068
+ 'AU','5238','SA','Pellaring Flat'
13069
+ 'AU','5238','SA','Pompoota'
13070
+ 'AU','5238','SA','Ponde'
13071
+ 'AU','5238','SA','Port Mannum'
13072
+ 'AU','5238','SA','Punthari'
13073
+ 'AU','5238','SA','Purnong'
13074
+ 'AU','5238','SA','Purnong Landing'
13075
+ 'AU','5238','SA','Rocky Point'
13076
+ 'AU','5238','SA','Teal Flat'
13077
+ 'AU','5238','SA','Walker Flat'
13078
+ 'AU','5238','SA','Wall Flat'
13079
+ 'AU','5238','SA','Wongulla'
13080
+ 'AU','5238','SA','Woodlane'
13081
+ 'AU','5238','SA','Younghusband'
13082
+ 'AU','5238','SA','Younghusband Holdings'
13083
+ 'AU','5240','SA','Lenswood'
13084
+ 'AU','5241','SA','Lobethal'
13085
+ 'AU','5242','SA','Balhannah'
13086
+ 'AU','5243','SA','Oakbank'
13087
+ 'AU','5244','SA','Charleston'
13088
+ 'AU','5244','SA','Harrogate'
13089
+ 'AU','5244','SA','Inverbrackie'
13090
+ 'AU','5244','SA','Mount Torrens'
13091
+ 'AU','5244','SA','Woodside'
13092
+ 'AU','5245','SA','Hahndorf'
13093
+ 'AU','5245','SA','Paechtown'
13094
+ 'AU','5245','SA','Verdun'
13095
+ 'AU','5246','SA','Woodhouse'
13096
+ 'AU','5250','SA','Blakiston'
13097
+ 'AU','5250','SA','Littlehampton'
13098
+ 'AU','5250','SA','Totness'
13099
+ 'AU','5251','SA','Bugle Ranges'
13100
+ 'AU','5251','SA','Mount Barker'
13101
+ 'AU','5251','SA','Mount Barker Junction'
13102
+ 'AU','5251','SA','Mount Barker Springs'
13103
+ 'AU','5251','SA','Mount Barker Summit'
13104
+ 'AU','5251','SA','Wistow'
13105
+ 'AU','5252','SA','Brukunga'
13106
+ 'AU','5252','SA','Dawesley'
13107
+ 'AU','5252','SA','Hay Valley'
13108
+ 'AU','5252','SA','Kanmantoo'
13109
+ 'AU','5252','SA','Nairne'
13110
+ 'AU','5252','SA','St Ives'
13111
+ 'AU','5253','SA','Avoca Dell'
13112
+ 'AU','5253','SA','Brinkley'
13113
+ 'AU','5253','SA','Burdett'
13114
+ 'AU','5253','SA','Chapman Bore'
13115
+ 'AU','5253','SA','Ettrick'
13116
+ 'AU','5253','SA','Gifford Hill'
13117
+ 'AU','5253','SA','Greenbanks'
13118
+ 'AU','5253','SA','Long Flat'
13119
+ 'AU','5253','SA','Mobilong'
13120
+ 'AU','5253','SA','Murrawong'
13121
+ 'AU','5253','SA','Murray Bridge'
13122
+ 'AU','5253','SA','Murray Bridge East'
13123
+ 'AU','5253','SA','Murray Bridge North'
13124
+ 'AU','5253','SA','Murray Bridge South'
13125
+ 'AU','5253','SA','Northern Heights'
13126
+ 'AU','5253','SA','Riverglades'
13127
+ 'AU','5253','SA','Riverglen'
13128
+ 'AU','5253','SA','Rocky Gully'
13129
+ 'AU','5253','SA','Sunnyside'
13130
+ 'AU','5253','SA','Swanport'
13131
+ 'AU','5253','SA','Toora'
13132
+ 'AU','5253','SA','White Hill'
13133
+ 'AU','5253','SA','White Sands'
13134
+ 'AU','5253','SA','Willow Banks'
13135
+ 'AU','5253','SA','Woods Point'
13136
+ 'AU','5254','SA','Callington'
13137
+ 'AU','5254','SA','Caloote'
13138
+ 'AU','5254','SA','Monarto'
13139
+ 'AU','5254','SA','Monarto South'
13140
+ 'AU','5254','SA','Monteith'
13141
+ 'AU','5254','SA','Murray Bridge'
13142
+ 'AU','5254','SA','Mypolonga'
13143
+ 'AU','5254','SA','Pallamana'
13144
+ 'AU','5254','SA','Petwood'
13145
+ 'AU','5254','SA','Rockleigh'
13146
+ 'AU','5254','SA','Tepko'
13147
+ 'AU','5254','SA','Zadows Landing'
13148
+ 'AU','5255','SA','Angas Plains'
13149
+ 'AU','5255','SA','Belvidere'
13150
+ 'AU','5255','SA','Bletchley'
13151
+ 'AU','5255','SA','Finniss'
13152
+ 'AU','5255','SA','Gemmells'
13153
+ 'AU','5255','SA','Hartley'
13154
+ 'AU','5255','SA','Highland Valley'
13155
+ 'AU','5255','SA','Lake Plains'
13156
+ 'AU','5255','SA','Langhorne Creek'
13157
+ 'AU','5255','SA','Mount Observation'
13158
+ 'AU','5255','SA','Mulgundawa'
13159
+ 'AU','5255','SA','Nalpa'
13160
+ 'AU','5255','SA','Red Creek'
13161
+ 'AU','5255','SA','Salem'
13162
+ 'AU','5255','SA','Sandergrove'
13163
+ 'AU','5255','SA','Strathalbyn'
13164
+ 'AU','5255','SA','Tooperang'
13165
+ 'AU','5255','SA','Willyaroo'
13166
+ 'AU','5255','SA','Woodchester'
13167
+ 'AU','5256','SA','Clayton Bay'
13168
+ 'AU','5256','SA','Milang'
13169
+ 'AU','5256','SA','Nurragi'
13170
+ 'AU','5256','SA','Point Sturt'
13171
+ 'AU','5256','SA','Tolderol'
13172
+ 'AU','5259','SA','Ashville'
13173
+ 'AU','5259','SA','Jervois'
13174
+ 'AU','5259','SA','Kepa'
13175
+ 'AU','5259','SA','Malinong'
13176
+ 'AU','5259','SA','Narrung'
13177
+ 'AU','5259','SA','Naturi'
13178
+ 'AU','5259','SA','Point Mcleay'
13179
+ 'AU','5259','SA','Poltalloch'
13180
+ 'AU','5259','SA','Raukkan'
13181
+ 'AU','5259','SA','Tailem Bend'
13182
+ 'AU','5259','SA','Wellington'
13183
+ 'AU','5259','SA','Wellington East'
13184
+ 'AU','5260','SA','Elwomple'
13185
+ 'AU','5260','SA','Tailem Bend'
13186
+ 'AU','5261','SA','Cooke Plains'
13187
+ 'AU','5261','SA','Coomandook'
13188
+ 'AU','5261','SA','Culburra'
13189
+ 'AU','5261','SA','Ki Ki'
13190
+ 'AU','5261','SA','Yumali'
13191
+ 'AU','5262','SA','Binnum'
13192
+ 'AU','5262','SA','Frances'
13193
+ 'AU','5262','SA','Hynam'
13194
+ 'AU','5262','SA','Kybybolite'
13195
+ 'AU','5263','SA','Coonawarra'
13196
+ 'AU','5264','SA','Coorong'
13197
+ 'AU','5264','SA','Meningie'
13198
+ 'AU','5264','SA','Meningie East'
13199
+ 'AU','5264','SA','Meningie West'
13200
+ 'AU','5264','SA','Policeman Point'
13201
+ 'AU','5264','SA','Salt Creek'
13202
+ 'AU','5264','SA','Waltowa'
13203
+ 'AU','5265','SA','Coonalpyn'
13204
+ 'AU','5265','SA','Field'
13205
+ 'AU','5266','SA','Bunbury'
13206
+ 'AU','5266','SA','Colebatch'
13207
+ 'AU','5266','SA','Deepwater'
13208
+ 'AU','5266','SA','Tintinara'
13209
+ 'AU','5267','SA','Brimbago'
13210
+ 'AU','5267','SA','Coombe'
13211
+ 'AU','5267','SA','Keith'
13212
+ 'AU','5267','SA','Laffer'
13213
+ 'AU','5267','SA','Makin'
13214
+ 'AU','5267','SA','Mccallum'
13215
+ 'AU','5267','SA','Mount Charles'
13216
+ 'AU','5267','SA','Petherick'
13217
+ 'AU','5267','SA','Shaugh'
13218
+ 'AU','5267','SA','Sherwood'
13219
+ 'AU','5267','SA','Willalooka'
13220
+ 'AU','5267','SA','Wirrega'
13221
+ 'AU','5268','SA','Bangham'
13222
+ 'AU','5268','SA','Bordertown'
13223
+ 'AU','5268','SA','Bordertown South'
13224
+ 'AU','5268','SA','Cannawigara'
13225
+ 'AU','5268','SA','Lowan Vale'
13226
+ 'AU','5268','SA','Pooginagoric'
13227
+ 'AU','5268','SA','Senior'
13228
+ 'AU','5268','SA','Western Flat'
13229
+ 'AU','5269','SA','Pine Hill'
13230
+ 'AU','5269','SA','Wolseley'
13231
+ 'AU','5270','SA','Buckingham'
13232
+ 'AU','5270','SA','Carew'
13233
+ 'AU','5270','SA','Custon'
13234
+ 'AU','5270','SA','Kongal'
13235
+ 'AU','5270','SA','Mundulla'
13236
+ 'AU','5270','SA','Mundulla West'
13237
+ 'AU','5270','SA','Swede Flat'
13238
+ 'AU','5271','SA','Bool Lagoon'
13239
+ 'AU','5271','SA','Cadgee'
13240
+ 'AU','5271','SA','Joanna'
13241
+ 'AU','5271','SA','Keppoch'
13242
+ 'AU','5271','SA','Koppamurra'
13243
+ 'AU','5271','SA','Laurie Park'
13244
+ 'AU','5271','SA','Lochaber'
13245
+ 'AU','5271','SA','Marcollat'
13246
+ 'AU','5271','SA','Mount Light'
13247
+ 'AU','5271','SA','Moyhall'
13248
+ 'AU','5271','SA','Naracoorte'
13249
+ 'AU','5271','SA','Padthaway'
13250
+ 'AU','5271','SA','Spence'
13251
+ 'AU','5271','SA','Stewart Range'
13252
+ 'AU','5271','SA','Struan'
13253
+ 'AU','5271','SA','The Gap'
13254
+ 'AU','5271','SA','Wild Dog Valley'
13255
+ 'AU','5271','SA','Wrattonbully'
13256
+ 'AU','5272','SA','Coles'
13257
+ 'AU','5272','SA','Conmurra'
13258
+ 'AU','5272','SA','Fox'
13259
+ 'AU','5272','SA','Greenways'
13260
+ 'AU','5272','SA','Lucindale'
13261
+ 'AU','5272','SA','Woolumbool'
13262
+ 'AU','5273','SA','Avenue Range'
13263
+ 'AU','5275','SA','Blackford'
13264
+ 'AU','5275','SA','Boatswain Point'
13265
+ 'AU','5275','SA','Cape Jaffa'
13266
+ 'AU','5275','SA','Keilira'
13267
+ 'AU','5275','SA','Kingston Se'
13268
+ 'AU','5275','SA','Mount Benson'
13269
+ 'AU','5275','SA','Pinks Beach'
13270
+ 'AU','5275','SA','Reedy Creek'
13271
+ 'AU','5275','SA','Rosetown'
13272
+ 'AU','5275','SA','Sandy Grove'
13273
+ 'AU','5275','SA','Taratap'
13274
+ 'AU','5275','SA','Tilley Swamp'
13275
+ 'AU','5275','SA','Wangolina'
13276
+ 'AU','5275','SA','West Range'
13277
+ 'AU','5275','SA','Wyomi'
13278
+ 'AU','5276','SA','Bray'
13279
+ 'AU','5276','SA','Nora Creina'
13280
+ 'AU','5276','SA','Robe'
13281
+ 'AU','5277','SA','Comaum'
13282
+ 'AU','5277','SA','Glenroy'
13283
+ 'AU','5277','SA','Maaoupe'
13284
+ 'AU','5277','SA','Monbulla'
13285
+ 'AU','5277','SA','Nangwarry'
13286
+ 'AU','5277','SA','Penola'
13287
+ 'AU','5277','SA','Pleasant Park'
13288
+ 'AU','5277','SA','Tarpeena'
13289
+ 'AU','5278','SA','Kalangadoo'
13290
+ 'AU','5278','SA','Krongart'
13291
+ 'AU','5278','SA','Moerlong'
13292
+ 'AU','5278','SA','Wepar'
13293
+ 'AU','5279','SA','Koorine'
13294
+ 'AU','5279','SA','Mount Burr'
13295
+ 'AU','5279','SA','Mount Mcintyre'
13296
+ 'AU','5279','SA','Short'
13297
+ 'AU','5279','SA','Trihi'
13298
+ 'AU','5279','SA','Wattle Range East'
13299
+ 'AU','5280','SA','Beachport'
13300
+ 'AU','5280','SA','Clay Wells'
13301
+ 'AU','5280','SA','Furner'
13302
+ 'AU','5280','SA','German Creek'
13303
+ 'AU','5280','SA','German Flat'
13304
+ 'AU','5280','SA','Hatherleigh'
13305
+ 'AU','5280','SA','Kangaroo Inn'
13306
+ 'AU','5280','SA','Magarey'
13307
+ 'AU','5280','SA','Millicent'
13308
+ 'AU','5280','SA','Rendelsham'
13309
+ 'AU','5280','SA','Rocky Camp'
13310
+ 'AU','5280','SA','Sebastopol'
13311
+ 'AU','5280','SA','Southend'
13312
+ 'AU','5280','SA','Tantanoola'
13313
+ 'AU','5280','SA','Thornlea'
13314
+ 'AU','5280','SA','Wattle Range'
13315
+ 'AU','5290','SA','Mount Gambier'
13316
+ 'AU','5290','SA','Mount Gambier Dc'
13317
+ 'AU','5291','SA','Allendale East'
13318
+ 'AU','5291','SA','Blackfellows Caves'
13319
+ 'AU','5291','SA','Burrungule'
13320
+ 'AU','5291','SA','Canunda'
13321
+ 'AU','5291','SA','Cape Douglas'
13322
+ 'AU','5291','SA','Caroline'
13323
+ 'AU','5291','SA','Carpenter Rocks'
13324
+ 'AU','5291','SA','Caveton'
13325
+ 'AU','5291','SA','Compton'
13326
+ 'AU','5291','SA','Dismal Swamp'
13327
+ 'AU','5291','SA','Donovans'
13328
+ 'AU','5291','SA','Eight Mile Creek'
13329
+ 'AU','5291','SA','Glenburnie'
13330
+ 'AU','5291','SA','Glencoe'
13331
+ 'AU','5291','SA','Glencoe West'
13332
+ 'AU','5291','SA','Kongorong'
13333
+ 'AU','5291','SA','Mil\-Lel'
13334
+ 'AU','5291','SA','Mingbool'
13335
+ 'AU','5291','SA','Moorak'
13336
+ 'AU','5291','SA','Mount Gambier'
13337
+ 'AU','5291','SA','Mount Gambier East'
13338
+ 'AU','5291','SA','Mount Gambier West'
13339
+ 'AU','5291','SA','Mount Schank'
13340
+ 'AU','5291','SA','Nene Valley'
13341
+ 'AU','5291','SA','O B Flat'
13342
+ 'AU','5291','SA','Pelican Point'
13343
+ 'AU','5291','SA','Port Macdonnell'
13344
+ 'AU','5291','SA','Racecourse Bay'
13345
+ 'AU','5291','SA','Square Mile'
13346
+ 'AU','5291','SA','Suttontown'
13347
+ 'AU','5291','SA','Wandilo'
13348
+ 'AU','5291','SA','Worrolong'
13349
+ 'AU','5291','SA','Wye'
13350
+ 'AU','5291','SA','Yahl'
13351
+ 'AU','5301','SA','Carcuma'
13352
+ 'AU','5301','SA','Geranium'
13353
+ 'AU','5301','SA','Jabuk'
13354
+ 'AU','5301','SA','Moorlands'
13355
+ 'AU','5301','SA','Netherton'
13356
+ 'AU','5301','SA','Parrakie'
13357
+ 'AU','5301','SA','Peake'
13358
+ 'AU','5301','SA','Sherlock'
13359
+ 'AU','5301','SA','Wilkawatt'
13360
+ 'AU','5302','SA','Lameroo'
13361
+ 'AU','5302','SA','Ngarkat'
13362
+ 'AU','5303','SA','Parilla'
13363
+ 'AU','5304','SA','Kringin'
13364
+ 'AU','5304','SA','Peebinga'
13365
+ 'AU','5304','SA','Pinnaroo'
13366
+ 'AU','5306','SA','Wynarka'
13367
+ 'AU','5307','SA','Karoonda'
13368
+ 'AU','5307','SA','Karte'
13369
+ 'AU','5307','SA','Kulkami'
13370
+ 'AU','5307','SA','Marama'
13371
+ 'AU','5307','SA','Mootatunga'
13372
+ 'AU','5308','SA','Copeville'
13373
+ 'AU','5308','SA','Galga'
13374
+ 'AU','5308','SA','Kalyan'
13375
+ 'AU','5308','SA','Maggea'
13376
+ 'AU','5308','SA','Mantung'
13377
+ 'AU','5308','SA','Mercunda'
13378
+ 'AU','5308','SA','Perponda'
13379
+ 'AU','5309','SA','Borrika'
13380
+ 'AU','5309','SA','Halidon'
13381
+ 'AU','5309','SA','Mindarie'
13382
+ 'AU','5309','SA','Sandalwood'
13383
+ 'AU','5310','SA','Caliph'
13384
+ 'AU','5310','SA','Wanbi'
13385
+ 'AU','5311','SA','Alawoona'
13386
+ 'AU','5311','SA','Billiatt'
13387
+ 'AU','5311','SA','Bugle Hut'
13388
+ 'AU','5311','SA','Malpas'
13389
+ 'AU','5311','SA','Meribah'
13390
+ 'AU','5311','SA','Paruna'
13391
+ 'AU','5311','SA','Schell Well'
13392
+ 'AU','5311','SA','Taldra'
13393
+ 'AU','5311','SA','Woodleigh'
13394
+ 'AU','5311','SA','Wunkar'
13395
+ 'AU','5312','SA','Veitch'
13396
+ 'AU','5320','SA','Beatty'
13397
+ 'AU','5320','SA','Beaumonts'
13398
+ 'AU','5320','SA','Brenda Park'
13399
+ 'AU','5320','SA','Bundey'
13400
+ 'AU','5320','SA','Eba'
13401
+ 'AU','5320','SA','Lindley'
13402
+ 'AU','5320','SA','Maude'
13403
+ 'AU','5320','SA','Morgan'
13404
+ 'AU','5320','SA','Morphetts Flat'
13405
+ 'AU','5320','SA','Murbko'
13406
+ 'AU','5320','SA','North West Bend'
13407
+ 'AU','5320','SA','Stuart'
13408
+ 'AU','5320','SA','Wombats Rest'
13409
+ 'AU','5321','SA','Cadell'
13410
+ 'AU','5321','SA','Cadell Lagoon'
13411
+ 'AU','5322','SA','Golden Heights'
13412
+ 'AU','5322','SA','Qualco'
13413
+ 'AU','5322','SA','Ramco'
13414
+ 'AU','5322','SA','Ramco Heights'
13415
+ 'AU','5322','SA','Sunlands'
13416
+ 'AU','5330','SA','Boolgun'
13417
+ 'AU','5330','SA','Devlins Pound'
13418
+ 'AU','5330','SA','Good Hope Landing'
13419
+ 'AU','5330','SA','Holder'
13420
+ 'AU','5330','SA','Holder Siding'
13421
+ 'AU','5330','SA','Kanni'
13422
+ 'AU','5330','SA','Lowbank'
13423
+ 'AU','5330','SA','Markaranka'
13424
+ 'AU','5330','SA','Overland Corner'
13425
+ 'AU','5330','SA','Pooginook'
13426
+ 'AU','5330','SA','Stockyard Plain'
13427
+ 'AU','5330','SA','Taylorville'
13428
+ 'AU','5330','SA','Waikerie'
13429
+ 'AU','5330','SA','Woolpunda'
13430
+ 'AU','5331','SA','Kingston On Murray'
13431
+ 'AU','5332','SA','Moorook'
13432
+ 'AU','5332','SA','Moorook South'
13433
+ 'AU','5332','SA','Wappilka'
13434
+ 'AU','5332','SA','Yinkanie'
13435
+ 'AU','5333','SA','Bookpurnong'
13436
+ 'AU','5333','SA','Loxton'
13437
+ 'AU','5333','SA','Loxton North'
13438
+ 'AU','5333','SA','New Residence'
13439
+ 'AU','5333','SA','Pata'
13440
+ 'AU','5333','SA','Pyap'
13441
+ 'AU','5333','SA','Pyap West'
13442
+ 'AU','5333','SA','Taplan'
13443
+ 'AU','5340','SA','Mundic Creek'
13444
+ 'AU','5340','SA','Murtho'
13445
+ 'AU','5340','SA','Paringa'
13446
+ 'AU','5340','SA','Pike River'
13447
+ 'AU','5340','SA','Wonuarra'
13448
+ 'AU','5341','SA','Chaffey'
13449
+ 'AU','5341','SA','Cooltong'
13450
+ 'AU','5341','SA','Crescent'
13451
+ 'AU','5341','SA','Old Calperum'
13452
+ 'AU','5341','SA','Renmark'
13453
+ 'AU','5341','SA','Renmark North'
13454
+ 'AU','5341','SA','Renmark South'
13455
+ 'AU','5341','SA','Renmark West'
13456
+ 'AU','5341','SA','Yamba'
13457
+ 'AU','5342','SA','Monash'
13458
+ 'AU','5343','SA','Berri'
13459
+ 'AU','5343','SA','Gerard'
13460
+ 'AU','5343','SA','Gurra Gurra'
13461
+ 'AU','5343','SA','Katarapko'
13462
+ 'AU','5343','SA','Lyrup'
13463
+ 'AU','5343','SA','Winkie'
13464
+ 'AU','5344','SA','Glossop'
13465
+ 'AU','5345','SA','Barmera'
13466
+ 'AU','5345','SA','Loveday'
13467
+ 'AU','5345','SA','Spectacle Lake'
13468
+ 'AU','5346','SA','Cobdogla'
13469
+ 'AU','5350','SA','Rosedale'
13470
+ 'AU','5350','SA','Sandy Creek'
13471
+ 'AU','5351','SA','Altona'
13472
+ 'AU','5351','SA','Barossa Goldfields'
13473
+ 'AU','5351','SA','Cockatoo Valley'
13474
+ 'AU','5351','SA','Lyndoch'
13475
+ 'AU','5351','SA','Mount Crawford'
13476
+ 'AU','5351','SA','Pewsey Vale'
13477
+ 'AU','5351','SA','Williamstown'
13478
+ 'AU','5352','SA','Bethany'
13479
+ 'AU','5352','SA','Gomersal'
13480
+ 'AU','5352','SA','Krondorf'
13481
+ 'AU','5352','SA','Rowland Flat'
13482
+ 'AU','5352','SA','Stone Well'
13483
+ 'AU','5352','SA','Tanunda'
13484
+ 'AU','5352','SA','Vine Vale'
13485
+ 'AU','5353','SA','Angaston'
13486
+ 'AU','5353','SA','Black Hill'
13487
+ 'AU','5353','SA','Cambrai'
13488
+ 'AU','5353','SA','Flaxman Valley'
13489
+ 'AU','5353','SA','Keyneton'
13490
+ 'AU','5353','SA','Kongolia'
13491
+ 'AU','5353','SA','Moculta'
13492
+ 'AU','5353','SA','Mount Mckenzie'
13493
+ 'AU','5353','SA','Penrice'
13494
+ 'AU','5353','SA','Sedan'
13495
+ 'AU','5353','SA','Towitta'
13496
+ 'AU','5354','SA','Bakara'
13497
+ 'AU','5354','SA','Bakara Well'
13498
+ 'AU','5354','SA','Fisher'
13499
+ 'AU','5354','SA','Greenways Landing'
13500
+ 'AU','5354','SA','Langs Landing'
13501
+ 'AU','5354','SA','Marks Landing'
13502
+ 'AU','5354','SA','Naidia'
13503
+ 'AU','5354','SA','Punyelroo'
13504
+ 'AU','5354','SA','Sunnydale'
13505
+ 'AU','5354','SA','Swan Reach'
13506
+ 'AU','5355','SA','Daveyston'
13507
+ 'AU','5355','SA','Ebenezer'
13508
+ 'AU','5355','SA','Light Pass'
13509
+ 'AU','5355','SA','Marananga'
13510
+ 'AU','5355','SA','Moppa'
13511
+ 'AU','5355','SA','Nuriootpa'
13512
+ 'AU','5355','SA','Seppeltsfield'
13513
+ 'AU','5355','SA','Stockwell'
13514
+ 'AU','5356','SA','Annadale'
13515
+ 'AU','5356','SA','Dutton'
13516
+ 'AU','5356','SA','Dutton East'
13517
+ 'AU','5356','SA','Sandleton'
13518
+ 'AU','5356','SA','St Kitts'
13519
+ 'AU','5356','SA','Steinfeld'
13520
+ 'AU','5356','SA','Truro'
13521
+ 'AU','5357','SA','Blanchetown'
13522
+ 'AU','5357','SA','Mcbean Pound'
13523
+ 'AU','5357','SA','New Well'
13524
+ 'AU','5357','SA','Notts Well'
13525
+ 'AU','5357','SA','Paisley'
13526
+ 'AU','5357','SA','Wigley Flat'
13527
+ 'AU','5360','SA','Greenock'
13528
+ 'AU','5360','SA','Nain'
13529
+ 'AU','5371','SA','Morn Hill'
13530
+ 'AU','5371','SA','Roseworthy'
13531
+ 'AU','5371','SA','Shea\-Oak Log'
13532
+ 'AU','5371','SA','Templers'
13533
+ 'AU','5372','SA','Freeling'
13534
+ 'AU','5373','SA','Allendale North'
13535
+ 'AU','5373','SA','Bagot Well'
13536
+ 'AU','5373','SA','Bethel'
13537
+ 'AU','5373','SA','Fords'
13538
+ 'AU','5373','SA','Hamilton'
13539
+ 'AU','5373','SA','Kapunda'
13540
+ 'AU','5373','SA','Koonunga'
13541
+ 'AU','5373','SA','St Johns'
13542
+ 'AU','5374','SA','Australia Plains'
13543
+ 'AU','5374','SA','Bower'
13544
+ 'AU','5374','SA','Brownlow'
13545
+ 'AU','5374','SA','Buchanan'
13546
+ 'AU','5374','SA','Eudunda'
13547
+ 'AU','5374','SA','Frankton'
13548
+ 'AU','5374','SA','Hampden'
13549
+ 'AU','5374','SA','Hansborough'
13550
+ 'AU','5374','SA','Julia'
13551
+ 'AU','5374','SA','Mount Mary'
13552
+ 'AU','5374','SA','Neales Flat'
13553
+ 'AU','5374','SA','Ngapala'
13554
+ 'AU','5374','SA','Peep Hill'
13555
+ 'AU','5374','SA','Point Pass'
13556
+ 'AU','5374','SA','Sutherlands'
13557
+ 'AU','5381','SA','Brady Creek'
13558
+ 'AU','5381','SA','Bright'
13559
+ 'AU','5381','SA','Emu Downs'
13560
+ 'AU','5381','SA','Geranium Plains'
13561
+ 'AU','5381','SA','Hallelujah Hills'
13562
+ 'AU','5381','SA','Robertstown'
13563
+ 'AU','5381','SA','Rocky Plain'
13564
+ 'AU','5381','SA','Worlds End'
13565
+ 'AU','5381','SA','Worlds End Creek'
13566
+ 'AU','5400','SA','Magdalla'
13567
+ 'AU','5400','SA','Pinkerton Plains'
13568
+ 'AU','5400','SA','Wasleys'
13569
+ 'AU','5400','SA','Woolsheds'
13570
+ 'AU','5401','SA','Alma'
13571
+ 'AU','5401','SA','Hamley Bridge'
13572
+ 'AU','5401','SA','Salter Springs'
13573
+ 'AU','5410','SA','Linwood'
13574
+ 'AU','5410','SA','Stockport'
13575
+ 'AU','5411','SA','Giles Corner'
13576
+ 'AU','5411','SA','Tarlee'
13577
+ 'AU','5412','SA','Navan'
13578
+ 'AU','5412','SA','Rhynie'
13579
+ 'AU','5412','SA','Riverton'
13580
+ 'AU','5412','SA','Woolshed Flat'
13581
+ 'AU','5413','SA','Apoinga'
13582
+ 'AU','5413','SA','Black Springs'
13583
+ 'AU','5413','SA','Marrabel'
13584
+ 'AU','5413','SA','Saddleworth'
13585
+ 'AU','5413','SA','Steelton'
13586
+ 'AU','5413','SA','Tarnma'
13587
+ 'AU','5413','SA','Tothill Belt'
13588
+ 'AU','5413','SA','Tothill Creek'
13589
+ 'AU','5413','SA','Waterloo'
13590
+ 'AU','5414','SA','Manoora'
13591
+ 'AU','5415','SA','Mintaro'
13592
+ 'AU','5415','SA','Stanley'
13593
+ 'AU','5416','SA','Farrell Flat'
13594
+ 'AU','5416','SA','Porter Lagoon'
13595
+ 'AU','5417','SA','Baldina'
13596
+ 'AU','5417','SA','Booborowie'
13597
+ 'AU','5417','SA','Burra'
13598
+ 'AU','5417','SA','Burra Eastern Districts'
13599
+ 'AU','5417','SA','Gum Creek'
13600
+ 'AU','5417','SA','Hanson'
13601
+ 'AU','5417','SA','Koonoona'
13602
+ 'AU','5417','SA','Leighton'
13603
+ 'AU','5417','SA','Mongolata'
13604
+ 'AU','5417','SA','North Booborowie'
13605
+ 'AU','5418','SA','Collinsville'
13606
+ 'AU','5418','SA','Mount Bryan'
13607
+ 'AU','5419','SA','Canowie'
13608
+ 'AU','5419','SA','Hallett'
13609
+ 'AU','5419','SA','Mount Bryan East'
13610
+ 'AU','5419','SA','Pine Creek'
13611
+ 'AU','5419','SA','Ulooloo'
13612
+ 'AU','5419','SA','Willalo'
13613
+ 'AU','5419','SA','Wonna'
13614
+ 'AU','5420','SA','Canowie Belt'
13615
+ 'AU','5420','SA','Whyte Yarcowie'
13616
+ 'AU','5421','SA','Franklyn'
13617
+ 'AU','5421','SA','Terowie'
13618
+ 'AU','5422','SA','Cavenagh'
13619
+ 'AU','5422','SA','Dawson'
13620
+ 'AU','5422','SA','Erskine'
13621
+ 'AU','5422','SA','Hardy'
13622
+ 'AU','5422','SA','Mannanarie'
13623
+ 'AU','5422','SA','Minvalara'
13624
+ 'AU','5422','SA','Oodla Wirra'
13625
+ 'AU','5422','SA','Paratoo'
13626
+ 'AU','5422','SA','Parnaroo'
13627
+ 'AU','5422','SA','Peterborough'
13628
+ 'AU','5422','SA','Sunnybrae'
13629
+ 'AU','5422','SA','Ucolta'
13630
+ 'AU','5422','SA','Yatina'
13631
+ 'AU','5431','SA','Amyton'
13632
+ 'AU','5431','SA','Black Rock'
13633
+ 'AU','5431','SA','Coomooroo'
13634
+ 'AU','5431','SA','Eurelia'
13635
+ 'AU','5431','SA','Hammond'
13636
+ 'AU','5431','SA','Johnburgh'
13637
+ 'AU','5431','SA','Minburra'
13638
+ 'AU','5431','SA','Morchard'
13639
+ 'AU','5431','SA','Orroroo'
13640
+ 'AU','5431','SA','Pekina'
13641
+ 'AU','5431','SA','Tarcowie'
13642
+ 'AU','5431','SA','Walloway'
13643
+ 'AU','5431','SA','Willowie'
13644
+ 'AU','5431','SA','Yalpara'
13645
+ 'AU','5432','SA','Belton'
13646
+ 'AU','5432','SA','Carrieton'
13647
+ 'AU','5432','SA','Cradock'
13648
+ 'AU','5432','SA','Moockra'
13649
+ 'AU','5432','SA','Yanyarrie'
13650
+ 'AU','5433','SA','Bruce'
13651
+ 'AU','5433','SA','Quorn'
13652
+ 'AU','5433','SA','Saltia'
13653
+ 'AU','5433','SA','Stephenston'
13654
+ 'AU','5433','SA','Willochra'
13655
+ 'AU','5433','SA','Yarrah'
13656
+ 'AU','5434','SA','Barndioota'
13657
+ 'AU','5434','SA','Hawker'
13658
+ 'AU','5434','SA','Kanyaka'
13659
+ 'AU','5440','SA','Cockburn'
13660
+ 'AU','5440','SA','Manna Hill'
13661
+ 'AU','5440','SA','Mingary'
13662
+ 'AU','5440','SA','Nackara'
13663
+ 'AU','5440','SA','Olary'
13664
+ 'AU','5440','SA','Waukaringa'
13665
+ 'AU','5440','SA','Yunta'
13666
+ 'AU','5451','SA','Auburn'
13667
+ 'AU','5451','SA','Undalya'
13668
+ 'AU','5452','SA','Leasingham'
13669
+ 'AU','5452','SA','Watervale'
13670
+ 'AU','5453','SA','Armagh'
13671
+ 'AU','5453','SA','Barinia'
13672
+ 'AU','5453','SA','Benbournie'
13673
+ 'AU','5453','SA','Boconnoc Park'
13674
+ 'AU','5453','SA','Clare'
13675
+ 'AU','5453','SA','Emu Flat'
13676
+ 'AU','5453','SA','Gillentown'
13677
+ 'AU','5453','SA','Hill River'
13678
+ 'AU','5453','SA','Hoyleton'
13679
+ 'AU','5453','SA','Kybunga'
13680
+ 'AU','5453','SA','Penwortham'
13681
+ 'AU','5453','SA','Polish Hill River'
13682
+ 'AU','5453','SA','Sevenhill'
13683
+ 'AU','5453','SA','Spring Farm'
13684
+ 'AU','5453','SA','Spring Gully'
13685
+ 'AU','5453','SA','Stanley Flat'
13686
+ 'AU','5454','SA','Andrews'
13687
+ 'AU','5454','SA','Broughton River Valley'
13688
+ 'AU','5454','SA','Euromina'
13689
+ 'AU','5454','SA','Hacklins Corner'
13690
+ 'AU','5454','SA','Mayfield'
13691
+ 'AU','5454','SA','Spalding'
13692
+ 'AU','5454','SA','Washpool'
13693
+ 'AU','5455','SA','Hilltown'
13694
+ 'AU','5460','SA','Barabba'
13695
+ 'AU','5460','SA','Owen'
13696
+ 'AU','5460','SA','Pinery'
13697
+ 'AU','5460','SA','Stockyard Creek'
13698
+ 'AU','5461','SA','Balaklava'
13699
+ 'AU','5461','SA','Bowillia'
13700
+ 'AU','5461','SA','Dalkey'
13701
+ 'AU','5461','SA','Erith'
13702
+ 'AU','5461','SA','Everard Central'
13703
+ 'AU','5461','SA','Goyder'
13704
+ 'AU','5461','SA','Halbury'
13705
+ 'AU','5461','SA','Hoskin Corner'
13706
+ 'AU','5461','SA','Mount Templeton'
13707
+ 'AU','5461','SA','Saints'
13708
+ 'AU','5461','SA','Stow'
13709
+ 'AU','5461','SA','Watchman'
13710
+ 'AU','5461','SA','Whitwarta'
13711
+ 'AU','5462','SA','Blyth'
13712
+ 'AU','5464','SA','Anama'
13713
+ 'AU','5464','SA','Brinkworth'
13714
+ 'AU','5464','SA','Bungaree'
13715
+ 'AU','5464','SA','Condowie'
13716
+ 'AU','5464','SA','Hart'
13717
+ 'AU','5464','SA','Koolunga'
13718
+ 'AU','5464','SA','Marola'
13719
+ 'AU','5464','SA','Rochester'
13720
+ 'AU','5470','SA','Yacka'
13721
+ 'AU','5471','SA','Gulnare'
13722
+ 'AU','5472','SA','Georgetown'
13723
+ 'AU','5473','SA','Gladstone'
13724
+ 'AU','5480','SA','Appila'
13725
+ 'AU','5480','SA','Laura'
13726
+ 'AU','5480','SA','Stone Hut'
13727
+ 'AU','5481','SA','Bangor'
13728
+ 'AU','5481','SA','Murray Town'
13729
+ 'AU','5481','SA','Wirrabara'
13730
+ 'AU','5481','SA','Wongyarra'
13731
+ 'AU','5482','SA','Booleroo Centre'
13732
+ 'AU','5482','SA','Wepowie'
13733
+ 'AU','5483','SA','Melrose'
13734
+ 'AU','5485','SA','Wilmington'
13735
+ 'AU','5490','SA','Caltowie'
13736
+ 'AU','5490','SA','Caltowie North'
13737
+ 'AU','5490','SA','Caltowie West'
13738
+ 'AU','5491','SA','Belalie East'
13739
+ 'AU','5491','SA','Belalie North'
13740
+ 'AU','5491','SA','Bundaleer Gardens'
13741
+ 'AU','5491','SA','Bundaleer North'
13742
+ 'AU','5491','SA','Hornsdale'
13743
+ 'AU','5491','SA','Jamestown'
13744
+ 'AU','5491','SA','West Bundaleer'
13745
+ 'AU','5493','SA','Yongala'
13746
+ 'AU','5495','SA','Baroota'
13747
+ 'AU','5495','SA','Germein Bay'
13748
+ 'AU','5495','SA','Mambray Creek'
13749
+ 'AU','5495','SA','Nectar Brook'
13750
+ 'AU','5495','SA','Port Flinders'
13751
+ 'AU','5495','SA','Port Germein'
13752
+ 'AU','5501','SA','Avon'
13753
+ 'AU','5501','SA','Calomba'
13754
+ 'AU','5501','SA','Dublin'
13755
+ 'AU','5501','SA','Lewiston'
13756
+ 'AU','5501','SA','Long Plains'
13757
+ 'AU','5501','SA','Lower Light'
13758
+ 'AU','5501','SA','Middle Beach'
13759
+ 'AU','5501','SA','Parham'
13760
+ 'AU','5501','SA','Port Gawler'
13761
+ 'AU','5501','SA','Thompson Beach'
13762
+ 'AU','5501','SA','Two Wells'
13763
+ 'AU','5501','SA','Webb Beach'
13764
+ 'AU','5501','SA','Wild Horse Plains'
13765
+ 'AU','5501','SA','Windsor'
13766
+ 'AU','5502','SA','Fischer'
13767
+ 'AU','5502','SA','Grace Plains'
13768
+ 'AU','5502','SA','Korunye'
13769
+ 'AU','5502','SA','Mallala'
13770
+ 'AU','5502','SA','Red Banks'
13771
+ 'AU','5502','SA','Reeves Plains'
13772
+ 'AU','5510','SA','Lochiel'
13773
+ 'AU','5520','SA','Barunga Gap'
13774
+ 'AU','5520','SA','Bumbunga'
13775
+ 'AU','5520','SA','Burnsfield'
13776
+ 'AU','5520','SA','Gleeson Hill'
13777
+ 'AU','5520','SA','Snowtown'
13778
+ 'AU','5520','SA','Wokurna'
13779
+ 'AU','5521','SA','Redhill'
13780
+ 'AU','5522','SA','Fisherman Bay'
13781
+ 'AU','5522','SA','Lower Broughton'
13782
+ 'AU','5522','SA','Port Broughton'
13783
+ 'AU','5522','SA','Ward Hill'
13784
+ 'AU','5523','SA','Beetaloo'
13785
+ 'AU','5523','SA','Clements Gap'
13786
+ 'AU','5523','SA','Crystal Brook'
13787
+ 'AU','5523','SA','Huddleston'
13788
+ 'AU','5523','SA','Merriton'
13789
+ 'AU','5523','SA','Narridy'
13790
+ 'AU','5523','SA','Nurom'
13791
+ 'AU','5523','SA','Wandearah'
13792
+ 'AU','5523','SA','Wandearah East'
13793
+ 'AU','5523','SA','Wandearah West'
13794
+ 'AU','5540','SA','Bungama'
13795
+ 'AU','5540','SA','Coonamia'
13796
+ 'AU','5540','SA','Napperby'
13797
+ 'AU','5540','SA','Nelshaby'
13798
+ 'AU','5540','SA','Pirie East'
13799
+ 'AU','5540','SA','Port Davis'
13800
+ 'AU','5540','SA','Port Pirie'
13801
+ 'AU','5540','SA','Port Pirie South'
13802
+ 'AU','5540','SA','Port Pirie West'
13803
+ 'AU','5540','SA','Risdon Park'
13804
+ 'AU','5540','SA','Risdon Park South'
13805
+ 'AU','5540','SA','Solomontown'
13806
+ 'AU','5540','SA','Telowie'
13807
+ 'AU','5540','SA','Warnertown'
13808
+ 'AU','5550','SA','Beaufort'
13809
+ 'AU','5550','SA','Bowmans'
13810
+ 'AU','5550','SA','Inkerman'
13811
+ 'AU','5550','SA','Kallora'
13812
+ 'AU','5550','SA','Nantawarra'
13813
+ 'AU','5550','SA','Port Wakefield'
13814
+ 'AU','5550','SA','Proof Range'
13815
+ 'AU','5550','SA','South Hummocks'
13816
+ 'AU','5552','SA','Kainton'
13817
+ 'AU','5552','SA','Paskeville'
13818
+ 'AU','5552','SA','Sunnyvale'
13819
+ 'AU','5552','SA','Thrington'
13820
+ 'AU','5554','SA','Boors Plain'
13821
+ 'AU','5554','SA','Cunliffe'
13822
+ 'AU','5554','SA','Jericho'
13823
+ 'AU','5554','SA','Jerusalem'
13824
+ 'AU','5554','SA','Kadina'
13825
+ 'AU','5554','SA','Matta Flat'
13826
+ 'AU','5554','SA','New Town'
13827
+ 'AU','5554','SA','Thomas Plain'
13828
+ 'AU','5554','SA','Wallaroo Mines'
13829
+ 'AU','5554','SA','Willamulka'
13830
+ 'AU','5555','SA','Alford'
13831
+ 'AU','5555','SA','Collinsfield'
13832
+ 'AU','5555','SA','Dowling'
13833
+ 'AU','5555','SA','Dowlingville'
13834
+ 'AU','5555','SA','Hope Gap'
13835
+ 'AU','5555','SA','Kulpara'
13836
+ 'AU','5555','SA','Lake View'
13837
+ 'AU','5555','SA','Melton'
13838
+ 'AU','5555','SA','Mundoora'
13839
+ 'AU','5555','SA','Tickera'
13840
+ 'AU','5555','SA','Winulta'
13841
+ 'AU','5556','SA','North Beach'
13842
+ 'AU','5556','SA','Wallaroo'
13843
+ 'AU','5556','SA','Wallaroo Plain'
13844
+ 'AU','5556','SA','Warburto'
13845
+ 'AU','5558','SA','Agery'
13846
+ 'AU','5558','SA','Cross Roads'
13847
+ 'AU','5558','SA','East Moonta'
13848
+ 'AU','5558','SA','Hamley'
13849
+ 'AU','5558','SA','Kooroona'
13850
+ 'AU','5558','SA','Moonta'
13851
+ 'AU','5558','SA','Moonta Bay'
13852
+ 'AU','5558','SA','Moonta Mines'
13853
+ 'AU','5558','SA','Nalyappa'
13854
+ 'AU','5558','SA','North Moonta'
13855
+ 'AU','5558','SA','North Yelta'
13856
+ 'AU','5558','SA','Paramatta'
13857
+ 'AU','5558','SA','Port Hughes'
13858
+ 'AU','5558','SA','Yelta'
13859
+ 'AU','5560','SA','Bute'
13860
+ 'AU','5560','SA','Ninnes'
13861
+ 'AU','5570','SA','Clinton'
13862
+ 'AU','5570','SA','Clinton Centre'
13863
+ 'AU','5570','SA','Port Clinton'
13864
+ 'AU','5570','SA','Price'
13865
+ 'AU','5571','SA','Ardrossan'
13866
+ 'AU','5571','SA','Black Point'
13867
+ 'AU','5571','SA','Cunningham'
13868
+ 'AU','5571','SA','James Well'
13869
+ 'AU','5571','SA','Petersville'
13870
+ 'AU','5571','SA','Pine Point'
13871
+ 'AU','5571','SA','Rogues Point'
13872
+ 'AU','5571','SA','Sandilands'
13873
+ 'AU','5571','SA','Tiddy Widdy Beach'
13874
+ 'AU','5572','SA','Arthurton'
13875
+ 'AU','5572','SA','Port Arthur'
13876
+ 'AU','5573','SA','Balgowan'
13877
+ 'AU','5573','SA','Chinaman Wells'
13878
+ 'AU','5573','SA','Maitland'
13879
+ 'AU','5573','SA','Point Pearce'
13880
+ 'AU','5573','SA','Port Victoria'
13881
+ 'AU','5573','SA','South Kilkerran'
13882
+ 'AU','5573','SA','Urania'
13883
+ 'AU','5573','SA','Wauraltee'
13884
+ 'AU','5573','SA','Weetulta'
13885
+ 'AU','5573','SA','Yorke Valley'
13886
+ 'AU','5575','SA','Bluff Beach'
13887
+ 'AU','5575','SA','Brentwood'
13888
+ 'AU','5575','SA','Corny Point'
13889
+ 'AU','5575','SA','Couch Beach'
13890
+ 'AU','5575','SA','Hardwicke Bay'
13891
+ 'AU','5575','SA','Koolywurtie'
13892
+ 'AU','5575','SA','Marion Bay'
13893
+ 'AU','5575','SA','Minlaton'
13894
+ 'AU','5575','SA','Point Souttar'
13895
+ 'AU','5575','SA','Point Turton'
13896
+ 'AU','5575','SA','Port Julia'
13897
+ 'AU','5575','SA','Port Rickaby'
13898
+ 'AU','5575','SA','Ramsay'
13899
+ 'AU','5575','SA','Stenhouse Bay'
13900
+ 'AU','5575','SA','The Pines'
13901
+ 'AU','5575','SA','White Hut'
13902
+ 'AU','5575','SA','Wool Bay'
13903
+ 'AU','5576','SA','Honiton'
13904
+ 'AU','5576','SA','Port Moorowie'
13905
+ 'AU','5576','SA','Yorketown'
13906
+ 'AU','5577','SA','Foul Bay'
13907
+ 'AU','5577','SA','Inneston'
13908
+ 'AU','5577','SA','Warooka'
13909
+ 'AU','5580','SA','Curramulka'
13910
+ 'AU','5581','SA','Port Vincent'
13911
+ 'AU','5581','SA','Sheaoak Flat'
13912
+ 'AU','5582','SA','Port Giles'
13913
+ 'AU','5582','SA','Stansbury'
13914
+ 'AU','5583','SA','Coobowie'
13915
+ 'AU','5583','SA','Edithburgh'
13916
+ 'AU','5600','SA','Cultana'
13917
+ 'AU','5600','SA','Iron Baron'
13918
+ 'AU','5600','SA','Mullaquana'
13919
+ 'AU','5600','SA','Point Lowly'
13920
+ 'AU','5600','SA','Port Bonython'
13921
+ 'AU','5600','SA','Whyalla'
13922
+ 'AU','5600','SA','Whyalla Dc'
13923
+ 'AU','5600','SA','Whyalla Playford'
13924
+ 'AU','5601','SA','Iron Knob'
13925
+ 'AU','5602','SA','Cowell'
13926
+ 'AU','5602','SA','Lucky Bay'
13927
+ 'AU','5602','SA','Mangalo'
13928
+ 'AU','5602','SA','Midgee'
13929
+ 'AU','5602','SA','Miltalie'
13930
+ 'AU','5602','SA','Minbrie'
13931
+ 'AU','5602','SA','Mitchellville'
13932
+ 'AU','5602','SA','Port Gibbon'
13933
+ 'AU','5603','SA','Arno Bay'
13934
+ 'AU','5603','SA','Hincks'
13935
+ 'AU','5603','SA','Verran'
13936
+ 'AU','5603','SA','Wharminda'
13937
+ 'AU','5604','SA','Port Neill'
13938
+ 'AU','5605','SA','Butler'
13939
+ 'AU','5605','SA','Tumby Bay'
13940
+ 'AU','5606','SA','Kirton Point'
13941
+ 'AU','5606','SA','Port Lincoln'
13942
+ 'AU','5607','SA','Boston'
13943
+ 'AU','5607','SA','Brooker'
13944
+ 'AU','5607','SA','Charlton Gully'
13945
+ 'AU','5607','SA','Coffin Bay'
13946
+ 'AU','5607','SA','Coomunga'
13947
+ 'AU','5607','SA','Coulta'
13948
+ 'AU','5607','SA','Duck Ponds'
13949
+ 'AU','5607','SA','Fountain'
13950
+ 'AU','5607','SA','Green Patch'
13951
+ 'AU','5607','SA','Hawson'
13952
+ 'AU','5607','SA','Horse Peninsula'
13953
+ 'AU','5607','SA','Karkoo'
13954
+ 'AU','5607','SA','Kellidie Bay'
13955
+ 'AU','5607','SA','Kiana'
13956
+ 'AU','5607','SA','Koppio'
13957
+ 'AU','5607','SA','Lincoln National Park'
13958
+ 'AU','5607','SA','Lipson'
13959
+ 'AU','5607','SA','Louth Bay'
13960
+ 'AU','5607','SA','Mitchell'
13961
+ 'AU','5607','SA','Moody'
13962
+ 'AU','5607','SA','Mount Drummond'
13963
+ 'AU','5607','SA','Mount Dutton Bay'
13964
+ 'AU','5607','SA','Mount Hope'
13965
+ 'AU','5607','SA','Murdinga'
13966
+ 'AU','5607','SA','North Shields'
13967
+ 'AU','5607','SA','Peachna'
13968
+ 'AU','5607','SA','Pearlah'
13969
+ 'AU','5607','SA','Poonindie'
13970
+ 'AU','5607','SA','Port Lincoln'
13971
+ 'AU','5607','SA','Sheringa'
13972
+ 'AU','5607','SA','Sleaford'
13973
+ 'AU','5607','SA','Sullivan'
13974
+ 'AU','5607','SA','Tooligie'
13975
+ 'AU','5607','SA','Tootenilla'
13976
+ 'AU','5607','SA','Tulka'
13977
+ 'AU','5607','SA','Tulka North'
13978
+ 'AU','5607','SA','Uley'
13979
+ 'AU','5607','SA','Ungarra'
13980
+ 'AU','5607','SA','Venus Bay'
13981
+ 'AU','5607','SA','Wangary'
13982
+ 'AU','5607','SA','Wanilla'
13983
+ 'AU','5607','SA','Warrachie'
13984
+ 'AU','5607','SA','Warrow'
13985
+ 'AU','5607','SA','Warunda'
13986
+ 'AU','5607','SA','Whites Flat'
13987
+ 'AU','5607','SA','Whites River'
13988
+ 'AU','5607','SA','Yallunda Flat'
13989
+ 'AU','5608','SA','Whyalla Norrie'
13990
+ 'AU','5608','SA','Whyalla Norrie East'
13991
+ 'AU','5608','SA','Whyalla Norrie North'
13992
+ 'AU','5608','SA','Whyalla Stuart'
13993
+ 'AU','5609','SA','Whyalla Jenkins'
13994
+ 'AU','5630','SA','Edillilie'
13995
+ 'AU','5631','SA','Cockaleechie'
13996
+ 'AU','5631','SA','Cummins'
13997
+ 'AU','5632','SA','Kapinnie'
13998
+ 'AU','5632','SA','Yeelanna'
13999
+ 'AU','5633','SA','Boonerdo'
14000
+ 'AU','5633','SA','Lock'
14001
+ 'AU','5640','SA','Campoona'
14002
+ 'AU','5640','SA','Cleve'
14003
+ 'AU','5640','SA','Jamieson'
14004
+ 'AU','5640','SA','Waddikee'
14005
+ 'AU','5641','SA','Barna'
14006
+ 'AU','5641','SA','Buckleboo'
14007
+ 'AU','5641','SA','Caralue'
14008
+ 'AU','5641','SA','Cortlinye'
14009
+ 'AU','5641','SA','Cunyarie'
14010
+ 'AU','5641','SA','Kelly'
14011
+ 'AU','5641','SA','Kimba'
14012
+ 'AU','5641','SA','Moseley'
14013
+ 'AU','5641','SA','Panitya'
14014
+ 'AU','5641','SA','Pinkawillinie'
14015
+ 'AU','5641','SA','Solomon'
14016
+ 'AU','5641','SA','Wilcherry'
14017
+ 'AU','5641','SA','Yalanda'
14018
+ 'AU','5642','SA','Darke Peak'
14019
+ 'AU','5642','SA','Hambidge'
14020
+ 'AU','5642','SA','Kielpa'
14021
+ 'AU','5642','SA','Murlong'
14022
+ 'AU','5642','SA','Rudall'
14023
+ 'AU','5650','SA','Cootra'
14024
+ 'AU','5650','SA','Koongawa'
14025
+ 'AU','5650','SA','Warramboo'
14026
+ 'AU','5651','SA','Kyancutta'
14027
+ 'AU','5652','SA','Paney'
14028
+ 'AU','5652','SA','Wudinna'
14029
+ 'AU','5653','SA','Yaninee'
14030
+ 'AU','5654','SA','Cocata'
14031
+ 'AU','5654','SA','Karcultaby'
14032
+ 'AU','5654','SA','Minnipa'
14033
+ 'AU','5654','SA','Mount Damper'
14034
+ 'AU','5655','SA','Bockelberg'
14035
+ 'AU','5655','SA','Kaldoonera'
14036
+ 'AU','5655','SA','Poochera'
14037
+ 'AU','5655','SA','Pygery'
14038
+ 'AU','5660','SA','Chilpenunda'
14039
+ 'AU','5660','SA','Cungena'
14040
+ 'AU','5661','SA','Koolgera'
14041
+ 'AU','5661','SA','Pimbaacla'
14042
+ 'AU','5661','SA','Wallala'
14043
+ 'AU','5661','SA','Wirrulla'
14044
+ 'AU','5661','SA','Yantanabie'
14045
+ 'AU','5670','SA','Bramfield'
14046
+ 'AU','5670','SA','Colton'
14047
+ 'AU','5670','SA','Coolillie'
14048
+ 'AU','5670','SA','Elliston'
14049
+ 'AU','5670','SA','Kappawanta'
14050
+ 'AU','5670','SA','Mount Joy'
14051
+ 'AU','5670','SA','Mount Wedge'
14052
+ 'AU','5670','SA','Palkagee'
14053
+ 'AU','5670','SA','Polda'
14054
+ 'AU','5670','SA','Talia'
14055
+ 'AU','5670','SA','Ulyerra'
14056
+ 'AU','5671','SA','Baird Bay'
14057
+ 'AU','5671','SA','Calca'
14058
+ 'AU','5671','SA','Colley'
14059
+ 'AU','5671','SA','Mortana'
14060
+ 'AU','5671','SA','Mount Cooper'
14061
+ 'AU','5671','SA','Port Kenny'
14062
+ 'AU','5671','SA','Tyringa'
14063
+ 'AU','5671','SA','Witera'
14064
+ 'AU','5680','SA','Carawa'
14065
+ 'AU','5680','SA','Chandada'
14066
+ 'AU','5680','SA','Chinbingina'
14067
+ 'AU','5680','SA','Eba Anchorage'
14068
+ 'AU','5680','SA','Haslam'
14069
+ 'AU','5680','SA','Inkster'
14070
+ 'AU','5680','SA','Laura Bay'
14071
+ 'AU','5680','SA','Maryvale'
14072
+ 'AU','5680','SA','Mudamuckla'
14073
+ 'AU','5680','SA','Nunjikompita'
14074
+ 'AU','5680','SA','Perlubie'
14075
+ 'AU','5680','SA','Petina'
14076
+ 'AU','5680','SA','Piednippie'
14077
+ 'AU','5680','SA','Puntabie'
14078
+ 'AU','5680','SA','Pureba'
14079
+ 'AU','5680','SA','Sceale Bay'
14080
+ 'AU','5680','SA','Smoky Bay'
14081
+ 'AU','5680','SA','Streaky Bay'
14082
+ 'AU','5680','SA','Westall'
14083
+ 'AU','5680','SA','Yanerbie'
14084
+ 'AU','5690','SA','Bookabie'
14085
+ 'AU','5690','SA','Ceduna'
14086
+ 'AU','5690','SA','Charra'
14087
+ 'AU','5690','SA','Coorabie'
14088
+ 'AU','5690','SA','Denial Bay'
14089
+ 'AU','5690','SA','Fowlers Bay'
14090
+ 'AU','5690','SA','Kalanbi'
14091
+ 'AU','5690','SA','Koonibba'
14092
+ 'AU','5690','SA','Maltee'
14093
+ 'AU','5690','SA','Merghiny'
14094
+ 'AU','5690','SA','Nadia'
14095
+ 'AU','5690','SA','Nundroo'
14096
+ 'AU','5690','SA','Penong'
14097
+ 'AU','5690','SA','Thevenard'
14098
+ 'AU','5690','SA','Uworra'
14099
+ 'AU','5690','SA','Wandana'
14100
+ 'AU','5690','SA','Watraba'
14101
+ 'AU','5690','SA','White Well Corner'
14102
+ 'AU','5690','SA','Yalata'
14103
+ 'AU','5700','SA','Blanche Harbor'
14104
+ 'AU','5700','SA','Miranda'
14105
+ 'AU','5700','SA','Mundallio'
14106
+ 'AU','5700','SA','Port Augusta'
14107
+ 'AU','5700','SA','Port Augusta North'
14108
+ 'AU','5700','SA','Port Augusta West'
14109
+ 'AU','5700','SA','Port Paterson'
14110
+ 'AU','5700','SA','Wami Kata'
14111
+ 'AU','5710','SA','Arkaroola Village'
14112
+ 'AU','5710','SA','Commissariat Point'
14113
+ 'AU','5710','SA','Cook'
14114
+ 'AU','5710','SA','Glendambo'
14115
+ 'AU','5710','SA','Kingoonya'
14116
+ 'AU','5710','SA','Nonning'
14117
+ 'AU','5710','SA','Port Augusta'
14118
+ 'AU','5710','SA','Stirling North'
14119
+ 'AU','5710','SA','Tarcoola'
14120
+ 'AU','5710','SA','Winninowie'
14121
+ 'AU','5710','SA','Woolundunga'
14122
+ 'AU','5720','SA','Pimba'
14123
+ 'AU','5720','SA','Woomera'
14124
+ 'AU','5722','SA','Andamooka'
14125
+ 'AU','5723','SA','Coober Pedy'
14126
+ 'AU','5724','SA','Marla'
14127
+ 'AU','5724','SA','Mintabie'
14128
+ 'AU','5725','SA','Olympic Dam'
14129
+ 'AU','5725','SA','Roxby Downs'
14130
+ 'AU','5730','SA','Beltana'
14131
+ 'AU','5730','SA','Blinman'
14132
+ 'AU','5730','SA','Parachilna'
14133
+ 'AU','5731','SA','Coopers Creek'
14134
+ 'AU','5731','SA','Cordillo Downs'
14135
+ 'AU','5731','SA','Durham Downs'
14136
+ 'AU','5731','SA','Innamincka'
14137
+ 'AU','5731','SA','Leigh Creek'
14138
+ 'AU','5731','SA','Lyndhurst'
14139
+ 'AU','5731','SA','Merty Merty'
14140
+ 'AU','5731','SA','Moolawatana'
14141
+ 'AU','5731','SA','Witchelina'
14142
+ 'AU','5732','SA','Copley'
14143
+ 'AU','5732','SA','Nepabunna'
14144
+ 'AU','5733','SA','Farina'
14145
+ 'AU','5733','SA','Marree'
14146
+ 'AU','5734','SA','Oodnadatta'
14147
+ 'AU','5800','SA','Adelaide'
14148
+ 'AU','5810','SA','Adelaide'
14149
+ 'AU','5839','SA','Adelaide'
14150
+ 'AU','5860','SA','Adelaide Mail Centre'
14151
+ 'AU','5861','SA','Adelaide Mail Centre'
14152
+ 'AU','5862','SA','Adelaide Mail Centre'
14153
+ 'AU','5863','SA','Adelaide Mail Centre'
14154
+ 'AU','5864','SA','Adelaide Mail Centre'
14155
+ 'AU','5865','SA','Adelaide Mail Centre'
14156
+ 'AU','5866','SA','Adelaide Mail Centre'
14157
+ 'AU','5867','SA','Adelaide Mail Centre'
14158
+ 'AU','5868','SA','Adelaide Mail Centre'
14159
+ 'AU','5869','SA','Adelaide Mail Centre'
14160
+ 'AU','5870','SA','Adelaide Mail Centre'
14161
+ 'AU','5871','SA','Adelaide Mail Centre'
14162
+ 'AU','5872','SA','Adelaide Mail Centre'
14163
+ 'AU','5873','SA','Adelaide Mail Centre'
14164
+ 'AU','5874','SA','Adelaide Mail Centre'
14165
+ 'AU','5875','SA','Adelaide Mail Centre'
14166
+ 'AU','5876','SA','Adelaide Mail Centre'
14167
+ 'AU','5877','SA','Adelaide Mail Centre'
14168
+ 'AU','5878','SA','Adelaide Mail Centre'
14169
+ 'AU','5879','SA','Adelaide Mail Centre'
14170
+ 'AU','5880','SA','Adelaide Mail Centre'
14171
+ 'AU','5881','SA','Adelaide Mail Centre'
14172
+ 'AU','5882','SA','Adelaide Mail Centre'
14173
+ 'AU','5883','SA','Adelaide Mail Centre'
14174
+ 'AU','5884','SA','Adelaide Mail Centre'
14175
+ 'AU','5885','SA','Adelaide Mail Centre'
14176
+ 'AU','5886','SA','Adelaide Mail Centre'
14177
+ 'AU','5887','SA','Adelaide Mail Centre'
14178
+ 'AU','5888','SA','Adelaide Mail Centre'
14179
+ 'AU','5889','SA','Adelaide Mail Centre'
14180
+ 'AU','5890','SA','Adelaide Mail Centre'
14181
+ 'AU','5891','SA','Adelaide Mail Centre'
14182
+ 'AU','5892','SA','Adelaide Mail Centre'
14183
+ 'AU','5893','SA','Adelaide Mail Centre'
14184
+ 'AU','5894','SA','Adelaide Mail Centre'
14185
+ 'AU','5895','SA','Adelaide Mail Centre'
14186
+ 'AU','5896','SA','Adelaide Mail Centre'
14187
+ 'AU','5897','SA','Adelaide Mail Centre'
14188
+ 'AU','5898','SA','Adelaide Mail Centre'
14189
+ 'AU','5899','SA','Adelaide Mail Centre'
14190
+ 'AU','5900','SA','Adelaide Mail Centre'
14191
+ 'AU','5901','SA','Adelaide Mail Centre'
14192
+ 'AU','5902','SA','Adelaide Mail Centre'
14193
+ 'AU','5903','SA','Adelaide Mail Centre'
14194
+ 'AU','5904','SA','Adelaide Mail Centre'
14195
+ 'AU','5920','SA','Adelaide Mail Centre'
14196
+ 'AU','5942','SA','Regency Park'
14197
+ 'AU','5950','SA','Adelaide Airport'
14198
+ 'AU','5950','SA','Export Park'
14199
+ 'AU','6000','WA','City Delivery Centre'
14200
+ 'AU','6000','WA','Perth'
14201
+ 'AU','6000','WA','Perth GPO'
14202
+ 'AU','6001','WA','Perth'
14203
+ 'AU','6003','WA','Highgate'
14204
+ 'AU','6003','WA','Northbridge'
14205
+ 'AU','6004','WA','East Perth'
14206
+ 'AU','6005','WA','Kings Park'
14207
+ 'AU','6005','WA','West Perth'
14208
+ 'AU','6006','WA','North Perth'
14209
+ 'AU','6007','WA','Leederville'
14210
+ 'AU','6007','WA','West Leederville'
14211
+ 'AU','6008','WA','Daglish'
14212
+ 'AU','6008','WA','Shenton Park'
14213
+ 'AU','6008','WA','Subiaco'
14214
+ 'AU','6008','WA','Subiaco East'
14215
+ 'AU','6009','WA','Broadway Nedlands'
14216
+ 'AU','6009','WA','Crawley'
14217
+ 'AU','6009','WA','Dalkeith'
14218
+ 'AU','6009','WA','Nedlands'
14219
+ 'AU','6009','WA','Nedlands Dc'
14220
+ 'AU','6010','WA','Claremont'
14221
+ 'AU','6010','WA','Claremont North'
14222
+ 'AU','6010','WA','Karrakatta'
14223
+ 'AU','6010','WA','Mount Claremont'
14224
+ 'AU','6010','WA','Swanbourne'
14225
+ 'AU','6011','WA','Cottesloe'
14226
+ 'AU','6011','WA','Peppermint Grove'
14227
+ 'AU','6012','WA','Mosman Park'
14228
+ 'AU','6014','WA','Floreat'
14229
+ 'AU','6014','WA','Floreat Forum'
14230
+ 'AU','6014','WA','Jolimont'
14231
+ 'AU','6014','WA','Wembley'
14232
+ 'AU','6015','WA','City Beach'
14233
+ 'AU','6016','WA','Glendalough'
14234
+ 'AU','6016','WA','Mount Hawthorn'
14235
+ 'AU','6017','WA','Herdsman'
14236
+ 'AU','6017','WA','Osborne Park'
14237
+ 'AU','6017','WA','Osborne Park Dc'
14238
+ 'AU','6018','WA','Churchlands'
14239
+ 'AU','6018','WA','Doubleview'
14240
+ 'AU','6018','WA','Gwelup'
14241
+ 'AU','6018','WA','Gwelup Dc'
14242
+ 'AU','6018','WA','Innaloo'
14243
+ 'AU','6018','WA','Karrinyup'
14244
+ 'AU','6018','WA','Woodlands'
14245
+ 'AU','6019','WA','Scarborough'
14246
+ 'AU','6019','WA','Wembley Downs'
14247
+ 'AU','6020','WA','Carine'
14248
+ 'AU','6020','WA','Marmion'
14249
+ 'AU','6020','WA','North Beach'
14250
+ 'AU','6020','WA','Sorrento'
14251
+ 'AU','6020','WA','Watermans Bay'
14252
+ 'AU','6021','WA','Balcatta'
14253
+ 'AU','6021','WA','Stirling'
14254
+ 'AU','6022','WA','Hamersley'
14255
+ 'AU','6023','WA','Duncraig'
14256
+ 'AU','6024','WA','Greenwood'
14257
+ 'AU','6024','WA','Warwick'
14258
+ 'AU','6025','WA','Craigie'
14259
+ 'AU','6025','WA','Hillarys'
14260
+ 'AU','6025','WA','Kallaroo'
14261
+ 'AU','6025','WA','Padbury'
14262
+ 'AU','6026','WA','Kingsley'
14263
+ 'AU','6026','WA','Woodvale'
14264
+ 'AU','6027','WA','Beldon'
14265
+ 'AU','6027','WA','Connolly'
14266
+ 'AU','6027','WA','Edgewater'
14267
+ 'AU','6027','WA','Heathridge'
14268
+ 'AU','6027','WA','Joondalup'
14269
+ 'AU','6027','WA','Joondalup Dc'
14270
+ 'AU','6027','WA','Mullaloo'
14271
+ 'AU','6027','WA','Ocean Reef'
14272
+ 'AU','6028','WA','Burns Beach'
14273
+ 'AU','6028','WA','Currambine'
14274
+ 'AU','6028','WA','Iluka'
14275
+ 'AU','6028','WA','Kinross'
14276
+ 'AU','6029','WA','Trigg'
14277
+ 'AU','6030','WA','Clarkson'
14278
+ 'AU','6030','WA','Merriwa'
14279
+ 'AU','6030','WA','Mindarie'
14280
+ 'AU','6030','WA','Quinns Rocks'
14281
+ 'AU','6030','WA','Ridgewood'
14282
+ 'AU','6030','WA','Tamala Park'
14283
+ 'AU','6031','WA','Banksia Grove'
14284
+ 'AU','6031','WA','Carramar'
14285
+ 'AU','6031','WA','Neerabup'
14286
+ 'AU','6032','WA','Nowergup'
14287
+ 'AU','6033','WA','Carabooda'
14288
+ 'AU','6034','WA','Eglinton'
14289
+ 'AU','6035','WA','Yanchep'
14290
+ 'AU','6036','WA','Butler'
14291
+ 'AU','6036','WA','Jindalee'
14292
+ 'AU','6037','WA','Two Rocks'
14293
+ 'AU','6038','WA','Alkimos'
14294
+ 'AU','6041','WA','Caraban'
14295
+ 'AU','6041','WA','Gabbadah'
14296
+ 'AU','6041','WA','Guilderton'
14297
+ 'AU','6041','WA','Wilbinga'
14298
+ 'AU','6041','WA','Woodridge'
14299
+ 'AU','6042','WA','Seabird'
14300
+ 'AU','6043','WA','Breton Bay'
14301
+ 'AU','6043','WA','Ledge Point'
14302
+ 'AU','6044','WA','Karakin'
14303
+ 'AU','6044','WA','Lancelin'
14304
+ 'AU','6044','WA','Nilgen'
14305
+ 'AU','6044','WA','Wedge Island'
14306
+ 'AU','6050','WA','Coolbinia'
14307
+ 'AU','6050','WA','Menora'
14308
+ 'AU','6050','WA','Mount Lawley'
14309
+ 'AU','6051','WA','Maylands'
14310
+ 'AU','6052','WA','Bedford'
14311
+ 'AU','6052','WA','Inglewood'
14312
+ 'AU','6053','WA','Bayswater'
14313
+ 'AU','6054','WA','Ashfield'
14314
+ 'AU','6054','WA','Bassendean'
14315
+ 'AU','6054','WA','Bassendean Dc'
14316
+ 'AU','6054','WA','Eden Hill'
14317
+ 'AU','6054','WA','Kiara'
14318
+ 'AU','6054','WA','Lockridge'
14319
+ 'AU','6055','WA','Caversham'
14320
+ 'AU','6055','WA','Guildford'
14321
+ 'AU','6055','WA','Hazelmere'
14322
+ 'AU','6055','WA','Henley Brook'
14323
+ 'AU','6055','WA','South Guildford'
14324
+ 'AU','6055','WA','West Swan'
14325
+ 'AU','6056','WA','Baskerville'
14326
+ 'AU','6056','WA','Bellevue'
14327
+ 'AU','6056','WA','Boya'
14328
+ 'AU','6056','WA','Greenmount'
14329
+ 'AU','6056','WA','Helena Valley'
14330
+ 'AU','6056','WA','Herne Hill'
14331
+ 'AU','6056','WA','Jane Brook'
14332
+ 'AU','6056','WA','Koongamia'
14333
+ 'AU','6056','WA','Middle Swan'
14334
+ 'AU','6056','WA','Midland'
14335
+ 'AU','6056','WA','Midvale'
14336
+ 'AU','6056','WA','Millendon'
14337
+ 'AU','6056','WA','Red Hill'
14338
+ 'AU','6056','WA','Stratton'
14339
+ 'AU','6056','WA','Swan View'
14340
+ 'AU','6056','WA','Viveash'
14341
+ 'AU','6056','WA','Woodbridge'
14342
+ 'AU','6057','WA','High Wycombe'
14343
+ 'AU','6057','WA','Maida Vale'
14344
+ 'AU','6058','WA','Forrestfield'
14345
+ 'AU','6059','WA','Dianella'
14346
+ 'AU','6060','WA','Dog Swamp'
14347
+ 'AU','6060','WA','Joondanna'
14348
+ 'AU','6060','WA','Tuart Hill'
14349
+ 'AU','6060','WA','Yokine'
14350
+ 'AU','6061','WA','Balga'
14351
+ 'AU','6061','WA','Mirrabooka'
14352
+ 'AU','6061','WA','Nollamara'
14353
+ 'AU','6061','WA','Westminster'
14354
+ 'AU','6062','WA','Embleton'
14355
+ 'AU','6062','WA','Morley'
14356
+ 'AU','6062','WA','Noranda'
14357
+ 'AU','6063','WA','Beechboro'
14358
+ 'AU','6064','WA','Alexander Heights'
14359
+ 'AU','6064','WA','Girrawheen'
14360
+ 'AU','6064','WA','Koondoola'
14361
+ 'AU','6064','WA','Marangaroo'
14362
+ 'AU','6065','WA','Ashby'
14363
+ 'AU','6065','WA','Darch'
14364
+ 'AU','6065','WA','Gnangara'
14365
+ 'AU','6065','WA','Hocking'
14366
+ 'AU','6065','WA','Jandabup'
14367
+ 'AU','6065','WA','Kingsway'
14368
+ 'AU','6065','WA','Landsdale'
14369
+ 'AU','6065','WA','Lexia'
14370
+ 'AU','6065','WA','Madeley'
14371
+ 'AU','6065','WA','Mariginiup'
14372
+ 'AU','6065','WA','Melaleuca'
14373
+ 'AU','6065','WA','Pearsall'
14374
+ 'AU','6065','WA','Pinjar'
14375
+ 'AU','6065','WA','Sinagra'
14376
+ 'AU','6065','WA','Tapping'
14377
+ 'AU','6065','WA','Wangara'
14378
+ 'AU','6065','WA','Wangara Dc'
14379
+ 'AU','6065','WA','Wanneroo'
14380
+ 'AU','6066','WA','Ballajura'
14381
+ 'AU','6067','WA','Cullacabardee'
14382
+ 'AU','6068','WA','Whiteman'
14383
+ 'AU','6069','WA','Aveley'
14384
+ 'AU','6069','WA','Belhus'
14385
+ 'AU','6069','WA','Brigadoon'
14386
+ 'AU','6069','WA','Ellenbrook'
14387
+ 'AU','6069','WA','Ellenbrook East'
14388
+ 'AU','6069','WA','The Vines'
14389
+ 'AU','6069','WA','Upper Swan'
14390
+ 'AU','6070','WA','Darlington'
14391
+ 'AU','6071','WA','Glen Forrest'
14392
+ 'AU','6071','WA','Hovea'
14393
+ 'AU','6072','WA','Mahogany Creek'
14394
+ 'AU','6073','WA','Mundaring'
14395
+ 'AU','6073','WA','Mundaring Dc'
14396
+ 'AU','6074','WA','Sawyers Valley'
14397
+ 'AU','6076','WA','Bickley'
14398
+ 'AU','6076','WA','Carmel'
14399
+ 'AU','6076','WA','Gooseberry Hill'
14400
+ 'AU','6076','WA','Hacketts Gully'
14401
+ 'AU','6076','WA','Kalamunda'
14402
+ 'AU','6076','WA','Lesmurdie'
14403
+ 'AU','6076','WA','Paulls Valley'
14404
+ 'AU','6076','WA','Pickering Brook'
14405
+ 'AU','6076','WA','Piesse Brook'
14406
+ 'AU','6076','WA','Reservoir'
14407
+ 'AU','6076','WA','Walliston'
14408
+ 'AU','6076','WA','Walliston Dc'
14409
+ 'AU','6081','WA','Parkerville'
14410
+ 'AU','6081','WA','Stoneville'
14411
+ 'AU','6082','WA','Bailup'
14412
+ 'AU','6082','WA','Mount Helena'
14413
+ 'AU','6083','WA','Gidgegannup'
14414
+ 'AU','6083','WA','Morangup'
14415
+ 'AU','6084','WA','Avon Valley National Park'
14416
+ 'AU','6084','WA','Bullsbrook'
14417
+ 'AU','6084','WA','Chittering'
14418
+ 'AU','6084','WA','Lower Chittering'
14419
+ 'AU','6084','WA','Walyunga National Park'
14420
+ 'AU','6090','WA','Malaga'
14421
+ 'AU','6100','WA','Burswood'
14422
+ 'AU','6100','WA','Lathlain'
14423
+ 'AU','6100','WA','Victoria Park'
14424
+ 'AU','6101','WA','Carlisle'
14425
+ 'AU','6101','WA','Carlisle North'
14426
+ 'AU','6101','WA','Carlisle South'
14427
+ 'AU','6101','WA','East Victoria Park'
14428
+ 'AU','6102','WA','Bentley'
14429
+ 'AU','6102','WA','Bentley Dc'
14430
+ 'AU','6102','WA','Bentley South'
14431
+ 'AU','6102','WA','St James'
14432
+ 'AU','6103','WA','Rivervale'
14433
+ 'AU','6104','WA','Ascot'
14434
+ 'AU','6104','WA','Belmont'
14435
+ 'AU','6104','WA','Redcliffe'
14436
+ 'AU','6105','WA','Cloverdale'
14437
+ 'AU','6105','WA','Kewdale'
14438
+ 'AU','6105','WA','Perth Airport'
14439
+ 'AU','6106','WA','Welshpool'
14440
+ 'AU','6106','WA','Welshpool Dc'
14441
+ 'AU','6107','WA','Beckenham'
14442
+ 'AU','6107','WA','Cannington'
14443
+ 'AU','6107','WA','East Cannington'
14444
+ 'AU','6107','WA','Kenwick'
14445
+ 'AU','6107','WA','Queens Park'
14446
+ 'AU','6107','WA','Wattle Grove'
14447
+ 'AU','6107','WA','Wilson'
14448
+ 'AU','6108','WA','Thornlie'
14449
+ 'AU','6109','WA','Maddington'
14450
+ 'AU','6109','WA','Orange Grove'
14451
+ 'AU','6110','WA','Gosnells'
14452
+ 'AU','6110','WA','Huntingdale'
14453
+ 'AU','6110','WA','Martin'
14454
+ 'AU','6110','WA','Southern River'
14455
+ 'AU','6111','WA','Ashendon'
14456
+ 'AU','6111','WA','Canning Mills'
14457
+ 'AU','6111','WA','Champion Lakes'
14458
+ 'AU','6111','WA','Karragullen'
14459
+ 'AU','6111','WA','Kelmscott'
14460
+ 'AU','6111','WA','Kelmscott Dc'
14461
+ 'AU','6111','WA','Lesley'
14462
+ 'AU','6111','WA','Roleystone'
14463
+ 'AU','6111','WA','Westfield'
14464
+ 'AU','6112','WA','Armadale'
14465
+ 'AU','6112','WA','Bedfordale'
14466
+ 'AU','6112','WA','Brookdale'
14467
+ 'AU','6112','WA','Forrestdale'
14468
+ 'AU','6112','WA','Harrisdale'
14469
+ 'AU','6112','WA','Mount Nasura'
14470
+ 'AU','6112','WA','Mount Richon'
14471
+ 'AU','6112','WA','Piara Waters'
14472
+ 'AU','6112','WA','Seville Grove'
14473
+ 'AU','6112','WA','Wungong'
14474
+ 'AU','6121','WA','Oakford'
14475
+ 'AU','6121','WA','Oldbury'
14476
+ 'AU','6122','WA','Byford'
14477
+ 'AU','6122','WA','Cardup'
14478
+ 'AU','6122','WA','Darling Downs'
14479
+ 'AU','6122','WA','Karrakup'
14480
+ 'AU','6123','WA','Mundijong'
14481
+ 'AU','6123','WA','Whitby'
14482
+ 'AU','6124','WA','Jarrahdale'
14483
+ 'AU','6125','WA','Hopeland'
14484
+ 'AU','6125','WA','Mardella'
14485
+ 'AU','6125','WA','Serpentine'
14486
+ 'AU','6126','WA','Keysbrook'
14487
+ 'AU','6147','WA','Langford'
14488
+ 'AU','6147','WA','Lynwood'
14489
+ 'AU','6147','WA','Parkwood'
14490
+ 'AU','6148','WA','Ferndale'
14491
+ 'AU','6148','WA','Riverton'
14492
+ 'AU','6148','WA','Rossmoyne'
14493
+ 'AU','6148','WA','Shelley'
14494
+ 'AU','6149','WA','Bull Creek'
14495
+ 'AU','6149','WA','Leeming'
14496
+ 'AU','6150','WA','Bateman'
14497
+ 'AU','6150','WA','Murdoch'
14498
+ 'AU','6150','WA','Winthrop'
14499
+ 'AU','6151','WA','Kensington'
14500
+ 'AU','6151','WA','South Perth'
14501
+ 'AU','6151','WA','South Perth Angelo St'
14502
+ 'AU','6152','WA','Como'
14503
+ 'AU','6152','WA','Karawara'
14504
+ 'AU','6152','WA','Manning'
14505
+ 'AU','6152','WA','Salter Point'
14506
+ 'AU','6152','WA','Waterford'
14507
+ 'AU','6153','WA','Applecross'
14508
+ 'AU','6153','WA','Applecross North'
14509
+ 'AU','6153','WA','Ardross'
14510
+ 'AU','6153','WA','Brentwood'
14511
+ 'AU','6153','WA','Canning Bridge Applecross'
14512
+ 'AU','6153','WA','Mount Pleasant'
14513
+ 'AU','6154','WA','Alfred Cove'
14514
+ 'AU','6154','WA','Booragoon'
14515
+ 'AU','6154','WA','Myaree'
14516
+ 'AU','6155','WA','Canning Vale'
14517
+ 'AU','6155','WA','Canning Vale Dc'
14518
+ 'AU','6155','WA','Canning Vale East'
14519
+ 'AU','6155','WA','Canning Vale South'
14520
+ 'AU','6155','WA','Willetton'
14521
+ 'AU','6156','WA','Attadale'
14522
+ 'AU','6156','WA','Melville'
14523
+ 'AU','6156','WA','Willagee'
14524
+ 'AU','6156','WA','Willagee Central'
14525
+ 'AU','6157','WA','Bicton'
14526
+ 'AU','6157','WA','Palmyra'
14527
+ 'AU','6157','WA','Palmyra Dc'
14528
+ 'AU','6158','WA','East Fremantle'
14529
+ 'AU','6159','WA','North Fremantle'
14530
+ 'AU','6160','WA','Fremantle'
14531
+ 'AU','6161','WA','Rottnest Island'
14532
+ 'AU','6162','WA','Beaconsfield'
14533
+ 'AU','6162','WA','South Fremantle'
14534
+ 'AU','6162','WA','White Gum Valley'
14535
+ 'AU','6163','WA','Bibra Lake'
14536
+ 'AU','6163','WA','Bibra Lake Dc'
14537
+ 'AU','6163','WA','Coolbellup'
14538
+ 'AU','6163','WA','Hamilton Hill'
14539
+ 'AU','6163','WA','Hilton'
14540
+ 'AU','6163','WA','Kardinya'
14541
+ 'AU','6163','WA','North Coogee'
14542
+ 'AU','6163','WA','North Lake'
14543
+ 'AU','6163','WA','O''Connor'
14544
+ 'AU','6163','WA','Samson'
14545
+ 'AU','6163','WA','Spearwood'
14546
+ 'AU','6164','WA','Atwell'
14547
+ 'AU','6164','WA','Aubin Grove'
14548
+ 'AU','6164','WA','Banjup'
14549
+ 'AU','6164','WA','Beeliar'
14550
+ 'AU','6164','WA','Cockburn Central'
14551
+ 'AU','6164','WA','Hammond Park'
14552
+ 'AU','6164','WA','Jandakot'
14553
+ 'AU','6164','WA','South Lake'
14554
+ 'AU','6164','WA','Success'
14555
+ 'AU','6164','WA','Yangebup'
14556
+ 'AU','6165','WA','Hope Valley'
14557
+ 'AU','6165','WA','Naval Base'
14558
+ 'AU','6166','WA','Coogee'
14559
+ 'AU','6166','WA','Henderson'
14560
+ 'AU','6166','WA','Munster'
14561
+ 'AU','6166','WA','Wattleup'
14562
+ 'AU','6167','WA','Anketell'
14563
+ 'AU','6167','WA','Bertram'
14564
+ 'AU','6167','WA','Calista'
14565
+ 'AU','6167','WA','Casuarina'
14566
+ 'AU','6167','WA','Kwinana Beach'
14567
+ 'AU','6167','WA','Kwinana Town Centre'
14568
+ 'AU','6167','WA','Mandogalup'
14569
+ 'AU','6167','WA','Medina'
14570
+ 'AU','6167','WA','Orelia'
14571
+ 'AU','6167','WA','Parmelia'
14572
+ 'AU','6167','WA','Postans'
14573
+ 'AU','6167','WA','The Spectacles'
14574
+ 'AU','6167','WA','Wandi'
14575
+ 'AU','6168','WA','Cooloongup'
14576
+ 'AU','6168','WA','East Rockingham'
14577
+ 'AU','6168','WA','Garden Island'
14578
+ 'AU','6168','WA','Hillman'
14579
+ 'AU','6168','WA','Peron'
14580
+ 'AU','6168','WA','Rockingham'
14581
+ 'AU','6168','WA','Rockingham Beach'
14582
+ 'AU','6168','WA','Rockingham Dc'
14583
+ 'AU','6169','WA','Safety Bay'
14584
+ 'AU','6169','WA','Shoalwater'
14585
+ 'AU','6169','WA','Waikiki'
14586
+ 'AU','6169','WA','Warnbro'
14587
+ 'AU','6170','WA','Leda'
14588
+ 'AU','6170','WA','Wellard'
14589
+ 'AU','6171','WA','Baldivis'
14590
+ 'AU','6172','WA','Port Kennedy'
14591
+ 'AU','6173','WA','Secret Harbour'
14592
+ 'AU','6174','WA','Golden Bay'
14593
+ 'AU','6175','WA','Singleton'
14594
+ 'AU','6176','WA','Karnup'
14595
+ 'AU','6180','WA','Lakelands'
14596
+ 'AU','6180','WA','Parklands'
14597
+ 'AU','6181','WA','Stake Hill'
14598
+ 'AU','6182','WA','Keralup'
14599
+ 'AU','6207','WA','Myara'
14600
+ 'AU','6207','WA','Nambeelup'
14601
+ 'AU','6207','WA','North Dandalup'
14602
+ 'AU','6207','WA','Solus'
14603
+ 'AU','6207','WA','Whittaker'
14604
+ 'AU','6208','WA','Blythewood'
14605
+ 'AU','6208','WA','Fairbridge'
14606
+ 'AU','6208','WA','Meelon'
14607
+ 'AU','6208','WA','Nirimba'
14608
+ 'AU','6208','WA','North Yunderup'
14609
+ 'AU','6208','WA','Oakley'
14610
+ 'AU','6208','WA','Pinjarra'
14611
+ 'AU','6208','WA','Point Grey'
14612
+ 'AU','6208','WA','Ravenswood'
14613
+ 'AU','6208','WA','South Yunderup'
14614
+ 'AU','6208','WA','West Pinjarra'
14615
+ 'AU','6209','WA','Barragup'
14616
+ 'AU','6209','WA','Furnissdale'
14617
+ 'AU','6210','WA','Coodanup'
14618
+ 'AU','6210','WA','Dudley Park'
14619
+ 'AU','6210','WA','Erskine'
14620
+ 'AU','6210','WA','Falcon'
14621
+ 'AU','6210','WA','Greenfields'
14622
+ 'AU','6210','WA','Halls Head'
14623
+ 'AU','6210','WA','Madora Bay'
14624
+ 'AU','6210','WA','Mandurah'
14625
+ 'AU','6210','WA','Mandurah Dc'
14626
+ 'AU','6210','WA','Mandurah East'
14627
+ 'AU','6210','WA','Mandurah North'
14628
+ 'AU','6210','WA','Meadow Springs'
14629
+ 'AU','6210','WA','San Remo'
14630
+ 'AU','6210','WA','Silver Sands'
14631
+ 'AU','6210','WA','Wannanup'
14632
+ 'AU','6211','WA','Bouvard'
14633
+ 'AU','6211','WA','Clifton'
14634
+ 'AU','6211','WA','Dawesville'
14635
+ 'AU','6211','WA','Herron'
14636
+ 'AU','6213','WA','Banksiadale'
14637
+ 'AU','6213','WA','Dwellingup'
14638
+ 'AU','6213','WA','Etmilyn'
14639
+ 'AU','6213','WA','Holyoake'
14640
+ 'AU','6213','WA','Inglehope'
14641
+ 'AU','6213','WA','Marrinup'
14642
+ 'AU','6213','WA','Teesdale'
14643
+ 'AU','6214','WA','Birchmont'
14644
+ 'AU','6214','WA','Coolup'
14645
+ 'AU','6214','WA','West Coolup'
14646
+ 'AU','6215','WA','Hamel'
14647
+ 'AU','6215','WA','Lake Clifton'
14648
+ 'AU','6215','WA','Nanga Brook'
14649
+ 'AU','6215','WA','Preston Beach'
14650
+ 'AU','6215','WA','Wagerup'
14651
+ 'AU','6215','WA','Waroona'
14652
+ 'AU','6218','WA','Yarloop'
14653
+ 'AU','6220','WA','Cookernup'
14654
+ 'AU','6220','WA','Harvey'
14655
+ 'AU','6220','WA','Hoffman'
14656
+ 'AU','6220','WA','Myalup'
14657
+ 'AU','6220','WA','Uduc'
14658
+ 'AU','6220','WA','Warawarrup'
14659
+ 'AU','6221','WA','Mornington'
14660
+ 'AU','6221','WA','Wokalup'
14661
+ 'AU','6223','WA','Benger'
14662
+ 'AU','6224','WA','Beela'
14663
+ 'AU','6224','WA','Brunswick'
14664
+ 'AU','6225','WA','Allanson'
14665
+ 'AU','6225','WA','Bowelling'
14666
+ 'AU','6225','WA','Buckingham'
14667
+ 'AU','6225','WA','Cardiff'
14668
+ 'AU','6225','WA','Collie'
14669
+ 'AU','6225','WA','Collie Burn'
14670
+ 'AU','6225','WA','Harris River'
14671
+ 'AU','6225','WA','Lyalls Mill'
14672
+ 'AU','6225','WA','Mcalinden'
14673
+ 'AU','6225','WA','Muja'
14674
+ 'AU','6225','WA','Mumballup'
14675
+ 'AU','6225','WA','Mungalup'
14676
+ 'AU','6225','WA','Noggerup'
14677
+ 'AU','6225','WA','Palmer'
14678
+ 'AU','6225','WA','Preston Settlement'
14679
+ 'AU','6225','WA','Shotts'
14680
+ 'AU','6225','WA','Worsley'
14681
+ 'AU','6225','WA','Yourdamung Lake'
14682
+ 'AU','6226','WA','Roelands'
14683
+ 'AU','6227','WA','Burekup'
14684
+ 'AU','6228','WA','Waterloo'
14685
+ 'AU','6229','WA','Picton'
14686
+ 'AU','6229','WA','Picton East'
14687
+ 'AU','6230','WA','Bunbury'
14688
+ 'AU','6230','WA','Carey Park'
14689
+ 'AU','6230','WA','College Grove'
14690
+ 'AU','6230','WA','Dalyellup'
14691
+ 'AU','6230','WA','Davenport'
14692
+ 'AU','6230','WA','East Bunbury'
14693
+ 'AU','6230','WA','Gelorup'
14694
+ 'AU','6230','WA','Glen Iris'
14695
+ 'AU','6230','WA','Pelican Point'
14696
+ 'AU','6230','WA','South Bunbury'
14697
+ 'AU','6230','WA','Usher'
14698
+ 'AU','6230','WA','Vittoria'
14699
+ 'AU','6230','WA','Withers'
14700
+ 'AU','6231','WA','Bunbury'
14701
+ 'AU','6232','WA','Eaton'
14702
+ 'AU','6232','WA','Millbridge'
14703
+ 'AU','6233','WA','Australind'
14704
+ 'AU','6233','WA','Binningup'
14705
+ 'AU','6233','WA','Leschenault'
14706
+ 'AU','6233','WA','Parkfield'
14707
+ 'AU','6233','WA','Wellesley'
14708
+ 'AU','6236','WA','Crooked Brook'
14709
+ 'AU','6236','WA','Dardanup'
14710
+ 'AU','6236','WA','Dardanup West'
14711
+ 'AU','6236','WA','Ferguson'
14712
+ 'AU','6236','WA','Henty'
14713
+ 'AU','6236','WA','Paradise'
14714
+ 'AU','6236','WA','Wellington Forest'
14715
+ 'AU','6236','WA','Wellington Mill'
14716
+ 'AU','6237','WA','Boyanup'
14717
+ 'AU','6237','WA','Elgin'
14718
+ 'AU','6237','WA','Gwindinup'
14719
+ 'AU','6237','WA','North Boyanup'
14720
+ 'AU','6237','WA','Stratham'
14721
+ 'AU','6237','WA','The Plains'
14722
+ 'AU','6239','WA','Argyle'
14723
+ 'AU','6239','WA','Beelerup'
14724
+ 'AU','6239','WA','Brookhampton'
14725
+ 'AU','6239','WA','Charley Creek'
14726
+ 'AU','6239','WA','Donnybrook'
14727
+ 'AU','6239','WA','Glen Mervyn'
14728
+ 'AU','6239','WA','Paynedale'
14729
+ 'AU','6239','WA','Queenwood'
14730
+ 'AU','6239','WA','Thomson Brook'
14731
+ 'AU','6239','WA','Upper Capel'
14732
+ 'AU','6239','WA','Yabberup'
14733
+ 'AU','6240','WA','Lowden'
14734
+ 'AU','6243','WA','Wilga'
14735
+ 'AU','6243','WA','Wilga West'
14736
+ 'AU','6244','WA','Boyup Brook'
14737
+ 'AU','6244','WA','Chowerup'
14738
+ 'AU','6244','WA','Dinninup'
14739
+ 'AU','6244','WA','Kulikup'
14740
+ 'AU','6244','WA','Mayanup'
14741
+ 'AU','6244','WA','Scotts Brook'
14742
+ 'AU','6244','WA','Tonebridge'
14743
+ 'AU','6251','WA','Brazier'
14744
+ 'AU','6251','WA','Kirup'
14745
+ 'AU','6251','WA','Newlands'
14746
+ 'AU','6252','WA','Mullalyup'
14747
+ 'AU','6253','WA','Balingup'
14748
+ 'AU','6253','WA','Grimwade'
14749
+ 'AU','6253','WA','Southampton'
14750
+ 'AU','6254','WA','Greenbushes'
14751
+ 'AU','6254','WA','North Greenbushes'
14752
+ 'AU','6255','WA','Benjinup'
14753
+ 'AU','6255','WA','Bridgetown'
14754
+ 'AU','6255','WA','Catterick'
14755
+ 'AU','6255','WA','Hester'
14756
+ 'AU','6255','WA','Hester Brook'
14757
+ 'AU','6255','WA','Kangaroo Gully'
14758
+ 'AU','6255','WA','Winnejup'
14759
+ 'AU','6256','WA','Glenlynn'
14760
+ 'AU','6256','WA','Kingston'
14761
+ 'AU','6256','WA','Maranup'
14762
+ 'AU','6256','WA','Sunnyside'
14763
+ 'AU','6256','WA','Wandillup'
14764
+ 'AU','6256','WA','Yornup'
14765
+ 'AU','6258','WA','Balbarrup'
14766
+ 'AU','6258','WA','Crowea'
14767
+ 'AU','6258','WA','Deanmill'
14768
+ 'AU','6258','WA','Diamond Tree'
14769
+ 'AU','6258','WA','Dingup'
14770
+ 'AU','6258','WA','Dixvale'
14771
+ 'AU','6258','WA','Donnelly River'
14772
+ 'AU','6258','WA','Glenoran'
14773
+ 'AU','6258','WA','Jardee'
14774
+ 'AU','6258','WA','Lake Muir'
14775
+ 'AU','6258','WA','Linfarne'
14776
+ 'AU','6258','WA','Manjimup'
14777
+ 'AU','6258','WA','Middlesex'
14778
+ 'AU','6258','WA','Mordalup'
14779
+ 'AU','6258','WA','Palgarup'
14780
+ 'AU','6258','WA','Perup'
14781
+ 'AU','6258','WA','Quinninup'
14782
+ 'AU','6258','WA','Ringbark'
14783
+ 'AU','6258','WA','Smith Brook'
14784
+ 'AU','6258','WA','Upper Warren'
14785
+ 'AU','6258','WA','Wilgarrup'
14786
+ 'AU','6258','WA','Yanmah'
14787
+ 'AU','6260','WA','Beedelup'
14788
+ 'AU','6260','WA','Biddelia'
14789
+ 'AU','6260','WA','Callcup'
14790
+ 'AU','6260','WA','Channybearup'
14791
+ 'AU','6260','WA','Collins'
14792
+ 'AU','6260','WA','Eastbrook'
14793
+ 'AU','6260','WA','Lake Jasper'
14794
+ 'AU','6260','WA','Peerabeelup'
14795
+ 'AU','6260','WA','Pemberton'
14796
+ 'AU','6260','WA','Yeagarup'
14797
+ 'AU','6262','WA','Boorara Brook'
14798
+ 'AU','6262','WA','Meerup'
14799
+ 'AU','6262','WA','Northcliffe'
14800
+ 'AU','6262','WA','Shannon'
14801
+ 'AU','6262','WA','Windy Harbour'
14802
+ 'AU','6271','WA','Capel'
14803
+ 'AU','6271','WA','Capel River'
14804
+ 'AU','6271','WA','Forrest Beach'
14805
+ 'AU','6271','WA','Peppermint Grove Beach'
14806
+ 'AU','6271','WA','Stirling Estate'
14807
+ 'AU','6275','WA','Barrabup'
14808
+ 'AU','6275','WA','Carlotta'
14809
+ 'AU','6275','WA','Cundinup'
14810
+ 'AU','6275','WA','Darradup'
14811
+ 'AU','6275','WA','East Nannup'
14812
+ 'AU','6275','WA','Jalbarragup'
14813
+ 'AU','6275','WA','Jarrahwood'
14814
+ 'AU','6275','WA','Nannup'
14815
+ 'AU','6275','WA','Scott River East'
14816
+ 'AU','6275','WA','Yoganup'
14817
+ 'AU','6280','WA','Abba River'
14818
+ 'AU','6280','WA','Abbey'
14819
+ 'AU','6280','WA','Acton Park'
14820
+ 'AU','6280','WA','Ambergate'
14821
+ 'AU','6280','WA','Anniebrook'
14822
+ 'AU','6280','WA','Boallia'
14823
+ 'AU','6280','WA','Bovell'
14824
+ 'AU','6280','WA','Broadwater'
14825
+ 'AU','6280','WA','Busselton'
14826
+ 'AU','6280','WA','Carbunup River'
14827
+ 'AU','6280','WA','Chapman Hill'
14828
+ 'AU','6280','WA','Geographe'
14829
+ 'AU','6280','WA','Hithergreen'
14830
+ 'AU','6280','WA','Jindong'
14831
+ 'AU','6280','WA','Kalgup'
14832
+ 'AU','6280','WA','Kaloorup'
14833
+ 'AU','6280','WA','Kealy'
14834
+ 'AU','6280','WA','Ludlow'
14835
+ 'AU','6280','WA','Marybrook'
14836
+ 'AU','6280','WA','Metricup'
14837
+ 'AU','6280','WA','North Jindong'
14838
+ 'AU','6280','WA','Reinscourt'
14839
+ 'AU','6280','WA','Ruabon'
14840
+ 'AU','6280','WA','Sabina River'
14841
+ 'AU','6280','WA','Siesta Park'
14842
+ 'AU','6280','WA','Tutunup'
14843
+ 'AU','6280','WA','Vasse'
14844
+ 'AU','6280','WA','Walsall'
14845
+ 'AU','6280','WA','West Busselton'
14846
+ 'AU','6280','WA','Wilyabrup'
14847
+ 'AU','6280','WA','Wonnerup'
14848
+ 'AU','6280','WA','Yalyalup'
14849
+ 'AU','6280','WA','Yelverton'
14850
+ 'AU','6280','WA','Yoongarillup'
14851
+ 'AU','6281','WA','Dunsborough'
14852
+ 'AU','6281','WA','Eagle Bay'
14853
+ 'AU','6281','WA','Naturaliste'
14854
+ 'AU','6281','WA','Quedjinup'
14855
+ 'AU','6281','WA','Quindalup'
14856
+ 'AU','6282','WA','Yallingup'
14857
+ 'AU','6282','WA','Yallingup Siding'
14858
+ 'AU','6284','WA','Baudin'
14859
+ 'AU','6284','WA','Cowaramup'
14860
+ 'AU','6284','WA','Gracetown'
14861
+ 'AU','6284','WA','Treeton'
14862
+ 'AU','6285','WA','Bramley'
14863
+ 'AU','6285','WA','Burnside'
14864
+ 'AU','6285','WA','Gnarabup'
14865
+ 'AU','6285','WA','Margaret River'
14866
+ 'AU','6285','WA','Osmington'
14867
+ 'AU','6285','WA','Prevelly'
14868
+ 'AU','6285','WA','Rosa Brook'
14869
+ 'AU','6285','WA','Rosa Glen'
14870
+ 'AU','6285','WA','Schroeder'
14871
+ 'AU','6286','WA','Boranup'
14872
+ 'AU','6286','WA','Forest Grove'
14873
+ 'AU','6286','WA','Redgate'
14874
+ 'AU','6286','WA','Witchcliffe'
14875
+ 'AU','6288','WA','Alexandra Bridge'
14876
+ 'AU','6288','WA','Courtenay'
14877
+ 'AU','6288','WA','Hamelin Bay'
14878
+ 'AU','6288','WA','Karridale'
14879
+ 'AU','6288','WA','Nillup'
14880
+ 'AU','6288','WA','Scott River'
14881
+ 'AU','6288','WA','Warner Glen'
14882
+ 'AU','6290','WA','Augusta'
14883
+ 'AU','6290','WA','Deepdene'
14884
+ 'AU','6290','WA','East Augusta'
14885
+ 'AU','6290','WA','Kudardup'
14886
+ 'AU','6290','WA','Leeuwin'
14887
+ 'AU','6290','WA','Molloy Island'
14888
+ 'AU','6302','WA','Badgin'
14889
+ 'AU','6302','WA','Balladong'
14890
+ 'AU','6302','WA','Burges'
14891
+ 'AU','6302','WA','Caljie'
14892
+ 'AU','6302','WA','Cold Harbour'
14893
+ 'AU','6302','WA','Daliak'
14894
+ 'AU','6302','WA','Flint'
14895
+ 'AU','6302','WA','Flynn'
14896
+ 'AU','6302','WA','Gilgering'
14897
+ 'AU','6302','WA','Greenhills'
14898
+ 'AU','6302','WA','Gwambygine'
14899
+ 'AU','6302','WA','Inkpen'
14900
+ 'AU','6302','WA','Kauring'
14901
+ 'AU','6302','WA','Malebelling'
14902
+ 'AU','6302','WA','Mount Hardey'
14903
+ 'AU','6302','WA','Mount Observation'
14904
+ 'AU','6302','WA','Narraloggan'
14905
+ 'AU','6302','WA','Quellington'
14906
+ 'AU','6302','WA','St Ronans'
14907
+ 'AU','6302','WA','Talbot'
14908
+ 'AU','6302','WA','Talbot West'
14909
+ 'AU','6302','WA','Wilberforce'
14910
+ 'AU','6302','WA','York'
14911
+ 'AU','6304','WA','Bally Bally'
14912
+ 'AU','6304','WA','Beverley'
14913
+ 'AU','6304','WA','Dale'
14914
+ 'AU','6304','WA','East Beverley'
14915
+ 'AU','6304','WA','Kokeby'
14916
+ 'AU','6304','WA','Morbinning'
14917
+ 'AU','6304','WA','Westdale'
14918
+ 'AU','6306','WA','Aldersyde'
14919
+ 'AU','6306','WA','Brookton'
14920
+ 'AU','6306','WA','Bulyee'
14921
+ 'AU','6306','WA','Jelcobine'
14922
+ 'AU','6306','WA','Kweda'
14923
+ 'AU','6308','WA','Codjatotine'
14924
+ 'AU','6308','WA','Dwarda'
14925
+ 'AU','6308','WA','East Pingelly'
14926
+ 'AU','6308','WA','Gillimanning'
14927
+ 'AU','6308','WA','Hastings'
14928
+ 'AU','6308','WA','Pingelly'
14929
+ 'AU','6308','WA','Pumphreys Bridge'
14930
+ 'AU','6308','WA','Springs'
14931
+ 'AU','6308','WA','Wandering'
14932
+ 'AU','6308','WA','West Pingelly'
14933
+ 'AU','6309','WA','East Popanyinning'
14934
+ 'AU','6309','WA','Popanyinning'
14935
+ 'AU','6309','WA','Stratherne'
14936
+ 'AU','6309','WA','West Popanyinning'
14937
+ 'AU','6311','WA','Commodine'
14938
+ 'AU','6311','WA','Contine'
14939
+ 'AU','6311','WA','Cuballing'
14940
+ 'AU','6311','WA','Dryandra'
14941
+ 'AU','6311','WA','Lol Gray'
14942
+ 'AU','6311','WA','Townsendale'
14943
+ 'AU','6311','WA','Wardering'
14944
+ 'AU','6311','WA','Yornaning'
14945
+ 'AU','6312','WA','Boundain'
14946
+ 'AU','6312','WA','Dumberning'
14947
+ 'AU','6312','WA','Hillside'
14948
+ 'AU','6312','WA','Minigin'
14949
+ 'AU','6312','WA','Narrogin'
14950
+ 'AU','6312','WA','Narrogin Valley'
14951
+ 'AU','6312','WA','Nomans Lake'
14952
+ 'AU','6312','WA','Toolibin'
14953
+ 'AU','6312','WA','Yilliminning'
14954
+ 'AU','6313','WA','Highbury'
14955
+ 'AU','6315','WA','Arthur River'
14956
+ 'AU','6315','WA','Ballaying'
14957
+ 'AU','6315','WA','Cancanning'
14958
+ 'AU','6315','WA','Collanilling'
14959
+ 'AU','6315','WA','Dongolocking'
14960
+ 'AU','6315','WA','Gundaring'
14961
+ 'AU','6315','WA','Jaloran'
14962
+ 'AU','6315','WA','Lime Lake'
14963
+ 'AU','6315','WA','Minding'
14964
+ 'AU','6315','WA','Piesseville'
14965
+ 'AU','6315','WA','Wagin'
14966
+ 'AU','6315','WA','Wedgecarrup'
14967
+ 'AU','6316','WA','Boyerine'
14968
+ 'AU','6316','WA','Cartmeticup'
14969
+ 'AU','6316','WA','Glencoe'
14970
+ 'AU','6316','WA','Kenmare'
14971
+ 'AU','6316','WA','Westwood'
14972
+ 'AU','6316','WA','Woodanilling'
14973
+ 'AU','6317','WA','Badgebup'
14974
+ 'AU','6317','WA','Bullock Hills'
14975
+ 'AU','6317','WA','Carrolup'
14976
+ 'AU','6317','WA','Coblinine'
14977
+ 'AU','6317','WA','Coyrecup'
14978
+ 'AU','6317','WA','Datatine'
14979
+ 'AU','6317','WA','Ewlyamartup'
14980
+ 'AU','6317','WA','Katanning'
14981
+ 'AU','6317','WA','Marracoonda'
14982
+ 'AU','6317','WA','Moojebing'
14983
+ 'AU','6317','WA','Murdong'
14984
+ 'AU','6317','WA','Pinwernying'
14985
+ 'AU','6317','WA','South Datatine'
14986
+ 'AU','6317','WA','South Glencoe'
14987
+ 'AU','6318','WA','Broomehill'
14988
+ 'AU','6318','WA','Broomehill East'
14989
+ 'AU','6318','WA','Broomehill Village'
14990
+ 'AU','6318','WA','Broomehill West'
14991
+ 'AU','6320','WA','Bobalong'
14992
+ 'AU','6320','WA','Borderdale'
14993
+ 'AU','6320','WA','Dartnall'
14994
+ 'AU','6320','WA','Lake Toolbrunup'
14995
+ 'AU','6320','WA','Moonies Hill'
14996
+ 'AU','6320','WA','Tambellup'
14997
+ 'AU','6320','WA','Wansbrough'
14998
+ 'AU','6321','WA','Cranbrook'
14999
+ 'AU','6322','WA','Tenterden'
15000
+ 'AU','6323','WA','Kendenup'
15001
+ 'AU','6324','WA','Denbarker'
15002
+ 'AU','6324','WA','Forest Hill'
15003
+ 'AU','6324','WA','Mount Barker'
15004
+ 'AU','6324','WA','Perillup'
15005
+ 'AU','6324','WA','Porongurup'
15006
+ 'AU','6324','WA','South Stirling'
15007
+ 'AU','6324','WA','Takalarup'
15008
+ 'AU','6324','WA','Woogenellup'
15009
+ 'AU','6326','WA','Narrikup'
15010
+ 'AU','6327','WA','Redmond'
15011
+ 'AU','6327','WA','Redmond West'
15012
+ 'AU','6328','WA','Cheynes'
15013
+ 'AU','6328','WA','Gnowellen'
15014
+ 'AU','6328','WA','Green Range'
15015
+ 'AU','6328','WA','Kojaneerup South'
15016
+ 'AU','6328','WA','Manypeaks'
15017
+ 'AU','6328','WA','Mettler'
15018
+ 'AU','6328','WA','Palmdale'
15019
+ 'AU','6328','WA','Wellstead'
15020
+ 'AU','6330','WA','Albany'
15021
+ 'AU','6330','WA','Bayonet Head'
15022
+ 'AU','6330','WA','Big Grove'
15023
+ 'AU','6330','WA','Bornholm'
15024
+ 'AU','6330','WA','Centennial Park'
15025
+ 'AU','6330','WA','Collingwood Heights'
15026
+ 'AU','6330','WA','Collingwood Park'
15027
+ 'AU','6330','WA','Cuthbert'
15028
+ 'AU','6330','WA','Drome'
15029
+ 'AU','6330','WA','Elleker'
15030
+ 'AU','6330','WA','Emu Point'
15031
+ 'AU','6330','WA','Frenchman Bay'
15032
+ 'AU','6330','WA','Gledhow'
15033
+ 'AU','6330','WA','Goode Beach'
15034
+ 'AU','6330','WA','Green Valley'
15035
+ 'AU','6330','WA','Kalgan'
15036
+ 'AU','6330','WA','King River'
15037
+ 'AU','6330','WA','Kronkup'
15038
+ 'AU','6330','WA','Lange'
15039
+ 'AU','6330','WA','Little Grove'
15040
+ 'AU','6330','WA','Lockyer'
15041
+ 'AU','6330','WA','Lower King'
15042
+ 'AU','6330','WA','Lowlands'
15043
+ 'AU','6330','WA','Marbelup'
15044
+ 'AU','6330','WA','Mckail'
15045
+ 'AU','6330','WA','Middleton Beach'
15046
+ 'AU','6330','WA','Millbrook'
15047
+ 'AU','6330','WA','Milpara'
15048
+ 'AU','6330','WA','Mira Mar'
15049
+ 'AU','6330','WA','Mount Clarence'
15050
+ 'AU','6330','WA','Mount Elphinstone'
15051
+ 'AU','6330','WA','Mount Melville'
15052
+ 'AU','6330','WA','Nanarup'
15053
+ 'AU','6330','WA','Napier'
15054
+ 'AU','6330','WA','Nullaki'
15055
+ 'AU','6330','WA','Orana'
15056
+ 'AU','6330','WA','Port Albany'
15057
+ 'AU','6330','WA','Robinson'
15058
+ 'AU','6330','WA','Sandpatch'
15059
+ 'AU','6330','WA','Seppings'
15060
+ 'AU','6330','WA','Spencer Park'
15061
+ 'AU','6330','WA','Torbay'
15062
+ 'AU','6330','WA','Torndirrup'
15063
+ 'AU','6330','WA','Vancouver Peninsula'
15064
+ 'AU','6330','WA','Walmsley'
15065
+ 'AU','6330','WA','Warrenup'
15066
+ 'AU','6330','WA','West Cape Howe'
15067
+ 'AU','6330','WA','Willyung'
15068
+ 'AU','6330','WA','Yakamia'
15069
+ 'AU','6330','WA','Youngs Siding'
15070
+ 'AU','6331','WA','Albany Dc'
15071
+ 'AU','6332','WA','Albany'
15072
+ 'AU','6333','WA','Bow Bridge'
15073
+ 'AU','6333','WA','Denmark'
15074
+ 'AU','6333','WA','Hay'
15075
+ 'AU','6333','WA','Hazelvale'
15076
+ 'AU','6333','WA','Kentdale'
15077
+ 'AU','6333','WA','Kordabup'
15078
+ 'AU','6333','WA','Mount Lindesay'
15079
+ 'AU','6333','WA','Mount Romance'
15080
+ 'AU','6333','WA','Nornalup'
15081
+ 'AU','6333','WA','Ocean Beach'
15082
+ 'AU','6333','WA','Parryville'
15083
+ 'AU','6333','WA','Peaceful Bay'
15084
+ 'AU','6333','WA','Scotsdale'
15085
+ 'AU','6333','WA','Shadforth'
15086
+ 'AU','6333','WA','Tingledale'
15087
+ 'AU','6333','WA','Trent'
15088
+ 'AU','6333','WA','William Bay'
15089
+ 'AU','6335','WA','Gnowangerup'
15090
+ 'AU','6335','WA','Jackitup'
15091
+ 'AU','6335','WA','Kebaringup'
15092
+ 'AU','6335','WA','Pallinup'
15093
+ 'AU','6336','WA','Cowalellup'
15094
+ 'AU','6336','WA','Mills Lake'
15095
+ 'AU','6336','WA','Mindarabin'
15096
+ 'AU','6336','WA','Needilup'
15097
+ 'AU','6336','WA','Ongerup'
15098
+ 'AU','6336','WA','Toompup'
15099
+ 'AU','6337','WA','Fitzgerald'
15100
+ 'AU','6337','WA','Gairdner'
15101
+ 'AU','6337','WA','Jacup'
15102
+ 'AU','6337','WA','Jerramungup'
15103
+ 'AU','6337','WA','West Fitzgerald'
15104
+ 'AU','6338','WA','Amelup'
15105
+ 'AU','6338','WA','Borden'
15106
+ 'AU','6338','WA','Boxwood Hill'
15107
+ 'AU','6338','WA','Bremer Bay'
15108
+ 'AU','6338','WA','Magitup'
15109
+ 'AU','6338','WA','Monjebup'
15110
+ 'AU','6338','WA','Nalyerlup'
15111
+ 'AU','6338','WA','North Stirlings'
15112
+ 'AU','6338','WA','Stirling Range National Park'
15113
+ 'AU','6341','WA','Nyabing'
15114
+ 'AU','6343','WA','Pingrup'
15115
+ 'AU','6346','WA','Fitzgerald River National Park'
15116
+ 'AU','6346','WA','Jerdacuttup'
15117
+ 'AU','6346','WA','Ravensthorpe'
15118
+ 'AU','6346','WA','West River'
15119
+ 'AU','6348','WA','Hopetoun'
15120
+ 'AU','6350','WA','Dumbleyung'
15121
+ 'AU','6350','WA','Nairibin'
15122
+ 'AU','6350','WA','Nippering'
15123
+ 'AU','6351','WA','Moulyinning'
15124
+ 'AU','6351','WA','North Moulyinning'
15125
+ 'AU','6352','WA','Kukerin'
15126
+ 'AU','6352','WA','Merilup'
15127
+ 'AU','6352','WA','North Kukerin'
15128
+ 'AU','6352','WA','South Kukerin'
15129
+ 'AU','6353','WA','Beenong'
15130
+ 'AU','6353','WA','Buniche'
15131
+ 'AU','6353','WA','Kuender'
15132
+ 'AU','6353','WA','Lake Grace'
15133
+ 'AU','6353','WA','Mallee Hill'
15134
+ 'AU','6353','WA','Neendaling'
15135
+ 'AU','6353','WA','North Burngup'
15136
+ 'AU','6353','WA','North Lake Grace'
15137
+ 'AU','6353','WA','South Lake Grace'
15138
+ 'AU','6353','WA','Tarin Rock'
15139
+ 'AU','6355','WA','Dunn Rock'
15140
+ 'AU','6355','WA','East Newdegate'
15141
+ 'AU','6355','WA','Holt Rock'
15142
+ 'AU','6355','WA','Lake Biddy'
15143
+ 'AU','6355','WA','Lake Camm'
15144
+ 'AU','6355','WA','Little Italy'
15145
+ 'AU','6355','WA','Magenta'
15146
+ 'AU','6355','WA','Mount Sheridan'
15147
+ 'AU','6355','WA','Newdegate'
15148
+ 'AU','6355','WA','South Newdegate'
15149
+ 'AU','6355','WA','Varley'
15150
+ 'AU','6356','WA','Lake King'
15151
+ 'AU','6356','WA','Mount Madden'
15152
+ 'AU','6357','WA','Pingaring'
15153
+ 'AU','6358','WA','Karlgarin'
15154
+ 'AU','6359','WA','Forrestania'
15155
+ 'AU','6359','WA','Hyden'
15156
+ 'AU','6361','WA','Harrismith'
15157
+ 'AU','6361','WA','Tincurrin'
15158
+ 'AU','6363','WA','Dudinin'
15159
+ 'AU','6363','WA','Walyurin'
15160
+ 'AU','6365','WA','Jilakin'
15161
+ 'AU','6365','WA','Jitarning'
15162
+ 'AU','6365','WA','Kulin'
15163
+ 'AU','6365','WA','Kulin West'
15164
+ 'AU','6367','WA','Kondinin'
15165
+ 'AU','6368','WA','South Kumminin'
15166
+ 'AU','6369','WA','Mount Walker'
15167
+ 'AU','6369','WA','Narembeen'
15168
+ 'AU','6369','WA','Wadderin'
15169
+ 'AU','6369','WA','West Holleton'
15170
+ 'AU','6369','WA','Woolocutty'
15171
+ 'AU','6370','WA','East Wickepin'
15172
+ 'AU','6370','WA','Kirk Rock'
15173
+ 'AU','6370','WA','Malyalling'
15174
+ 'AU','6370','WA','Wickepin'
15175
+ 'AU','6370','WA','Wogolin'
15176
+ 'AU','6372','WA','Yealering'
15177
+ 'AU','6373','WA','Bullaring'
15178
+ 'AU','6375','WA','Adamsvale'
15179
+ 'AU','6375','WA','Bilbarin'
15180
+ 'AU','6375','WA','Corrigin'
15181
+ 'AU','6375','WA','Gorge Rock'
15182
+ 'AU','6375','WA','Kunjin'
15183
+ 'AU','6375','WA','Kurrenkutten'
15184
+ 'AU','6383','WA','Badjaling'
15185
+ 'AU','6383','WA','Balkuling'
15186
+ 'AU','6383','WA','Cubbine'
15187
+ 'AU','6383','WA','Dangin'
15188
+ 'AU','6383','WA','Doodenanning'
15189
+ 'AU','6383','WA','Dulbelling'
15190
+ 'AU','6383','WA','Mount Stirling'
15191
+ 'AU','6383','WA','Quairading'
15192
+ 'AU','6383','WA','South Quairading'
15193
+ 'AU','6383','WA','Wamenusking'
15194
+ 'AU','6383','WA','Yoting'
15195
+ 'AU','6384','WA','Pantapin'
15196
+ 'AU','6385','WA','Kwolyin'
15197
+ 'AU','6386','WA','Shackleton'
15198
+ 'AU','6390','WA','Bannister'
15199
+ 'AU','6390','WA','Boddington'
15200
+ 'AU','6390','WA','Crossman'
15201
+ 'AU','6390','WA','Lower Hotham'
15202
+ 'AU','6390','WA','Marradong'
15203
+ 'AU','6390','WA','Mount Cooke'
15204
+ 'AU','6390','WA','Mount Wells'
15205
+ 'AU','6390','WA','North Bannister'
15206
+ 'AU','6390','WA','Ranford'
15207
+ 'AU','6390','WA','Upper Murray'
15208
+ 'AU','6390','WA','Wuraming'
15209
+ 'AU','6391','WA','Quindanning'
15210
+ 'AU','6391','WA','Williams'
15211
+ 'AU','6392','WA','Bokal'
15212
+ 'AU','6392','WA','Boolading'
15213
+ 'AU','6392','WA','Dardadine'
15214
+ 'AU','6392','WA','Darkan'
15215
+ 'AU','6392','WA','Meeking'
15216
+ 'AU','6393','WA','Cordering'
15217
+ 'AU','6393','WA','Duranillin'
15218
+ 'AU','6393','WA','Moodiarrup'
15219
+ 'AU','6393','WA','Trigwell'
15220
+ 'AU','6394','WA','Beaufort River'
15221
+ 'AU','6394','WA','Boilup'
15222
+ 'AU','6394','WA','Boscabel'
15223
+ 'AU','6394','WA','Changerup'
15224
+ 'AU','6394','WA','Muradup'
15225
+ 'AU','6394','WA','Orchid Valley'
15226
+ 'AU','6394','WA','Qualeup'
15227
+ 'AU','6395','WA','Cherry Tree Pool'
15228
+ 'AU','6395','WA','Jingalup'
15229
+ 'AU','6395','WA','Kojonup'
15230
+ 'AU','6395','WA','Lumeah'
15231
+ 'AU','6395','WA','Mobrup'
15232
+ 'AU','6395','WA','Ryansbrook'
15233
+ 'AU','6396','WA','Frankland River'
15234
+ 'AU','6397','WA','Rocky Gully'
15235
+ 'AU','6398','WA','Broke'
15236
+ 'AU','6398','WA','North Walpole'
15237
+ 'AU','6398','WA','Walpole'
15238
+ 'AU','6401','WA','Buckland'
15239
+ 'AU','6401','WA','Burlong'
15240
+ 'AU','6401','WA','Cunjardine'
15241
+ 'AU','6401','WA','Irishtown'
15242
+ 'AU','6401','WA','Jennacubbine'
15243
+ 'AU','6401','WA','Jennapullin'
15244
+ 'AU','6401','WA','Malabaine'
15245
+ 'AU','6401','WA','Meenaar'
15246
+ 'AU','6401','WA','Mokine'
15247
+ 'AU','6401','WA','Muluckine'
15248
+ 'AU','6401','WA','Mumberkine'
15249
+ 'AU','6401','WA','Muresk'
15250
+ 'AU','6401','WA','Northam'
15251
+ 'AU','6401','WA','Rossmore'
15252
+ 'AU','6401','WA','Southern Brook'
15253
+ 'AU','6401','WA','Spencers Brook'
15254
+ 'AU','6401','WA','Throssell'
15255
+ 'AU','6401','WA','Wongamine'
15256
+ 'AU','6403','WA','Grass Valley'
15257
+ 'AU','6405','WA','Greenwoods Valley'
15258
+ 'AU','6405','WA','Meckering'
15259
+ 'AU','6405','WA','Quelagetting'
15260
+ 'AU','6405','WA','Warding East'
15261
+ 'AU','6407','WA','Cunderdin'
15262
+ 'AU','6407','WA','Waeel'
15263
+ 'AU','6407','WA','Watercarrin'
15264
+ 'AU','6407','WA','Wyola West'
15265
+ 'AU','6407','WA','Youndegin'
15266
+ 'AU','6409','WA','North Tammin'
15267
+ 'AU','6409','WA','South Tammin'
15268
+ 'AU','6409','WA','Tammin'
15269
+ 'AU','6410','WA','Daadenning Creek'
15270
+ 'AU','6410','WA','Kellerberrin'
15271
+ 'AU','6410','WA','Mount Caroline'
15272
+ 'AU','6410','WA','North Kellerberrin'
15273
+ 'AU','6411','WA','Doodlakine'
15274
+ 'AU','6411','WA','South Doodlakine'
15275
+ 'AU','6412','WA','Baandee'
15276
+ 'AU','6412','WA','North Baandee'
15277
+ 'AU','6413','WA','Hines Hill'
15278
+ 'AU','6414','WA','Nangeenan'
15279
+ 'AU','6415','WA','Goomarin'
15280
+ 'AU','6415','WA','Korbel'
15281
+ 'AU','6415','WA','Merredin'
15282
+ 'AU','6415','WA','Nokaning'
15283
+ 'AU','6415','WA','Norpa'
15284
+ 'AU','6415','WA','Tandegin'
15285
+ 'AU','6418','WA','Bruce Rock'
15286
+ 'AU','6419','WA','Ardath'
15287
+ 'AU','6420','WA','Cramphorne'
15288
+ 'AU','6420','WA','Muntadgin'
15289
+ 'AU','6421','WA','Burracoppin'
15290
+ 'AU','6421','WA','South Burracoppin'
15291
+ 'AU','6421','WA','Warralakin'
15292
+ 'AU','6422','WA','Walgoolan'
15293
+ 'AU','6423','WA','Boodarockin'
15294
+ 'AU','6423','WA','Carrabin'
15295
+ 'AU','6423','WA','Warrachuppin'
15296
+ 'AU','6423','WA','Westonia'
15297
+ 'AU','6424','WA','Bodallin'
15298
+ 'AU','6424','WA','North Bodallin'
15299
+ 'AU','6424','WA','South Bodallin'
15300
+ 'AU','6425','WA','Dulyalbin'
15301
+ 'AU','6425','WA','Moorine Rock'
15302
+ 'AU','6426','WA','Corinthia'
15303
+ 'AU','6426','WA','Ghooli'
15304
+ 'AU','6426','WA','Holleton'
15305
+ 'AU','6426','WA','Marvel Loch'
15306
+ 'AU','6426','WA','Mount Hampton'
15307
+ 'AU','6426','WA','Mount Holland'
15308
+ 'AU','6426','WA','Mount Jackson'
15309
+ 'AU','6426','WA','Mount Palmer'
15310
+ 'AU','6426','WA','Parker Range'
15311
+ 'AU','6426','WA','Skeleton Rock'
15312
+ 'AU','6426','WA','South Yilgarn'
15313
+ 'AU','6426','WA','Southern Cross'
15314
+ 'AU','6426','WA','Turkey Hill'
15315
+ 'AU','6426','WA','Yellowdine'
15316
+ 'AU','6427','WA','Koolyanobbing'
15317
+ 'AU','6428','WA','Babakin'
15318
+ 'AU','6429','WA','Boorabbin'
15319
+ 'AU','6429','WA','Bullabulling'
15320
+ 'AU','6429','WA','Coolgardie'
15321
+ 'AU','6429','WA','Karramindie'
15322
+ 'AU','6429','WA','Londonderry'
15323
+ 'AU','6429','WA','Mount Burges'
15324
+ 'AU','6429','WA','Victoria Rock'
15325
+ 'AU','6429','WA','Wallaroo'
15326
+ 'AU','6430','WA','Binduli'
15327
+ 'AU','6430','WA','Broadwood'
15328
+ 'AU','6430','WA','Hannans'
15329
+ 'AU','6430','WA','Kalgoorlie'
15330
+ 'AU','6430','WA','Karlkurla'
15331
+ 'AU','6430','WA','Lamington'
15332
+ 'AU','6430','WA','Mullingar'
15333
+ 'AU','6430','WA','Piccadilly'
15334
+ 'AU','6430','WA','Somerville'
15335
+ 'AU','6430','WA','South Kalgoorlie'
15336
+ 'AU','6430','WA','West Kalgoorlie'
15337
+ 'AU','6430','WA','West Lamington'
15338
+ 'AU','6430','WA','Williamstown'
15339
+ 'AU','6430','WA','Yilkari'
15340
+ 'AU','6431','WA','Boorara'
15341
+ 'AU','6431','WA','Brown Hill'
15342
+ 'AU','6431','WA','Bulong'
15343
+ 'AU','6431','WA','Emu Flat'
15344
+ 'AU','6431','WA','Feysville'
15345
+ 'AU','6431','WA','Kanowna'
15346
+ 'AU','6431','WA','Kookynie'
15347
+ 'AU','6431','WA','Kurnalpi'
15348
+ 'AU','6431','WA','Lakewood'
15349
+ 'AU','6431','WA','Ora Banda'
15350
+ 'AU','6431','WA','Plumridge Lakes'
15351
+ 'AU','6431','WA','Trafalgar'
15352
+ 'AU','6431','WA','Warburton'
15353
+ 'AU','6432','WA','Boulder'
15354
+ 'AU','6432','WA','Fimiston'
15355
+ 'AU','6432','WA','South Boulder'
15356
+ 'AU','6432','WA','Victory Heights'
15357
+ 'AU','6433','WA','Hannans'
15358
+ 'AU','6433','WA','Kalgoorlie'
15359
+ 'AU','6434','WA','Cundeelee'
15360
+ 'AU','6434','WA','Forrest'
15361
+ 'AU','6434','WA','Parkeston'
15362
+ 'AU','6434','WA','Rawlinna'
15363
+ 'AU','6434','WA','Zanthus'
15364
+ 'AU','6436','WA','Menzies'
15365
+ 'AU','6436','WA','Ularring'
15366
+ 'AU','6437','WA','Leinster'
15367
+ 'AU','6437','WA','Sir Samuel'
15368
+ 'AU','6438','WA','Lake Darlot'
15369
+ 'AU','6438','WA','Leonora'
15370
+ 'AU','6440','WA','Bandya'
15371
+ 'AU','6440','WA','Beadell'
15372
+ 'AU','6440','WA','Cosmo Newbery'
15373
+ 'AU','6440','WA','Lake Wells'
15374
+ 'AU','6440','WA','Laverton'
15375
+ 'AU','6440','WA','Neale'
15376
+ 'AU','6442','WA','Kambalda East'
15377
+ 'AU','6442','WA','Kambalda West'
15378
+ 'AU','6443','WA','Balladonia'
15379
+ 'AU','6443','WA','Caiguna'
15380
+ 'AU','6443','WA','Cocklebiddy'
15381
+ 'AU','6443','WA','Dundas'
15382
+ 'AU','6443','WA','Eucla'
15383
+ 'AU','6443','WA','Fraser Range'
15384
+ 'AU','6443','WA','Higginsville'
15385
+ 'AU','6443','WA','Madura'
15386
+ 'AU','6443','WA','Mundrabilla'
15387
+ 'AU','6443','WA','Norseman'
15388
+ 'AU','6443','WA','Widgiemooltha'
15389
+ 'AU','6445','WA','North Cascade'
15390
+ 'AU','6445','WA','Salmon Gums'
15391
+ 'AU','6446','WA','Grass Patch'
15392
+ 'AU','6447','WA','Lort River'
15393
+ 'AU','6447','WA','Mount Ney'
15394
+ 'AU','6447','WA','Scaddan'
15395
+ 'AU','6447','WA','Wittenoom Hills'
15396
+ 'AU','6448','WA','Gibson'
15397
+ 'AU','6450','WA','Bandy Creek'
15398
+ 'AU','6450','WA','Beaumont'
15399
+ 'AU','6450','WA','Boyatup'
15400
+ 'AU','6450','WA','Cape Le Grand'
15401
+ 'AU','6450','WA','Cascade'
15402
+ 'AU','6450','WA','Castletown'
15403
+ 'AU','6450','WA','Chadwick'
15404
+ 'AU','6450','WA','Condingup'
15405
+ 'AU','6450','WA','Coomalbidgup'
15406
+ 'AU','6450','WA','Dalyup'
15407
+ 'AU','6450','WA','East Munglinup'
15408
+ 'AU','6450','WA','Esperance'
15409
+ 'AU','6450','WA','Howick'
15410
+ 'AU','6450','WA','Merivale'
15411
+ 'AU','6450','WA','Monjingup'
15412
+ 'AU','6450','WA','Munglinup'
15413
+ 'AU','6450','WA','Myrup'
15414
+ 'AU','6450','WA','Neridup'
15415
+ 'AU','6450','WA','Nulsen'
15416
+ 'AU','6450','WA','Pink Lake'
15417
+ 'AU','6450','WA','Sinclair'
15418
+ 'AU','6450','WA','West Beach'
15419
+ 'AU','6450','WA','Windabout'
15420
+ 'AU','6452','WA','Buraminya'
15421
+ 'AU','6452','WA','Cape Arid'
15422
+ 'AU','6452','WA','Israelite Bay'
15423
+ 'AU','6460','WA','Goomalling'
15424
+ 'AU','6460','WA','Hulongine'
15425
+ 'AU','6460','WA','Karranadgin'
15426
+ 'AU','6460','WA','Ucarty West'
15427
+ 'AU','6460','WA','Walyormouring'
15428
+ 'AU','6461','WA','Dowerin'
15429
+ 'AU','6461','WA','Koomberkine'
15430
+ 'AU','6462','WA','Hindmarsh'
15431
+ 'AU','6462','WA','Minnivale'
15432
+ 'AU','6462','WA','Ucarty'
15433
+ 'AU','6463','WA','Benjaberring'
15434
+ 'AU','6465','WA','Manmanning'
15435
+ 'AU','6466','WA','Cadoux'
15436
+ 'AU','6467','WA','Burakin'
15437
+ 'AU','6468','WA','Goodlands'
15438
+ 'AU','6468','WA','Kalannie'
15439
+ 'AU','6468','WA','Petrudor'
15440
+ 'AU','6470','WA','Kulja'
15441
+ 'AU','6472','WA','Beacon'
15442
+ 'AU','6472','WA','Bimbijy'
15443
+ 'AU','6472','WA','Cleary'
15444
+ 'AU','6472','WA','Karroun Hill'
15445
+ 'AU','6472','WA','Mouroubra'
15446
+ 'AU','6472','WA','Remlap'
15447
+ 'AU','6472','WA','Tampu'
15448
+ 'AU','6473','WA','North Wialki'
15449
+ 'AU','6473','WA','Wialki'
15450
+ 'AU','6475','WA','Badgerin Rock'
15451
+ 'AU','6475','WA','Booralaming'
15452
+ 'AU','6475','WA','Dukin'
15453
+ 'AU','6475','WA','Koorda'
15454
+ 'AU','6475','WA','Lake Margarette'
15455
+ 'AU','6475','WA','Mollerin'
15456
+ 'AU','6475','WA','Newcarlbeon'
15457
+ 'AU','6476','WA','Gabbin'
15458
+ 'AU','6477','WA','Bencubbin'
15459
+ 'AU','6477','WA','Welbungin'
15460
+ 'AU','6479','WA','Barbalin'
15461
+ 'AU','6479','WA','Bonnie Rock'
15462
+ 'AU','6479','WA','Dandanning'
15463
+ 'AU','6479','WA','Elachbutting'
15464
+ 'AU','6479','WA','Karloning'
15465
+ 'AU','6479','WA','Lake Brown'
15466
+ 'AU','6479','WA','Mukinbudin'
15467
+ 'AU','6479','WA','Wattoning'
15468
+ 'AU','6479','WA','Wilgoyne'
15469
+ 'AU','6480','WA','Nukarni'
15470
+ 'AU','6484','WA','Bullfinch'
15471
+ 'AU','6484','WA','Ennuin'
15472
+ 'AU','6484','WA','Lake Deborah'
15473
+ 'AU','6485','WA','Cowcowing'
15474
+ 'AU','6485','WA','Korrelocking'
15475
+ 'AU','6485','WA','Nalkain'
15476
+ 'AU','6485','WA','Nembudding'
15477
+ 'AU','6485','WA','Wyalkatchem'
15478
+ 'AU','6487','WA','North Yelbeni'
15479
+ 'AU','6487','WA','South Yelbeni'
15480
+ 'AU','6487','WA','Yelbeni'
15481
+ 'AU','6488','WA','North Trayning'
15482
+ 'AU','6488','WA','South Trayning'
15483
+ 'AU','6488','WA','Trayning'
15484
+ 'AU','6489','WA','Kununoppin'
15485
+ 'AU','6489','WA','North Kununoppin'
15486
+ 'AU','6489','WA','South Kununoppin'
15487
+ 'AU','6490','WA','Burran Rock'
15488
+ 'AU','6490','WA','Chandler'
15489
+ 'AU','6490','WA','Elabbin'
15490
+ 'AU','6490','WA','Kwelkan'
15491
+ 'AU','6490','WA','Nungarin'
15492
+ 'AU','6490','WA','Talgomine'
15493
+ 'AU','6501','WA','Muchea'
15494
+ 'AU','6502','WA','Bindoon'
15495
+ 'AU','6502','WA','Bindoon Training Area'
15496
+ 'AU','6503','WA','Bambun'
15497
+ 'AU','6503','WA','Beermullah'
15498
+ 'AU','6503','WA','Boonanarring'
15499
+ 'AU','6503','WA','Breera'
15500
+ 'AU','6503','WA','Coonabidgee'
15501
+ 'AU','6503','WA','Cowalla'
15502
+ 'AU','6503','WA','Cullalla'
15503
+ 'AU','6503','WA','Gingin'
15504
+ 'AU','6503','WA','Ginginup'
15505
+ 'AU','6503','WA','Granville'
15506
+ 'AU','6503','WA','Lennard Brook'
15507
+ 'AU','6503','WA','Mindarra'
15508
+ 'AU','6503','WA','Moondah'
15509
+ 'AU','6503','WA','Moore River National Park'
15510
+ 'AU','6503','WA','Muckenburra'
15511
+ 'AU','6503','WA','Neergabby'
15512
+ 'AU','6503','WA','Orange Springs'
15513
+ 'AU','6503','WA','Red Gully'
15514
+ 'AU','6503','WA','Wanerie'
15515
+ 'AU','6503','WA','Yeal'
15516
+ 'AU','6504','WA','Mooliabeenee'
15517
+ 'AU','6505','WA','Wannamal'
15518
+ 'AU','6506','WA','Mogumber'
15519
+ 'AU','6507','WA','Cataby'
15520
+ 'AU','6507','WA','Cooljarloo'
15521
+ 'AU','6507','WA','Dandaragan'
15522
+ 'AU','6507','WA','Mimegarra'
15523
+ 'AU','6507','WA','Regans Ford'
15524
+ 'AU','6507','WA','Yathroo'
15525
+ 'AU','6509','WA','Glentromie'
15526
+ 'AU','6509','WA','New Norcia'
15527
+ 'AU','6509','WA','Waddington'
15528
+ 'AU','6509','WA','Yarawindah'
15529
+ 'AU','6510','WA','Barberton'
15530
+ 'AU','6510','WA','Berkshire Valley'
15531
+ 'AU','6510','WA','Gillingarra'
15532
+ 'AU','6510','WA','Koojan'
15533
+ 'AU','6510','WA','Moora'
15534
+ 'AU','6510','WA','Walebing'
15535
+ 'AU','6511','WA','Cervantes'
15536
+ 'AU','6512','WA','Coomberdale'
15537
+ 'AU','6512','WA','Namban'
15538
+ 'AU','6513','WA','Gunyidi'
15539
+ 'AU','6513','WA','Watheroo'
15540
+ 'AU','6514','WA','Green Head'
15541
+ 'AU','6514','WA','Leeman'
15542
+ 'AU','6515','WA','Coorow'
15543
+ 'AU','6515','WA','Eganu'
15544
+ 'AU','6515','WA','Marchagee'
15545
+ 'AU','6515','WA','Waddy Forest'
15546
+ 'AU','6516','WA','Jurien Bay'
15547
+ 'AU','6517','WA','Carnamah'
15548
+ 'AU','6518','WA','Eneabba'
15549
+ 'AU','6518','WA','Warradarge'
15550
+ 'AU','6519','WA','Arrino'
15551
+ 'AU','6519','WA','Arrowsmith East'
15552
+ 'AU','6519','WA','Dudawa'
15553
+ 'AU','6519','WA','Kadathinni'
15554
+ 'AU','6519','WA','Three Springs'
15555
+ 'AU','6519','WA','Womarden'
15556
+ 'AU','6521','WA','Badgingarra'
15557
+ 'AU','6521','WA','Boothendarra'
15558
+ 'AU','6521','WA','Grey'
15559
+ 'AU','6521','WA','Hill River'
15560
+ 'AU','6521','WA','Nambung'
15561
+ 'AU','6522','WA','Bundanoon'
15562
+ 'AU','6522','WA','Holmwood'
15563
+ 'AU','6522','WA','Ikewa'
15564
+ 'AU','6522','WA','Lockier'
15565
+ 'AU','6522','WA','Mingenew'
15566
+ 'AU','6522','WA','Mooriary'
15567
+ 'AU','6522','WA','Mount Budd'
15568
+ 'AU','6522','WA','Nangetty'
15569
+ 'AU','6522','WA','Yandanooka'
15570
+ 'AU','6522','WA','Yarragadee'
15571
+ 'AU','6525','WA','Allanooka'
15572
+ 'AU','6525','WA','Arrowsmith'
15573
+ 'AU','6525','WA','Bonniefield'
15574
+ 'AU','6525','WA','Bookara'
15575
+ 'AU','6525','WA','Dongara'
15576
+ 'AU','6525','WA','Irwin'
15577
+ 'AU','6525','WA','Milo'
15578
+ 'AU','6525','WA','Mount Adams'
15579
+ 'AU','6525','WA','Mount Horner'
15580
+ 'AU','6525','WA','Port Denison'
15581
+ 'AU','6525','WA','Springfield'
15582
+ 'AU','6525','WA','Yardarino'
15583
+ 'AU','6528','WA','Mount Hill'
15584
+ 'AU','6528','WA','South Greenough'
15585
+ 'AU','6528','WA','Walkaway'
15586
+ 'AU','6530','WA','Beachlands'
15587
+ 'AU','6530','WA','Beresford'
15588
+ 'AU','6530','WA','Bluff Point'
15589
+ 'AU','6530','WA','Geraldton'
15590
+ 'AU','6530','WA','Geraldton Dc'
15591
+ 'AU','6530','WA','Houtman Abrolhos Islands'
15592
+ 'AU','6530','WA','Karloo'
15593
+ 'AU','6530','WA','Mahomets Flats'
15594
+ 'AU','6530','WA','Meru'
15595
+ 'AU','6530','WA','Moresby'
15596
+ 'AU','6530','WA','Mount Tarcoola'
15597
+ 'AU','6530','WA','Rangeway'
15598
+ 'AU','6530','WA','Spalding'
15599
+ 'AU','6530','WA','Strathalbyn'
15600
+ 'AU','6530','WA','Sunset Beach'
15601
+ 'AU','6530','WA','Tarcoola Beach'
15602
+ 'AU','6530','WA','Utakarra'
15603
+ 'AU','6530','WA','Waggrakine'
15604
+ 'AU','6530','WA','Wandina'
15605
+ 'AU','6530','WA','Webberton'
15606
+ 'AU','6530','WA','West End'
15607
+ 'AU','6530','WA','Wonthella'
15608
+ 'AU','6530','WA','Woorree'
15609
+ 'AU','6531','WA','Geraldton'
15610
+ 'AU','6532','WA','Ajana'
15611
+ 'AU','6532','WA','Binnu'
15612
+ 'AU','6532','WA','Bootenal'
15613
+ 'AU','6532','WA','Bringo'
15614
+ 'AU','6532','WA','Buller'
15615
+ 'AU','6532','WA','Burma Road'
15616
+ 'AU','6532','WA','Cape Burney'
15617
+ 'AU','6532','WA','Carrarang'
15618
+ 'AU','6532','WA','Coburn'
15619
+ 'AU','6532','WA','Coolcalalaya'
15620
+ 'AU','6532','WA','Dartmoor'
15621
+ 'AU','6532','WA','Deepdale'
15622
+ 'AU','6532','WA','Dindiloa'
15623
+ 'AU','6532','WA','Drummond Cove'
15624
+ 'AU','6532','WA','Durawah'
15625
+ 'AU','6532','WA','East Chapman'
15626
+ 'AU','6532','WA','East Nabawa'
15627
+ 'AU','6532','WA','East Yuna'
15628
+ 'AU','6532','WA','Ellendale'
15629
+ 'AU','6532','WA','Eradu'
15630
+ 'AU','6532','WA','Eradu South'
15631
+ 'AU','6532','WA','Eurardy'
15632
+ 'AU','6532','WA','Georgina'
15633
+ 'AU','6532','WA','Glenfield'
15634
+ 'AU','6532','WA','Greenough'
15635
+ 'AU','6532','WA','Hamelin Pool'
15636
+ 'AU','6532','WA','Hickety'
15637
+ 'AU','6532','WA','Howatharra'
15638
+ 'AU','6532','WA','Kojarena'
15639
+ 'AU','6532','WA','Marrah'
15640
+ 'AU','6532','WA','Meadow'
15641
+ 'AU','6532','WA','Minnenooka'
15642
+ 'AU','6532','WA','Moonyoonooka'
15643
+ 'AU','6532','WA','Mount Erin'
15644
+ 'AU','6532','WA','Nabawa'
15645
+ 'AU','6532','WA','Nanson'
15646
+ 'AU','6532','WA','Naraling'
15647
+ 'AU','6532','WA','Narngulu'
15648
+ 'AU','6532','WA','Narra Tarra'
15649
+ 'AU','6532','WA','Nerren Nerren'
15650
+ 'AU','6532','WA','Nolba'
15651
+ 'AU','6532','WA','North Eradu'
15652
+ 'AU','6532','WA','Northern Gully'
15653
+ 'AU','6532','WA','Oakajee'
15654
+ 'AU','6532','WA','Rockwell'
15655
+ 'AU','6532','WA','Rudds Gully'
15656
+ 'AU','6532','WA','Sandsprings'
15657
+ 'AU','6532','WA','South Yuna'
15658
+ 'AU','6532','WA','Tamala'
15659
+ 'AU','6532','WA','Tibradden'
15660
+ 'AU','6532','WA','Toolonga'
15661
+ 'AU','6532','WA','Valentine'
15662
+ 'AU','6532','WA','Wandana'
15663
+ 'AU','6532','WA','West Binnu'
15664
+ 'AU','6532','WA','White Peak'
15665
+ 'AU','6532','WA','Wicherina'
15666
+ 'AU','6532','WA','Wicherina South'
15667
+ 'AU','6532','WA','Yetna'
15668
+ 'AU','6532','WA','Yuna'
15669
+ 'AU','6535','WA','Alma'
15670
+ 'AU','6535','WA','Bowes'
15671
+ 'AU','6535','WA','East Bowes'
15672
+ 'AU','6535','WA','Gregory'
15673
+ 'AU','6535','WA','Horrocks'
15674
+ 'AU','6535','WA','Isseka'
15675
+ 'AU','6535','WA','Northampton'
15676
+ 'AU','6535','WA','Ogilvie'
15677
+ 'AU','6535','WA','Sandy Gully'
15678
+ 'AU','6535','WA','Yallabatharra'
15679
+ 'AU','6536','WA','Kalbarri'
15680
+ 'AU','6536','WA','Kalbarri National Park'
15681
+ 'AU','6536','WA','Zuytdorp'
15682
+ 'AU','6537','WA','Denham'
15683
+ 'AU','6537','WA','Dirk Hartog Island'
15684
+ 'AU','6537','WA','Francois Peron National Park'
15685
+ 'AU','6537','WA','Monkey Mia'
15686
+ 'AU','6537','WA','Nanga'
15687
+ 'AU','6537','WA','Shark Bay'
15688
+ 'AU','6537','WA','Useless Loop'
15689
+ 'AU','6556','WA','Beechina'
15690
+ 'AU','6556','WA','Chidlow'
15691
+ 'AU','6556','WA','Gorrie'
15692
+ 'AU','6556','WA','Malmalling'
15693
+ 'AU','6556','WA','The Lakes'
15694
+ 'AU','6558','WA','Wooroloo'
15695
+ 'AU','6560','WA','Wundowie'
15696
+ 'AU','6562','WA','Bakers Hill'
15697
+ 'AU','6562','WA','Copley'
15698
+ 'AU','6562','WA','Woottating'
15699
+ 'AU','6564','WA','Clackline'
15700
+ 'AU','6566','WA','Bejoording'
15701
+ 'AU','6566','WA','Carani'
15702
+ 'AU','6566','WA','Coondle'
15703
+ 'AU','6566','WA','Culham'
15704
+ 'AU','6566','WA','Dumbarton'
15705
+ 'AU','6566','WA','Hoddys Well'
15706
+ 'AU','6566','WA','Katrine'
15707
+ 'AU','6566','WA','Nunile'
15708
+ 'AU','6566','WA','Toodyay'
15709
+ 'AU','6566','WA','West Toodyay'
15710
+ 'AU','6567','WA','Dewars Pool'
15711
+ 'AU','6567','WA','Julimar'
15712
+ 'AU','6567','WA','Moondyne'
15713
+ 'AU','6568','WA','Bolgart'
15714
+ 'AU','6568','WA','Wattening'
15715
+ 'AU','6568','WA','Wyening'
15716
+ 'AU','6569','WA','Calingiri'
15717
+ 'AU','6569','WA','Old Plains'
15718
+ 'AU','6571','WA','Yerecoin'
15719
+ 'AU','6572','WA','Piawaning'
15720
+ 'AU','6574','WA','Bindi Bindi'
15721
+ 'AU','6574','WA','Gabalong'
15722
+ 'AU','6575','WA','Miling'
15723
+ 'AU','6603','WA','Konnongorring'
15724
+ 'AU','6603','WA','Lake Hinds'
15725
+ 'AU','6603','WA','Lake Ninan'
15726
+ 'AU','6603','WA','Mocardy'
15727
+ 'AU','6603','WA','Wongan Hills'
15728
+ 'AU','6605','WA','Kondut'
15729
+ 'AU','6606','WA','Ballidu'
15730
+ 'AU','6606','WA','East Ballidu'
15731
+ 'AU','6606','WA','West Ballidu'
15732
+ 'AU','6608','WA','East Damboring'
15733
+ 'AU','6608','WA','Marne'
15734
+ 'AU','6608','WA','Pithara'
15735
+ 'AU','6609','WA','Dalwallinu'
15736
+ 'AU','6609','WA','Nugadong'
15737
+ 'AU','6609','WA','Xantippe'
15738
+ 'AU','6612','WA','Jibberding'
15739
+ 'AU','6612','WA','Miamoon'
15740
+ 'AU','6612','WA','Paynes Find'
15741
+ 'AU','6612','WA','Wubin'
15742
+ 'AU','6613','WA','Buntine'
15743
+ 'AU','6614','WA','Maya'
15744
+ 'AU','6616','WA','Latham'
15745
+ 'AU','6620','WA','Perenjori'
15746
+ 'AU','6620','WA','Rothsay'
15747
+ 'AU','6623','WA','Bowgada'
15748
+ 'AU','6623','WA','Bunjil'
15749
+ 'AU','6623','WA','Gutha'
15750
+ 'AU','6623','WA','Koolanooka'
15751
+ 'AU','6623','WA','Morawa'
15752
+ 'AU','6623','WA','Pintharuka'
15753
+ 'AU','6625','WA','Merkanooka'
15754
+ 'AU','6627','WA','Canna'
15755
+ 'AU','6628','WA','Tardun'
15756
+ 'AU','6630','WA','Devils Creek'
15757
+ 'AU','6630','WA','Mullewa'
15758
+ 'AU','6630','WA','Murchison'
15759
+ 'AU','6630','WA','Nerramyne'
15760
+ 'AU','6630','WA','Nunierra'
15761
+ 'AU','6630','WA','West Casuarinas'
15762
+ 'AU','6630','WA','Wongoondy'
15763
+ 'AU','6630','WA','Woolgorong'
15764
+ 'AU','6631','WA','Pindar'
15765
+ 'AU','6632','WA','Ambania'
15766
+ 'AU','6632','WA','Tenindewa'
15767
+ 'AU','6635','WA','South Murchison'
15768
+ 'AU','6635','WA','Yalgoo'
15769
+ 'AU','6638','WA','Cooladar Hill'
15770
+ 'AU','6638','WA','Daggar Hills'
15771
+ 'AU','6638','WA','Mount Magnet'
15772
+ 'AU','6638','WA','Paynesville'
15773
+ 'AU','6639','WA','Sandstone'
15774
+ 'AU','6640','WA','Cue'
15775
+ 'AU','6640','WA','East Murchison'
15776
+ 'AU','6640','WA','Lake Austin'
15777
+ 'AU','6640','WA','Reedy'
15778
+ 'AU','6640','WA','Weld Range'
15779
+ 'AU','6642','WA','Angelo River'
15780
+ 'AU','6642','WA','Capricorn'
15781
+ 'AU','6642','WA','Kumarina'
15782
+ 'AU','6642','WA','Meekatharra'
15783
+ 'AU','6642','WA','Peak Hill'
15784
+ 'AU','6646','WA','Lake Carnegie'
15785
+ 'AU','6646','WA','Little Sandy Desert'
15786
+ 'AU','6646','WA','Wiluna'
15787
+ 'AU','6701','WA','Babbage Island'
15788
+ 'AU','6701','WA','Bernier Island'
15789
+ 'AU','6701','WA','Brockman'
15790
+ 'AU','6701','WA','Brown Range'
15791
+ 'AU','6701','WA','Carbla'
15792
+ 'AU','6701','WA','Carnarvon'
15793
+ 'AU','6701','WA','Coral Bay'
15794
+ 'AU','6701','WA','Dorre Island'
15795
+ 'AU','6701','WA','East Carnarvon'
15796
+ 'AU','6701','WA','Gilroyd'
15797
+ 'AU','6701','WA','Greys Plain'
15798
+ 'AU','6701','WA','Inggarda'
15799
+ 'AU','6701','WA','Kennedy Range'
15800
+ 'AU','6701','WA','Kingsford'
15801
+ 'AU','6701','WA','Lyndon'
15802
+ 'AU','6701','WA','Macleod'
15803
+ 'AU','6701','WA','Massey Bay'
15804
+ 'AU','6701','WA','Minilya'
15805
+ 'AU','6701','WA','Morgantown'
15806
+ 'AU','6701','WA','Ningaloo'
15807
+ 'AU','6701','WA','North Plantations'
15808
+ 'AU','6701','WA','South Carnarvon'
15809
+ 'AU','6701','WA','South Plantations'
15810
+ 'AU','6701','WA','Talisker'
15811
+ 'AU','6701','WA','Woodleigh'
15812
+ 'AU','6701','WA','Wooramel'
15813
+ 'AU','6701','WA','Yalardy'
15814
+ 'AU','6701','WA','Yandoo Creek'
15815
+ 'AU','6705','WA','East Lyons River'
15816
+ 'AU','6705','WA','Gascoyne Junction'
15817
+ 'AU','6705','WA','Gascoyne River'
15818
+ 'AU','6705','WA','West Lyons River'
15819
+ 'AU','6707','WA','Cape Range National Park'
15820
+ 'AU','6707','WA','Exmouth'
15821
+ 'AU','6707','WA','Exmouth Gulf'
15822
+ 'AU','6707','WA','Learmonth'
15823
+ 'AU','6707','WA','North West Cape'
15824
+ 'AU','6710','WA','Cane'
15825
+ 'AU','6710','WA','Onslow'
15826
+ 'AU','6710','WA','Peedamulla'
15827
+ 'AU','6710','WA','Talandji'
15828
+ 'AU','6710','WA','Yannarie'
15829
+ 'AU','6711','WA','Thevenard Island'
15830
+ 'AU','6712','WA','Barrow Island'
15831
+ 'AU','6713','WA','Dampier'
15832
+ 'AU','6713','WA','Dampier Archipelago'
15833
+ 'AU','6714','WA','Antonymyre'
15834
+ 'AU','6714','WA','Balla Balla'
15835
+ 'AU','6714','WA','Baynton'
15836
+ 'AU','6714','WA','Bulgarra'
15837
+ 'AU','6714','WA','Burrup'
15838
+ 'AU','6714','WA','Cleaverville'
15839
+ 'AU','6714','WA','Cooya Pooya'
15840
+ 'AU','6714','WA','Gap Ridge'
15841
+ 'AU','6714','WA','Gnoorea'
15842
+ 'AU','6714','WA','Karratha'
15843
+ 'AU','6714','WA','Karratha Industrial Estate'
15844
+ 'AU','6714','WA','Maitland'
15845
+ 'AU','6714','WA','Mardie'
15846
+ 'AU','6714','WA','Millars Well'
15847
+ 'AU','6714','WA','Mount Anketell'
15848
+ 'AU','6714','WA','Mulataga'
15849
+ 'AU','6714','WA','Nickol'
15850
+ 'AU','6714','WA','Pegs Creek'
15851
+ 'AU','6714','WA','Sherlock'
15852
+ 'AU','6714','WA','Stove Hill'
15853
+ 'AU','6716','WA','Fortescue'
15854
+ 'AU','6716','WA','Hamersley Range'
15855
+ 'AU','6716','WA','Millstream'
15856
+ 'AU','6716','WA','Pannawonica'
15857
+ 'AU','6718','WA','Roebourne'
15858
+ 'AU','6718','WA','Whim Creek'
15859
+ 'AU','6720','WA','Cossack'
15860
+ 'AU','6720','WA','Point Samson'
15861
+ 'AU','6720','WA','Wickham'
15862
+ 'AU','6721','WA','Indee'
15863
+ 'AU','6721','WA','Mundabullangana'
15864
+ 'AU','6721','WA','Pardoo'
15865
+ 'AU','6721','WA','Port Hedland'
15866
+ 'AU','6721','WA','Redbank'
15867
+ 'AU','6721','WA','Strelley'
15868
+ 'AU','6721','WA','Wallareenya'
15869
+ 'AU','6721','WA','Wedgefield'
15870
+ 'AU','6722','WA','Boodarie'
15871
+ 'AU','6722','WA','De Grey'
15872
+ 'AU','6722','WA','Finucane'
15873
+ 'AU','6722','WA','Pippingarra'
15874
+ 'AU','6722','WA','South Hedland'
15875
+ 'AU','6725','WA','Bilingurr'
15876
+ 'AU','6725','WA','Broome'
15877
+ 'AU','6725','WA','Dampier Peninsula'
15878
+ 'AU','6725','WA','Djugun'
15879
+ 'AU','6725','WA','Eighty Mile Beach'
15880
+ 'AU','6725','WA','Gingerah'
15881
+ 'AU','6725','WA','Lagrange'
15882
+ 'AU','6725','WA','Minyirr'
15883
+ 'AU','6725','WA','Roebuck'
15884
+ 'AU','6725','WA','Waterbank'
15885
+ 'AU','6726','WA','Cable Beach'
15886
+ 'AU','6728','WA','Camballin'
15887
+ 'AU','6728','WA','Derby'
15888
+ 'AU','6728','WA','Geegully Creek'
15889
+ 'AU','6728','WA','Kimbolton'
15890
+ 'AU','6728','WA','King Leopold Ranges'
15891
+ 'AU','6728','WA','Meda'
15892
+ 'AU','6728','WA','St George Ranges'
15893
+ 'AU','6728','WA','Willare'
15894
+ 'AU','6731','WA','Cockatoo Island'
15895
+ 'AU','6733','WA','Koolan Island'
15896
+ 'AU','6740','WA','Drysdale River'
15897
+ 'AU','6740','WA','Kalumburu'
15898
+ 'AU','6740','WA','Mitchell Plateau'
15899
+ 'AU','6740','WA','Oombulgurri'
15900
+ 'AU','6740','WA','Prince Regent River'
15901
+ 'AU','6740','WA','Wyndham'
15902
+ 'AU','6743','WA','Cambridge Gulf'
15903
+ 'AU','6743','WA','Durack'
15904
+ 'AU','6743','WA','Gibb'
15905
+ 'AU','6743','WA','Kununurra'
15906
+ 'AU','6743','WA','Lake Argyle'
15907
+ 'AU','6743','WA','Warmun'
15908
+ 'AU','6751','WA','Chichester'
15909
+ 'AU','6751','WA','Innawanga'
15910
+ 'AU','6751','WA','Juna Downs'
15911
+ 'AU','6751','WA','Karijini'
15912
+ 'AU','6751','WA','Mount Sheila'
15913
+ 'AU','6751','WA','Mulga Downs'
15914
+ 'AU','6751','WA','Nanutarra'
15915
+ 'AU','6751','WA','Rocklea'
15916
+ 'AU','6751','WA','Tom Price'
15917
+ 'AU','6751','WA','Wittenoom'
15918
+ 'AU','6753','WA','Newman'
15919
+ 'AU','6754','WA','Paraburdoo'
15920
+ 'AU','6758','WA','Nullagine'
15921
+ 'AU','6760','WA','Marble Bar'
15922
+ 'AU','6762','WA','Telfer'
15923
+ 'AU','6765','WA','Fitzroy Crossing'
15924
+ 'AU','6765','WA','Mount Hardman'
15925
+ 'AU','6770','WA','Halls Creek'
15926
+ 'AU','6770','WA','Mcbeath'
15927
+ 'AU','6770','WA','Mueller Ranges'
15928
+ 'AU','6770','WA','Ord River'
15929
+ 'AU','6770','WA','Purnululu'
15930
+ 'AU','6770','WA','Sturt Creek'
15931
+ 'AU','6770','WA','Tanami'
15932
+ 'AU','6798','WA','Christmas Island'
15933
+ 'AU','6799','WA','Home Island Cocos \(Keeling\) Islands'
15934
+ 'AU','6799','WA','West Island Cocos \(Keeling\) Islands'
15935
+ 'AU','6800','WA','Perth'
15936
+ 'AU','6803','WA','Northbridge'
15937
+ 'AU','6809','WA','Perth'
15938
+ 'AU','6817','WA','Perth'
15939
+ 'AU','6820','WA','Perth'
15940
+ 'AU','6827','WA','Perth'
15941
+ 'AU','6830','WA','Perth'
15942
+ 'AU','6831','WA','Perth St Georges Tce'
15943
+ 'AU','6832','WA','Perth Adelaide Tce'
15944
+ 'AU','6837','WA','Perth'
15945
+ 'AU','6838','WA','Perth'
15946
+ 'AU','6839','WA','Perth'
15947
+ 'AU','6840','WA','Perth'
15948
+ 'AU','6841','WA','Perth'
15949
+ 'AU','6842','WA','Perth'
15950
+ 'AU','6843','WA','Perth'
15951
+ 'AU','6844','WA','Perth'
15952
+ 'AU','6845','WA','Perth'
15953
+ 'AU','6846','WA','Perth'
15954
+ 'AU','6847','WA','Perth'
15955
+ 'AU','6848','WA','Perth'
15956
+ 'AU','6849','WA','Perth Bc'
15957
+ 'AU','6850','WA','Cloisters Square'
15958
+ 'AU','6865','WA','Northbridge'
15959
+ 'AU','6872','WA','West Perth'
15960
+ 'AU','6892','WA','East Perth'
15961
+ 'AU','6900','WA','Leederville'
15962
+ 'AU','6901','WA','West Leederville'
15963
+ 'AU','6902','WA','Leederville'
15964
+ 'AU','6903','WA','Leederville'
15965
+ 'AU','6904','WA','Subiaco'
15966
+ 'AU','6905','WA','Northlands'
15967
+ 'AU','6906','WA','North Perth'
15968
+ 'AU','6907','WA','Nedlands'
15969
+ 'AU','6909','WA','Nedlands'
15970
+ 'AU','6910','WA','Claremont'
15971
+ 'AU','6911','WA','Cottesloe'
15972
+ 'AU','6912','WA','Mosman Park'
15973
+ 'AU','6913','WA','Wembley'
15974
+ 'AU','6914','WA','Balcatta'
15975
+ 'AU','6915','WA','Mount Hawthorn'
15976
+ 'AU','6916','WA','Osborne Park'
15977
+ 'AU','6916','WA','Osborne Park Dc'
15978
+ 'AU','6917','WA','Osborne Park'
15979
+ 'AU','6918','WA','Innaloo'
15980
+ 'AU','6919','WA','Joondalup Dc'
15981
+ 'AU','6920','WA','North Beach'
15982
+ 'AU','6921','WA','Karrinyup'
15983
+ 'AU','6922','WA','Scarborough'
15984
+ 'AU','6923','WA','Hillarys'
15985
+ 'AU','6924','WA','Greenwood'
15986
+ 'AU','6925','WA','Walliston Dc'
15987
+ 'AU','6926','WA','Kalamunda'
15988
+ 'AU','6929','WA','Mount Lawley'
15989
+ 'AU','6931','WA','Maylands'
15990
+ 'AU','6932','WA','Inglewood'
15991
+ 'AU','6933','WA','Bayswater'
15992
+ 'AU','6934','WA','Bassendean'
15993
+ 'AU','6935','WA','Guildford'
15994
+ 'AU','6936','WA','Midland Dc'
15995
+ 'AU','6937','WA','Tuart Hill'
15996
+ 'AU','6938','WA','Tuart Hill'
15997
+ 'AU','6939','WA','Tuart Hill'
15998
+ 'AU','6940','WA','Tuart Hill'
15999
+ 'AU','6941','WA','Mirrabooka'
16000
+ 'AU','6942','WA','Bassendean Dc'
16001
+ 'AU','6943','WA','Morley'
16002
+ 'AU','6944','WA','Malaga'
16003
+ 'AU','6945','WA','Malaga Dc'
16004
+ 'AU','6946','WA','Wanneroo'
16005
+ 'AU','6947','WA','Wangara Dc'
16006
+ 'AU','6951','WA','South Perth'
16007
+ 'AU','6952','WA','Como'
16008
+ 'AU','6953','WA','Applecross'
16009
+ 'AU','6954','WA','Booragoon'
16010
+ 'AU','6955','WA','Willetton'
16011
+ 'AU','6956','WA','Melville'
16012
+ 'AU','6957','WA','Palmyra'
16013
+ 'AU','6958','WA','Royal Australian Navy Warships'
16014
+ 'AU','6959','WA','Fremantle'
16015
+ 'AU','6960','WA','Myaree Bc'
16016
+ 'AU','6961','WA','Palmyra Dc'
16017
+ 'AU','6963','WA','Hamilton Hill'
16018
+ 'AU','6964','WA','Success'
16019
+ 'AU','6965','WA','Bibra Lake Dc'
16020
+ 'AU','6966','WA','Kwinana'
16021
+ 'AU','6967','WA','Rockingham Dc'
16022
+ 'AU','6968','WA','Rockingham'
16023
+ 'AU','6969','WA','Rockingham Beach'
16024
+ 'AU','6970','WA','Canning Vale Dc'
16025
+ 'AU','6979','WA','Victoria Park'
16026
+ 'AU','6980','WA','Cannington'
16027
+ 'AU','6981','WA','East Victoria Park'
16028
+ 'AU','6982','WA','Bentley'
16029
+ 'AU','6983','WA','Bentley Dc'
16030
+ 'AU','6984','WA','Belmont'
16031
+ 'AU','6985','WA','Cloverdale'
16032
+ 'AU','6986','WA','Welshpool Dc'
16033
+ 'AU','6987','WA','Cannington'
16034
+ 'AU','6988','WA','Thornlie'
16035
+ 'AU','6989','WA','Maddington'
16036
+ 'AU','6990','WA','Gosnells'
16037
+ 'AU','6991','WA','Kelmscott'
16038
+ 'AU','6992','WA','Armadale'
16039
+ 'AU','6997','WA','Kelmscott Dc'
16040
+ 'AU','7000','TAS','Bathurst Street Po'
16041
+ 'AU','7000','TAS','Glebe'
16042
+ 'AU','7000','TAS','Hobart'
16043
+ 'AU','7000','TAS','Mount Stuart'
16044
+ 'AU','7000','TAS','North Hobart'
16045
+ 'AU','7000','TAS','Queens Domain'
16046
+ 'AU','7000','TAS','West Hobart'
16047
+ 'AU','7001','TAS','Hobart'
16048
+ 'AU','7001','TAS','Tasman Island'
16049
+ 'AU','7002','TAS','North Hobart'
16050
+ 'AU','7004','TAS','Battery Point'
16051
+ 'AU','7004','TAS','South Hobart'
16052
+ 'AU','7005','TAS','Dynnyrne'
16053
+ 'AU','7005','TAS','Lower Sandy Bay'
16054
+ 'AU','7005','TAS','Sandy Bay'
16055
+ 'AU','7005','TAS','University Of Tasmania'
16056
+ 'AU','7006','TAS','Sandy Bay'
16057
+ 'AU','7007','TAS','Mount Nelson'
16058
+ 'AU','7007','TAS','Tolmans Hill'
16059
+ 'AU','7008','TAS','Lenah Valley'
16060
+ 'AU','7008','TAS','New Town'
16061
+ 'AU','7009','TAS','Derwent Park'
16062
+ 'AU','7009','TAS','Lutana'
16063
+ 'AU','7009','TAS','Moonah'
16064
+ 'AU','7009','TAS','West Moonah'
16065
+ 'AU','7010','TAS','Dowsing Point'
16066
+ 'AU','7010','TAS','Glenorchy'
16067
+ 'AU','7010','TAS','Goodwood'
16068
+ 'AU','7010','TAS','Montrose'
16069
+ 'AU','7010','TAS','Rosetta'
16070
+ 'AU','7011','TAS','Austins Ferry'
16071
+ 'AU','7011','TAS','Berriedale'
16072
+ 'AU','7011','TAS','Chigwell'
16073
+ 'AU','7011','TAS','Claremont'
16074
+ 'AU','7012','TAS','Collinsvale'
16075
+ 'AU','7012','TAS','Glenlusk'
16076
+ 'AU','7015','TAS','Geilston Bay'
16077
+ 'AU','7015','TAS','Lindisfarne'
16078
+ 'AU','7015','TAS','Rose Bay'
16079
+ 'AU','7016','TAS','Risdon Vale'
16080
+ 'AU','7017','TAS','Grasstree Hill'
16081
+ 'AU','7017','TAS','Honeywood'
16082
+ 'AU','7017','TAS','Old Beach'
16083
+ 'AU','7017','TAS','Otago'
16084
+ 'AU','7017','TAS','Risdon'
16085
+ 'AU','7017','TAS','Tea Tree'
16086
+ 'AU','7018','TAS','Bellerive'
16087
+ 'AU','7018','TAS','Howrah'
16088
+ 'AU','7018','TAS','Montagu Bay'
16089
+ 'AU','7018','TAS','Mornington'
16090
+ 'AU','7018','TAS','Rosny'
16091
+ 'AU','7018','TAS','Rosny Park'
16092
+ 'AU','7018','TAS','Tranmere'
16093
+ 'AU','7018','TAS','Warrane'
16094
+ 'AU','7019','TAS','Clarendon Vale'
16095
+ 'AU','7019','TAS','Oakdowns'
16096
+ 'AU','7019','TAS','Rokeby'
16097
+ 'AU','7020','TAS','Clifton Beach'
16098
+ 'AU','7020','TAS','Sandford'
16099
+ 'AU','7021','TAS','Lauderdale'
16100
+ 'AU','7022','TAS','South Arm'
16101
+ 'AU','7023','TAS','Opossum Bay'
16102
+ 'AU','7024','TAS','Cremorne'
16103
+ 'AU','7025','TAS','Dulcot'
16104
+ 'AU','7025','TAS','Richmond'
16105
+ 'AU','7026','TAS','Campania'
16106
+ 'AU','7027','TAS','Colebrook'
16107
+ 'AU','7030','TAS','Apsley'
16108
+ 'AU','7030','TAS','Arthurs Lake'
16109
+ 'AU','7030','TAS','Bagdad'
16110
+ 'AU','7030','TAS','Bagdad North'
16111
+ 'AU','7030','TAS','Bothwell'
16112
+ 'AU','7030','TAS','Bridgewater'
16113
+ 'AU','7030','TAS','Brighton'
16114
+ 'AU','7030','TAS','Broadmarsh'
16115
+ 'AU','7030','TAS','Cramps Bay'
16116
+ 'AU','7030','TAS','Dromedary'
16117
+ 'AU','7030','TAS','Dysart'
16118
+ 'AU','7030','TAS','Elderslie'
16119
+ 'AU','7030','TAS','Flintstone'
16120
+ 'AU','7030','TAS','Gagebrook'
16121
+ 'AU','7030','TAS','Granton'
16122
+ 'AU','7030','TAS','Hermitage'
16123
+ 'AU','7030','TAS','Interlaken'
16124
+ 'AU','7030','TAS','Jericho'
16125
+ 'AU','7030','TAS','Kempton'
16126
+ 'AU','7030','TAS','Lake Sorell'
16127
+ 'AU','7030','TAS','Liawenee'
16128
+ 'AU','7030','TAS','Lower Marshes'
16129
+ 'AU','7030','TAS','Mangalore'
16130
+ 'AU','7030','TAS','Melton Mowbray'
16131
+ 'AU','7030','TAS','Miena'
16132
+ 'AU','7030','TAS','Millers Bluff'
16133
+ 'AU','7030','TAS','Morass Bay'
16134
+ 'AU','7030','TAS','Pelham'
16135
+ 'AU','7030','TAS','Pontville'
16136
+ 'AU','7030','TAS','Shannon'
16137
+ 'AU','7030','TAS','Steppes'
16138
+ 'AU','7030','TAS','Tods Corner'
16139
+ 'AU','7030','TAS','Waddamana'
16140
+ 'AU','7030','TAS','Wilburville'
16141
+ 'AU','7050','TAS','Albion Heights'
16142
+ 'AU','7050','TAS','Kingston'
16143
+ 'AU','7050','TAS','Kingston Beach'
16144
+ 'AU','7051','TAS','Kingston'
16145
+ 'AU','7052','TAS','Blackmans Bay'
16146
+ 'AU','7053','TAS','Bonnet Hill'
16147
+ 'AU','7053','TAS','Taroona'
16148
+ 'AU','7054','TAS','Barretta'
16149
+ 'AU','7054','TAS','Coningham'
16150
+ 'AU','7054','TAS','Electrona'
16151
+ 'AU','7054','TAS','Fern Tree'
16152
+ 'AU','7054','TAS','Howden'
16153
+ 'AU','7054','TAS','Leslie Vale'
16154
+ 'AU','7054','TAS','Lower Snug'
16155
+ 'AU','7054','TAS','Margate'
16156
+ 'AU','7054','TAS','Neika'
16157
+ 'AU','7054','TAS','Ridgeway'
16158
+ 'AU','7054','TAS','Snug'
16159
+ 'AU','7054','TAS','Tinderbox'
16160
+ 'AU','7054','TAS','Wellington Park'
16161
+ 'AU','7055','TAS','Huntingfield'
16162
+ 'AU','7109','TAS','Crabtree'
16163
+ 'AU','7109','TAS','Cradoc'
16164
+ 'AU','7109','TAS','Glaziers Bay'
16165
+ 'AU','7109','TAS','Glen Huon'
16166
+ 'AU','7109','TAS','Glendevie'
16167
+ 'AU','7109','TAS','Grove'
16168
+ 'AU','7109','TAS','Hastings'
16169
+ 'AU','7109','TAS','Huonville'
16170
+ 'AU','7109','TAS','Ida Bay'
16171
+ 'AU','7109','TAS','Judbury'
16172
+ 'AU','7109','TAS','Lonnavale'
16173
+ 'AU','7109','TAS','Lower Longley'
16174
+ 'AU','7109','TAS','Lower Wattle Grove'
16175
+ 'AU','7109','TAS','Lucaston'
16176
+ 'AU','7109','TAS','Lune River'
16177
+ 'AU','7109','TAS','Lymington'
16178
+ 'AU','7109','TAS','Mountain River'
16179
+ 'AU','7109','TAS','Petcheys Bay'
16180
+ 'AU','7109','TAS','Raminea'
16181
+ 'AU','7109','TAS','Ranelagh'
16182
+ 'AU','7109','TAS','Recherche'
16183
+ 'AU','7109','TAS','Southport'
16184
+ 'AU','7109','TAS','Southport Lagoon'
16185
+ 'AU','7109','TAS','Strathblane'
16186
+ 'AU','7109','TAS','Waterloo'
16187
+ 'AU','7109','TAS','Wattle Grove'
16188
+ 'AU','7109','TAS','Woodstock'
16189
+ 'AU','7112','TAS','Abels Bay'
16190
+ 'AU','7112','TAS','Charlotte Cove'
16191
+ 'AU','7112','TAS','Cygnet'
16192
+ 'AU','7112','TAS','Deep Bay'
16193
+ 'AU','7112','TAS','Eggs And Bacon Bay'
16194
+ 'AU','7112','TAS','Garden Island Creek'
16195
+ 'AU','7112','TAS','Gardners Bay'
16196
+ 'AU','7112','TAS','Nicholls Rivulet'
16197
+ 'AU','7112','TAS','Randalls Bay'
16198
+ 'AU','7112','TAS','Verona Sands'
16199
+ 'AU','7113','TAS','Franklin'
16200
+ 'AU','7116','TAS','Brooks Bay'
16201
+ 'AU','7116','TAS','Cairns Bay'
16202
+ 'AU','7116','TAS','Castle Forbes Bay'
16203
+ 'AU','7116','TAS','Geeveston'
16204
+ 'AU','7116','TAS','Police Point'
16205
+ 'AU','7116','TAS','Port Huon'
16206
+ 'AU','7116','TAS','Surges Bay'
16207
+ 'AU','7116','TAS','Surveyors Bay'
16208
+ 'AU','7117','TAS','Dover'
16209
+ 'AU','7119','TAS','Stonor'
16210
+ 'AU','7120','TAS','Andover'
16211
+ 'AU','7120','TAS','Antill Ponds'
16212
+ 'AU','7120','TAS','Baden'
16213
+ 'AU','7120','TAS','Lemont'
16214
+ 'AU','7120','TAS','Levendale'
16215
+ 'AU','7120','TAS','Mount Seymour'
16216
+ 'AU','7120','TAS','Oatlands'
16217
+ 'AU','7120','TAS','Parattah'
16218
+ 'AU','7120','TAS','Pawtella'
16219
+ 'AU','7120','TAS','Rhyndaston'
16220
+ 'AU','7120','TAS','Stonehenge'
16221
+ 'AU','7120','TAS','Swanston'
16222
+ 'AU','7120','TAS','Tiberias'
16223
+ 'AU','7120','TAS','Tunbridge'
16224
+ 'AU','7120','TAS','Tunnack'
16225
+ 'AU','7120','TAS','Whitefoord'
16226
+ 'AU','7120','TAS','Woodbury'
16227
+ 'AU','7120','TAS','Woodsdale'
16228
+ 'AU','7120','TAS','York Plains'
16229
+ 'AU','7139','TAS','Strathgordon'
16230
+ 'AU','7140','TAS','Black Hills'
16231
+ 'AU','7140','TAS','Boyer'
16232
+ 'AU','7140','TAS','Bradys Lake'
16233
+ 'AU','7140','TAS','Bronte Park'
16234
+ 'AU','7140','TAS','Bushy Park'
16235
+ 'AU','7140','TAS','Butlers Gorge'
16236
+ 'AU','7140','TAS','Dee'
16237
+ 'AU','7140','TAS','Derwent Bridge'
16238
+ 'AU','7140','TAS','Ellendale'
16239
+ 'AU','7140','TAS','Fentonbury'
16240
+ 'AU','7140','TAS','Fitzgerald'
16241
+ 'AU','7140','TAS','Florentine'
16242
+ 'AU','7140','TAS','Glenfern'
16243
+ 'AU','7140','TAS','Glenora'
16244
+ 'AU','7140','TAS','Gretna'
16245
+ 'AU','7140','TAS','Hamilton'
16246
+ 'AU','7140','TAS','Hayes'
16247
+ 'AU','7140','TAS','Hollow Tree'
16248
+ 'AU','7140','TAS','Karanja'
16249
+ 'AU','7140','TAS','Lachlan'
16250
+ 'AU','7140','TAS','Lake St Clair'
16251
+ 'AU','7140','TAS','Lawitta'
16252
+ 'AU','7140','TAS','Little Pine Lagoon'
16253
+ 'AU','7140','TAS','London Lakes'
16254
+ 'AU','7140','TAS','Macquarie Plains'
16255
+ 'AU','7140','TAS','Magra'
16256
+ 'AU','7140','TAS','Malbina'
16257
+ 'AU','7140','TAS','Maydena'
16258
+ 'AU','7140','TAS','Meadowbank'
16259
+ 'AU','7140','TAS','Molesworth'
16260
+ 'AU','7140','TAS','Moogara'
16261
+ 'AU','7140','TAS','Mount Field'
16262
+ 'AU','7140','TAS','Mount Lloyd'
16263
+ 'AU','7140','TAS','National Park'
16264
+ 'AU','7140','TAS','New Norfolk'
16265
+ 'AU','7140','TAS','Osterley'
16266
+ 'AU','7140','TAS','Ouse'
16267
+ 'AU','7140','TAS','Plenty'
16268
+ 'AU','7140','TAS','Rosegarland'
16269
+ 'AU','7140','TAS','Sorell Creek'
16270
+ 'AU','7140','TAS','Strickland'
16271
+ 'AU','7140','TAS','Styx'
16272
+ 'AU','7140','TAS','Tarraleah'
16273
+ 'AU','7140','TAS','Tyenna'
16274
+ 'AU','7140','TAS','Uxbridge'
16275
+ 'AU','7140','TAS','Victoria Valley'
16276
+ 'AU','7140','TAS','Wayatinah'
16277
+ 'AU','7140','TAS','Westerway'
16278
+ 'AU','7150','TAS','Adventure Bay'
16279
+ 'AU','7150','TAS','Allens Rivulet'
16280
+ 'AU','7150','TAS','Alonnah'
16281
+ 'AU','7150','TAS','Apollo Bay'
16282
+ 'AU','7150','TAS','Barnes Bay'
16283
+ 'AU','7150','TAS','Dennes Point'
16284
+ 'AU','7150','TAS','Gordon'
16285
+ 'AU','7150','TAS','Great Bay'
16286
+ 'AU','7150','TAS','Kaoota'
16287
+ 'AU','7150','TAS','Killora'
16288
+ 'AU','7150','TAS','Longley'
16289
+ 'AU','7150','TAS','Lunawanna'
16290
+ 'AU','7150','TAS','North Bruny'
16291
+ 'AU','7150','TAS','Oyster Cove'
16292
+ 'AU','7150','TAS','Pelverata'
16293
+ 'AU','7150','TAS','Sandfly'
16294
+ 'AU','7150','TAS','Simpsons Bay'
16295
+ 'AU','7150','TAS','South Bruny'
16296
+ 'AU','7150','TAS','Upper Woodstock'
16297
+ 'AU','7151','TAS','Casey'
16298
+ 'AU','7151','TAS','Davis'
16299
+ 'AU','7151','TAS','Macquarie'
16300
+ 'AU','7151','TAS','Macquarie Island'
16301
+ 'AU','7151','TAS','Mawson'
16302
+ 'AU','7155','TAS','Kettering'
16303
+ 'AU','7162','TAS','Birchs Bay'
16304
+ 'AU','7162','TAS','Woodbridge'
16305
+ 'AU','7163','TAS','Flowerpot'
16306
+ 'AU','7163','TAS','Middleton'
16307
+ 'AU','7170','TAS','Acton Park'
16308
+ 'AU','7170','TAS','Cambridge'
16309
+ 'AU','7170','TAS','Mount Rumney'
16310
+ 'AU','7170','TAS','Roches Beach'
16311
+ 'AU','7170','TAS','Seven Mile Beach'
16312
+ 'AU','7171','TAS','Midway Point'
16313
+ 'AU','7171','TAS','Penna'
16314
+ 'AU','7172','TAS','Nugent'
16315
+ 'AU','7172','TAS','Orielton'
16316
+ 'AU','7172','TAS','Pawleena'
16317
+ 'AU','7172','TAS','Sorell'
16318
+ 'AU','7172','TAS','Wattle Hill'
16319
+ 'AU','7173','TAS','Carlton'
16320
+ 'AU','7173','TAS','Carlton River'
16321
+ 'AU','7173','TAS','Connellys Marsh'
16322
+ 'AU','7173','TAS','Dodges Ferry'
16323
+ 'AU','7173','TAS','Forcett'
16324
+ 'AU','7173','TAS','Lewisham'
16325
+ 'AU','7173','TAS','Primrose Sands'
16326
+ 'AU','7174','TAS','Copping'
16327
+ 'AU','7175','TAS','Bream Creek'
16328
+ 'AU','7175','TAS','Marion Bay'
16329
+ 'AU','7176','TAS','Kellevie'
16330
+ 'AU','7177','TAS','Boomer Bay'
16331
+ 'AU','7177','TAS','Dunalley'
16332
+ 'AU','7178','TAS','Murdunna'
16333
+ 'AU','7179','TAS','Eaglehawk Neck'
16334
+ 'AU','7180','TAS','Taranna'
16335
+ 'AU','7182','TAS','Fortescue'
16336
+ 'AU','7182','TAS','Port Arthur'
16337
+ 'AU','7183','TAS','Highcroft'
16338
+ 'AU','7184','TAS','Nubeena'
16339
+ 'AU','7184','TAS','Stormlea'
16340
+ 'AU','7184','TAS','White Beach'
16341
+ 'AU','7185','TAS','Premaydena'
16342
+ 'AU','7186','TAS','Saltwater River'
16343
+ 'AU','7186','TAS','Sloping Main'
16344
+ 'AU','7187','TAS','Koonya'
16345
+ 'AU','7190','TAS','Apslawn'
16346
+ 'AU','7190','TAS','Buckland'
16347
+ 'AU','7190','TAS','Cranbrook'
16348
+ 'AU','7190','TAS','Dolphin Sands'
16349
+ 'AU','7190','TAS','Little Swanport'
16350
+ 'AU','7190','TAS','Orford'
16351
+ 'AU','7190','TAS','Pontypool'
16352
+ 'AU','7190','TAS','Rheban'
16353
+ 'AU','7190','TAS','Rocky Hills'
16354
+ 'AU','7190','TAS','Runnymede'
16355
+ 'AU','7190','TAS','Spring Beach'
16356
+ 'AU','7190','TAS','Swansea'
16357
+ 'AU','7190','TAS','Triabunna'
16358
+ 'AU','7209','TAS','Ross'
16359
+ 'AU','7209','TAS','Tooms Lake'
16360
+ 'AU','7210','TAS','Campbell Town'
16361
+ 'AU','7210','TAS','Lake Leake'
16362
+ 'AU','7211','TAS','Cleveland'
16363
+ 'AU','7211','TAS','Conara'
16364
+ 'AU','7211','TAS','Epping Forest'
16365
+ 'AU','7212','TAS','Ben Lomond'
16366
+ 'AU','7212','TAS','Blessington'
16367
+ 'AU','7212','TAS','Burns Creek'
16368
+ 'AU','7212','TAS','Deddington'
16369
+ 'AU','7212','TAS','Evandale'
16370
+ 'AU','7212','TAS','Nile'
16371
+ 'AU','7212','TAS','Upper Blessington'
16372
+ 'AU','7212','TAS','Western Junction'
16373
+ 'AU','7213','TAS','Avoca'
16374
+ 'AU','7213','TAS','Rossarden'
16375
+ 'AU','7213','TAS','Royal George'
16376
+ 'AU','7214','TAS','Fingal'
16377
+ 'AU','7214','TAS','Mangana'
16378
+ 'AU','7214','TAS','Mathinna'
16379
+ 'AU','7214','TAS','Upper Esk'
16380
+ 'AU','7215','TAS','Beaumaris'
16381
+ 'AU','7215','TAS','Bicheno'
16382
+ 'AU','7215','TAS','Chain Of Lagoons'
16383
+ 'AU','7215','TAS','Coles Bay'
16384
+ 'AU','7215','TAS','Cornwall'
16385
+ 'AU','7215','TAS','Douglas River'
16386
+ 'AU','7215','TAS','Falmouth'
16387
+ 'AU','7215','TAS','Four Mile Creek'
16388
+ 'AU','7215','TAS','Freycinet'
16389
+ 'AU','7215','TAS','Friendly Beaches'
16390
+ 'AU','7215','TAS','Gray'
16391
+ 'AU','7215','TAS','Scamander'
16392
+ 'AU','7215','TAS','Seymour'
16393
+ 'AU','7215','TAS','St Marys'
16394
+ 'AU','7215','TAS','Upper Scamander'
16395
+ 'AU','7216','TAS','Akaroa'
16396
+ 'AU','7216','TAS','Ansons Bay'
16397
+ 'AU','7216','TAS','Binalong Bay'
16398
+ 'AU','7216','TAS','Goshen'
16399
+ 'AU','7216','TAS','Goulds Country'
16400
+ 'AU','7216','TAS','Lottah'
16401
+ 'AU','7216','TAS','Pyengana'
16402
+ 'AU','7216','TAS','St Helens'
16403
+ 'AU','7216','TAS','Stieglitz'
16404
+ 'AU','7216','TAS','The Gardens'
16405
+ 'AU','7248','TAS','Invermay'
16406
+ 'AU','7248','TAS','Mayfield'
16407
+ 'AU','7248','TAS','Mowbray'
16408
+ 'AU','7248','TAS','Newnham'
16409
+ 'AU','7248','TAS','Rocherlea'
16410
+ 'AU','7249','TAS','Kings Meadows'
16411
+ 'AU','7249','TAS','Punchbowl'
16412
+ 'AU','7249','TAS','South Launceston'
16413
+ 'AU','7249','TAS','Youngtown'
16414
+ 'AU','7250','TAS','Blackstone Heights'
16415
+ 'AU','7250','TAS','East Launceston'
16416
+ 'AU','7250','TAS','Launceston'
16417
+ 'AU','7250','TAS','Newstead'
16418
+ 'AU','7250','TAS','Norwood'
16419
+ 'AU','7250','TAS','Norwood Avenue Po'
16420
+ 'AU','7250','TAS','Prospect'
16421
+ 'AU','7250','TAS','Prospect Vale'
16422
+ 'AU','7250','TAS','Ravenswood'
16423
+ 'AU','7250','TAS','Riverside'
16424
+ 'AU','7250','TAS','St Leonards'
16425
+ 'AU','7250','TAS','Summerhill'
16426
+ 'AU','7250','TAS','Travellers Rest'
16427
+ 'AU','7250','TAS','Trevallyn'
16428
+ 'AU','7250','TAS','Waverley'
16429
+ 'AU','7250','TAS','West Launceston'
16430
+ 'AU','7252','TAS','Beechford'
16431
+ 'AU','7252','TAS','Dilston'
16432
+ 'AU','7252','TAS','Hillwood'
16433
+ 'AU','7252','TAS','Lefroy'
16434
+ 'AU','7252','TAS','Lulworth'
16435
+ 'AU','7252','TAS','Mount Direction'
16436
+ 'AU','7252','TAS','Pipers River'
16437
+ 'AU','7252','TAS','Stony Head'
16438
+ 'AU','7252','TAS','Swan Bay'
16439
+ 'AU','7252','TAS','Weymouth'
16440
+ 'AU','7252','TAS','Windermere'
16441
+ 'AU','7253','TAS','Bell Bay'
16442
+ 'AU','7253','TAS','George Town'
16443
+ 'AU','7253','TAS','Long Reach'
16444
+ 'AU','7253','TAS','Low Head'
16445
+ 'AU','7254','TAS','Bellingham'
16446
+ 'AU','7254','TAS','Golconda'
16447
+ 'AU','7254','TAS','Lebrina'
16448
+ 'AU','7254','TAS','Pipers Brook'
16449
+ 'AU','7254','TAS','Retreat'
16450
+ 'AU','7254','TAS','Tunnel'
16451
+ 'AU','7254','TAS','Wyena'
16452
+ 'AU','7255','TAS','Blue Rocks'
16453
+ 'AU','7255','TAS','Emita'
16454
+ 'AU','7255','TAS','Killiecrankie'
16455
+ 'AU','7255','TAS','Lackrana'
16456
+ 'AU','7255','TAS','Lady Barron'
16457
+ 'AU','7255','TAS','Leeka'
16458
+ 'AU','7255','TAS','Loccota'
16459
+ 'AU','7255','TAS','Lughrata'
16460
+ 'AU','7255','TAS','Memana'
16461
+ 'AU','7255','TAS','Palana'
16462
+ 'AU','7255','TAS','Ranga'
16463
+ 'AU','7255','TAS','Strzelecki'
16464
+ 'AU','7255','TAS','Whitemark'
16465
+ 'AU','7255','TAS','Wingaroo'
16466
+ 'AU','7256','TAS','Bungaree'
16467
+ 'AU','7256','TAS','Currie'
16468
+ 'AU','7256','TAS','Egg Lagoon'
16469
+ 'AU','7256','TAS','Grassy'
16470
+ 'AU','7256','TAS','Loorana'
16471
+ 'AU','7256','TAS','Lymwood'
16472
+ 'AU','7256','TAS','Naracoopa'
16473
+ 'AU','7256','TAS','Nugara'
16474
+ 'AU','7256','TAS','Pearshape'
16475
+ 'AU','7256','TAS','Pegarah'
16476
+ 'AU','7256','TAS','Reekara'
16477
+ 'AU','7256','TAS','Sea Elephant'
16478
+ 'AU','7256','TAS','Surprise Bay'
16479
+ 'AU','7256','TAS','Wickham'
16480
+ 'AU','7256','TAS','Yambacoona'
16481
+ 'AU','7256','TAS','Yarra Creek'
16482
+ 'AU','7257','TAS','Cape Barren Island'
16483
+ 'AU','7258','TAS','Breadalbane'
16484
+ 'AU','7258','TAS','Relbia'
16485
+ 'AU','7258','TAS','White Hills'
16486
+ 'AU','7259','TAS','Myrtle Bank'
16487
+ 'AU','7259','TAS','Nunamara'
16488
+ 'AU','7259','TAS','Patersonia'
16489
+ 'AU','7259','TAS','Targa'
16490
+ 'AU','7259','TAS','Tayene'
16491
+ 'AU','7260','TAS','Blumont'
16492
+ 'AU','7260','TAS','Cuckoo'
16493
+ 'AU','7260','TAS','Forester'
16494
+ 'AU','7260','TAS','Jetsonville'
16495
+ 'AU','7260','TAS','Kamona'
16496
+ 'AU','7260','TAS','Lietinna'
16497
+ 'AU','7260','TAS','Lisle'
16498
+ 'AU','7260','TAS','Nabowla'
16499
+ 'AU','7260','TAS','North Scottsdale'
16500
+ 'AU','7260','TAS','Scottsdale'
16501
+ 'AU','7260','TAS','South Springfield'
16502
+ 'AU','7260','TAS','Springfield'
16503
+ 'AU','7260','TAS','Tonganah'
16504
+ 'AU','7260','TAS','Tulendeena'
16505
+ 'AU','7260','TAS','West Scottsdale'
16506
+ 'AU','7261','TAS','Branxholm'
16507
+ 'AU','7261','TAS','Warrentinna'
16508
+ 'AU','7262','TAS','Bridport'
16509
+ 'AU','7262','TAS','Tomahawk'
16510
+ 'AU','7262','TAS','Waterhouse'
16511
+ 'AU','7263','TAS','Alberton'
16512
+ 'AU','7263','TAS','Legerwood'
16513
+ 'AU','7263','TAS','Ringarooma'
16514
+ 'AU','7263','TAS','Talawa'
16515
+ 'AU','7263','TAS','Trenah'
16516
+ 'AU','7264','TAS','Boobyalla'
16517
+ 'AU','7264','TAS','Cape Portland'
16518
+ 'AU','7264','TAS','Derby'
16519
+ 'AU','7264','TAS','Eddystone'
16520
+ 'AU','7264','TAS','Eddystone Point'
16521
+ 'AU','7264','TAS','Gladstone'
16522
+ 'AU','7264','TAS','Herrick'
16523
+ 'AU','7264','TAS','Moorina'
16524
+ 'AU','7264','TAS','Musselroe Bay'
16525
+ 'AU','7264','TAS','Pioneer'
16526
+ 'AU','7264','TAS','Rushy Lagoon'
16527
+ 'AU','7264','TAS','South Mount Cameron'
16528
+ 'AU','7264','TAS','Telita'
16529
+ 'AU','7264','TAS','Weldborough'
16530
+ 'AU','7265','TAS','Banca'
16531
+ 'AU','7265','TAS','Winnaleah'
16532
+ 'AU','7267','TAS','Bangor'
16533
+ 'AU','7267','TAS','Karoola'
16534
+ 'AU','7267','TAS','Lalla'
16535
+ 'AU','7267','TAS','Lower Turners Marsh'
16536
+ 'AU','7267','TAS','Turners Marsh'
16537
+ 'AU','7268','TAS','Lilydale'
16538
+ 'AU','7268','TAS','North Lilydale'
16539
+ 'AU','7268','TAS','Underwood'
16540
+ 'AU','7270','TAS','Badger Head'
16541
+ 'AU','7270','TAS','Beaconsfield'
16542
+ 'AU','7270','TAS','Beauty Point'
16543
+ 'AU','7270','TAS','Clarence Point'
16544
+ 'AU','7270','TAS','Flowery Gully'
16545
+ 'AU','7270','TAS','Greens Beach'
16546
+ 'AU','7270','TAS','Kayena'
16547
+ 'AU','7270','TAS','Kelso'
16548
+ 'AU','7270','TAS','Rowella'
16549
+ 'AU','7270','TAS','Sidmouth'
16550
+ 'AU','7270','TAS','York Town'
16551
+ 'AU','7275','TAS','Blackwall'
16552
+ 'AU','7275','TAS','Deviot'
16553
+ 'AU','7275','TAS','Exeter'
16554
+ 'AU','7275','TAS','Frankford'
16555
+ 'AU','7275','TAS','Glengarry'
16556
+ 'AU','7275','TAS','Holwell'
16557
+ 'AU','7275','TAS','Lanena'
16558
+ 'AU','7275','TAS','Loira'
16559
+ 'AU','7275','TAS','Notley Hills'
16560
+ 'AU','7275','TAS','Robigana'
16561
+ 'AU','7275','TAS','Swan Point'
16562
+ 'AU','7275','TAS','Winkleigh'
16563
+ 'AU','7276','TAS','Gravelly Beach'
16564
+ 'AU','7277','TAS','Bridgenorth'
16565
+ 'AU','7277','TAS','Grindelwald'
16566
+ 'AU','7277','TAS','Legana'
16567
+ 'AU','7277','TAS','Rosevears'
16568
+ 'AU','7290','TAS','Hadspen'
16569
+ 'AU','7291','TAS','Carrick'
16570
+ 'AU','7292','TAS','Hagley'
16571
+ 'AU','7292','TAS','Quamby Bend'
16572
+ 'AU','7292','TAS','Rosevale'
16573
+ 'AU','7292','TAS','Selbourne'
16574
+ 'AU','7292','TAS','Westwood'
16575
+ 'AU','7300','TAS','Devon Hills'
16576
+ 'AU','7300','TAS','Perth'
16577
+ 'AU','7300','TAS','Powranna'
16578
+ 'AU','7301','TAS','Bishopsbourne'
16579
+ 'AU','7301','TAS','Blackwood Creek'
16580
+ 'AU','7301','TAS','Liffey'
16581
+ 'AU','7301','TAS','Longford'
16582
+ 'AU','7301','TAS','Toiberry'
16583
+ 'AU','7302','TAS','Bracknell'
16584
+ 'AU','7302','TAS','Cressy'
16585
+ 'AU','7302','TAS','Poatina'
16586
+ 'AU','7303','TAS','Birralee'
16587
+ 'AU','7303','TAS','Cluan'
16588
+ 'AU','7303','TAS','Exton'
16589
+ 'AU','7303','TAS','Oaks'
16590
+ 'AU','7303','TAS','Osmaston'
16591
+ 'AU','7303','TAS','Westbury'
16592
+ 'AU','7303','TAS','Whitemore'
16593
+ 'AU','7304','TAS','Brandum'
16594
+ 'AU','7304','TAS','Breona'
16595
+ 'AU','7304','TAS','Caveside'
16596
+ 'AU','7304','TAS','Central Plateau'
16597
+ 'AU','7304','TAS','Chudleigh'
16598
+ 'AU','7304','TAS','Dairy Plains'
16599
+ 'AU','7304','TAS','Deloraine'
16600
+ 'AU','7304','TAS','Doctors Point'
16601
+ 'AU','7304','TAS','Dunorlan'
16602
+ 'AU','7304','TAS','Elizabeth Town'
16603
+ 'AU','7304','TAS','Golden Valley'
16604
+ 'AU','7304','TAS','Jackeys Marsh'
16605
+ 'AU','7304','TAS','Kimberley'
16606
+ 'AU','7304','TAS','Liena'
16607
+ 'AU','7304','TAS','Mayberry'
16608
+ 'AU','7304','TAS','Meander'
16609
+ 'AU','7304','TAS','Mersey Forest'
16610
+ 'AU','7304','TAS','Mole Creek'
16611
+ 'AU','7304','TAS','Moltema'
16612
+ 'AU','7304','TAS','Montana'
16613
+ 'AU','7304','TAS','Needles'
16614
+ 'AU','7304','TAS','Parkham'
16615
+ 'AU','7304','TAS','Quamby Brook'
16616
+ 'AU','7304','TAS','Red Hills'
16617
+ 'AU','7304','TAS','Reedy Marsh'
16618
+ 'AU','7304','TAS','Reynolds Neck'
16619
+ 'AU','7304','TAS','Weegena'
16620
+ 'AU','7304','TAS','Weetah'
16621
+ 'AU','7304','TAS','Western Creek'
16622
+ 'AU','7305','TAS','Merseylea'
16623
+ 'AU','7305','TAS','Railton'
16624
+ 'AU','7305','TAS','Sunnyside'
16625
+ 'AU','7306','TAS','Acacia Hills'
16626
+ 'AU','7306','TAS','Barrington'
16627
+ 'AU','7306','TAS','Beulah'
16628
+ 'AU','7306','TAS','Cethana'
16629
+ 'AU','7306','TAS','Claude Road'
16630
+ 'AU','7306','TAS','Cradle Mountain'
16631
+ 'AU','7306','TAS','Gowrie Park'
16632
+ 'AU','7306','TAS','Lorinna'
16633
+ 'AU','7306','TAS','Lower Barrington'
16634
+ 'AU','7306','TAS','Lower Beulah'
16635
+ 'AU','7306','TAS','Middlesex'
16636
+ 'AU','7306','TAS','Nook'
16637
+ 'AU','7306','TAS','Nowhere Else'
16638
+ 'AU','7306','TAS','Paradise'
16639
+ 'AU','7306','TAS','Promised Land'
16640
+ 'AU','7306','TAS','Roland'
16641
+ 'AU','7306','TAS','Sheffield'
16642
+ 'AU','7306','TAS','Staverton'
16643
+ 'AU','7306','TAS','Stoodley'
16644
+ 'AU','7306','TAS','West Kentish'
16645
+ 'AU','7307','TAS','Bakers Beach'
16646
+ 'AU','7307','TAS','Harford'
16647
+ 'AU','7307','TAS','Hawley Beach'
16648
+ 'AU','7307','TAS','Latrobe'
16649
+ 'AU','7307','TAS','Moriarty'
16650
+ 'AU','7307','TAS','Northdown'
16651
+ 'AU','7307','TAS','Port Sorell'
16652
+ 'AU','7307','TAS','Sassafras'
16653
+ 'AU','7307','TAS','Shearwater'
16654
+ 'AU','7307','TAS','Squeaking Point'
16655
+ 'AU','7307','TAS','Thirlstane'
16656
+ 'AU','7307','TAS','Wesley Vale'
16657
+ 'AU','7310','TAS','Aberdeen'
16658
+ 'AU','7310','TAS','Ambleside'
16659
+ 'AU','7310','TAS','Devonport'
16660
+ 'AU','7310','TAS','Don'
16661
+ 'AU','7310','TAS','East Devonport'
16662
+ 'AU','7310','TAS','Erriba'
16663
+ 'AU','7310','TAS','Eugenana'
16664
+ 'AU','7310','TAS','Forth'
16665
+ 'AU','7310','TAS','Forthside'
16666
+ 'AU','7310','TAS','Kindred'
16667
+ 'AU','7310','TAS','Lillico'
16668
+ 'AU','7310','TAS','Lower Wilmot'
16669
+ 'AU','7310','TAS','Melrose'
16670
+ 'AU','7310','TAS','Miandetta'
16671
+ 'AU','7310','TAS','Moina'
16672
+ 'AU','7310','TAS','Paloona'
16673
+ 'AU','7310','TAS','Quoiba'
16674
+ 'AU','7310','TAS','South Spreyton'
16675
+ 'AU','7310','TAS','Spreyton'
16676
+ 'AU','7310','TAS','Stony Rise'
16677
+ 'AU','7310','TAS','Tarleton'
16678
+ 'AU','7310','TAS','Tugrah'
16679
+ 'AU','7310','TAS','West Devonport'
16680
+ 'AU','7310','TAS','Wilmot'
16681
+ 'AU','7315','TAS','Abbotsham'
16682
+ 'AU','7315','TAS','Castra'
16683
+ 'AU','7315','TAS','Gawler'
16684
+ 'AU','7315','TAS','Gunns Plains'
16685
+ 'AU','7315','TAS','Leith'
16686
+ 'AU','7315','TAS','Loongana'
16687
+ 'AU','7315','TAS','Nietta'
16688
+ 'AU','7315','TAS','North Motton'
16689
+ 'AU','7315','TAS','Preston'
16690
+ 'AU','7315','TAS','South Nietta'
16691
+ 'AU','7315','TAS','South Preston'
16692
+ 'AU','7315','TAS','Spalford'
16693
+ 'AU','7315','TAS','Sprent'
16694
+ 'AU','7315','TAS','Turners Beach'
16695
+ 'AU','7315','TAS','Ulverstone'
16696
+ 'AU','7315','TAS','Upper Castra'
16697
+ 'AU','7315','TAS','West Ulverstone'
16698
+ 'AU','7316','TAS','Camena'
16699
+ 'AU','7316','TAS','Cuprona'
16700
+ 'AU','7316','TAS','Heybridge'
16701
+ 'AU','7316','TAS','Howth'
16702
+ 'AU','7316','TAS','Loyetea'
16703
+ 'AU','7316','TAS','Penguin'
16704
+ 'AU','7316','TAS','Preservation Bay'
16705
+ 'AU','7316','TAS','Riana'
16706
+ 'AU','7316','TAS','South Riana'
16707
+ 'AU','7316','TAS','Sulphur Creek'
16708
+ 'AU','7316','TAS','West Pine'
16709
+ 'AU','7320','TAS','Acton'
16710
+ 'AU','7320','TAS','Brooklyn'
16711
+ 'AU','7320','TAS','Burnie'
16712
+ 'AU','7320','TAS','Camdale'
16713
+ 'AU','7320','TAS','Cooee'
16714
+ 'AU','7320','TAS','Downlands'
16715
+ 'AU','7320','TAS','Emu Heights'
16716
+ 'AU','7320','TAS','Havenview'
16717
+ 'AU','7320','TAS','Hillcrest'
16718
+ 'AU','7320','TAS','Montello'
16719
+ 'AU','7320','TAS','Ocean Vista'
16720
+ 'AU','7320','TAS','Park Grove'
16721
+ 'AU','7320','TAS','Parklands'
16722
+ 'AU','7320','TAS','Romaine'
16723
+ 'AU','7320','TAS','Round Hill'
16724
+ 'AU','7320','TAS','Shorewell Park'
16725
+ 'AU','7320','TAS','South Burnie'
16726
+ 'AU','7320','TAS','Upper Burnie'
16727
+ 'AU','7320','TAS','Wivenhoe'
16728
+ 'AU','7321','TAS','Black River'
16729
+ 'AU','7321','TAS','Boat Harbour'
16730
+ 'AU','7321','TAS','Boat Harbour Beach'
16731
+ 'AU','7321','TAS','Chasm Creek'
16732
+ 'AU','7321','TAS','Corinna'
16733
+ 'AU','7321','TAS','Cowrie Point'
16734
+ 'AU','7321','TAS','Crayfish Creek'
16735
+ 'AU','7321','TAS','Detention'
16736
+ 'AU','7321','TAS','East Cam'
16737
+ 'AU','7321','TAS','East Ridgley'
16738
+ 'AU','7321','TAS','Edgcumbe Beach'
16739
+ 'AU','7321','TAS','Guildford'
16740
+ 'AU','7321','TAS','Hampshire'
16741
+ 'AU','7321','TAS','Hellyer'
16742
+ 'AU','7321','TAS','Highclere'
16743
+ 'AU','7321','TAS','Luina'
16744
+ 'AU','7321','TAS','Mawbanna'
16745
+ 'AU','7321','TAS','Montumana'
16746
+ 'AU','7321','TAS','Mooreville'
16747
+ 'AU','7321','TAS','Natone'
16748
+ 'AU','7321','TAS','Parrawe'
16749
+ 'AU','7321','TAS','Port Latta'
16750
+ 'AU','7321','TAS','Ridgley'
16751
+ 'AU','7321','TAS','Rocky Cape'
16752
+ 'AU','7321','TAS','Savage River'
16753
+ 'AU','7321','TAS','Sisters Beach'
16754
+ 'AU','7321','TAS','Stowport'
16755
+ 'AU','7321','TAS','Tewkesbury'
16756
+ 'AU','7321','TAS','Tullah'
16757
+ 'AU','7321','TAS','Upper Natone'
16758
+ 'AU','7321','TAS','Upper Stowport'
16759
+ 'AU','7321','TAS','Waratah'
16760
+ 'AU','7321','TAS','West Mooreville'
16761
+ 'AU','7321','TAS','West Ridgley'
16762
+ 'AU','7321','TAS','Wiltshire'
16763
+ 'AU','7322','TAS','Somerset'
16764
+ 'AU','7325','TAS','Calder'
16765
+ 'AU','7325','TAS','Doctors Rocks'
16766
+ 'AU','7325','TAS','Elliott'
16767
+ 'AU','7325','TAS','Flowerdale'
16768
+ 'AU','7325','TAS','Henrietta'
16769
+ 'AU','7325','TAS','Lapoinya'
16770
+ 'AU','7325','TAS','Meunna'
16771
+ 'AU','7325','TAS','Milabena'
16772
+ 'AU','7325','TAS','Moorleah'
16773
+ 'AU','7325','TAS','Mount Hicks'
16774
+ 'AU','7325','TAS','Myalla'
16775
+ 'AU','7325','TAS','Oldina'
16776
+ 'AU','7325','TAS','Oonah'
16777
+ 'AU','7325','TAS','Preolenna'
16778
+ 'AU','7325','TAS','Sisters Creek'
16779
+ 'AU','7325','TAS','Table Cape'
16780
+ 'AU','7325','TAS','Takone'
16781
+ 'AU','7325','TAS','West Takone'
16782
+ 'AU','7325','TAS','Wynyard'
16783
+ 'AU','7325','TAS','Yolla'
16784
+ 'AU','7330','TAS','Alcomie'
16785
+ 'AU','7330','TAS','Arthur River'
16786
+ 'AU','7330','TAS','Brittons Swamp'
16787
+ 'AU','7330','TAS','Broadmeadows'
16788
+ 'AU','7330','TAS','Christmas Hills'
16789
+ 'AU','7330','TAS','Couta Rocks'
16790
+ 'AU','7330','TAS','Edith Creek'
16791
+ 'AU','7330','TAS','Forest'
16792
+ 'AU','7330','TAS','Irishtown'
16793
+ 'AU','7330','TAS','Lileah'
16794
+ 'AU','7330','TAS','Marrawah'
16795
+ 'AU','7330','TAS','Mella'
16796
+ 'AU','7330','TAS','Mengha'
16797
+ 'AU','7330','TAS','Montagu'
16798
+ 'AU','7330','TAS','Nabageena'
16799
+ 'AU','7330','TAS','Nelson Bay'
16800
+ 'AU','7330','TAS','Redpa'
16801
+ 'AU','7330','TAS','Roger River'
16802
+ 'AU','7330','TAS','Scopus'
16803
+ 'AU','7330','TAS','Scotchtown'
16804
+ 'AU','7330','TAS','Smithton'
16805
+ 'AU','7330','TAS','South Forest'
16806
+ 'AU','7330','TAS','Temma'
16807
+ 'AU','7330','TAS','Three Hummock Island'
16808
+ 'AU','7330','TAS','Togari'
16809
+ 'AU','7330','TAS','Trowutta'
16810
+ 'AU','7330','TAS','West Montagu'
16811
+ 'AU','7330','TAS','Woolnorth'
16812
+ 'AU','7331','TAS','Stanley'
16813
+ 'AU','7466','TAS','Gormanston'
16814
+ 'AU','7467','TAS','Lake Margaret'
16815
+ 'AU','7467','TAS','Queenstown'
16816
+ 'AU','7468','TAS','Macquarie Heads'
16817
+ 'AU','7468','TAS','Strahan'
16818
+ 'AU','7469','TAS','Granville Harbour'
16819
+ 'AU','7469','TAS','Renison Bell'
16820
+ 'AU','7469','TAS','Trial Harbour'
16821
+ 'AU','7469','TAS','Zeehan'
16822
+ 'AU','7470','TAS','Rosebery'
16823
+ 'AU','7800','TAS','Hobart'
16824
+ 'AU','7802','TAS','Hobart'
16825
+ 'AU','7803','TAS','Hobart'
16826
+ 'AU','7804','TAS','Hobart'
16827
+ 'AU','7805','TAS','Hobart'
16828
+ 'AU','7806','TAS','Hobart'
16829
+ 'AU','7807','TAS','Hobart'
16830
+ 'AU','7808','TAS','Hobart'
16831
+ 'AU','7809','TAS','Hobart'
16832
+ 'AU','7810','TAS','Hobart'
16833
+ 'AU','7811','TAS','Hobart'
16834
+ 'AU','7812','TAS','Hobart'
16835
+ 'AU','7813','TAS','Hobart'
16836
+ 'AU','7814','TAS','Hobart'
16837
+ 'AU','7823','TAS','Hobart'
16838
+ 'AU','7824','TAS','Hobart'
16839
+ 'AU','7827','TAS','Hobart'
16840
+ 'AU','7828','TAS','Hobart'
16841
+ 'AU','7829','TAS','Hobart'
16842
+ 'AU','7845','TAS','Hobart'
16843
+ 'AU','7850','TAS','Hobart'
16844
+ 'AU','7901','TAS','Launceston'
16845
+ 'AU','7902','TAS','Launceston'
16846
+ 'AU','7903','TAS','Launceston'
16847
+ 'AU','7904','TAS','Launceston'
16848
+ 'AU','7905','TAS','Launceston'
16849
+ 'AU','7906','TAS','Launceston'
16850
+ 'AU','7907','TAS','Launceston'
16851
+ 'AU','7908','TAS','Launceston'
16852
+ 'AU','7909','TAS','Launceston'
16853
+ 'AU','7910','TAS','Launceston'
16854
+ 'AU','7911','TAS','Launceston'
16855
+ 'AU','7912','TAS','Launceston'
16856
+ 'AU','7913','TAS','Launceston'
16857
+ 'AU','7914','TAS','Launceston'
16858
+ 'AU','7915','TAS','Burnie'
16859
+ 'AU','7916','TAS','Burnie'
16860
+ 'AU','7917','TAS','Burnie'
16861
+ 'AU','7918','TAS','Burnie'
16862
+ 'AU','7919','TAS','Burnie'
16863
+ 'AU','7920','TAS','Burnie'
16864
+ 'AU','7921','TAS','Burnie'
16865
+ 'AU','7922','TAS','Launceston'
16866
+ 'AU','7923','TAS','Launceston'
16867
+ 'AU','8001','VIC','Melbourne'
16868
+ 'AU','8002','VIC','East Melbourne'
16869
+ 'AU','8003','VIC','Collins Street East'
16870
+ 'AU','8004','VIC','St Kilda Road'
16871
+ 'AU','8005','VIC','World Trade Centre'
16872
+ 'AU','8006','VIC','Abeckett Street'
16873
+ 'AU','8007','VIC','Collins Street West'
16874
+ 'AU','8008','VIC','St Kilda Road Central'
16875
+ 'AU','8009','VIC','Flinders Lane'
16876
+ 'AU','8010','VIC','Law Courts'
16877
+ 'AU','8011','VIC','Little Lonsdale Street'
16878
+ 'AU','8045','VIC','Melbourne'
16879
+ 'AU','8051','VIC','Melbourne'
16880
+ 'AU','8060','VIC','Melbourne'
16881
+ 'AU','8061','VIC','Melbourne'
16882
+ 'AU','8066','VIC','Melbourne'
16883
+ 'AU','8069','VIC','Melbourne'
16884
+ 'AU','8070','VIC','Melbourne'
16885
+ 'AU','8071','VIC','Melbourne'
16886
+ 'AU','8102','VIC','Melbourne'
16887
+ 'AU','8103','VIC','Melbourne'
16888
+ 'AU','8107','VIC','Melbourne'
16889
+ 'AU','8108','VIC','Melbourne'
16890
+ 'AU','8111','VIC','Melbourne'
16891
+ 'AU','8120','VIC','Melbourne'
16892
+ 'AU','8205','VIC','Melbourne'
16893
+ 'AU','8383','VIC','Melbourne'
16894
+ 'AU','8386','VIC','Melbourne'
16895
+ 'AU','8388','VIC','Melbourne'
16896
+ 'AU','8390','VIC','Melbourne'
16897
+ 'AU','8393','VIC','Melbourne'
16898
+ 'AU','8394','VIC','Melbourne'
16899
+ 'AU','8396','VIC','Melbourne'
16900
+ 'AU','8399','VIC','Melbourne'
16901
+ 'AU','8500','VIC','North Melbourne'
16902
+ 'AU','8507','VIC','Carlton'
16903
+ 'AU','8538','VIC','Brunswick'
16904
+ 'AU','8557','VIC','Fitzroy'
16905
+ 'AU','8576','VIC','Ivanhoe'
16906
+ 'AU','8622','VIC','Hawthorn'
16907
+ 'AU','8626','VIC','Camberwell'
16908
+ 'AU','8627','VIC','Camberwell'
16909
+ 'AU','8785','VIC','Dandenong'
16910
+ 'AU','8865','VIC','South Melbourne'
16911
+ 'AU','8873','VIC','Port Melbourne'
16912
+ 'AU','9000','QLD','Brisbane'
16913
+ 'AU','9001','QLD','Brisbane'
16914
+ 'AU','9002','QLD','Brisbane'
16915
+ 'AU','9005','QLD','Brisbane'
16916
+ 'AU','9007','QLD','Brisbane'
16917
+ 'AU','9008','QLD','Brisbane'
16918
+ 'AU','9009','QLD','Brisbane'
16919
+ 'AU','9010','QLD','Brisbane'
16920
+ 'AU','9013','QLD','Brisbane'
16921
+ 'AU','9015','QLD','Brisbane'
16922
+ 'AU','9016','QLD','Brisbane GPO Boxes'
16923
+ 'AU','9017','QLD','Brisbane GPO Boxes'
16924
+ 'AU','9018','QLD','Brisbane GPO Boxes'
16925
+ 'AU','9019','QLD','Brisbane GPO Boxes'
16926
+ 'AU','9020','QLD','Brisbane'
16927
+ 'AU','9021','QLD','Brisbane GPO Boxes'
16928
+ 'AU','9022','QLD','Brisbane GPO Boxes'
16929
+ 'AU','9023','QLD','Brisbane GPO Boxes'
16930
+ 'AU','9464','QLD','Northgate MC'
16931
+ 'AU','9726','QLD','Gold Coast MC'
16932
+ 'AU','9728','QLD','Gold Coast MC'
16933
+ 'AU','9729','QLD','Gold Coast MC'
app/design/frontend/default/default/layout/fontis_australia.xml DELETED
@@ -1,45 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Fontis Australia Extension
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Open Software License (OSL 3.0)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/osl-3.0.php
12
- * If you did not receive a copy of the license and are unable to
13
- * obtain it through the world-wide-web, please send an email
14
- * to license@magentocommerce.com so we can send you a copy immediately.
15
- *
16
- * @category Fontis
17
- * @package Fontis_Australia
18
- * @author Chris Norton
19
- * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
20
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
- */
22
- -->
23
- <layout version="0.1.0">
24
- <customer_address_form>
25
- <reference name="footer">
26
- <block type="core/template" name="fontis_australia_autocomplete" template="fontis/australia/postcode.phtml"/>
27
- </reference>
28
- </customer_address_form>
29
- <customer_account_create>
30
- <reference name="footer">
31
- <block type="core/template" name="fontis_australia_autocomplete" template="fontis/australia/postcode.phtml"/>
32
- </reference>
33
- </customer_account_create>
34
- <checkout_onepage_index>
35
- <reference name="footer">
36
- <block type="core/template" name="fontis_australia_autocomplete" template="fontis/australia/postcode-checkout.phtml"/>
37
- </reference>
38
- </checkout_onepage_index>
39
- <checkout_onepage_success>
40
- <reference name="checkout.success">
41
- <block type="checkout/onepage_success" name="fontis.australia.bpay.success" template="fontis/australia/payment/bpay/success.phtml"/>
42
- <block type="checkout/onepage_success" name="fontis.australia.directdeposit.success" template="fontis/australia/payment/directdeposit/success.phtml"/>
43
- </reference>
44
- </checkout_onepage_success>
45
- </layout>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/default/template/fontis/australia/payment/bpay/success.phtml DELETED
@@ -1,40 +0,0 @@
1
- <?php
2
- /**
3
- * Fontis Australia Extension
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * @category Fontis
16
- * @package Fontis_Australia
17
- * @author Chris Norton
18
- * @copyright Copyright (c) 2009 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
- */
21
- ?>
22
- <?php
23
- $order = Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId());
24
- $payment = $order->getPayment();
25
- ?>
26
- <?php if($payment->getMethod() == 'bpay'): ?>
27
- <?php
28
- $bpay = Mage::getModel('australia/payment_bpay');
29
- $data = array(
30
- 'biller_code' => $bpay->getBillerCode(),
31
- 'ref' => $bpay->getRef()
32
- );
33
- $payment->setAdditionalData(serialize($data));
34
- $payment->save();
35
-
36
- $order->addStatusToHistory('pending_bpay', 'Order placed with BPAY', false);
37
- $order->save();
38
- ?>
39
- <?php echo Mage::helper('australia/bpay')->bpayInfoBlock($data['biller_code'], $data['ref']); ?>
40
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/default/template/fontis/australia/payment/directdeposit/form.phtml DELETED
@@ -1,41 +0,0 @@
1
- <?php
2
- /**
3
- * Fontis Australia Extension
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * @category Fontis
16
- * @package Fontis_Australia
17
- * @author Chris Norton
18
- * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
- */
21
- ?>
22
- <fieldset class="form-list">
23
- <ul id="payment_form_<?php echo $this->getMethodCode() ?>" style="display:none">
24
- <li>
25
- <div class="input-box">
26
- <?php if ($this->getMethod()->getAccountName()): ?>
27
- <?php echo $this->__('<label>Account Name</label>: %s', $this->getMethod()->getAccountName()) ?><br />
28
- <?php endif;?>
29
- <?php if ($this->getMethod()->getAccountBSB()): ?>
30
- <?php echo $this->__('<label>Account BSB</label>: %s', $this->getMethod()->getAccountBSB()) ?><br />
31
- <?endif;?>
32
- <?php if ($this->getMethod()->getAccountNumber()): ?>
33
- <?php echo $this->__('<label>Account Number</label>: %s', $this->getMethod()->getAccountNumber()) ?><br />
34
- <?php endif;?>
35
- <?php if ($this->getMethod()->getMessage()): ?>
36
- <p><?php echo $this->__('%s', $this->getMethod()->getMessage()); ?></p>
37
- <?php endif;?>
38
- </div>
39
- </li>
40
- </ul>
41
- </fieldset>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/default/template/fontis/australia/payment/directdeposit/success.phtml DELETED
@@ -1,38 +0,0 @@
1
- <?php
2
- /**
3
- * Fontis Australia Extension
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * @category Fontis
16
- * @package Fontis_Australia
17
- * @author Chris Norton
18
- * @copyright Copyright (c) 2009 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
- */
21
- ?>
22
- <?php
23
- $order = Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId());
24
- $payment = $order->getPayment();
25
- ?>
26
- <?php if($payment->getMethod() == 'directdeposit_au'): ?>
27
- <?php
28
- $order->addStatusToHistory('pending_deposit', 'Order placed with Direct Deposit', false);
29
- $order->save();
30
- $data = @unserialize($payment->getAdditionalData());
31
- ?>
32
- <div id="directdeposit_au_success">
33
- <p class="message"><?php echo $this->__('Please use the following details to make payment:'); ?></p>
34
- <?php if($data['account_name']): ?><br /><b><?php echo $this->__('Account Name: '); ?></b> <?php echo $data['account_name']; ?><?php endif; ?>
35
- <?php if($data['account_bsb']): ?><br /><b><?php echo $this->__('Account BSB: '); ?></b> <?php echo $data['account_bsb']; ?><?php endif; ?>
36
- <?php if($data['account_number']): ?><br /><b><?php echo $this->__('Account Number: '); ?></b> <?php echo $data['account_number']; ?><?php endif; ?>
37
- </div>
38
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/default/template/fontis/australia/postcode-checkout.phtml DELETED
@@ -1,84 +0,0 @@
1
- <?php
2
- /**
3
- * Fontis Australia Extension
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * @category Fontis
16
- * @package Fontis_Australia
17
- * @author Chris Norton
18
- * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
- */
21
- ?>
22
- <script type="text/javascript">
23
-
24
- //============ Billing ============//
25
- var autocomplete_city_billing = new Element('div', { id: 'autocomplete_city_billing', 'class': 'search-autocomplete' });
26
- $('billing:city').parentNode.appendChild(autocomplete_city_billing);
27
-
28
- function updateAddressBilling(text, item) {
29
- // Update state and postcode fields
30
- var id = item.id;
31
- var tokens = id.split('-');
32
-
33
- // Assume item at index 1 is region_id, item at index 3 is postcode
34
- $('billing:region_id').value = tokens[1];
35
- $('billing:postcode').value = tokens[3];
36
- }
37
-
38
- // Create the autocompleter and assign it to a variable for future use.
39
- var completer = new Ajax.Autocompleter("billing:city", "autocomplete_city_billing", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
40
- afterUpdateElement: updateAddressBilling,
41
- minChars: 2,
42
- parameters: 'country=' + $F('billing:country_id')
43
- });
44
-
45
- // Detect when the country has changed and update the parameters sent by the autocompleter.
46
- $('billing:country_id').observe('change', function() {
47
- completer = new Ajax.Autocompleter("billing:city", "autocomplete_city_billing", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
48
- afterUpdateElement: updateAddressBilling,
49
- minChars: 2,
50
- parameters: 'country=' + $F('billing:country_id')
51
- });
52
- });
53
-
54
- //============ Shipping ============//
55
- var autocomplete_city_shipping = new Element('div', { id: 'autocomplete_city_shipping', 'class': 'search-autocomplete' });
56
- $('shipping:city').parentNode.appendChild(autocomplete_city_shipping);
57
-
58
- function updateAddressShipping(text, item) {
59
- // Update state and postcode fields
60
- var id = item.id;
61
- var tokens = id.split('-');
62
-
63
- // Assume item at index 1 is region_id, item at index 3 is postcode
64
- $('shipping:region_id').value = tokens[1];
65
- $('shipping:postcode').value = tokens[3];
66
- }
67
-
68
- // Create the autocompleter and assign it to a variable for future use.
69
- var completer = new Ajax.Autocompleter("shipping:city", "autocomplete_city_shipping", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
70
- afterUpdateElement: updateAddressShipping,
71
- minChars: 2,
72
- parameters: 'country=' + $F('shipping:country_id')
73
- });
74
-
75
- // Detect when the country has changed and update the parameters sent by the autocompleter.
76
- $('shipping:country_id').observe('change', function() {
77
- completer = new Ajax.Autocompleter("shipping:city", "autocomplete_city_shipping", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
78
- afterUpdateElement: updateAddressShipping,
79
- minChars: 2,
80
- parameters: 'country=' + $F('shipping:country_id')
81
- });
82
- });
83
-
84
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/default/template/fontis/australia/postcode.phtml DELETED
@@ -1,55 +0,0 @@
1
- <?php
2
- /**
3
- * Fontis Australia Extension
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * @category Fontis
16
- * @package Fontis_Australia
17
- * @author Chris Norton
18
- * @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
- */
21
- ?>
22
- <script type="text/javascript">
23
-
24
- // Create and insert the div that will hold the list of autocomplete items. This
25
- // is added to the DOM immediately following the #city field.
26
- var autocomplete_city = new Element('div', { id: 'autocomplete_city', 'class': 'search-autocomplete' });
27
- $('city').parentNode.appendChild(autocomplete_city);
28
-
29
- function updateAddress(text, item) {
30
- // Update state and postcode fields
31
- var id = item.id;
32
- var tokens = id.split('-');
33
-
34
- // Assume item at index 1 is region_id, item at index 3 is postcode
35
- $('region_id').value = tokens[1];
36
- $('zip').value = tokens[3];
37
- }
38
-
39
- // Create the autocompleter and assign it to a variable for future use.
40
- var completer = new Ajax.Autocompleter("city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
41
- afterUpdateElement: updateAddress,
42
- minChars: 2,
43
- parameters: 'country=' + $F('country')
44
- });
45
-
46
- // Detect when the country has changed and update the parameters sent by the autocompleter.
47
- $('country').observe('change', function() {
48
- completer = new Ajax.Autocompleter("city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
49
- afterUpdateElement: updateAddress,
50
- minChars: 2,
51
- parameters: 'country=' + $F('country')
52
- });
53
- });
54
-
55
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Fontis_Australia</name>
4
- <version>2.0.7</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Broad extension that provides functionality for Australian stores.</summary>
10
  <description>This extension is intended to provide most of the functionality needed to run a Magento store in Australia. This includes all essential payment and shipping methods as well as small localisations such as adding the store's ABN, adding Australian states and territories to the region directory and adding in a postcode database.</description>
11
- <notes>Currently active are modules for BPAY, direct deposit, Australia Post, the addition of regions and postcodes, and the addition of ABN and phone number to the general configuration values (although currently not in use). Also supports creating product information feeds for the Shopbot, Getprice and MyShopping services.</notes>
12
- <authors><author><name>Chris Norton</name><user>auto-converted</user><email>chris.norton@fontis.com.au</email></author><author><name>Lloyd Hazlett</name><user>auto-converted</user><email>hazzard43@fastmail.fm</email></author><author><name>Fontis</name><user>auto-converted</user><email>magento@fontis.com.au</email></author></authors>
13
- <date>2010-06-17</date>
14
- <time>05:13:43</time>
15
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="7245a655eac2513f8cd6c1a825586936"/><file name="info.phtml" hash="d4836cf6f5316b76b56ddefc48b67d94"/></dir><dir name="directdeposit"><file name="form.phtml" hash="0e5272781aa7c4d25c1c243fcf00487e"/><file name="info.phtml" hash="38112ef511c67c91a3f2ad43da7929da"/></dir></dir><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="array_dropdown.phtml" hash="bdce71494213de5fe194873b5d0bed56"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="fontis_australia.xml" hash="d33f99fc5dfc156de09254e95a2c82eb"/></dir><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="3895f9afa025444eb9a1cdc38582069d"/><file name="info.phtml" hash="47d1e0cc3ae676dff49990eba0ac4608"/><file name="success.phtml" hash="115a1710b1f3b0ef3ecf0b957651bb43"/></dir><dir name="directdeposit"><file name="form.phtml" hash="8cf9d09e42ba30206aabf01a3ec38239"/><file name="info.phtml" hash="8bc98b2fd1d1943f17d2831a67c97db3"/><file name="success.phtml" hash="0545f8c3c9d37a2045a20f442991e8d7"/></dir></dir><file name="postcode-checkout.phtml" hash="51867acd43c4f8c982ab1fea103a579f"/><file name="postcode.phtml" hash="b0d7bfa170c7ca3bd4a256f0404d7189"/></dir></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Fontis"><dir name="Australia"><dir name="Block"><dir name="Bpay"><file name="Form.php" hash="958e11d14d7c87054a68d34b60c498d6"/><file name="Info.php" hash="a28f40be3c76637eb43ba80c61031512"/></dir><dir name="Directdeposit"><file name="Form.php" hash="13589d5d85499678bdc62fde04107095"/><file name="Info.php" hash="0f31ac7451127c87813c823423a9057b"/></dir><file name="Autocomplete.php" hash="4f33f809dae969781ead580b13e9bd3a"/><file name="Myshopping.php" hash="1e9b9149a867136f541b765d54ba402b"/><file name="Shopbot.php" hash="fca48ea13a60bdd1b207913f536bce45"/></dir><dir name="controllers"><file name="AjaxController.php" hash="5fb086e3236446b6a6f10f4c78eb3fcb"/></dir><dir name="etc"><file name="config.xml" hash="e969b8612135e92ed71a3c99c4f8adf3"/><file name="system.xml" hash="66521865e3be5af17279967ffefe7874"/></dir><dir name="Helper"><file name="Bpay.php" hash="a2565444f18b28e70c8d29f802297057"/><file name="Data.php" hash="e493486d7a5ccd5589d99d08b136b819"/></dir><dir name="Model"><dir name="Config"><file name="CustomerGroupAccess.php" hash="e531a8049b9a877e01c2b806b065dbef"/><file name="CustomerGroups.php" hash="8014e56b1141cb9bbb63f807ec1c87a5"/><file name="ProductAttributes.php" hash="44f5a322c2c6c5e1ae7650a9633acd2c"/></dir><dir name="Getprice"><file name="Child.php" hash="dfabad93d15f2429737557edf129e5b6"/><file name="Cron.php" hash="b26abaacab672a4d23a030fdb3ad447c"/></dir><dir name="Myshopping"><file name="Child.php" hash="eed4b19b9461d31fa398804a6dd83b5b"/><file name="Cron.php" hash="8501d2489b5d6738f1eb3075bca3e7e3"/></dir><dir name="Mysql4"><dir name="Shipping"><dir name="Carrier"><dir name="Eparcel"><file name="Collection.php" hash="87f450c6b318060b83e7d7d0662cdf50"/></dir><file name="Eparcel.php" hash="9614eed4296b17a429db745c289d42cf"/></dir></dir></dir><dir name="Payment"><file name="Bpay.php" hash="b60d9a61b06b100164fff49fc5113f71"/><file name="Directdeposit.php" hash="c80ba74494bfeea040dc2bf942cec5f0"/></dir><dir name="Shipping"><dir name="Carrier"><file name="Australiapost.php" hash="30b8f63dda623d65e1505780c6b52737"/><file name="Eparcel.php" hash="b65cd938b27b4666e22b6833ca738226"/></dir><dir name="Config"><file name="Eparcel.php" hash="8c754cdc86316dbee53db68f0e2652bc"/><file name="Eparcelcondition.php" hash="b8cc830ab6e0e397d32bf574f60b0500"/><file name="Weightunits.php" hash="e13ba9de393ae67420f863d4008c3c72"/></dir></dir><dir name="Shopbot"><file name="Child.php" hash="121df42f2ea7cc7945a88227412438ca"/><file name="Cron.php" hash="d264199e5ba497465b5331d72fca5997"/></dir></dir><dir name="sql"><dir name="australia_setup"><file name="mysql4-install-0.7.0.php" hash="f475b13bb5319599c4a852cfb8788f9a"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="9a381c07ec9ee53e2ffaa7ea7da4559d"/><file name="postcodes.txt" hash="21083a0f94e200259c9b4540666b251e"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="fontis"><file name="bpay.png" hash="481c9ee07049203aca13d6d2c2948cf7"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Fontis_Australia.xml" hash="a60b83cf1b1b449a16fe09da16342a4d"/></dir></target></contents>
16
  <compatible/>
17
- <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Fontis_Australia</name>
4
+ <version>2.2.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Broad extension that provides functionality for Australian stores.</summary>
10
  <description>This extension is intended to provide most of the functionality needed to run a Magento store in Australia. This includes all essential payment and shipping methods as well as small localisations such as adding the store's ABN, adding Australian states and territories to the region directory and adding in a postcode database.</description>
11
+ <notes>Currently active are modules for BPAY, direct deposit, Australia Post, the addition of regions and postcodes, and the addition of ABN and phone number to the general configuration values (although currently not in use).</notes>
12
+ <authors><author><name>Chris Norton</name><user>chnorton</user><email>chris.norton@fontis.com.au</email></author><author><name>Fontis</name><user>fontis</user><email>magento@fontis.com.au</email></author></authors>
13
+ <date>2013-05-07</date>
14
+ <time>07:21:47</time>
15
+ <contents><target name="magecommunity"><dir name="Fontis"><dir name="Australia"><dir name="Block"><file name="Autocomplete.php" hash="38d0a8c86484df3f1ecdf717c31c0d32"/><dir name="Bpay"><file name="Form.php" hash="958e11d14d7c87054a68d34b60c498d6"/><file name="Info.php" hash="a28f40be3c76637eb43ba80c61031512"/></dir><dir name="Directdeposit"><file name="Form.php" hash="13589d5d85499678bdc62fde04107095"/><file name="Info.php" hash="0f31ac7451127c87813c823423a9057b"/></dir><file name="Getprice.php" hash="5a7bf428bdf3a2f6b829300c23ff3128"/><file name="Googleproducts.php" hash="ea0855bf1e2bd7b17c5bfd7f8621c0be"/><file name="Myshopping.php" hash="e0f1a55f3a9813a61c7e007499ee2847"/><file name="Shopbot.php" hash="23f9d9281bab84ef5a56205406acca5e"/><file name="Shoppingdotcom.php" hash="c8e591f21b7c4177a6cf08e2e5a5b8eb"/></dir><dir name="Helper"><file name="Bpay.php" hash="a2565444f18b28e70c8d29f802297057"/><file name="Data.php" hash="e493486d7a5ccd5589d99d08b136b819"/></dir><dir name="Model"><file name="Child.php" hash="475f761e6d50ce007fc264c492175181"/><dir name="Config"><file name="Condition.php" hash="c9e4791b79c3396fcc09d4360ce07f58"/><file name="CustomerGroupAccess.php" hash="e531a8049b9a877e01c2b806b065dbef"/><file name="CustomerGroups.php" hash="8014e56b1141cb9bbb63f807ec1c87a5"/><file name="ProductAttributes.php" hash="44f5a322c2c6c5e1ae7650a9633acd2c"/></dir><file name="FeedCronBase.php" hash="ddb265d96c3c6c8dbdeb16bc1c81c73d"/><dir name="Getprice"><file name="Child.php" hash="dfabad93d15f2429737557edf129e5b6"/><file name="Cron.php" hash="71a66c848b92673249c48490bef9f8d3"/></dir><file name="Getprice.php" hash="13b0ced9bb96501f63f4f18b53abc648"/><dir name="Googleproducts"><file name="Cron.php" hash="d32cca98a88e419351317685bf4e572f"/></dir><file name="Googleproducts.php" hash="ed6e75324fbaba5bc2ce1a5df9725d85"/><dir name="Myshopping"><file name="Child.php" hash="eed4b19b9461d31fa398804a6dd83b5b"/><file name="Cron.php" hash="1c57f4946c70cc15afdae9f72fb78f19"/></dir><file name="Myshopping.php" hash="0142fee7f03a38ae793054f35f4694d2"/><dir name="Mysql4"><dir name="Shipping"><dir name="Carrier"><dir name="Eparcel"><file name="Collection.php" hash="87f450c6b318060b83e7d7d0662cdf50"/></dir><file name="Eparcel.php" hash="0eb49c51ffa0905c37c36d803437cff1"/></dir></dir></dir><dir name="Payment"><file name="Bpay.php" hash="b60d9a61b06b100164fff49fc5113f71"/><file name="Directdeposit.php" hash="abd98cae3103f858e73ae9bc6e1bc3ec"/></dir><dir name="Shipping"><dir name="Carrier"><file name="Australiapost.php" hash="2af36040460a688ea3b283045267705d"/><dir name="Eparcel"><dir name="Export"><file name="Abstract.php" hash="7e704c57695b3f6c01295f2539293741"/><file name="Csv.php" hash="0b629598d3fc4923f63549230c0fdcee"/><file name="Exception.php" hash="c548db3d6f8c03fa5d50a37c069be584"/></dir></dir><file name="Eparcel.php" hash="3e95c1a26a3c08843784bbbbd4783c37"/></dir><dir name="Config"><file name="Eparcel.php" hash="8c754cdc86316dbee53db68f0e2652bc"/><file name="Eparcelcondition.php" hash="b8cc830ab6e0e397d32bf574f60b0500"/><file name="Shippingmethods.php" hash="e9f180995d20abce68b6497e0114568b"/><file name="Weightunits.php" hash="e13ba9de393ae67420f863d4008c3c72"/></dir></dir><dir name="Shopbot"><file name="Child.php" hash="121df42f2ea7cc7945a88227412438ca"/><file name="Cron.php" hash="19ee9f6b965846be570ca18fd78cfb15"/></dir><file name="Shopbot.php" hash="0d3dfa8fa56098eb74dbea22c2ca3b41"/><dir name="Shoppingdotcom"><file name="Cron.php" hash="353db362d54aaeef11d0cddcf4a6a8a1"/></dir><file name="Shoppingdotcom.php" hash="26a3837c76ff71e6eeab80f527561dd6"/></dir><dir name="controllers"><file name="AjaxController.php" hash="5fb086e3236446b6a6f10f4c78eb3fcb"/><file name="EparcelController.php" hash="2a287dbe2fffa7c74a3a4835415eb79c"/></dir><dir name="etc"><file name="config.xml" hash="dc14eee1d363eef102b08177cff0cce3"/><file name="system.xml" hash="46ec315648c936c27d9c193339d1d4f8"/></dir><dir name="sql"><dir name="australia_setup"><file name="mysql4-install-0.7.0.php" hash="8aa6c64caf123d0898e4ebaa3ed0cffc"/><file name="mysql4-install-2.2.0.php" hash="01ff3bef6eba7cc1e132caefc6d1cc9e"/><file name="mysql4-install-2.2.2.php" hash="d827a1a5d9019041682dda2c443404a7"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="9a381c07ec9ee53e2ffaa7ea7da4559d"/><file name="mysql4-upgrade-2.1.0-2.2.0.php" hash="e928ad23537c8a33ed767e873b0c9bb6"/><file name="mysql4-upgrade-2.2.1-2.2.2.php" hash="e3e0834f789e58d43ee6697dbb8353a9"/><file name="postcodes.csv" hash="e6e407c3fcf49625e62ee89f9404e667"/><file name="postcodes.txt" hash="21083a0f94e200259c9b4540666b251e"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="7245a655eac2513f8cd6c1a825586936"/><file name="info.phtml" hash="d4836cf6f5316b76b56ddefc48b67d94"/></dir><dir name="directdeposit"><file name="form.phtml" hash="0e5272781aa7c4d25c1c243fcf00487e"/><file name="info.phtml" hash="38112ef511c67c91a3f2ad43da7929da"/></dir></dir><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="array_dropdown.phtml" hash="bdce71494213de5fe194873b5d0bed56"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="fontis_australia.xml" hash=""/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Fontis_Australia.xml" hash="a60b83cf1b1b449a16fe09da16342a4d"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="fontis"><file name="bpay.png" hash="481c9ee07049203aca13d6d2c2948cf7"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>