app/soc/models/countries.py
author Lennard de Rijk <ljvderijk@gmail.com>
Wed, 08 Jul 2009 15:44:54 +0200
changeset 2573 f09f317769c4
parent 2248 094785ac13a5
child 2735 74f0972f523f
permissions -rw-r--r--
Changed the StudentProject model to handle a dynamic amount of GradeRecords. This allows for a dynamic amount of moments where a StudentProject can be evaluated. Also included in this patch are changes to the status property that will help to enable PA's to withdraw StudentProjects from the program without the need for a developer to step in.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     1
#!/usr/bin/python2.5
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     2
#
1308
35b75ffcbb37 Partially reverted "Update the copyright notice for 2009."
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1307
diff changeset
     3
# Copyright 2008 the Melange authors.
37
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     4
#
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     5
# Licensed under the Apache License, Version 2.0 (the "License");
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     6
# you may not use this file except in compliance with the License.
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     7
# You may obtain a copy of the License at
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     8
#
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     9
#   http://www.apache.org/licenses/LICENSE-2.0
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    10
#
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    11
# Unless required by applicable law or agreed to in writing, software
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    12
# distributed under the License is distributed on an "AS IS" BASIS,
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    14
# See the License for the specific language governing permissions and
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    15
# limitations under the License.
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    16
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    17
"""Set of known *current* country and territory names.
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    18
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    19
Legacy (duplicate) names for some countries have been removed from the
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    20
original list.  Also missing are the following U.S. OFAC embargoed and
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    21
Commerce Department export-controlled countries:
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    22
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    23
  Cuba, Iran, Myanmar (formerly Burma), North Korea, Sudan, Syria
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    24
"""
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    25
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    26
__authors__ = [
2248
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
    27
  '"Madhusudan.C.S" <madhusudancs@gmail.com>',
37
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    28
  '"Todd Larsen" <tlarsen@google.com>',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    29
]
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    30
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    31
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    32
COUNTRIES_AND_TERRITORIES = (
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    33
  'Afghanistan, Islamic State of',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    34
  'Albania',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    35
  'Algeria',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    36
  'American Samoa',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    37
  'Andorra, Principality of',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    38
  'Angola',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    39
  'Anguilla',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    40
  'Antarctica',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    41
  'Antigua and Barbuda',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    42
  'Argentina',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    43
  'Armenia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    44
  'Aruba',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    45
  'Australia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    46
  'Austria',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    47
  'Azerbaidjan',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    48
  'Bahamas',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    49
  'Bahrain',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    50
  'Bangladesh',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    51
  'Barbados',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    52
  'Belarus',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    53
  'Belgium',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    54
  'Belize',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    55
  'Benin',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    56
  'Bermuda',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    57
  'Bhutan',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    58
  'Bolivia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    59
  'Bosnia-Herzegovina',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    60
  'Botswana',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    61
  'Bouvet Island',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    62
  'Brazil',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    63
  'British Indian Ocean Territory',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    64
  'Brunei Darussalam',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    65
  'Bulgaria',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    66
  'Burkina Faso',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    67
  'Burundi',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    68
  'Cambodia, Kingdom of',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    69
  'Cameroon',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    70
  'Canada',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    71
  'Cape Verde',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    72
  'Cayman Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    73
  'Central African Republic',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    74
  'Chad',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    75
  'Chile',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    76
  'China',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    77
  'Christmas Island',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    78
  'Cocos (Keeling) Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    79
  'Colombia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    80
  'Comoros',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    81
  'Congo',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    82
  'Congo, Democratic Republic of the',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    83
  'Cook Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    84
  'Costa Rica',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    85
  'Croatia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    86
  'Cyprus',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    87
  'Czech Republic',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    88
  'Denmark',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    89
  'Djibouti',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    90
  'Dominica',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    91
  'Dominican Republic',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    92
  'East Timor',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    93
  'Ecuador',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    94
  'Egypt',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    95
  'El Salvador',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    96
  'Equatorial Guinea',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    97
  'Eritrea',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    98
  'Estonia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    99
  'Ethiopia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   100
  'Falkland Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   101
  'Faroe Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   102
  'Fiji',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   103
  'Finland',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   104
  'France',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   105
  'French Guyana',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   106
  'French Southern Territories',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   107
  'Gabon',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   108
  'Gambia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   109
  'Georgia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   110
  'Germany',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   111
  'Ghana',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   112
  'Gibraltar',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   113
  'Greece',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   114
  'Greenland',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   115
  'Grenada',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   116
  'Guadeloupe (French)',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   117
  'Guam (USA)',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   118
  'Guatemala',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   119
  'Guinea',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   120
  'Guinea Bissau',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   121
  'Guyana',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   122
  'Haiti',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   123
  'Heard and McDonald Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   124
  'Holy See (Vatican City State)',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   125
  'Honduras',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   126
  'Hong Kong',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   127
  'Hungary',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   128
  'Iceland',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   129
  'India',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   130
  'Indonesia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   131
  'Iraq',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   132
  'Ireland',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   133
  'Israel',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   134
  'Italy',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   135
  "Ivory Coast (Cote D'Ivoire)",
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   136
  'Jamaica',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   137
  'Japan',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   138
  'Jordan',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   139
  'Kazakhstan',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   140
  'Kenya',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   141
  'Kiribati',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   142
  'Kuwait',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   143
  'Kyrgyz Republic (Kyrgyzstan)',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   144
  'Laos',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   145
  'Latvia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   146
  'Lebanon',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   147
  'Lesotho',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   148
  'Liberia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   149
  'Libya',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   150
  'Liechtenstein',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   151
  'Lithuania',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   152
  'Luxembourg',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   153
  'Macau',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   154
  'Macedonia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   155
  'Madagascar',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   156
  'Malawi',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   157
  'Malaysia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   158
  'Maldives',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   159
  'Mali',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   160
  'Malta',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   161
  'Marshall Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   162
  'Martinique (French)',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   163
  'Mauritania',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   164
  'Mauritius',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   165
  'Mayotte',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   166
  'Mexico',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   167
  'Micronesia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   168
  'Moldavia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   169
  'Monaco',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   170
  'Mongolia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   171
  'Montenegro',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   172
  'Montserrat',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   173
  'Morocco',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   174
  'Mozambique',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   175
  'Namibia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   176
  'Nauru',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   177
  'Nepal',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   178
  'Netherlands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   179
  'Netherlands Antilles',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   180
  'New Caledonia (French)',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   181
  'New Zealand',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   182
  'Nicaragua',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   183
  'Niger',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   184
  'Nigeria',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   185
  'Niue',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   186
  'Northern Mariana Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   187
  'Norway',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   188
  'Oman',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   189
  'Pakistan',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   190
  'Palau',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   191
  'Palestinian Territories',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   192
  'Panama',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   193
  'Papua New Guinea',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   194
  'Paraguay',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   195
  'Peru',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   196
  'Philippines',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   197
  'Pitcairn Island',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   198
  'Poland',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   199
  'Polynesia (French)',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   200
  'Portugal',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   201
  'Puerto Rico',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   202
  'Qatar',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   203
  'Reunion (French)',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   204
  'Romania',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   205
  'Russian Federation',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   206
  'Rwanda',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   207
  'South Georgia & South Sandwich Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   208
  'Saint Helena',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   209
  'Saint Kitts & Nevis Anguilla',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   210
  'Saint Lucia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   211
  'Saint Pierre and Miquelon',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   212
  'Saint Tome (Sao Tome) and Principe',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   213
  'Saint Vincent & Grenadines',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   214
  'Samoa',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   215
  'San Marino',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   216
  'Saudi Arabia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   217
  'Senegal',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   218
  'Serbia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   219
  'Seychelles',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   220
  'Sierra Leone',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   221
  'Singapore',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   222
  'Slovak Republic',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   223
  'Slovenia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   224
  'Solomon Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   225
  'Somalia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   226
  'South Africa',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   227
  'South Korea',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   228
  'Spain',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   229
  'Sri Lanka',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   230
  'Suriname',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   231
  'Svalbard and Jan Mayen Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   232
  'Swaziland',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   233
  'Sweden',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   234
  'Switzerland',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   235
  'Tadjikistan',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   236
  'Taiwan',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   237
  'Tanzania',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   238
  'Thailand',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   239
  'Togo',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   240
  'Tokelau',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   241
  'Tonga',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   242
  'Trinidad and Tobago',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   243
  'Tunisia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   244
  'Turkey',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   245
  'Turkmenistan',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   246
  'Turks and Caicos Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   247
  'Tuvalu',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   248
  'USA Minor Outlying Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   249
  'Uganda',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   250
  'Ukraine',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   251
  'United Arab Emirates',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   252
  'United Kingdom',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   253
  'United States',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   254
  'Uruguay',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   255
  'Uzbekistan',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   256
  'Vanuatu',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   257
  'Venezuela',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   258
  'Vietnam',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   259
  'Virgin Islands (British)',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   260
  'Virgin Islands (USA)',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   261
  'Wallis and Futuna Islands',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   262
  'Western Sahara',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   263
  'Yemen',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   264
  'Zambia',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   265
  'Zimbabwe',
e3491f7e8aff List of countries and territories used in addresses.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   266
)
2248
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   267
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   268
# mapping of countries to their CCTLD
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   269
COUNTRIES_TO_CCTLD = {
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   270
  'Afghanistan, Islamic State of': '.af',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   271
  'Albania': '.al',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   272
  'Algeria': '.dz',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   273
  'American Samoa': '.as',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   274
  'Andorra, Principality of': '.ad',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   275
  'Angola': '.ao',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   276
  'Anguilla': '.ai',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   277
  'Antarctica': '.aq',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   278
  'Antigua and Barbuda': '.ag',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   279
  'Argentina': '.ar',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   280
  'Armenia': '.am',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   281
  'Aruba': '.aw',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   282
  'Australia': '.au',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   283
  'Austria': '.at',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   284
  'Azerbaidjan': '.az',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   285
  'Bahamas': '.bs',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   286
  'Bahrain': '.bh',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   287
  'Bangladesh': '.bd',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   288
  'Barbados': '.bb',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   289
  'Belarus': '.by',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   290
  'Belgium': '.be',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   291
  'Belize': '.bz',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   292
  'Benin': '.bj',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   293
  'Bermuda': '.bm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   294
  'Bhutan': '.bt',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   295
  'Bolivia': '.bo',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   296
  'Bosnia-Herzegovina': '.ba',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   297
  'Botswana': '.bw',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   298
  'Bouvet Island': '.bv',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   299
  'Brazil': '.br',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   300
  'British Indian Ocean Territory': '.io',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   301
  'Brunei Darussalam': '.bn',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   302
  'Bulgaria': '',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   303
  'Burkina Faso': '.bg',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   304
  'Burundi': '.bi',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   305
  'Cambodia, Kingdom of': '.kh',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   306
  'Cameroon': '.cm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   307
  'Canada': '.ca',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   308
  'Cape Verde': '.cv',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   309
  'Cayman Islands': '.ky',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   310
  'Central African Republic': '.cf',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   311
  'Chad': '.td',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   312
  'Chile': '.cl',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   313
  'China': '.cn',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   314
  'Christmas Island': '.cx',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   315
  'Cocos (Keeling) Islands': '.cc',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   316
  'Colombia': '.co',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   317
  'Comoros': '.km',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   318
  'Congo': '.cg',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   319
  'Congo, Democratic Republic of the': '.cd',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   320
  'Cook Islands': '.ck',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   321
  'Costa Rica': '.cr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   322
  'Croatia': '.hr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   323
  'Cyprus': '.cy',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   324
  'Czech Republic': '.cz',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   325
  'Denmark': '.dk',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   326
  'Djibouti': '.dj',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   327
  'Dominica': '.dm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   328
  'Dominican Republic': '.do',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   329
  'East Timor': '.tl',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   330
  'Ecuador': '.ec',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   331
  'Egypt': '.eg',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   332
  'El Salvador': '.sv',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   333
  'Equatorial Guinea': '.gq',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   334
  'Eritrea': '.er',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   335
  'Estonia': '.ee',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   336
  'Ethiopia': '.et',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   337
  'Falkland Islands': '.fk',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   338
  'Faroe Islands': '.fo',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   339
  'Fiji': '.fj',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   340
  'Finland': '.fi',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   341
  'France': '.fr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   342
  'French Guyana': '.gf',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   343
  'French Southern Territories': '.tf',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   344
  'Gabon': '.ga',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   345
  'Gambia': '.gm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   346
  'Georgia': '.ge',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   347
  'Germany': '.de',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   348
  'Ghana': '.gh',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   349
  'Gibraltar': '.gi',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   350
  'Greece': '.gr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   351
  'Greenland': '.gl',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   352
  'Grenada': '.gd',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   353
  'Guadeloupe (French)': '.gp',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   354
  'Guam (USA)': '.gu',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   355
  'Guatemala': '.gt',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   356
  'Guinea': '.gn',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   357
  'Guinea Bissau': '.gw',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   358
  'Guyana': '.gy',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   359
  'Haiti': '.ht',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   360
  'Heard and McDonald Islands': '.hm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   361
  'Holy See (Vatican City State)': '.va',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   362
  'Honduras': '.hn',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   363
  'Hong Kong': '.hk',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   364
  'Hungary': '.hu',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   365
  'Iceland': '.is',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   366
  'India': '.in',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   367
  'Indonesia': '.id',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   368
  'Iraq': '.iq',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   369
  'Ireland': '.ie',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   370
  'Israel': '.il',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   371
  'Italy': '.it',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   372
  "Ivory Coast (Cote D'Ivoire)": '.ci',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   373
  'Jamaica': '.jm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   374
  'Japan': '.jp',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   375
  'Jordan': '.jo',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   376
  'Kazakhstan': '.kz',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   377
  'Kenya': '.ke',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   378
  'Kiribati': '.ki',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   379
  'Kuwait': '.kw',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   380
  'Kyrgyz Republic (Kyrgyzstan)': '.kg',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   381
  'Laos': '.la',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   382
  'Latvia': '.lv',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   383
  'Lebanon': '.lb',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   384
  'Lesotho': '.ls',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   385
  'Liberia': '.lr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   386
  'Libya': '.ly',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   387
  'Liechtenstein': '.li',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   388
  'Lithuania': '.lt',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   389
  'Luxembourg': '.lu',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   390
  'Macau': '.mo',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   391
  'Macedonia': '.mk',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   392
  'Madagascar': '.mg',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   393
  'Malawi': '.mw',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   394
  'Malaysia': '.my',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   395
  'Maldives': '.mv',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   396
  'Mali': '.ml',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   397
  'Malta': '.mt',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   398
  'Marshall Islands': '.mh',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   399
  'Martinique (French)': '.mq',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   400
  'Mauritania': '.mr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   401
  'Mauritius': '.mu',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   402
  'Mayotte': '.yt',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   403
  'Mexico': '.mx',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   404
  'Micronesia': '.fm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   405
  'Moldavia': '.md',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   406
  'Monaco': '.mc',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   407
  'Mongolia': '.mn',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   408
  'Montenegro': '.me',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   409
  'Montserrat': '.ms',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   410
  'Morocco': '.ma',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   411
  'Mozambique': '.mz',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   412
  'Namibia': '.na',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   413
  'Nauru': '.nr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   414
  'Nepal': '.np',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   415
  'Netherlands': '.nl',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   416
  'Netherlands Antilles': '.an',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   417
  'New Caledonia (French)': '.nc',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   418
  'New Zealand': '.nz',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   419
  'Nicaragua': '.ni',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   420
  'Niger': '.ne',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   421
  'Nigeria': '.ng',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   422
  'Niue': '.nu',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   423
  'Northern Mariana Islands': '.mp',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   424
  'Norway': '.no',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   425
  'Oman': '.om',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   426
  'Pakistan': '.pk',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   427
  'Palau': '.pw',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   428
  'Palestinian Territories': '.ps',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   429
  'Panama': '.pa',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   430
  'Papua New Guinea': '.pg',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   431
  'Paraguay': '.py',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   432
  'Peru': '.pe',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   433
  'Philippines': '.ph',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   434
  'Pitcairn Island': '.pn',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   435
  'Poland': '.pl',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   436
  'Polynesia (French)': '.pf',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   437
  'Portugal': '.pt',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   438
  'Puerto Rico': '.pr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   439
  'Qatar': '.qa',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   440
  'Reunion (French)': '.re',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   441
  'Romania': '.ro',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   442
  'Russian Federation': '.ru',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   443
  'Rwanda': '.rw',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   444
  'South Georgia & South Sandwich Islands': '.gs',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   445
  'Saint Helena': '.sh',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   446
  'Saint Kitts & Nevis Anguilla': '.kn',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   447
  'Saint Lucia': '.lc',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   448
  'Saint Pierre and Miquelon': '.pm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   449
  'Saint Tome (Sao Tome) and Principe': '.st',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   450
  'Saint Vincent & Grenadines': '.vc',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   451
  'Samoa': '.ws',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   452
  'San Marino': '.sm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   453
  'Saudi Arabia': '.sa',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   454
  'Senegal': '.sn',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   455
  'Serbia': '.rs',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   456
  'Seychelles': '.sc',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   457
  'Sierra Leone': '.sl',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   458
  'Singapore': '.sg',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   459
  'Slovak Republic': '.sk',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   460
  'Slovenia': '.si',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   461
  'Solomon Islands': '.sb',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   462
  'Somalia': '.so',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   463
  'South Africa': '.za',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   464
  'South Korea': '.kr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   465
  'Spain': '.es',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   466
  'Sri Lanka': '.lk',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   467
  'Suriname': '.sr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   468
  'Svalbard and Jan Mayen Islands': '.sj',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   469
  'Swaziland': '.sz',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   470
  'Sweden': '.se',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   471
  'Switzerland': '.ch',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   472
  'Tadjikistan': '.tj',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   473
  'Taiwan': '.tw',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   474
  'Tanzania': '.tz',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   475
  'Thailand': '.th',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   476
  'Togo': '.tg',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   477
  'Tokelau': '.tk',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   478
  'Tonga': '.to',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   479
  'Trinidad and Tobago': '.tt',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   480
  'Tunisia': '.tn',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   481
  'Turkey': '.tr',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   482
  'Turkmenistan': '.tm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   483
  'Turks and Caicos Islands': '.tc',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   484
  'Tuvalu': '.tv',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   485
  'USA Minor Outlying Islands': '.um',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   486
  'Uganda': '.ug',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   487
  'Ukraine': '.ua',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   488
  'United Arab Emirates': '.ae',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   489
  'United Kingdom': '.uk',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   490
  'United States': '.us',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   491
  'Uruguay': '.uy',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   492
  'Uzbekistan': '.uz',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   493
  'Vanuatu': '.vu',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   494
  'Venezuela': '.ve',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   495
  'Vietnam': '.vn',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   496
  'Virgin Islands (British)': '.vg',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   497
  'Virgin Islands (USA)': '.vi',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   498
  'Wallis and Futuna Islands': '.wf',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   499
  'Western Sahara': '.eh',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   500
  'Yemen': '.ye',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   501
  'Zambia': '.zm',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   502
  'Zimbabwe': '.zw',
094785ac13a5 Added dictionary mapping country names to their CCTLD in countries model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1308
diff changeset
   503
}