-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathcars.xml
1465 lines (1465 loc) · 84.5 KB
/
cars.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<site xmlns="http://interactive-answers.webmaster.yandex.ru/schemas/site/0.0.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://interactive-answers.webmaster.yandex.ru/schemas/site/0.0.1 http://interactive-answers.webmaster.yandex.ru/schemas/site-0.0.1.xsd">
<title>New Cars, Used Cars — Cars.com</title>
<description>Use Cars.com to search 2.6 million new & used car listings or get a dealer quote. Our easy-to-use online tools put you a step ahead in your next vehicle purchase.</description>
<rootUrl>http://cars.com</rootUrl>
<protocol>HTTP</protocol>
<!-- 11 -->
<resource>
<fixed name="cars.com/for-sale/searchresults.action"/>
</resource>
<filters>
<dropDown>
<description caption="Make">
<setParameter name="mkNm"/>
</description>
<dropDownValue key="Acura" caption="Acura">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="CL" caption="CL"/>
<dropDownValue key="ILX" caption="ILX"/>
<dropDownValue key="ILX Hybrid" caption="ILX Hybrid"/>
<dropDownValue key="Integra" caption="Integra"/>
<dropDownValue key="Legend" caption="Legend"/>
<dropDownValue key="MDX" caption="MDX"/>
<dropDownValue key="NSX" caption="NSX"/>
<dropDownValue key="RDX" caption="RDX"/>
<dropDownValue key="RL" caption="RL"/>
<dropDownValue key="RLX" caption="RLX"/>
<dropDownValue key="RSX" caption="RSX"/>
<dropDownValue key="SLX" caption="SLX"/>
<dropDownValue key="TL" caption="TL"/>
<dropDownValue key="TSX" caption="TSX"/>
<dropDownValue key="Vigor" caption="Vigor"/>
<dropDownValue key="ZDX" caption="ZDX"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Alfa Romeo" caption="Alfa Romeo">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="164" caption="164"/>
<dropDownValue key="Graduate" caption="Graduate"/>
<dropDownValue key="Spider" caption="Spider"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Am General" caption="Am General">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Hummer" caption="Hummer"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Aston Martin" caption="Aston Martin">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="DB7" caption="DB7"/>
<dropDownValue key="DB7 Vantage" caption="DB7 Vantage"/>
<dropDownValue key="DB9" caption="DB9"/>
<dropDownValue key="DBS" caption="DBS"/>
<dropDownValue key="Rapide" caption="Rapide"/>
<dropDownValue key="V12 Vanquish" caption="V12 Vanquish"/>
<dropDownValue key="V12 Vantage" caption="V12 Vantage"/>
<dropDownValue key="V8 Vantage" caption="V8 Vantage"/>
<dropDownValue key="V8 Vantage S" caption="V8 Vantage S"/>
<dropDownValue key="Vanquish" caption="Vanquish"/>
<dropDownValue key="Virage" caption="Virage"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Audi" caption="Audi">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="100" caption="100"/>
<dropDownValue key="200" caption="200"/>
<dropDownValue key="80" caption="80"/>
<dropDownValue key="90" caption="90"/>
<dropDownValue key="A3" caption="A3"/>
<dropDownValue key="A4" caption="A4"/>
<dropDownValue key="A5" caption="A5"/>
<dropDownValue key="A6" caption="A6"/>
<dropDownValue key="A7" caption="A7"/>
<dropDownValue key="A8" caption="A8"/>
<dropDownValue key="allroad" caption="allroad"/>
<dropDownValue key="Cabriolet" caption="Cabriolet"/>
<dropDownValue key="Q5" caption="Q5"/>
<dropDownValue key="Q5 hybrid" caption="Q5 hybrid"/>
<dropDownValue key="Q7" caption="Q7"/>
<dropDownValue key="quattro" caption="quattro"/>
<dropDownValue key="R8" caption="R8"/>
<dropDownValue key="RS 4" caption="RS 4"/>
<dropDownValue key="RS 5" caption="RS 5"/>
<dropDownValue key="RS6" caption="RS6"/>
<dropDownValue key="S4" caption="S4"/>
<dropDownValue key="S5" caption="S5"/>
<dropDownValue key="S6" caption="S6"/>
<dropDownValue key="S7" caption="S7"/>
<dropDownValue key="S8" caption="S8"/>
<dropDownValue key="TT" caption="TT"/>
<dropDownValue key="TT RS" caption="TT RS"/>
<dropDownValue key="TTS" caption="TTS"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Bentley" caption="Bentley">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Arnage" caption="Arnage"/>
<dropDownValue key="Azure" caption="Azure"/>
<dropDownValue key="Brooklands" caption="Brooklands"/>
<dropDownValue key="Continental" caption="Continental"/>
<dropDownValue key="Continental Flying Spur" caption="Continental Flying Spur"/>
<dropDownValue key="Continental GT" caption="Continental GT"/>
<dropDownValue key="Continental GTC" caption="Continental GTC"/>
<dropDownValue key="Continental Supersports" caption="Continental Supersports"/>
<dropDownValue key="Mulsanne" caption="Mulsanne"/>
<dropDownValue key="R-Type" caption="R-Type"/>
</dropDown>
</dropDownValue>
<dropDownValue key="BMW" caption="BMW">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="1 Series M" caption="1 Series M"/>
<dropDownValue key="128" caption="128"/>
<dropDownValue key="135" caption="135"/>
<dropDownValue key="318" caption="318"/>
<dropDownValue key="320" caption="320"/>
<dropDownValue key="323" caption="323"/>
<dropDownValue key="325" caption="325"/>
<dropDownValue key="328" caption="328"/>
<dropDownValue key="330" caption="330"/>
<dropDownValue key="335" caption="335"/>
<dropDownValue key="525" caption="525"/>
<dropDownValue key="528" caption="528"/>
<dropDownValue key="530" caption="530"/>
<dropDownValue key="535" caption="535"/>
<dropDownValue key="535 Gran Turismo" caption="535 Gran Turismo"/>
<dropDownValue key="540" caption="540"/>
<dropDownValue key="545" caption="545"/>
<dropDownValue key="550" caption="550"/>
<dropDownValue key="550 Gran Turismo" caption="550 Gran Turismo"/>
<dropDownValue key="640" caption="640"/>
<dropDownValue key="640 Gran Coupe" caption="640 Gran Coupe"/>
<dropDownValue key="645" caption="645"/>
<dropDownValue key="650" caption="650"/>
<dropDownValue key="650 Gran Coupe" caption="650 Gran Coupe"/>
<dropDownValue key="735" caption="735"/>
<dropDownValue key="740" caption="740"/>
<dropDownValue key="745" caption="745"/>
<dropDownValue key="750" caption="750"/>
<dropDownValue key="760" caption="760"/>
<dropDownValue key="840" caption="840"/>
<dropDownValue key="850" caption="850"/>
<dropDownValue key="ActiveHybrid 3" caption="ActiveHybrid 3"/>
<dropDownValue key="ActiveHybrid 5" caption="ActiveHybrid 5"/>
<dropDownValue key="ActiveHybrid 740" caption="ActiveHybrid 740"/>
<dropDownValue key="ActiveHybrid 750" caption="ActiveHybrid 750"/>
<dropDownValue key="ActiveHybrid X6" caption="ActiveHybrid X6"/>
<dropDownValue key="Alpina B7" caption="Alpina B7"/>
<dropDownValue key="M" caption="M"/>
<dropDownValue key="M3" caption="M3"/>
<dropDownValue key="M5" caption="M5"/>
<dropDownValue key="M6" caption="M6"/>
<dropDownValue key="M6 Gran Coupe" caption="M6 Gran Coupe"/>
<dropDownValue key="X1" caption="X1"/>
<dropDownValue key="X3" caption="X3"/>
<dropDownValue key="X5" caption="X5"/>
<dropDownValue key="X5 M" caption="X5 M"/>
<dropDownValue key="X6" caption="X6"/>
<dropDownValue key="X6 M" caption="X6 M"/>
<dropDownValue key="Z3" caption="Z3"/>
<dropDownValue key="Z4" caption="Z4"/>
<dropDownValue key="Z4 M" caption="Z4 M"/>
<dropDownValue key="Z8" caption="Z8"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Buick" caption="Buick">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Century" caption="Century"/>
<dropDownValue key="Enclave" caption="Enclave"/>
<dropDownValue key="Encore" caption="Encore"/>
<dropDownValue key="LaCrosse" caption="LaCrosse"/>
<dropDownValue key="LeSabre" caption="LeSabre"/>
<dropDownValue key="Lucerne" caption="Lucerne"/>
<dropDownValue key="Park Avenue" caption="Park Avenue"/>
<dropDownValue key="Rainier" caption="Rainier"/>
<dropDownValue key="Reatta" caption="Reatta"/>
<dropDownValue key="Regal" caption="Regal"/>
<dropDownValue key="Rendezvous" caption="Rendezvous"/>
<dropDownValue key="Riviera" caption="Riviera"/>
<dropDownValue key="Roadmaster" caption="Roadmaster"/>
<dropDownValue key="Skylark" caption="Skylark"/>
<dropDownValue key="Terraza" caption="Terraza"/>
<dropDownValue key="Verano" caption="Verano"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Cadillac" caption="Cadillac">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Allante" caption="Allante"/>
<dropDownValue key="ATS" caption="ATS"/>
<dropDownValue key="Brougham" caption="Brougham"/>
<dropDownValue key="Catera" caption="Catera"/>
<dropDownValue key="CTS" caption="CTS"/>
<dropDownValue key="DeVille" caption="DeVille"/>
<dropDownValue key="DTS" caption="DTS"/>
<dropDownValue key="Eldorado" caption="Eldorado"/>
<dropDownValue key="ELR" caption="ELR"/>
<dropDownValue key="Escalade" caption="Escalade"/>
<dropDownValue key="Escalade ESV" caption="Escalade ESV"/>
<dropDownValue key="Escalade EXT" caption="Escalade EXT"/>
<dropDownValue key="Escalade Hybrid" caption="Escalade Hybrid"/>
<dropDownValue key="Fleetwood" caption="Fleetwood"/>
<dropDownValue key="Seville" caption="Seville"/>
<dropDownValue key="SRX" caption="SRX"/>
<dropDownValue key="STS" caption="STS"/>
<dropDownValue key="XLR" caption="XLR"/>
<dropDownValue key="XTS" caption="XTS"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Chevrolet" caption="Chevrolet">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="1500" caption="1500"/>
<dropDownValue key="2500" caption="2500"/>
<dropDownValue key="3500" caption="3500"/>
<dropDownValue key="Astro" caption="Astro"/>
<dropDownValue key="Avalanche" caption="Avalanche"/>
<dropDownValue key="Aveo" caption="Aveo"/>
<dropDownValue key="Beretta" caption="Beretta"/>
<dropDownValue key="Blazer" caption="Blazer"/>
<dropDownValue key="Camaro" caption="Camaro"/>
<dropDownValue key="Caprice" caption="Caprice"/>
<dropDownValue key="Caprice Classic" caption="Caprice Classic"/>
<dropDownValue key="Cavalier" caption="Cavalier"/>
<dropDownValue key="Celebrity" caption="Celebrity"/>
<dropDownValue key="Cobalt" caption="Cobalt"/>
<dropDownValue key="Colorado" caption="Colorado"/>
<dropDownValue key="Corsica" caption="Corsica"/>
<dropDownValue key="Corvette" caption="Corvette"/>
<dropDownValue key="Corvette Stingray" caption="Corvette Stingray"/>
<dropDownValue key="Cruze" caption="Cruze"/>
<dropDownValue key="Equinox" caption="Equinox"/>
<dropDownValue key="Express 1500" caption="Express 1500"/>
<dropDownValue key="Express 2500" caption="Express 2500"/>
<dropDownValue key="Express 3500" caption="Express 3500"/>
<dropDownValue key="HHR" caption="HHR"/>
<dropDownValue key="Impala" caption="Impala"/>
<dropDownValue key="Lumina" caption="Lumina"/>
<dropDownValue key="Lumina APV" caption="Lumina APV"/>
<dropDownValue key="Malibu" caption="Malibu"/>
<dropDownValue key="Malibu Classic" caption="Malibu Classic"/>
<dropDownValue key="Malibu Hybrid" caption="Malibu Hybrid"/>
<dropDownValue key="Malibu Maxx" caption="Malibu Maxx"/>
<dropDownValue key="Metro" caption="Metro"/>
<dropDownValue key="Monte Carlo" caption="Monte Carlo"/>
<dropDownValue key="Pickup" caption="Pickup"/>
<dropDownValue key="Prizm" caption="Prizm"/>
<dropDownValue key="S-10" caption="S-10"/>
<dropDownValue key="S-10 Blazer" caption="S-10 Blazer"/>
<dropDownValue key="Silverado 1500" caption="Silverado 1500"/>
<dropDownValue key="Silverado 1500 Hybrid" caption="Silverado 1500 Hybrid"/>
<dropDownValue key="Silverado 2500" caption="Silverado 2500"/>
<dropDownValue key="Silverado 3500" caption="Silverado 3500"/>
<dropDownValue key="Sonic" caption="Sonic"/>
<dropDownValue key="Spark" caption="Spark"/>
<dropDownValue key="Sportvan" caption="Sportvan"/>
<dropDownValue key="SS" caption="SS"/>
<dropDownValue key="SSR" caption="SSR"/>
<dropDownValue key="Suburban" caption="Suburban"/>
<dropDownValue key="Tahoe" caption="Tahoe"/>
<dropDownValue key="Tahoe Hybrid" caption="Tahoe Hybrid"/>
<dropDownValue key="Tracker" caption="Tracker"/>
<dropDownValue key="TrailBlazer" caption="TrailBlazer"/>
<dropDownValue key="TrailBlazer EXT" caption="TrailBlazer EXT"/>
<dropDownValue key="Traverse" caption="Traverse"/>
<dropDownValue key="Uplander" caption="Uplander"/>
<dropDownValue key="Van" caption="Van"/>
<dropDownValue key="Venture" caption="Venture"/>
<dropDownValue key="Volt" caption="Volt"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Chrysler" caption="Chrysler">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="200" caption="200"/>
<dropDownValue key="300" caption="300"/>
<dropDownValue key="300C" caption="300C"/>
<dropDownValue key="300M" caption="300M"/>
<dropDownValue key="Aspen" caption="Aspen"/>
<dropDownValue key="Aspen Hybrid" caption="Aspen Hybrid"/>
<dropDownValue key="Cirrus" caption="Cirrus"/>
<dropDownValue key="Concorde" caption="Concorde"/>
<dropDownValue key="Crossfire" caption="Crossfire"/>
<dropDownValue key="Fifth Avenue" caption="Fifth Avenue"/>
<dropDownValue key="Grand Voyager" caption="Grand Voyager"/>
<dropDownValue key="Imperial" caption="Imperial"/>
<dropDownValue key="LeBaron" caption="LeBaron"/>
<dropDownValue key="LHS" caption="LHS"/>
<dropDownValue key="New Yorker" caption="New Yorker"/>
<dropDownValue key="Pacifica" caption="Pacifica"/>
<dropDownValue key="Prowler" caption="Prowler"/>
<dropDownValue key="PT Cruiser" caption="PT Cruiser"/>
<dropDownValue key="Sebring" caption="Sebring"/>
<dropDownValue key="TC by Maserati" caption="TC by Maserati"/>
<dropDownValue key="Town & Country" caption="Town & Country"/>
<dropDownValue key="Voyager" caption="Voyager"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Daewoo" caption="Daewoo">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Lanos" caption="Lanos"/>
<dropDownValue key="Leganza" caption="Leganza"/>
<dropDownValue key="Nubira" caption="Nubira"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Daihatsu" caption="Daihatsu">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Charade" caption="Charade"/>
<dropDownValue key="Rocky" caption="Rocky"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Dodge" caption="Dodge">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Avenger" caption="Avenger"/>
<dropDownValue key="Caliber" caption="Caliber"/>
<dropDownValue key="Caravan" caption="Caravan"/>
<dropDownValue key="Challenger" caption="Challenger"/>
<dropDownValue key="Charger" caption="Charger"/>
<dropDownValue key="Colt" caption="Colt"/>
<dropDownValue key="D150" caption="D150"/>
<dropDownValue key="D250" caption="D250"/>
<dropDownValue key="D350" caption="D350"/>
<dropDownValue key="Dakota" caption="Dakota"/>
<dropDownValue key="Dart" caption="Dart"/>
<dropDownValue key="Daytona" caption="Daytona"/>
<dropDownValue key="Durango" caption="Durango"/>
<dropDownValue key="Durango Hybrid" caption="Durango Hybrid"/>
<dropDownValue key="Dynasty" caption="Dynasty"/>
<dropDownValue key="Grand Caravan" caption="Grand Caravan"/>
<dropDownValue key="Intrepid" caption="Intrepid"/>
<dropDownValue key="Journey" caption="Journey"/>
<dropDownValue key="Magnum" caption="Magnum"/>
<dropDownValue key="Monaco" caption="Monaco"/>
<dropDownValue key="Neon" caption="Neon"/>
<dropDownValue key="Nitro" caption="Nitro"/>
<dropDownValue key="Omni" caption="Omni"/>
<dropDownValue key="Raider" caption="Raider"/>
<dropDownValue key="Ram 1500" caption="Ram 1500"/>
<dropDownValue key="Ram 2500" caption="Ram 2500"/>
<dropDownValue key="Ram 3500" caption="Ram 3500"/>
<dropDownValue key="Ram 50" caption="Ram 50"/>
<dropDownValue key="Ram Van" caption="Ram Van"/>
<dropDownValue key="Ram Wagon" caption="Ram Wagon"/>
<dropDownValue key="Ramcharger" caption="Ramcharger"/>
<dropDownValue key="Shadow" caption="Shadow"/>
<dropDownValue key="Spirit" caption="Spirit"/>
<dropDownValue key="Sprinter" caption="Sprinter"/>
<dropDownValue key="SRT Viper" caption="SRT Viper"/>
<dropDownValue key="Stealth" caption="Stealth"/>
<dropDownValue key="Stratus" caption="Stratus"/>
<dropDownValue key="Viper" caption="Viper"/>
<dropDownValue key="W150" caption="W150"/>
<dropDownValue key="W250" caption="W250"/>
<dropDownValue key="W350" caption="W350"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Eagle" caption="Eagle">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Premier" caption="Premier"/>
<dropDownValue key="Summit" caption="Summit"/>
<dropDownValue key="Talon" caption="Talon"/>
<dropDownValue key="Vision" caption="Vision"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Ferrari" caption="Ferrari">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="348" caption="348"/>
<dropDownValue key="360 Modena" caption="360 Modena"/>
<dropDownValue key="456 M" caption="456 M"/>
<dropDownValue key="458 Italia" caption="458 Italia"/>
<dropDownValue key="458 Spider" caption="458 Spider"/>
<dropDownValue key="550 Barchetta" caption="550 Barchetta"/>
<dropDownValue key="550 Maranello" caption="550 Maranello"/>
<dropDownValue key="575 M" caption="575 M"/>
<dropDownValue key="599 GTB Fiorano" caption="599 GTB Fiorano"/>
<dropDownValue key="612 Scaglietti" caption="612 Scaglietti"/>
<dropDownValue key="California" caption="California"/>
<dropDownValue key="Challenge Stradale" caption="Challenge Stradale"/>
<dropDownValue key="Enzo" caption="Enzo"/>
<dropDownValue key="F12berlinetta" caption="F12berlinetta"/>
<dropDownValue key="F355" caption="F355"/>
<dropDownValue key="F430" caption="F430"/>
<dropDownValue key="FF" caption="FF"/>
<dropDownValue key="Superamerica" caption="Superamerica"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Fiat" caption="Fiat">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="500" caption="500"/>
<dropDownValue key="500C" caption="500C"/>
<dropDownValue key="500L" caption="500L"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Fisker" caption="Fisker">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Karma" caption="Karma"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Ford" caption="Ford">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Aerostar" caption="Aerostar"/>
<dropDownValue key="Aspire" caption="Aspire"/>
<dropDownValue key="Bronco" caption="Bronco"/>
<dropDownValue key="Bronco II" caption="Bronco II"/>
<dropDownValue key="C-Max Energi" caption="C-Max Energi"/>
<dropDownValue key="C-Max Hybrid" caption="C-Max Hybrid"/>
<dropDownValue key="Club Wagon" caption="Club Wagon"/>
<dropDownValue key="Contour" caption="Contour"/>
<dropDownValue key="Crown Victoria" caption="Crown Victoria"/>
<dropDownValue key="E150" caption="E150"/>
<dropDownValue key="E250" caption="E250"/>
<dropDownValue key="E350" caption="E350"/>
<dropDownValue key="E350 Super Duty" caption="E350 Super Duty"/>
<dropDownValue key="Edge" caption="Edge"/>
<dropDownValue key="Escape" caption="Escape"/>
<dropDownValue key="Escape Hybrid" caption="Escape Hybrid"/>
<dropDownValue key="Escort" caption="Escort"/>
<dropDownValue key="Excursion" caption="Excursion"/>
<dropDownValue key="Expedition" caption="Expedition"/>
<dropDownValue key="Expedition EL" caption="Expedition EL"/>
<dropDownValue key="Explorer" caption="Explorer"/>
<dropDownValue key="Explorer Sport" caption="Explorer Sport"/>
<dropDownValue key="Explorer Sport Trac" caption="Explorer Sport Trac"/>
<dropDownValue key="F150" caption="F150"/>
<dropDownValue key="F250" caption="F250"/>
<dropDownValue key="F350" caption="F350"/>
<dropDownValue key="F450" caption="F450"/>
<dropDownValue key="Festiva" caption="Festiva"/>
<dropDownValue key="Fiesta" caption="Fiesta"/>
<dropDownValue key="Five Hundred" caption="Five Hundred"/>
<dropDownValue key="Flex" caption="Flex"/>
<dropDownValue key="Focus" caption="Focus"/>
<dropDownValue key="Focus Electric" caption="Focus Electric"/>
<dropDownValue key="Focus ST" caption="Focus ST"/>
<dropDownValue key="Freestar" caption="Freestar"/>
<dropDownValue key="Freestyle" caption="Freestyle"/>
<dropDownValue key="Fusion" caption="Fusion"/>
<dropDownValue key="Fusion Energi" caption="Fusion Energi"/>
<dropDownValue key="Fusion Hybrid" caption="Fusion Hybrid"/>
<dropDownValue key="GT" caption="GT"/>
<dropDownValue key="Mustang" caption="Mustang"/>
<dropDownValue key="Probe" caption="Probe"/>
<dropDownValue key="Ranger" caption="Ranger"/>
<dropDownValue key="Taurus" caption="Taurus"/>
<dropDownValue key="Taurus X" caption="Taurus X"/>
<dropDownValue key="Tempo" caption="Tempo"/>
<dropDownValue key="Thunderbird" caption="Thunderbird"/>
<dropDownValue key="Transit Connect" caption="Transit Connect"/>
<dropDownValue key="Windstar" caption="Windstar"/>
<dropDownValue key="ZX2" caption="ZX2"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Geo" caption="Geo">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Metro" caption="Metro"/>
<dropDownValue key="Prizm" caption="Prizm"/>
<dropDownValue key="Storm" caption="Storm"/>
<dropDownValue key="Tracker" caption="Tracker"/>
</dropDown>
</dropDownValue>
<dropDownValue key="GMC" caption="GMC">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="1500" caption="1500"/>
<dropDownValue key="Acadia" caption="Acadia"/>
<dropDownValue key="Canyon" caption="Canyon"/>
<dropDownValue key="Envoy" caption="Envoy"/>
<dropDownValue key="Envoy XL" caption="Envoy XL"/>
<dropDownValue key="Envoy XUV" caption="Envoy XUV"/>
<dropDownValue key="Jimmy" caption="Jimmy"/>
<dropDownValue key="Rally" caption="Rally"/>
<dropDownValue key="S-15 Jimmy" caption="S-15 Jimmy"/>
<dropDownValue key="S-15 Pickup" caption="S-15 Pickup"/>
<dropDownValue key="Safari" caption="Safari"/>
<dropDownValue key="Savana 1500" caption="Savana 1500"/>
<dropDownValue key="Savana 2500" caption="Savana 2500"/>
<dropDownValue key="Savana 3500" caption="Savana 3500"/>
<dropDownValue key="Sierra 1500" caption="Sierra 1500"/>
<dropDownValue key="Sierra 1500 Hybrid" caption="Sierra 1500 Hybrid"/>
<dropDownValue key="Sierra 2500" caption="Sierra 2500"/>
<dropDownValue key="Sierra 3500" caption="Sierra 3500"/>
<dropDownValue key="Sonoma" caption="Sonoma"/>
<dropDownValue key="Suburban" caption="Suburban"/>
<dropDownValue key="Terrain" caption="Terrain"/>
<dropDownValue key="Vandura" caption="Vandura"/>
<dropDownValue key="Yukon" caption="Yukon"/>
<dropDownValue key="Yukon Hybrid" caption="Yukon Hybrid"/>
<dropDownValue key="Yukon XL" caption="Yukon XL"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Honda" caption="Honda">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Accord" caption="Accord"/>
<dropDownValue key="Accord Crosstour" caption="Accord Crosstour"/>
<dropDownValue key="Accord Hybrid" caption="Accord Hybrid"/>
<dropDownValue key="Accord Plug-In Hybrid" caption="Accord Plug-In Hybrid"/>
<dropDownValue key="Civic" caption="Civic"/>
<dropDownValue key="Civic Hybrid" caption="Civic Hybrid"/>
<dropDownValue key="CR-V" caption="CR-V"/>
<dropDownValue key="CR-Z" caption="CR-Z"/>
<dropDownValue key="Crosstour" caption="Crosstour"/>
<dropDownValue key="CRX" caption="CRX"/>
<dropDownValue key="del Sol" caption="del Sol"/>
<dropDownValue key="Element" caption="Element"/>
<dropDownValue key="Fit" caption="Fit"/>
<dropDownValue key="Fit EV" caption="Fit EV"/>
<dropDownValue key="Insight" caption="Insight"/>
<dropDownValue key="Odyssey" caption="Odyssey"/>
<dropDownValue key="Passport" caption="Passport"/>
<dropDownValue key="Pilot" caption="Pilot"/>
<dropDownValue key="Prelude" caption="Prelude"/>
<dropDownValue key="Ridgeline" caption="Ridgeline"/>
<dropDownValue key="S2000" caption="S2000"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Hummer" caption="Hummer">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="H1" caption="H1"/>
<dropDownValue key="H1 Alpha" caption="H1 Alpha"/>
<dropDownValue key="H2" caption="H2"/>
<dropDownValue key="H3" caption="H3"/>
<dropDownValue key="H3T" caption="H3T"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Hyundai" caption="Hyundai">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Accent" caption="Accent"/>
<dropDownValue key="Azera" caption="Azera"/>
<dropDownValue key="Elantra" caption="Elantra"/>
<dropDownValue key="Elantra GT" caption="Elantra GT"/>
<dropDownValue key="Elantra Touring" caption="Elantra Touring"/>
<dropDownValue key="Entourage" caption="Entourage"/>
<dropDownValue key="Equus" caption="Equus"/>
<dropDownValue key="Excel" caption="Excel"/>
<dropDownValue key="Genesis" caption="Genesis"/>
<dropDownValue key="Genesis Coupe" caption="Genesis Coupe"/>
<dropDownValue key="Santa Fe" caption="Santa Fe"/>
<dropDownValue key="Scoupe" caption="Scoupe"/>
<dropDownValue key="Sonata" caption="Sonata"/>
<dropDownValue key="Sonata Hybrid" caption="Sonata Hybrid"/>
<dropDownValue key="Tiburon" caption="Tiburon"/>
<dropDownValue key="Tucson" caption="Tucson"/>
<dropDownValue key="Veloster" caption="Veloster"/>
<dropDownValue key="Veracruz" caption="Veracruz"/>
<dropDownValue key="XG300" caption="XG300"/>
<dropDownValue key="XG350" caption="XG350"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Infiniti" caption="Infiniti">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="EX35" caption="EX35"/>
<dropDownValue key="EX37" caption="EX37"/>
<dropDownValue key="FX35" caption="FX35"/>
<dropDownValue key="FX37" caption="FX37"/>
<dropDownValue key="FX45" caption="FX45"/>
<dropDownValue key="FX50" caption="FX50"/>
<dropDownValue key="G20" caption="G20"/>
<dropDownValue key="G25" caption="G25"/>
<dropDownValue key="G35" caption="G35"/>
<dropDownValue key="G37" caption="G37"/>
<dropDownValue key="I30" caption="I30"/>
<dropDownValue key="I35" caption="I35"/>
<dropDownValue key="IPL G" caption="IPL G"/>
<dropDownValue key="J30" caption="J30"/>
<dropDownValue key="JX35" caption="JX35"/>
<dropDownValue key="M30" caption="M30"/>
<dropDownValue key="M35" caption="M35"/>
<dropDownValue key="M35h" caption="M35h"/>
<dropDownValue key="M37" caption="M37"/>
<dropDownValue key="M45" caption="M45"/>
<dropDownValue key="M56" caption="M56"/>
<dropDownValue key="Q45" caption="Q45"/>
<dropDownValue key="Q50" caption="Q50"/>
<dropDownValue key="Q50 Hybrid" caption="Q50 Hybrid"/>
<dropDownValue key="QX4" caption="QX4"/>
<dropDownValue key="QX56" caption="QX56"/>
<dropDownValue key="QX60 Hybrid" caption="QX60 Hybrid"/>
</dropDown>
</dropDownValue>
<dropDownValue key="International" caption="International">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="MXT" caption="MXT"/>
<dropDownValue key="RXT" caption="RXT"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Isuzu" caption="Isuzu">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Amigo" caption="Amigo"/>
<dropDownValue key="Ascender" caption="Ascender"/>
<dropDownValue key="Axiom" caption="Axiom"/>
<dropDownValue key="Hombre" caption="Hombre"/>
<dropDownValue key="i-280" caption="i-280"/>
<dropDownValue key="i-290" caption="i-290"/>
<dropDownValue key="i-350" caption="i-350"/>
<dropDownValue key="i-370" caption="i-370"/>
<dropDownValue key="Impulse" caption="Impulse"/>
<dropDownValue key="Oasis" caption="Oasis"/>
<dropDownValue key="Pickup" caption="Pickup"/>
<dropDownValue key="Rodeo" caption="Rodeo"/>
<dropDownValue key="Rodeo Sport" caption="Rodeo Sport"/>
<dropDownValue key="Stylus" caption="Stylus"/>
<dropDownValue key="Trooper" caption="Trooper"/>
<dropDownValue key="VehiCROSS" caption="VehiCROSS"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Jaguar" caption="Jaguar">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="F-Type" caption="F-Type"/>
<dropDownValue key="S-Type" caption="S-Type"/>
<dropDownValue key="Super V8" caption="Super V8"/>
<dropDownValue key="Super V8 Portfolio" caption="Super V8 Portfolio"/>
<dropDownValue key="Vanden Plas" caption="Vanden Plas"/>
<dropDownValue key="X-Type" caption="X-Type"/>
<dropDownValue key="XF" caption="XF"/>
<dropDownValue key="XJ" caption="XJ"/>
<dropDownValue key="XJ12" caption="XJ12"/>
<dropDownValue key="XJ6" caption="XJ6"/>
<dropDownValue key="XJ8" caption="XJ8"/>
<dropDownValue key="XJR" caption="XJR"/>
<dropDownValue key="XJS" caption="XJS"/>
<dropDownValue key="XK" caption="XK"/>
<dropDownValue key="XK8" caption="XK8"/>
<dropDownValue key="XKR" caption="XKR"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Jeep" caption="Jeep">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Cherokee" caption="Cherokee"/>
<dropDownValue key="Comanche" caption="Comanche"/>
<dropDownValue key="Commander" caption="Commander"/>
<dropDownValue key="Compass" caption="Compass"/>
<dropDownValue key="Grand Cherokee" caption="Grand Cherokee"/>
<dropDownValue key="Grand Wagoneer" caption="Grand Wagoneer"/>
<dropDownValue key="Liberty" caption="Liberty"/>
<dropDownValue key="Patriot" caption="Patriot"/>
<dropDownValue key="Wrangler" caption="Wrangler"/>
<dropDownValue key="Wrangler Unlimited" caption="Wrangler Unlimited"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Kia" caption="Kia">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Amanti" caption="Amanti"/>
<dropDownValue key="Borrego" caption="Borrego"/>
<dropDownValue key="Cadenza" caption="Cadenza"/>
<dropDownValue key="Forte" caption="Forte"/>
<dropDownValue key="Forte Koup" caption="Forte Koup"/>
<dropDownValue key="Optima" caption="Optima"/>
<dropDownValue key="Optima Hybrid" caption="Optima Hybrid"/>
<dropDownValue key="Rio" caption="Rio"/>
<dropDownValue key="Rio5" caption="Rio5"/>
<dropDownValue key="Rondo" caption="Rondo"/>
<dropDownValue key="Sedona" caption="Sedona"/>
<dropDownValue key="Sephia" caption="Sephia"/>
<dropDownValue key="Sorento" caption="Sorento"/>
<dropDownValue key="Soul" caption="Soul"/>
<dropDownValue key="Spectra" caption="Spectra"/>
<dropDownValue key="Spectra5" caption="Spectra5"/>
<dropDownValue key="Sportage" caption="Sportage"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Lamborghini" caption="Lamborghini">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Aventador" caption="Aventador"/>
<dropDownValue key="Diablo" caption="Diablo"/>
<dropDownValue key="Gallardo" caption="Gallardo"/>
<dropDownValue key="Murcielago" caption="Murcielago"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Land Rover" caption="Land Rover">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Defender" caption="Defender"/>
<dropDownValue key="Discovery" caption="Discovery"/>
<dropDownValue key="Freelander" caption="Freelander"/>
<dropDownValue key="LR2" caption="LR2"/>
<dropDownValue key="LR3" caption="LR3"/>
<dropDownValue key="LR4" caption="LR4"/>
<dropDownValue key="Range Rover" caption="Range Rover"/>
<dropDownValue key="Range Rover Evoque" caption="Range Rover Evoque"/>
<dropDownValue key="Range Rover Sport" caption="Range Rover Sport"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Lexus" caption="Lexus">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="CT 200h" caption="CT 200h"/>
<dropDownValue key="ES 250" caption="ES 250"/>
<dropDownValue key="ES 300" caption="ES 300"/>
<dropDownValue key="ES 300h" caption="ES 300h"/>
<dropDownValue key="ES 330" caption="ES 330"/>
<dropDownValue key="ES 350" caption="ES 350"/>
<dropDownValue key="GS 300" caption="GS 300"/>
<dropDownValue key="GS 350" caption="GS 350"/>
<dropDownValue key="GS 400" caption="GS 400"/>
<dropDownValue key="GS 430" caption="GS 430"/>
<dropDownValue key="GS 450h" caption="GS 450h"/>
<dropDownValue key="GS 460" caption="GS 460"/>
<dropDownValue key="GX 460" caption="GX 460"/>
<dropDownValue key="GX 470" caption="GX 470"/>
<dropDownValue key="HS 250h" caption="HS 250h"/>
<dropDownValue key="IS 250" caption="IS 250"/>
<dropDownValue key="IS 250C" caption="IS 250C"/>
<dropDownValue key="IS 300" caption="IS 300"/>
<dropDownValue key="IS 350" caption="IS 350"/>
<dropDownValue key="IS 350C" caption="IS 350C"/>
<dropDownValue key="IS-F" caption="IS-F"/>
<dropDownValue key="LFA" caption="LFA"/>
<dropDownValue key="LS 400" caption="LS 400"/>
<dropDownValue key="LS 430" caption="LS 430"/>
<dropDownValue key="LS 460" caption="LS 460"/>
<dropDownValue key="LS 600h L" caption="LS 600h L"/>
<dropDownValue key="LX 450" caption="LX 450"/>
<dropDownValue key="LX 470" caption="LX 470"/>
<dropDownValue key="LX 570" caption="LX 570"/>
<dropDownValue key="RX 300" caption="RX 300"/>
<dropDownValue key="RX 330" caption="RX 330"/>
<dropDownValue key="RX 350" caption="RX 350"/>
<dropDownValue key="RX 400h" caption="RX 400h"/>
<dropDownValue key="RX 450h" caption="RX 450h"/>
<dropDownValue key="SC 300" caption="SC 300"/>
<dropDownValue key="SC 400" caption="SC 400"/>
<dropDownValue key="SC 430" caption="SC 430"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Lincoln" caption="Lincoln">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Aviator" caption="Aviator"/>
<dropDownValue key="Blackwood" caption="Blackwood"/>
<dropDownValue key="Continental" caption="Continental"/>
<dropDownValue key="LS" caption="LS"/>
<dropDownValue key="Mark LT" caption="Mark LT"/>
<dropDownValue key="Mark VII" caption="Mark VII"/>
<dropDownValue key="Mark VIII" caption="Mark VIII"/>
<dropDownValue key="MKS" caption="MKS"/>
<dropDownValue key="MKT" caption="MKT"/>
<dropDownValue key="MKX" caption="MKX"/>
<dropDownValue key="MKZ" caption="MKZ"/>
<dropDownValue key="MKZ Hybrid" caption="MKZ Hybrid"/>
<dropDownValue key="Navigator" caption="Navigator"/>
<dropDownValue key="Town Car" caption="Town Car"/>
<dropDownValue key="Zephyr" caption="Zephyr"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Lotus" caption="Lotus">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Elan" caption="Elan"/>
<dropDownValue key="Elise" caption="Elise"/>
<dropDownValue key="Esprit" caption="Esprit"/>
<dropDownValue key="Esprit V8" caption="Esprit V8"/>
<dropDownValue key="Evora" caption="Evora"/>
<dropDownValue key="Exige" caption="Exige"/>
<dropDownValue key="Exige S" caption="Exige S"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Maserati" caption="Maserati">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Coupe" caption="Coupe"/>
<dropDownValue key="GranSport" caption="GranSport"/>
<dropDownValue key="GranSport Spyder" caption="GranSport Spyder"/>
<dropDownValue key="GranTurismo" caption="GranTurismo"/>
<dropDownValue key="Quattroporte" caption="Quattroporte"/>
<dropDownValue key="Spyder" caption="Spyder"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Maybach" caption="Maybach">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Landaulet" caption="Landaulet"/>
<dropDownValue key="Type 57" caption="Type 57"/>
<dropDownValue key="Type 62" caption="Type 62"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Mazda" caption="Mazda">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="323" caption="323"/>
<dropDownValue key="626" caption="626"/>
<dropDownValue key="929" caption="929"/>
<dropDownValue key="B2200" caption="B2200"/>
<dropDownValue key="B2300" caption="B2300"/>
<dropDownValue key="B2500" caption="B2500"/>
<dropDownValue key="B2600" caption="B2600"/>
<dropDownValue key="B3000" caption="B3000"/>
<dropDownValue key="B4000" caption="B4000"/>
<dropDownValue key="CX-5" caption="CX-5"/>
<dropDownValue key="CX-7" caption="CX-7"/>
<dropDownValue key="CX-9" caption="CX-9"/>
<dropDownValue key="Mazda2" caption="Mazda2"/>
<dropDownValue key="Mazda3" caption="Mazda3"/>
<dropDownValue key="Mazda5" caption="Mazda5"/>
<dropDownValue key="Mazda6" caption="Mazda6"/>
<dropDownValue key="MazdaSpeed Miata MX-5" caption="MazdaSpeed Miata MX-5"/>
<dropDownValue key="MazdaSpeed Protege" caption="MazdaSpeed Protege"/>
<dropDownValue key="MazdaSpeed3" caption="MazdaSpeed3"/>
<dropDownValue key="MazdaSpeed6" caption="MazdaSpeed6"/>
<dropDownValue key="Miata MX-5" caption="Miata MX-5"/>
<dropDownValue key="Millenia" caption="Millenia"/>
<dropDownValue key="MPV" caption="MPV"/>
<dropDownValue key="MX-3" caption="MX-3"/>
<dropDownValue key="MX-6" caption="MX-6"/>
<dropDownValue key="Navajo" caption="Navajo"/>
<dropDownValue key="Pickup" caption="Pickup"/>
<dropDownValue key="Protege" caption="Protege"/>
<dropDownValue key="Protege5" caption="Protege5"/>
<dropDownValue key="RX-7" caption="RX-7"/>
<dropDownValue key="RX-8" caption="RX-8"/>
<dropDownValue key="Tribute" caption="Tribute"/>
<dropDownValue key="Tribute Hybrid" caption="Tribute Hybrid"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Mercedes-Benz" caption="Mercedes-Benz">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="190" caption="190"/>
<dropDownValue key="C-Class" caption="C-Class"/>
<dropDownValue key="CL-Class" caption="CL-Class"/>
<dropDownValue key="CLA-Class" caption="CLA-Class"/>
<dropDownValue key="CLK-Class" caption="CLK-Class"/>
<dropDownValue key="CLS-Class" caption="CLS-Class"/>
<dropDownValue key="E-Class" caption="E-Class"/>
<dropDownValue key="G-Class" caption="G-Class"/>
<dropDownValue key="GL-Class" caption="GL-Class"/>
<dropDownValue key="GLK-Class" caption="GLK-Class"/>
<dropDownValue key="M-Class" caption="M-Class"/>
<dropDownValue key="R-Class" caption="R-Class"/>
<dropDownValue key="S-Class" caption="S-Class"/>
<dropDownValue key="SL-Class" caption="SL-Class"/>
<dropDownValue key="SLK-Class" caption="SLK-Class"/>
<dropDownValue key="SLR McLaren" caption="SLR McLaren"/>
<dropDownValue key="SLS AMG" caption="SLS AMG"/>
<dropDownValue key="SLS AMG GT" caption="SLS AMG GT"/>
<dropDownValue key="Sprinter" caption="Sprinter"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Mercury" caption="Mercury">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Capri" caption="Capri"/>
<dropDownValue key="Cougar" caption="Cougar"/>
<dropDownValue key="Grand Marquis" caption="Grand Marquis"/>
<dropDownValue key="Marauder" caption="Marauder"/>
<dropDownValue key="Mariner" caption="Mariner"/>
<dropDownValue key="Mariner Hybrid" caption="Mariner Hybrid"/>
<dropDownValue key="Milan" caption="Milan"/>
<dropDownValue key="Milan Hybrid" caption="Milan Hybrid"/>
<dropDownValue key="Montego" caption="Montego"/>
<dropDownValue key="Monterey" caption="Monterey"/>
<dropDownValue key="Mountaineer" caption="Mountaineer"/>
<dropDownValue key="Mystique" caption="Mystique"/>
<dropDownValue key="Sable" caption="Sable"/>
<dropDownValue key="Topaz" caption="Topaz"/>
<dropDownValue key="Tracer" caption="Tracer"/>
<dropDownValue key="Villager" caption="Villager"/>
</dropDown>
</dropDownValue>
<dropDownValue key="MINI" caption="MINI">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="Clubman" caption="Clubman"/>
<dropDownValue key="Convertible" caption="Convertible"/>
<dropDownValue key="Cooper" caption="Cooper"/>
<dropDownValue key="Cooper Clubman" caption="Cooper Clubman"/>
<dropDownValue key="Cooper Countryman" caption="Cooper Countryman"/>
<dropDownValue key="Cooper S" caption="Cooper S"/>
<dropDownValue key="Cooper S Clubman" caption="Cooper S Clubman"/>
<dropDownValue key="Cooper S Countryman" caption="Cooper S Countryman"/>
<dropDownValue key="Countryman" caption="Countryman"/>
<dropDownValue key="Coupe" caption="Coupe"/>
<dropDownValue key="Hardtop" caption="Hardtop"/>
<dropDownValue key="Paceman" caption="Paceman"/>
<dropDownValue key="Roadster" caption="Roadster"/>
</dropDown>
</dropDownValue>
<dropDownValue key="Mitsubishi" caption="Mitsubishi">
<dropDown>
<description caption="Model">
<setParameter name="mdNm"/>
</description>
<dropDownValue key="3000GT" caption="3000GT"/>
<dropDownValue key="Diamante" caption="Diamante"/>
<dropDownValue key="Eclipse" caption="Eclipse"/>
<dropDownValue key="Endeavor" caption="Endeavor"/>
<dropDownValue key="Expo" caption="Expo"/>
<dropDownValue key="Galant" caption="Galant"/>
<dropDownValue key="i-MiEV" caption="i-MiEV"/>
<dropDownValue key="Lancer" caption="Lancer"/>
<dropDownValue key="Lancer Evolution" caption="Lancer Evolution"/>