astromapper 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,11 @@
1
+ class String
2
+ def to_permalink
3
+ str = ActiveSupport::Multibyte::Chars.new(self.dup)
4
+ str = str.normalize(:kd).gsub(/[^\x00-\x7F]/,'').to_s
5
+ str.gsub!(/[^-\w\d]+/xim, "-")
6
+ str.gsub!(/-+/xm, "-")
7
+ str.gsub!(/^-?(.*?)-?$/, '\1')
8
+ str.downcase!
9
+ str
10
+ end
11
+ end
@@ -0,0 +1,31 @@
1
+ module Astromapper
2
+ class Generator < Thor::Group
3
+ include Thor::Actions
4
+ def self.source_root
5
+ File.dirname(__FILE__) + "/../../templates"
6
+ end
7
+ def build_config_file
8
+ @title = File.basename(destination_root).gsub('-', ' ')
9
+ @name = full_name
10
+ @uid = Digest::MD5.hexdigest("#{Time.now}--#{rand}")
11
+ @year = Date.today.year
12
+ template "config.erb", "_astromapper.yml"
13
+ end
14
+ def copy_templates
15
+ copy_file "names.yml", "templates/names.yml"
16
+ end
17
+ def create_directories
18
+ empty_directory "templates"
19
+ empty_directory "output"
20
+ # empty_directory "images"
21
+ end
22
+ private
23
+ # Retrieve user's name using finger.
24
+ # Defaults to <tt>John Doe</tt>.
25
+ #
26
+ def full_name
27
+ name = `finger $USER 2> /dev/null | grep Login | colrm 1 46`.chomp
28
+ name.empty? ? "John Doe" : name.squish
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,303 @@
1
+ module Astromapper
2
+ class Svg
3
+ def config
4
+ Astromapper.config
5
+ end
6
+ def initialize(filename)
7
+ @rows = 40
8
+ @columns = 32
9
+ @source_filename = filename
10
+ sectorname = filename.gsub(File.extname(filename), '')
11
+ @svg_filename = sectorname + '.svg'
12
+ @side = 40
13
+ @factor = 1.732
14
+ @height = (@side * @factor * (@rows + 0.5)).ceil
15
+ @width = (@side * (@columns * 1.5 + 0.5)).ceil
16
+ @mark = 13
17
+ @zones = []
18
+ @volumes = []
19
+ @name = config['name']
20
+ # puts "Height: #{@height}; Width: #{@width}"
21
+
22
+ base03 = config['colors']['base03'] || '#002b36'
23
+ base02 = config['colors']['base02'] || '#073642'
24
+ base01 = config['colors']['base01'] || '#586e75'
25
+ base00 = config['colors']['base03'] || '#657b83'
26
+ base0 = config['colors']['base0'] || '#839496'
27
+ base1 = config['colors']['base1'] || '#93a1a1'
28
+ base2 = config['colors']['base2'] || '#eee8d5'
29
+ base3 = config['colors']['base3'] || '#fdf6e3'
30
+ yellow = config['colors']['yellow'] || '#b58900'
31
+ orange = config['colors']['orange'] || '#cb4b16'
32
+ red = config['colors']['red'] || '#dc322f'
33
+ magenta = config['colors']['magenta'] || '#d33682'
34
+ violet = config['colors']['violet'] || '#6c71c4'
35
+ blue = config['colors']['blue'] || '#268bd2'
36
+ cyan = config['colors']['cyan'] || '#2aa198'
37
+ green = config['colors']['green'] || '#859900'
38
+ white = config['colors']['white'] || '#FFFFFF'
39
+ black = config['colors']['black'] || '#222222'
40
+
41
+ @theme = {
42
+ 'dark' => {
43
+ :background => base03,
44
+ :zone => {'AZ' => yellow, 'RZ' => red},
45
+ :hex => base1,
46
+ :hex_id => base2,
47
+ :world_text => base2,
48
+ :black => base3,
49
+ :base02 => base2,
50
+ :base1 => base01,
51
+ :white => white,
52
+ :tract_id => base01
53
+ },
54
+ 'lite' => {
55
+ :background => white,
56
+ :zone => {'AZ' => yellow, 'RZ' => red},
57
+ :hex => base1,
58
+ :hex_id => base01,
59
+ :world_text => base01,
60
+ :black => black,
61
+ :base02 => base02,
62
+ :base1 => base1,
63
+ :white => white,
64
+ :tract_id => base2
65
+ }
66
+ }
67
+ theme = (%w{lite dark}.include?(config['svg_theme'])) ? config['svg_theme'] : 'lite'
68
+ @color = @theme[theme]
69
+ @hex = {
70
+ :side_h => (@side * (@factor / 2)).tweak,
71
+ :side_w => (@side / 2).tweak,
72
+ :width => @side
73
+ }
74
+ @style = {
75
+ :circle => "fill='#{@color[:black]}' stroke='#{@color[:white]}' stroke-width='1'",
76
+ :polyline => "fill='none'",
77
+ :polygon => "fill='#{@color[:black]}' stroke='none' stroke-width='1'",
78
+ :ellipse => "fill='none' stroke='#{@color[:base02]}' stroke-width='1'",
79
+ :Belt => "stroke='#{@color[:white]}' stroke-width='1'",
80
+ :AZ_zone => "fill='none' stroke='#{@color[:zone]['AZ']}' stroke-width='3' stroke-dasharray='5%,5%'",
81
+ :RZ_zone => "fill='none' stroke='#{@color[:zone]['RZ']}' stroke-width='3'",
82
+ :Planet => "fill='#{@color[:black]}' stroke='#{@color[:black]}' stroke-width='1'",
83
+ :Desert => "fill='none' stroke='#{@color[:black]}' stroke-width='2'",
84
+ :Frame => "fill='none' stroke='#{@color[:black]}' stroke-width='4'",
85
+ :Tract => "fill='none' stroke='#{@color[:hex]}' stroke-width='1'",
86
+ :Hexgrid => "fill='none' stroke='#{@color[:hex]}' stroke-width='1'",
87
+ :Name => "text-anchor='middle' font-size='#{@side/5}px' fill='#{@color[:world_text]}' font-family='Verdana'",
88
+ :symbol => "text-anchor='middle' font-size='#{@side/2.5}px' fill='#{@color[:black]}' font-family='Verdana'",
89
+ :Spaceport => "text-anchor='middle' font-size='#{@side/3}px' fill='#{@color[:world_text]}' font-family='Verdana'",
90
+ :TractID => "text-anchor='middle' font-size='#{@side*3}px' fill='#{@color[:tract_id]}' font-family='Verdana'",
91
+ :VolumeId => "text-anchor='middle' font-size='#{@side/5}px' fill='#{@color[:hex_id]}' font-family='Verdana'",
92
+ :rect => "fill='#{@color[:background]}'"
93
+ }
94
+ @style[:UWP] = @style[:Name]
95
+ end
96
+ def from_file
97
+ File.open(@source_filename,'r').readlines.each { |line| @volumes << line if /^\d{4}/.match(line) }
98
+ end
99
+ def convert
100
+ from_file
101
+ svg = []
102
+ svg << header
103
+ svg << tract_marks
104
+ svg << hex_grid
105
+
106
+ svg << @volumes.map {|v| world(v) }
107
+ svg << volumes
108
+ svg << frame
109
+ svg << footer
110
+ File.open(@svg_filename,'w').write(svg.flatten.join("\n"))
111
+ end
112
+ def footer
113
+ return "</svg>"
114
+ end
115
+ def header
116
+ return<<-EOS
117
+ <?xml version="1.0" standalone="no"?>
118
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
119
+ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
120
+ <svg width="#{@width}px" height="#{@height}px" version="1.1" xmlns="http://www.w3.org/2000/svg" blackground-color='#{@color[:white]}'>
121
+ <desc>Subsector Map Grid</desc>
122
+ <rect #{@style[:rect]} width='#{@width}' height='#{@height}' />
123
+ EOS
124
+ end
125
+ def center_of(locx)
126
+ column = locx[0..1].to_i
127
+ row = locx[2..3].to_i
128
+ x = @side + ((column - 1) * @side * 1.5)
129
+ y = (row - 1) * @side * @factor + (@side * @factor / (1 + (column % 2)))
130
+ return [x.tweak,y.tweak]
131
+ end
132
+ def star_coords(r1,r2,points)
133
+ pangle = 2*@@pi/points
134
+ sangle = @@pi/points
135
+ oangle = @@pi/-2
136
+ coords = []
137
+ points.times do |j|
138
+ coords << [r1 * Math::cos(pangle * j + oangle), r1 * Math::sin(pangle * j + oangle)]
139
+ coords << [r2 * Math::cos((pangle * j) + sangle + oangle), r2 * Math::sin((pangle * j) + sangle + oangle)]
140
+ end
141
+ return coords
142
+ end
143
+ def world(volume)
144
+ # TAB 0 - World Details
145
+ # 0. Location
146
+ # 1. UWP
147
+ # 2. Temp
148
+ # 3. NSG (Features)
149
+ # 4. Travel Zone
150
+ # TAB 1 - Trade Codes
151
+ # TAB 2 - Factions
152
+ # TAB 3 - Name
153
+ #1101 A505223-B ..G.. »·IC,Lo,Va »N,O,N »·G0V »Omivarium
154
+ details, trades, factions, star, name = volume.split(/\t/)
155
+
156
+ locx, uwp, temp, nsg, zone = details.split(/\s+/)
157
+
158
+ spaceport = uwp[0]
159
+ size = uwp[1]
160
+ c = center_of(locx) # get Location's x,y Coordinates
161
+ curve = @side / 2
162
+
163
+ output = "<!-- Volume: #{volume.strip.gsub(/\t/,' // ')} -->\n"
164
+ output += (size == '0') ? draw_belt(c) : draw_planet(c,uwp)
165
+ output += " <text #{@style[:Spaceport]} x='#{c[0]}' y='#{(c[1] + @side / 2).tweak}'>#{spaceport.strip}</text>\n"
166
+ output += " <text #{@style[:UWP]} x='#{c[0]}' y='#{(c[1]+(@side/1.3)).tweak}'>#{uwp.strip}</text>\n"
167
+ output += " <text #{@style[:Name]} x='#{c[0]}' y='#{(c[1]-(@side/2.1)).tweak}'>#{name.strip}</text>\n"
168
+ unless zone == '..'
169
+ style = zone + '_zone'
170
+ output += " <path #{@style[style.to_sym]} d='M #{c[0] - curve/2;} #{c[1] - (curve/1.4)} a #{curve} #{curve} 0 1 0 20 0' />\n"
171
+ end
172
+ output += navy_base(c) if nsg.include?('N')
173
+ output += scout_base(c) if nsg.include?('S')
174
+ output += gas_giant(c) if nsg.include?('G')
175
+ output += consulate(c) if nsg.include?('C')
176
+ output += pirates(c) if nsg.include?('P')
177
+ # output += " <text #{@style[:Name]} x='#{(c[0]+(@side/1.8)).tweak}' y='#{(c[1]-(@side/3)).tweak}'>#{star[0..1].strip}</text>\n"
178
+ output += stars(c,star)
179
+ output
180
+
181
+ end
182
+ def stars(c,stars)
183
+ output = ''
184
+ x = (c[0]+(@side/1.8)).tweak + 2
185
+ y = (c[1]-(@side/3)).tweak + 3
186
+ stars.split('/').each do |star|
187
+ output += " <text #{@style[:Name]} x='#{x}' y='#{y}'>#{star[0..1].strip}</text>\n"
188
+ x += 3
189
+ y += 7
190
+ end
191
+ output
192
+ end
193
+ def draw_planet(c,w)
194
+ k = (w[3] == '0') ? 'Desert' : 'Planet'
195
+ " <circle #{@style[:circle]} cx='#{c[0]}' cy='#{c[1]}' r='#{@side/7}' />\n"
196
+ end
197
+ def draw_belt(c)
198
+ output = " <g stroke='none' fill='none'>\n"
199
+ 7.times do
200
+ x = c[0] + Random.rand(@side/3) - @side/6
201
+ y = c[1] + Random.rand(@side/3) - @side/6
202
+ output += " <circle #{@style[:Belt]} cx='#{x.tweak}' cy='#{y.tweak}' r='#{(@side/15).tweak}' />\n"
203
+ end
204
+ output + " </g>\n"
205
+ end
206
+ def frame(k='Frame')
207
+ style = k.to_sym
208
+ z = 0; w = @width - 0; h = @height - z;
209
+ " <polyline #{@style[style]} points='#{z},#{z} #{w},#{z} #{w},#{h} #{z},#{h} #{z},#{z}' />"
210
+ end
211
+ def tract_marks
212
+ height = (@height / 4).floor
213
+ width = (@width / 4).ceil
214
+ # width -= 2
215
+
216
+ output = ''
217
+ letters = ('A'..'P').to_a
218
+ 5.times do |r|
219
+ h1 = (height.floor * r) - (8*r); h2 = h1 + height - 8
220
+ w2 = 0
221
+ 4.times do |c|
222
+ w1 = w2; w2 += (width - [-4,4,5,-4][c])
223
+ output += " <text #{@style[:TractID]} x='#{w1 + 70}' y='#{h1 + 110}'>#{letters.shift}</text>\n"
224
+ output += " <polyline #{@style[:Tract]} points='#{w1},#{h1} #{w2},#{h1} #{w2},#{h2} #{w1},#{h2} #{w1},#{h1}' />\n"
225
+ # raise output
226
+ end
227
+ end
228
+ output += namestamp
229
+ return output
230
+ end
231
+ def volumes
232
+ output = ''
233
+ (@rows+2).times do |r|
234
+ (@columns+1).times do |c|
235
+ x = @side + ((c-1) * @side * 1.5)
236
+ y = (c % 2 == 1) ? (r-1) * @side * @factor + (0.2 * @side) : (r-1) * @side * @factor + @hex[:side_h]+ (0.2 * @side)
237
+ output += "<text #{@style[:VolumeId]} x='#{x.tweak}' y='#{y.tweak}'>%02d%02d</text>\n" % [c,r]
238
+ end
239
+ end
240
+ output
241
+ end
242
+ def polygon(x, y, sx, sy, sides=4)
243
+ polygon = star_coords(sx, sy, sides).map { |c| "#{x + c[0]},#{y.tweak+c[1]}" }
244
+ " <polygon #{@style[:polygon]} points='#{polygon.join(' ')}' />\n"
245
+ end
246
+ def gas_giant(c)
247
+ x = (c[0]+(@side/1.8)).tweak; y = (c[1]+(@side/3)).tweak;
248
+ return<<-GIANT
249
+ <g><!-- Has Gas Giant -->
250
+ <ellipse #{@style[:ellipse]} cx='#{x}' cy='#{y}' rx='#{(@side/(@mark * 0.5)).tweak}' ry='#{(@side/@mark * 0.3).tweak}' />
251
+ <circle #{@style[:circle]} cx='#{x}' cy='#{y}' r='#{(@side/(@mark * 1.2)).tweak}' />
252
+ </g>
253
+ GIANT
254
+ end
255
+ def pirates(c);
256
+ return "<!-- Pirates --><text #{@style[:symbol]} x='#{c[0]-(@side/3.1)}' y='#{c[1]+(@side/7)}'>\u2620</text>\n"
257
+ end
258
+ def consulate(c);
259
+ return "<!-- Consulate --><text #{@style[:symbol]} x='#{c[0]-(@side/1.5)}' y='#{c[1]+(@side/7)}'>\u2691</text>\n"
260
+ end
261
+ def scout_base(c);
262
+ return "<!-- Scout Base --><text #{@style[:symbol]} x='#{c[0]-(@side/1.8)}' y='#{c[1]+(@side/2.4)}'>\u269C</text>\n"
263
+ '<!-- SB -->' + polygon(c[0]-(@side/1.8),c[1]+(@side/3.7), @side/(@mark/2), @side/@mark, 3);
264
+ end
265
+ def navy_base(c);
266
+ return "<!-- Navy Base --><text #{@style[:symbol]} x='#{c[0]-(@side/1.8)}' y='#{c[1]-(@side/6)}'>\u2693</text>\n"
267
+ '<!-- NB -->' +polygon(c[0]-(@side/1.8), c[1]-(@side/3.7), @side/(@mark/2), @side/@mark, 5);
268
+ end
269
+ def hex_grid; (@rows * 3 + 2).times.map { |j| hex_row((j/2).floor, (j % 2 != 0)) };
270
+ end
271
+ def namestamp
272
+ return "<text text-anchor='left' font-size='30px' fill='#8A9DD1' font-family='Verdana' x='30' y='2800'>#{@name}</text>"
273
+ end
274
+ def hex_row(row, top=false)
275
+ ly = (row * 2 * @hex[:side_h]) + @hex[:side_h]
276
+ points = []
277
+ x = 0; y = 0
278
+ (@columns/2).ceil.times do |j|
279
+ x = j * @side * 3
280
+ y = ly
281
+ points << "#{x.tweak},#{y.tweak}"
282
+
283
+ x += @hex[:side_w]
284
+ y = (top) ? y - @hex[:side_h] : y + @hex[:side_h]
285
+ points << "#{x.tweak},#{y.tweak}"
286
+
287
+ x += @hex[:width]
288
+ points << "#{x.tweak},#{y.tweak}"
289
+
290
+ x += @hex[:side_w]
291
+ y = (top) ? y + @hex[:side_h] : y - @hex[:side_h]
292
+ points << "#{x.tweak},#{y.tweak}"
293
+
294
+ x += @hex[:width]
295
+ points << "#{x.tweak},#{y.tweak}"
296
+ end
297
+ x += @hex[:side_w]
298
+ y = (top) ? y - @hex[:side_h] : y + @hex[:side_h]
299
+ points << "#{x.tweak},#{y.tweak}"
300
+ " <polyline #{@style[:Hexgrid]} points='#{points.join(' ')}' />"
301
+ end
302
+ end
303
+ end
@@ -0,0 +1,3 @@
1
+ module Astromapper
2
+ VERSION = "1.0.2"
3
+ end
@@ -0,0 +1,79 @@
1
+ # The map's name.
2
+ name: "<%= @title %>"
3
+
4
+ # The map's language.
5
+ language: "en"
6
+
7
+ # Density: How many stars in your sector
8
+ # Here's some examples:
9
+ #
10
+ # density: "rift"
11
+ # density: "sparse"
12
+ density: "scattered"
13
+ # density: "dense"
14
+
15
+ # Sector Randomness?
16
+ #
17
+ pregenerated: false
18
+
19
+ # Genre
20
+ genre: normal
21
+
22
+ giant_on: !ruby/range 0..9
23
+ tech_cap: 11
24
+ named: true
25
+
26
+ # Your map copyright info.
27
+ # Here's some examples:
28
+ #
29
+ # Copyright <%= @year %> by <%= @name %>.
30
+ # Copyright <%= @year %> by <%= @name %>. This work is licensed under MIT License.
31
+ # This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
32
+ # This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
33
+ # This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
34
+ #
35
+ copyright: "Copyright (C) <%= @year %> <%= @name %>."
36
+
37
+ # Who's publishing this map.
38
+ publisher: "<%= @name %>"
39
+
40
+ # When this map was published.
41
+ published_at: "<%= Date.today %>"
42
+
43
+ # Some unique identification. Works great with your domain
44
+ # like `http://yourmap.example.com`.
45
+ uid: "<%= @uid %>"
46
+
47
+ # This map authors.
48
+ authors:
49
+ - "<%= @name %>"
50
+
51
+ # The base URL from your source code.
52
+ base_url: http://example.com
53
+
54
+ colors:
55
+ base03: "#002b36"
56
+ base02: "#073642"
57
+ base01: "#586e75"
58
+ base00: "#657b83"
59
+ base0: "#839496"
60
+ base1: "#93a1a1"
61
+ base2: "#eee8d5"
62
+ base3: "#fdf6e3"
63
+ yellow: "#b58900"
64
+ orange: "#cb4b16"
65
+ red: "#dc322f"
66
+ magenta: "#d33682"
67
+ violet: "#6c71c4"
68
+ blue: "#268bd2"
69
+ cyan: "#2aa198"
70
+ green: "#859900"
71
+ white: "#FFFFFF"
72
+ black: "#222222"
73
+ #
74
+ fonts:
75
+ serif: "Garamond"
76
+ sans: "Tahoma"
77
+ mono: "Courier"
78
+
79
+
@@ -0,0 +1,2050 @@
1
+ ---
2
+ - Abaddon
3
+ - Abbandanza
4
+ - Aberden
5
+ - Abhijit
6
+ - Abrogun
7
+ - Abydos
8
+ - Abyormen
9
+ - Accolon
10
+ - Acquara
11
+ - Adad
12
+ - Adares
13
+ - Addams
14
+ - Aedl
15
+ - Aegis
16
+ - Aeroc
17
+ - Agali Vespocci
18
+ - Agander
19
+ - Aganip
20
+ - Agni
21
+ - Agora
22
+ - Agrippa
23
+ - Ahnooie
24
+ - Aimerej
25
+ - Aka
26
+ - Akka
27
+ - Akkht
28
+ - Akyyr
29
+ - Aladir
30
+ - Alaspin
31
+ - Albemarle
32
+ - Albian
33
+ - Alcayd
34
+ - Alcor
35
+ - Aldebaran
36
+ - Aldo Cerise
37
+ - Aler
38
+ - Alexandria
39
+ - Algol
40
+ - Alice
41
+ - Alkon
42
+ - Alkonost
43
+ - Allosimanius Syneca
44
+ - Allray
45
+ - Alphard
46
+ - Alra-kae
47
+ - Altai
48
+ - Altair
49
+ - Alzarius
50
+ - Amador
51
+ - Amaterasu
52
+ - Amazon
53
+ - Amazonia
54
+ - Ament Cour
55
+ - Amish Home
56
+ - Amphibios
57
+ - Anacona
58
+ - Anacreon
59
+ - Anahita
60
+ - Anarres
61
+ - Anat
62
+ - Anathema
63
+ - Andat
64
+ - Andrecia
65
+ - Andriad
66
+ - Androzani
67
+ - Aneth
68
+ - Anfogen
69
+ - Angel
70
+ - Angslan
71
+ - Angvia
72
+ - Ankheny
73
+ - Annanworld
74
+ - Anodunos
75
+ - Anshun
76
+ - Antares
77
+ - Anthea
78
+ - Antioch
79
+ - Antliae
80
+ - Antony
81
+ - Anuurn
82
+ - Anvhar
83
+ - Anvil
84
+ - Anzen
85
+ - Ap
86
+ - Aplu
87
+ - Apollo
88
+ - Appelobetnees
89
+ - Aquaterra
90
+ - Aquifer
91
+ - Aquilae
92
+ - Aquitar
93
+ - Arachna
94
+ - Aradia
95
+ - Aragon
96
+ - Aramen
97
+ - Arcadia
98
+ - Arcady
99
+ - Archanon
100
+ - Archeopia
101
+ - Archimedes
102
+ - Arcon
103
+ - Arcturas
104
+ - Ardamador
105
+ - Ardazir
106
+ - Arden
107
+ - Ardena
108
+ - Ares
109
+ - Argabuthon
110
+ - Argolis
111
+ - Argos
112
+ - Argus
113
+ - Argyth
114
+ - Arice
115
+ - Aridius
116
+ - Ariel
117
+ - Aries
118
+ - Arieska
119
+ - Aris
120
+ - Arisia
121
+ - Ark
122
+ - Arkadia
123
+ - Arkinfoodle
124
+ - Armaghast
125
+ - Armazin
126
+ - Arous
127
+ - Arrakis
128
+ - Arrawd
129
+ - Arruckus
130
+ - Arthur
131
+ - Artifactovol
132
+ - Arwy
133
+ - Asagarth
134
+ - Asborg
135
+ - Aschen
136
+ - Asconel
137
+ - Asgard
138
+ - Ashiesha
139
+ - Ashima
140
+ - Ashvini
141
+ - Askone
142
+ - Aspahan
143
+ - Asperta
144
+ - Asquith
145
+ - Astervillius
146
+ - Asuras
147
+ - Atab Abas
148
+ - Atheling
149
+ - Athens
150
+ - Atheria
151
+ - Athos
152
+ - Atlast
153
+ - Aton
154
+ - Atrios
155
+ - Atropos
156
+ - Auclaire
157
+ - Audhumla
158
+ - Augusta
159
+ - Aurianta
160
+ - Auron
161
+ - Aurora
162
+ - Avalon
163
+ - Axista
164
+ - Ayisha
165
+ - Azanry
166
+ - Aznir
167
+ - Azoll
168
+ - Azoviton
169
+ - Azure
170
+ - Baal Outpost
171
+ - Babalu
172
+ - Babur
173
+ - Baja
174
+ - Bal
175
+ - Balaban
176
+ - Balder
177
+ - Baldur
178
+ - Balgut
179
+ - Balkast
180
+ - Balos
181
+ - Balthus
182
+ - Balzad
183
+ - Bandicoot
184
+ - Bandraginus
185
+ - Bandril
186
+ - Bani
187
+ - Banya Ban
188
+ - Barassa
189
+ - Barcelona
190
+ - Barents
191
+ - Baronn
192
+ - Barter
193
+ - Bastille
194
+ - Bathyos
195
+ - Baugenphyme
196
+ - Beachworld
197
+ - Bear
198
+ - Beaumonde
199
+ - Bedrosia
200
+ - Bel
201
+ - Bel-Nar
202
+ - Bellerophon
203
+ - Belletrix
204
+ - Bellis
205
+ - Bellus
206
+ - Belzagor
207
+ - Ben Nauk
208
+ - Bent's
209
+ - Beowulf
210
+ - Bephis
211
+ - Bergerac
212
+ - Bernadette
213
+ - Bernard's
214
+ - Beser'ez
215
+ - Bessan
216
+ - Beta
217
+ - Beta Phyxis
218
+ - Betelgeuse
219
+ - Betha
220
+ - Bethselamin
221
+ - Betrushia
222
+ - Beylix
223
+ - Bharis
224
+ - Bifrost
225
+ - Big Ben
226
+ - Big Rock
227
+ - Bija'dom
228
+ - Bildunsrunia
229
+ - Bille
230
+ - Binary
231
+ - Binder
232
+ - Binipinardia
233
+ - Bishop Call
234
+ - Bizmant
235
+ - Blackguard
236
+ - Blackstrap
237
+ - Blargon
238
+ - Blasusarr
239
+ - Blaylock
240
+ - Blessed
241
+ - Blimminery
242
+ - Blodgett
243
+ - Blorch
244
+ - BlueSky
245
+ - Blythe
246
+ - Bocai
247
+ - Bofors
248
+ - Bog
249
+ - Bohraj
250
+ - Boj
251
+ - Bonde
252
+ - Bonnburg
253
+ - Boodie Nen
254
+ - Boondock
255
+ - Bornok
256
+ - Boros
257
+ - Borthal
258
+ - Bortresoye
259
+ - Botany
260
+ - Bozlen
261
+ - Braah
262
+ - Bradley
263
+ - Braggi
264
+ - Bravo
265
+ - Breadbasket
266
+ - Breakmann
267
+ - Breese
268
+ - Brequinda
269
+ - Bressia
270
+ - Breton
271
+ - Brevor
272
+ - Brezane
273
+ - Briand
274
+ - Brightkinde
275
+ - Brimstone
276
+ - Brinze
277
+ - Brjnn
278
+ - Brolligo
279
+ - Brolyo
280
+ - Bronson
281
+ - Brontitall
282
+ - Brunnis
283
+ - Buchad
284
+ - Bucol
285
+ - Buffo
286
+ - Buktu
287
+ - Buskey
288
+ - Busted Axel
289
+ - Butcher Bay
290
+ - Byer
291
+ - Byway
292
+ - Cabal
293
+ - Cabbage
294
+ - Caduces
295
+ - Caelum
296
+ - Calafia
297
+ - Caledonia
298
+ - Caliban
299
+ - Caligula
300
+ - Callnowia
301
+ - Calpurnia
302
+ - Calufrax
303
+ - Camazotz
304
+ - Camblyne
305
+ - Camden
306
+ - Camelot
307
+ - Cameo
308
+ - Candela
309
+ - Canis Lunis
310
+ - Cannibilon
311
+ - Cantor
312
+ - Canyon
313
+ - Cap
314
+ - Capaise
315
+ - Capella
316
+ - Capital
317
+ - Caprica
318
+ - Carolus
319
+ - Carox
320
+ - Carpathia
321
+ - Carston
322
+ - Carsus
323
+ - Casagan
324
+ - Cassandra
325
+ - Castacorze
326
+ - Castor
327
+ - Castrovalva
328
+ - Catalan
329
+ - Catalina
330
+ - Catarkhus
331
+ - Catastrophea
332
+ - Cathanor
333
+ - Cathor
334
+ - Celsus
335
+ - Centris Magna
336
+ - Centuris
337
+ - Cephlon
338
+ - Cerberi
339
+ - Cerberus
340
+ - Cereb
341
+ - Cerklicing
342
+ - Cerulia
343
+ - Ceti Gamma
344
+ - Ch
345
+ - Chaar
346
+ - Chabad
347
+ - Chagfun
348
+ - Chalderescol
349
+ - Chao Phrya
350
+ - Chao Ti
351
+ - Chapek
352
+ - Charcunga
353
+ - Charity
354
+ - Charmian
355
+ - Charon
356
+ - Charrha
357
+ - Chartago
358
+ - Charum Hakkor
359
+ - Cheeringboda
360
+ - Chelonia
361
+ - Cherby
362
+ - Chereion
363
+ - Chermosh
364
+ - Cheyne
365
+ - Chilo
366
+ - Chimeleon
367
+ - Chin
368
+ - Chiron
369
+ - Chitra
370
+ - Chloris
371
+ - Chobe
372
+ - Chorrey
373
+ - Chronos
374
+ - Chthon
375
+ - Chudra
376
+ - Chulak
377
+ - Ciceronicus
378
+ - Cil
379
+ - Cimmeria
380
+ - Cineplex
381
+ - Cinna
382
+ - Cinruss
383
+ - Circe
384
+ - Circini
385
+ - Circle
386
+ - Ciress
387
+ - Clabshub
388
+ - Claghorne
389
+ - Claw
390
+ - Clementina
391
+ - Cleopatra
392
+ - Cles
393
+ - Clitoris
394
+ - Clom
395
+ - Clonclurry
396
+ - Cobalt
397
+ - Colsiti
398
+ - Coltice
399
+ - Comagrave
400
+ - Commerce
401
+ - Comporellon
402
+ - Compson
403
+ - Conrad
404
+ - Constance
405
+ - Constantia
406
+ - Conventia
407
+ - Conveyoorus
408
+ - Coral
409
+ - Coralemon
410
+ - Cordelet
411
+ - Corinthia
412
+ - Coriolan
413
+ - Cormoral
414
+ - Cornelia
415
+ - Corobon
416
+ - Corrin
417
+ - Corthid
418
+ - Cos
419
+ - Courmaline
420
+ - Cova Banda
421
+ - Cowboydan
422
+ - Coyote
423
+ - Crematoria
424
+ - Cremer
425
+ - Crucible
426
+ - Crux
427
+ - Ctaru
428
+ - Culain
429
+ - Curtana
430
+ - Cut
431
+ - Cyclopia
432
+ - Cygnus
433
+ - Cygnus X
434
+ - Cynthia
435
+ - Cyrus
436
+ - Cyteen
437
+ - D
438
+ - D'Urth
439
+ - Daedalus
440
+ - Daedelus
441
+ - Dagon
442
+ - Dagostin
443
+ - Daluse
444
+ - Damogran
445
+ - Danaan
446
+ - Dangrobad
447
+ - Dansson
448
+ - Dapdrof
449
+ - Dara
450
+ - Darenthia
451
+ - Daribow
452
+ - Darien
453
+ - Darius
454
+ - Darkbloom
455
+ - Darnis
456
+ - Darwin
457
+ - Dathyna
458
+ - Davanna
459
+ - Dawn
460
+ - Dayan
461
+ - Dazzle
462
+ - Deadwood
463
+ - Decapod
464
+ - Deemi
465
+ - Deerfly
466
+ - Deimos
467
+ - Delcadore
468
+ - Delfi
469
+ - Delicass
470
+ - Dellaconda
471
+ - Delmak-O
472
+ - Delphini
473
+ - Delphon
474
+ - Delphos
475
+ - Delta Karpis
476
+ - Demarchia
477
+ - Demea
478
+ - Demetria
479
+ - Demos
480
+ - Denaria
481
+ - Deneb
482
+ - Deneb Drei
483
+ - Deneb Vier
484
+ - Derby
485
+ - Derowd
486
+ - Desperus
487
+ - Deva Loka
488
+ - Devastis
489
+ - Dezni
490
+ - Dhantu
491
+ - Dharel
492
+ - Dhennar
493
+ - Dhrawn
494
+ - Diadem
495
+ - Dido
496
+ - Dilbia
497
+ - Dinadh
498
+ - Diomedes
499
+ - Dionis
500
+ - Diplos
501
+ - Diporia
502
+ - Dirna
503
+ - Dirt
504
+ - Dis
505
+ - Djiminid
506
+ - Dobe
507
+ - Dog
508
+ - Dogdoo
509
+ - Dollar
510
+ - Domo
511
+ - Don Martin
512
+ - Doon
513
+ - Dorca
514
+ - Doreen
515
+ - Doridora
516
+ - Dorsai
517
+ - Dosadi
518
+ - Dou Xiu
519
+ - Down
520
+ - Downunder
521
+ - Draada
522
+ - Dracon
523
+ - Draconia
524
+ - Dragon End
525
+ - Drahva
526
+ - Drakka
527
+ - Drallab
528
+ - Drambo
529
+ - Dreaden
530
+ - Dregocia
531
+ - Droxy
532
+ - Drygulch
533
+ - Dubiety
534
+ - Ducommun
535
+ - Dude
536
+ - Dulkis
537
+ - Dunant
538
+ - Dune
539
+ - Dunuos
540
+ - Duralis
541
+ - Durani
542
+ - Durendal
543
+ - Duva
544
+ - Dyar
545
+ - Dyton
546
+ - Eadrax
547
+ - Eagle
548
+ - Earth
549
+ - Ebola
550
+ - Eccentric
551
+ - Eden
552
+ - Edenburg
553
+ - Edge
554
+ - Edora
555
+ - Ehemi
556
+ - Eiger's
557
+ - El Kuara
558
+ - Elag
559
+ - Elan
560
+ - Eleutheria
561
+ - Ellna
562
+ - Elsewhere
563
+ - Eltanin
564
+ - Elysia
565
+ - Elysium
566
+ - Elyssium
567
+ - Emporia
568
+ - Enchanter
569
+ - Ender
570
+ - Endsa
571
+ - Endymion
572
+ - Enesi
573
+ - England
574
+ - Enigma
575
+ - Enlil
576
+ - Enobarbus
577
+ - EnterCo
578
+ - Eolhxir
579
+ - Epsilon Cuniculi
580
+ - Eqbas Vorhi
581
+ - Ercu
582
+ - Erebusal
583
+ - Erewhon
584
+ - Eridan
585
+ - Eridani Foxtrot
586
+ - Erie
587
+ - Eros
588
+ - Eroticon
589
+ - Erythro
590
+ - Esflavian
591
+ - Esthaa
592
+ - Estrada
593
+ - Esuh
594
+ - Eternia
595
+ - Eternity
596
+ - Eternium
597
+ - Etheria
598
+ - Etla
599
+ - Euronda
600
+ - Eurydice
601
+ - Euterpe
602
+ - Eversnow
603
+ - Eviticu
604
+ - Excalibur
605
+ - Experance
606
+ - Exxilon
607
+ - Ezra
608
+ - Fabulous Heaven
609
+ - Fairview
610
+ - Fallia
611
+ - Fand
612
+ - Fantasy
613
+ - Far Away
614
+ - Far Dingle
615
+ - Far Jerusalem
616
+ - Faraway
617
+ - Fargone
618
+ - Farostator
619
+ - Fasser
620
+ - Fatawa
621
+ - Faun Hakkor
622
+ - Felicity
623
+ - Felis
624
+ - Fendi
625
+ - Fenris
626
+ - Feral
627
+ - Ferlang
628
+ - Festi
629
+ - Fhloston
630
+ - Filia
631
+ - Fiorina
632
+ - Fire
633
+ - Flamberge
634
+ - Flamme
635
+ - Flash
636
+ - Flatulon
637
+ - Fleer
638
+ - Flesk
639
+ - Flinn
640
+ - Flint
641
+ - Flobee Mission
642
+ - Florana
643
+ - Floridia
644
+ - Florina
645
+ - Flossenberger
646
+ - Fluva
647
+ - Fode
648
+ - Folsom
649
+ - Fomalhaut
650
+ - Foodcourtia
651
+ - Forbit
652
+ - Forest
653
+ - Fornacis
654
+ - Fortress
655
+ - Fortunate Child
656
+ - Fortune
657
+ - Fox
658
+ - Frastra
659
+ - Freedom
660
+ - Freeholm
661
+ - Fremont
662
+ - Freya
663
+ - Freydis
664
+ - Freyja
665
+ - Friedland
666
+ - Friendly
667
+ - Frogstar
668
+ - Frontera
669
+ - Frontios
670
+ - Fthel
671
+ - Fu-Sang
672
+ - Fuji
673
+ - Fulda
674
+ - Fulgar
675
+ - Fulzime
676
+ - Furenasyle
677
+ - G'iri
678
+ - GHC
679
+ - Galli
680
+ - Gallia
681
+ - Gallifrey
682
+ - Galway
683
+ - Gamma
684
+ - Gammon
685
+ - Ganda
686
+ - Gandji
687
+ - Ganges Heart
688
+ - Ganzer
689
+ - Garav
690
+ - Garden
691
+ - Gargantia
692
+ - Garissa
693
+ - Garson
694
+ - Garth
695
+ - Gatewood
696
+ - Gazyr
697
+ - Gazzali
698
+ - Gea
699
+ - Gehenna
700
+ - Geidi
701
+ - Gelk
702
+ - Genoa
703
+ - Germania
704
+ - Gethen
705
+ - Getty Premium
706
+ - Gezen
707
+ - Ghonsilya
708
+ - Ghost
709
+ - Gilgamesh
710
+ - Gimli
711
+ - Ginaz
712
+ - Giri
713
+ - Gloni
714
+ - Gloob
715
+ - Glorb
716
+ - Gloria
717
+ - Glyptal
718
+ - Goat
719
+ - Gobat
720
+ - Goblinrock
721
+ - Gobonik
722
+ - Gobulus
723
+ - God's Grove
724
+ - Godzilla
725
+ - Goldblatt
726
+ - Goldin
727
+ - Golgafrincham
728
+ - Golgotha
729
+ - Golhem
730
+ - Golos
731
+ - Golter
732
+ - Good Luck
733
+ - Gorgzid
734
+ - Gorzarg
735
+ - Gotland
736
+ - Gralmond
737
+ - Gram
738
+ - Gramarye
739
+ - Grand Teton
740
+ - Grass
741
+ - Grassroots
742
+ - Grastius
743
+ - Great Gallowan
744
+ - Green
745
+ - Greene
746
+ - Greenleaf
747
+ - Greentrees
748
+ - Greesovra
749
+ - Griffoth
750
+ - Grimaldo
751
+ - Grims
752
+ - Grindal
753
+ - Grommet
754
+ - Grote
755
+ - Grugell
756
+ - Grundle
757
+ - Gryphon
758
+ - Guillarin
759
+ - Gulltopp
760
+ - Gummidgy
761
+ - Gumpalt
762
+ - Guna
763
+ - Gurgain
764
+ - Gwo
765
+ - Gyonne
766
+ - Ha'ktyl
767
+ - Hablu
768
+ - Hac Demil
769
+ - Hadante
770
+ - Hades
771
+ - Hadriu
772
+ - Hajj Majora
773
+ - Hakol
774
+ - Halcyon
775
+ - Halford
776
+ - Halifax
777
+ - "Halvm\xC3\xB6rk"
778
+ - Hammarskjold
779
+ - Hamshiltristia
780
+ - Han
781
+ - Hanka
782
+ - Harith
783
+ - Harlan
784
+ - Harlemond
785
+ - Harlequin
786
+ - Harmonia
787
+ - Harmonious Repose
788
+ - Harmony
789
+ - Harvest
790
+ - Haskin
791
+ - Hastromil
792
+ - Haulteclere
793
+ - Haven
794
+ - Hawk
795
+ - Hazard
796
+ - Haze
797
+ - He
798
+ - Hearth
799
+ - Heaven
800
+ - Heaven's Gate
801
+ - Heavenly Mountains
802
+ - Hebridan
803
+ - Hebron
804
+ - Hegira
805
+ - Heimat
806
+ - Heinlein
807
+ - Hekate
808
+ - Hekla
809
+ - Hel
810
+ - Helicon
811
+ - Helion
812
+ - Helior
813
+ - Hell
814
+ - Hellhole
815
+ - Helliconia
816
+ - Helvanti
817
+ - Hemlock
818
+ - Hemsut
819
+ - Hephaistos
820
+ - Hera
821
+ - Hermes
822
+ - Herperos
823
+ - Hertha
824
+ - Hesperus
825
+ - Hideaway
826
+ - Highgate
827
+ - Hiigara
828
+ - Hilary
829
+ - Hills
830
+ - Hippolyte
831
+ - Hive
832
+ - Hivehom
833
+ - Hleems
834
+ - Hobo
835
+ - Hocotate
836
+ - Hogarth
837
+ - Hoggie
838
+ - Holat
839
+ - Holman
840
+ - Holycow
841
+ - Honch
842
+ - Hooper
843
+ - Hopara
844
+ - Hoppaz
845
+ - Horlegor
846
+ - Horm
847
+ - Horseye
848
+ - Horst
849
+ - Hospital
850
+ - Hoth
851
+ - Hraggellon
852
+ - Hrullwelt
853
+ - Huckleberry
854
+ - Hudlar
855
+ - Hull
856
+ - Hulle
857
+ - Hurmuptha
858
+ - Hurria
859
+ - Hutchinson
860
+ - Huxley Haven
861
+ - Huzz
862
+ - Hyderabad
863
+ - Hydros
864
+ - Hyff
865
+ - Hyndji
866
+ - Hynn
867
+ - Ia
868
+ - Ian-apof
869
+ - Icarus
870
+ - Ice
871
+ - Icebox
872
+ - Icelanise
873
+ - Icheis
874
+ - Ida
875
+ - Idir
876
+ - Ifni
877
+ - Ifnia
878
+ - Iji
879
+ - Ilidio
880
+ - Ilium
881
+ - Illyricum
882
+ - Imhotep
883
+ - InVestCo
884
+ - Indi
885
+ - Inferno
886
+ - Ingstel
887
+ - Inspir
888
+ - Inter
889
+ - Intinogurzibeshilaha
890
+ - Ipocrene
891
+ - Iras
892
+ - Irminsul
893
+ - Irumclaw
894
+ - Isheimur
895
+ - Ishtar
896
+ - Isis
897
+ - Iskander
898
+ - Iss
899
+ - Issorile
900
+ - Iszm
901
+ - Ita
902
+ - Ithavoll
903
+ - Ithliss-Tor
904
+ - Ithunn
905
+ - Ix
906
+ - Ix-Nay
907
+ - Ixno
908
+ - Iyax
909
+ - Jaarfindor
910
+ - Jacob Folly
911
+ - Jaconda
912
+ - Jagganth
913
+ - Jaglan
914
+ - Janos
915
+ - Jast
916
+ - Jawbone
917
+ - Jean
918
+ - Jeep
919
+ - Jennisek
920
+ - Jericho
921
+ - Jerusalem
922
+ - Jewell
923
+ - Jiangyin
924
+ - Jijo
925
+ - Jinx
926
+ - Jm'ho
927
+ - Jo-Ad
928
+ - Joao
929
+ - Jobis
930
+ - Johnpiter
931
+ - Jonn
932
+ - Jonna
933
+ - Jophekka
934
+ - Jordan Mining
935
+ - Jove
936
+ - Joyeuse
937
+ - Jubbul
938
+ - Judgementia
939
+ - Julia
940
+ - Jun
941
+ - Juna
942
+ - Junior
943
+ - Junya
944
+ - Jurskala
945
+ - Justicia
946
+ - Juthtath
947
+ - K
948
+ - K'erem
949
+ - K-Pax
950
+ - Kaesov
951
+ - Kaihapa
952
+ - Kainui
953
+ - Kakrafoon
954
+ - Kalaban
955
+ - Kalapriya
956
+ - Kalgan
957
+ - Kalgash
958
+ - Kanagawa
959
+ - Kappas
960
+ - Kapteyn
961
+ - Karadakk
962
+ - Karaxe
963
+ - Karfel
964
+ - Karn
965
+ - Karst
966
+ - Karum and Kanes
967
+ - Kasterborus
968
+ - Kastria
969
+ - Kazo
970
+ - Keep Enable
971
+ - Kegron Pluva
972
+ - Kellac
973
+ - Kembel
974
+ - Kendrick Five-A
975
+ - Keni
976
+ - Kenning
977
+ - Kerfsis
978
+ - Keri
979
+ - Kerkorian
980
+ - Kerry
981
+ - Kesrith
982
+ - Kevarzangia
983
+ - Khatka
984
+ - Khepera
985
+ - Khriastros
986
+ - Kilgar
987
+ - Kilroy
988
+ - Kiluwa
989
+ - Kingdom
990
+ - Kirith
991
+ - Kirkasant
992
+ - Kirsi
993
+ - Kithrup
994
+ - Klairos
995
+ - Klendathu
996
+ - Klief
997
+ - Klist
998
+ - Klom
999
+ - Kobol
1000
+ - Kodar
1001
+ - Kolo
1002
+ - Konom
1003
+ - Koozebane
1004
+ - Koppawanda
1005
+ - Korell
1006
+ - Korval
1007
+ - Korvel
1008
+ - Korwar
1009
+ - Kosatka
1010
+ - Koyo
1011
+ - Krako
1012
+ - Kralkor
1013
+ - Kregan
1014
+ - Kria
1015
+ - Krikkit
1016
+ - Krishna
1017
+ - Kroni
1018
+ - Krop Tor
1019
+ - Kropotkin
1020
+ - Krupp Reich
1021
+ - Kryder
1022
+ - Krynoid
1023
+ - Kukulkan
1024
+ - Kulath
1025
+ - Kusam
1026
+ - Kylera
1027
+ - Kyleria
1028
+ - Kyoto
1029
+ - Kystran
1030
+ - Kythanil
1031
+ - La Gonave
1032
+ - Laarmiten
1033
+ - Labura
1034
+ - Lacertae
1035
+ - Lagash
1036
+ - Lagrima
1037
+ - Lahmu
1038
+ - Lakertya
1039
+ - Landomar
1040
+ - Lascarious
1041
+ - Last Chance
1042
+ - Lasthope
1043
+ - Latimer
1044
+ - Laylora
1045
+ - Lea
1046
+ - Lemminkainen
1047
+ - Lepidus
1048
+ - Leseum
1049
+ - Leucifer
1050
+ - Lexicon
1051
+ - Lexis
1052
+ - Ley
1053
+ - Leynstyr
1054
+ - Liaden
1055
+ - Liann Jiun
1056
+ - Libair
1057
+ - Lil
1058
+ - Lilac
1059
+ - Lilith
1060
+ - Limbo
1061
+ - Lingane
1062
+ - Lingo
1063
+ - Linnisfarne
1064
+ - Lithia
1065
+ - Livia
1066
+ - Llyene
1067
+ - Lobos
1068
+ - Locris
1069
+ - Logarto
1070
+ - Logopolis
1071
+ - Loki
1072
+ - Londinium
1073
+ - Loocen
1074
+ - Lorigon
1075
+ - Loris
1076
+ - LornaDo
1077
+ - Los Vada
1078
+ - Lotarf
1079
+ - Lothian
1080
+ - Lou Xiu
1081
+ - Loudor
1082
+ - Lucifer
1083
+ - Lugaluru
1084
+ - Lumbaga
1085
+ - Lurion
1086
+ - Lusitania
1087
+ - Lusus
1088
+ - Luton
1089
+ - Lyonese
1090
+ - Lyr
1091
+ - Lyra
1092
+ - Lystera
1093
+ - Lythion
1094
+ - M
1095
+ - M'hlyr
1096
+ - Mab Guul
1097
+ - Madhya
1098
+ - Madrona
1099
+ - Maenali
1100
+ - Magge
1101
+ - Magha
1102
+ - Magrathea
1103
+ - Mahamba
1104
+ - Maidservant
1105
+ - Maioplar
1106
+ - Makumba
1107
+ - Mala
1108
+ - Mali
1109
+ - Malmot
1110
+ - Mandala
1111
+ - Mandalay
1112
+ - Mandress
1113
+ - Mangulay
1114
+ - Manhome
1115
+ - Manipool
1116
+ - Manticore
1117
+ - Manussa
1118
+ - Manza
1119
+ - Mao Xiu
1120
+ - Maoli
1121
+ - Marak
1122
+ - Marduk
1123
+ - Margbwar
1124
+ - Marglot
1125
+ - Marindra
1126
+ - Mariner
1127
+ - Marinus
1128
+ - Marius
1129
+ - Marjoin
1130
+ - Marklar
1131
+ - Markop
1132
+ - Marmora
1133
+ - Maros
1134
+ - Marrow
1135
+ - Marsupial
1136
+ - Marva
1137
+ - Masada
1138
+ - Maudette
1139
+ - Maugham Station
1140
+ - Maui-Covenant
1141
+ - Mavirouleo
1142
+ - Maximegalon
1143
+ - Maxroy Purchase
1144
+ - Mayernas
1145
+ - Mazapan
1146
+ - McClendon
1147
+ - McGillicudy
1148
+ - Meadow
1149
+ - Meatball
1150
+ - Meath
1151
+ - Mechanistria
1152
+ - Mechanus
1153
+ - Medina
1154
+ - Medusa
1155
+ - Meekrob
1156
+ - Meeloon
1157
+ - Megas
1158
+ - Meiji
1159
+ - Mel
1160
+ - Mela Five
1161
+ - Melbourne
1162
+ - Melde
1163
+ - Melf
1164
+ - Melkarth
1165
+ - Melloan
1166
+ - Melpomenia
1167
+ - Memnon
1168
+ - Menalaus
1169
+ - Mercator
1170
+ - Meroe
1171
+ - Merseia
1172
+ - Mesklin
1173
+ - Meta
1174
+ - Metaluna
1175
+ - Metaxas
1176
+ - Metebelis
1177
+ - Metz
1178
+ - Miasimia Goria
1179
+ - Midgard
1180
+ - Midnight
1181
+ - Midworld
1182
+ - Milanos
1183
+ - Minbar
1184
+ - Minerva
1185
+ - Minostra
1186
+ - Minyos
1187
+ - Mira
1188
+ - Mira Ceti-T
1189
+ - Mirage
1190
+ - Miranda
1191
+ - Mirkheim
1192
+ - Mirzam
1193
+ - Mithra
1194
+ - Mithras
1195
+ - Mito
1196
+ - Miykennis
1197
+ - Mizar
1198
+ - Mnemom
1199
+ - Moabar
1200
+ - Modhra
1201
+ - Mogar
1202
+ - Mok
1203
+ - Mollan
1204
+ - Moller
1205
+ - Mondas
1206
+ - Monet
1207
+ - Mongo
1208
+ - Moni
1209
+ - Monocerotis
1210
+ - Monwaing
1211
+ - Moosejaw
1212
+ - Moravia
1213
+ - Mores
1214
+ - Moresby
1215
+ - Morgansworld
1216
+ - Morglay
1217
+ - Morichades
1218
+ - Morningside
1219
+ - Morok
1220
+ - Morwedd
1221
+ - Moth
1222
+ - Mother
1223
+ - Mowist
1224
+ - Moy
1225
+ - Moyaba
1226
+ - Mrigashirsha
1227
+ - Muir
1228
+ - Mulchury
1229
+ - Muldavia
1230
+ - Mule Kick
1231
+ - Munar
1232
+ - Murcheson Eye
1233
+ - Muse
1234
+ - Mynjhiro
1235
+ - Mysterio
1236
+ - Mythisch
1237
+ - Nabu
1238
+ - Nachtel
1239
+ - Nacre
1240
+ - Naha
1241
+ - Nanaganda
1242
+ - Nansen
1243
+ - Naqsa
1244
+ - Narn
1245
+ - Narvi
1246
+ - Nasqueron
1247
+ - Nasya
1248
+ - Nausi
1249
+ - Navaros
1250
+ - Ne'Holland
1251
+ - Nebari
1252
+ - Nebel
1253
+ - Nebiru
1254
+ - Nechepso
1255
+ - Necroman
1256
+ - Nega
1257
+ - Nephelos
1258
+ - Nephilim
1259
+ - Neranigh
1260
+ - Nergal
1261
+ - Nestor
1262
+ - Netu
1263
+ - Neu Pommerania
1264
+ - Neverland
1265
+ - Nevermore
1266
+ - Newhall
1267
+ - Nexos
1268
+ - Nexus
1269
+ - Nhar-Gk'ok
1270
+ - Nhequuy
1271
+ - Nhouaste
1272
+ - Niami
1273
+ - Nicles
1274
+ - Nidu
1275
+ - Nielad
1276
+ - Niffleheim
1277
+ - Niflhel
1278
+ - Nigel
1279
+ - Nightshade
1280
+ - Nil
1281
+ - Nippon
1282
+ - Nirene
1283
+ - Nirvana
1284
+ - Nisren
1285
+ - Niyu
1286
+ - No Turning Back
1287
+ - Noab
1288
+ - Nobo
1289
+ - Nolevatol
1290
+ - Nomolos
1291
+ - Nordholm
1292
+ - Norfolk
1293
+ - Norge
1294
+ - Norn
1295
+ - Northworld
1296
+ - Nostrilla
1297
+ - Nou Occitan
1298
+ - Novaya Svodboda
1299
+ - Novia
1300
+ - Novy Kurdistan
1301
+ - Novy Srebrenicza
1302
+ - Nulapeiron
1303
+ - Numitri
1304
+ - Nurag
1305
+ - Nuri
1306
+ - Nyanza
1307
+ - Nyjora
1308
+ - Nyjord
1309
+ - Nylar
1310
+ - Nylock
1311
+ - Nymphon
1312
+ - Nyvan
1313
+ - Oakka
1314
+ - Oaktier
1315
+ - Oannes
1316
+ - Oasis
1317
+ - Oblivion
1318
+ - Obri
1319
+ - Oceanus
1320
+ - Octantis
1321
+ - Odidcut
1322
+ - Odin
1323
+ - Odlum
1324
+ - Ogg
1325
+ - Ogron
1326
+ - Ogros
1327
+ - Olar
1328
+ - Olderon
1329
+ - Olivia
1330
+ - Omagh
1331
+ - Omivarium
1332
+ - Onaris
1333
+ - Ondine
1334
+ - Ondor Gambit
1335
+ - Ophiuchus
1336
+ - Orban
1337
+ - Orede
1338
+ - Orgone
1339
+ - Orichades
1340
+ - Orilla
1341
+ - Orion
1342
+ - Orionis
1343
+ - Ork
1344
+ - Ormuzd
1345
+ - Orpheus
1346
+ - Orsha
1347
+ - Orsini
1348
+ - Orum
1349
+ - Osa
1350
+ - Oseidon
1351
+ - Oshan
1352
+ - Oshu
1353
+ - Osian
1354
+ - Osiris
1355
+ - Ossining
1356
+ - Outpost
1357
+ - Owa
1358
+ - Oxygen
1359
+ - Oynyena
1360
+ - Ozzieworld
1361
+ - Pacem
1362
+ - Pahnshu
1363
+ - Pakhome
1364
+ - Paklatuthl
1365
+ - Pallas
1366
+ - Palmermo
1367
+ - Paloana
1368
+ - Pan
1369
+ - Pandora
1370
+ - Pangar
1371
+ - Panna
1372
+ - Panoran
1373
+ - Paquin
1374
+ - Par
1375
+ - Paradise
1376
+ - Paraiso-Aqui
1377
+ - Paramay
1378
+ - Parchmont
1379
+ - Parsimony
1380
+ - Parth
1381
+ - Partussy
1382
+ - Parvati
1383
+ - Pasadena
1384
+ - Passen
1385
+ - Passy
1386
+ - Pastoral
1387
+ - Patel
1388
+ - Patience
1389
+ - Pazuzu
1390
+ - Peace
1391
+ - Peekaboo
1392
+ - Peladon
1393
+ - Pelican
1394
+ - Pell
1395
+ - Pellin
1396
+ - Pelorum
1397
+ - Penalipan
1398
+ - Pengo
1399
+ - Pepinia
1400
+ - Pepple
1401
+ - Perdur Alas
1402
+ - Peregrine
1403
+ - Pern
1404
+ - Persephone
1405
+ - Pestolozzi
1406
+ - Petaybee
1407
+ - Pete
1408
+ - Petrino
1409
+ - Phaester Osiris
1410
+ - Phalguni
1411
+ - Pharos
1412
+ - Phastillan
1413
+ - Phigerinadon
1414
+ - Philos
1415
+ - Phlenbahn
1416
+ - Phoenix
1417
+ - Phrastesis
1418
+ - Pictoris
1419
+ - Pila
1420
+ - Piranha
1421
+ - Pirri
1422
+ - Piscium
1423
+ - Pitcairn
1424
+ - Pittance
1425
+ - Planetoid
1426
+ - Planos
1427
+ - Planter Delight
1428
+ - Plastreodus
1429
+ - Plateau
1430
+ - Plesk
1431
+ - Plookesia
1432
+ - Plootarg
1433
+ - Plowman
1434
+ - Pock
1435
+ - Poictesme
1436
+ - Polarfrey
1437
+ - Polymos
1438
+ - Polyphemus
1439
+ - Pompey
1440
+ - Poowadya
1441
+ - Porcelo
1442
+ - Porpula
1443
+ - Poseidon
1444
+ - Praclush Toanas
1445
+ - Pradesh
1446
+ - Prenstaleraf
1447
+ - Prestno
1448
+ - Pretoria
1449
+ - Priam
1450
+ - Prima
1451
+ - Primus
1452
+ - Prince Samual
1453
+ - Pring
1454
+ - Prism
1455
+ - Proamon
1456
+ - Procyon
1457
+ - Prodenda
1458
+ - Proxima
1459
+ - Proxima Centaurus
1460
+ - Prute
1461
+ - Psychlo
1462
+ - Psychon
1463
+ - Pulitzer
1464
+ - Pushya
1465
+ - Puys
1466
+ - Pyrassis
1467
+ - Pyrylyn
1468
+ - Q
1469
+ - Qamara
1470
+ - Qelso
1471
+ - Qiorfu
1472
+ - Qolme
1473
+ - Qom-Riyadh
1474
+ - Qotem
1475
+ - Qua'runze
1476
+ - Quarta
1477
+ - Quendar
1478
+ - Quidde
1479
+ - Quin
1480
+ - Quinnius
1481
+ - Quinta
1482
+ - Quofum
1483
+ - Quopp
1484
+ - Quorg
1485
+ - Quoristan
1486
+ - Raaga
1487
+ - Radole
1488
+ - Rafe
1489
+ - Ragnarok
1490
+ - Rakhat
1491
+ - Rakis
1492
+ - Raksh
1493
+ - Ral
1494
+ - Ranus
1495
+ - Ratoon
1496
+ - Raven
1497
+ - Ravolox
1498
+ - Reamde
1499
+ - Redeye
1500
+ - Ree'hdworld
1501
+ - Reed 1935-C
1502
+ - Reesethree
1503
+ - Reetalia
1504
+ - Refusis
1505
+ - Regina
1506
+ - Regis
1507
+ - Regula
1508
+ - Regulus
1509
+ - Relay
1510
+ - Remulak
1511
+ - Resurgam
1512
+ - Retha
1513
+ - Reticuli
1514
+ - Reverie
1515
+ - Rezerval
1516
+ - Rhampora
1517
+ - Rhapsody
1518
+ - Rheton
1519
+ - Rhizome
1520
+ - Rhodia
1521
+ - Ria
1522
+ - Ribos
1523
+ - Riddle
1524
+ - Ridgetop
1525
+ - Rigel
1526
+ - Riker
1527
+ - Rikha
1528
+ - Riks
1529
+ - Rimmon
1530
+ - Rimway
1531
+ - Ring
1532
+ - Rinthi
1533
+ - Roanoke
1534
+ - Roaval
1535
+ - Rochard
1536
+ - Rohini
1537
+ - Romanujan
1538
+ - Ronam
1539
+ - Ronom
1540
+ - Ronruad
1541
+ - Roosevelt
1542
+ - Rossem
1543
+ - Roswell
1544
+ - Rubanis
1545
+ - Rustum
1546
+ - Ruta
1547
+ - Ryvriss
1548
+ - S'Benni
1549
+ - S-Dem
1550
+ - SC-28E
1551
+ - Sabbath
1552
+ - Sacrecour
1553
+ - Sadachbia
1554
+ - Saddlesore
1555
+ - Safehold
1556
+ - Sagan
1557
+ - Salem
1558
+ - Salina
1559
+ - Salinus
1560
+ - Salisbury
1561
+ - Salm
1562
+ - Salostophus
1563
+ - Salt
1564
+ - Salud Afar
1565
+ - Salusa Secundus
1566
+ - Samarkand
1567
+ - San Helios
1568
+ - San-Ska-Re
1569
+ - Sanctuary
1570
+ - Sandalion
1571
+ - Sandurst
1572
+ - Sandusky
1573
+ - Sangre
1574
+ - Sanitek
1575
+ - Santa Maria
1576
+ - Santandru
1577
+ - Santanni
1578
+ - Santhenar
1579
+ - Santo
1580
+ - Sargol
1581
+ - Sargon
1582
+ - Sarip
1583
+ - Sark
1584
+ - Sarn
1585
+ - Sarpeodon
1586
+ - Saturus
1587
+ - Saudade
1588
+ - Saybrook
1589
+ - Sayshell
1590
+ - Sceptri
1591
+ - Schars
1592
+ - Scuti
1593
+ - Sebe
1594
+ - Secundus
1595
+ - Segonax
1596
+ - Segur
1597
+ - Sel
1598
+ - Selene
1599
+ - Senisran
1600
+ - Sentnar
1601
+ - Sepekte
1602
+ - Septima
1603
+ - Sequoia
1604
+ - Sera
1605
+ - Seremathenn
1606
+ - Serendipity
1607
+ - Serieve
1608
+ - Seshat
1609
+ - Set
1610
+ - Setsai
1611
+ - Sextantis
1612
+ - Shada
1613
+ - Shadow
1614
+ - Shaggai
1615
+ - Shahar
1616
+ - Shakuras
1617
+ - Shamash
1618
+ - Shame
1619
+ - Shammat
1620
+ - Shangra-la
1621
+ - Sharya
1622
+ - Shatabhisha
1623
+ - Sheathclaws
1624
+ - Shemzee
1625
+ - Shen Xiu
1626
+ - Sheol
1627
+ - Sheridan
1628
+ - Shesha
1629
+ - Shi Xiu
1630
+ - Shikasta
1631
+ - Shiva
1632
+ - Shiva-Parvati
1633
+ - Shoa
1634
+ - Shora
1635
+ - Shuft
1636
+ - Sicily
1637
+ - Sick
1638
+ - Sigma
1639
+ - Sigma Hominis Volantis
1640
+ - Signik
1641
+ - Sihnon
1642
+ - Silesia
1643
+ - Silver Home
1644
+ - Silvergalde
1645
+ - Silverhold
1646
+ - Silvium
1647
+ - Simarka
1648
+ - Sinzar
1649
+ - Siren
1650
+ - Sirgamesk
1651
+ - Siwenna
1652
+ - Sjandra Kei
1653
+ - Skaro
1654
+ - Skathi
1655
+ - Skonos
1656
+ - SK
1657
+ - Sky Edge
1658
+ - Skyron
1659
+ - Sladden
1660
+ - Slowyear
1661
+ - Smar
1662
+ - Smitheus
1663
+ - Smoo
1664
+ - Smyrno
1665
+ - Snake
1666
+ - Soghrune
1667
+ - Sohrab
1668
+ - Sol Draconi Septem
1669
+ - Solace
1670
+ - Solaria
1671
+ - Solaris
1672
+ - Solos
1673
+ - Sonjeera
1674
+ - Sontar
1675
+ - Sontara
1676
+ - Soror
1677
+ - Soros
1678
+ - Sorpen
1679
+ - Sorrow
1680
+ - Spatterjay
1681
+ - Spectra
1682
+ - Spengo
1683
+ - Speyr
1684
+ - Sphereon
1685
+ - Sphinx
1686
+ - Spica
1687
+ - Spiridon
1688
+ - Splendid Wisdom
1689
+ - Springapatam
1690
+ - St. Albans
1691
+ - St. Rita
1692
+ - Starfall
1693
+ - Starjj
1694
+ - Stark
1695
+ - Starkad
1696
+ - Steffani
1697
+ - Stellar
1698
+ - Stombos
1699
+ - Storage
1700
+ - Stramlu Realm
1701
+ - Stygia
1702
+ - Sulla
1703
+ - Sulyn
1704
+ - Sunday
1705
+ - Sundown
1706
+ - Surim
1707
+ - Svartos
1708
+ - Svoboda
1709
+ - Swift
1710
+ - Sykar
1711
+ - Sylvania
1712
+ - Syndon
1713
+ - Synnax
1714
+ - "S\xC3\xB6derblom"
1715
+ - T'Nane
1716
+ - TP
1717
+ - Takiee
1718
+ - Taklam
1719
+ - Tallon
1720
+ - Talorus
1721
+ - Talos
1722
+ - Tammuz
1723
+ - Tampico
1724
+ - Tananius
1725
+ - Tandy
1726
+ - Tangaroa
1727
+ - Tangea
1728
+ - Tanis
1729
+ - Tanith
1730
+ - Taoola
1731
+ - Tara
1732
+ - Tarantulon
1733
+ - Tarawana
1734
+ - Tarazed
1735
+ - Tarbos
1736
+ - Tarn Vedra
1737
+ - Tarsalas
1738
+ - Tarvek
1739
+ - Tas
1740
+ - Tashita
1741
+ - Tasir Var
1742
+ - Tasu
1743
+ - Tattoo
1744
+ - Tatyata
1745
+ - Tay
1746
+ - Tazenda
1747
+ - Tejaphey
1748
+ - Tellantrum
1749
+ - Telmun
1750
+ - Telos
1751
+ - Temperance
1752
+ - Tenebra
1753
+ - Tenerife
1754
+ - Tenusia
1755
+ - Terminus
1756
+ - Terradon
1757
+ - Terrina
1758
+ - Territa
1759
+ - Tersurus
1760
+ - Tertia
1761
+ - Tertius
1762
+ - Teta
1763
+ - Tetragrammaton
1764
+ - Tetrapyriarbus
1765
+ - Thaf
1766
+ - Thalassa
1767
+ - Thaleia
1768
+ - Thargon
1769
+ - The Pit
1770
+ - Thesalina
1771
+ - Theta
1772
+ - Thistlewaite
1773
+ - Thor
1774
+ - Thorburg
1775
+ - Thoros
1776
+ - Thoth
1777
+ - Thra
1778
+ - Thrais
1779
+ - Thrax
1780
+ - Thraxas
1781
+ - Thrintun
1782
+ - Throne
1783
+ - Thuban
1784
+ - Thugon
1785
+ - Thule
1786
+ - Thunderhouse
1787
+ - Thyoph
1788
+ - Tiercel
1789
+ - Tiermann
1790
+ - Tierra
1791
+ - Tigella
1792
+ - Timdo
1793
+ - Tines'
1794
+ - Tintamarre
1795
+ - Tir
1796
+ - Tireate
1797
+ - Tirten
1798
+ - Tirwan
1799
+ - Tithonus
1800
+ - Tl'ho
1801
+ - Tloona
1802
+ - Tnp
1803
+ - Tock
1804
+ - Tolive
1805
+ - Tollana
1806
+ - Tolnep
1807
+ - Tom
1808
+ - Toog
1809
+ - Toop
1810
+ - Tophet
1811
+ - Torch
1812
+ - Torgen
1813
+ - Toris
1814
+ - Toussaint
1815
+ - Toxicon
1816
+ - Trade
1817
+ - Tragona
1818
+ - Trajeen
1819
+ - Traken
1820
+ - Tralfamadore
1821
+ - Traltha
1822
+ - Tranaii
1823
+ - Tranchion
1824
+ - Tranquela
1825
+ - Tranquille
1826
+ - Trantor
1827
+ - Treetrunk
1828
+ - Trencher
1829
+ - Trewsworld
1830
+ - Trini
1831
+ - Trion
1832
+ - Trisol
1833
+ - Triton
1834
+ - Triumph
1835
+ - Trivsdal
1836
+ - Troas
1837
+ - Trontephori
1838
+ - Trullion
1839
+ - Tschai
1840
+ - Tsingtao-Hsishuang
1841
+ - Tubman B12
1842
+ - Tukaloose
1843
+ - Tulamaine
1844
+ - Tulkas
1845
+ - Tunkaree
1846
+ - Tupile
1847
+ - Turku
1848
+ - Tutmose
1849
+ - Tuuqalia
1850
+ - Tweenis
1851
+ - Tymbrim
1852
+ - "Tyrana\xC3\xABl"
1853
+ - Tyrann
1854
+ - Tyranna
1855
+ - Tyron
1856
+ - Tythonus
1857
+ - U.V.6.
1858
+ - Udaspri
1859
+ - Uerkle
1860
+ - Ueter
1861
+ - Uiqid
1862
+ - Ullamon
1863
+ - Uller
1864
+ - Ulster
1865
+ - Ultima Thule
1866
+ - Ultron
1867
+ - Umayma
1868
+ - Umber
1869
+ - Umeh
1870
+ - Ummo
1871
+ - Unarius
1872
+ - Unity
1873
+ - Uraill
1874
+ - Urbanka
1875
+ - Urchachka
1876
+ - Urras
1877
+ - Usurius
1878
+ - Utopia
1879
+ - Uxarieus
1880
+ - Vada
1881
+ - Valencia
1882
+ - Valhalla
1883
+ - Valvida
1884
+ - Valya
1885
+ - Vampire
1886
+ - Van Maanan
1887
+ - Van de Kamp
1888
+ - Vanaheim
1889
+ - Vandor
1890
+ - Vandos
1891
+ - Vargon
1892
+ - Varos
1893
+ - Vassal
1894
+ - Vasthold
1895
+ - Veerstu
1896
+ - Vega
1897
+ - Vekta
1898
+ - Velada Borthan
1899
+ - Velaines
1900
+ - Velda
1901
+ - Velgarth
1902
+ - Velliran
1903
+ - Velorum
1904
+ - Velvet
1905
+ - Veneria
1906
+ - Verbena
1907
+ - Verde
1908
+ - Veridani
1909
+ - Verkerk
1910
+ - Vespae
1911
+ - Vexvelt
1912
+ - Vhrugy
1913
+ - Viccai
1914
+ - Vielinger
1915
+ - Viltvodle
1916
+ - Vincetori
1917
+ - Vinci
1918
+ - Vintan
1919
+ - Vio
1920
+ - Virginia
1921
+ - Virgon
1922
+ - Virtue
1923
+ - Vishakha
1924
+ - Vishnu
1925
+ - Vista Linda
1926
+ - Vistula
1927
+ - Vita
1928
+ - Vixen
1929
+ - Vlhan
1930
+ - Voga
1931
+ - Voltaire
1932
+ - Vorash
1933
+ - Voreg
1934
+ - Vorpis
1935
+ - Vort
1936
+ - Vorta
1937
+ - Vortis
1938
+ - Vox Romanus
1939
+ - Vulcan
1940
+ - Vwanchin
1941
+ - Vytr
1942
+ - Walden
1943
+ - Wallach-Eli
1944
+ - Wardhaven
1945
+ - Warhead
1946
+ - Warlock
1947
+ - Warmok
1948
+ - Waterhole
1949
+ - We Made It
1950
+ - Weald
1951
+ - Wega
1952
+ - Wei Xiu
1953
+ - Werel
1954
+ - Wess'ej
1955
+ - Westerix
1956
+ - Wezen
1957
+ - Wheel
1958
+ - Whitefall
1959
+ - Whittier
1960
+ - Wikonur
1961
+ - Wildenwooly
1962
+ - Willow-Wane
1963
+ - Wilson
1964
+ - Windsor-in-Exile
1965
+ - Winter
1966
+ - Winter Eye
1967
+ - Wizard
1968
+ - Woden
1969
+ - Wodenhammer
1970
+ - Wolf
1971
+ - Wolfgang
1972
+ - Woman Wept
1973
+ - Woolamurra
1974
+ - Wormulon
1975
+ - Wotex
1976
+ - Wunderland
1977
+ - Wunderwelt
1978
+ - Xacryn
1979
+ - Xanadu
1980
+ - Xantil
1981
+ - Xari
1982
+ - Xecho
1983
+ - Xeriphas
1984
+ - Xeros
1985
+ - Xerxes
1986
+ - Xichlotl
1987
+ - Xilmuch
1988
+ - Xindus
1989
+ - Xipotetec
1990
+ - Xlephier
1991
+ - Xochitl
1992
+ - Xodo
1993
+ - Yaddith
1994
+ - Yalerta
1995
+ - Yandro
1996
+ - Yarilo
1997
+ - Yellowstone
1998
+ - Yeowe
1999
+ - Yiktor
2000
+ - Yirkalla
2001
+ - Ylyd
2002
+ - Ymir
2003
+ - Yoi
2004
+ - York
2005
+ - Yr Wyddfa
2006
+ - Yravo
2007
+ - Yrnameer
2008
+ - Yud
2009
+ - Yugopotamia
2010
+ - Yurakosi
2011
+ - Z
2012
+ - Z'Ha'Dum
2013
+ - ZK
2014
+ - Zamper
2015
+ - Zanak
2016
+ - Zara
2017
+ - Zarathustra
2018
+ - Zardon
2019
+ - Zark
2020
+ - Zartok
2021
+ - Zartron
2022
+ - Zayin
2023
+ - Zeltoldimar
2024
+ - Zeltoldinar
2025
+ - Zemlya
2026
+ - Zenerre
2027
+ - Zenk
2028
+ - Zenno
2029
+ - Zeon
2030
+ - Zeos
2031
+ - Zetox
2032
+ - Zhong Guo
2033
+ - Zia di Notte
2034
+ - Zog
2035
+ - Zok
2036
+ - Zokk
2037
+ - Zolfa Thura
2038
+ - Zolotoy
2039
+ - Zonda
2040
+ - Zoni
2041
+ - Zoob
2042
+ - Zoranel
2043
+ - Zorg
2044
+ - Zoroaster
2045
+ - Zorthia
2046
+ - Zubrin
2047
+ - Zula
2048
+ - Zule
2049
+ - Zurnl
2050
+ - Zygor