-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautopia_dict.py
More file actions
1070 lines (1021 loc) · 81.5 KB
/
autopia_dict.py
File metadata and controls
1070 lines (1021 loc) · 81.5 KB
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
# autopia_dict.py
# A separate file to hold the full AVAILABLE_BRANDS_MODELS_AUTOPIA dictionary for Autopia.
# (No imports required.)
AVAILABLE_BRANDS_MODELS_AUTOPIA = {
# ------------- START OF FULL DICTIONARY -------------
"Audi": {
"Audi A3 2014-2016": "https://autopia.ge/en/products?mark=1&model=791",
"Audi A4 2008-2012": "https://autopia.ge/en/products?mark=1&model=4",
"Audi A4 2012-2015": "https://autopia.ge/en/products?mark=1&model=5",
"Audi A4 2016-2019": "https://autopia.ge/en/products?mark=1&model=597",
"Audi A6 2008-2012": "https://autopia.ge/en/products?mark=1&model=1061",
"Audi A5 2012-2016": "https://autopia.ge/en/products?mark=1&model=763",
"Audi A5 2016-2024": "https://autopia.ge/en/products?mark=1&model=923",
"Audi A6 2012-": "https://autopia.ge/en/products?mark=1&model=569",
"Audi A6 2014-2016": "https://autopia.ge/en/products?mark=1&model=1242",
"Audi A6 S-LINE 2016-2018": "https://autopia.ge/en/products?mark=1&model=1255",
"Audi A7 2011-2014": "https://autopia.ge/en/products?mark=1&model=405",
"Audi A7 2015-2018": "https://autopia.ge/en/products?mark=1&model=1253",
"Audi A7 2017-": "https://autopia.ge/en/products?mark=1&model=1031",
"Audi A8 2012-2017": "https://autopia.ge/en/products?mark=1&model=692",
"Audi A8 2018-2021": "https://autopia.ge/en/products?mark=1&model=1254",
"Audi Q5 2012-2017": "https://autopia.ge/en/products?mark=1&model=271",
"Audi Q5 2017-2020": "https://autopia.ge/en/products?mark=1&model=758",
"Audi Q5 SPORTBACK 2021-2024": "https://autopia.ge/en/products?mark=1&model=1260",
"Audi Q5 2021-": "https://autopia.ge/en/products?mark=1&model=1256",
"Audi Q7 2006-2015": "https://autopia.ge/en/products?mark=1&model=931",
"Audi Q7 2016-2019": "https://autopia.ge/en/products?mark=1&model=930",
"Audi Q5 2008-2012": "https://autopia.ge/en/products?mark=1&model=278",
"Audi Q3 2019-": "https://autopia.ge/en/products?mark=1&model=1059",
"Audi Q3 2014-2018": "https://autopia.ge/en/products?mark=1&model=929",
"Audi TT CABRIOLET 2007-": "https://autopia.ge/en/products?mark=1&model=1148",
"Audi TT 2015-": "https://autopia.ge/en/products?mark=1&model=802",
"Audi A3 1994-2003": "https://autopia.ge/en/products?mark=1&model=274",
"Audi A3 2003-2008": "https://autopia.ge/en/products?mark=1&model=497",
"Audi A4 1994-1997": "https://autopia.ge/en/products?mark=1&model=1",
"Audi A4 1999-2001": "https://autopia.ge/en/products?mark=1&model=273",
"Audi A4 2001-2005": "https://autopia.ge/en/products?mark=1&model=2",
"Audi A4 2005-2008": "https://autopia.ge/en/products?mark=1&model=3",
"Audi A5 2007-2012": "https://autopia.ge/en/products?mark=1&model=430",
"Audi A6 1997-2006": "https://autopia.ge/en/products?mark=1&model=6",
"Audi A6 2002-2005": "https://autopia.ge/en/products?mark=1&model=7",
"Audi A6 2004-2008": "https://autopia.ge/en/products?mark=1&model=272",
"Audi 80": "https://autopia.ge/en/products?mark=1&model=428"
},
"Bentley": {
"Bentley Continental 2012-": "https://autopia.ge/en/products?mark=75&model=917"
},
"BMW": {
"BMW 1 E81/87 2004-2011": "https://autopia.ge/en/products?mark=3&model=1064",
"BMW 1 F20/F21 2012-2019": "https://autopia.ge/en/products?mark=3&model=1066",
"BMW 1 F40/F44 2020-2024": "https://autopia.ge/en/products?mark=3&model=1100",
"BMW 2 F45 2015-": "https://autopia.ge/en/products?mark=3&model=1068",
"BMW 3 G20 - 2020-": "https://autopia.ge/en/products?mark=3&model=1081",
"BMW 3 F30/F31 2011-2018": "https://autopia.ge/en/products?mark=3&model=1239",
"BMW 3 E93 2006-2013": "https://autopia.ge/en/products?mark=3&model=1078",
"BMW 3 E92 COUPE 2006-2012": "https://autopia.ge/en/products?mark=3&model=1077",
"BMW 3 E90 2005-2009": "https://autopia.ge/en/products?mark=3&model=1075",
"BMW 3 E36 1990-1999": "https://autopia.ge/en/products?mark=3&model=1111",
"BMW 3 E36 COUPE 1990-1999": "https://autopia.ge/en/products?mark=3&model=1115",
"BMW 3 E46 1998-2002": "https://autopia.ge/en/products?mark=3&model=1071",
"BMW 3 E46 2002-2005": "https://autopia.ge/en/products?mark=3&model=1072",
"BMW 3 E46 COUPE 2001-2003": "https://autopia.ge/en/products?mark=3&model=1073",
"BMW 3 E46 COUPE 2003-2005": "https://autopia.ge/en/products?mark=3&model=1074",
"BMW 3 E90/91 2009-2012": "https://autopia.ge/en/products?mark=3&model=1076",
"BMW 4 F32 2013-2020": "https://autopia.ge/en/products?mark=3&model=1083",
"BMW 4 F33 CABRIO 2013-2020":"https://autopia.ge/en/products?mark=3&model=1082",
"BMW 5 E34 1988-1995": "https://autopia.ge/en/products?mark=3&model=1084",
"BMW 5 E39 1995-2003": "https://autopia.ge/en/products?mark=3&model=1085",
"BMW 5 E60 2003-2007": "https://autopia.ge/en/products?mark=3&model=1086",
"BMW 5 E60 2007-2010": "https://autopia.ge/en/products?mark=3&model=1087",
"BMW 5 GRAND TURISMO F07 2009-2017": "https://autopia.ge/en/products?mark=3&model=1271",
"BMW 5 F10/F11 2010-": "https://autopia.ge/en/products?mark=3&model=1090",
"BMW 5 G30/G31 2017-2020": "https://autopia.ge/en/products?mark=3&model=1063",
"BMW 5 G30/G31 2020-": "https://autopia.ge/en/products?mark=3&model=1089",
"BMW 6 E63 2004-2010": "https://autopia.ge/en/products?mark=3&model=1092",
"BMW 6 S F12/F13 COUPE/CABRIOLET 2012-": "https://autopia.ge/en/products?mark=3&model=1097",
"BMW 7 S E38 1994-2001": "https://autopia.ge/en/products?mark=3&model=1093",
"BMW 7 S E65/E66 2002-2008": "https://autopia.ge/en/products?mark=3&model=1091",
"BMW 7 SR 2006-": "https://autopia.ge/en/products?mark=3&model=328",
"BMW 7 S F01/F02 2008-2012":"https://autopia.ge/en/products?mark=3&model=1094",
"BMW 7 S G11/G12 2016-2018":"https://autopia.ge/en/products?mark=3&model=1095",
"BMW 7 S G11/G12 2019-": "https://autopia.ge/en/products?mark=3&model=1096",
"BMW X1 E84 2009-2013": "https://autopia.ge/en/products?mark=3&model=327",
"BMW X1 E84 2013-2015": "https://autopia.ge/en/products?mark=3&model=338",
"BMW X1 F48 2015-2019": "https://autopia.ge/en/products?mark=3&model=776",
"BMW X1 U11 2022-": "https://autopia.ge/en/products?mark=3&model=1182",
"BMW X2 F39 2018-": "https://autopia.ge/en/products?mark=3&model=948",
"BMW X3 2004-2009": "https://autopia.ge/en/products?mark=3&model=1268",
"BMW X3 G01 2018-": "https://autopia.ge/en/products?mark=3&model=783",
"BMW X4 F26 2015-": "https://autopia.ge/en/products?mark=3&model=673",
"BMW X4 G02 2019-": "https://autopia.ge/en/products?mark=3&model=1018",
"BMW X5 E53 2000-2006": "https://autopia.ge/en/products?mark=3&model=36",
"BMW X5 E53 2004-": "https://autopia.ge/en/products?mark=3&model=37",
"BMW X5 E70 2007-2010": "https://autopia.ge/en/products?mark=3&model=32",
"BMW X5 E70 2010-2013": "https://autopia.ge/en/products?mark=3&model=40",
"BMW X5 F15 2014-": "https://autopia.ge/en/products?mark=3&model=326",
"BMW X5 G05 2019-": "https://autopia.ge/en/products?mark=3&model=786",
"BMW X6 E71 2008-": "https://autopia.ge/en/products?mark=3&model=402",
"BMW X6 F16 2015-": "https://autopia.ge/en/products?mark=3&model=461",
"BMW X6 G06 2020-": "https://autopia.ge/en/products?mark=3&model=743",
"BMW X7 G07 2019-": "https://autopia.ge/en/products?mark=3&model=865",
"BMW I3 2013-": "https://autopia.ge/en/products?mark=3&model=578",
"BMW I8 2014-": "https://autopia.ge/en/products?mark=3&model=1199",
"BMW Z4 E85 2003-2009": "https://autopia.ge/en/products?mark=3&model=442",
"BMW Z4 E86 COUPE 2006-": "https://autopia.ge/en/products?mark=3&model=1098",
"BMW Z4 E89 CABRIO 2009-": "https://autopia.ge/en/products?mark=3&model=1099",
"BMW 5 S G60/G61 2024-": "https://autopia.ge/en/products?mark=3&model=1350",
"BMW X1 F48 2020-": "https://autopia.ge/en/products?mark=3&model=1351",
"BMW X3 F25 2014-2017": "https://autopia.ge/en/products?mark=3&model=1352",
"BMW 3 S G20 M SPORT 2020-2022": "https://autopia.ge/en/products?mark=3&model=1353",
"BMW X3 F25 2010-2014": "https://autopia.ge/en/products?mark=3&model=1354",
"BMW 7 S G11/G12 M SPORT 2016-2018": "https://autopia.ge/en/products?mark=3&model=1356",
"BMW 7 S F02 2012-2015": "https://autopia.ge/en/products?mark=3&model=1358",
"BMW 3 G20 - 2020-": "https://autopia.ge/en/products?mark=3&model=1386",
"BMW X3 F25 2010-2017": "https://autopia.ge/en/products?mark=3&model=1387",
"BMW 8 S G16 2019-": "https://autopia.ge/en/products?mark=3&model=1402"
},
"Buick": {
"Buick Encore 2013-2016": "https://autopia.ge/en/products?mark=68&model=1179",
"Buick Encore 2017-2021": "https://autopia.ge/en/products?mark=68&model=1159",
"Buick Encore GX 2021-": "https://autopia.ge/en/products?mark=68&model=1180",
"Buick Envision 2021-": "https://autopia.ge/en/products?mark=68&model=1181"
},
"Cadillac": {
"Cadillac Escalade 2015-": "https://autopia.ge/en/products?mark=78&model=1218",
"Cadillac Escalade 2021-": "https://autopia.ge/en/products?mark=78&model=995",
"Cadillac CTS 4D Sedan 2014-": "https://autopia.ge/en/products?mark=78&model=965",
"Cadillac SRX 2010-": "https://autopia.ge/en/products?mark=78&model=1035",
"Cadillac ATS 2013-2019": "https://autopia.ge/en/products?mark=78&model=1272",
"Cadillac CTS 2014-": "https://autopia.ge/en/products?mark=78&model=1273",
"Cadillac XT4 2019-": "https://autopia.ge/en/products?mark=78&model=1274"
},
"Chevrolet": {
"Chevrolet Cruze 2013-2015": "https://autopia.ge/en/products?mark=12&model=41",
"Chevrolet Cruze 2016-2020": "https://autopia.ge/en/products?mark=12&model=42",
"Chevrolet Malibu 2013-": "https://autopia.ge/en/products?mark=12&model=287",
"Chevrolet Malibu 2016-2023": "https://autopia.ge/en/products?mark=12&model=269",
"Chevrolet Malibu 2019-": "https://autopia.ge/en/products?mark=12&model=453",
"Chevrolet Camaro 2D Coupe 2010-": "https://autopia.ge/en/products?mark=12&model=270",
"Chevrolet Camaro 2016-": "https://autopia.ge/en/products?mark=12&model=698",
"Chevrolet Volt H/B 2011-": "https://autopia.ge/en/products?mark=12&model=400",
"Chevrolet Volt 2016-": "https://autopia.ge/en/products?mark=12&model=456",
"Chevrolet Bolt 2022-": "https://autopia.ge/en/products?mark=12&model=1052",
"Chevrolet Equinox 2010-2015": "https://autopia.ge/en/products?mark=12&model=427",
"Chevrolet Equinox 2018-2021": "https://autopia.ge/en/products?mark=12&model=748",
"Chevrolet Trax 2014-2016": "https://autopia.ge/en/products?mark=12&model=521",
"Chevrolet Trax 2017-": "https://autopia.ge/en/products?mark=12&model=463",
"Chevrolet Captiva 2006-": "https://autopia.ge/en/products?mark=12&model=401",
"Chevrolet Spark 2017-": "https://autopia.ge/en/products?mark=12&model=740",
"Chevrolet Suburban Tahoe 07-14 /Yukon/Escalade/Silverado": "https://autopia.ge/en/products?mark=12&model=967",
"Chevrolet Aveo (T300)/Sonic Sedan/Hatchback 2011-": "https://autopia.ge/en/products?mark=12&model=968",
"Chevrolet Blazer 2019-": "https://autopia.ge/en/products?mark=12&model=969",
"Chevrolet Trailblazer 5D SUV 2019-": "https://autopia.ge/en/products?mark=12&model=971",
"Chevrolet Orlando 2011-": "https://autopia.ge/en/products?mark=12&model=970",
"Chevrolet Sonic 2012-": "https://autopia.ge/en/products?mark=12&model=1382",
"Chev Corvette C7 Coupe/Cabriolet 2014-19": "https://autopia.ge/en/products?mark=12&model=1403",
"Chev Silverado Sierra 2019-": "https://autopia.ge/en/products?mark=12&model=1404",
"Chevrolet Corvette 2D Coupe 1973-77": "https://autopia.ge/en/products?mark=12&model=1405",
"Chevrolet Captiva 2011-": "https://autopia.ge/en/products?mark=12&model=1417"
},
"Chrysler": {
"Chrysler PT Cruiser 2001-2010": "https://autopia.ge/en/products?mark=38&model=550",
"Chrysler 300 2005-": "https://autopia.ge/en/products?mark=38&model=869",
"Chrysler 200 2015-": "https://autopia.ge/en/products?mark=38&model=868",
"Chrysler Town&Country Voyager/Dodge Caravan Mini Van 2001-": "https://autopia.ge/en/products?mark=38&model=972"
},
"Citroen": {
"Citroen Xara Picasso 1999-2003": "https://autopia.ge/en/products?mark=34&model=426"
},
"Dacia": {
"Dacia Logan 2013-": "https://autopia.ge/en/products?mark=37&model=512",
"Dacia Lodgy 2012-": "https://autopia.ge/en/products?mark=37&model=1202"
},
"Daewoo": {
"Daewoo Matiz 2005-": "https://autopia.ge/en/products?mark=29&model=325",
"Daewoo Matiz 2007-": "https://autopia.ge/en/products?mark=29&model=324",
"Daewoo Matiz 2010-": "https://autopia.ge/en/products?mark=29&model=973"
},
"Daihatsu": {
"Daihatsu Mira/Cuore/Pico 1998-": "https://autopia.ge/en/products?mark=33&model=556",
"Daihatsu Move 1998-": "https://autopia.ge/en/products?mark=33&model=558",
"Daihatsu Terios SUV 1997-06 /Perodua Kembara/Zotye Nomad": "https://autopia.ge/en/products?mark=33&model=974"
},
"Dodge": {
"Dodge Challenger 2015-2024": "https://autopia.ge/en/products?mark=13&model=852",
"Dodge Challenger 2008-2014": "https://autopia.ge/en/products?mark=13&model=398",
"Dodge Charger 2015-2024": "https://autopia.ge/en/products?mark=13&model=924",
"Dodge Journey 2009-2020": "https://autopia.ge/en/products?mark=13&model=792",
"Dodge Dart 2013-2017": "https://autopia.ge/en/products?mark=13&model=870",
"Dodge Durango 2011-2025": "https://autopia.ge/en/products?mark=13&model=833",
"Dodge Ram 2002-2009": "https://autopia.ge/en/products?mark=13&model=1200",
"Dodge Ram Pickup 2013-2018": "https://autopia.ge/en/products?mark=13&model=1207",
"Dodge Ram Pickup 2019-2024": "https://autopia.ge/en/products?mark=13&model=1204",
"Dodge Caliber H/B 2007-2012": "https://autopia.ge/en/products?mark=13&model=43"
},
"Fiat": {
"Fiat 500 2012-2019": "https://autopia.ge/en/products?mark=14&model=44",
"Fiat 500L 2012-2020": "https://autopia.ge/en/products?mark=14&model=268",
"Fiat 500X 2015-2018": "https://autopia.ge/en/products?mark=14&model=45",
"Fiat Punto 1993-1999": "https://autopia.ge/en/products?mark=14&model=266",
"Fiat Punto 1999-2003": "https://autopia.ge/en/products?mark=14&model=46",
"Fiat Punto 2003-2011": "https://autopia.ge/en/products?mark=14&model=323",
"Fiat Tipo 2016-": "https://autopia.ge/en/products?mark=14&model=1046",
"Fiat Doblo 2001-": "https://autopia.ge/en/products?mark=14&model=396",
"Fiat Ducato 2006-": "https://autopia.ge/en/products?mark=14&model=528",
"Fiat Ducato 2014-": "https://autopia.ge/en/products?mark=14&model=1053",
"Fiat Seicento 1998-2001": "https://autopia.ge/en/products?mark=14&model=265",
"Fiat Cinquecento 1993-1998": "https://autopia.ge/en/products?mark=14&model=267",
"Fiat Doblo 2011-": "https://autopia.ge/en/products?mark=14&model=1267"
},
"Ford": {
"Ford Focus 2014-": "https://autopia.ge/en/products?mark=11&model=57",
"Ford Focus 2011-2014": "https://autopia.ge/en/products?mark=11&model=33",
"Ford Focus 2004-2008": "https://autopia.ge/en/products?mark=11&model=424",
"Ford Focus 1998-": "https://autopia.ge/en/products?mark=11&model=264",
"Ford C-Max 2014-": "https://autopia.ge/en/products?mark=11&model=727",
"Ford Fiesta 2013-": "https://autopia.ge/en/products?mark=11&model=54",
"Ford Fiesta 2011-2013": "https://autopia.ge/en/products?mark=11&model=51",
"Ford Fiesta 1996-1999": "https://autopia.ge/en/products?mark=11&model=48",
"Ford Fusion 2019-": "https://autopia.ge/en/products?mark=11&model=516",
"Ford Fusion 2017-2019": "https://autopia.ge/en/products?mark=11&model=286",
"Ford Fusion 2013-2016": "https://autopia.ge/en/products?mark=11&model=59",
"Ford Fusion 2010-2013": "https://autopia.ge/en/products?mark=11&model=844",
"Ford Mustang 2018-2024": "https://autopia.ge/en/products?mark=11&model=485",
"Ford Mustang 2015-2017": "https://autopia.ge/en/products?mark=11&model=395",
"Ford Mustang 2010-2014": "https://autopia.ge/en/products?mark=11&model=898",
"Ford Mustang Mach-E 2022-": "https://autopia.ge/en/products?mark=11&model=1194",
"Ford Escape 2020-": "https://autopia.ge/en/products?mark=11&model=481",
"Ford Escape 2017-2019": "https://autopia.ge/en/products?mark=11&model=480",
"Ford Escape 2012-2016": "https://autopia.ge/en/products?mark=11&model=799",
"Ford Escape 2008-2011": "https://autopia.ge/en/products?mark=11&model=47",
"Ford Explorer 2020-2024": "https://autopia.ge/en/products?mark=11&model=1169",
"Ford Explorer 2016-2019": "https://autopia.ge/en/products?mark=11&model=486",
"Ford Explorer 2011-2015": "https://autopia.ge/en/products?mark=11&model=721",
"Ford Ecosport 2018-2021": "https://autopia.ge/en/products?mark=11&model=778",
"Ford Ecosport 2013-": "https://autopia.ge/en/products?mark=11&model=513",
"Ford Edge 2020-": "https://autopia.ge/en/products?mark=11&model=766",
"Ford Edge 2015-2019": "https://autopia.ge/en/products?mark=11&model=765",
"Ford Edge 2011-2014": "https://autopia.ge/en/products?mark=11&model=1043",
"Ford Ranger 2023-": "https://autopia.ge/en/products?mark=11&model=1192",
"Ford Ranger 2020-2022": "https://autopia.ge/en/products?mark=11&model=1123",
"Ford Ranger 2015-2019": "https://autopia.ge/en/products?mark=11&model=616",
"Ford Ranger 2012-": "https://autopia.ge/en/products?mark=11&model=1191",
"Ford F150 2015-2020": "https://autopia.ge/en/products?mark=11&model=1133",
"Ford F150 2009-": "https://autopia.ge/en/products?mark=11&model=872",
"Ford Bronco 2021-": "https://autopia.ge/en/products?mark=11&model=1019",
"Ford Bronco Sport 2021-": "https://autopia.ge/en/products?mark=11&model=1419",
"Ford Mondeo 2004-2007": "https://autopia.ge/en/products?mark=11&model=801",
"Ford Transit 1995-": "https://autopia.ge/en/products?mark=11&model=336",
"Ford Transit 2000-2007": "https://autopia.ge/en/products?mark=11&model=320",
"Ford Transit 2014-": "https://autopia.ge/en/products?mark=11&model=546",
"Ford Transit Custom 2013-": "https://autopia.ge/en/products?mark=11&model=517",
"Ford Transit Connect 2003-2010": "https://autopia.ge/en/products?mark=11&model=60",
"Ford Transit Connect 2010-2013": "https://autopia.ge/en/products?mark=11&model=522",
"Ford KA 1996-": "https://autopia.ge/en/products?mark=11&model=263",
"Ford Focus 2011-2018": "https://autopia.ge/en/products?mark=11&model=1368"
},
"Foton": {
"Foton Tunland 2012-": "https://autopia.ge/en/products?mark=62&model=685"
},
"GMC": {
"GMC Terrain 2018-": "https://autopia.ge/en/products?mark=70&model=1195",
"GMC Acadia 2007-2017": "https://autopia.ge/en/products?mark=70&model=1406"
},
"Honda": {
"Honda Civic 2022-": "https://autopia.ge/en/products?mark=5&model=976",
"Honda Civic 2019-": "https://autopia.ge/en/products?mark=5&model=955",
"Honda Civic 2016-": "https://autopia.ge/en/products?mark=5&model=919",
"Honda Civic Sedan 2012-2015": "https://autopia.ge/en/products?mark=5&model=437",
"Honda Civic Sedan 2004-2005": "https://autopia.ge/en/products?mark=5&model=260",
"Honda Civic Sedan 2006-2011": "https://autopia.ge/en/products?mark=5&model=1338",
"Honda Civic 2006-": "https://autopia.ge/en/products?mark=5&model=317",
"Honda Civic Sedan 2001-2004": "https://autopia.ge/en/products?mark=5&model=261",
"Honda Civic H/B-L/B 2001-2004": "https://autopia.ge/en/products?mark=5&model=318",
"Honda Civic H/B 2004-2005": "https://autopia.ge/en/products?mark=5&model=319",
"Honda Civic H/B 1999-2000": "https://autopia.ge/en/products?mark=5&model=18",
"Honda Civic H/B 1992-1996": "https://autopia.ge/en/products?mark=5&model=262",
"Honda Civic H/B-Sedan 1996-1999": "https://autopia.ge/en/products?mark=5&model=63",
"Honda CRV 2022-": "https://autopia.ge/en/products?mark=5&model=1177",
"Honda CRV 2020-2022": "https://autopia.ge/en/products?mark=5&model=933",
"Honda CRV 2017-": "https://autopia.ge/en/products?mark=5&model=468",
"Honda CRV 2015-2017": "https://autopia.ge/en/products?mark=5&model=316",
"Honda CRV 2013-2015": "https://autopia.ge/en/products?mark=5&model=71",
"Honda CRV 2009-2013": "https://autopia.ge/en/products?mark=5&model=70",
"Honda CRV 2007-2009": "https://autopia.ge/en/products?mark=5&model=38",
"Honda CRV 2005-2006": "https://autopia.ge/en/products?mark=5&model=69",
"Honda CRV 2002-2004": "https://autopia.ge/en/products?mark=5&model=68",
"Honda CRV 1996-2002": "https://autopia.ge/en/products?mark=5&model=65",
"Honda Accord 2021-": "https://autopia.ge/en/products?mark=5&model=1157",
"Honda Accord 2018-": "https://autopia.ge/en/products?mark=5&model=467",
"Honda Accord 2013-": "https://autopia.ge/en/products?mark=5&model=61",
"Honda Fit 2018-": "https://autopia.ge/en/products?mark=5&model=579",
"Honda Fit 2015-": "https://autopia.ge/en/products?mark=5&model=72",
"Honda Fit/Jazz 2011-2015": "https://autopia.ge/en/products?mark=5&model=391",
"Honda Fit/Jazz 2008-2011": "https://autopia.ge/en/products?mark=5&model=74",
"Honda Fit/Jazz 2004-2008": "https://autopia.ge/en/products?mark=5&model=259",
"Honda Fit/Jazz 2002-2004": "https://autopia.ge/en/products?mark=5&model=73",
"Honda Pilot 2018-": "https://autopia.ge/en/products?mark=5&model=640",
"Honda HRV 2022-": "https://autopia.ge/en/products?mark=5&model=1216",
"Honda HRV 2019-2021": "https://autopia.ge/en/products?mark=5&model=676",
"Honda HRV 2015-": "https://autopia.ge/en/products?mark=5&model=75",
"Honda HRV 1998-": "https://autopia.ge/en/products?mark=5&model=390",
"Honda Insight 2019-": "https://autopia.ge/en/products?mark=5&model=806",
"Honda Insight 2009-2014": "https://autopia.ge/en/products?mark=5&model=76",
"Honda N-One 2012-": "https://autopia.ge/en/products?mark=5&model=977",
"Honda Freed 2008-": "https://autopia.ge/en/products?mark=5&model=999",
"Honda Freed 2017-": "https://autopia.ge/en/products?mark=5&model=1001",
"Honda CRZ 2011-2016": "https://autopia.ge/en/products?mark=5&model=315",
"Honda EDIX 2004-2009": "https://autopia.ge/en/products?mark=5&model=626",
"Honda Odyssey L/H/G 1999-03": "https://autopia.ge/en/products?mark=5&model=388",
"Honda Odyssey 2003-2008": "https://autopia.ge/en/products?mark=5&model=389",
"Honda Odyssey 2011-2017": "https://autopia.ge/en/products?mark=5&model=876",
"Honda Stream 2001-2006": "https://autopia.ge/en/products?mark=5&model=386",
"Honda Stepwgn 2005-09": "https://autopia.ge/en/products?mark=5&model=387",
"Honda Stepwgn 2010-": "https://autopia.ge/en/products?mark=5&model=732",
"Honda Elysion MPV 2004-": "https://autopia.ge/en/products?mark=5&model=392",
"Honda Elysion Prestige MPV 2007-2013": "https://autopia.ge/en/products?mark=5&model=875",
"Honda Airwav 2005-2010": "https://autopia.ge/en/products?mark=5&model=393",
"Honda ACTY III (HH5) /VAMOS II (HM1) VAN 1999-": "https://autopia.ge/en/products?mark=5&model=975",
"Honda HRV Hibryd 2023-": "https://autopia.ge/en/products?mark=5&model=1343",
"Honda Fit 2008-2011": "https://autopia.ge/en/products?mark=5&model=1374",
"Honda Fit 2013-": "https://autopia.ge/en/products?mark=5&model=1375",
"Honda Accord 2013-17": "https://autopia.ge/en/products?mark=5&model=1421"
},
"Hyundai": {
"Hyundai Accent 2018-": "https://autopia.ge/en/products?mark=9&model=455",
"Hyundai Accent 2012-2017/Hyundai Solaris 2012-2014": "https://autopia.ge/en/products?mark=9&model=634",
"Hyundai Elantra GT 2018-2020": "https://autopia.ge/en/products?mark=9&model=760",
"Hyundai Elantra GT 5D 2012-": "https://autopia.ge/en/products?mark=9&model=257",
"Hyundai Elantra 2021-": "https://autopia.ge/en/products?mark=9&model=797",
"Hyundai Elantra 2019-": "https://autopia.ge/en/products?mark=9&model=500",
"Hyundai Elantra 2017-": "https://autopia.ge/en/products?mark=9&model=258",
"Hyundai Elantra 2014-": "https://autopia.ge/en/products?mark=9&model=335",
"Hyundai Elantra 2011-": "https://autopia.ge/en/products?mark=9&model=77",
"Hyundai Elantra 2006-2010": "https://autopia.ge/en/products?mark=9&model=703",
"Hyundai Elantra 2000-2005": "https://autopia.ge/en/products?mark=9&model=436",
"Hyundai Sonata Hibryd 2020-": "https://autopia.ge/en/products?mark=9&model=942",
"Hyundai Sonata 2020-": "https://autopia.ge/en/products?mark=9&model=790",
"Hyundai Sonata 2018-": "https://autopia.ge/en/products?mark=9&model=285",
"Hyundai Sonata 2015-": "https://autopia.ge/en/products?mark=9&model=255",
"Hyundai Sonata 2011-": "https://autopia.ge/en/products?mark=9&model=26",
"Hyundai Tucson 2021-": "https://autopia.ge/en/products?mark=9&model=745",
"Hyundai Tucson 2018-2020": "https://autopia.ge/en/products?mark=9&model=520",
"Hyundai Tucson 2016-": "https://autopia.ge/en/products?mark=9&model=254",
"Hyundai IX35 2010-": "https://autopia.ge/en/products?mark=9&model=79",
"Hyundai Tucson 2004-": "https://autopia.ge/en/products?mark=9&model=84",
"Hyundai Santa Fe 2000-2006": "https://autopia.ge/en/products?mark=9&model=80",
"Hyundai Santa Fe 2006-": "https://autopia.ge/en/products?mark=9&model=81",
"Hyundai Santa Fe 2013-": "https://autopia.ge/en/products?mark=9&model=82",
"Hyundai Santa Fe 2016-": "https://autopia.ge/en/products?mark=9&model=474",
"Hyundai Santa Fe 2019-": "https://autopia.ge/en/products?mark=9&model=945",
"Hyundai Santa Fe 2021-": "https://autopia.ge/en/products?mark=9&model=808",
"Hyundai Kona 2017-2021": "https://autopia.ge/en/products?mark=9&model=1252",
"Hyundai Kona 2022-": "https://autopia.ge/en/products?mark=9&model=1244",
"Hyundai Veloster 2012-": "https://autopia.ge/en/products?mark=9&model=253",
"Hyundai Getz 2002-2005": "https://autopia.ge/en/products?mark=9&model=256",
"Hyundai Getz 2006-": "https://autopia.ge/en/products?mark=9&model=78",
"Hyundai i30 2007-2012": "https://autopia.ge/en/products?mark=9&model=609",
"Hyundai Ioniq 2017-": "https://autopia.ge/en/products?mark=9&model=619",
"Hyundai Ioniq 2022-": "https://autopia.ge/en/products?mark=9&model=1206",
"Hyundai Grandeur 2012-": "https://autopia.ge/en/products?mark=9&model=561",
"Hyundai Palisade 2020-": "https://autopia.ge/en/products?mark=9&model=877",
"Hyundai Venue - 2020-": "https://autopia.ge/en/products?mark=9&model=911",
"Hyundai Genesis Coupe 2009-": "https://autopia.ge/en/products?mark=9&model=1201",
"Hyundai Atos 1998-2003": "https://autopia.ge/en/products?mark=9&model=313",
"Hyundai H1 2007-": "https://autopia.ge/en/products?mark=9&model=846",
"Hyundai H350/Solati 2016-": "https://autopia.ge/en/products?mark=9&model=807"
},
"Infiniti": {
"Infiniti FX35/FX45 2004-2008": "https://autopia.ge/en/products?mark=32&model=385",
"Infiniti FX35/FX45 2008-": "https://autopia.ge/en/products?mark=32&model=657",
"Infiniti QX60/JX35 2013-2020": "https://autopia.ge/en/products?mark=32&model=880",
"Infiniti QX60 2016-2020": "https://autopia.ge/en/products?mark=32&model=879",
"Infiniti Q30/QX30 5D HBK 2016-": "https://autopia.ge/en/products?mark=32&model=978"
},
"Iveco": {
"Iveco S3 2019": "https://autopia.ge/en/products?mark=59&model=660"
},
"Jaguar": {
"Jaguar XF X250 Sedan 2008-2015": "https://autopia.ge/en/products?mark=63&model=988",
"Jaguar XF Sedan 2021-": "https://autopia.ge/en/products?mark=63&model=994",
"Jaguar XE Sedan 2016-20": "https://autopia.ge/en/products?mark=63&model=991",
"Jaguar F-PACE 5D SUV 2016-": "https://autopia.ge/en/products?mark=63&model=992",
"Jaguar F-PACE 5D SUV 2021-": "https://autopia.ge/en/products?mark=63&model=993"
},
"Jeep": {
"Jeep Grand Cherokee 2022-": "https://autopia.ge/en/products?mark=2&model=1257",
"Jeep Grand Cherokee 2017-": "https://autopia.ge/en/products?mark=2&model=949",
"Jeep Grand Cherokee 2014-": "https://autopia.ge/en/products?mark=2&model=493",
"Jeep Grand Cherokee 2011-": "https://autopia.ge/en/products?mark=2&model=312",
"Jeep Grand Cherokee 2008-2010": "https://autopia.ge/en/products?mark=2&model=86",
"Jeep Grand Cherokee 2005-2008": "https://autopia.ge/en/products?mark=2&model=49",
"Jeep Grand Cherokee 1999-2004": "https://autopia.ge/en/products?mark=2&model=8",
"Jeep Cherokee 2019-": "https://autopia.ge/en/products?mark=2&model=785",
"Jeep Cherokee 2014-": "https://autopia.ge/en/products?mark=2&model=284",
"Jeep Renegade 2019-": "https://autopia.ge/en/products?mark=2&model=950",
"Jeep Renegade 2014-": "https://autopia.ge/en/products?mark=2&model=449",
"Jeep Patriot 2007-": "https://autopia.ge/en/products?mark=2&model=462",
"Jeep Compass 2022-": "https://autopia.ge/en/products?mark=2&model=1246",
"Jeep Compass 2017-": "https://autopia.ge/en/products?mark=2&model=530",
"Jeep Compass 2011-2017": "https://autopia.ge/en/products?mark=2&model=535"
},
"Kia": {
"Kia K5 2020-": "https://autopia.ge/en/products?mark=15&model=1033",
"Kia Optima 2019-": "https://autopia.ge/en/products?mark=15&model=635",
"Kia Optima 2016-": "https://autopia.ge/en/products?mark=15&model=383",
"Kia Optima 2014-2015": "https://autopia.ge/en/products?mark=15&model=252",
"Kia Optima 2011-2013": "https://autopia.ge/en/products?mark=15&model=87",
"Kia Sportage 2022-": "https://autopia.ge/en/products?mark=15&model=809",
"Kia Sportage 2019-": "https://autopia.ge/en/products?mark=15&model=956",
"Kia Sportage 2016-": "https://autopia.ge/en/products?mark=15&model=50",
"Kia Sportage 2011-": "https://autopia.ge/en/products?mark=15&model=91",
"Kia Sportage 2009-2011": "https://autopia.ge/en/products?mark=15&model=88",
"Kia Sorento 2021-": "https://autopia.ge/en/products?mark=15&model=882",
"Kia Sorento 2015-2020": "https://autopia.ge/en/products?mark=15&model=767",
"Kia Sorento 2010-": "https://autopia.ge/en/products?mark=15&model=288",
"Kia Sportage 2005-2008": "https://autopia.ge/en/products?mark=15&model=248",
"Kia Sorento 2002-2004": "https://autopia.ge/en/products?mark=15&model=250",
"Kia Seltos 2020-": "https://autopia.ge/en/products?mark=15&model=881",
"Kia Soul 2020-2022": "https://autopia.ge/en/products?mark=15&model=1247",
"Kia Soul 2014-2019": "https://autopia.ge/en/products?mark=15&model=1278",
"Kia Soul 2008-2013": "https://autopia.ge/en/products?mark=15&model=1280",
"Kia Telluride SUV 2020-": "https://autopia.ge/en/products?mark=15&model=1007",
"Kia Forte 2009-2013": "https://autopia.ge/en/products?mark=15&model=1151",
"Kia Forte 2014-": "https://autopia.ge/en/products?mark=15&model=1152",
"Kia Forte 2019-": "https://autopia.ge/en/products?mark=15&model=1153",
"Kia Ceed 2007-2011": "https://autopia.ge/en/products?mark=15&model=311",
"Kia Cadenza 2017-": "https://autopia.ge/en/products?mark=15&model=1144",
"Kia Cadenza 2010-": "https://autopia.ge/en/products?mark=15&model=1142",
"Kia Picanto 2004-2010": "https://autopia.ge/en/products?mark=15&model=435",
"Kia Picanto 2011-2016": "https://autopia.ge/en/products?mark=15&model=1135",
"Kia Picanto 2017-": "https://autopia.ge/en/products?mark=15&model=708",
"Kia Stinger 2021-": "https://autopia.ge/en/products?mark=15&model=1002",
"Kia Stinger 2017-": "https://autopia.ge/en/products?mark=15&model=744",
"Kia Sedona 2015-2018": "https://autopia.ge/en/products?mark=15&model=1258",
"Kia Rio 2012-": "https://autopia.ge/en/products?mark=15&model=444",
"Kia Niro 2020-2021": "https://autopia.ge/en/products?mark=15&model=1243",
"Kia Niro 2017-": "https://autopia.ge/en/products?mark=15&model=1054",
"Kia Rio 2017-2020": "https://autopia.ge/en/products?mark=15&model=1346",
"Kia Carnival 2015-2020": "https://autopia.ge/en/products?mark=15&model=1407",
"Kia Carnival 2021-": "https://autopia.ge/en/products?mark=15&model=1408"
},
"Land Rover": {
"Land Rover Range Rover Sport 2016-": "https://autopia.ge/en/products?mark=17&model=825",
"Land Rover Range Rover Sport 2010-2013": "https://autopia.ge/en/products?mark=17&model=64",
"Land Rover Range Rover 2011-2012": "https://autopia.ge/en/products?mark=17&model=95",
"Land Rover Evoque 2021-": "https://autopia.ge/en/products?mark=17&model=811",
"Land Rover Evoque 2019-": "https://autopia.ge/en/products?mark=17&model=810",
"Land Rover Evoque 2011-2015": "https://autopia.ge/en/products?mark=17&model=1167",
"Land Rover Range Rover Vogue 2015-": "https://autopia.ge/en/products?mark=17&model=826",
"Land Rover Discovery 2021": "https://autopia.ge/en/products?mark=17&model=1383",
"Land Rover Discovery 2017-2020": "https://autopia.ge/en/products?mark=17&model=980",
"Land Rover Discovery 2010-2014": "https://autopia.ge/en/products?mark=17&model=283",
"Land Rover Discovery 2005-2010": "https://autopia.ge/en/products?mark=17&model=981",
"Land Rover Discover 1996-2002": "https://autopia.ge/en/products?mark=17&model=731",
"Land Rover Evoque 2015-2018": "https://autopia.ge/en/products?mark=17&model=1390"
},
"Lexus": {
"Lexus RX ALH20 2020-2022": "https://autopia.ge/en/products?mark=20&model=937",
"Lexus RX350/450H/RX200T 2016-2021": "https://autopia.ge/en/products?mark=20&model=505",
"Lexus RX350/450 2013-2015": "https://autopia.ge/en/products?mark=20&model=101",
"Lexus RX350/450 2010-2012": "https://autopia.ge/en/products?mark=20&model=100",
"Lexus RX400H 2006-": "https://autopia.ge/en/products?mark=20&model=246",
"Lexus RX330 2004-": "https://autopia.ge/en/products?mark=20&model=99",
"Lexus GX460 2009-2022": "https://autopia.ge/en/products?mark=20&model=309",
"Lexus GX460 2014-2023": "https://autopia.ge/en/products?mark=20&model=1348",
"Lexus GX470 2003-2008": "https://autopia.ge/en/products?mark=20&model=97",
"Lexus NX 2015-2021": "https://autopia.ge/en/products?mark=20&model=1120",
"Lexus ES300 2022-": "https://autopia.ge/en/products?mark=20&model=1170",
"Lexus ES300H/ES350 2019-2021": "https://autopia.ge/en/products?mark=20&model=487",
"Lexus ES350 2016-2018": "https://autopia.ge/en/products?mark=20&model=478",
"Lexus ES350/ES300 2013-": "https://autopia.ge/en/products?mark=20&model=382",
"Lexus ES350 2006-2012": "https://autopia.ge/en/products?mark=20&model=310",
"Lexus CT200 2010-": "https://autopia.ge/en/products?mark=20&model=96",
"Lexus CT200 2018-": "https://autopia.ge/en/products?mark=20&model=1038",
"Lexus IS250/350/200T 2014-2020": "https://autopia.ge/en/products?mark=20&model=542",
"Lexus IS250 2011-2013": "https://autopia.ge/en/products?mark=20&model=420",
"Lexus IS250 2006-2008": "https://autopia.ge/en/products?mark=20&model=421",
"Lexus IS XE20 Sedan 2005-2013": "https://autopia.ge/en/products?mark=20&model=982",
"Lexus IS/Altezza 1999-": "https://autopia.ge/en/products?mark=20&model=576",
"Lexus LX570 2016-": "https://autopia.ge/en/products?mark=20&model=308",
"Lexus LX570 2008-2015": "https://autopia.ge/en/products?mark=20&model=1193",
"Lexus UX 2019-": "https://autopia.ge/en/products?mark=20&model=850",
"Lexus LS350/LS500H 2018-": "https://autopia.ge/en/products?mark=20&model=812",
"Lexus HS250 2010-": "https://autopia.ge/en/products?mark=20&model=334",
"Lexus GS 2005-2011": "https://autopia.ge/en/products?mark=20&model=893",
"Lexus GS 2012-2020": "https://autopia.ge/en/products?mark=20&model=705",
"Lexus RC Coupe 2016-": "https://autopia.ge/en/products?mark=20&model=883"
},
"Lincoln": {
"Lincoln MKZ 2013-2016": "https://autopia.ge/en/products?mark=72&model=1036",
"Lincoln MKZ 2017-": "https://autopia.ge/en/products?mark=72&model=884",
"Lincoln MKC 2014-2018": "https://autopia.ge/en/products?mark=72&model=1037",
"Lincoln MKC 2019-": "https://autopia.ge/en/products?mark=72&model=1188"
},
"MAN": {
"MAN L2000 1993-1996": "https://autopia.ge/en/products?mark=55&model=636",
"MAN L2000 2000-": "https://autopia.ge/en/products?mark=55&model=756"
},
"Maserati": {
"Maserati Levante 2016-": "https://autopia.ge/en/products?mark=73&model=885",
"Maserati Quattroporte/Ghibli 2013-": "https://autopia.ge/en/products?mark=73&model=887",
"Maserati Quattroporte/Ghibli 2017-": "https://autopia.ge/en/products?mark=73&model=888"
},
"Mazda": {
"Mazda 3 2019-": "https://autopia.ge/en/products?mark=18&model=476",
"Mazda 3 2016-2019": "https://autopia.ge/en/products?mark=18&model=518",
"Mazda 3 2014-": "https://autopia.ge/en/products?mark=18&model=94",
"Mazda 5 2005-2010": "https://autopia.ge/en/products?mark=18&model=441",
"Mazda 3 2008-": "https://autopia.ge/en/products?mark=18&model=944",
"Mazda 3 2003-2007": "https://autopia.ge/en/products?mark=18&model=102",
"Mazda 5 2010-2015": "https://autopia.ge/en/products?mark=18&model=105",
"Mazda 6 2018-": "https://autopia.ge/en/products?mark=18&model=496",
"Mazda 6 2016-2017": "https://autopia.ge/en/products?mark=18&model=519",
"Mazda 6 2013-2016": "https://autopia.ge/en/products?mark=18&model=103",
"Mazda 6 2008-2013": "https://autopia.ge/en/products?mark=18&model=245",
"Mazda 6/Atenza 2002-2008": "https://autopia.ge/en/products?mark=18&model=381",
"Mazda 6 2002-2005": "https://autopia.ge/en/products?mark=18&model=106",
"Mazda CX7 2007-": "https://autopia.ge/en/products?mark=18&model=307",
"Mazda CX3 2015-": "https://autopia.ge/en/products?mark=18&model=85",
"Mazda CX5 2022-": "https://autopia.ge/en/products?mark=18&model=934",
"Mazda CX5 2017-": "https://autopia.ge/en/products?mark=18&model=848",
"Mazda CX5 2013-2016": "https://autopia.ge/en/products?mark=18&model=108",
"Mazda CX9 2016-": "https://autopia.ge/en/products?mark=18&model=800",
"Mazda RX8 2003-": "https://autopia.ge/en/products?mark=18&model=306",
"Mazda CX30 2020-": "https://autopia.ge/en/products?mark=18&model=781",
"Mazda CX50 2023-": "https://autopia.ge/en/products?mark=18&model=1168",
"Mazda Tribute 2001-2006": "https://autopia.ge/en/products?mark=18&model=377",
"Mazda Verisa/Belisa 5D H/B 2004-": "https://autopia.ge/en/products?mark=18&model=376",
"Mazda MPV Mini Van 2000-": "https://autopia.ge/en/products?mark=18&model=379",
"Mazda Premacy MPV 1998-": "https://autopia.ge/en/products?mark=18&model=378",
"Mazda Demio 2003-": "https://autopia.ge/en/products?mark=18&model=380",
"Mazda Premacy 2004-/ Mazda 5 2004-": "https://autopia.ge/en/products?mark=18&model=655",
"Mazda Titan Truck 1998-2000": "https://autopia.ge/en/products?mark=18&model=814",
"Mazda MX5 Miata/Fiat 124 Spyder 2D Cabriolet 2019-": "https://autopia.ge/en/products?mark=18&model=1409"
},
"Mercedes": {
"Mercedes C190 Coupe/R190 Roadster 2015-": "https://autopia.ge/en/products?mark=4&model=889",
"Mercedes W206 C-CL 2021-": "https://autopia.ge/en/products?mark=4&model=894",
"Mercedes W206 AMG C-CL 2021-": "https://autopia.ge/en/products?mark=4&model=1261",
"Mercedes W205 C-CL 2019-": "https://autopia.ge/en/products?mark=4&model=1234",
"Mercedes W205 C-CL 2015-": "https://autopia.ge/en/products?mark=4&model=539",
"Mercedes W205 AMG C-CL 2015-": "https://autopia.ge/en/products?mark=4&model=1233",
"Mercedes W204 C-Class 2011-2014": "https://autopia.ge/en/products?mark=4&model=123",
"Mercedes W204 C-Class Coupe 2011-2014": "https://autopia.ge/en/products?mark=4&model=124",
"Mercedes W204 C-Class 2007-2011": "https://autopia.ge/en/products?mark=4&model=122",
"Mercedes W203 C-Class 2004-2007": "https://autopia.ge/en/products?mark=4&model=119",
"Mercedes C203 Sport Coupe 2001-": "https://autopia.ge/en/products?mark=4&model=375",
"Mercedes W203 C-Class 2000-2004": "https://autopia.ge/en/products?mark=4&model=120",
"Mercedes W202 C-Class 1993-1999": "https://autopia.ge/en/products?mark=4&model=66",
"Mercedes W215 CL 1999-2006": "https://autopia.ge/en/products?mark=4&model=1023",
"Mercedes W208 CLK 1997-2002": "https://autopia.ge/en/products?mark=4&model=373",
"Mercedes W209 CLK 2003-2006": "https://autopia.ge/en/products?mark=4&model=239",
"Mercedes X156 GLA 2014-2016": "https://autopia.ge/en/products?mark=4&model=1265",
"Mercedes GLA 2017-2019": "https://autopia.ge/en/products?mark=4&model=536",
"Mercedes GLA 2020-": "https://autopia.ge/en/products?mark=4&model=1184",
"Mercedes CLA 2013-2016": "https://autopia.ge/en/products?mark=4&model=1210",
"Mercedes CLA AMG 2013-2016": "https://autopia.ge/en/products?mark=4&model=1212",
"Mercedes CLA 2017-2019": "https://autopia.ge/en/products?mark=4&model=1211",
"Mercedes CLA AMG 2017-2019": "https://autopia.ge/en/products?mark=4&model=1214",
"Mercedes CLA 2020-": "https://autopia.ge/en/products?mark=4&model=1213",
"Mercedes W124 E-Class 1989-1992": "https://autopia.ge/en/products?mark=4&model=112",
"Mercedes W210 E-Class 1995-1999": "https://autopia.ge/en/products?mark=4&model=125",
"Mercedes W210 E-Class 1999-2002": "https://autopia.ge/en/products?mark=4&model=126",
"Mercedes W211 E-Class 2002-2007": "https://autopia.ge/en/products?mark=4&model=127",
"Mercedes W211 E-Class 2007-2009": "https://autopia.ge/en/products?mark=4&model=128",
"Mercedes W212 E-Class 2009-2013": "https://autopia.ge/en/products?mark=4&model=129",
"Mercedes W212 E-Class 2013-2016": "https://autopia.ge/en/products?mark=4&model=10",
"Mercedes W213 E-Class 2016-2020": "https://autopia.ge/en/products?mark=4&model=450",
"Mercedes C238 E-CL Coupe 2017-2020": "https://autopia.ge/en/products?mark=4&model=890",
"Mercedes W220 1998-": "https://autopia.ge/en/products?mark=4&model=333",
"Mercedes W220 S-CL": "https://autopia.ge/en/products?mark=4&model=729",
"Mercedes W221 S-Class Sedan 2006-": "https://autopia.ge/en/products?mark=4&model=581",
"Mercedes W222 S-CL Sedan 2013-2020": "https://autopia.ge/en/products?mark=4&model=770",
"Mercedes W223 S-CL 2021-": "https://autopia.ge/en/products?mark=4&model=895",
"Mercedes W219 CLS 4D Coupe 2004-": "https://autopia.ge/en/products?mark=4&model=372",
"Mercedes W218/w257 CLS Coupe 2012-2023": "https://autopia.ge/en/products?mark=4&model=918",
"Mercedes W216 2010-2016": "https://autopia.ge/en/products?mark=4&model=679",
"Mercedes W163 ML-Class 1998-2001": "https://autopia.ge/en/products?mark=4&model=113",
"Mercedes W163 ML-Class 2002-2005": "https://autopia.ge/en/products?mark=4&model=114",
"Mercedes W164 ML-Class 2006-2011": "https://autopia.ge/en/products?mark=4&model=115",
"Mercedes W166 ML-Class 2012-": "https://autopia.ge/en/products?mark=4&model=117",
"Mercedes W166 GLE 2015-2019": "https://autopia.ge/en/products?mark=4&model=769",
"Mercedes C292 GLE Coupe 2015-": "https://autopia.ge/en/products?mark=4&model=1160",
"Mercedes GLE W167 2019-": "https://autopia.ge/en/products?mark=4&model=793",
"Mercedes GLS X167 2020-": "https://autopia.ge/en/products?mark=4&model=1056",
"Mercedes GLS X166 2016-2019": "https://autopia.ge/en/products?mark=4&model=1259",
"Mercedes X164 GL Class 2006-2012": "https://autopia.ge/en/products?mark=4&model=130",
"Mercedes X166 GL Class 2013-2015": "https://autopia.ge/en/products?mark=4&model=771",
"Mercedes GLC X253 2016-2019/C253 2016-2019": "https://autopia.ge/en/products?mark=4&model=794",
"Mercedes GLC X253 2020-/C253 2020-": "https://autopia.ge/en/products?mark=4&model=795",
"Mercedes X204 GLK 2008-2015": "https://autopia.ge/en/products?mark=4&model=131",
"Mercedes GLB X247 2020-": "https://autopia.ge/en/products?mark=4&model=817",
"Mercedes W169 A-Class 2004-2012": "https://autopia.ge/en/products?mark=4&model=118",
"Mercedes W245 B-Class 2006-2011": "https://autopia.ge/en/products?mark=4&model=238",
"Mercedes W246 B-CL 2012-2018": "https://autopia.ge/en/products?mark=4&model=617",
"Mercedes W168 A-Class 1997-2001": "https://autopia.ge/en/products?mark=4&model=240",
"Mercedes W169 A-Class 2015-": "https://autopia.ge/en/products?mark=4&model=990",
"Mercedes W207 E-Class Coupe 2010-2017": "https://autopia.ge/en/products?mark=4&model=621",
"Mercedes W201 1983-1993": "https://autopia.ge/en/products?mark=4&model=305",
"Mercedes W463 G-Class 1997-": "https://autopia.ge/en/products?mark=4&model=577",
"Mercedes W463 G-Class 2019-": "https://autopia.ge/en/products?mark=4&model=897",
"Mercedes W251 R Class 2005-2012": "https://autopia.ge/en/products?mark=4&model=896",
"Mercedes Vito 1996-2003": "https://autopia.ge/en/products?mark=4&model=110",
"Mercedes Vito 2003-2010": "https://autopia.ge/en/products?mark=4&model=111",
"Mercedes Vito 2011-2015": "https://autopia.ge/en/products?mark=4&model=419",
"Mercedes Vito 2015-": "https://autopia.ge/en/products?mark=4&model=643",
"Mercedes Sprinter 1995-2006": "https://autopia.ge/en/products?mark=4&model=242",
"Mercedes Sprinter 2000-2006": "https://autopia.ge/en/products?mark=4&model=241",
"Mercedes Sprinter 2006-": "https://autopia.ge/en/products?mark=4&model=374",
"Mercedes Atego 2004-": "https://autopia.ge/en/products?mark=4&model=639",
"Mercedes Actros 1996-2013": "https://autopia.ge/en/products?mark=4&model=1024",
"Mercedes C207 Coupe 2010-2016": "https://autopia.ge/en/products?mark=4&model=1347",
"Mercedes GLC X254 AMG 2023-/C254 2023-": "https://autopia.ge/en/products?mark=4&model=1355",
"Mercedes GLE W167 AMG 2019-": "https://autopia.ge/en/products?mark=4&model=1357",
"Mercedes R170 SLK 2003-": "https://autopia.ge/en/products?mark=4&model=1364",
"Mercedes W245 B-Class 2005-2011": "https://autopia.ge/en/products?mark=4&model=1367",
"Mercedes W204 C-Class 2007-2014": "https://autopia.ge/en/products?mark=4&model=1370",
"Mercedes W166 ML-Class 2012-2018": "https://autopia.ge/en/products?mark=4&model=1372",
"Mercedes W166 ML-Class 2016-": "https://autopia.ge/en/products?mark=4&model=1381",
"Mercedes ML/GLE SUV 2012-15": "https://autopia.ge/en/products?mark=4&model=1410",
"Mercedes W169 A-Class 2015-": "https://autopia.ge/en/products?mark=4&model=990", # duplicate; already included above
"Mercedes Sprinter 2006-": "https://autopia.ge/en/products?mark=4&model=374",
"Mercedes Atego 2004-": "https://autopia.ge/en/products?mark=4&model=639",
"Mercedes Actros 1996-2013": "https://autopia.ge/en/products?mark=4&model=1024",
"Mercedes C207 Coupe 2010-2016": "https://autopia.ge/en/products?mark=4&model=1347",
"Mercedes GLC X254 AMG 2023-/C254 2023-": "https://autopia.ge/en/products?mark=4&model=1355",
"Mercedes GLE W167 AMG 2019-": "https://autopia.ge/en/products?mark=4&model=1357",
"Mercedes R170 SLK 2003-": "https://autopia.ge/en/products?mark=4&model=1364",
"Mercedes W245 B-Class 2005-2011": "https://autopia.ge/en/products?mark=4&model=1367",
"Mercedes W204 C-Class 2007-2014": "https://autopia.ge/en/products?mark=4&model=1370",
"Mercedes W166 ML-Class 2012-2018": "https://autopia.ge/en/products?mark=4&model=1372",
"Mercedes W166 ML-Class 2016-": "https://autopia.ge/en/products?mark=4&model=1381",
"Mercedes ML/GLE SUV 2012-15": "https://autopia.ge/en/products?mark=4&model=1410"
},
"Mini": {
"Mini Countryman 2010-": "https://autopia.ge/en/products?mark=21&model=121",
"Mini Countryman 2017": "https://autopia.ge/en/products?mark=21&model=599",
"Mini Cooper/One 2002-2006": "https://autopia.ge/en/products?mark=21&model=237",
"Mini Cooper/One 2006-2011": "https://autopia.ge/en/products?mark=21&model=236",
"Mini Cooper/One 2014-": "https://autopia.ge/en/products?mark=21&model=600"
},
"Mitsubishi": {
"Mitsubishi L200 1997-1999": "https://autopia.ge/en/products?mark=8&model=418",
"Mitsubishi L200 2006-2015": "https://autopia.ge/en/products?mark=8&model=789",
"Mitsubishi L200 2016-2018": "https://autopia.ge/en/products?mark=8&model=788",
"Mitsubishi L200 2019-": "https://autopia.ge/en/products?mark=8&model=466",
"Mitsubishi Lancer 2004-2008": "https://autopia.ge/en/products?mark=8&model=234",
"Mitsubishi Outlander 2003-2007": "https://autopia.ge/en/products?mark=8&model=233",
"Mitsubishi Outlander 2007-2010": "https://autopia.ge/en/products?mark=8&model=841",
"Mitsubishi Outlander 2010-2012": "https://autopia.ge/en/products?mark=8&model=840",
"Mitsubishi Outlander 2013-2015": "https://autopia.ge/en/products?mark=8&model=842",
"Mitsubishi Outlander 2015-2018": "https://autopia.ge/en/products?mark=8&model=843",
"Mitsubishi Outlander 2018-2021": "https://autopia.ge/en/products?mark=8&model=845",
"Mitsubishi Outlander 2022-": "https://autopia.ge/en/products?mark=8&model=818",
"Mitsubishi Outlander Sport (ASX) 2010-": "https://autopia.ge/en/products?mark=8&model=89",
"Mitsubishi Outlander Sport (ASX) 2012-": "https://autopia.ge/en/products?mark=8&model=132",
"Mitsubishi Outlander Sport (ASX) 2017-": "https://autopia.ge/en/products?mark=8&model=570",
"Mitsubishi Outlander Sport (ASX) 2020-": "https://autopia.ge/en/products?mark=8&model=936",
"Mitsubishi Eclipse Cross 2018-": "https://autopia.ge/en/products?mark=8&model=720",
"Mitsubishi Pajero 1997-1999": "https://autopia.ge/en/products?mark=8&model=136",
"Mitsubishi Pajero 2007-": "https://autopia.ge/en/products?mark=8&model=137",
"Mitsubishi Pajero/Montero 1991-": "https://autopia.ge/en/products?mark=8&model=366",
"Mitsubishi Pajero Jeep 2000-": "https://autopia.ge/en/products?mark=8&model=367",
"Mitsubishi Colt 2004-": "https://autopia.ge/en/products?mark=8&model=304",
"Mitsubishi Lancer 1997-2004": "https://autopia.ge/en/products?mark=8&model=417",
"Mitsubishi Lancer 2008-": "https://autopia.ge/en/products?mark=8&model=282",
"Mitsubishi Grandis Chariot 1997-": "https://autopia.ge/en/products?mark=8&model=369",
"Mitsubishi Grandis 2004-": "https://autopia.ge/en/products?mark=8&model=370",
"Mitsubishi Delica 1994-": "https://autopia.ge/en/products?mark=8&model=371"
},
"Nissan": {
"Nissan Almera 2000-": "https://autopia.ge/en/products?mark=22&model=429",
"Nissan Fuga/Infiniti 2005-": "https://autopia.ge/en/products?mark=22&model=364",
"Nissan Juke 2010-2015": "https://autopia.ge/en/products?mark=22&model=138",
"Nissan Juke 2015-": "https://autopia.ge/en/products?mark=22&model=416",
"Nissan Kicks 2018-": "https://autopia.ge/en/products?mark=22&model=750",
"Nissan Kicks 2021-": "https://autopia.ge/en/products?mark=22&model=1248",
"Nissan Leaf 2011-": "https://autopia.ge/en/products?mark=22&model=363",
"Nissan Leaf 2018-": "https://autopia.ge/en/products?mark=22&model=819",
"Nissan Micra K11 1993-1998": "https://autopia.ge/en/products?mark=22&model=139",
"Nissan Micra 1998-2000": "https://autopia.ge/en/products?mark=22&model=231",
"Nissan Micra 2000-2002": "https://autopia.ge/en/products?mark=22&model=230",
"Nissan Micra/March 2011-": "https://autopia.ge/en/products?mark=22&model=820",
"Nissan Micra 2014-2017": "https://autopia.ge/en/products?mark=22&model=340",
"Nissan Murano 2003-": "https://autopia.ge/en/products?mark=22&model=140",
"Nissan Murano 2009-2014": "https://autopia.ge/en/products?mark=22&model=1051",
"Nissan Murano 2015-": "https://autopia.ge/en/products?mark=22&model=899",
"Nissan Murano 2018-": "https://autopia.ge/en/products?mark=22&model=900",
"Nissan Navara 2005-2010": "https://autopia.ge/en/products?mark=22&model=228",
"Nissan Note 2005-": "https://autopia.ge/en/products?mark=22&model=362",
"Nissan Note 2011-": "https://autopia.ge/en/products?mark=22&model=672",
"Nissan Pathfinder 1995-2001": "https://autopia.ge/en/products?mark=22&model=757",
"Nissan Pathfinder 1997-2003": "https://autopia.ge/en/products?mark=22&model=303",
"Nissan Pathfinder 2005-": "https://autopia.ge/en/products?mark=22&model=141",
"Nissan Pathfinder 2013-2020": "https://autopia.ge/en/products?mark=22&model=1171",
"Nissan Pathfinder 2021-": "https://autopia.ge/en/products?mark=22&model=1172",
"Nissan Patrol/Safari 1987-1997": "https://autopia.ge/en/products?mark=22&model=736",
"Nissan Patrol/Safari 1997-2010": "https://autopia.ge/en/products?mark=22&model=650",
"Nissan Presage 2004-": "https://autopia.ge/en/products?mark=22&model=361",
"Nissan Primera 1996-1999": "https://autopia.ge/en/products?mark=22&model=431",
"Nissan Qashqai 2007-2010": "https://autopia.ge/en/products?mark=22&model=142",
"Nissan Qashqai 2010-2014": "https://autopia.ge/en/products?mark=22&model=415",
"Nissan Qashqai 2014-": "https://autopia.ge/en/products?mark=22&model=652",
"Nissan Sentra 2013-": "https://autopia.ge/en/products?mark=22&model=302",
"Nissan Sentra 2016-": "https://autopia.ge/en/products?mark=22&model=532",
"Nissan Sentra 2020-": "https://autopia.ge/en/products?mark=22&model=821",
"Nissan X-Trail 2001-2006": "https://autopia.ge/en/products?mark=22&model=1275",
"Nissan X-Trail 2007-2013": "https://autopia.ge/en/products?mark=22&model=1270",
"Nissan Rogue 2008-2014": "https://autopia.ge/en/products?mark=22&model=1276",
"Nissan Rogue 2014-2016": "https://autopia.ge/en/products?mark=22&model=954",
"Nissan Rogue 2017-2020": "https://autopia.ge/en/products?mark=22&model=953",
"Nissan Rogue Sport 2017-": "https://autopia.ge/en/products?mark=22&model=1029",
"Nissan Rogue 2021-": "https://autopia.ge/en/products?mark=22&model=928",
"Nissan Skyline/Infinity 2001-2007": "https://autopia.ge/en/products?mark=22&model=359",
"Nissan Skyline/Infinity 2014-": "https://autopia.ge/en/products?mark=22&model=961",
"Nissan Teana 2003-2007": "https://autopia.ge/en/products?mark=22&model=358",
"Nissan Teana 2009-": "https://autopia.ge/en/products?mark=22&model=357",
"Nissan Tiida 2010-": "https://autopia.ge/en/products?mark=22&model=227",
"Nissan Tiida 2015-": "https://autopia.ge/en/products?mark=22&model=722",
"Nissan Tiida Japan 2005-": "https://autopia.ge/en/products?mark=22&model=301",
"Nissan Tiida Versa 2007-": "https://autopia.ge/en/products?mark=22&model=143",
"Nissan Versa 2012-": "https://autopia.ge/en/products?mark=22&model=434",
"Nissan Versa Note 2014-": "https://autopia.ge/en/products?mark=22&model=1249",
"Nissan X-Terra 2002-": "https://autopia.ge/en/products?mark=22&model=144",
"Nissan X-Terra 2005-2015": "https://autopia.ge/en/products?mark=22&model=145",
"Nissan Lafesta 2004-": "https://autopia.ge/en/products?mark=22&model=752",
"Nissan Altima 2007-2012": "https://autopia.ge/en/products?mark=22&model=983",
"Nissan Altima 2013-2015": "https://autopia.ge/en/products?mark=22&model=1266",
"Nissan Altima 2019-": "https://autopia.ge/en/products?mark=22&model=1178",
"Nissan Elgrand 2002-": "https://autopia.ge/en/products?mark=22&model=365",
"Nissan Quest 2011-": "https://autopia.ge/en/products?mark=22&model=901",
"Nissan Serena/Suzuki Landy 2005-": "https://autopia.ge/en/products?mark=22&model=360",
"Nissan Serena 2011-": "https://autopia.ge/en/products?mark=22&model=902",
"Nissan Micra/March 2002-2010": "https://autopia.ge/en/products?mark=22&model=1290",
"Nissan X-Terra 2010-": "https://autopia.ge/en/products?mark=22&model=1306",
"Nissan X-Trail 2001-": "https://autopia.ge/en/products?mark=22&model=1308",
"Nissan Elgrand 2010-": "https://autopia.ge/en/products?mark=22&model=1411",
"Nissan Navara/Frontier 2020-": "https://autopia.ge/en/products?mark=22&model=1416"
},
"Niva": {
"Niva": "https://autopia.ge/en/products?mark=56&model=648"
},
"Opel": {
"Opel Antara 2007-": "https://autopia.ge/en/products?mark=16&model=339",
"Opel Astra G 1998-2004": "https://autopia.ge/en/products?mark=16&model=67",
"Opel Astra H 2004-2006": "https://autopia.ge/en/products?mark=16&model=149",
"Opel Astra H 2007-2010": "https://autopia.ge/en/products?mark=16&model=226",
"Opel Astra J 2009-2012": "https://autopia.ge/en/products?mark=16&model=300",
"Opel Combo 2000-2012": "https://autopia.ge/en/products?mark=16&model=150",
"Opel Combo 2010-": "https://autopia.ge/en/products?mark=16&model=746",
"Opel Corsa B 1993-2000": "https://autopia.ge/en/products?mark=16&model=225",
"Opel Corsa C 2000-2006": "https://autopia.ge/en/products?mark=16&model=153",
"Opel Insignia 2008-2017": "https://autopia.ge/en/products?mark=16&model=707",
"Opel Vectra A 1992-1995": "https://autopia.ge/en/products?mark=16&model=299",
"Opel Vectra B 1995-2002": "https://autopia.ge/en/products?mark=16&model=155",
"Opel Vectra C 2002-2005": "https://autopia.ge/en/products?mark=16&model=156",
"Opel Zafira 1999-2005": "https://autopia.ge/en/products?mark=16&model=157",
"Opel Zafira 2005-2012": "https://autopia.ge/en/products?mark=16&model=52",
"Opel Meriva 2003-": "https://autopia.ge/en/products?mark=16&model=566",
"Opel Meriva 2010-": "https://autopia.ge/en/products?mark=16&model=1055",
"Opel Astra F 1992-1998": "https://autopia.ge/en/products?mark=16&model=1307",
"Opel Corsa D 2006-2014": "https://autopia.ge/en/products?mark=16&model=1317",
"Opel Vectra B 1999-2002": "https://autopia.ge/en/products?mark=16&model=1363",
"Opel Vectra MK": "https://autopia.ge/en/products?mark=16&model=1366"
},
"Porsche": {
"Porsche Cayenne 2007-2010": "https://autopia.ge/en/products?mark=23&model=1236",
"Porsche Cayenne 2010-2014": "https://autopia.ge/en/products?mark=23&model=1341",
"Porsche Cayenne 2015-2018": "https://autopia.ge/en/products?mark=23&model=1342",
"Porsche Cayenne 2019-2023": "https://autopia.ge/en/products?mark=23&model=854",
"Porsche Macan 2014-2019": "https://autopia.ge/en/products?mark=23&model=713",
"Porsche Macan 2018-2021": "https://autopia.ge/en/products?mark=23&model=1344",
"Porsche Panamera 2009-2012": "https://autopia.ge/en/products?mark=23&model=1136",
"Porsche Panamera 2013-2015": "https://autopia.ge/en/products?mark=23&model=1137",
"Porsche Panamera 2016-": "https://autopia.ge/en/products?mark=23&model=714",
"Porsche Boxster 2003-2004": "https://autopia.ge/en/products?mark=23&model=1279"
},
"Renault": {
"Renault Kangoo 2003-2007": "https://autopia.ge/en/products?mark=26&model=222",
"Renault Kangoo 1998-2003": "https://autopia.ge/en/products?mark=26&model=223",
"Renault Clio 1998-2001": "https://autopia.ge/en/products?mark=26&model=224",
"Renault Duster 2010-2017": "https://autopia.ge/en/products?mark=26&model=498",
"Renault Duster 2017-": "https://autopia.ge/en/products?mark=26&model=523",
"Renault Dokker 2014-": "https://autopia.ge/en/products?mark=26&model=1020",
"Renault Logan 2012-": "https://autopia.ge/en/products?mark=26&model=553"
},
"Skoda": {
"Skoda Octavia 1996-2010": "https://autopia.ge/en/products?mark=19&model=160",
"Skoda Octavia 1998-2004": "https://autopia.ge/en/products?mark=19&model=356",
"Skoda Octavia 2004-2009": "https://autopia.ge/en/products?mark=19&model=161",
"Skoda Octavia 2009-2013": "https://autopia.ge/en/products?mark=19&model=162",
"Skoda Octavia 2013-": "https://autopia.ge/en/products?mark=19&model=92",
"Skoda Octavia 2017-": "https://autopia.ge/en/products?mark=19&model=298",
"Skoda Octavia 2020-": "https://autopia.ge/en/products?mark=19&model=951",
"Skoda Kodiaq 2016-": "https://autopia.ge/en/products?mark=19&model=1190",
"Skoda Fabia 2000-2007": "https://autopia.ge/en/products?mark=19&model=680",
"Skoda Fabia 2007-2010": "https://autopia.ge/en/products?mark=19&model=159",
"Skoda Fabia 2010-": "https://autopia.ge/en/products?mark=19&model=221",
"Skoda Fabia 2014-": "https://autopia.ge/en/products?mark=19&model=1050",
"Skoda Superb 2016-": "https://autopia.ge/en/products?mark=19&model=477",
"Skoda Rapid 2012-": "https://autopia.ge/en/products?mark=19&model=510",
"Skoda Octavia 2004-2012": "https://autopia.ge/en/products?mark=19&model=1360"
},
"Smart": {
"Smart Fortwo 1998-2007": "https://autopia.ge/en/products?mark=48&model=608",
"Smart Fortwo 2007-": "https://autopia.ge/en/products?mark=48&model=695",
"Smart Fortow W453 2015-": "https://autopia.ge/en/products?mark=48&model=1145"
},
"Subaru": {
"Subaru Forester 1998-2002": "https://autopia.ge/en/products?mark=10&model=163",
"Subaru Forester 2003-2005": "https://autopia.ge/en/products?mark=10&model=164",
"Subaru Forester 2006-2007": "https://autopia.ge/en/products?mark=10&model=297",
"Subaru Forester 2008–2013": "https://autopia.ge/en/products?mark=10&model=165",
"Subaru Forester 2013-2015": "https://autopia.ge/en/products?mark=10&model=27",
"Subaru Forester 2016-2018": "https://autopia.ge/en/products?mark=10&model=547",
"Subaru Forester 2019-2021": "https://autopia.ge/en/products?mark=10&model=506",
"Subaru Forester 2022-2024": "https://autopia.ge/en/products?mark=10&model=906",
"Subaru XV 2012-2015": "https://autopia.ge/en/products?mark=10&model=777",
"Subaru XV 2018-2023": "https://autopia.ge/en/products?mark=10&model=1294",
"Subaru Impreza 2000-": "https://autopia.ge/en/products?mark=10&model=637",
"Subaru Impreza 2008-2011": "https://autopia.ge/en/products?mark=10&model=1117",
"Subaru Impreza 2012-2016": "https://autopia.ge/en/products?mark=10&model=296",
"Subaru Impreza 2017-2023": "https://autopia.ge/en/products?mark=10&model=575",
"Subaru Legacy 2005-": "https://autopia.ge/en/products?mark=10&model=1369",
"Subaru Legacy 2015-2019": "https://autopia.ge/en/products?mark=10&model=1398",
"Subaru Legacy 2010-2015": "https://autopia.ge/en/products?mark=10&model=166",
"Subaru Legacy 2020-2024": "https://autopia.ge/en/products?mark=10&model=694",
"Subaru Outback 2010-2015": "https://autopia.ge/en/products?mark=10&model=167",
"Subaru Outback 2018-2019": "https://autopia.ge/en/products?mark=10&model=1395",
"Subaru Outback 2020-2024": "https://autopia.ge/en/products?mark=10&model=1295",
"Subaru Ascent 2019-": "https://autopia.ge/en/products?mark=10&model=997",
"Subaru BR-Z 2012-2021": "https://autopia.ge/en/products?mark=10&model=1286",
"Subaru Outback 2015-2017": "https://autopia.ge/en/products?mark=10&model=1392",
"Subaru XV 2016-2017": "https://autopia.ge/en/products?mark=10&model=1400",
"Subaru Legacy/Outback 2015-": "https://autopia.ge/en/products?mark=10&model=1422"
},
"Suzuki": {
"Suzuki Grand Vitara 1999-2005": "https://autopia.ge/en/products?mark=24&model=168",
"Suzuki Grand Vitara 2006-": "https://autopia.ge/en/products?mark=24&model=169",
"Suzuki Grandvitara Escudo 1997-": "https://autopia.ge/en/products?mark=24&model=641",
"Suzuki Vitara 2016-": "https://autopia.ge/en/products?mark=24&model=921",
"Suzuki Vitara 2018-": "https://autopia.ge/en/products?mark=24&model=1225",
"Suzuki Kizashi 2010-2013": "https://autopia.ge/en/products?mark=24&model=701",
"Suzuki Swift H/B 2006-2011": "https://autopia.ge/en/products?mark=24&model=170",
"Suzuki Swift H/B 2011-": "https://autopia.ge/en/products?mark=24&model=1362",
"Suzuki SX4 2007-": "https://autopia.ge/en/products?mark=24&model=171",
"Suzuki Jimny 1998-": "https://autopia.ge/en/products?mark=24&model=985",
"Suzuki Jimny 2019-": "https://autopia.ge/en/products?mark=24&model=1238",
"Suzuki Alto HA25 2009-2014": "https://autopia.ge/en/products?mark=24&model=987"
},
"Tesla": {
"Tesla Model S 2012-2015": "https://autopia.ge/en/products?mark=31&model=1228",
"Tesla Model S 2016-2020": "https://autopia.ge/en/products?mark=31&model=1232",
"Tesla Model Y 2020-": "https://autopia.ge/en/products?mark=31&model=683",
"Tesla Model X 2015-": "https://autopia.ge/en/products?mark=31&model=1017",
"Tesla 3 2017-2021": "https://autopia.ge/en/products?mark=31&model=715",
"Tesla Model S 2016-2020": "https://autopia.ge/en/products?mark=31&model=1340",
"Tesla 3 2022-": "https://autopia.ge/en/products?mark=31&model=1412"
},
"Toyota": {
"Toyota Prius 2004-2009": "https://autopia.ge/en/products?mark=6&model=185",
"Toyota Prius 2010-2012": "https://autopia.ge/en/products?mark=6&model=187",
"Toyota Prius 2012-2015": "https://autopia.ge/en/products?mark=6&model=186",
"Toyota Prius 2016-": "https://autopia.ge/en/products?mark=6&model=188",
"Toyota Prius 2019-2021": "https://autopia.ge/en/products?mark=6&model=1166",
"Toyota Prius C 2012-2015": "https://autopia.ge/en/products?mark=6&model=189",
"Toyota Prius C 2015-2017": "https://autopia.ge/en/products?mark=6&model=409",
"Toyota Prius C 2018-": "https://autopia.ge/en/products?mark=6&model=835",
"Toyota Prius V 2012-": "https://autopia.ge/en/products?mark=6&model=280",
"Toyota Prius Prime 2016-2019": "https://autopia.ge/en/products?mark=6&model=912",
"Toyota Camry 2007-2009": "https://autopia.ge/en/products?mark=6&model=53",
"Toyota Camry 2010-2011": "https://autopia.ge/en/products?mark=6&model=107",
"Toyota Camry 2012-2014": "https://autopia.ge/en/products?mark=6&model=39",
"Toyota Camry 2015-": "https://autopia.ge/en/products?mark=6&model=174",
"Toyota Camry 2018-": "https://autopia.ge/en/products?mark=6&model=219",
"Toyota Camry 2021-": "https://autopia.ge/en/products?mark=6&model=938",
"Toyota Corolla 1997-1999": "https://autopia.ge/en/products?mark=6&model=411",
"Toyota Corolla/Verso 2004-2008": "https://autopia.ge/en/products?mark=6&model=702",
"Toyota Corolla 2008-": "https://autopia.ge/en/products?mark=6&model=175",
"Toyota Corolla 2011-2013": "https://autopia.ge/en/products?mark=6&model=176",
"Toyota Corolla EUR 2014-": "https://autopia.ge/en/products?mark=6&model=1165",
"Toyota Corolla USA 2014-": "https://autopia.ge/en/products?mark=6&model=1162",
"Toyota Corolla 2017-2018 USA": "https://autopia.ge/en/products?mark=6&model=959",
"Toyota Corolla 2017-": "https://autopia.ge/en/products?mark=6&model=349",
"Toyota Corolla 2020-": "https://autopia.ge/en/products?mark=6&model=531",
"Toyota Corolla Cross 2022-": "https://autopia.ge/en/products?mark=6&model=1283",
"Toyota C-HR 2016-": "https://autopia.ge/en/products?mark=6&model=218",
"Toyota C-HR 2018-": "https://autopia.ge/en/products?mark=6&model=443",
"Toyota C-HR 2020-": "https://autopia.ge/en/products?mark=6&model=458",
"Toyota RAV4 2000-2003": "https://autopia.ge/en/products?mark=6&model=190",
"Toyota RAV4 2004-2006": "https://autopia.ge/en/products?mark=6&model=191",
"Toyota RAV4 2006-2008": "https://autopia.ge/en/products?mark=6&model=83",
"Toyota RAV4 2009-2012": "https://autopia.ge/en/products?mark=6&model=192",
"Toyota RAV4 2013-": "https://autopia.ge/en/products?mark=6&model=193",
"Toyota RAV4 2016-": "https://autopia.ge/en/products?mark=6&model=194",
"Toyota RAV4 2019-": "https://autopia.ge/en/products?mark=6&model=459",
"Toyota RAV4 2022-": "https://autopia.ge/en/products?mark=6&model=829",
"Toyota Prado 1996-2003": "https://autopia.ge/en/products?mark=6&model=567",
"Toyota Prado 2003-2009": "https://autopia.ge/en/products?mark=6&model=183",
"Toyota Prado 2009-": "https://autopia.ge/en/products?mark=6&model=184",
"Toyota Prado 2014-": "https://autopia.ge/en/products?mark=6&model=410",
"Toyota Prado 2018-": "https://autopia.ge/en/products?mark=6&model=290",
"Toyota Prado 2021-": "https://autopia.ge/en/products?mark=6&model=1005",
"Toyota Landcruiser FJ100/Lexus LX470 1998-2008": "https://autopia.ge/en/products?mark=6&model=293",
"Toyota Landcruiser FJ200 2008-": "https://autopia.ge/en/products?mark=6&model=1042",
"Toyota Landcruiser J200 2016-": "https://autopia.ge/en/products?mark=6&model=292",
"Toyota Landcruiser J300 2021-": "https://autopia.ge/en/products?mark=6&model=1187",
"Toyota Hilux 2004-": "https://autopia.ge/en/products?mark=6&model=180",
"Toyota Hilux 2009-": "https://autopia.ge/en/products?mark=6&model=181",
"Toyota Hilux 2012-": "https://autopia.ge/en/products?mark=6&model=182",
"Toyota Hilux 2015-": "https://autopia.ge/en/products?mark=6&model=19",
"Toyota Hilux 2020-": "https://autopia.ge/en/products?mark=6&model=633",
"Toyota Hilux Revo Rocco 2021-": "https://autopia.ge/en/products?mark=6&model=1039",
"Toyota Hilux 4Runner 1995-2004": "https://autopia.ge/en/products?mark=6&model=294",
"Toyota 4Runner 2003-": "https://autopia.ge/en/products?mark=6&model=172",
"Toyota 4Runner 2006-": "https://autopia.ge/en/products?mark=6&model=488",
"Toyota 4Runner 2010-2020": "https://autopia.ge/en/products?mark=6&model=489",
"Toyota 4Runner 2020-": "https://autopia.ge/en/products?mark=6&model=907",
"Toyota Highlander 2001-": "https://autopia.ge/en/products?mark=6&model=656",
"Toyota Highlander 2008-": "https://autopia.ge/en/products?mark=6&model=178",
"Toyota Highlander 2011-": "https://autopia.ge/en/products?mark=6&model=179",
"Toyota Highlander 2015-": "https://autopia.ge/en/products?mark=6&model=490",
"Toyota Highlander 2017-2019": "https://autopia.ge/en/products?mark=6&model=798",
"Toyota Highlander 2020-": "https://autopia.ge/en/products?mark=6&model=693",
"Toyota Avalon 2013-2017": "https://autopia.ge/en/products?mark=6&model=787",
"Toyota Avalon 2018-": "https://autopia.ge/en/products?mark=6&model=704",
"Toyota Caldina 2002-": "https://autopia.ge/en/products?mark=6&model=350",
"Toyota Paso 2004-": "https://autopia.ge/en/products?mark=6&model=345",
"Toyota Ipsum/Picnic/Avensis/Verso MPV 2001-": "https://autopia.ge/en/products?mark=6&model=580",
"Toyota Alphard 2002-": "https://autopia.ge/en/products?mark=6&model=352",
"Toyota Alphard 2008-": "https://autopia.ge/en/products?mark=6&model=651",
"Toyota Alphard 2015-": "https://autopia.ge/en/products?mark=6&model=828",
"Toyota Estima 2001-": "https://autopia.ge/en/products?mark=6&model=725",
"Toyota FG79/LC70 2009-": "https://autopia.ge/en/products?mark=6&model=564",
"Toyota FJ Cruiser 2007-2015": "https://autopia.ge/en/products?mark=6&model=541",
"Toyota Tacoma 2016-": "https://autopia.ge/en/products?mark=6&model=1186",
"Toyota Funcargo 2000-(Euro Yaris Verso)": "https://autopia.ge/en/products?mark=6&model=348",
"Toyota Ist NCP61/Scion 2008-": "https://autopia.ge/en/products?mark=6&model=534",
"Toyota Ist NCP61/Scion XA 5D H/B 2002-": "https://autopia.ge/en/products?mark=6&model=346",
"Toyota Paso 2011-": "https://autopia.ge/en/products?mark=6&model=344",
"Toyota Vitz/Yaris 1999-2003": "https://autopia.ge/en/products?mark=6&model=196",
"Toyota Vitz/Yaris 2003-2005": "https://autopia.ge/en/products?mark=6&model=197",
"Toyota Vitz/Yaris 2006-2010": "https://autopia.ge/en/products?mark=6&model=198",
"Toyota Vitz/Yaris 2010-": "https://autopia.ge/en/products?mark=6&model=687",
"Toyota Venza 2021-": "https://autopia.ge/en/products?mark=6&model=996",
"Toyota Zelas/Scion TC 2D Coupe 2011-": "https://autopia.ge/en/products?mark=6&model=986",
"Toyota GT86 2012-2021": "https://autopia.ge/en/products?mark=6&model=1185",
"Toyota Mark X 2000-2004": "https://autopia.ge/en/products?mark=6&model=958",
"Toyota Vitz/Yaris Verso 2012-": "https://autopia.ge/en/products?mark=6&model=630",
"Toyota Isis 2004-": "https://autopia.ge/en/products?mark=6&model=347",
"Toyota Ractis 2005-2010": "https://autopia.ge/en/products?mark=6&model=525",
"Toyota Sequoia Van 2001-": "https://autopia.ge/en/products?mark=6&model=195",
"Toyota Sienna 2010-2019": "https://autopia.ge/en/products?mark=6&model=775",
"Toyota Sienna 2020-": "https://autopia.ge/en/products?mark=6&model=909",