@pipedream/hootsuite 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/actions/create-media-upload-job/create-media-upload-job.mjs +82 -0
- package/actions/get-media-upload-status/get-media-upload-status.mjs +31 -0
- package/actions/schedule-message/schedule-message.mjs +368 -0
- package/common/constants.mjs +2666 -0
- package/common/utils.mjs +24 -0
- package/hootsuite.app.mjs +52 -15
- package/package.json +2 -2
- package/sources/new-post-created/new-post-created.mjs +2 -8
|
@@ -0,0 +1,2666 @@
|
|
|
1
|
+
export const COMPANY_SIZE_OPTIONS = [
|
|
2
|
+
{
|
|
3
|
+
label: "self",
|
|
4
|
+
value: "self",
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
label: "1 to 10 employees",
|
|
8
|
+
value: "1-10",
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
label: "11 to 50 employees",
|
|
12
|
+
value: "11-50",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
label: "51 to 200 employees",
|
|
16
|
+
value: "51-200",
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
label: "201 to 500 employees",
|
|
20
|
+
value: "201-500",
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
label: "501 to 1000 employees",
|
|
24
|
+
value: "501-1000",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
label: "1001 to 5000 employees",
|
|
28
|
+
value: "1001-5000",
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
label: "5001 to 10000 employees",
|
|
32
|
+
value: "5001-10000",
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
label: "10001+ employees",
|
|
36
|
+
value: "10001",
|
|
37
|
+
},
|
|
38
|
+
];
|
|
39
|
+
|
|
40
|
+
export const GEOGRAPHY_OPTIONS = [
|
|
41
|
+
{
|
|
42
|
+
label: "Africa",
|
|
43
|
+
value: "af",
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
label: "Cameroon",
|
|
47
|
+
value: "af.cm",
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
label: "Algeria",
|
|
51
|
+
value: "af.dz",
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
label: "Egypt",
|
|
55
|
+
value: "af.eg",
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
label: "Ghana",
|
|
59
|
+
value: "af.gh",
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
label: "Kenya",
|
|
63
|
+
value: "af.ke",
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
label: "Morocco",
|
|
67
|
+
value: "af.ma",
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
label: "Nigeria",
|
|
71
|
+
value: "af.ng",
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
label: "Tunisia",
|
|
75
|
+
value: "af.tn",
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
label: "Tanzania",
|
|
79
|
+
value: "af.tz",
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
label: "Uganda",
|
|
83
|
+
value: "af.ug",
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
label: "South Africa",
|
|
87
|
+
value: "af.za",
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
label: "Zimbabwe",
|
|
91
|
+
value: "af.zw",
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
label: "Antarctica",
|
|
95
|
+
value: "aq",
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
label: "Asia",
|
|
99
|
+
value: "as",
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
label: "Bangladesh",
|
|
103
|
+
value: "as.bd",
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
label: "China",
|
|
107
|
+
value: "as.cn",
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
label: "Shanghai City, China",
|
|
111
|
+
value: "as.cn.*.8909",
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
label: "Shenzhen, Guangdong, China",
|
|
115
|
+
value: "as.cn.*.8910",
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
label: "Beijing City, China",
|
|
119
|
+
value: "as.cn.*.8911",
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
label: "Guangzhou, Guangdong, China",
|
|
123
|
+
value: "as.cn.*.8919",
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
label: "Hong Kong",
|
|
127
|
+
value: "as.hk",
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
label: "Indonesia",
|
|
131
|
+
value: "as.id",
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
label: "Greater Jakarta Area, Indonesia",
|
|
135
|
+
value: "as.id.*.8594",
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
label: "India",
|
|
139
|
+
value: "as.in",
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
label: "Andaman & Nicobar Islands",
|
|
143
|
+
value: "as.in.an",
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
label: "Andhra Pradesh",
|
|
147
|
+
value: "as.in.ap",
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
label: "Hyderabad Area, India",
|
|
151
|
+
value: "as.in.ap.6508",
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
label: "Arunachal Pradesh",
|
|
155
|
+
value: "as.in.ar",
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
label: "Assam",
|
|
159
|
+
value: "as.in.as",
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
label: "Bihar",
|
|
163
|
+
value: "as.in.br",
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
label: "Chattisgarh",
|
|
167
|
+
value: "as.in.cg",
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
label: "Chandigarh",
|
|
171
|
+
value: "as.in.ch",
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
label: "Daman & Diu",
|
|
175
|
+
value: "as.in.dd",
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
label: "Delhi",
|
|
179
|
+
value: "as.in.dl",
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
label: "New Delhi Area, India",
|
|
183
|
+
value: "as.in.dl.7151",
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
label: "Dadra & Nagar Haveli",
|
|
187
|
+
value: "as.in.dn",
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
label: "Goa",
|
|
191
|
+
value: "as.in.ga",
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
label: "Vadodara Area, India",
|
|
195
|
+
value: "as.in.gj.6552",
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
label: "Ahmedabad Area, India",
|
|
199
|
+
value: "as.in.gj.7065",
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
label: "Himachal Pradesh",
|
|
203
|
+
value: "as.in.hp",
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
label: "Haryana",
|
|
207
|
+
value: "as.in.hr",
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
label: "Gujarat",
|
|
211
|
+
value: "as.in.gj",
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
label: "Gurgaon, India",
|
|
215
|
+
value: "as.in.hr.7391",
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
label: "Jharkhand",
|
|
219
|
+
value: "as.in.jh",
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
label: "Jammu & Kashmir",
|
|
223
|
+
value: "as.in.jk",
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
label: "Karnataka",
|
|
227
|
+
value: "as.in.ka",
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
label: "Bengaluru Area, India",
|
|
231
|
+
value: "as.in.ka.7127",
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
label: "Kerala",
|
|
235
|
+
value: "as.in.kl",
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
label: "Cochin Area, India",
|
|
239
|
+
value: "as.in.kl.6477",
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
label: "Lakshadweep",
|
|
243
|
+
value: "as.in.ld",
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
label: "Maharashtra",
|
|
247
|
+
value: "as.in.mh",
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
label: "Nagpur Area, India",
|
|
251
|
+
value: "as.in.mh.6751",
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
label: "Mumbai Area, India",
|
|
255
|
+
value: "as.in.mh.7150",
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
label: "Pune Area, India",
|
|
259
|
+
value: "as.in.mh.7350",
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
label: "Meghalaya",
|
|
263
|
+
value: "as.in.mn",
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
label: "Madhya Pradesh",
|
|
267
|
+
value: "as.in.mp",
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
label: "Indore Area, India",
|
|
271
|
+
value: "as.in.mp.7382",
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
label: "Mizoram",
|
|
275
|
+
value: "as.in.mz",
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
label: "Nagaland",
|
|
279
|
+
value: "as.in.nl",
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
label: "Orissa",
|
|
283
|
+
value: "as.in.or",
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
label: "Punjab",
|
|
287
|
+
value: "as.in.pb",
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
label: "Chandigarh Area, India",
|
|
291
|
+
value: "as.in.pb.6879",
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
label: "Pondicherry",
|
|
295
|
+
value: "as.in.py",
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
label: "Rajasthan",
|
|
299
|
+
value: "as.in.rj",
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
label: "Jaipur Area, India",
|
|
303
|
+
value: "as.in.rj.7287",
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
label: "Sikkim",
|
|
307
|
+
value: "as.in.sk",
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
label: "Tamil Nadu",
|
|
311
|
+
value: "as.in.tn",
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
label: "Coimbatore Area, India",
|
|
315
|
+
value: "as.in.tn.6472",
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
label: "Chennai Area, India",
|
|
319
|
+
value: "as.in.tn.6891",
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
label: "Tripura",
|
|
323
|
+
value: "as.in.tr",
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
label: "Uttarakhand",
|
|
327
|
+
value: "as.in.ul",
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
label: "Uttar Pradesh",
|
|
331
|
+
value: "as.in.up",
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
label: "Lucknow Area, India",
|
|
335
|
+
value: "as.in.up.7093",
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
label: "Noida Area, India",
|
|
339
|
+
value: "as.in.up.7392",
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
label: "West Bengal",
|
|
343
|
+
value: "as.in.wb",
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
label: "Kolkata Area, India",
|
|
347
|
+
value: "as.in.wb.7003",
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
label: "Japan",
|
|
351
|
+
value: "as.jp",
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
label: "Korea",
|
|
355
|
+
value: "as.kr",
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
label: "Gangnam-gu, Seoul, Korea",
|
|
359
|
+
value: "as.kr.*.7700",
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
label: "Sri Lanka",
|
|
363
|
+
value: "as.lk",
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
label: "Malaysia",
|
|
367
|
+
value: "as.my",
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
label: "Selangor, Malaysia",
|
|
371
|
+
value: "as.my.*.7945",
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
label: "Kuala Lumpur, Malaysia",
|
|
375
|
+
value: "as.my.*.7960",
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
label: "Nepal",
|
|
379
|
+
value: "as.np",
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
label: "Philippines",
|
|
383
|
+
value: "as.ph",
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
label: "Singapore",
|
|
387
|
+
value: "as.sg",
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
label: "Thailand",
|
|
391
|
+
value: "as.th",
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
label: "Taiwan",
|
|
395
|
+
value: "as.tw",
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
label: "Vietnam",
|
|
399
|
+
value: "as.vn",
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
label: "Europe",
|
|
403
|
+
value: "eu",
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
label: "Austria",
|
|
407
|
+
value: "eu.at",
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
label: "Belgium",
|
|
411
|
+
value: "eu.be",
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
label: "Antwerp Area, Belgium",
|
|
415
|
+
value: "eu.be.*.4918",
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
label: "Brussels Area, Belgium",
|
|
419
|
+
value: "eu.be.*.4920",
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
label: "Bulgaria",
|
|
423
|
+
value: "eu.bg",
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
label: "Switzerland",
|
|
427
|
+
value: "eu.ch",
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
label: "Geneva Area, Switzerland",
|
|
431
|
+
value: "eu.ch.*.4930",
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
label: "Zürich Area, Switzerland",
|
|
435
|
+
value: "eu.ch.*.4938",
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
label: "Czech Republic",
|
|
439
|
+
value: "eu.cz",
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
label: "Germany",
|
|
443
|
+
value: "eu.de",
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
label: "Cologne Area, Germany",
|
|
447
|
+
value: "eu.de.*.4953",
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
label: "Frankfurt Am Main Area, Germany",
|
|
451
|
+
value: "eu.de.*.4966",
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
label: "Munich Area, Germany",
|
|
455
|
+
value: "eu.de.*.5000",
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
label: "Denmark",
|
|
459
|
+
value: "eu.dk",
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
label: "Copenhagen Area, Denmark",
|
|
463
|
+
value: "eu.dk.*.5038",
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
label: "Odense Area, Denmark",
|
|
467
|
+
value: "eu.dk.*.5041",
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
label: "Ålborg Area, Denmark",
|
|
471
|
+
value: "eu.dk.*.5044",
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
label: "Århus Area, Denmark",
|
|
475
|
+
value: "eu.dk.*.5045",
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
label: "Spain",
|
|
479
|
+
value: "eu.es",
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
label: "Barcelona Area, Spain",
|
|
483
|
+
value: "eu.es.*.5064",
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
label: "Madrid Area, Spain",
|
|
487
|
+
value: "eu.es.*.5113",
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
label: "Finland",
|
|
491
|
+
value: "eu.fi",
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
label: "France",
|
|
495
|
+
value: "eu.fr",
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
label: "Lille Area, France",
|
|
499
|
+
value: "eu.fr.*.5205",
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
label: "Lyon Area, France",
|
|
503
|
+
value: "eu.fr.*.5210",
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
label: "Marseille Area, France",
|
|
507
|
+
value: "eu.fr.*.5211",
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
label: "Nice Area, France",
|
|
511
|
+
value: "eu.fr.*.5221",
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
label: "Paris Area, France",
|
|
515
|
+
value: "eu.fr.*.5227",
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
label: "Toulouse Area, France",
|
|
519
|
+
value: "eu.fr.*.5249",
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
label: "United Kingdom",
|
|
523
|
+
value: "eu.gb",
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
label: "Birmingham, United Kingdom",
|
|
527
|
+
value: "eu.gb.*.4544",
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
label: "Brighton, United Kingdom",
|
|
531
|
+
value: "eu.gb.*.4550",
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
label: "Bristol, United Kingdom",
|
|
535
|
+
value: "eu.gb.*.4552",
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
label: "Cambridge, United Kingdom",
|
|
539
|
+
value: "eu.gb.*.4555",
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
label: "Chelmsford, United Kingdom",
|
|
543
|
+
value: "eu.gb.*.4558",
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
label: "Coventry, United Kingdom",
|
|
547
|
+
value: "eu.gb.*.4562",
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
label: "London, United Kingdom",
|
|
551
|
+
value: "eu.gb.*.4573",
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
label: "Edinburgh, United Kingdom",
|
|
555
|
+
value: "eu.gb.*.4574",
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
label: "Edinburgh, United Kingdom",
|
|
559
|
+
value: "eu.gb.*.4579",
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
label: "Glasgow, United Kingdom",
|
|
563
|
+
value: "eu.gb.*.4580",
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
label: "Gloucester, United Kingdom",
|
|
567
|
+
value: "eu.gb.*.4582",
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
label: "Guildford, United Kingdom",
|
|
571
|
+
value: "eu.gb.*.4582",
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
label: "Harrow, United Kingdom",
|
|
575
|
+
value: "eu.gb.*.4583",
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
label: "Hemel Hempstead, United Kingdom",
|
|
579
|
+
value: "eu.gb.*.4586",
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
label: "Hemel Hempstead, United Kingdom",
|
|
583
|
+
value: "eu.gb.*.4586",
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
label: "Kingston upon Thames, United Kingdom",
|
|
587
|
+
value: "eu.gb.*.4597",
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
label: "Kingston upon Thames, United Kingdom",
|
|
591
|
+
value: "eu.gb.*.4603",
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
label: "Leicester, United Kingdom",
|
|
595
|
+
value: "eu.gb.*.4606",
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
label: "Leeds, United Kingdom",
|
|
599
|
+
value: "eu.gb.*.4608",
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
label: "Manchester, United Kingdom",
|
|
603
|
+
value: "eu.gb.*.4610",
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
label: "Milton Keynes, United Kingdom",
|
|
607
|
+
value: "eu.gb.*.4612",
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
label: "Newcastle upon Tyne, United Kingdom",
|
|
611
|
+
value: "eu.gb.*.4613",
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
label: "Nottingham, United Kingdom",
|
|
615
|
+
value: "eu.gb.*.4614",
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
label: "Northampton, United Kingdom",
|
|
619
|
+
value: "eu.gb.*.4618",
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
label: "Portsmouth, United Kingdom",
|
|
623
|
+
value: "eu.gb.*.4623",
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
label: "Reading, United Kingdom",
|
|
627
|
+
value: "eu.gb.*.4625",
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
label: "Redhill, United Kingdom",
|
|
631
|
+
value: "eu.gb.*.4626",
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
label: "Sheffield, United Kingdom",
|
|
635
|
+
value: "eu.gb.*.4628",
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
label: "Slough, United Kingdom",
|
|
639
|
+
value: "eu.gb.*.4632",
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
label: "Southampton, United Kingdom",
|
|
643
|
+
value: "eu.gb.*.4635",
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
label: "Tonbridge, United Kingdom",
|
|
647
|
+
value: "eu.gb.*.4644",
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
label: "Twickenham, United Kingdom",
|
|
651
|
+
value: "eu.gb.*.4648",
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
label: "Greece",
|
|
655
|
+
value: "eu.gr",
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
label: "Croatia",
|
|
659
|
+
value: "eu.hr",
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
label: "Hungary",
|
|
663
|
+
value: "eu.hu",
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
label: "Ireland",
|
|
667
|
+
value: "eu.ie",
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
label: "Italy",
|
|
671
|
+
value: "eu.it",
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
label: "Bologna Area, Italy",
|
|
675
|
+
value: "eu.it.*.5587",
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
label: "Milan Area, Italy",
|
|
679
|
+
value: "eu.it.*.5616",
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
label: "Rome Area, Italy",
|
|
683
|
+
value: "eu.it.*.5636",
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
label: "Turin Area, Italy",
|
|
687
|
+
value: "eu.it.*.5652",
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
label: "Venice Area, Italy",
|
|
691
|
+
value: "eu.it.*.5657",
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
label: "Lithuania",
|
|
695
|
+
value: "eu.lt",
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
label: "Netherlands",
|
|
699
|
+
value: "eu.nl",
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
label: "Almere Stad Area, Netherlands",
|
|
703
|
+
value: "eu.nl.*.5663",
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
label: "Amsterdam Area, Netherlands",
|
|
707
|
+
value: "eu.nl.*.5664",
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
label: "Apeldoorn Area, Netherlands",
|
|
711
|
+
value: "eu.nl.*.5665",
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
label: "Eindhoven Area, Netherlands",
|
|
715
|
+
value: "eu.nl.*.5668",
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
label: "Enschede Area, Netherlands",
|
|
719
|
+
value: "eu.nl.*.5669",
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
label: "Groningen Area, Netherlands",
|
|
723
|
+
value: "eu.nl.*.5673",
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
label: "Nijmegen Area, Netherlands",
|
|
727
|
+
value: "eu.nl.*.5681",
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
label: "The Hague Area, Netherlands",
|
|
731
|
+
value: "eu.nl.*.5688",
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
label: "Utrecht Area, Netherlands",
|
|
735
|
+
value: "eu.nl.*.5690",
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
label: "Breda Area, Netherlands",
|
|
739
|
+
value: "eu.nl.*.5906",
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
label: "Tilburg Area, Netherlands",
|
|
743
|
+
value: "eu.nl.*.5907",
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
label: "Rotterdam Area, Netherlands",
|
|
747
|
+
value: "eu.nl.*.5908",
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
label: "Maastricht Area, Netherlands",
|
|
751
|
+
value: "eu.nl.*.7417",
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
label: "Norway",
|
|
755
|
+
value: "eu.no",
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
label: "Poland",
|
|
759
|
+
value: "eu.pl",
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
label: "Portugal",
|
|
763
|
+
value: "eu.pt",
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
label: "Romania",
|
|
767
|
+
value: "eu.ro",
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
label: "Serbia",
|
|
771
|
+
value: "eu.rs",
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
label: "Russian Federation",
|
|
775
|
+
value: "eu.ru",
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
label: "Sweden",
|
|
779
|
+
value: "eu.se",
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
label: "Slovak Republic",
|
|
783
|
+
value: "eu.sk",
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
label: "Turkey",
|
|
787
|
+
value: "eu.tr",
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
label: "Istanbul, Turkey",
|
|
791
|
+
value: "eu.tr.*.7585",
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
label: "Ukraine",
|
|
795
|
+
value: "eu.ua",
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
label: "Latin America",
|
|
799
|
+
value: "la",
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
label: "Argentina",
|
|
803
|
+
value: "la.ar",
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
label: "Bolivia",
|
|
807
|
+
value: "la.bo",
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
label: "Brazil",
|
|
811
|
+
value: "la.br",
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
label: "Acre",
|
|
815
|
+
value: "la.br.ac",
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
label: "Alagoas",
|
|
819
|
+
value: "la.br.al",
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
label: "Amazonas",
|
|
823
|
+
value: "la.br.am",
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
label: "Amapá",
|
|
827
|
+
value: "la.br.ap",
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
label: "Bahia",
|
|
831
|
+
value: "la.br.ba",
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
label: "Ceará",
|
|
835
|
+
value: "la.br.ce",
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
label: "Distrito Federal",
|
|
839
|
+
value: "la.br.df",
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
label: "Espírito Santo",
|
|
843
|
+
value: "la.br.es",
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
label: "Goiás",
|
|
847
|
+
value: "la.br.go",
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
label: "Maranhão",
|
|
851
|
+
value: "la.br.ma",
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
label: "Minas Gerais",
|
|
855
|
+
value: "la.br.mg",
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
label: "Belo Horizonte Area, Brazil",
|
|
859
|
+
value: "la.br.mg.6156",
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
label: "Mato Grosso do Sul",
|
|
863
|
+
value: "la.br.ms",
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
label: "Mato Grosso",
|
|
867
|
+
value: "la.br.mt",
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
label: "Pará",
|
|
871
|
+
value: "la.br.pa",
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
label: "Paraíba",
|
|
875
|
+
value: "la.br.pb",
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
label: "Pernambuco",
|
|
879
|
+
value: "la.br.pe",
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
label: "Piauí",
|
|
883
|
+
value: "la.br.pi",
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
label: "Paraná",
|
|
887
|
+
value: "la.br.pr",
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
label: "Curitiba Area, Brazil",
|
|
891
|
+
value: "la.br.pr.6399",
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
label: "Rio de Janeiro",
|
|
895
|
+
value: "la.br.rj",
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
label: "Rio de Janeiro Area, Brazil",
|
|
899
|
+
value: "la.br.rj.6034",
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
label: "Rio Grande do Norte",
|
|
903
|
+
value: "la.br.rn",
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
label: "Rondônia",
|
|
907
|
+
value: "la.br.ro",
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
label: "Roraima",
|
|
911
|
+
value: "la.br.rr",
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
label: "Rio Grande do Sul",
|
|
915
|
+
value: "la.br.rs",
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
label: "Porto Alegre Area, Brazil",
|
|
919
|
+
value: "la.br.rs.6467",
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
label: "Santa Catarina",
|
|
923
|
+
value: "la.br.sc",
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
label: "Sergipe",
|
|
927
|
+
value: "la.br.se",
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
label: "São Paulo",
|
|
931
|
+
value: "la.br.sp",
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
label: "Campinas Area, Brazil",
|
|
935
|
+
value: "la.br.sp.6104",
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
label: "São Paulo Area, Brazil",
|
|
939
|
+
value: "la.br.sp.6368",
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
label: "Tocantins",
|
|
943
|
+
value: "la.br.to",
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
label: "Chile",
|
|
947
|
+
value: "la.cl",
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
label: "Colombia",
|
|
951
|
+
value: "la.co",
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
label: "Costa Rica",
|
|
955
|
+
value: "la.cr",
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
label: "Dominican Republic",
|
|
959
|
+
value: "la.do",
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
label: "Ecuador",
|
|
963
|
+
value: "la.ec",
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
label: "Guatemala",
|
|
967
|
+
value: "la.gt",
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
label: "Mexico",
|
|
971
|
+
value: "la.mx",
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
label: "Mexico City Area, Mexico",
|
|
975
|
+
value: "la.mx.*.5921",
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
label: "Naucalpan de Juárez Area, Mexico",
|
|
979
|
+
value: "la.mx.*.5955",
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
label: "Panama",
|
|
983
|
+
value: "la.pa",
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
label: "Peru",
|
|
987
|
+
value: "la.pe",
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
label: "Puerto Rico",
|
|
991
|
+
value: "la.pr",
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
label: "Trinidad and Tobago",
|
|
995
|
+
value: "la.tt",
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
label: "Uruguay",
|
|
999
|
+
value: "la.uy",
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
label: "Venezuela",
|
|
1003
|
+
value: "la.ve",
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
label: "Middle East",
|
|
1007
|
+
value: "me",
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
label: "United Arab Emirates",
|
|
1011
|
+
value: "me.ae",
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
label: "Bahrain",
|
|
1015
|
+
value: "me.bh",
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
label: "Israel",
|
|
1019
|
+
value: "me.il",
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
label: "Jordan",
|
|
1023
|
+
value: "me.jo",
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
label: "Kuwait",
|
|
1027
|
+
value: "me.kw",
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
label: "Pakistan",
|
|
1031
|
+
value: "me.pk",
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
label: "Qatar",
|
|
1035
|
+
value: "me.qa",
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
label: "Saudi Arabia",
|
|
1039
|
+
value: "me.sa",
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
label: "North America",
|
|
1043
|
+
value: "na",
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
label: "Canada",
|
|
1047
|
+
value: "na.ca",
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
label: "Alberta",
|
|
1051
|
+
value: "na.ca.ab",
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
label: "Edmonton, Canada Area",
|
|
1055
|
+
value: "na.ca.ab.4872",
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
label: "Calgary, Canada Area",
|
|
1059
|
+
value: "na.ca.ab.4882",
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
label: "British Columbia",
|
|
1063
|
+
value: "na.ca.bc",
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
label: "British Columbia, Canada",
|
|
1067
|
+
value: "na.ca.bc.4873",
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
label: "Vancouver, Canada Area",
|
|
1071
|
+
value: "na.ca.bc.4880",
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
label: "Manitoba",
|
|
1075
|
+
value: "na.ca.mb",
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
label: "New Brunswick",
|
|
1079
|
+
value: "na.ca.nb",
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
label: "Newfoundland And Labrador",
|
|
1083
|
+
value: "na.ca.nl",
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
label: "Nova Scotia",
|
|
1087
|
+
value: "na.ca.ns",
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
label: "Halifax, Canada Area",
|
|
1091
|
+
value: "na.ca.ns.4874",
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
label: "Northwest Territories",
|
|
1095
|
+
value: "na.ca.nt",
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
label: "Nunavut",
|
|
1099
|
+
value: "na.ca.nu",
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
label: "Ontario",
|
|
1103
|
+
value: "na.ca.on",
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
label: "Ontario, Canada",
|
|
1107
|
+
value: "na.ca.on.4864",
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
label: "Kitchener, Canada Area",
|
|
1111
|
+
value: "na.ca.on.4865",
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
label: "London, Canada Area",
|
|
1115
|
+
value: "na.ca.on.4869",
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
label: "Toronto, Canada Area",
|
|
1119
|
+
value: "na.ca.on.4876",
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
label: "Ottawa, Canada Area",
|
|
1123
|
+
value: "na.ca.on.4884",
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
label: "Prince Edward Island",
|
|
1127
|
+
value: "na.ca.pe",
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
label: "Quebec",
|
|
1131
|
+
value: "na.ca.qc",
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
label: "Montreal, Canada Area",
|
|
1135
|
+
value: "na.ca.qc.4863",
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
label: "Winnipeg, Canada Area",
|
|
1139
|
+
value: "na.ca.qc.4866",
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
label: "Quebec, Canada",
|
|
1143
|
+
value: "na.ca.qc.4875",
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
label: "Saskatchewan",
|
|
1147
|
+
value: "na.ca.sk",
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
label: "Yukon",
|
|
1151
|
+
value: "na.ca.yt",
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
label: "United States",
|
|
1155
|
+
value: "na.us",
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
label: "Alaska",
|
|
1159
|
+
value: "na.us.ak",
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
label: "Anchorage, Alaska Area",
|
|
1163
|
+
value: "na.us.ak.38",
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
label: "Alabama",
|
|
1167
|
+
value: "na.us.al",
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
label: "Birmingham, Alabama Area",
|
|
1171
|
+
value: "na.us.al.100",
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
label: "Huntsville, Alabama Area",
|
|
1175
|
+
value: "na.us.al.344",
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
label: "Mobile, Alabama Area",
|
|
1179
|
+
value: "na.us.al.516",
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
label: "Arkansas",
|
|
1183
|
+
value: "na.us.ar",
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
label: "Fayetteville, Arkansas Area",
|
|
1187
|
+
value: "na.us.ar.258",
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
label: "Little Rock, Arkansas Area",
|
|
1191
|
+
value: "na.us.ar.440",
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
label: "Arizona",
|
|
1195
|
+
value: "na.us.az",
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
label: "Phoenix, Arizona Area",
|
|
1199
|
+
value: "na.us.az.620",
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
label: "Tucson, Arizona Area",
|
|
1203
|
+
value: "na.us.az.852",
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
label: "California",
|
|
1207
|
+
value: "na.us.ca",
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
label: "Fresno, California Area",
|
|
1211
|
+
value: "na.us.ca.284",
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
label: "Greater Los Angeles Area",
|
|
1215
|
+
value: "na.us.ca.49",
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
label: "Orange County, California Area",
|
|
1219
|
+
value: "na.us.ca.51",
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
label: "Salinas, California Area",
|
|
1223
|
+
value: "na.us.ca.712",
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
label: "Greater San Diego Area",
|
|
1227
|
+
value: "na.us.ca.732",
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
label: "Santa Barbara, California Area",
|
|
1231
|
+
value: "na.us.ca.748",
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
label: "Stockton, California Area",
|
|
1235
|
+
value: "na.us.ca.812",
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
label: "Sacramento, California Area",
|
|
1239
|
+
value: "na.us.ca.82",
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
label: "San Francisco Bay Area",
|
|
1243
|
+
value: "na.us.ca.84",
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
label: "Colorado",
|
|
1247
|
+
value: "na.us.co",
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
label: "Colorado Springs, Colorado Area",
|
|
1251
|
+
value: "na.us.co.172",
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
label: "Fort Collins, Colorado Area",
|
|
1255
|
+
value: "na.us.co.267",
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
label: "Greater Denver Area",
|
|
1259
|
+
value: "na.us.co.34",
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
label: "Connecticut",
|
|
1263
|
+
value: "na.us.ct",
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
label: "Hartford, Connecticut Area",
|
|
1267
|
+
value: "na.us.ct.327",
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
label: "New London/Norwich, Connecticut Area",
|
|
1271
|
+
value: "na.us.ct.552",
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
label: "District Of Columbia",
|
|
1275
|
+
value: "na.us.dc",
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
label: "Washington D.C. Metro Area",
|
|
1279
|
+
value: "na.us.dc.97",
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
label: "Delaware",
|
|
1283
|
+
value: "na.us.de",
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
label: "Florida",
|
|
1287
|
+
value: "na.us.fl",
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
label: "Daytona Beach, Florida Area",
|
|
1291
|
+
value: "na.us.fl.202",
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
label: "Fort Myers, Florida Area",
|
|
1295
|
+
value: "na.us.fl.270",
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
label: "Fort Pierce, Florida Area",
|
|
1299
|
+
value: "na.us.fl.271",
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
label: "Gainesville, Florida Area",
|
|
1303
|
+
value: "na.us.fl.290",
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
label: "Jacksonville, Florida Area",
|
|
1307
|
+
value: "na.us.fl.359",
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
label: "Lakeland, Florida Area",
|
|
1311
|
+
value: "na.us.fl.398",
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
label: "Melbourne, Florida Area",
|
|
1315
|
+
value: "na.us.fl.490",
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
label: "Miami/Fort Lauderdale Area",
|
|
1319
|
+
value: "na.us.fl.56",
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
label: "Orlando, Florida Area",
|
|
1323
|
+
value: "na.us.fl.596",
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
label: "Sarasota, Florida Area",
|
|
1327
|
+
value: "na.us.fl.751",
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
label: "Tallahassee, Florida Area",
|
|
1331
|
+
value: "na.us.fl.824",
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
label: "Tampa/St. Petersburg, Florida Area",
|
|
1335
|
+
value: "na.us.fl.828",
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
label: "West Palm Beach, Florida Area",
|
|
1339
|
+
value: "na.us.fl.896",
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
label: "Georgia",
|
|
1343
|
+
value: "na.us.ga",
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
label: "Greater Atlanta Area",
|
|
1347
|
+
value: "na.us.ga.52",
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
label: "Augusta, Georgia Area",
|
|
1351
|
+
value: "na.us.ga.60",
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
label: "Savannah, Georgia Area",
|
|
1355
|
+
value: "na.us.ga.752",
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
label: "Hawaii",
|
|
1359
|
+
value: "na.us.hi",
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
label: "Hawaiian Islands",
|
|
1363
|
+
value: "na.us.hi.332",
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
label: "Iowa",
|
|
1367
|
+
value: "na.us.ia",
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
label: "Davenport, Iowa Area",
|
|
1371
|
+
value: "na.us.ia.196",
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
label: "Des Moines, Iowa Area",
|
|
1375
|
+
value: "na.us.ia.212",
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
label: "Idaho",
|
|
1379
|
+
value: "na.us.id",
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
label: "Boise, Idaho Area",
|
|
1383
|
+
value: "na.us.id.108",
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
label: "Illinois",
|
|
1387
|
+
value: "na.us.il",
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
label: "Greater Chicago Area",
|
|
1391
|
+
value: "na.us.il.14",
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
label: "Urbana-Champaign, Illinois Area",
|
|
1395
|
+
value: "na.us.il.140",
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
label: "Peoria, Illinois Area",
|
|
1399
|
+
value: "na.us.il.612",
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
label: "Rockford, Illinois Area",
|
|
1403
|
+
value: "na.us.il.688",
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
label: "Indiana",
|
|
1407
|
+
value: "na.us.in",
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
label: "Evansville, Indiana Area",
|
|
1411
|
+
value: "na.us.in.244",
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
label: "Fort Wayne, Indiana Area",
|
|
1415
|
+
value: "na.us.in.276",
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
label: "Indianapolis, Indiana Area",
|
|
1419
|
+
value: "na.us.in.348",
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
label: "Kansas",
|
|
1423
|
+
value: "na.us.ks",
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
label: "Wichita, Kansas Area",
|
|
1427
|
+
value: "na.us.ks.904",
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
label: "Kentucky",
|
|
1431
|
+
value: "na.us.ky",
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
label: "Lexington, Kentucky Area",
|
|
1435
|
+
value: "na.us.ky.428",
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
label: "Louisville, Kentucky Area",
|
|
1439
|
+
value: "na.us.ky.452",
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
label: "Louisiana",
|
|
1443
|
+
value: "na.us.la",
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
label: "Greater New Orleans Area",
|
|
1447
|
+
value: "na.us.la.556",
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
label: "Baton Rouge, Louisiana Area",
|
|
1451
|
+
value: "na.us.la.76",
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
label: "Massachusetts",
|
|
1455
|
+
value: "na.us.ma",
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
label: "Greater Boston Area",
|
|
1459
|
+
value: "na.us.ma.7",
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
label: "Springfield, Massachusetts Area",
|
|
1463
|
+
value: "na.us.ma.800",
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
label: "Maryland",
|
|
1467
|
+
value: "na.us.md",
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
label: "Baltimore, Maryland Area",
|
|
1471
|
+
value: "na.us.md.7416",
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
label: "Maine",
|
|
1475
|
+
value: "na.us.me",
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
label: "Portland, Maine Area",
|
|
1479
|
+
value: "na.us.me.640",
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
label: "Michigan",
|
|
1483
|
+
value: "na.us.mi",
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
label: "Greater Grand Rapids, Michigan Area",
|
|
1487
|
+
value: "na.us.mi.300",
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
label: "Greater Detroit Area",
|
|
1491
|
+
value: "na.us.mi.35",
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
label: "Kalamazoo, Michigan Area",
|
|
1495
|
+
value: "na.us.mi.372",
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
label: "Lansing, Michigan Area",
|
|
1499
|
+
value: "na.us.mi.404",
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
label: "Saginaw, Michigan Area",
|
|
1503
|
+
value: "na.us.mi.696",
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
label: "Minnesota",
|
|
1507
|
+
value: "na.us.mn",
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
label: "Greater Minneapolis-St. Paul Area",
|
|
1511
|
+
value: "na.us.mn.512",
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
label: "Missouri",
|
|
1515
|
+
value: "na.us.mo",
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
label: "Columbia, Missouri Area",
|
|
1519
|
+
value: "na.us.mo.174",
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
label: "Kansas City, Missouri Area",
|
|
1523
|
+
value: "na.us.mo.376",
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
label: "Greater St. Louis Area",
|
|
1527
|
+
value: "na.us.mo.704",
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
label: "Springfield, Missouri Area",
|
|
1531
|
+
value: "na.us.mo.792",
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
label: "Mississippi",
|
|
1535
|
+
value: "na.us.ms",
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
label: "Jackson, Mississippi Area",
|
|
1539
|
+
value: "na.us.ms.356",
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
label: "Montana",
|
|
1543
|
+
value: "na.us.mt",
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
label: "North Carolina",
|
|
1547
|
+
value: "na.us.nc",
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
label: "Charlotte, North Carolina Area",
|
|
1551
|
+
value: "na.us.nc.152",
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
label: "Greensboro/Winston-Salem, North Carolina Area",
|
|
1555
|
+
value: "na.us.nc.312",
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
label: "Asheville, North Carolina Area",
|
|
1559
|
+
value: "na.us.nc.48",
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
label: "Raleigh-Durham, North Carolina Area",
|
|
1563
|
+
value: "na.us.nc.664",
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
label: "Wilmington, North Carolina Area",
|
|
1567
|
+
value: "na.us.nc.920",
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
label: "North Dakota",
|
|
1571
|
+
value: "na.us.nd",
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
label: "Lincoln, Nebraska Area",
|
|
1575
|
+
value: "na.us.ne.436",
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
label: "Greater Omaha Area",
|
|
1579
|
+
value: "na.us.ne.592",
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
label: "New Hampshire",
|
|
1583
|
+
value: "na.us.nh",
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
label: "New Jersey",
|
|
1587
|
+
value: "na.us.nj",
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
label: "New Mexico",
|
|
1591
|
+
value: "na.us.nm",
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
label: "Albuquerque, New Mexico Area",
|
|
1595
|
+
value: "na.us.nm.20",
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
label: "Nevada",
|
|
1599
|
+
value: "na.us.nv",
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
label: "Las Vegas, Nevada Area",
|
|
1603
|
+
value: "na.us.nv.412",
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
label: "Reno, Nevada Area",
|
|
1607
|
+
value: "na.us.nv.672",
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
label: "New York",
|
|
1611
|
+
value: "na.us.ny",
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
label: "Buffalo/Niagara, New York Area",
|
|
1615
|
+
value: "na.us.ny.128",
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
label: "Albany, New York Area",
|
|
1619
|
+
value: "na.us.ny.16",
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
label: "Rochester, New York Area",
|
|
1623
|
+
value: "na.us.ny.684",
|
|
1624
|
+
},
|
|
1625
|
+
{
|
|
1626
|
+
label: "Greater New York City Area",
|
|
1627
|
+
value: "na.us.ny.70",
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
label: "Syracuse, New York Area",
|
|
1631
|
+
value: "na.us.ny.816",
|
|
1632
|
+
},
|
|
1633
|
+
{
|
|
1634
|
+
label: "Ithaca, New York Area",
|
|
1635
|
+
value: "na.us.ny.96",
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
label: "Ohio",
|
|
1639
|
+
value: "na.us.oh",
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
label: "Columbus, Ohio Area",
|
|
1643
|
+
value: "na.us.oh.184",
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
label: "Dayton, Ohio Area",
|
|
1647
|
+
value: "na.us.oh.200",
|
|
1648
|
+
},
|
|
1649
|
+
{
|
|
1650
|
+
label: "Dayton, Ohio Area",
|
|
1651
|
+
value: "na.us.oh.200",
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
label: "Cincinnati Area",
|
|
1655
|
+
value: "na.us.oh.21",
|
|
1656
|
+
},
|
|
1657
|
+
{
|
|
1658
|
+
label: "Cleveland/Akron, Ohio Area",
|
|
1659
|
+
value: "na.us.oh.28",
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
label: "Toledo, Ohio Area",
|
|
1663
|
+
value: "na.us.oh.840",
|
|
1664
|
+
},
|
|
1665
|
+
{
|
|
1666
|
+
label: "Oklahoma",
|
|
1667
|
+
value: "na.us.ok",
|
|
1668
|
+
},
|
|
1669
|
+
{
|
|
1670
|
+
label: "Oklahoma City, Oklahoma Area",
|
|
1671
|
+
value: "na.us.ok.588",
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
label: "Tulsa, Oklahoma Area",
|
|
1675
|
+
value: "na.us.ok.856",
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
label: "Oregon",
|
|
1679
|
+
value: "na.us.or",
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
label: "Eugene, Oregon Area",
|
|
1683
|
+
value: "na.us.or.240",
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
label: "Portland, Oregon Area",
|
|
1687
|
+
value: "na.us.or.79",
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
label: "Pennsylvania",
|
|
1691
|
+
value: "na.us.pa",
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
label: "Allentown, Pennsylvania Area",
|
|
1695
|
+
value: "na.us.pa.24",
|
|
1696
|
+
},
|
|
1697
|
+
{
|
|
1698
|
+
label: "Harrisburg, Pennsylvania Area",
|
|
1699
|
+
value: "na.us.pa.324",
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
label: "Lancaster, Pennsylvania Area",
|
|
1703
|
+
value: "na.us.pa.400",
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
label: "Greater Pittsburgh Area",
|
|
1707
|
+
value: "na.us.pa.628",
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
label: "Scranton, Pennsylvania Area",
|
|
1711
|
+
value: "na.us.pa.756",
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
label: "Greater Philadelphia Area",
|
|
1715
|
+
value: "na.us.pa.77",
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
label: "Rhode Island",
|
|
1719
|
+
value: "na.us.ri",
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
label: "Providence, Rhode Island Area",
|
|
1723
|
+
value: "na.us.ri.648",
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
label: "South Carolina",
|
|
1727
|
+
value: "na.us.sc",
|
|
1728
|
+
},
|
|
1729
|
+
{
|
|
1730
|
+
label: "Charleston, South Carolina Area",
|
|
1731
|
+
value: "na.us.sc.144",
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
label: "Columbia, South Carolina Area",
|
|
1735
|
+
value: "na.us.sc.176",
|
|
1736
|
+
},
|
|
1737
|
+
{
|
|
1738
|
+
label: "Greenville, South Carolina Area",
|
|
1739
|
+
value: "na.us.sc.316",
|
|
1740
|
+
},
|
|
1741
|
+
{
|
|
1742
|
+
label: "South Dakota",
|
|
1743
|
+
value: "na.us.sd",
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
label: "Sioux Falls, South Dakota Area",
|
|
1747
|
+
value: "na.us.sd.776",
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
label: "Tennessee",
|
|
1751
|
+
value: "na.us.tn",
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
label: "Chattanooga, Tennessee Area",
|
|
1755
|
+
value: "na.us.tn.156",
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
label: "Johnson City, Tennessee Area",
|
|
1759
|
+
value: "na.us.tn.366",
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
label: "Knoxville, Tennessee Area",
|
|
1763
|
+
value: "na.us.tn.384",
|
|
1764
|
+
},
|
|
1765
|
+
{
|
|
1766
|
+
label: "Greater Memphis Area",
|
|
1767
|
+
value: "na.us.tn.492",
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
label: "Greater Nashville Area",
|
|
1771
|
+
value: "na.us.tn.536",
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
label: "Texas",
|
|
1775
|
+
value: "na.us.tx",
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
label: "El Paso, Texas Area",
|
|
1779
|
+
value: "na.us.tx.232",
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
label: "Dallas/Fort Worth Area",
|
|
1783
|
+
value: "na.us.tx.31",
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
label: "Houston, Texas Area",
|
|
1787
|
+
value: "na.us.tx.42",
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
label: "Austin, Texas Area",
|
|
1791
|
+
value: "na.us.tx.64",
|
|
1792
|
+
},
|
|
1793
|
+
{
|
|
1794
|
+
label: "San Antonio, Texas Area",
|
|
1795
|
+
value: "na.us.tx.724",
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
label: "Utah",
|
|
1799
|
+
value: "na.us.ut",
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
label: "Provo, Utah Area",
|
|
1803
|
+
value: "na.us.ut.652",
|
|
1804
|
+
},
|
|
1805
|
+
{
|
|
1806
|
+
label: "Greater Salt Lake City Area",
|
|
1807
|
+
value: "na.us.ut.716",
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
label: "Virginia",
|
|
1811
|
+
value: "na.us.va",
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
label: "Charlottesville, Virginia Area",
|
|
1815
|
+
value: "na.us.va.154",
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
label: "Norfolk, Virginia Area",
|
|
1819
|
+
value: "na.us.va.572",
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
label: "Richmond, Virginia Area",
|
|
1823
|
+
value: "na.us.va.676",
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
label: "Roanoke, Virginia Area",
|
|
1827
|
+
value: "na.us.va.680",
|
|
1828
|
+
},
|
|
1829
|
+
{
|
|
1830
|
+
label: "Vermont",
|
|
1831
|
+
value: "na.us.vt",
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
label: "Burlington, Vermont Area",
|
|
1835
|
+
value: "na.us.vt.130",
|
|
1836
|
+
},
|
|
1837
|
+
{
|
|
1838
|
+
label: "Washington",
|
|
1839
|
+
value: "na.us.wa",
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
label: "Spokane, Washington Area",
|
|
1843
|
+
value: "na.us.wa.784",
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
label: "Greater Seattle Area",
|
|
1847
|
+
value: "na.us.wa.91",
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
label: "Wisconsin",
|
|
1851
|
+
value: "na.us.wi",
|
|
1852
|
+
},
|
|
1853
|
+
{
|
|
1854
|
+
label: "Green Bay, Wisconsin Area",
|
|
1855
|
+
value: "na.us.wi.308",
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
label: "Oshkosh, Wisconsin Area",
|
|
1859
|
+
value: "na.us.wi.46",
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
label: "Madison, Wisconsin Area",
|
|
1863
|
+
value: "na.us.wi.472",
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
label: "Greater Milwaukee Area",
|
|
1867
|
+
value: "na.us.wi.63",
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
label: "West Virginia",
|
|
1871
|
+
value: "na.us.wv",
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
label: "Wyoming",
|
|
1875
|
+
value: "na.us.wy",
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
label: "Oceania",
|
|
1879
|
+
value: "oc",
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
label: "Australia",
|
|
1883
|
+
value: "oc.au",
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
label: "Adelaide Area, Australia",
|
|
1887
|
+
value: "oc.au.*.4886",
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
label: "Canberra Area, Australia",
|
|
1891
|
+
value: "oc.au.*.4893",
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
label: "Melbourne Area, Australia",
|
|
1895
|
+
value: "oc.au.*.4900",
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
label: "Perth Area, Australia",
|
|
1899
|
+
value: "oc.au.*.4905",
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
label: "Brisbane Area, Australia",
|
|
1903
|
+
value: "oc.au.*.4909",
|
|
1904
|
+
},
|
|
1905
|
+
{
|
|
1906
|
+
label: "Sydney Area, Australia",
|
|
1907
|
+
value: "oc.au.*.4910",
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
label: "New Zealand",
|
|
1911
|
+
value: "oc.nz",
|
|
1912
|
+
},
|
|
1913
|
+
];
|
|
1914
|
+
|
|
1915
|
+
export const INDUSTRY_OPTIONS = [
|
|
1916
|
+
{
|
|
1917
|
+
label: "Agriculture - Farming",
|
|
1918
|
+
value: "63",
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
label: "Agriculture - Ranching",
|
|
1922
|
+
value: "64",
|
|
1923
|
+
},
|
|
1924
|
+
{
|
|
1925
|
+
label: "Agriculture - Dairy",
|
|
1926
|
+
value: "65",
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
label: "Agriculture - Fishery",
|
|
1930
|
+
value: "66",
|
|
1931
|
+
},
|
|
1932
|
+
{
|
|
1933
|
+
label: "Arts - Motion Pictures and Film",
|
|
1934
|
+
value: "35",
|
|
1935
|
+
},
|
|
1936
|
+
{
|
|
1937
|
+
label: "Arts - Museums and Institutions",
|
|
1938
|
+
value: "37",
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
label: "Arts - Fine Art",
|
|
1942
|
+
value: "38",
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
label: "Arts - Performing Arts",
|
|
1946
|
+
value: "39",
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
label: "Arts - Design",
|
|
1950
|
+
value: "99",
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
label: "Arts - Arts and Crafts",
|
|
1954
|
+
value: "111",
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
label: "Arts - Music",
|
|
1958
|
+
value: "115",
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
label: "Arts - Photography",
|
|
1962
|
+
value: "136",
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
label: "Arts - Graphic Design",
|
|
1966
|
+
value: "140",
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
label: "Construction - Construction",
|
|
1970
|
+
value: "48",
|
|
1971
|
+
},
|
|
1972
|
+
{
|
|
1973
|
+
label: "Construction - Building Materials",
|
|
1974
|
+
value: "49",
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
label: "Construction - Architecture & Planning",
|
|
1978
|
+
value: "50",
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
label: "Construction - Civil Engineering",
|
|
1982
|
+
value: "51",
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
label: "Consumer Goods - Cosmetics",
|
|
1986
|
+
value: "18",
|
|
1987
|
+
},
|
|
1988
|
+
{
|
|
1989
|
+
label: "Consumer Goods - Apparel & Fashion",
|
|
1990
|
+
value: "19",
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
label: "Consumer Goods - Sporting Goods",
|
|
1994
|
+
value: "20",
|
|
1995
|
+
},
|
|
1996
|
+
{
|
|
1997
|
+
label: "Consumer Goods - Tobacco",
|
|
1998
|
+
value: "21",
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
label: "Consumer Goods - Supermarkets",
|
|
2002
|
+
value: "22",
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
label: "Consumer Goods - Food Production",
|
|
2006
|
+
value: "23",
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
label: "Consumer Goods - Consumer Electronics",
|
|
2010
|
+
value: "24",
|
|
2011
|
+
},
|
|
2012
|
+
{
|
|
2013
|
+
label: "Consumer Goods - Consumer Goods",
|
|
2014
|
+
value: "25",
|
|
2015
|
+
},
|
|
2016
|
+
{
|
|
2017
|
+
label: "Consumer Goods - Furniture",
|
|
2018
|
+
value: "26",
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
label: "Consumer Goods - Retail",
|
|
2022
|
+
value: "27",
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
label: "Consumer Goods - Wholesale",
|
|
2026
|
+
value: "133",
|
|
2027
|
+
},
|
|
2028
|
+
{
|
|
2029
|
+
label: "Consumer Goods - Import and Export",
|
|
2030
|
+
value: "134",
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
label: "Consumer Goods - Wine and Spirits",
|
|
2034
|
+
value: "142",
|
|
2035
|
+
},
|
|
2036
|
+
{
|
|
2037
|
+
label: "Consumer Goods - Luxury Goods & Jewelry",
|
|
2038
|
+
value: "143",
|
|
2039
|
+
},
|
|
2040
|
+
{
|
|
2041
|
+
label: "Corporate - Management Consulting",
|
|
2042
|
+
value: "11",
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
label: "Corporate - Marketing and Advertising",
|
|
2046
|
+
value: "80",
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
label: "Corporate - Market Research",
|
|
2050
|
+
value: "97",
|
|
2051
|
+
},
|
|
2052
|
+
{
|
|
2053
|
+
label: "Corporate - Public Relations and Communications",
|
|
2054
|
+
value: "98",
|
|
2055
|
+
},
|
|
2056
|
+
{
|
|
2057
|
+
label: "Corporate - Staffing and Recruiting",
|
|
2058
|
+
value: "104",
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
label: "Corporate - Professional Training & Coaching",
|
|
2062
|
+
value: "105",
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
label: "Corporate - Security and Investigations",
|
|
2066
|
+
value: "121",
|
|
2067
|
+
},
|
|
2068
|
+
{
|
|
2069
|
+
label: "Corporate - Facilities Services",
|
|
2070
|
+
value: "122",
|
|
2071
|
+
},
|
|
2072
|
+
{
|
|
2073
|
+
label: "Corporate - Outsourcing/Offshoring",
|
|
2074
|
+
value: "123",
|
|
2075
|
+
},
|
|
2076
|
+
{
|
|
2077
|
+
label: "Corporate - Human Resources",
|
|
2078
|
+
value: "137",
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
label: "Corporate - Business Supplies and Equipment",
|
|
2082
|
+
value: "138",
|
|
2083
|
+
},
|
|
2084
|
+
{
|
|
2085
|
+
label: "Educational - Primary/Secondary Education",
|
|
2086
|
+
value: "67",
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
label: "Educational - Higher Education",
|
|
2090
|
+
value: "68",
|
|
2091
|
+
},
|
|
2092
|
+
{
|
|
2093
|
+
label: "Educational - Education Management",
|
|
2094
|
+
value: "69",
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
label: "Educational - Research",
|
|
2098
|
+
value: "70",
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
label: "Educational - E-Learning",
|
|
2102
|
+
value: "132",
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
label: "Finance - Banking",
|
|
2106
|
+
value: "41",
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
label: "Finance - Insurance",
|
|
2110
|
+
value: "42",
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
label: "Finance - Financial Services",
|
|
2114
|
+
value: "43",
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
label: "Finance - Real Estate",
|
|
2118
|
+
value: "44",
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
label: "Finance - Investment Banking",
|
|
2122
|
+
value: "45",
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
label: "Finance - Investment Management",
|
|
2126
|
+
value: "46",
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
label: "Finance - Accounting",
|
|
2130
|
+
value: "47",
|
|
2131
|
+
},
|
|
2132
|
+
{
|
|
2133
|
+
label: "Finance - Venture Capital & Private Equity",
|
|
2134
|
+
value: "106",
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
label: "Finance - Commercial Real Estate",
|
|
2138
|
+
value: "128",
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
label: "Finance - Capital Markets",
|
|
2142
|
+
value: "129",
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
label: "Government - Military",
|
|
2146
|
+
value: "71",
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
label: "Government - Legislative Office",
|
|
2150
|
+
value: "72",
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
label: "Government - Judiciary",
|
|
2154
|
+
value: "73",
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
label: "Government - International Affairs",
|
|
2158
|
+
value: "74",
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
label: "Government - Government Administration",
|
|
2162
|
+
value: "75",
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
label: "Government - Executive Office",
|
|
2166
|
+
value: "76",
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
label: "Government - Law Enforcement",
|
|
2170
|
+
value: "77",
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
label: "Government - Public Safety",
|
|
2174
|
+
value: "78",
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
label: "Government - Public Policy",
|
|
2178
|
+
value: "79",
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
label: "Government - Political Organization",
|
|
2182
|
+
value: "107",
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
label: "Government - Government Relations",
|
|
2186
|
+
value: "148",
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
label: "High Tech - Defense & Space",
|
|
2190
|
+
value: "1",
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
label: "High Tech - Computer Hardware",
|
|
2194
|
+
value: "3",
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
label: "High Tech - Computer Software",
|
|
2198
|
+
value: "4",
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
label: "High Tech - Computer Networking",
|
|
2202
|
+
value: "5",
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
label: "High Tech - Internet",
|
|
2206
|
+
value: "6",
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
label: "High Tech - Semiconductors",
|
|
2210
|
+
value: "7",
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
label: "High Tech - Telecommunications",
|
|
2214
|
+
value: "8",
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
label: "High Tech - Information Technology and Services",
|
|
2218
|
+
value: "96",
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
label: "High Tech - Nanotechnology",
|
|
2222
|
+
value: "114",
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
label: "High Tech - Computer & Network Security",
|
|
2226
|
+
value: "118",
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
label: "High Tech - Wireless",
|
|
2230
|
+
value: "119",
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
label: "Legal - Law Practice",
|
|
2234
|
+
value: "9",
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
label: "Legal - Legal Services",
|
|
2238
|
+
value: "10",
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
label: "Legal - Alternative Dispute Resolution",
|
|
2242
|
+
value: "120",
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
label: "Manufacturing - Aviation & Aerospace",
|
|
2246
|
+
value: "52",
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
label: "Manufacturing - Automotive",
|
|
2250
|
+
value: "53",
|
|
2251
|
+
},
|
|
2252
|
+
{
|
|
2253
|
+
label: "Manufacturing - Chemicals",
|
|
2254
|
+
value: "54",
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
label: "Manufacturing - Machinery",
|
|
2258
|
+
value: "55",
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
label: "Manufacturing - Mining & Metals",
|
|
2262
|
+
value: "56",
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
label: "Manufacturing - Oil & Energy",
|
|
2266
|
+
value: "57",
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
label: "Manufacturing - Shipbuilding",
|
|
2270
|
+
value: "58",
|
|
2271
|
+
},
|
|
2272
|
+
{
|
|
2273
|
+
label: "Manufacturing - Utilities",
|
|
2274
|
+
value: "59",
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
label: "Manufacturing - Textiles",
|
|
2278
|
+
value: "60",
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
label: "Manufacturing - Paper & Forest Products",
|
|
2282
|
+
value: "61",
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
label: "Manufacturing - Railroad Manufacture",
|
|
2286
|
+
value: "62",
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
label: "Manufacturing - Electrical/Electronic Manufacturing",
|
|
2290
|
+
value: "112",
|
|
2291
|
+
},
|
|
2292
|
+
{
|
|
2293
|
+
label: "Manufacturing - Plastics",
|
|
2294
|
+
value: "117",
|
|
2295
|
+
},
|
|
2296
|
+
{
|
|
2297
|
+
label: "Manufacturing - Mechanical or Industrial Engineering",
|
|
2298
|
+
value: "135",
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
label: "Manufacturing - Renewables & Environment",
|
|
2302
|
+
value: "144",
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
label: "Manufacturing - Glass, Ceramics & Concrete",
|
|
2306
|
+
value: "145",
|
|
2307
|
+
},
|
|
2308
|
+
{
|
|
2309
|
+
label: "Manufacturing - Packaging and Containers",
|
|
2310
|
+
value: "146",
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
label: "Manufacturing - Industrial Automation",
|
|
2314
|
+
value: "147",
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
label: "Media - Broadcast Media",
|
|
2318
|
+
value: "36",
|
|
2319
|
+
},
|
|
2320
|
+
{
|
|
2321
|
+
label: "Media - Newspapers",
|
|
2322
|
+
value: "81",
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
label: "Media - Publishing",
|
|
2326
|
+
value: "82",
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
label: "Media - Printing",
|
|
2330
|
+
value: "83",
|
|
2331
|
+
},
|
|
2332
|
+
{
|
|
2333
|
+
label: "Media - Writing and Editing",
|
|
2334
|
+
value: "103",
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
label: "Media - Online Media",
|
|
2338
|
+
value: "113",
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
label: "Media - Media Production",
|
|
2342
|
+
value: "126",
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
label: "Media - Animation",
|
|
2346
|
+
value: "127",
|
|
2347
|
+
},
|
|
2348
|
+
{
|
|
2349
|
+
label: "Medical - Biotechnology",
|
|
2350
|
+
value: "12",
|
|
2351
|
+
},
|
|
2352
|
+
{
|
|
2353
|
+
label: "Medical - Medical Practice",
|
|
2354
|
+
value: "13",
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
label: "Medical - Hospital & Health Care",
|
|
2358
|
+
value: "14",
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
label: "Medical - Pharmaceuticals",
|
|
2362
|
+
value: "15",
|
|
2363
|
+
},
|
|
2364
|
+
{
|
|
2365
|
+
label: "Medical - Veterinary",
|
|
2366
|
+
value: "16",
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
label: "Medical - Medical Devices",
|
|
2370
|
+
value: "17",
|
|
2371
|
+
},
|
|
2372
|
+
{
|
|
2373
|
+
label: "Medical - Health, Wellness and Fitness",
|
|
2374
|
+
value: "124",
|
|
2375
|
+
},
|
|
2376
|
+
{
|
|
2377
|
+
label: "Medical - Alternative Medicine",
|
|
2378
|
+
value: "125",
|
|
2379
|
+
},
|
|
2380
|
+
{
|
|
2381
|
+
label: "Medical - Mental Health Care",
|
|
2382
|
+
value: "139",
|
|
2383
|
+
},
|
|
2384
|
+
{
|
|
2385
|
+
label: "Non-profit - Consumer Services",
|
|
2386
|
+
value: "91",
|
|
2387
|
+
},
|
|
2388
|
+
{
|
|
2389
|
+
label: "Non-profit - Non-profit Organization Management",
|
|
2390
|
+
value: "100",
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
label: "Non-profit - Fund-Raising",
|
|
2394
|
+
value: "101",
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
label: "Non-profit - Program Development",
|
|
2398
|
+
value: "102",
|
|
2399
|
+
},
|
|
2400
|
+
{
|
|
2401
|
+
label: "Non-profit - Think Tanks",
|
|
2402
|
+
value: "130",
|
|
2403
|
+
},
|
|
2404
|
+
{
|
|
2405
|
+
label: "Non-profit - Philanthropy",
|
|
2406
|
+
value: "131",
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
label: "Non-profit - International Trade and Development",
|
|
2410
|
+
value: "141",
|
|
2411
|
+
},
|
|
2412
|
+
{
|
|
2413
|
+
label: "Recreational - Entertainment",
|
|
2414
|
+
value: "28",
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
label: "Recreational - Gambling & Casinos",
|
|
2418
|
+
value: "29",
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
label: "Recreational - Leisure, Travel & Tourism",
|
|
2422
|
+
value: "30",
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
label: "Recreational - Hospitality",
|
|
2426
|
+
value: "31",
|
|
2427
|
+
},
|
|
2428
|
+
{
|
|
2429
|
+
label: "Recreational - Restaurants",
|
|
2430
|
+
value: "32",
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
label: "Recreational - Sports",
|
|
2434
|
+
value: "33",
|
|
2435
|
+
},
|
|
2436
|
+
{
|
|
2437
|
+
label: "Recreational - Food & Beverages",
|
|
2438
|
+
value: "34",
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
label: "Recreational - Recreational Facilities and Services",
|
|
2442
|
+
value: "40",
|
|
2443
|
+
},
|
|
2444
|
+
{
|
|
2445
|
+
label: "Recreational - Computer Games",
|
|
2446
|
+
value: "109",
|
|
2447
|
+
},
|
|
2448
|
+
{
|
|
2449
|
+
label: "Recreational - Events Services",
|
|
2450
|
+
value: "110",
|
|
2451
|
+
},
|
|
2452
|
+
{
|
|
2453
|
+
label: "Service - Information Services",
|
|
2454
|
+
value: "84",
|
|
2455
|
+
},
|
|
2456
|
+
{
|
|
2457
|
+
label: "Service - Libraries",
|
|
2458
|
+
value: "85",
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
label: "Service - Environmental Services",
|
|
2462
|
+
value: "86",
|
|
2463
|
+
},
|
|
2464
|
+
{
|
|
2465
|
+
label: "Service - Individual & Family Services",
|
|
2466
|
+
value: "88",
|
|
2467
|
+
},
|
|
2468
|
+
{
|
|
2469
|
+
label: "Service - Religious Institutions",
|
|
2470
|
+
value: "89",
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
label: "Service - Civic & Social Organization",
|
|
2474
|
+
value: "90",
|
|
2475
|
+
},
|
|
2476
|
+
{
|
|
2477
|
+
label: "Service - Translation and Localization",
|
|
2478
|
+
value: "108",
|
|
2479
|
+
},
|
|
2480
|
+
{
|
|
2481
|
+
label: "Transportation - Package/Freight Delivery",
|
|
2482
|
+
value: "87",
|
|
2483
|
+
},
|
|
2484
|
+
{
|
|
2485
|
+
label: "Transportation - Transportation/Trucking/Railroad",
|
|
2486
|
+
value: "92",
|
|
2487
|
+
},
|
|
2488
|
+
{
|
|
2489
|
+
label: "Transportation - Warehousing",
|
|
2490
|
+
value: "93",
|
|
2491
|
+
},
|
|
2492
|
+
{
|
|
2493
|
+
label: "Transportation - Airlines/Aviation",
|
|
2494
|
+
value: "94",
|
|
2495
|
+
},
|
|
2496
|
+
{
|
|
2497
|
+
label: "Transportation - Maritime",
|
|
2498
|
+
value: "95",
|
|
2499
|
+
},
|
|
2500
|
+
{
|
|
2501
|
+
label: "Transportation - Logistics and Supply Chain",
|
|
2502
|
+
value: "116",
|
|
2503
|
+
},
|
|
2504
|
+
];
|
|
2505
|
+
|
|
2506
|
+
export const JOB_FUNCTION_OPTIONS = [
|
|
2507
|
+
{
|
|
2508
|
+
label: "Research",
|
|
2509
|
+
value: "acad",
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
label: "Accounting",
|
|
2513
|
+
value: "acct",
|
|
2514
|
+
},
|
|
2515
|
+
{
|
|
2516
|
+
label: "Administrative",
|
|
2517
|
+
value: "admn",
|
|
2518
|
+
},
|
|
2519
|
+
{
|
|
2520
|
+
label: "Business Development",
|
|
2521
|
+
value: "bd",
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
label: "Purchasing",
|
|
2525
|
+
value: "buy",
|
|
2526
|
+
},
|
|
2527
|
+
{
|
|
2528
|
+
label: "Consulting",
|
|
2529
|
+
value: "cnsl",
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
label: "Arts and Design",
|
|
2533
|
+
value: "cre",
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
label: "Community and Social Services",
|
|
2537
|
+
value: "css",
|
|
2538
|
+
},
|
|
2539
|
+
{
|
|
2540
|
+
label: "Education",
|
|
2541
|
+
value: "edu",
|
|
2542
|
+
},
|
|
2543
|
+
{
|
|
2544
|
+
label: "Engineering",
|
|
2545
|
+
value: "eng",
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
label: "Entrepreneurship",
|
|
2549
|
+
value: "ent",
|
|
2550
|
+
},
|
|
2551
|
+
{
|
|
2552
|
+
label: "Finance",
|
|
2553
|
+
value: "finc",
|
|
2554
|
+
},
|
|
2555
|
+
{
|
|
2556
|
+
label: "Human Resources",
|
|
2557
|
+
value: "hr",
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
label: "Information Technology",
|
|
2561
|
+
value: "it",
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
label: "Legal",
|
|
2565
|
+
value: "lgl",
|
|
2566
|
+
},
|
|
2567
|
+
{
|
|
2568
|
+
label: "Healthcare Services",
|
|
2569
|
+
value: "med",
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
label: "Marketing",
|
|
2573
|
+
value: "mktg",
|
|
2574
|
+
},
|
|
2575
|
+
{
|
|
2576
|
+
label: "Military and Protective Services",
|
|
2577
|
+
value: "mps",
|
|
2578
|
+
},
|
|
2579
|
+
{
|
|
2580
|
+
label: "Operations",
|
|
2581
|
+
value: "ops",
|
|
2582
|
+
},
|
|
2583
|
+
{
|
|
2584
|
+
label: "Program and Project Management",
|
|
2585
|
+
value: "ppm",
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
label: "Media and Communication",
|
|
2589
|
+
value: "pr",
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
label: "Product Management",
|
|
2593
|
+
value: "prod",
|
|
2594
|
+
},
|
|
2595
|
+
{
|
|
2596
|
+
label: "Quality Assurance",
|
|
2597
|
+
value: "qa",
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
label: "Real Estate",
|
|
2601
|
+
value: "re",
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
label: "Sales",
|
|
2605
|
+
value: "sale",
|
|
2606
|
+
},
|
|
2607
|
+
{
|
|
2608
|
+
label: "Support",
|
|
2609
|
+
value: "supp",
|
|
2610
|
+
},
|
|
2611
|
+
];
|
|
2612
|
+
|
|
2613
|
+
export const SENIORITY_OPTIONS = [
|
|
2614
|
+
{
|
|
2615
|
+
label: "Chief X Officer",
|
|
2616
|
+
value: "c",
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
label: "Director",
|
|
2620
|
+
value: "d",
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
label: "Entry",
|
|
2624
|
+
value: "en",
|
|
2625
|
+
},
|
|
2626
|
+
{
|
|
2627
|
+
label: "Senior",
|
|
2628
|
+
value: "ic",
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
label: "Manager",
|
|
2632
|
+
value: "m",
|
|
2633
|
+
},
|
|
2634
|
+
{
|
|
2635
|
+
label: "Owner",
|
|
2636
|
+
value: "o",
|
|
2637
|
+
},
|
|
2638
|
+
{
|
|
2639
|
+
label: "Partner",
|
|
2640
|
+
value: "p",
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
label: "Training",
|
|
2644
|
+
value: "tr",
|
|
2645
|
+
},
|
|
2646
|
+
{
|
|
2647
|
+
label: "Unpaid",
|
|
2648
|
+
value: "up",
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
label: "Vice President",
|
|
2652
|
+
value: "vp",
|
|
2653
|
+
},
|
|
2654
|
+
];
|
|
2655
|
+
|
|
2656
|
+
export const STAFF_COUNT_RANGE_OPTIONS = [
|
|
2657
|
+
"SIZE_1",
|
|
2658
|
+
"SIZE_2_TO_10",
|
|
2659
|
+
"SIZE_11_TO_50",
|
|
2660
|
+
"SIZE_51_TO_200",
|
|
2661
|
+
"SIZE_201_TO_500",
|
|
2662
|
+
"SIZE_501_TO_1000",
|
|
2663
|
+
"SIZE_1001_TO_5000",
|
|
2664
|
+
"SIZE_5001_TO_10000",
|
|
2665
|
+
"SIZE_10001_OR_MORE",
|
|
2666
|
+
];
|