summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS.xcodeproj/project.pbxproj
blob: c6933468c7bb103d6ed05d61f3a2a20354764bdc (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		162E82CA1A9BDE8A00906325 /* SDLAmbientLightStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81E21A9BDE8A00906325 /* SDLAmbientLightStatusSpec.m */; };
		162E82CB1A9BDE8A00906325 /* SDLAppHMITypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81E31A9BDE8A00906325 /* SDLAppHMITypeSpec.m */; };
		162E82CC1A9BDE8A00906325 /* SDLAppInterfaceUnregisteredReasonSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81E41A9BDE8A00906325 /* SDLAppInterfaceUnregisteredReasonSpec.m */; };
		162E82CD1A9BDE8A00906325 /* SDLAudioStreamingStateSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81E51A9BDE8A00906325 /* SDLAudioStreamingStateSpec.m */; };
		162E82CE1A9BDE8A00906325 /* SDLAudioTypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81E61A9BDE8A00906325 /* SDLAudioTypeSpec.m */; };
		162E82CF1A9BDE8A00906325 /* SDLBitsPerSampleSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81E71A9BDE8A00906325 /* SDLBitsPerSampleSpec.m */; };
		162E82D01A9BDE8A00906325 /* SDLButtonEventModeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81E81A9BDE8A00906325 /* SDLButtonEventModeSpec.m */; };
		162E82D11A9BDE8A00906325 /* SDLButtonNameSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81E91A9BDE8A00906325 /* SDLButtonNameSpec.m */; };
		162E82D21A9BDE8A00906325 /* SDLButtonPressModeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81EA1A9BDE8A00906325 /* SDLButtonPressModeSpec.m */; };
		162E82D31A9BDE8A00906325 /* SDLCarModeStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81EB1A9BDE8A00906325 /* SDLCarModeStatusSpec.m */; };
		162E82D41A9BDE8A00906325 /* SDLCharacterSetSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81EC1A9BDE8A00906325 /* SDLCharacterSetSpec.m */; };
		162E82D51A9BDE8A00906325 /* SDLCompassDirectionSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81ED1A9BDE8A00906325 /* SDLCompassDirectionSpec.m */; };
		162E82D61A9BDE8A00906325 /* SDLComponentVolumeStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81EE1A9BDE8A00906325 /* SDLComponentVolumeStatusSpec.m */; };
		162E82D71A9BDE8A00906325 /* SDLDeviceLevelStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81EF1A9BDE8A00906325 /* SDLDeviceLevelStatusSpec.m */; };
		162E82D81A9BDE8A00906325 /* SDLDimensionSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81F01A9BDE8A00906325 /* SDLDimensionSpec.m */; };
		162E82D91A9BDE8A00906325 /* SDLDisplayTypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81F11A9BDE8A00906325 /* SDLDisplayTypeSpec.m */; };
		162E82DA1A9BDE8B00906325 /* SDLDriverDistractionStateSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81F21A9BDE8A00906325 /* SDLDriverDistractionStateSpec.m */; };
		162E82DB1A9BDE8B00906325 /* SDLECallConfirmationStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81F31A9BDE8A00906325 /* SDLECallConfirmationStatusSpec.m */; };
		162E82DC1A9BDE8B00906325 /* SDLEmergencyEventTypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81F41A9BDE8A00906325 /* SDLEmergencyEventTypeSpec.m */; };
		162E82DD1A9BDE8B00906325 /* SDLFileTypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81F51A9BDE8A00906325 /* SDLFileTypeSpec.m */; };
		162E82DE1A9BDE8B00906325 /* SDLFuelCutoffStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81F61A9BDE8A00906325 /* SDLFuelCutoffStatusSpec.m */; };
		162E82DF1A9BDE8B00906325 /* SDLGlobalProperySpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81F71A9BDE8A00906325 /* SDLGlobalProperySpec.m */; };
		162E82E01A9BDE8B00906325 /* SDLHMILevelSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81F81A9BDE8A00906325 /* SDLHMILevelSpec.m */; };
		162E82E11A9BDE8B00906325 /* SDLHMIZoneCapabilitiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81F91A9BDE8A00906325 /* SDLHMIZoneCapabilitiesSpec.m */; };
		162E82E21A9BDE8B00906325 /* SDLIgnitionStableStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81FA1A9BDE8A00906325 /* SDLIgnitionStableStatusSpec.m */; };
		162E82E31A9BDE8B00906325 /* SDLIgnitionStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81FB1A9BDE8A00906325 /* SDLIgnitionStatusSpec.m */; };
		162E82E41A9BDE8B00906325 /* SDLImageFieldNameSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81FC1A9BDE8A00906325 /* SDLImageFieldNameSpec.m */; };
		162E82E51A9BDE8B00906325 /* SDLImageTypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81FD1A9BDE8A00906325 /* SDLImageTypeSpec.m */; };
		162E82E61A9BDE8B00906325 /* SDLInteractionModeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81FE1A9BDE8A00906325 /* SDLInteractionModeSpec.m */; };
		162E82E71A9BDE8B00906325 /* SDLKeyboardEventSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E81FF1A9BDE8A00906325 /* SDLKeyboardEventSpec.m */; };
		162E82E81A9BDE8B00906325 /* SDLKeyboardLayoutSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82001A9BDE8A00906325 /* SDLKeyboardLayoutSpec.m */; };
		162E82E91A9BDE8B00906325 /* SDLKeypressModeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82011A9BDE8A00906325 /* SDLKeypressModeSpec.m */; };
		162E82EA1A9BDE8B00906325 /* SDLLanguageSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82021A9BDE8A00906325 /* SDLLanguageSpec.m */; };
		162E82EB1A9BDE8B00906325 /* SDLLayoutModeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82031A9BDE8A00906325 /* SDLLayoutModeSpec.m */; };
		162E82EC1A9BDE8B00906325 /* SDLLockScreenStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82041A9BDE8A00906325 /* SDLLockScreenStatusSpec.m */; };
		162E82ED1A9BDE8B00906325 /* SDLMaintenanceModeStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82051A9BDE8A00906325 /* SDLMaintenanceModeStatusSpec.m */; };
		162E82EE1A9BDE8B00906325 /* SDLMediaClockFormatSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82061A9BDE8A00906325 /* SDLMediaClockFormatSpec.m */; };
		162E82EF1A9BDE8B00906325 /* SDLPermissionStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82071A9BDE8A00906325 /* SDLPermissionStatusSpec.m */; };
		162E82F01A9BDE8B00906325 /* SDLPowerModeQualificationStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82081A9BDE8A00906325 /* SDLPowerModeQualificationStatusSpec.m */; };
		162E82F11A9BDE8B00906325 /* SDLPowerModeStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82091A9BDE8A00906325 /* SDLPowerModeStatusSpec.m */; };
		162E82F21A9BDE8B00906325 /* SDLPredefinedLayoutSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E820A1A9BDE8A00906325 /* SDLPredefinedLayoutSpec.m */; };
		162E82F31A9BDE8B00906325 /* SDLPrerecordedSpeechSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E820B1A9BDE8A00906325 /* SDLPrerecordedSpeechSpec.m */; };
		162E82F41A9BDE8B00906325 /* SDLPrimaryAudioSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E820C1A9BDE8A00906325 /* SDLPrimaryAudioSource.m */; };
		162E82F51A9BDE8B00906325 /* SDLPRNDLSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E820D1A9BDE8A00906325 /* SDLPRNDLSpec.m */; };
		162E82F61A9BDE8B00906325 /* SDLRequestTypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E820E1A9BDE8A00906325 /* SDLRequestTypeSpec.m */; };
		162E82F71A9BDE8B00906325 /* SDLResultSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E820F1A9BDE8A00906325 /* SDLResultSpec.m */; };
		162E82F91A9BDE8B00906325 /* SDLSamplingRateSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82111A9BDE8A00906325 /* SDLSamplingRateSpec.m */; };
		162E82FA1A9BDE8B00906325 /* SDLSoftButtonTypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82121A9BDE8A00906325 /* SDLSoftButtonTypeSpec.m */; };
		162E82FB1A9BDE8B00906325 /* SDLSpeechCapabilitiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82131A9BDE8A00906325 /* SDLSpeechCapabilitiesSpec.m */; };
		162E82FC1A9BDE8B00906325 /* SDLSystemAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82141A9BDE8A00906325 /* SDLSystemAction.m */; };
		162E82FD1A9BDE8B00906325 /* SDLSystemContextSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82151A9BDE8A00906325 /* SDLSystemContextSpec.m */; };
		162E82FE1A9BDE8B00906325 /* SDLTBTStateSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82161A9BDE8A00906325 /* SDLTBTStateSpec.m */; };
		162E82FF1A9BDE8B00906325 /* SDLTextAlignmentSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82171A9BDE8A00906325 /* SDLTextAlignmentSpec.m */; };
		162E83001A9BDE8B00906325 /* SDLTextFieldNameSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82181A9BDE8A00906325 /* SDLTextFieldNameSpec.m */; };
		162E83011A9BDE8B00906325 /* SDLTimerModeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82191A9BDE8A00906325 /* SDLTimerModeSpec.m */; };
		162E83021A9BDE8B00906325 /* SDLTouchTypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E821A1A9BDE8A00906325 /* SDLTouchTypeSpec.m */; };
		162E83031A9BDE8B00906325 /* SDLTriggerSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E821B1A9BDE8A00906325 /* SDLTriggerSource.m */; };
		162E83041A9BDE8B00906325 /* SDLUpdateModeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E821C1A9BDE8A00906325 /* SDLUpdateModeSpec.m */; };
		162E83051A9BDE8B00906325 /* SDLVehicleDataActiveStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E821D1A9BDE8A00906325 /* SDLVehicleDataActiveStatusSpec.m */; };
		162E83061A9BDE8B00906325 /* SDLVehicleDataEventStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E821E1A9BDE8A00906325 /* SDLVehicleDataEventStatusSpec.m */; };
		162E83071A9BDE8B00906325 /* SDLVehicleDataNotificationStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E821F1A9BDE8A00906325 /* SDLVehicleDataNotificationStatusSpec.m */; };
		162E83081A9BDE8B00906325 /* SDLVehicleDataResultCodeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82201A9BDE8A00906325 /* SDLVehicleDataResultCodeSpec.m */; };
		162E83091A9BDE8B00906325 /* SDLVehicleDataStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82211A9BDE8A00906325 /* SDLVehicleDataStatusSpec.m */; };
		162E830A1A9BDE8B00906325 /* SDLVehicleDataTypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82221A9BDE8A00906325 /* SDLVehicleDataTypeSpec.m */; };
		162E830B1A9BDE8B00906325 /* SDLVrCapabilitiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82231A9BDE8A00906325 /* SDLVrCapabilitiesSpec.m */; };
		162E830C1A9BDE8B00906325 /* SDLWarningLightStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82241A9BDE8A00906325 /* SDLWarningLightStatusSpec.m */; };
		162E830D1A9BDE8B00906325 /* SDLWiperStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82251A9BDE8A00906325 /* SDLWiperStatusSpec.m */; };
		162E830E1A9BDE8B00906325 /* SDLRPCRequestFactorySpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82271A9BDE8A00906325 /* SDLRPCRequestFactorySpec.m */; };
		162E830F1A9BDE8B00906325 /* SDLOnAppInterfaceUnregisteredSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82291A9BDE8A00906325 /* SDLOnAppInterfaceUnregisteredSpec.m */; };
		162E83101A9BDE8B00906325 /* SDLOnAudioPassThruSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E822A1A9BDE8A00906325 /* SDLOnAudioPassThruSpec.m */; };
		162E83111A9BDE8B00906325 /* SDLOnButtonEventSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E822B1A9BDE8A00906325 /* SDLOnButtonEventSpec.m */; };
		162E83121A9BDE8B00906325 /* SDLOnButtonPressSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E822C1A9BDE8A00906325 /* SDLOnButtonPressSpec.m */; };
		162E83131A9BDE8B00906325 /* SDLOnCommandSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E822D1A9BDE8A00906325 /* SDLOnCommandSpec.m */; };
		162E83141A9BDE8B00906325 /* SDLOnDriverDistractionSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E822E1A9BDE8A00906325 /* SDLOnDriverDistractionSpec.m */; };
		162E83151A9BDE8B00906325 /* SDLOnEncodedSyncPDataSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E822F1A9BDE8A00906325 /* SDLOnEncodedSyncPDataSpec.m */; };
		162E83161A9BDE8B00906325 /* SDLOnHashChangeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82301A9BDE8A00906325 /* SDLOnHashChangeSpec.m */; };
		162E83171A9BDE8B00906325 /* SDLOnHMIStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82311A9BDE8A00906325 /* SDLOnHMIStatusSpec.m */; };
		162E83181A9BDE8B00906325 /* SDLOnKeyboardInputSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82321A9BDE8A00906325 /* SDLOnKeyboardInputSpec.m */; };
		162E83191A9BDE8B00906325 /* SDLOnLanguageChangeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82331A9BDE8A00906325 /* SDLOnLanguageChangeSpec.m */; };
		162E831A1A9BDE8B00906325 /* SDLOnLockScreenStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82341A9BDE8A00906325 /* SDLOnLockScreenStatusSpec.m */; };
		162E831B1A9BDE8B00906325 /* SDLOnPermissionsChangeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82351A9BDE8A00906325 /* SDLOnPermissionsChangeSpec.m */; };
		162E831C1A9BDE8B00906325 /* SDLOnSyncPDataSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82361A9BDE8A00906325 /* SDLOnSyncPDataSpec.m */; };
		162E831D1A9BDE8B00906325 /* SDLOnSystemRequestSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82371A9BDE8A00906325 /* SDLOnSystemRequestSpec.m */; };
		162E831E1A9BDE8B00906325 /* SDLOnTBTClientStateSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82381A9BDE8A00906325 /* SDLOnTBTClientStateSpec.m */; };
		162E831F1A9BDE8B00906325 /* SDLOnTouchEventSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82391A9BDE8A00906325 /* SDLOnTouchEventSpec.m */; };
		162E83201A9BDE8B00906325 /* SDLOnVehicleDataSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E823A1A9BDE8A00906325 /* SDLOnVehicleDataSpec.m */; };
		162E83211A9BDE8B00906325 /* SDLRPCPayloadSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E823C1A9BDE8A00906325 /* SDLRPCPayloadSpec.m */; };
		162E83221A9BDE8B00906325 /* SDLAddCommandSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E823E1A9BDE8A00906325 /* SDLAddCommandSpec.m */; };
		162E83231A9BDE8B00906325 /* SDLAddSubMenuSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E823F1A9BDE8A00906325 /* SDLAddSubMenuSpec.m */; };
		162E83241A9BDE8B00906325 /* SDLAlertManeuverSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82401A9BDE8A00906325 /* SDLAlertManeuverSpec.m */; };
		162E83251A9BDE8B00906325 /* SDLAlertSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82411A9BDE8A00906325 /* SDLAlertSpec.m */; };
		162E83261A9BDE8B00906325 /* SDLChangeRegistrationSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82421A9BDE8A00906325 /* SDLChangeRegistrationSpec.m */; };
		162E83271A9BDE8B00906325 /* SDLCreateInteractionChoiceSetSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82431A9BDE8A00906325 /* SDLCreateInteractionChoiceSetSpec.m */; };
		162E83281A9BDE8B00906325 /* SDLDeleteCommandSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82441A9BDE8A00906325 /* SDLDeleteCommandSpec.m */; };
		162E83291A9BDE8B00906325 /* SDLDeleteFileSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82451A9BDE8A00906325 /* SDLDeleteFileSpec.m */; };
		162E832A1A9BDE8B00906325 /* SDLDeleteInteractionChoiceSetSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82461A9BDE8A00906325 /* SDLDeleteInteractionChoiceSetSpec.m */; };
		162E832B1A9BDE8B00906325 /* SDLDeleteSubMenuSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82471A9BDE8A00906325 /* SDLDeleteSubMenuSpec.m */; };
		162E832C1A9BDE8B00906325 /* SDLDiagnosticMessageSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82481A9BDE8A00906325 /* SDLDiagnosticMessageSpec.m */; };
		162E832D1A9BDE8B00906325 /* SDLEncodedSyncPDataSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82491A9BDE8A00906325 /* SDLEncodedSyncPDataSpec.m */; };
		162E832E1A9BDE8B00906325 /* SDLEndAudioPassThruSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E824A1A9BDE8A00906325 /* SDLEndAudioPassThruSpec.m */; };
		162E832F1A9BDE8B00906325 /* SDLGetDTCsSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E824B1A9BDE8A00906325 /* SDLGetDTCsSpec.m */; };
		162E83301A9BDE8B00906325 /* SDLGetVehicleDataSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E824C1A9BDE8A00906325 /* SDLGetVehicleDataSpec.m */; };
		162E83311A9BDE8B00906325 /* SDLListFilesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E824D1A9BDE8A00906325 /* SDLListFilesSpec.m */; };
		162E83321A9BDE8B00906325 /* SDLPerformAudioPassThruSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E824E1A9BDE8A00906325 /* SDLPerformAudioPassThruSpec.m */; };
		162E83331A9BDE8B00906325 /* SDLPerformInteractionSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E824F1A9BDE8A00906325 /* SDLPerformInteractionSpec.m */; };
		162E83341A9BDE8B00906325 /* SDLPutFileSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82501A9BDE8A00906325 /* SDLPutFileSpec.m */; };
		162E83351A9BDE8B00906325 /* SDLReadDIDSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82511A9BDE8A00906325 /* SDLReadDIDSpec.m */; };
		162E83361A9BDE8B00906325 /* SDLRegisterAppInterfaceSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82521A9BDE8A00906325 /* SDLRegisterAppInterfaceSpec.m */; };
		162E83371A9BDE8B00906325 /* SDLResetGlobalPropertiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82531A9BDE8A00906325 /* SDLResetGlobalPropertiesSpec.m */; };
		162E83381A9BDE8B00906325 /* SDLScrollableMessageSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82541A9BDE8A00906325 /* SDLScrollableMessageSpec.m */; };
		162E83391A9BDE8B00906325 /* SDLSetAppIconSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82551A9BDE8A00906325 /* SDLSetAppIconSpec.m */; };
		162E833A1A9BDE8B00906325 /* SDLSetDisplayLayoutSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82561A9BDE8A00906325 /* SDLSetDisplayLayoutSpec.m */; };
		162E833B1A9BDE8B00906325 /* SDLSetGlobalPropertiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82571A9BDE8A00906325 /* SDLSetGlobalPropertiesSpec.m */; };
		162E833C1A9BDE8B00906325 /* SDLSetMediaClockTimerSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82581A9BDE8A00906325 /* SDLSetMediaClockTimerSpec.m */; };
		162E833D1A9BDE8B00906325 /* SDLShowConstantTBTSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82591A9BDE8A00906325 /* SDLShowConstantTBTSpec.m */; };
		162E833E1A9BDE8B00906325 /* SDLShowSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E825A1A9BDE8A00906325 /* SDLShowSpec.m */; };
		162E833F1A9BDE8B00906325 /* SDLSliderSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E825B1A9BDE8A00906325 /* SDLSliderSpec.m */; };
		162E83401A9BDE8B00906325 /* SDLSpeakSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E825C1A9BDE8A00906325 /* SDLSpeakSpec.m */; };
		162E83411A9BDE8B00906325 /* SDLSubscribeButtonSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E825D1A9BDE8A00906325 /* SDLSubscribeButtonSpec.m */; };
		162E83421A9BDE8B00906325 /* SDLSubscribeVehicleDataSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E825E1A9BDE8A00906325 /* SDLSubscribeVehicleDataSpec.m */; };
		162E83431A9BDE8B00906325 /* SDLSyncPDataSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E825F1A9BDE8A00906325 /* SDLSyncPDataSpec.m */; };
		162E83441A9BDE8B00906325 /* SDLSystemRequestSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82601A9BDE8A00906325 /* SDLSystemRequestSpec.m */; };
		162E83451A9BDE8B00906325 /* SDLUnregisterAppInterfaceSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82611A9BDE8A00906325 /* SDLUnregisterAppInterfaceSpec.m */; };
		162E83461A9BDE8B00906325 /* SDLUnsubscribeButtonSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82621A9BDE8A00906325 /* SDLUnsubscribeButtonSpec.m */; };
		162E83471A9BDE8B00906325 /* SDLUnsubscribeVehicleDataSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82631A9BDE8A00906325 /* SDLUnsubscribeVehicleDataSpec.m */; };
		162E83481A9BDE8B00906325 /* SDLUpdateTurnListSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82641A9BDE8A00906325 /* SDLUpdateTurnListSpec.m */; };
		162E83491A9BDE8B00906325 /* SDLAddCommandResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82661A9BDE8A00906325 /* SDLAddCommandResponseSpec.m */; };
		162E834A1A9BDE8B00906325 /* SDLAddSubMenuResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82671A9BDE8A00906325 /* SDLAddSubMenuResponseSpec.m */; };
		162E834B1A9BDE8B00906325 /* SDLAlertManeuverResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82681A9BDE8A00906325 /* SDLAlertManeuverResponseSpec.m */; };
		162E834C1A9BDE8B00906325 /* SDLAlertResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82691A9BDE8A00906325 /* SDLAlertResponseSpec.m */; };
		162E834D1A9BDE8B00906325 /* SDLChangeRegistrationResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E826A1A9BDE8A00906325 /* SDLChangeRegistrationResponseSpec.m */; };
		162E834E1A9BDE8B00906325 /* SDLCreateInteractionChoiceSetResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E826B1A9BDE8A00906325 /* SDLCreateInteractionChoiceSetResponseSpec.m */; };
		162E834F1A9BDE8B00906325 /* SDLDeleteCommandResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E826C1A9BDE8A00906325 /* SDLDeleteCommandResponseSpec.m */; };
		162E83501A9BDE8B00906325 /* SDLDeleteFileResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E826D1A9BDE8A00906325 /* SDLDeleteFileResponseSpec.m */; };
		162E83511A9BDE8B00906325 /* SDLDeleteInteractionChoiceSetResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E826E1A9BDE8A00906325 /* SDLDeleteInteractionChoiceSetResponseSpec.m */; };
		162E83521A9BDE8B00906325 /* SDLDeleteSubMenuResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E826F1A9BDE8A00906325 /* SDLDeleteSubMenuResponseSpec.m */; };
		162E83531A9BDE8B00906325 /* SDLDiagnosticMessageResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82701A9BDE8A00906325 /* SDLDiagnosticMessageResponseSpec.m */; };
		162E83541A9BDE8B00906325 /* SDLEncodedSyncPDataResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82711A9BDE8A00906325 /* SDLEncodedSyncPDataResponseSpec.m */; };
		162E83551A9BDE8B00906325 /* SDLEndAudioPassThruResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82721A9BDE8A00906325 /* SDLEndAudioPassThruResponseSpec.m */; };
		162E83561A9BDE8B00906325 /* SDLGenericResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82731A9BDE8A00906325 /* SDLGenericResponseSpec.m */; };
		162E83571A9BDE8B00906325 /* SDLGetDTCsResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82741A9BDE8A00906325 /* SDLGetDTCsResponseSpec.m */; };
		162E83581A9BDE8B00906325 /* SDLGetVehicleDataResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82751A9BDE8A00906325 /* SDLGetVehicleDataResponseSpec.m */; };
		162E83591A9BDE8B00906325 /* SDLListFilesResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82761A9BDE8A00906325 /* SDLListFilesResponseSpec.m */; };
		162E835A1A9BDE8B00906325 /* SDLPerformAudioPassThruResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82771A9BDE8A00906325 /* SDLPerformAudioPassThruResponseSpec.m */; };
		162E835B1A9BDE8B00906325 /* SDLPerformInteractionResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82781A9BDE8A00906325 /* SDLPerformInteractionResponseSpec.m */; };
		162E835C1A9BDE8B00906325 /* SDLPutFileResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82791A9BDE8A00906325 /* SDLPutFileResponseSpec.m */; };
		162E835D1A9BDE8B00906325 /* SDLReadDIDResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E827A1A9BDE8A00906325 /* SDLReadDIDResponseSpec.m */; };
		162E835E1A9BDE8B00906325 /* SDLRegisterAppInterfaceResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E827B1A9BDE8A00906325 /* SDLRegisterAppInterfaceResponseSpec.m */; };
		162E835F1A9BDE8B00906325 /* SDLResetGlobalPropertiesResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E827C1A9BDE8A00906325 /* SDLResetGlobalPropertiesResponseSpec.m */; };
		162E83601A9BDE8B00906325 /* SDLScrollableMessageResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E827D1A9BDE8A00906325 /* SDLScrollableMessageResponseSpec.m */; };
		162E83611A9BDE8B00906325 /* SDLSetAppIconResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E827E1A9BDE8A00906325 /* SDLSetAppIconResponseSpec.m */; };
		162E83621A9BDE8B00906325 /* SDLSetDisplayLayoutResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E827F1A9BDE8A00906325 /* SDLSetDisplayLayoutResponseSpec.m */; };
		162E83631A9BDE8B00906325 /* SDLSetGlobalPropertiesResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82801A9BDE8A00906325 /* SDLSetGlobalPropertiesResponseSpec.m */; };
		162E83641A9BDE8B00906325 /* SDLSetMediaClockTimerResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82811A9BDE8A00906325 /* SDLSetMediaClockTimerResponseSpec.m */; };
		162E83651A9BDE8B00906325 /* SDLShowConstantTBTResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82821A9BDE8A00906325 /* SDLShowConstantTBTResponseSpec.m */; };
		162E83661A9BDE8B00906325 /* SDLShowResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82831A9BDE8A00906325 /* SDLShowResponseSpec.m */; };
		162E83671A9BDE8B00906325 /* SDLSliderResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82841A9BDE8A00906325 /* SDLSliderResponseSpec.m */; };
		162E83681A9BDE8B00906325 /* SDLSpeakResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82851A9BDE8A00906325 /* SDLSpeakResponseSpec.m */; };
		162E83691A9BDE8B00906325 /* SDLSubscribeButtonResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82861A9BDE8A00906325 /* SDLSubscribeButtonResponseSpec.m */; };
		162E836A1A9BDE8B00906325 /* SDLSubscribeVehicleDataResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82871A9BDE8A00906325 /* SDLSubscribeVehicleDataResponseSpec.m */; };
		162E836B1A9BDE8B00906325 /* SDLSyncPDataResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82881A9BDE8A00906325 /* SDLSyncPDataResponseSpec.m */; };
		162E836C1A9BDE8B00906325 /* SDLSystemRequestResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82891A9BDE8A00906325 /* SDLSystemRequestResponseSpec.m */; };
		162E836D1A9BDE8B00906325 /* SDLUnregisterAppInterfaceResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E828A1A9BDE8A00906325 /* SDLUnregisterAppInterfaceResponseSpec.m */; };
		162E836E1A9BDE8B00906325 /* SDLUnsubscribeButtonResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E828B1A9BDE8A00906325 /* SDLUnsubscribeButtonResponseSpec.m */; };
		162E836F1A9BDE8B00906325 /* SDLUnsubscribeVehicleDataResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E828C1A9BDE8A00906325 /* SDLUnsubscribeVehicleDataResponseSpec.m */; };
		162E83701A9BDE8B00906325 /* SDLUpdateTurnListResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E828D1A9BDE8A00906325 /* SDLUpdateTurnListResponseSpec.m */; };
		162E83711A9BDE8B00906325 /* SDLAirbagStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E828F1A9BDE8A00906325 /* SDLAirbagStatusSpec.m */; };
		162E83721A9BDE8B00906325 /* SDLAudioPassThruCapabilitiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82901A9BDE8A00906325 /* SDLAudioPassThruCapabilitiesSpec.m */; };
		162E83731A9BDE8B00906325 /* SDLBeltStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82911A9BDE8A00906325 /* SDLBeltStatusSpec.m */; };
		162E83741A9BDE8B00906325 /* SDLBodyInformationSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82921A9BDE8A00906325 /* SDLBodyInformationSpec.m */; };
		162E83751A9BDE8B00906325 /* SDLButtonCapabilitiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82931A9BDE8A00906325 /* SDLButtonCapabilitiesSpec.m */; };
		162E83761A9BDE8B00906325 /* SDLChoiceSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82941A9BDE8A00906325 /* SDLChoiceSpec.m */; };
		162E83771A9BDE8B00906325 /* SDLClusterModeStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82951A9BDE8A00906325 /* SDLClusterModeStatusSpec.m */; };
		162E83781A9BDE8B00906325 /* SDLDeviceInfoSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82961A9BDE8A00906325 /* SDLDeviceInfoSpec.m */; };
		162E83791A9BDE8B00906325 /* SDLDeviceStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82971A9BDE8A00906325 /* SDLDeviceStatusSpec.m */; };
		162E837A1A9BDE8B00906325 /* SDLDIDResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82981A9BDE8A00906325 /* SDLDIDResult.m */; };
		162E837B1A9BDE8B00906325 /* SDLDisplayCapabilitiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82991A9BDE8A00906325 /* SDLDisplayCapabilitiesSpec.m */; };
		162E837C1A9BDE8B00906325 /* SDLECallInfoSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E829A1A9BDE8A00906325 /* SDLECallInfoSpec.m */; };
		162E837D1A9BDE8B00906325 /* SDLEmergencyEventSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E829B1A9BDE8A00906325 /* SDLEmergencyEventSpec.m */; };
		162E837E1A9BDE8B00906325 /* SDLGPSDataSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E829C1A9BDE8A00906325 /* SDLGPSDataSpec.m */; };
		162E837F1A9BDE8B00906325 /* SDLHeadLampStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E829D1A9BDE8A00906325 /* SDLHeadLampStatusSpec.m */; };
		162E83801A9BDE8B00906325 /* SDLHMIPermissionsSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E829E1A9BDE8A00906325 /* SDLHMIPermissionsSpec.m */; };
		162E83811A9BDE8B00906325 /* SDLImageFieldSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E829F1A9BDE8A00906325 /* SDLImageFieldSpec.m */; };
		162E83821A9BDE8B00906325 /* SDLImageSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82A01A9BDE8A00906325 /* SDLImageSpec.m */; };
		162E83831A9BDE8B00906325 /* SDLKeyboardPropertiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82A11A9BDE8A00906325 /* SDLKeyboardPropertiesSpec.m */; };
		162E83841A9BDE8B00906325 /* SDLMenuParamsSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82A21A9BDE8A00906325 /* SDLMenuParamsSpec.m */; };
		162E83851A9BDE8B00906325 /* SDLMyKeySpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82A31A9BDE8A00906325 /* SDLMyKeySpec.m */; };
		162E83861A9BDE8B00906325 /* SDLParameterPermissionsSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82A41A9BDE8A00906325 /* SDLParameterPermissionsSpec.m */; };
		162E83871A9BDE8B00906325 /* SDLPermissionItemSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82A51A9BDE8A00906325 /* SDLPermissionItemSpec.m */; };
		162E83881A9BDE8B00906325 /* SDLPresetBankCapabilitiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82A61A9BDE8A00906325 /* SDLPresetBankCapabilitiesSpec.m */; };
		162E83891A9BDE8B00906325 /* SDLScreenParamsSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82A71A9BDE8A00906325 /* SDLScreenParamsSpec.m */; };
		162E838A1A9BDE8B00906325 /* SDLSingleTireStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82A81A9BDE8A00906325 /* SDLSingleTireStatusSpec.m */; };
		162E838B1A9BDE8B00906325 /* SDLSoftButtonCapabilitiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82A91A9BDE8A00906325 /* SDLSoftButtonCapabilitiesSpec.m */; };
		162E838C1A9BDE8B00906325 /* SDLSoftButtonSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82AA1A9BDE8A00906325 /* SDLSoftButtonSpec.m */; };
		162E838D1A9BDE8B00906325 /* SDLStartTimeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82AB1A9BDE8A00906325 /* SDLStartTimeSpec.m */; };
		162E838E1A9BDE8B00906325 /* SDLSyncMsgVersionSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82AC1A9BDE8A00906325 /* SDLSyncMsgVersionSpec.m */; };
		162E838F1A9BDE8B00906325 /* SDLTextFieldSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82AD1A9BDE8A00906325 /* SDLTextFieldSpec.m */; };
		162E83901A9BDE8B00906325 /* SDLTireStatusSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82AE1A9BDE8A00906325 /* SDLTireStatusSpec.m */; };
		162E83911A9BDE8B00906325 /* SDLTouchCoordSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82AF1A9BDE8A00906325 /* SDLTouchCoordSpec.m */; };
		162E83921A9BDE8B00906325 /* SDLTouchEventCapabilitiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82B01A9BDE8A00906325 /* SDLTouchEventCapabilitiesSpec.m */; };
		162E83931A9BDE8B00906325 /* SDLTouchEventSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82B11A9BDE8A00906325 /* SDLTouchEventSpec.m */; };
		162E83941A9BDE8B00906325 /* SDLTTSChunkSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82B21A9BDE8A00906325 /* SDLTTSChunkSpec.m */; };
		162E83951A9BDE8B00906325 /* SDLTurnSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82B31A9BDE8A00906325 /* SDLTurnSpec.m */; };
		162E83961A9BDE8B00906325 /* SDLVehicleDataResultSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82B41A9BDE8A00906325 /* SDLVehicleDataResultSpec.m */; };
		162E83971A9BDE8B00906325 /* SDLVehicleTypeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82B51A9BDE8A00906325 /* SDLVehicleTypeSpec.m */; };
		162E83981A9BDE8B00906325 /* SDLVrHelpItemSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82B61A9BDE8A00906325 /* SDLVrHelpItemSpec.m */; };
		162E83991A9BDE8B00906325 /* SDLEnumSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82B81A9BDE8A00906325 /* SDLEnumSpec.m */; };
		162E839A1A9BDE8B00906325 /* SDLRPCMessageSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82B91A9BDE8A00906325 /* SDLRPCMessageSpec.m */; };
		162E839B1A9BDE8B00906325 /* SDLRPCNotificationSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82BA1A9BDE8A00906325 /* SDLRPCNotificationSpec.m */; };
		162E839C1A9BDE8B00906325 /* SDLRPCRequestSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82BB1A9BDE8A00906325 /* SDLRPCRequestSpec.m */; };
		162E839D1A9BDE8B00906325 /* SDLRPCResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82BC1A9BDE8A00906325 /* SDLRPCResponseSpec.m */; };
		162E839E1A9BDE8B00906325 /* SDLRPCStructSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E82BD1A9BDE8A00906325 /* SDLRPCStructSpec.m */; };
		167ED93C1A9BCB8A00797BE5 /* SmartDeviceLink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5D61FA1C1A84237100846EE7 /* SmartDeviceLink.framework */; };
		167ED9461A9BCE5D00797BE5 /* SwiftSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 167ED9451A9BCE5D00797BE5 /* SwiftSpec.swift */; };
		1680B1131A9CD7AD00DBD79E /* SDLProtocolHeaderSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B1061A9CD7AD00DBD79E /* SDLProtocolHeaderSpec.m */; };
		1680B1141A9CD7AD00DBD79E /* SDLV1ProtocolHeaderSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B1071A9CD7AD00DBD79E /* SDLV1ProtocolHeaderSpec.m */; };
		1680B1151A9CD7AD00DBD79E /* SDLV2ProtocolHeaderSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B1081A9CD7AD00DBD79E /* SDLV2ProtocolHeaderSpec.m */; };
		1680B1161A9CD7AD00DBD79E /* SDLProtocolMessageSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B10A1A9CD7AD00DBD79E /* SDLProtocolMessageSpec.m */; };
		1680B1171A9CD7AD00DBD79E /* SDLProtocolSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B10B1A9CD7AD00DBD79E /* SDLProtocolSpec.m */; };
		1680B1181A9CD7AD00DBD79E /* SDLV1ProtocolMessageSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B10C1A9CD7AD00DBD79E /* SDLV1ProtocolMessageSpec.m */; };
		1680B1191A9CD7AD00DBD79E /* SDLV2ProtocolMessageSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B10D1A9CD7AD00DBD79E /* SDLV2ProtocolMessageSpec.m */; };
		1680B11A1A9CD7AD00DBD79E /* SDLAbstractProtocolSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B10E1A9CD7AD00DBD79E /* SDLAbstractProtocolSpec.m */; };
		1680B11B1A9CD7AD00DBD79E /* SDLFunctionIDSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B10F1A9CD7AD00DBD79E /* SDLFunctionIDSpec.m */; };
		1680B11C1A9CD7AD00DBD79E /* SDLProtocolMessageAssemblerSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B1101A9CD7AD00DBD79E /* SDLProtocolMessageAssemblerSpec.m */; };
		1680B11D1A9CD7AD00DBD79E /* SDLProtocolMessageDisassemblerSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B1111A9CD7AD00DBD79E /* SDLProtocolMessageDisassemblerSpec.m */; };
		1680B11E1A9CD7AD00DBD79E /* SDLProtocolReceivedMessageRouterSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 1680B1121A9CD7AD00DBD79E /* SDLProtocolReceivedMessageRouterSpec.m */; };
		332A914F1CED9CC60043824C /* SDLAppInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 332A913D1CED87F80043824C /* SDLAppInfo.m */; };
		332A91501CED9CF10043824C /* SDLAppInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 332A913C1CED87F80043824C /* SDLAppInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D0218F61A8E79C400D1BF62 /* ConnectionTCPTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D0218F51A8E79C400D1BF62 /* ConnectionTCPTableViewController.m */; };
		5D0218F91A8E7A7300D1BF62 /* ConnectionTCPTableViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5D0218F71A8E7A7300D1BF62 /* ConnectionTCPTableViewController.storyboard */; };
		5D0218FC1A8E7E1700D1BF62 /* ConnectionContainerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D0218FB1A8E7E1700D1BF62 /* ConnectionContainerViewController.m */; };
		5D0218FF1A8E9E0D00D1BF62 /* ConnectionIAPTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D0218FE1A8E9E0D00D1BF62 /* ConnectionIAPTableViewController.m */; };
		5D0219051A8E9F6D00D1BF62 /* ConnectionIAPTableViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5D0219031A8E9F6D00D1BF62 /* ConnectionIAPTableViewController.storyboard */; };
		5D1654561D3E754F00554D93 /* SDLLifecycleManagerSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D1654551D3E754F00554D93 /* SDLLifecycleManagerSpec.m */; };
		5D16545A1D3E7A1600554D93 /* SDLLifecycleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1654581D3E7A1600554D93 /* SDLLifecycleManager.h */; };
		5D16545B1D3E7A1600554D93 /* SDLLifecycleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D1654591D3E7A1600554D93 /* SDLLifecycleManager.m */; };
		5D1665AB1CF5F7D000CC4CA1 /* (null) in Sources */ = {isa = PBXBuildFile; };
		5D1665C41CF8CA2700CC4CA1 /* SDLListFilesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1665C21CF8CA2700CC4CA1 /* SDLListFilesOperation.h */; };
		5D1665C51CF8CA2700CC4CA1 /* SDLListFilesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D1665C31CF8CA2700CC4CA1 /* SDLListFilesOperation.m */; };
		5D1665C81CF8CA3D00CC4CA1 /* SDLPermissionFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1665C61CF8CA3D00CC4CA1 /* SDLPermissionFilter.h */; };
		5D1665C91CF8CA3D00CC4CA1 /* SDLPermissionFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D1665C71CF8CA3D00CC4CA1 /* SDLPermissionFilter.m */; };
		5D1665CB1CF8CA6700CC4CA1 /* NSNumber+NumberType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1665CA1CF8CA6700CC4CA1 /* NSNumber+NumberType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D1665CD1CF8CA8A00CC4CA1 /* SDLPermissionConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1665CC1CF8CA8A00CC4CA1 /* SDLPermissionConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D2996EA1BFCC0E3006106BF /* (null) in Sources */ = {isa = PBXBuildFile; };
		5D2F58081D0717D5001085CE /* SDLManagerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D2F58071D0717D5001085CE /* SDLManagerDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D3E48751D6F3B330000BFEF /* SDLAsynchronousOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3E48731D6F3B330000BFEF /* SDLAsynchronousOperation.h */; };
		5D3E48761D6F3B330000BFEF /* SDLAsynchronousOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D3E48741D6F3B330000BFEF /* SDLAsynchronousOperation.m */; };
		5D3E487B1D6F888E0000BFEF /* SDLRPCResponseNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3E48791D6F888E0000BFEF /* SDLRPCResponseNotification.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D3E487C1D6F888E0000BFEF /* SDLRPCResponseNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D3E487A1D6F888E0000BFEF /* SDLRPCResponseNotification.m */; };
		5D3E487F1D6F88A30000BFEF /* SDLRPCNotificationNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3E487D1D6F88A30000BFEF /* SDLRPCNotificationNotification.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D3E48801D6F88A30000BFEF /* SDLRPCNotificationNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D3E487E1D6F88A30000BFEF /* SDLRPCNotificationNotification.m */; };
		5D3E48CB1D7722FE0000BFEF /* NSBundle+SDLBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3E48C91D7722FE0000BFEF /* NSBundle+SDLBundle.h */; };
		5D3E48CC1D7722FE0000BFEF /* NSBundle+SDLBundle.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D3E48CA1D7722FE0000BFEF /* NSBundle+SDLBundle.m */; };
		5D4029D41A76F0340006B0C2 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5D4029D31A76F0340006B0C2 /* Images.xcassets */; };
		5D4029E31A76F0760006B0C2 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5D4029DF1A76F0760006B0C2 /* LaunchScreen.xib */; };
		5D4029E41A76F0760006B0C2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5D4029E11A76F0760006B0C2 /* Main.storyboard */; };
		5D48329D1A8EA33D00252386 /* Preferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D48329C1A8EA33D00252386 /* Preferences.m */; };
		5D4832A11A92868E00252386 /* ProxyManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D4832A01A92868E00252386 /* ProxyManager.m */; };
		5D4832A51A94F90D00252386 /* ConnectionTransitionContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D4832A41A94F90D00252386 /* ConnectionTransitionContext.m */; };
		5D4832A81A95191B00252386 /* ConnectionAnimatedTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D4832A71A95191B00252386 /* ConnectionAnimatedTransition.m */; };
		5D4D67AC1D2ED37A00468B4A /* SDLNotificationDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4D67AA1D2ED37A00468B4A /* SDLNotificationDispatcher.h */; };
		5D4D67AD1D2ED37A00468B4A /* SDLNotificationDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D4D67AB1D2ED37A00468B4A /* SDLNotificationDispatcher.m */; };
		5D4D67B01D2FE2F900468B4A /* SDLResponseDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4D67AE1D2FE2F900468B4A /* SDLResponseDispatcher.h */; };
		5D4D67B11D2FE2F900468B4A /* SDLResponseDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D4D67AF1D2FE2F900468B4A /* SDLResponseDispatcher.m */; };
		5D4D67B41D30161600468B4A /* SDLLockScreenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4D67B21D30161600468B4A /* SDLLockScreenManager.h */; };
		5D4D67B51D30161600468B4A /* SDLLockScreenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D4D67B31D30161600468B4A /* SDLLockScreenManager.m */; };
		5D535DC51B72473800CF7760 /* SDLGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D535DC31B72473800CF7760 /* SDLGlobals.h */; };
		5D535DC61B72473800CF7760 /* SDLGlobals.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D535DC41B72473800CF7760 /* SDLGlobals.m */; };
		5D53C46D1B7A99B9003526EA /* SDLStreamingMediaManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D53C46B1B7A99B9003526EA /* SDLStreamingMediaManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D53C46E1B7A99B9003526EA /* SDLStreamingMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D53C46C1B7A99B9003526EA /* SDLStreamingMediaManager.m */; };
		5D59350F1A855EB300687FB9 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D59350C1A855EB300687FB9 /* AppDelegate.m */; };
		5D5935121A855EBE00687FB9 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5935111A855EBE00687FB9 /* main.m */; };
		5D59DD471B14FDEE00BE744D /* SDLLockScreenStatusManagerSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D59DD461B14FDEE00BE744D /* SDLLockScreenStatusManagerSpec.m */; };
		5D5DBF081D48E39C00D4F914 /* FBSnapshotTestCase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5D5DBF071D48E39C00D4F914 /* FBSnapshotTestCase.framework */; };
		5D5DBF091D48E3AC00D4F914 /* FBSnapshotTestCase.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5D5DBF071D48E39C00D4F914 /* FBSnapshotTestCase.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
		5D5DBF0B1D48E5E600D4F914 /* SDLLockScreenViewControllerSnapshotTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5DBF0A1D48E5E600D4F914 /* SDLLockScreenViewControllerSnapshotTests.m */; };
		5D60088A1BE3ED540094A505 /* SDLStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6008881BE3ED540094A505 /* SDLStateMachine.h */; };
		5D60088B1BE3ED540094A505 /* SDLStateMachine.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D6008891BE3ED540094A505 /* SDLStateMachine.m */; };
		5D616B451D552F7A00553F6B /* SDLLockScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5D616B481D552F7A00553F6B /* SDLLockScreen.storyboard */; };
		5D616B461D552F7A00553F6B /* SDLLockScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5D616B481D552F7A00553F6B /* SDLLockScreen.storyboard */; };
		5D616B531D59044400553F6B /* SDLErrorConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D616B511D59044400553F6B /* SDLErrorConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FA211A84237100846EE7 /* SmartDeviceLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA201A84237100846EE7 /* SmartDeviceLink.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FA331A84237100846EE7 /* SmartDeviceLink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5D61FA1C1A84237100846EE7 /* SmartDeviceLink.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
		5D61FA341A84237100846EE7 /* SmartDeviceLink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 5D61FA1C1A84237100846EE7 /* SmartDeviceLink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
		5D61FC291A84238C00846EE7 /* SDLAbstractProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA3C1A84238A00846EE7 /* SDLAbstractProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC2A1A84238C00846EE7 /* SDLAbstractProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA3D1A84238A00846EE7 /* SDLAbstractProtocol.m */; };
		5D61FC2B1A84238C00846EE7 /* SDLAbstractTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA3E1A84238A00846EE7 /* SDLAbstractTransport.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC2C1A84238C00846EE7 /* SDLAbstractTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA3F1A84238A00846EE7 /* SDLAbstractTransport.m */; };
		5D61FC2D1A84238C00846EE7 /* SDLAddCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA401A84238A00846EE7 /* SDLAddCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC2E1A84238C00846EE7 /* SDLAddCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA411A84238A00846EE7 /* SDLAddCommand.m */; };
		5D61FC2F1A84238C00846EE7 /* SDLAddCommandResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA421A84238A00846EE7 /* SDLAddCommandResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC301A84238C00846EE7 /* SDLAddCommandResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA431A84238A00846EE7 /* SDLAddCommandResponse.m */; };
		5D61FC311A84238C00846EE7 /* SDLAddSubMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA441A84238A00846EE7 /* SDLAddSubMenu.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC321A84238C00846EE7 /* SDLAddSubMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA451A84238A00846EE7 /* SDLAddSubMenu.m */; };
		5D61FC331A84238C00846EE7 /* SDLAddSubMenuResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA461A84238A00846EE7 /* SDLAddSubMenuResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC341A84238C00846EE7 /* SDLAddSubMenuResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA471A84238A00846EE7 /* SDLAddSubMenuResponse.m */; };
		5D61FC351A84238C00846EE7 /* SDLAirbagStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA481A84238A00846EE7 /* SDLAirbagStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC361A84238C00846EE7 /* SDLAirbagStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA491A84238A00846EE7 /* SDLAirbagStatus.m */; };
		5D61FC371A84238C00846EE7 /* SDLAlert.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA4A1A84238A00846EE7 /* SDLAlert.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC381A84238C00846EE7 /* SDLAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA4B1A84238A00846EE7 /* SDLAlert.m */; };
		5D61FC391A84238C00846EE7 /* SDLAlertManeuver.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA4C1A84238A00846EE7 /* SDLAlertManeuver.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC3A1A84238C00846EE7 /* SDLAlertManeuver.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA4D1A84238A00846EE7 /* SDLAlertManeuver.m */; };
		5D61FC3B1A84238C00846EE7 /* SDLAlertManeuverResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA4E1A84238A00846EE7 /* SDLAlertManeuverResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC3C1A84238C00846EE7 /* SDLAlertManeuverResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA4F1A84238A00846EE7 /* SDLAlertManeuverResponse.m */; };
		5D61FC3D1A84238C00846EE7 /* SDLAlertResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA501A84238A00846EE7 /* SDLAlertResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC3E1A84238C00846EE7 /* SDLAlertResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA511A84238A00846EE7 /* SDLAlertResponse.m */; };
		5D61FC3F1A84238C00846EE7 /* SDLAmbientLightStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA521A84238A00846EE7 /* SDLAmbientLightStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC401A84238C00846EE7 /* SDLAmbientLightStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA531A84238A00846EE7 /* SDLAmbientLightStatus.m */; };
		5D61FC411A84238C00846EE7 /* SDLAppHMIType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA541A84238A00846EE7 /* SDLAppHMIType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC421A84238C00846EE7 /* SDLAppHMIType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA551A84238A00846EE7 /* SDLAppHMIType.m */; };
		5D61FC431A84238C00846EE7 /* SDLAppInterfaceUnregisteredReason.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA561A84238A00846EE7 /* SDLAppInterfaceUnregisteredReason.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC441A84238C00846EE7 /* SDLAppInterfaceUnregisteredReason.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA571A84238A00846EE7 /* SDLAppInterfaceUnregisteredReason.m */; };
		5D61FC451A84238C00846EE7 /* SDLAudioPassThruCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA581A84238A00846EE7 /* SDLAudioPassThruCapabilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC461A84238C00846EE7 /* SDLAudioPassThruCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA591A84238A00846EE7 /* SDLAudioPassThruCapabilities.m */; };
		5D61FC471A84238C00846EE7 /* SDLAudioStreamingState.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA5A1A84238A00846EE7 /* SDLAudioStreamingState.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC481A84238C00846EE7 /* SDLAudioStreamingState.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA5B1A84238A00846EE7 /* SDLAudioStreamingState.m */; };
		5D61FC491A84238C00846EE7 /* SDLAudioType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA5C1A84238A00846EE7 /* SDLAudioType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC4A1A84238C00846EE7 /* SDLAudioType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA5D1A84238A00846EE7 /* SDLAudioType.m */; };
		5D61FC4B1A84238C00846EE7 /* SDLBeltStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA5E1A84238A00846EE7 /* SDLBeltStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC4C1A84238C00846EE7 /* SDLBeltStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA5F1A84238A00846EE7 /* SDLBeltStatus.m */; };
		5D61FC4D1A84238C00846EE7 /* SDLBitsPerSample.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA601A84238A00846EE7 /* SDLBitsPerSample.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC4E1A84238C00846EE7 /* SDLBitsPerSample.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA611A84238A00846EE7 /* SDLBitsPerSample.m */; };
		5D61FC4F1A84238C00846EE7 /* SDLBodyInformation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA621A84238A00846EE7 /* SDLBodyInformation.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC501A84238C00846EE7 /* SDLBodyInformation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA631A84238A00846EE7 /* SDLBodyInformation.m */; };
		5D61FC511A84238C00846EE7 /* SDLButtonCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA641A84238A00846EE7 /* SDLButtonCapabilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC521A84238C00846EE7 /* SDLButtonCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA651A84238A00846EE7 /* SDLButtonCapabilities.m */; };
		5D61FC531A84238C00846EE7 /* SDLButtonEventMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA661A84238A00846EE7 /* SDLButtonEventMode.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC541A84238C00846EE7 /* SDLButtonEventMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA671A84238A00846EE7 /* SDLButtonEventMode.m */; };
		5D61FC551A84238C00846EE7 /* SDLButtonName.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA681A84238A00846EE7 /* SDLButtonName.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC561A84238C00846EE7 /* SDLButtonName.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA691A84238A00846EE7 /* SDLButtonName.m */; };
		5D61FC571A84238C00846EE7 /* SDLButtonPressMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA6A1A84238A00846EE7 /* SDLButtonPressMode.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC581A84238C00846EE7 /* SDLButtonPressMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA6B1A84238A00846EE7 /* SDLButtonPressMode.m */; };
		5D61FC591A84238C00846EE7 /* SDLCarModeStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA6C1A84238A00846EE7 /* SDLCarModeStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC5A1A84238C00846EE7 /* SDLCarModeStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA6D1A84238A00846EE7 /* SDLCarModeStatus.m */; };
		5D61FC5B1A84238C00846EE7 /* SDLChangeRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA6E1A84238A00846EE7 /* SDLChangeRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC5C1A84238C00846EE7 /* SDLChangeRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA6F1A84238A00846EE7 /* SDLChangeRegistration.m */; };
		5D61FC5D1A84238C00846EE7 /* SDLChangeRegistrationResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA701A84238A00846EE7 /* SDLChangeRegistrationResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC5E1A84238C00846EE7 /* SDLChangeRegistrationResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA711A84238A00846EE7 /* SDLChangeRegistrationResponse.m */; };
		5D61FC5F1A84238C00846EE7 /* SDLCharacterSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA721A84238A00846EE7 /* SDLCharacterSet.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC601A84238C00846EE7 /* SDLCharacterSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA731A84238A00846EE7 /* SDLCharacterSet.m */; };
		5D61FC611A84238C00846EE7 /* SDLChoice.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA741A84238A00846EE7 /* SDLChoice.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC621A84238C00846EE7 /* SDLChoice.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA751A84238A00846EE7 /* SDLChoice.m */; };
		5D61FC631A84238C00846EE7 /* SDLClusterModeStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA761A84238A00846EE7 /* SDLClusterModeStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC641A84238C00846EE7 /* SDLClusterModeStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA771A84238A00846EE7 /* SDLClusterModeStatus.m */; };
		5D61FC651A84238C00846EE7 /* SDLCompassDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA781A84238A00846EE7 /* SDLCompassDirection.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC661A84238C00846EE7 /* SDLCompassDirection.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA791A84238A00846EE7 /* SDLCompassDirection.m */; };
		5D61FC671A84238C00846EE7 /* SDLComponentVolumeStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA7A1A84238A00846EE7 /* SDLComponentVolumeStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC681A84238C00846EE7 /* SDLComponentVolumeStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA7B1A84238A00846EE7 /* SDLComponentVolumeStatus.m */; };
		5D61FC691A84238C00846EE7 /* SDLConsoleController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA7C1A84238A00846EE7 /* SDLConsoleController.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC6A1A84238C00846EE7 /* SDLConsoleController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA7D1A84238A00846EE7 /* SDLConsoleController.m */; };
		5D61FC6B1A84238C00846EE7 /* SDLCreateInteractionChoiceSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA7E1A84238A00846EE7 /* SDLCreateInteractionChoiceSet.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC6C1A84238C00846EE7 /* SDLCreateInteractionChoiceSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA7F1A84238A00846EE7 /* SDLCreateInteractionChoiceSet.m */; };
		5D61FC6D1A84238C00846EE7 /* SDLCreateInteractionChoiceSetResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA801A84238A00846EE7 /* SDLCreateInteractionChoiceSetResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC6E1A84238C00846EE7 /* SDLCreateInteractionChoiceSetResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA811A84238A00846EE7 /* SDLCreateInteractionChoiceSetResponse.m */; };
		5D61FC6F1A84238C00846EE7 /* SDLDebugTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA821A84238A00846EE7 /* SDLDebugTool.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC701A84238C00846EE7 /* SDLDebugTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA831A84238A00846EE7 /* SDLDebugTool.m */; };
		5D61FC711A84238C00846EE7 /* SDLDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA841A84238A00846EE7 /* SDLDecoder.h */; };
		5D61FC721A84238C00846EE7 /* SDLDeleteCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA851A84238A00846EE7 /* SDLDeleteCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC731A84238C00846EE7 /* SDLDeleteCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA861A84238A00846EE7 /* SDLDeleteCommand.m */; };
		5D61FC741A84238C00846EE7 /* SDLDeleteCommandResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA871A84238A00846EE7 /* SDLDeleteCommandResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC751A84238C00846EE7 /* SDLDeleteCommandResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA881A84238A00846EE7 /* SDLDeleteCommandResponse.m */; };
		5D61FC761A84238C00846EE7 /* SDLDeleteFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA891A84238A00846EE7 /* SDLDeleteFile.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC771A84238C00846EE7 /* SDLDeleteFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA8A1A84238A00846EE7 /* SDLDeleteFile.m */; };
		5D61FC781A84238C00846EE7 /* SDLDeleteFileResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA8B1A84238A00846EE7 /* SDLDeleteFileResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC791A84238C00846EE7 /* SDLDeleteFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA8C1A84238A00846EE7 /* SDLDeleteFileResponse.m */; };
		5D61FC7A1A84238C00846EE7 /* SDLDeleteInteractionChoiceSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA8D1A84238A00846EE7 /* SDLDeleteInteractionChoiceSet.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC7B1A84238C00846EE7 /* SDLDeleteInteractionChoiceSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA8E1A84238A00846EE7 /* SDLDeleteInteractionChoiceSet.m */; };
		5D61FC7C1A84238C00846EE7 /* SDLDeleteInteractionChoiceSetResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA8F1A84238A00846EE7 /* SDLDeleteInteractionChoiceSetResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC7D1A84238C00846EE7 /* SDLDeleteInteractionChoiceSetResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA901A84238A00846EE7 /* SDLDeleteInteractionChoiceSetResponse.m */; };
		5D61FC7E1A84238C00846EE7 /* SDLDeleteSubMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA911A84238A00846EE7 /* SDLDeleteSubMenu.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC7F1A84238C00846EE7 /* SDLDeleteSubMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA921A84238A00846EE7 /* SDLDeleteSubMenu.m */; };
		5D61FC801A84238C00846EE7 /* SDLDeleteSubMenuResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA931A84238A00846EE7 /* SDLDeleteSubMenuResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC811A84238C00846EE7 /* SDLDeleteSubMenuResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA941A84238A00846EE7 /* SDLDeleteSubMenuResponse.m */; };
		5D61FC821A84238C00846EE7 /* SDLDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA951A84238A00846EE7 /* SDLDeviceInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC831A84238C00846EE7 /* SDLDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA961A84238A00846EE7 /* SDLDeviceInfo.m */; };
		5D61FC841A84238C00846EE7 /* SDLDeviceLevelStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA971A84238A00846EE7 /* SDLDeviceLevelStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC851A84238C00846EE7 /* SDLDeviceLevelStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA981A84238A00846EE7 /* SDLDeviceLevelStatus.m */; };
		5D61FC861A84238C00846EE7 /* SDLDeviceStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA991A84238A00846EE7 /* SDLDeviceStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC871A84238C00846EE7 /* SDLDeviceStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA9A1A84238A00846EE7 /* SDLDeviceStatus.m */; };
		5D61FC881A84238C00846EE7 /* SDLDiagnosticMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA9B1A84238A00846EE7 /* SDLDiagnosticMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC891A84238C00846EE7 /* SDLDiagnosticMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA9C1A84238A00846EE7 /* SDLDiagnosticMessage.m */; };
		5D61FC8A1A84238C00846EE7 /* SDLDiagnosticMessageResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA9D1A84238A00846EE7 /* SDLDiagnosticMessageResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC8B1A84238C00846EE7 /* SDLDiagnosticMessageResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FA9E1A84238A00846EE7 /* SDLDiagnosticMessageResponse.m */; };
		5D61FC8C1A84238C00846EE7 /* SDLDIDResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FA9F1A84238A00846EE7 /* SDLDIDResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC8D1A84238C00846EE7 /* SDLDIDResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAA01A84238A00846EE7 /* SDLDIDResult.m */; };
		5D61FC8E1A84238C00846EE7 /* SDLDimension.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAA11A84238A00846EE7 /* SDLDimension.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC8F1A84238C00846EE7 /* SDLDimension.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAA21A84238A00846EE7 /* SDLDimension.m */; };
		5D61FC901A84238C00846EE7 /* SDLDisplayCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAA31A84238A00846EE7 /* SDLDisplayCapabilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC911A84238C00846EE7 /* SDLDisplayCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAA41A84238A00846EE7 /* SDLDisplayCapabilities.m */; };
		5D61FC921A84238C00846EE7 /* SDLDisplayType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAA51A84238A00846EE7 /* SDLDisplayType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC931A84238C00846EE7 /* SDLDisplayType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAA61A84238A00846EE7 /* SDLDisplayType.m */; };
		5D61FC941A84238C00846EE7 /* SDLDriverDistractionState.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAA71A84238A00846EE7 /* SDLDriverDistractionState.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC951A84238C00846EE7 /* SDLDriverDistractionState.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAA81A84238A00846EE7 /* SDLDriverDistractionState.m */; };
		5D61FC961A84238C00846EE7 /* SDLECallConfirmationStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAA91A84238A00846EE7 /* SDLECallConfirmationStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC971A84238C00846EE7 /* SDLECallConfirmationStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAAA1A84238A00846EE7 /* SDLECallConfirmationStatus.m */; };
		5D61FC981A84238C00846EE7 /* SDLECallInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAAB1A84238A00846EE7 /* SDLECallInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC991A84238C00846EE7 /* SDLECallInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAAC1A84238A00846EE7 /* SDLECallInfo.m */; };
		5D61FC9A1A84238C00846EE7 /* SDLEmergencyEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAAD1A84238A00846EE7 /* SDLEmergencyEvent.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC9B1A84238C00846EE7 /* SDLEmergencyEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAAE1A84238A00846EE7 /* SDLEmergencyEvent.m */; };
		5D61FC9C1A84238C00846EE7 /* SDLEmergencyEventType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAAF1A84238A00846EE7 /* SDLEmergencyEventType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC9D1A84238C00846EE7 /* SDLEmergencyEventType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAB01A84238A00846EE7 /* SDLEmergencyEventType.m */; };
		5D61FC9E1A84238C00846EE7 /* SDLEncodedSyncPData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAB11A84238A00846EE7 /* SDLEncodedSyncPData.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FC9F1A84238C00846EE7 /* SDLEncodedSyncPData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAB21A84238A00846EE7 /* SDLEncodedSyncPData.m */; };
		5D61FCA01A84238C00846EE7 /* SDLEncodedSyncPDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAB31A84238A00846EE7 /* SDLEncodedSyncPDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCA11A84238C00846EE7 /* SDLEncodedSyncPDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAB41A84238A00846EE7 /* SDLEncodedSyncPDataResponse.m */; };
		5D61FCA21A84238C00846EE7 /* SDLEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAB51A84238A00846EE7 /* SDLEncoder.h */; };
		5D61FCA31A84238C00846EE7 /* SDLEndAudioPassThru.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAB61A84238A00846EE7 /* SDLEndAudioPassThru.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCA41A84238C00846EE7 /* SDLEndAudioPassThru.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAB71A84238A00846EE7 /* SDLEndAudioPassThru.m */; };
		5D61FCA51A84238C00846EE7 /* SDLEndAudioPassThruResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAB81A84238A00846EE7 /* SDLEndAudioPassThruResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCA61A84238C00846EE7 /* SDLEndAudioPassThruResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAB91A84238A00846EE7 /* SDLEndAudioPassThruResponse.m */; };
		5D61FCA71A84238C00846EE7 /* SDLEnum.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FABA1A84238A00846EE7 /* SDLEnum.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCA81A84238C00846EE7 /* SDLEnum.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FABB1A84238A00846EE7 /* SDLEnum.m */; };
		5D61FCA91A84238C00846EE7 /* SDLFileType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FABC1A84238A00846EE7 /* SDLFileType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCAA1A84238C00846EE7 /* SDLFileType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FABD1A84238A00846EE7 /* SDLFileType.m */; };
		5D61FCAB1A84238C00846EE7 /* SDLFuelCutoffStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FABE1A84238A00846EE7 /* SDLFuelCutoffStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCAC1A84238C00846EE7 /* SDLFuelCutoffStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FABF1A84238A00846EE7 /* SDLFuelCutoffStatus.m */; };
		5D61FCAD1A84238C00846EE7 /* SDLFunctionID.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAC01A84238A00846EE7 /* SDLFunctionID.h */; };
		5D61FCAE1A84238C00846EE7 /* SDLFunctionID.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAC11A84238A00846EE7 /* SDLFunctionID.m */; };
		5D61FCAF1A84238C00846EE7 /* SDLGenericResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAC21A84238A00846EE7 /* SDLGenericResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCB01A84238C00846EE7 /* SDLGenericResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAC31A84238A00846EE7 /* SDLGenericResponse.m */; };
		5D61FCB11A84238C00846EE7 /* SDLGetDTCs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAC41A84238A00846EE7 /* SDLGetDTCs.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCB21A84238C00846EE7 /* SDLGetDTCs.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAC51A84238A00846EE7 /* SDLGetDTCs.m */; };
		5D61FCB31A84238C00846EE7 /* SDLGetDTCsResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAC61A84238A00846EE7 /* SDLGetDTCsResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCB41A84238C00846EE7 /* SDLGetDTCsResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAC71A84238A00846EE7 /* SDLGetDTCsResponse.m */; };
		5D61FCB51A84238C00846EE7 /* SDLGetVehicleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAC81A84238A00846EE7 /* SDLGetVehicleData.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCB61A84238C00846EE7 /* SDLGetVehicleData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAC91A84238A00846EE7 /* SDLGetVehicleData.m */; };
		5D61FCB71A84238C00846EE7 /* SDLGetVehicleDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FACA1A84238A00846EE7 /* SDLGetVehicleDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCB81A84238C00846EE7 /* SDLGetVehicleDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FACB1A84238A00846EE7 /* SDLGetVehicleDataResponse.m */; };
		5D61FCB91A84238C00846EE7 /* SDLGlobalProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FACC1A84238A00846EE7 /* SDLGlobalProperty.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCBA1A84238C00846EE7 /* SDLGlobalProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FACD1A84238A00846EE7 /* SDLGlobalProperty.m */; };
		5D61FCBB1A84238C00846EE7 /* SDLGPSData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FACE1A84238A00846EE7 /* SDLGPSData.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCBC1A84238C00846EE7 /* SDLGPSData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FACF1A84238A00846EE7 /* SDLGPSData.m */; };
		5D61FCBD1A84238C00846EE7 /* SDLHeadLampStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAD01A84238A00846EE7 /* SDLHeadLampStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCBE1A84238C00846EE7 /* SDLHeadLampStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAD11A84238A00846EE7 /* SDLHeadLampStatus.m */; };
		5D61FCBF1A84238C00846EE7 /* SDLHexUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAD21A84238A00846EE7 /* SDLHexUtility.h */; };
		5D61FCC01A84238C00846EE7 /* SDLHexUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAD31A84238A00846EE7 /* SDLHexUtility.m */; };
		5D61FCC11A84238C00846EE7 /* SDLHMILevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAD41A84238A00846EE7 /* SDLHMILevel.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCC21A84238C00846EE7 /* SDLHMILevel.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAD51A84238A00846EE7 /* SDLHMILevel.m */; };
		5D61FCC31A84238C00846EE7 /* SDLHMIPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAD61A84238A00846EE7 /* SDLHMIPermissions.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCC41A84238C00846EE7 /* SDLHMIPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAD71A84238A00846EE7 /* SDLHMIPermissions.m */; };
		5D61FCC51A84238C00846EE7 /* SDLHMIZoneCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAD81A84238A00846EE7 /* SDLHMIZoneCapabilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCC61A84238C00846EE7 /* SDLHMIZoneCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAD91A84238A00846EE7 /* SDLHMIZoneCapabilities.m */; };
		5D61FCC71A84238C00846EE7 /* SDLIAPTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FADA1A84238A00846EE7 /* SDLIAPTransport.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCC81A84238C00846EE7 /* SDLIAPTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FADB1A84238A00846EE7 /* SDLIAPTransport.m */; };
		5D61FCC91A84238C00846EE7 /* SDLIgnitionStableStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FADC1A84238A00846EE7 /* SDLIgnitionStableStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCCA1A84238C00846EE7 /* SDLIgnitionStableStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FADD1A84238A00846EE7 /* SDLIgnitionStableStatus.m */; };
		5D61FCCB1A84238C00846EE7 /* SDLIgnitionStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FADE1A84238A00846EE7 /* SDLIgnitionStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCCC1A84238C00846EE7 /* SDLIgnitionStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FADF1A84238A00846EE7 /* SDLIgnitionStatus.m */; };
		5D61FCCD1A84238C00846EE7 /* SDLImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAE01A84238A00846EE7 /* SDLImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCCE1A84238C00846EE7 /* SDLImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAE11A84238A00846EE7 /* SDLImage.m */; };
		5D61FCCF1A84238C00846EE7 /* SDLImageField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAE21A84238A00846EE7 /* SDLImageField.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCD01A84238C00846EE7 /* SDLImageField.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAE31A84238A00846EE7 /* SDLImageField.m */; };
		5D61FCD11A84238C00846EE7 /* SDLImageFieldName.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAE41A84238A00846EE7 /* SDLImageFieldName.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCD21A84238C00846EE7 /* SDLImageFieldName.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAE51A84238A00846EE7 /* SDLImageFieldName.m */; };
		5D61FCD31A84238C00846EE7 /* SDLImageResolution.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAE61A84238A00846EE7 /* SDLImageResolution.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCD41A84238C00846EE7 /* SDLImageResolution.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAE71A84238A00846EE7 /* SDLImageResolution.m */; };
		5D61FCD51A84238C00846EE7 /* SDLImageType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAE81A84238A00846EE7 /* SDLImageType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCD61A84238C00846EE7 /* SDLImageType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAE91A84238A00846EE7 /* SDLImageType.m */; };
		5D61FCD71A84238C00846EE7 /* SDLInteractionMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAEA1A84238A00846EE7 /* SDLInteractionMode.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCD81A84238C00846EE7 /* SDLInteractionMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAEB1A84238A00846EE7 /* SDLInteractionMode.m */; };
		5D61FCDA1A84238C00846EE7 /* SDLJingle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAED1A84238A00846EE7 /* SDLJingle.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCDB1A84238C00846EE7 /* SDLJingle.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAEE1A84238A00846EE7 /* SDLJingle.m */; };
		5D61FCDC1A84238C00846EE7 /* SDLJsonDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAEF1A84238A00846EE7 /* SDLJsonDecoder.h */; };
		5D61FCDD1A84238C00846EE7 /* SDLJsonDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAF01A84238A00846EE7 /* SDLJsonDecoder.m */; };
		5D61FCDE1A84238C00846EE7 /* SDLJsonEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAF11A84238A00846EE7 /* SDLJsonEncoder.h */; };
		5D61FCDF1A84238C00846EE7 /* SDLJsonEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAF21A84238A00846EE7 /* SDLJsonEncoder.m */; };
		5D61FCE01A84238C00846EE7 /* SDLKeyboardEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAF31A84238A00846EE7 /* SDLKeyboardEvent.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCE11A84238C00846EE7 /* SDLKeyboardEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAF41A84238A00846EE7 /* SDLKeyboardEvent.m */; };
		5D61FCE21A84238C00846EE7 /* SDLKeyboardLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAF51A84238A00846EE7 /* SDLKeyboardLayout.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCE31A84238C00846EE7 /* SDLKeyboardLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAF61A84238A00846EE7 /* SDLKeyboardLayout.m */; };
		5D61FCE41A84238C00846EE7 /* SDLKeyboardProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAF71A84238A00846EE7 /* SDLKeyboardProperties.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCE51A84238C00846EE7 /* SDLKeyboardProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAF81A84238A00846EE7 /* SDLKeyboardProperties.m */; };
		5D61FCE61A84238C00846EE7 /* SDLKeypressMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAF91A84238A00846EE7 /* SDLKeypressMode.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCE71A84238C00846EE7 /* SDLKeypressMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAFA1A84238A00846EE7 /* SDLKeypressMode.m */; };
		5D61FCE81A84238C00846EE7 /* SDLLanguage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAFB1A84238A00846EE7 /* SDLLanguage.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCE91A84238C00846EE7 /* SDLLanguage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAFC1A84238A00846EE7 /* SDLLanguage.m */; };
		5D61FCEA1A84238C00846EE7 /* SDLLayoutMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAFD1A84238A00846EE7 /* SDLLayoutMode.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCEB1A84238C00846EE7 /* SDLLayoutMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FAFE1A84238A00846EE7 /* SDLLayoutMode.m */; };
		5D61FCEC1A84238C00846EE7 /* SDLListFiles.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FAFF1A84238A00846EE7 /* SDLListFiles.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCED1A84238C00846EE7 /* SDLListFiles.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB001A84238A00846EE7 /* SDLListFiles.m */; };
		5D61FCEE1A84238C00846EE7 /* SDLListFilesResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB011A84238A00846EE7 /* SDLListFilesResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCEF1A84238C00846EE7 /* SDLListFilesResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB021A84238A00846EE7 /* SDLListFilesResponse.m */; };
		5D61FCF01A84238C00846EE7 /* SDLLockScreenStatusManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB031A84238A00846EE7 /* SDLLockScreenStatusManager.h */; };
		5D61FCF11A84238C00846EE7 /* SDLLockScreenStatusManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB041A84238A00846EE7 /* SDLLockScreenStatusManager.m */; };
		5D61FCF21A84238C00846EE7 /* SDLLockScreenStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB051A84238A00846EE7 /* SDLLockScreenStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCF31A84238C00846EE7 /* SDLLockScreenStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB061A84238A00846EE7 /* SDLLockScreenStatus.m */; };
		5D61FCF41A84238C00846EE7 /* SDLMaintenanceModeStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB071A84238A00846EE7 /* SDLMaintenanceModeStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCF51A84238C00846EE7 /* SDLMaintenanceModeStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB081A84238A00846EE7 /* SDLMaintenanceModeStatus.m */; };
		5D61FCF61A84238C00846EE7 /* SDLMediaClockFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB091A84238A00846EE7 /* SDLMediaClockFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCF71A84238C00846EE7 /* SDLMediaClockFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB0A1A84238A00846EE7 /* SDLMediaClockFormat.m */; };
		5D61FCF81A84238C00846EE7 /* SDLMenuParams.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB0B1A84238A00846EE7 /* SDLMenuParams.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCF91A84238C00846EE7 /* SDLMenuParams.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB0C1A84238A00846EE7 /* SDLMenuParams.m */; };
		5D61FCFA1A84238C00846EE7 /* SDLMyKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB0D1A84238A00846EE7 /* SDLMyKey.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FCFB1A84238C00846EE7 /* SDLMyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB0E1A84238A00846EE7 /* SDLMyKey.m */; };
		5D61FCFC1A84238C00846EE7 /* SDLNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB0F1A84238A00846EE7 /* SDLNames.h */; };
		5D61FCFD1A84238C00846EE7 /* SDLObjectWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB101A84238A00846EE7 /* SDLObjectWithPriority.h */; };
		5D61FCFE1A84238C00846EE7 /* SDLObjectWithPriority.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB111A84238A00846EE7 /* SDLObjectWithPriority.m */; };
		5D61FCFF1A84238C00846EE7 /* SDLOnAppInterfaceUnregistered.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB121A84238B00846EE7 /* SDLOnAppInterfaceUnregistered.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD001A84238C00846EE7 /* SDLOnAppInterfaceUnregistered.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB131A84238B00846EE7 /* SDLOnAppInterfaceUnregistered.m */; };
		5D61FD011A84238C00846EE7 /* SDLOnAudioPassThru.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB141A84238B00846EE7 /* SDLOnAudioPassThru.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD021A84238C00846EE7 /* SDLOnAudioPassThru.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB151A84238B00846EE7 /* SDLOnAudioPassThru.m */; };
		5D61FD031A84238C00846EE7 /* SDLOnButtonEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB161A84238B00846EE7 /* SDLOnButtonEvent.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD041A84238C00846EE7 /* SDLOnButtonEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB171A84238B00846EE7 /* SDLOnButtonEvent.m */; };
		5D61FD051A84238C00846EE7 /* SDLOnButtonPress.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB181A84238B00846EE7 /* SDLOnButtonPress.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD061A84238C00846EE7 /* SDLOnButtonPress.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB191A84238B00846EE7 /* SDLOnButtonPress.m */; };
		5D61FD071A84238C00846EE7 /* SDLOnCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB1A1A84238B00846EE7 /* SDLOnCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD081A84238C00846EE7 /* SDLOnCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB1B1A84238B00846EE7 /* SDLOnCommand.m */; };
		5D61FD091A84238C00846EE7 /* SDLOnDriverDistraction.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB1C1A84238B00846EE7 /* SDLOnDriverDistraction.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD0A1A84238C00846EE7 /* SDLOnDriverDistraction.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB1D1A84238B00846EE7 /* SDLOnDriverDistraction.m */; };
		5D61FD0B1A84238C00846EE7 /* SDLOnEncodedSyncPData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB1E1A84238B00846EE7 /* SDLOnEncodedSyncPData.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD0C1A84238C00846EE7 /* SDLOnEncodedSyncPData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB1F1A84238B00846EE7 /* SDLOnEncodedSyncPData.m */; };
		5D61FD0D1A84238C00846EE7 /* SDLOnHashChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB201A84238B00846EE7 /* SDLOnHashChange.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD0E1A84238C00846EE7 /* SDLOnHashChange.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB211A84238B00846EE7 /* SDLOnHashChange.m */; };
		5D61FD0F1A84238C00846EE7 /* SDLOnHMIStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB221A84238B00846EE7 /* SDLOnHMIStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD101A84238C00846EE7 /* SDLOnHMIStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB231A84238B00846EE7 /* SDLOnHMIStatus.m */; };
		5D61FD111A84238C00846EE7 /* SDLOnKeyboardInput.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB241A84238B00846EE7 /* SDLOnKeyboardInput.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD121A84238C00846EE7 /* SDLOnKeyboardInput.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB251A84238B00846EE7 /* SDLOnKeyboardInput.m */; };
		5D61FD131A84238C00846EE7 /* SDLOnLanguageChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB261A84238B00846EE7 /* SDLOnLanguageChange.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD141A84238C00846EE7 /* SDLOnLanguageChange.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB271A84238B00846EE7 /* SDLOnLanguageChange.m */; };
		5D61FD151A84238C00846EE7 /* SDLOnLockScreenStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB281A84238B00846EE7 /* SDLOnLockScreenStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD161A84238C00846EE7 /* SDLOnLockScreenStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB291A84238B00846EE7 /* SDLOnLockScreenStatus.m */; };
		5D61FD171A84238C00846EE7 /* SDLOnPermissionsChange.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB2A1A84238B00846EE7 /* SDLOnPermissionsChange.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD181A84238C00846EE7 /* SDLOnPermissionsChange.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB2B1A84238B00846EE7 /* SDLOnPermissionsChange.m */; };
		5D61FD191A84238C00846EE7 /* SDLOnSyncPData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB2C1A84238B00846EE7 /* SDLOnSyncPData.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD1A1A84238C00846EE7 /* SDLOnSyncPData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB2D1A84238B00846EE7 /* SDLOnSyncPData.m */; };
		5D61FD1B1A84238C00846EE7 /* SDLOnSystemRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB2E1A84238B00846EE7 /* SDLOnSystemRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD1C1A84238C00846EE7 /* SDLOnSystemRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB2F1A84238B00846EE7 /* SDLOnSystemRequest.m */; };
		5D61FD1D1A84238C00846EE7 /* SDLOnTBTClientState.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB301A84238B00846EE7 /* SDLOnTBTClientState.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD1E1A84238C00846EE7 /* SDLOnTBTClientState.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB311A84238B00846EE7 /* SDLOnTBTClientState.m */; };
		5D61FD1F1A84238C00846EE7 /* SDLOnTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB321A84238B00846EE7 /* SDLOnTouchEvent.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD201A84238C00846EE7 /* SDLOnTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB331A84238B00846EE7 /* SDLOnTouchEvent.m */; };
		5D61FD211A84238C00846EE7 /* SDLOnVehicleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB341A84238B00846EE7 /* SDLOnVehicleData.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD221A84238C00846EE7 /* SDLOnVehicleData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB351A84238B00846EE7 /* SDLOnVehicleData.m */; };
		5D61FD231A84238C00846EE7 /* SDLParameterPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB361A84238B00846EE7 /* SDLParameterPermissions.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD241A84238C00846EE7 /* SDLParameterPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB371A84238B00846EE7 /* SDLParameterPermissions.m */; };
		5D61FD251A84238C00846EE7 /* SDLPerformAudioPassThru.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB381A84238B00846EE7 /* SDLPerformAudioPassThru.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD261A84238C00846EE7 /* SDLPerformAudioPassThru.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB391A84238B00846EE7 /* SDLPerformAudioPassThru.m */; };
		5D61FD271A84238C00846EE7 /* SDLPerformAudioPassThruResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB3A1A84238B00846EE7 /* SDLPerformAudioPassThruResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD281A84238C00846EE7 /* SDLPerformAudioPassThruResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB3B1A84238B00846EE7 /* SDLPerformAudioPassThruResponse.m */; };
		5D61FD291A84238C00846EE7 /* SDLPerformInteraction.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB3C1A84238B00846EE7 /* SDLPerformInteraction.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD2A1A84238C00846EE7 /* SDLPerformInteraction.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB3D1A84238B00846EE7 /* SDLPerformInteraction.m */; };
		5D61FD2B1A84238C00846EE7 /* SDLPerformInteractionResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB3E1A84238B00846EE7 /* SDLPerformInteractionResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD2C1A84238C00846EE7 /* SDLPerformInteractionResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB3F1A84238B00846EE7 /* SDLPerformInteractionResponse.m */; };
		5D61FD2D1A84238C00846EE7 /* SDLPermissionItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB401A84238B00846EE7 /* SDLPermissionItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD2E1A84238C00846EE7 /* SDLPermissionItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB411A84238B00846EE7 /* SDLPermissionItem.m */; };
		5D61FD2F1A84238C00846EE7 /* SDLPermissionStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB421A84238B00846EE7 /* SDLPermissionStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD301A84238C00846EE7 /* SDLPermissionStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB431A84238B00846EE7 /* SDLPermissionStatus.m */; };
		5D61FD311A84238C00846EE7 /* SDLPolicyDataParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB441A84238B00846EE7 /* SDLPolicyDataParser.h */; };
		5D61FD321A84238C00846EE7 /* SDLPolicyDataParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB451A84238B00846EE7 /* SDLPolicyDataParser.m */; };
		5D61FD331A84238C00846EE7 /* SDLPowerModeQualificationStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB461A84238B00846EE7 /* SDLPowerModeQualificationStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD341A84238C00846EE7 /* SDLPowerModeQualificationStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB471A84238B00846EE7 /* SDLPowerModeQualificationStatus.m */; };
		5D61FD351A84238C00846EE7 /* SDLPowerModeStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB481A84238B00846EE7 /* SDLPowerModeStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD361A84238C00846EE7 /* SDLPowerModeStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB491A84238B00846EE7 /* SDLPowerModeStatus.m */; };
		5D61FD371A84238C00846EE7 /* SDLPredefinedLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB4A1A84238B00846EE7 /* SDLPredefinedLayout.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD381A84238C00846EE7 /* SDLPredefinedLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB4B1A84238B00846EE7 /* SDLPredefinedLayout.m */; };
		5D61FD391A84238C00846EE7 /* SDLPrerecordedSpeech.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB4C1A84238B00846EE7 /* SDLPrerecordedSpeech.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD3A1A84238C00846EE7 /* SDLPrerecordedSpeech.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB4D1A84238B00846EE7 /* SDLPrerecordedSpeech.m */; };
		5D61FD3B1A84238C00846EE7 /* SDLPresetBankCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB4E1A84238B00846EE7 /* SDLPresetBankCapabilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD3C1A84238C00846EE7 /* SDLPresetBankCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB4F1A84238B00846EE7 /* SDLPresetBankCapabilities.m */; };
		5D61FD3D1A84238C00846EE7 /* SDLPrimaryAudioSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB501A84238B00846EE7 /* SDLPrimaryAudioSource.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD3E1A84238C00846EE7 /* SDLPrimaryAudioSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB511A84238B00846EE7 /* SDLPrimaryAudioSource.m */; };
		5D61FD3F1A84238C00846EE7 /* SDLPrioritizedObjectCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB521A84238B00846EE7 /* SDLPrioritizedObjectCollection.h */; };
		5D61FD401A84238C00846EE7 /* SDLPrioritizedObjectCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB531A84238B00846EE7 /* SDLPrioritizedObjectCollection.m */; };
		5D61FD411A84238C00846EE7 /* SDLPRNDL.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB541A84238B00846EE7 /* SDLPRNDL.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD421A84238C00846EE7 /* SDLPRNDL.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB551A84238B00846EE7 /* SDLPRNDL.m */; };
		5D61FD431A84238C00846EE7 /* SDLProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB561A84238B00846EE7 /* SDLProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD441A84238C00846EE7 /* SDLProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB571A84238B00846EE7 /* SDLProtocol.m */; };
		5D61FD451A84238C00846EE7 /* SDLProtocolHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB581A84238B00846EE7 /* SDLProtocolHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD461A84238C00846EE7 /* SDLProtocolHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB591A84238B00846EE7 /* SDLProtocolHeader.m */; };
		5D61FD471A84238C00846EE7 /* SDLProtocolListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB5A1A84238B00846EE7 /* SDLProtocolListener.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD481A84238C00846EE7 /* SDLProtocolMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB5B1A84238B00846EE7 /* SDLProtocolMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD491A84238C00846EE7 /* SDLProtocolMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB5C1A84238B00846EE7 /* SDLProtocolMessage.m */; };
		5D61FD4A1A84238C00846EE7 /* SDLProtocolMessageAssembler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB5D1A84238B00846EE7 /* SDLProtocolMessageAssembler.h */; };
		5D61FD4B1A84238C00846EE7 /* SDLProtocolMessageAssembler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB5E1A84238B00846EE7 /* SDLProtocolMessageAssembler.m */; };
		5D61FD4C1A84238C00846EE7 /* SDLProtocolMessageDisassembler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB5F1A84238B00846EE7 /* SDLProtocolMessageDisassembler.h */; };
		5D61FD4D1A84238C00846EE7 /* SDLProtocolMessageDisassembler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB601A84238B00846EE7 /* SDLProtocolMessageDisassembler.m */; };
		5D61FD4E1A84238C00846EE7 /* SDLProtocolReceivedMessageRouter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB611A84238B00846EE7 /* SDLProtocolReceivedMessageRouter.h */; };
		5D61FD4F1A84238C00846EE7 /* SDLProtocolReceivedMessageRouter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB621A84238B00846EE7 /* SDLProtocolReceivedMessageRouter.m */; };
		5D61FD501A84238C00846EE7 /* SDLProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB631A84238B00846EE7 /* SDLProxy.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD511A84238C00846EE7 /* SDLProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB641A84238B00846EE7 /* SDLProxy.m */; };
		5D61FD521A84238C00846EE7 /* SDLProxyFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB651A84238B00846EE7 /* SDLProxyFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD531A84238C00846EE7 /* SDLProxyFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB661A84238B00846EE7 /* SDLProxyFactory.m */; };
		5D61FD541A84238C00846EE7 /* SDLProxyListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB671A84238B00846EE7 /* SDLProxyListener.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD551A84238C00846EE7 /* SDLPutFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB681A84238B00846EE7 /* SDLPutFile.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD561A84238C00846EE7 /* SDLPutFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB691A84238B00846EE7 /* SDLPutFile.m */; };
		5D61FD571A84238C00846EE7 /* SDLPutFileResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB6A1A84238B00846EE7 /* SDLPutFileResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD581A84238C00846EE7 /* SDLPutFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB6B1A84238B00846EE7 /* SDLPutFileResponse.m */; };
		5D61FD591A84238C00846EE7 /* SDLReadDID.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB6C1A84238B00846EE7 /* SDLReadDID.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD5A1A84238C00846EE7 /* SDLReadDID.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB6D1A84238B00846EE7 /* SDLReadDID.m */; };
		5D61FD5B1A84238C00846EE7 /* SDLReadDIDResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB6E1A84238B00846EE7 /* SDLReadDIDResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD5C1A84238C00846EE7 /* SDLReadDIDResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB6F1A84238B00846EE7 /* SDLReadDIDResponse.m */; };
		5D61FD5D1A84238C00846EE7 /* SDLRegisterAppInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB701A84238B00846EE7 /* SDLRegisterAppInterface.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD5E1A84238C00846EE7 /* SDLRegisterAppInterface.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB711A84238B00846EE7 /* SDLRegisterAppInterface.m */; };
		5D61FD5F1A84238C00846EE7 /* SDLRegisterAppInterfaceResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB721A84238B00846EE7 /* SDLRegisterAppInterfaceResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD601A84238C00846EE7 /* SDLRegisterAppInterfaceResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB731A84238B00846EE7 /* SDLRegisterAppInterfaceResponse.m */; };
		5D61FD611A84238C00846EE7 /* SDLRequestType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB741A84238B00846EE7 /* SDLRequestType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD621A84238C00846EE7 /* SDLRequestType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB751A84238B00846EE7 /* SDLRequestType.m */; };
		5D61FD631A84238C00846EE7 /* SDLResetGlobalProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB761A84238B00846EE7 /* SDLResetGlobalProperties.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD641A84238C00846EE7 /* SDLResetGlobalProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB771A84238B00846EE7 /* SDLResetGlobalProperties.m */; };
		5D61FD651A84238C00846EE7 /* SDLResetGlobalPropertiesResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB781A84238B00846EE7 /* SDLResetGlobalPropertiesResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD661A84238C00846EE7 /* SDLResetGlobalPropertiesResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB791A84238B00846EE7 /* SDLResetGlobalPropertiesResponse.m */; };
		5D61FD671A84238C00846EE7 /* SDLResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB7A1A84238B00846EE7 /* SDLResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD681A84238C00846EE7 /* SDLResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB7B1A84238B00846EE7 /* SDLResult.m */; };
		5D61FD691A84238C00846EE7 /* SDLRPCMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB7C1A84238B00846EE7 /* SDLRPCMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD6A1A84238C00846EE7 /* SDLRPCMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB7D1A84238B00846EE7 /* SDLRPCMessage.m */; };
		5D61FD6B1A84238C00846EE7 /* SDLRPCMessageType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB7E1A84238B00846EE7 /* SDLRPCMessageType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD6D1A84238C00846EE7 /* SDLRPCNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB801A84238B00846EE7 /* SDLRPCNotification.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD6E1A84238C00846EE7 /* SDLRPCNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB811A84238B00846EE7 /* SDLRPCNotification.m */; };
		5D61FD6F1A84238C00846EE7 /* SDLRPCPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB821A84238B00846EE7 /* SDLRPCPayload.h */; };
		5D61FD701A84238C00846EE7 /* SDLRPCPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB831A84238B00846EE7 /* SDLRPCPayload.m */; };
		5D61FD711A84238C00846EE7 /* SDLRPCRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB841A84238B00846EE7 /* SDLRPCRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD721A84238C00846EE7 /* SDLRPCRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB851A84238B00846EE7 /* SDLRPCRequest.m */; };
		5D61FD731A84238C00846EE7 /* SDLRPCRequestFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB861A84238B00846EE7 /* SDLRPCRequestFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD741A84238C00846EE7 /* SDLRPCRequestFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB871A84238B00846EE7 /* SDLRPCRequestFactory.m */; };
		5D61FD751A84238C00846EE7 /* SDLRPCResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB881A84238B00846EE7 /* SDLRPCResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD761A84238C00846EE7 /* SDLRPCResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB891A84238B00846EE7 /* SDLRPCResponse.m */; };
		5D61FD771A84238C00846EE7 /* SDLSamplingRate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB8A1A84238B00846EE7 /* SDLSamplingRate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD781A84238C00846EE7 /* SDLSamplingRate.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB8B1A84238B00846EE7 /* SDLSamplingRate.m */; };
		5D61FD791A84238C00846EE7 /* SDLScreenParams.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB8C1A84238B00846EE7 /* SDLScreenParams.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD7A1A84238C00846EE7 /* SDLScreenParams.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB8D1A84238B00846EE7 /* SDLScreenParams.m */; };
		5D61FD7B1A84238C00846EE7 /* SDLScrollableMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB8E1A84238B00846EE7 /* SDLScrollableMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD7C1A84238C00846EE7 /* SDLScrollableMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB8F1A84238B00846EE7 /* SDLScrollableMessage.m */; };
		5D61FD7D1A84238C00846EE7 /* SDLScrollableMessageResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB901A84238B00846EE7 /* SDLScrollableMessageResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD7E1A84238C00846EE7 /* SDLScrollableMessageResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB911A84238B00846EE7 /* SDLScrollableMessageResponse.m */; };
		5D61FD7F1A84238C00846EE7 /* SDLSetAppIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB921A84238B00846EE7 /* SDLSetAppIcon.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD801A84238C00846EE7 /* SDLSetAppIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB931A84238B00846EE7 /* SDLSetAppIcon.m */; };
		5D61FD811A84238C00846EE7 /* SDLSetAppIconResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB941A84238B00846EE7 /* SDLSetAppIconResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD821A84238C00846EE7 /* SDLSetAppIconResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB951A84238B00846EE7 /* SDLSetAppIconResponse.m */; };
		5D61FD831A84238C00846EE7 /* SDLSetDisplayLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB961A84238B00846EE7 /* SDLSetDisplayLayout.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD841A84238C00846EE7 /* SDLSetDisplayLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB971A84238B00846EE7 /* SDLSetDisplayLayout.m */; };
		5D61FD851A84238C00846EE7 /* SDLSetDisplayLayoutResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB981A84238B00846EE7 /* SDLSetDisplayLayoutResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD861A84238C00846EE7 /* SDLSetDisplayLayoutResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB991A84238B00846EE7 /* SDLSetDisplayLayoutResponse.m */; };
		5D61FD871A84238C00846EE7 /* SDLSetGlobalProperties.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB9A1A84238B00846EE7 /* SDLSetGlobalProperties.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD881A84238C00846EE7 /* SDLSetGlobalProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB9B1A84238B00846EE7 /* SDLSetGlobalProperties.m */; };
		5D61FD891A84238C00846EE7 /* SDLSetGlobalPropertiesResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB9C1A84238B00846EE7 /* SDLSetGlobalPropertiesResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD8A1A84238C00846EE7 /* SDLSetGlobalPropertiesResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB9D1A84238B00846EE7 /* SDLSetGlobalPropertiesResponse.m */; };
		5D61FD8B1A84238C00846EE7 /* SDLSetMediaClockTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FB9E1A84238B00846EE7 /* SDLSetMediaClockTimer.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD8C1A84238C00846EE7 /* SDLSetMediaClockTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB9F1A84238B00846EE7 /* SDLSetMediaClockTimer.m */; };
		5D61FD8D1A84238C00846EE7 /* SDLSetMediaClockTimerResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBA01A84238B00846EE7 /* SDLSetMediaClockTimerResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD8E1A84238C00846EE7 /* SDLSetMediaClockTimerResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBA11A84238B00846EE7 /* SDLSetMediaClockTimerResponse.m */; };
		5D61FD8F1A84238C00846EE7 /* SDLShow.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBA21A84238B00846EE7 /* SDLShow.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD901A84238C00846EE7 /* SDLShow.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBA31A84238B00846EE7 /* SDLShow.m */; };
		5D61FD911A84238C00846EE7 /* SDLShowConstantTBT.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBA41A84238B00846EE7 /* SDLShowConstantTBT.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD921A84238C00846EE7 /* SDLShowConstantTBT.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBA51A84238B00846EE7 /* SDLShowConstantTBT.m */; };
		5D61FD931A84238C00846EE7 /* SDLShowConstantTBTResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBA61A84238B00846EE7 /* SDLShowConstantTBTResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD941A84238C00846EE7 /* SDLShowConstantTBTResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBA71A84238B00846EE7 /* SDLShowConstantTBTResponse.m */; };
		5D61FD951A84238C00846EE7 /* SDLShowResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBA81A84238B00846EE7 /* SDLShowResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD961A84238C00846EE7 /* SDLShowResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBA91A84238B00846EE7 /* SDLShowResponse.m */; };
		5D61FD971A84238C00846EE7 /* SDLSingleTireStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBAA1A84238B00846EE7 /* SDLSingleTireStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD981A84238C00846EE7 /* SDLSingleTireStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBAB1A84238B00846EE7 /* SDLSingleTireStatus.m */; };
		5D61FD991A84238C00846EE7 /* SDLSiphonServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBAC1A84238B00846EE7 /* SDLSiphonServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD9A1A84238C00846EE7 /* SDLSiphonServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBAD1A84238B00846EE7 /* SDLSiphonServer.m */; };
		5D61FD9B1A84238C00846EE7 /* SDLSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBAE1A84238B00846EE7 /* SDLSlider.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD9C1A84238C00846EE7 /* SDLSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBAF1A84238B00846EE7 /* SDLSlider.m */; };
		5D61FD9D1A84238C00846EE7 /* SDLSliderResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBB01A84238B00846EE7 /* SDLSliderResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FD9E1A84238C00846EE7 /* SDLSliderResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBB11A84238B00846EE7 /* SDLSliderResponse.m */; };
		5D61FD9F1A84238C00846EE7 /* SDLSoftButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBB21A84238B00846EE7 /* SDLSoftButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDA01A84238C00846EE7 /* SDLSoftButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBB31A84238B00846EE7 /* SDLSoftButton.m */; };
		5D61FDA11A84238C00846EE7 /* SDLSoftButtonCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBB41A84238B00846EE7 /* SDLSoftButtonCapabilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDA21A84238C00846EE7 /* SDLSoftButtonCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBB51A84238B00846EE7 /* SDLSoftButtonCapabilities.m */; };
		5D61FDA31A84238C00846EE7 /* SDLSoftButtonType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBB61A84238B00846EE7 /* SDLSoftButtonType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDA41A84238C00846EE7 /* SDLSoftButtonType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBB71A84238B00846EE7 /* SDLSoftButtonType.m */; };
		5D61FDA51A84238C00846EE7 /* SDLSpeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBB81A84238B00846EE7 /* SDLSpeak.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDA61A84238C00846EE7 /* SDLSpeak.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBB91A84238B00846EE7 /* SDLSpeak.m */; };
		5D61FDA71A84238C00846EE7 /* SDLSpeakResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBBA1A84238B00846EE7 /* SDLSpeakResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDA81A84238C00846EE7 /* SDLSpeakResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBBB1A84238B00846EE7 /* SDLSpeakResponse.m */; };
		5D61FDA91A84238C00846EE7 /* SDLSpeechCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBBC1A84238B00846EE7 /* SDLSpeechCapabilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDAA1A84238C00846EE7 /* SDLSpeechCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBBD1A84238B00846EE7 /* SDLSpeechCapabilities.m */; };
		5D61FDAB1A84238C00846EE7 /* SDLStartTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBBE1A84238B00846EE7 /* SDLStartTime.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDAC1A84238C00846EE7 /* SDLStartTime.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBBF1A84238B00846EE7 /* SDLStartTime.m */; };
		5D61FDAD1A84238C00846EE7 /* SDLSubscribeButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBC01A84238B00846EE7 /* SDLSubscribeButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDAE1A84238C00846EE7 /* SDLSubscribeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBC11A84238B00846EE7 /* SDLSubscribeButton.m */; };
		5D61FDAF1A84238C00846EE7 /* SDLSubscribeButtonResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBC21A84238B00846EE7 /* SDLSubscribeButtonResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDB01A84238C00846EE7 /* SDLSubscribeButtonResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBC31A84238B00846EE7 /* SDLSubscribeButtonResponse.m */; };
		5D61FDB11A84238C00846EE7 /* SDLSubscribeVehicleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBC41A84238B00846EE7 /* SDLSubscribeVehicleData.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDB21A84238C00846EE7 /* SDLSubscribeVehicleData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBC51A84238B00846EE7 /* SDLSubscribeVehicleData.m */; };
		5D61FDB31A84238C00846EE7 /* SDLSubscribeVehicleDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBC61A84238B00846EE7 /* SDLSubscribeVehicleDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDB41A84238C00846EE7 /* SDLSubscribeVehicleDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBC71A84238B00846EE7 /* SDLSubscribeVehicleDataResponse.m */; };
		5D61FDB51A84238C00846EE7 /* SDLSyncMsgVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBC81A84238B00846EE7 /* SDLSyncMsgVersion.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDB61A84238C00846EE7 /* SDLSyncMsgVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBC91A84238B00846EE7 /* SDLSyncMsgVersion.m */; };
		5D61FDB71A84238C00846EE7 /* SDLSyncPData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBCA1A84238B00846EE7 /* SDLSyncPData.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDB81A84238C00846EE7 /* SDLSyncPData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBCB1A84238B00846EE7 /* SDLSyncPData.m */; };
		5D61FDB91A84238C00846EE7 /* SDLSyncPDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBCC1A84238B00846EE7 /* SDLSyncPDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDBA1A84238C00846EE7 /* SDLSyncPDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBCD1A84238B00846EE7 /* SDLSyncPDataResponse.m */; };
		5D61FDBB1A84238C00846EE7 /* SDLSystemAction.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBCE1A84238B00846EE7 /* SDLSystemAction.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDBC1A84238C00846EE7 /* SDLSystemAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBCF1A84238B00846EE7 /* SDLSystemAction.m */; };
		5D61FDBD1A84238C00846EE7 /* SDLSystemContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBD01A84238B00846EE7 /* SDLSystemContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDBE1A84238C00846EE7 /* SDLSystemContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBD11A84238B00846EE7 /* SDLSystemContext.m */; };
		5D61FDC01A84238C00846EE7 /* SDLSystemRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBD31A84238B00846EE7 /* SDLSystemRequest.m */; };
		5D61FDC21A84238C00846EE7 /* SDLSystemRequestResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBD51A84238B00846EE7 /* SDLSystemRequestResponse.m */; };
		5D61FDC31A84238C00846EE7 /* SDLTBTState.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBD61A84238B00846EE7 /* SDLTBTState.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDC41A84238C00846EE7 /* SDLTBTState.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBD71A84238B00846EE7 /* SDLTBTState.m */; };
		5D61FDC51A84238C00846EE7 /* SDLTCPTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBD81A84238B00846EE7 /* SDLTCPTransport.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDC61A84238C00846EE7 /* SDLTCPTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBD91A84238B00846EE7 /* SDLTCPTransport.m */; };
		5D61FDC71A84238C00846EE7 /* SDLTextAlignment.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBDA1A84238B00846EE7 /* SDLTextAlignment.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDC81A84238C00846EE7 /* SDLTextAlignment.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBDB1A84238C00846EE7 /* SDLTextAlignment.m */; };
		5D61FDC91A84238C00846EE7 /* SDLTextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBDC1A84238C00846EE7 /* SDLTextField.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDCA1A84238C00846EE7 /* SDLTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBDD1A84238C00846EE7 /* SDLTextField.m */; };
		5D61FDCB1A84238C00846EE7 /* SDLTextFieldName.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBDE1A84238C00846EE7 /* SDLTextFieldName.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDCC1A84238C00846EE7 /* SDLTextFieldName.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBDF1A84238C00846EE7 /* SDLTextFieldName.m */; };
		5D61FDCD1A84238C00846EE7 /* SDLTimerMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBE01A84238C00846EE7 /* SDLTimerMode.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDCE1A84238C00846EE7 /* SDLTimerMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBE11A84238C00846EE7 /* SDLTimerMode.m */; };
		5D61FDCF1A84238C00846EE7 /* SDLTireStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBE21A84238C00846EE7 /* SDLTireStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDD01A84238C00846EE7 /* SDLTireStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBE31A84238C00846EE7 /* SDLTireStatus.m */; };
		5D61FDD11A84238C00846EE7 /* SDLTouchCoord.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBE41A84238C00846EE7 /* SDLTouchCoord.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDD21A84238C00846EE7 /* SDLTouchCoord.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBE51A84238C00846EE7 /* SDLTouchCoord.m */; };
		5D61FDD31A84238C00846EE7 /* SDLTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBE61A84238C00846EE7 /* SDLTouchEvent.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDD41A84238C00846EE7 /* SDLTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBE71A84238C00846EE7 /* SDLTouchEvent.m */; };
		5D61FDD51A84238C00846EE7 /* SDLTouchEventCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBE81A84238C00846EE7 /* SDLTouchEventCapabilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDD61A84238C00846EE7 /* SDLTouchEventCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBE91A84238C00846EE7 /* SDLTouchEventCapabilities.m */; };
		5D61FDD71A84238C00846EE7 /* SDLTouchType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBEA1A84238C00846EE7 /* SDLTouchType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDD81A84238C00846EE7 /* SDLTouchType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBEB1A84238C00846EE7 /* SDLTouchType.m */; };
		5D61FDDA1A84238C00846EE7 /* SDLTransportDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBED1A84238C00846EE7 /* SDLTransportDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDDB1A84238C00846EE7 /* SDLTriggerSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBEE1A84238C00846EE7 /* SDLTriggerSource.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDDC1A84238C00846EE7 /* SDLTriggerSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBEF1A84238C00846EE7 /* SDLTriggerSource.m */; };
		5D61FDDD1A84238C00846EE7 /* SDLTTSChunk.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBF01A84238C00846EE7 /* SDLTTSChunk.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDDE1A84238C00846EE7 /* SDLTTSChunk.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBF11A84238C00846EE7 /* SDLTTSChunk.m */; };
		5D61FDDF1A84238C00846EE7 /* SDLTTSChunkFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBF21A84238C00846EE7 /* SDLTTSChunkFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDE01A84238C00846EE7 /* SDLTTSChunkFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBF31A84238C00846EE7 /* SDLTTSChunkFactory.m */; };
		5D61FDE11A84238C00846EE7 /* SDLTurn.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBF41A84238C00846EE7 /* SDLTurn.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDE21A84238C00846EE7 /* SDLTurn.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBF51A84238C00846EE7 /* SDLTurn.m */; };
		5D61FDE31A84238C00846EE7 /* SDLUnregisterAppInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBF61A84238C00846EE7 /* SDLUnregisterAppInterface.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDE41A84238C00846EE7 /* SDLUnregisterAppInterface.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBF71A84238C00846EE7 /* SDLUnregisterAppInterface.m */; };
		5D61FDE51A84238C00846EE7 /* SDLUnregisterAppInterfaceResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBF81A84238C00846EE7 /* SDLUnregisterAppInterfaceResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDE61A84238C00846EE7 /* SDLUnregisterAppInterfaceResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBF91A84238C00846EE7 /* SDLUnregisterAppInterfaceResponse.m */; };
		5D61FDE71A84238C00846EE7 /* SDLUnsubscribeButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBFA1A84238C00846EE7 /* SDLUnsubscribeButton.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDE81A84238C00846EE7 /* SDLUnsubscribeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBFB1A84238C00846EE7 /* SDLUnsubscribeButton.m */; };
		5D61FDE91A84238C00846EE7 /* SDLUnsubscribeButtonResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBFC1A84238C00846EE7 /* SDLUnsubscribeButtonResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDEA1A84238C00846EE7 /* SDLUnsubscribeButtonResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBFD1A84238C00846EE7 /* SDLUnsubscribeButtonResponse.m */; };
		5D61FDEB1A84238C00846EE7 /* SDLUnsubscribeVehicleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBFE1A84238C00846EE7 /* SDLUnsubscribeVehicleData.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDEC1A84238C00846EE7 /* SDLUnsubscribeVehicleData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBFF1A84238C00846EE7 /* SDLUnsubscribeVehicleData.m */; };
		5D61FDED1A84238C00846EE7 /* SDLUnsubscribeVehicleDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC001A84238C00846EE7 /* SDLUnsubscribeVehicleDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDEE1A84238C00846EE7 /* SDLUnsubscribeVehicleDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC011A84238C00846EE7 /* SDLUnsubscribeVehicleDataResponse.m */; };
		5D61FDEF1A84238C00846EE7 /* SDLUpdateMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC021A84238C00846EE7 /* SDLUpdateMode.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDF01A84238C00846EE7 /* SDLUpdateMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC031A84238C00846EE7 /* SDLUpdateMode.m */; };
		5D61FDF11A84238C00846EE7 /* SDLUpdateTurnList.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC041A84238C00846EE7 /* SDLUpdateTurnList.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDF21A84238C00846EE7 /* SDLUpdateTurnList.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC051A84238C00846EE7 /* SDLUpdateTurnList.m */; };
		5D61FDF31A84238C00846EE7 /* SDLUpdateTurnListResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC061A84238C00846EE7 /* SDLUpdateTurnListResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDF41A84238C00846EE7 /* SDLUpdateTurnListResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC071A84238C00846EE7 /* SDLUpdateTurnListResponse.m */; };
		5D61FDF51A84238C00846EE7 /* SDLV1ProtocolHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC081A84238C00846EE7 /* SDLV1ProtocolHeader.h */; };
		5D61FDF61A84238C00846EE7 /* SDLV1ProtocolHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC091A84238C00846EE7 /* SDLV1ProtocolHeader.m */; };
		5D61FDF71A84238C00846EE7 /* SDLV1ProtocolMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC0A1A84238C00846EE7 /* SDLV1ProtocolMessage.h */; };
		5D61FDF81A84238C00846EE7 /* SDLV1ProtocolMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC0B1A84238C00846EE7 /* SDLV1ProtocolMessage.m */; };
		5D61FDF91A84238C00846EE7 /* SDLV2ProtocolHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC0C1A84238C00846EE7 /* SDLV2ProtocolHeader.h */; };
		5D61FDFA1A84238C00846EE7 /* SDLV2ProtocolHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC0D1A84238C00846EE7 /* SDLV2ProtocolHeader.m */; };
		5D61FDFB1A84238C00846EE7 /* SDLV2ProtocolMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC0E1A84238C00846EE7 /* SDLV2ProtocolMessage.h */; };
		5D61FDFC1A84238C00846EE7 /* SDLV2ProtocolMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC0F1A84238C00846EE7 /* SDLV2ProtocolMessage.m */; };
		5D61FDFD1A84238C00846EE7 /* SDLVehicleDataActiveStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC101A84238C00846EE7 /* SDLVehicleDataActiveStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FDFE1A84238C00846EE7 /* SDLVehicleDataActiveStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC111A84238C00846EE7 /* SDLVehicleDataActiveStatus.m */; };
		5D61FDFF1A84238C00846EE7 /* SDLVehicleDataEventStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC121A84238C00846EE7 /* SDLVehicleDataEventStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE001A84238C00846EE7 /* SDLVehicleDataEventStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC131A84238C00846EE7 /* SDLVehicleDataEventStatus.m */; };
		5D61FE011A84238C00846EE7 /* SDLVehicleDataNotificationStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC141A84238C00846EE7 /* SDLVehicleDataNotificationStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE021A84238C00846EE7 /* SDLVehicleDataNotificationStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC151A84238C00846EE7 /* SDLVehicleDataNotificationStatus.m */; };
		5D61FE031A84238C00846EE7 /* SDLVehicleDataResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC161A84238C00846EE7 /* SDLVehicleDataResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE041A84238C00846EE7 /* SDLVehicleDataResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC171A84238C00846EE7 /* SDLVehicleDataResult.m */; };
		5D61FE051A84238C00846EE7 /* SDLVehicleDataResultCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC181A84238C00846EE7 /* SDLVehicleDataResultCode.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE061A84238C00846EE7 /* SDLVehicleDataResultCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC191A84238C00846EE7 /* SDLVehicleDataResultCode.m */; };
		5D61FE071A84238C00846EE7 /* SDLVehicleDataStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC1A1A84238C00846EE7 /* SDLVehicleDataStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE081A84238C00846EE7 /* SDLVehicleDataStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC1B1A84238C00846EE7 /* SDLVehicleDataStatus.m */; };
		5D61FE091A84238C00846EE7 /* SDLVehicleDataType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC1C1A84238C00846EE7 /* SDLVehicleDataType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE0A1A84238C00846EE7 /* SDLVehicleDataType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC1D1A84238C00846EE7 /* SDLVehicleDataType.m */; };
		5D61FE0B1A84238C00846EE7 /* SDLVehicleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC1E1A84238C00846EE7 /* SDLVehicleType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE0C1A84238C00846EE7 /* SDLVehicleType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC1F1A84238C00846EE7 /* SDLVehicleType.m */; };
		5D61FE0D1A84238C00846EE7 /* SDLVRCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC201A84238C00846EE7 /* SDLVRCapabilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE0E1A84238C00846EE7 /* SDLVRCapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC211A84238C00846EE7 /* SDLVRCapabilities.m */; };
		5D61FE0F1A84238C00846EE7 /* SDLVRHelpItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC221A84238C00846EE7 /* SDLVRHelpItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE101A84238C00846EE7 /* SDLVRHelpItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC231A84238C00846EE7 /* SDLVRHelpItem.m */; };
		5D61FE111A84238C00846EE7 /* SDLWarningLightStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC241A84238C00846EE7 /* SDLWarningLightStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE121A84238C00846EE7 /* SDLWarningLightStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC251A84238C00846EE7 /* SDLWarningLightStatus.m */; };
		5D61FE131A84238C00846EE7 /* SDLWiperStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FC261A84238C00846EE7 /* SDLWiperStatus.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D61FE141A84238C00846EE7 /* SDLWiperStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FC271A84238C00846EE7 /* SDLWiperStatus.m */; };
		5D6CC8EF1C610E660027F60A /* SDLSecurityType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6CC8EE1C610E660027F60A /* SDLSecurityType.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D6EB4CC1BF28DC600693731 /* NSMapTable+SubscriptingSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D6EB4CB1BF28DC600693731 /* NSMapTable+SubscriptingSpec.m */; };
		5D6F7A2B1BC45BF70070BF37 /* SDLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6F7A2A1BC45BF70070BF37 /* SDLRequestHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D6F7A2E1BC5650B0070BF37 /* SDLLifecycleConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6F7A2C1BC5650B0070BF37 /* SDLLifecycleConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D6F7A2F1BC5650B0070BF37 /* SDLLifecycleConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D6F7A2D1BC5650B0070BF37 /* SDLLifecycleConfiguration.m */; };
		5D6F7A351BC5B9B60070BF37 /* SDLLockScreenViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6F7A331BC5B9B60070BF37 /* SDLLockScreenViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D6F7A361BC5B9B60070BF37 /* SDLLockScreenViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D6F7A341BC5B9B60070BF37 /* SDLLockScreenViewController.m */; };
		5D6F7A3E1BC811FC0070BF37 /* SDLAssets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5D6F7A3D1BC811FC0070BF37 /* SDLAssets.xcassets */; };
		5D76E31C1D3805FF00647CFA /* SDLLockScreenManagerSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D76E31B1D3805FF00647CFA /* SDLLockScreenManagerSpec.m */; };
		5D76E3211D39742300647CFA /* SDLViewControllerPresentable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D76E3201D39742300647CFA /* SDLViewControllerPresentable.h */; };
		5D76E3241D39767000647CFA /* SDLLockScreenPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D76E3221D39767000647CFA /* SDLLockScreenPresenter.h */; };
		5D76E3251D39767000647CFA /* SDLLockScreenPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D76E3231D39767000647CFA /* SDLLockScreenPresenter.m */; };
		5D76E3291D3D0A8800647CFA /* SDLFakeViewControllerPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D76E3281D3D0A8800647CFA /* SDLFakeViewControllerPresenter.m */; };
		5D76E32B1D3D52CA00647CFA /* SDLAssets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5D6F7A3D1BC811FC0070BF37 /* SDLAssets.xcassets */; };
		5D79A03B1CE36F030035797B /* SDLUploadFileOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D79A0391CE36F030035797B /* SDLUploadFileOperation.h */; };
		5D79A03C1CE36F030035797B /* SDLUploadFileOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D79A03A1CE36F030035797B /* SDLUploadFileOperation.m */; };
		5D7F87EB1CE3C1A1002DD7C4 /* SDLDeleteFileOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7F87E91CE3C1A1002DD7C4 /* SDLDeleteFileOperation.h */; };
		5D7F87EC1CE3C1A1002DD7C4 /* SDLDeleteFileOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D7F87EA1CE3C1A1002DD7C4 /* SDLDeleteFileOperation.m */; };
		5D7F87EF1CE3C294002DD7C4 /* SDLFileManagerConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7F87ED1CE3C294002DD7C4 /* SDLFileManagerConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D7F87F31CE3C29E002DD7C4 /* SDLFileWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7F87F11CE3C29E002DD7C4 /* SDLFileWrapper.h */; };
		5D7F87F41CE3C29E002DD7C4 /* SDLFileWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D7F87F21CE3C29E002DD7C4 /* SDLFileWrapper.m */; };
		5D82041A1BCD80BA00D0A41B /* SDLLockScreenConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D8204181BCD80BA00D0A41B /* SDLLockScreenConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D82041B1BCD80BA00D0A41B /* SDLLockScreenConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D8204191BCD80BA00D0A41B /* SDLLockScreenConfiguration.m */; };
		5D82041E1BCD8E6100D0A41B /* SDLConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D82041C1BCD8E6100D0A41B /* SDLConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D82041F1BCD8E6100D0A41B /* SDLConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D82041D1BCD8E6100D0A41B /* SDLConfiguration.m */; };
		5D8204221BCEA89A00D0A41B /* SDLFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D8204201BCEA89A00D0A41B /* SDLFileManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D8204231BCEA89A00D0A41B /* SDLFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D8204211BCEA89A00D0A41B /* SDLFileManager.m */; };
		5D8204261BCEA8A600D0A41B /* SDLPermissionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D8204241BCEA8A600D0A41B /* SDLPermissionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D8204271BCEA8A600D0A41B /* SDLPermissionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D8204251BCEA8A600D0A41B /* SDLPermissionManager.m */; };
		5D82042D1BCEC32F00D0A41B /* SDLFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D82042B1BCEC32F00D0A41B /* SDLFile.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D82042E1BCEC32F00D0A41B /* SDLFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D82042C1BCEC32F00D0A41B /* SDLFile.m */; };
		5D8204311BD001C700D0A41B /* SDLArtwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D82042F1BD001C700D0A41B /* SDLArtwork.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D8204321BD001C700D0A41B /* SDLArtwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D8204301BD001C700D0A41B /* SDLArtwork.m */; };
		5D850AB01D4907C500E6E7EE /* TestLockScreenAppIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 5D850AAF1D4907C500E6E7EE /* TestLockScreenAppIcon.png */; };
		5D8B174F1AC9D266006A6E1C /* SDLDialNumber.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D8B174D1AC9D266006A6E1C /* SDLDialNumber.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D8B17501AC9D266006A6E1C /* SDLDialNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B174E1AC9D266006A6E1C /* SDLDialNumber.m */; };
		5D8B17531AC9E11B006A6E1C /* SDLDialNumberResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D8B17511AC9E11B006A6E1C /* SDLDialNumberResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5D8B17541AC9E11B006A6E1C /* SDLDialNumberResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B17521AC9E11B006A6E1C /* SDLDialNumberResponse.m */; };
		5D8B17561AC9E399006A6E1C /* SDLDialNumberSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B17551AC9E399006A6E1C /* SDLDialNumberSpec.m */; };
		5D9F50781BE7DD4C00FEF399 /* testFileJSON.json in Resources */ = {isa = PBXBuildFile; fileRef = 5D9F50721BE7DD4C00FEF399 /* testFileJSON.json */; };
		5D9F50791BE7DD4C00FEF399 /* testImageBMP.bmp in Resources */ = {isa = PBXBuildFile; fileRef = 5D9F50731BE7DD4C00FEF399 /* testImageBMP.bmp */; };
		5D9F507A1BE7DD4C00FEF399 /* testImageJPEG.jpeg in Resources */ = {isa = PBXBuildFile; fileRef = 5D9F50741BE7DD4C00FEF399 /* testImageJPEG.jpeg */; };
		5D9F507B1BE7DD4C00FEF399 /* testImageJPG.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 5D9F50751BE7DD4C00FEF399 /* testImageJPG.jpg */; };
		5D9F507C1BE7DD4C00FEF399 /* testImagePNG.png in Resources */ = {isa = PBXBuildFile; fileRef = 5D9F50761BE7DD4C00FEF399 /* testImagePNG.png */; };
		5D9F507D1BE7DD4C00FEF399 /* testImageTIFF.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 5D9F50771BE7DD4C00FEF399 /* testImageTIFF.tiff */; };
		5D9F50811BE7E6E300FEF399 /* SDLPermissionsManagerSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D9F50801BE7E6E300FEF399 /* SDLPermissionsManagerSpec.m */; };
		5D9F50831BEA5C6100FEF399 /* SDLFileManagerSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D9F50821BEA5C6100FEF399 /* SDLFileManagerSpec.m */; };
		5D9F50871BED412E00FEF399 /* TestConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D9F50861BED412E00FEF399 /* TestConnectionManager.m */; };
		5DA026901AD44EE700019F86 /* SDLDialNumberResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA0268F1AD44EE700019F86 /* SDLDialNumberResponseSpec.m */; };
		5DA102A41D4122C700C15826 /* NSMutableDictionary+SafeRemove.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA102A21D4122C700C15826 /* NSMutableDictionary+SafeRemove.h */; };
		5DA102A51D4122C700C15826 /* NSMutableDictionary+SafeRemove.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA102A31D4122C700C15826 /* NSMutableDictionary+SafeRemove.m */; };
		5DA22CB71D075CF200245F5F /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DA22CB31D075CF200245F5F /* Nimble.framework */; };
		5DA22CB81D075CF200245F5F /* OCMock.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DA22CB41D075CF200245F5F /* OCMock.framework */; };
		5DA22CB91D075CF200245F5F /* OHHTTPStubs.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DA22CB51D075CF200245F5F /* OHHTTPStubs.framework */; };
		5DA22CBA1D075CF200245F5F /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DA22CB61D075CF200245F5F /* Quick.framework */; };
		5DA22CBB1D075DE800245F5F /* Nimble.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5DA22CB31D075CF200245F5F /* Nimble.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
		5DA22CBC1D075DE800245F5F /* OCMock.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5DA22CB41D075CF200245F5F /* OCMock.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
		5DA22CBD1D075DE800245F5F /* OHHTTPStubs.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5DA22CB51D075CF200245F5F /* OHHTTPStubs.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
		5DA22CBE1D075DE800245F5F /* Quick.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5DA22CB61D075CF200245F5F /* Quick.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
		5DA22CBF1D075DEC00245F5F /* SmartDeviceLink.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5D61FA1C1A84237100846EE7 /* SmartDeviceLink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
		5DA3F3541BC448060026F2D0 /* NSMapTable+Subscripting.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA3F3521BC448060026F2D0 /* NSMapTable+Subscripting.h */; };
		5DA3F3551BC448060026F2D0 /* NSMapTable+Subscripting.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA3F3531BC448060026F2D0 /* NSMapTable+Subscripting.m */; };
		5DA3F35A1BC448480026F2D0 /* SDLError.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA3F3581BC448480026F2D0 /* SDLError.h */; };
		5DA3F35B1BC448480026F2D0 /* SDLError.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA3F3591BC448480026F2D0 /* SDLError.m */; };
		5DA3F35F1BC448590026F2D0 /* SDLNotificationConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA3F35D1BC448590026F2D0 /* SDLNotificationConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5DA3F3601BC448590026F2D0 /* SDLNotificationConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA3F35E1BC448590026F2D0 /* SDLNotificationConstants.m */; };
		5DA3F3701BC4489A0026F2D0 /* SDLManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA3F36E1BC4489A0026F2D0 /* SDLManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5DA3F3711BC4489A0026F2D0 /* SDLManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA3F36F1BC4489A0026F2D0 /* SDLManager.m */; };
		5DAE06731BDEC6C000F9B498 /* SDLFileSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DAE06721BDEC6C000F9B498 /* SDLFileSpec.m */; };
		5DAE06751BDEC6D600F9B498 /* SDLArtworkSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DAE06741BDEC6D600F9B498 /* SDLArtworkSpec.m */; };
		5DB1BCD31D243A8E002FFC37 /* SDLDeleteFileOperationSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB1BCD01D243A8E002FFC37 /* SDLDeleteFileOperationSpec.m */; };
		5DB1BCD41D243A8E002FFC37 /* SDLListFilesOperationSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB1BCD11D243A8E002FFC37 /* SDLListFilesOperationSpec.m */; };
		5DB1BCD51D243A8E002FFC37 /* SDLUploadFileOperationSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB1BCD21D243A8E002FFC37 /* SDLUploadFileOperationSpec.m */; };
		5DB1BCD81D243AA6002FFC37 /* SDLPermissionFilterSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB1BCD71D243AA6002FFC37 /* SDLPermissionFilterSpec.m */; };
		5DB1BCDA1D243D85002FFC37 /* SDLStateMachineSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB1BCD91D243D85002FFC37 /* SDLStateMachineSpec.m */; };
		5DB1BCDD1D243DC3002FFC37 /* SDLLifecycleConfigurationSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB1BCDC1D243DC3002FFC37 /* SDLLifecycleConfigurationSpec.m */; };
		5DB1BCDF1D243DD3002FFC37 /* SDLLockScreenConfigurationSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB1BCDE1D243DD3002FFC37 /* SDLLockScreenConfigurationSpec.m */; };
		5DB1BCE11D243DDE002FFC37 /* SDLConfigurationSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB1BCE01D243DDE002FFC37 /* SDLConfigurationSpec.m */; };
		5DB1BCE71D245647002FFC37 /* TestStateMachineTarget.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB1BCE61D245647002FFC37 /* TestStateMachineTarget.m */; };
		5DB92D241AC47B2C00C15BB0 /* SDLHexUtilitySpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB92D231AC47B2C00C15BB0 /* SDLHexUtilitySpec.m */; };
		5DB92D261AC4836F00C15BB0 /* SDLJingleSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB92D251AC4836F00C15BB0 /* SDLJingleSpec.m */; };
		5DB92D2D1AC4A34F00C15BB0 /* SDLPrioritizedObjectCollectionSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB92D2C1AC4A34F00C15BB0 /* SDLPrioritizedObjectCollectionSpec.m */; };
		5DB92D2F1AC59F0000C15BB0 /* SDLObjectWithPrioritySpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB92D2E1AC59F0000C15BB0 /* SDLObjectWithPrioritySpec.m */; };
		5DB92D321AC9C8BA00C15BB0 /* SDLRPCStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB92D301AC9C8BA00C15BB0 /* SDLRPCStruct.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5DB92D331AC9C8BA00C15BB0 /* SDLRPCStruct.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB92D311AC9C8BA00C15BB0 /* SDLRPCStruct.m */; };
		5DBAE0AB1D3588AC00CE00BF /* SDLNotificationDispatcherSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DBAE0AA1D3588AC00CE00BF /* SDLNotificationDispatcherSpec.m */; };
		5DBAE0AD1D368D1A00CE00BF /* SDLResponseDispatcherSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DBAE0AC1D368D1A00CE00BF /* SDLResponseDispatcherSpec.m */; };
		5DC978261B7A38640012C2F1 /* SDLGlobalsSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DC978251B7A38640012C2F1 /* SDLGlobalsSpec.m */; };
		5DCC19A01B8221F3004FFAD9 /* SDLURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DCC199E1B8221F3004FFAD9 /* SDLURLSession.h */; };
		5DCC19A11B8221F3004FFAD9 /* SDLURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DCC199F1B8221F3004FFAD9 /* SDLURLSession.m */; };
		5DCC19A41B822804004FFAD9 /* SDLURLRequestTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DCC19A21B822804004FFAD9 /* SDLURLRequestTask.h */; };
		5DCC19A51B822804004FFAD9 /* SDLURLRequestTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DCC19A31B822804004FFAD9 /* SDLURLRequestTask.m */; };
		5DCF76F51ACDBAD300BB647B /* SDLSendLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DCF76F31ACDBAD300BB647B /* SDLSendLocation.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5DCF76F61ACDBAD300BB647B /* SDLSendLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DCF76F41ACDBAD300BB647B /* SDLSendLocation.m */; };
		5DCF76F91ACDD7CD00BB647B /* SDLSendLocationResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DCF76F71ACDD7CD00BB647B /* SDLSendLocationResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5DCF76FA1ACDD7CD00BB647B /* SDLSendLocationResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DCF76F81ACDD7CD00BB647B /* SDLSendLocationResponse.m */; };
		5DCF76FC1ACDDB4200BB647B /* SDLSendLocationSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DCF76FB1ACDDB4200BB647B /* SDLSendLocationSpec.m */; };
		5DCF76FE1ACDDB5A00BB647B /* SDLSendLocationResponseSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DCF76FD1ACDDB5A00BB647B /* SDLSendLocationResponseSpec.m */; };
		5DE372A11ACB2ED300849FAA /* SDLHMICapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DE3729F1ACB2ED300849FAA /* SDLHMICapabilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5DE372A21ACB2ED300849FAA /* SDLHMICapabilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DE372A01ACB2ED300849FAA /* SDLHMICapabilities.m */; };
		5DE372A41ACB336600849FAA /* SDLHMICapabilitiesSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DE372A31ACB336600849FAA /* SDLHMICapabilitiesSpec.m */; };
		5DE372A61ACC35B400849FAA /* SDLDebugToolConsole.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DE372A51ACC35B400849FAA /* SDLDebugToolConsole.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5DE5ABB71B0E38C90067BB02 /* SDLSystemRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBD21A84238B00846EE7 /* SDLSystemRequest.h */; };
		5DE5ABB81B0E38C90067BB02 /* SDLSystemRequestResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D61FBD41A84238B00846EE7 /* SDLSystemRequestResponse.h */; };
		5DEE55C01B8509CB004F0D0F /* SDLURLRequestTaskSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DEE55BF1B8509CB004F0D0F /* SDLURLRequestTaskSpec.m */; };
		5DF2BB9D1B94E38A00CE5994 /* SDLURLSessionSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DF2BB9C1B94E38A00CE5994 /* SDLURLSessionSpec.m */; };
		5DFFB9151BD7C89700DB3F04 /* SDLConnectionManagerType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DFFB9141BD7C89700DB3F04 /* SDLConnectionManagerType.h */; };
		DA4353DF1D271FD10099B8C4 /* CGPointUtilSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4353DE1D271FD10099B8C4 /* CGPointUtilSpec.m */; };
		DA4353E31D2720A30099B8C4 /* SDLPinchGestureSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4353E21D2720A30099B8C4 /* SDLPinchGestureSpec.m */; };
		DA4353E91D2721680099B8C4 /* DispatchTimerSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4353E61D2721680099B8C4 /* DispatchTimerSpec.m */; };
		DA4353EA1D2721680099B8C4 /* SDLTouchManagerSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4353E71D2721680099B8C4 /* SDLTouchManagerSpec.m */; };
		DA4353EB1D2721680099B8C4 /* SDLTouchSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4353E81D2721680099B8C4 /* SDLTouchSpec.m */; };
		DA7515B11D95FAA000F29323 /* lock_arrow_down_black.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515981D95FAA000F29323 /* lock_arrow_down_black.png */; };
		DA7515B21D95FAA000F29323 /* lock_arrow_down_black@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515991D95FAA000F29323 /* lock_arrow_down_black@2x.png */; };
		DA7515B31D95FAA000F29323 /* lock_arrow_down_black@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA75159A1D95FAA000F29323 /* lock_arrow_down_black@3x.png */; };
		DA7515B41D95FAA000F29323 /* lock_arrow_down_white.png in Resources */ = {isa = PBXBuildFile; fileRef = DA75159C1D95FAA000F29323 /* lock_arrow_down_white.png */; };
		DA7515B51D95FAA000F29323 /* lock_arrow_down_white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA75159D1D95FAA000F29323 /* lock_arrow_down_white@2x.png */; };
		DA7515B61D95FAA000F29323 /* lock_arrow_down_white@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA75159E1D95FAA000F29323 /* lock_arrow_down_white@3x.png */; };
		DA7515B71D95FAA000F29323 /* lock_arrow_up_black.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515A11D95FAA000F29323 /* lock_arrow_up_black.png */; };
		DA7515B81D95FAA000F29323 /* lock_arrow_up_black@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515A21D95FAA000F29323 /* lock_arrow_up_black@2x.png */; };
		DA7515B91D95FAA000F29323 /* lock_arrow_up_black@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515A31D95FAA000F29323 /* lock_arrow_up_black@3x.png */; };
		DA7515BA1D95FAA000F29323 /* lock_arrow_up_white.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515A51D95FAA000F29323 /* lock_arrow_up_white.png */; };
		DA7515BB1D95FAA000F29323 /* lock_arrow_up_white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515A61D95FAA000F29323 /* lock_arrow_up_white@2x.png */; };
		DA7515BC1D95FAA000F29323 /* lock_arrow_up_white@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515A71D95FAA000F29323 /* lock_arrow_up_white@3x.png */; };
		DA7515BD1D95FAA000F29323 /* sdl_logo_black.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515AA1D95FAA000F29323 /* sdl_logo_black.png */; };
		DA7515BE1D95FAA000F29323 /* sdl_logo_black@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515AB1D95FAA000F29323 /* sdl_logo_black@2x.png */; };
		DA7515BF1D95FAA000F29323 /* sdl_logo_black@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515AC1D95FAA000F29323 /* sdl_logo_black@3x.png */; };
		DA7515C01D95FAA000F29323 /* sdl_logo_white.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515AE1D95FAA000F29323 /* sdl_logo_white.png */; };
		DA7515C11D95FAA000F29323 /* sdl_logo_white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515AF1D95FAA000F29323 /* sdl_logo_white@2x.png */; };
		DA7515C21D95FAA000F29323 /* sdl_logo_white@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA7515B01D95FAA000F29323 /* sdl_logo_white@3x.png */; };
		DA96C0661D4D4F730022F520 /* SDLAppInfoSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = DA96C0651D4D4F730022F520 /* SDLAppInfoSpec.m */; };
		DA9F7E631DCBFAC800ACAE48 /* SDLDateTime.h in Headers */ = {isa = PBXBuildFile; fileRef = DA9F7E611DCBFAC800ACAE48 /* SDLDateTime.h */; settings = {ATTRIBUTES = (Public, ); }; };
		DA9F7E641DCBFAC800ACAE48 /* SDLDateTime.m in Sources */ = {isa = PBXBuildFile; fileRef = DA9F7E621DCBFAC800ACAE48 /* SDLDateTime.m */; };
		DA9F7E671DCBFAD400ACAE48 /* SDLOasisAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = DA9F7E651DCBFAD400ACAE48 /* SDLOasisAddress.h */; settings = {ATTRIBUTES = (Public, ); }; };
		DA9F7E681DCBFAD400ACAE48 /* SDLOasisAddress.m in Sources */ = {isa = PBXBuildFile; fileRef = DA9F7E661DCBFAD400ACAE48 /* SDLOasisAddress.m */; };
		DA9F7E6B1DCBFB0700ACAE48 /* SDLDeliveryMode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA9F7E691DCBFB0700ACAE48 /* SDLDeliveryMode.h */; settings = {ATTRIBUTES = (Public, ); }; };
		DA9F7E6C1DCBFB0700ACAE48 /* SDLDeliveryMode.m in Sources */ = {isa = PBXBuildFile; fileRef = DA9F7E6A1DCBFB0700ACAE48 /* SDLDeliveryMode.m */; };
		DA9F7EB21DCC084300ACAE48 /* SDLDeliveryModeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = DA9F7EB11DCC084300ACAE48 /* SDLDeliveryModeSpec.m */; };
		DA9F7EB41DCC086400ACAE48 /* SDLDateTimeSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = DA9F7EB31DCC086400ACAE48 /* SDLDateTimeSpec.m */; };
		DA9F7EB61DCC086A00ACAE48 /* SDLOasisAddressSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = DA9F7EB51DCC086A00ACAE48 /* SDLOasisAddressSpec.m */; };
		DAC572571D1067270004288B /* SDLTouchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC572551D1067270004288B /* SDLTouchManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
		DAC572581D1067270004288B /* SDLTouchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC572561D1067270004288B /* SDLTouchManager.m */; };
		DAC5725B1D10B81E0004288B /* SDLTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC572591D10B81E0004288B /* SDLTouch.m */; };
		DAC5725C1D10B81E0004288B /* SDLTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC5725A1D10B81E0004288B /* SDLTouch.h */; };
		DAC572621D10C5020004288B /* SDLPinchGesture.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC572601D10C5020004288B /* SDLPinchGesture.m */; };
		DAC572631D10C5020004288B /* SDLPinchGesture.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC572611D10C5020004288B /* SDLPinchGesture.h */; };
		DAC572661D10C5640004288B /* CGPoint_Util.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC572641D10C5640004288B /* CGPoint_Util.m */; };
		DAC572671D10C5640004288B /* CGPoint_Util.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC572651D10C5640004288B /* CGPoint_Util.h */; };
		DAC5726A1D10D5FC0004288B /* dispatch_timer.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC572681D10D5FC0004288B /* dispatch_timer.m */; };
		DAC5726B1D10D5FC0004288B /* dispatch_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC572691D10D5FC0004288B /* dispatch_timer.h */; };
		DAC5726C1D11B4840004288B /* SDLTouchManagerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC5725F1D10BD690004288B /* SDLTouchManagerDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		DACBA1DC1D22D46D002356F8 /* SDLOnTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FB331A84238B00846EE7 /* SDLOnTouchEvent.m */; };
		DACBA1DE1D22D642002356F8 /* SDLTouchType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBEB1A84238C00846EE7 /* SDLTouchType.m */; };
		DACBA1DF1D22D6CE002356F8 /* SDLTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBE71A84238C00846EE7 /* SDLTouchEvent.m */; };
		DACBA1E01D22E856002356F8 /* SDLTouchCoord.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D61FBE51A84238C00846EE7 /* SDLTouchCoord.m */; };
		E9C32B861AB20B4300F283AF /* NSThread+ThreadIndex.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C32B841AB20B4300F283AF /* NSThread+ThreadIndex.h */; };
		E9C32B871AB20B4300F283AF /* NSThread+ThreadIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C32B851AB20B4300F283AF /* NSThread+ThreadIndex.m */; };
		E9C32B911AB20BA200F283AF /* SDLIAPSession.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C32B891AB20BA200F283AF /* SDLIAPSession.h */; };
		E9C32B921AB20BA200F283AF /* SDLIAPSession.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C32B8A1AB20BA200F283AF /* SDLIAPSession.m */; };
		E9C32B931AB20BA200F283AF /* SDLIAPSessionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C32B8B1AB20BA200F283AF /* SDLIAPSessionDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		E9C32B941AB20BA200F283AF /* SDLStreamDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C32B8C1AB20BA200F283AF /* SDLStreamDelegate.h */; };
		E9C32B951AB20BA200F283AF /* SDLStreamDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C32B8D1AB20BA200F283AF /* SDLStreamDelegate.m */; };
		E9C32B961AB20BA200F283AF /* SDLTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C32B8E1AB20BA200F283AF /* SDLTimer.h */; };
		E9C32B971AB20BA200F283AF /* SDLTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C32B8F1AB20BA200F283AF /* SDLTimer.m */; };
		E9C32B9C1AB20C5900F283AF /* EAAccessory+SDLProtocols.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C32B981AB20C5900F283AF /* EAAccessory+SDLProtocols.h */; };
		E9C32B9D1AB20C5900F283AF /* EAAccessory+SDLProtocols.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C32B991AB20C5900F283AF /* EAAccessory+SDLProtocols.m */; };
		E9C32B9E1AB20C5900F283AF /* EAAccessoryManager+SDLProtocols.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C32B9A1AB20C5900F283AF /* EAAccessoryManager+SDLProtocols.h */; };
		E9C32B9F1AB20C5900F283AF /* EAAccessoryManager+SDLProtocols.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C32B9B1AB20C5900F283AF /* EAAccessoryManager+SDLProtocols.m */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		5D61FA281A84237100846EE7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 5D4019A71A76EC350006B0C2 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 5D61FA1B1A84237100846EE7;
			remoteInfo = SmartDeviceLink;
		};
		5D61FA2A1A84237100846EE7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 5D4019A71A76EC350006B0C2 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 5D4019AE1A76EC350006B0C2;
			remoteInfo = "SmartDeviceLink-Example";
		};
		5D61FA311A84237100846EE7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 5D4019A71A76EC350006B0C2 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 5D61FA1B1A84237100846EE7;
			remoteInfo = SmartDeviceLink;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		5D401CE11A76ED0B0006B0C2 /* Embed Frameworks */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				5D61FA341A84237100846EE7 /* SmartDeviceLink.framework in Embed Frameworks */,
			);
			name = "Embed Frameworks";
			runOnlyForDeploymentPostprocessing = 0;
		};
		5DA22C861D0745B000245F5F /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				5DA22CBF1D075DEC00245F5F /* SmartDeviceLink.framework in CopyFiles */,
				5DA22CBB1D075DE800245F5F /* Nimble.framework in CopyFiles */,
				5DA22CBC1D075DE800245F5F /* OCMock.framework in CopyFiles */,
				5DA22CBD1D075DE800245F5F /* OHHTTPStubs.framework in CopyFiles */,
				5DA22CBE1D075DE800245F5F /* Quick.framework in CopyFiles */,
				5D5DBF091D48E3AC00D4F914 /* FBSnapshotTestCase.framework in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		162E81E21A9BDE8A00906325 /* SDLAmbientLightStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAmbientLightStatusSpec.m; sourceTree = "<group>"; };
		162E81E31A9BDE8A00906325 /* SDLAppHMITypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAppHMITypeSpec.m; sourceTree = "<group>"; };
		162E81E41A9BDE8A00906325 /* SDLAppInterfaceUnregisteredReasonSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAppInterfaceUnregisteredReasonSpec.m; sourceTree = "<group>"; };
		162E81E51A9BDE8A00906325 /* SDLAudioStreamingStateSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAudioStreamingStateSpec.m; sourceTree = "<group>"; };
		162E81E61A9BDE8A00906325 /* SDLAudioTypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAudioTypeSpec.m; sourceTree = "<group>"; };
		162E81E71A9BDE8A00906325 /* SDLBitsPerSampleSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLBitsPerSampleSpec.m; sourceTree = "<group>"; };
		162E81E81A9BDE8A00906325 /* SDLButtonEventModeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLButtonEventModeSpec.m; sourceTree = "<group>"; };
		162E81E91A9BDE8A00906325 /* SDLButtonNameSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLButtonNameSpec.m; sourceTree = "<group>"; };
		162E81EA1A9BDE8A00906325 /* SDLButtonPressModeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLButtonPressModeSpec.m; sourceTree = "<group>"; };
		162E81EB1A9BDE8A00906325 /* SDLCarModeStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLCarModeStatusSpec.m; sourceTree = "<group>"; };
		162E81EC1A9BDE8A00906325 /* SDLCharacterSetSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLCharacterSetSpec.m; sourceTree = "<group>"; };
		162E81ED1A9BDE8A00906325 /* SDLCompassDirectionSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLCompassDirectionSpec.m; sourceTree = "<group>"; };
		162E81EE1A9BDE8A00906325 /* SDLComponentVolumeStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLComponentVolumeStatusSpec.m; sourceTree = "<group>"; };
		162E81EF1A9BDE8A00906325 /* SDLDeviceLevelStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeviceLevelStatusSpec.m; sourceTree = "<group>"; };
		162E81F01A9BDE8A00906325 /* SDLDimensionSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDimensionSpec.m; sourceTree = "<group>"; };
		162E81F11A9BDE8A00906325 /* SDLDisplayTypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDisplayTypeSpec.m; sourceTree = "<group>"; };
		162E81F21A9BDE8A00906325 /* SDLDriverDistractionStateSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDriverDistractionStateSpec.m; sourceTree = "<group>"; };
		162E81F31A9BDE8A00906325 /* SDLECallConfirmationStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLECallConfirmationStatusSpec.m; sourceTree = "<group>"; };
		162E81F41A9BDE8A00906325 /* SDLEmergencyEventTypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEmergencyEventTypeSpec.m; sourceTree = "<group>"; };
		162E81F51A9BDE8A00906325 /* SDLFileTypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLFileTypeSpec.m; sourceTree = "<group>"; };
		162E81F61A9BDE8A00906325 /* SDLFuelCutoffStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLFuelCutoffStatusSpec.m; sourceTree = "<group>"; };
		162E81F71A9BDE8A00906325 /* SDLGlobalProperySpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGlobalProperySpec.m; sourceTree = "<group>"; };
		162E81F81A9BDE8A00906325 /* SDLHMILevelSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHMILevelSpec.m; sourceTree = "<group>"; };
		162E81F91A9BDE8A00906325 /* SDLHMIZoneCapabilitiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHMIZoneCapabilitiesSpec.m; sourceTree = "<group>"; };
		162E81FA1A9BDE8A00906325 /* SDLIgnitionStableStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLIgnitionStableStatusSpec.m; sourceTree = "<group>"; };
		162E81FB1A9BDE8A00906325 /* SDLIgnitionStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLIgnitionStatusSpec.m; sourceTree = "<group>"; };
		162E81FC1A9BDE8A00906325 /* SDLImageFieldNameSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLImageFieldNameSpec.m; sourceTree = "<group>"; };
		162E81FD1A9BDE8A00906325 /* SDLImageTypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLImageTypeSpec.m; sourceTree = "<group>"; };
		162E81FE1A9BDE8A00906325 /* SDLInteractionModeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLInteractionModeSpec.m; sourceTree = "<group>"; };
		162E81FF1A9BDE8A00906325 /* SDLKeyboardEventSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLKeyboardEventSpec.m; sourceTree = "<group>"; };
		162E82001A9BDE8A00906325 /* SDLKeyboardLayoutSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLKeyboardLayoutSpec.m; sourceTree = "<group>"; };
		162E82011A9BDE8A00906325 /* SDLKeypressModeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLKeypressModeSpec.m; sourceTree = "<group>"; };
		162E82021A9BDE8A00906325 /* SDLLanguageSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLanguageSpec.m; sourceTree = "<group>"; };
		162E82031A9BDE8A00906325 /* SDLLayoutModeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLayoutModeSpec.m; sourceTree = "<group>"; };
		162E82041A9BDE8A00906325 /* SDLLockScreenStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLockScreenStatusSpec.m; sourceTree = "<group>"; };
		162E82051A9BDE8A00906325 /* SDLMaintenanceModeStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLMaintenanceModeStatusSpec.m; sourceTree = "<group>"; };
		162E82061A9BDE8A00906325 /* SDLMediaClockFormatSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLMediaClockFormatSpec.m; sourceTree = "<group>"; };
		162E82071A9BDE8A00906325 /* SDLPermissionStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPermissionStatusSpec.m; sourceTree = "<group>"; };
		162E82081A9BDE8A00906325 /* SDLPowerModeQualificationStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPowerModeQualificationStatusSpec.m; sourceTree = "<group>"; };
		162E82091A9BDE8A00906325 /* SDLPowerModeStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPowerModeStatusSpec.m; sourceTree = "<group>"; };
		162E820A1A9BDE8A00906325 /* SDLPredefinedLayoutSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPredefinedLayoutSpec.m; sourceTree = "<group>"; };
		162E820B1A9BDE8A00906325 /* SDLPrerecordedSpeechSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPrerecordedSpeechSpec.m; sourceTree = "<group>"; };
		162E820C1A9BDE8A00906325 /* SDLPrimaryAudioSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPrimaryAudioSource.m; sourceTree = "<group>"; };
		162E820D1A9BDE8A00906325 /* SDLPRNDLSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPRNDLSpec.m; sourceTree = "<group>"; };
		162E820E1A9BDE8A00906325 /* SDLRequestTypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRequestTypeSpec.m; sourceTree = "<group>"; };
		162E820F1A9BDE8A00906325 /* SDLResultSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLResultSpec.m; sourceTree = "<group>"; };
		162E82111A9BDE8A00906325 /* SDLSamplingRateSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSamplingRateSpec.m; sourceTree = "<group>"; };
		162E82121A9BDE8A00906325 /* SDLSoftButtonTypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSoftButtonTypeSpec.m; sourceTree = "<group>"; };
		162E82131A9BDE8A00906325 /* SDLSpeechCapabilitiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSpeechCapabilitiesSpec.m; sourceTree = "<group>"; };
		162E82141A9BDE8A00906325 /* SDLSystemAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSystemAction.m; sourceTree = "<group>"; };
		162E82151A9BDE8A00906325 /* SDLSystemContextSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSystemContextSpec.m; sourceTree = "<group>"; };
		162E82161A9BDE8A00906325 /* SDLTBTStateSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTBTStateSpec.m; sourceTree = "<group>"; };
		162E82171A9BDE8A00906325 /* SDLTextAlignmentSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTextAlignmentSpec.m; sourceTree = "<group>"; };
		162E82181A9BDE8A00906325 /* SDLTextFieldNameSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTextFieldNameSpec.m; sourceTree = "<group>"; };
		162E82191A9BDE8A00906325 /* SDLTimerModeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTimerModeSpec.m; sourceTree = "<group>"; };
		162E821A1A9BDE8A00906325 /* SDLTouchTypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTouchTypeSpec.m; sourceTree = "<group>"; };
		162E821B1A9BDE8A00906325 /* SDLTriggerSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTriggerSource.m; sourceTree = "<group>"; };
		162E821C1A9BDE8A00906325 /* SDLUpdateModeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUpdateModeSpec.m; sourceTree = "<group>"; };
		162E821D1A9BDE8A00906325 /* SDLVehicleDataActiveStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataActiveStatusSpec.m; sourceTree = "<group>"; };
		162E821E1A9BDE8A00906325 /* SDLVehicleDataEventStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataEventStatusSpec.m; sourceTree = "<group>"; };
		162E821F1A9BDE8A00906325 /* SDLVehicleDataNotificationStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataNotificationStatusSpec.m; sourceTree = "<group>"; };
		162E82201A9BDE8A00906325 /* SDLVehicleDataResultCodeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataResultCodeSpec.m; sourceTree = "<group>"; };
		162E82211A9BDE8A00906325 /* SDLVehicleDataStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataStatusSpec.m; sourceTree = "<group>"; };
		162E82221A9BDE8A00906325 /* SDLVehicleDataTypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataTypeSpec.m; sourceTree = "<group>"; };
		162E82231A9BDE8A00906325 /* SDLVrCapabilitiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVrCapabilitiesSpec.m; sourceTree = "<group>"; };
		162E82241A9BDE8A00906325 /* SDLWarningLightStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLWarningLightStatusSpec.m; sourceTree = "<group>"; };
		162E82251A9BDE8A00906325 /* SDLWiperStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLWiperStatusSpec.m; sourceTree = "<group>"; };
		162E82271A9BDE8A00906325 /* SDLRPCRequestFactorySpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCRequestFactorySpec.m; sourceTree = "<group>"; };
		162E82291A9BDE8A00906325 /* SDLOnAppInterfaceUnregisteredSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnAppInterfaceUnregisteredSpec.m; sourceTree = "<group>"; };
		162E822A1A9BDE8A00906325 /* SDLOnAudioPassThruSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnAudioPassThruSpec.m; sourceTree = "<group>"; };
		162E822B1A9BDE8A00906325 /* SDLOnButtonEventSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnButtonEventSpec.m; sourceTree = "<group>"; };
		162E822C1A9BDE8A00906325 /* SDLOnButtonPressSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnButtonPressSpec.m; sourceTree = "<group>"; };
		162E822D1A9BDE8A00906325 /* SDLOnCommandSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnCommandSpec.m; sourceTree = "<group>"; };
		162E822E1A9BDE8A00906325 /* SDLOnDriverDistractionSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnDriverDistractionSpec.m; sourceTree = "<group>"; };
		162E822F1A9BDE8A00906325 /* SDLOnEncodedSyncPDataSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnEncodedSyncPDataSpec.m; sourceTree = "<group>"; };
		162E82301A9BDE8A00906325 /* SDLOnHashChangeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnHashChangeSpec.m; sourceTree = "<group>"; };
		162E82311A9BDE8A00906325 /* SDLOnHMIStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnHMIStatusSpec.m; sourceTree = "<group>"; };
		162E82321A9BDE8A00906325 /* SDLOnKeyboardInputSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnKeyboardInputSpec.m; sourceTree = "<group>"; };
		162E82331A9BDE8A00906325 /* SDLOnLanguageChangeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnLanguageChangeSpec.m; sourceTree = "<group>"; };
		162E82341A9BDE8A00906325 /* SDLOnLockScreenStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnLockScreenStatusSpec.m; sourceTree = "<group>"; };
		162E82351A9BDE8A00906325 /* SDLOnPermissionsChangeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnPermissionsChangeSpec.m; sourceTree = "<group>"; };
		162E82361A9BDE8A00906325 /* SDLOnSyncPDataSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnSyncPDataSpec.m; sourceTree = "<group>"; };
		162E82371A9BDE8A00906325 /* SDLOnSystemRequestSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnSystemRequestSpec.m; sourceTree = "<group>"; };
		162E82381A9BDE8A00906325 /* SDLOnTBTClientStateSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnTBTClientStateSpec.m; sourceTree = "<group>"; };
		162E82391A9BDE8A00906325 /* SDLOnTouchEventSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnTouchEventSpec.m; sourceTree = "<group>"; };
		162E823A1A9BDE8A00906325 /* SDLOnVehicleDataSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnVehicleDataSpec.m; sourceTree = "<group>"; };
		162E823C1A9BDE8A00906325 /* SDLRPCPayloadSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCPayloadSpec.m; sourceTree = "<group>"; };
		162E823E1A9BDE8A00906325 /* SDLAddCommandSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAddCommandSpec.m; sourceTree = "<group>"; };
		162E823F1A9BDE8A00906325 /* SDLAddSubMenuSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAddSubMenuSpec.m; sourceTree = "<group>"; };
		162E82401A9BDE8A00906325 /* SDLAlertManeuverSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAlertManeuverSpec.m; sourceTree = "<group>"; };
		162E82411A9BDE8A00906325 /* SDLAlertSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAlertSpec.m; sourceTree = "<group>"; };
		162E82421A9BDE8A00906325 /* SDLChangeRegistrationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLChangeRegistrationSpec.m; sourceTree = "<group>"; };
		162E82431A9BDE8A00906325 /* SDLCreateInteractionChoiceSetSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLCreateInteractionChoiceSetSpec.m; sourceTree = "<group>"; };
		162E82441A9BDE8A00906325 /* SDLDeleteCommandSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteCommandSpec.m; sourceTree = "<group>"; };
		162E82451A9BDE8A00906325 /* SDLDeleteFileSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteFileSpec.m; sourceTree = "<group>"; };
		162E82461A9BDE8A00906325 /* SDLDeleteInteractionChoiceSetSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteInteractionChoiceSetSpec.m; sourceTree = "<group>"; };
		162E82471A9BDE8A00906325 /* SDLDeleteSubMenuSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteSubMenuSpec.m; sourceTree = "<group>"; };
		162E82481A9BDE8A00906325 /* SDLDiagnosticMessageSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDiagnosticMessageSpec.m; sourceTree = "<group>"; };
		162E82491A9BDE8A00906325 /* SDLEncodedSyncPDataSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEncodedSyncPDataSpec.m; sourceTree = "<group>"; };
		162E824A1A9BDE8A00906325 /* SDLEndAudioPassThruSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEndAudioPassThruSpec.m; sourceTree = "<group>"; };
		162E824B1A9BDE8A00906325 /* SDLGetDTCsSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGetDTCsSpec.m; sourceTree = "<group>"; };
		162E824C1A9BDE8A00906325 /* SDLGetVehicleDataSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGetVehicleDataSpec.m; sourceTree = "<group>"; };
		162E824D1A9BDE8A00906325 /* SDLListFilesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLListFilesSpec.m; sourceTree = "<group>"; };
		162E824E1A9BDE8A00906325 /* SDLPerformAudioPassThruSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPerformAudioPassThruSpec.m; sourceTree = "<group>"; };
		162E824F1A9BDE8A00906325 /* SDLPerformInteractionSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPerformInteractionSpec.m; sourceTree = "<group>"; };
		162E82501A9BDE8A00906325 /* SDLPutFileSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPutFileSpec.m; sourceTree = "<group>"; };
		162E82511A9BDE8A00906325 /* SDLReadDIDSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLReadDIDSpec.m; sourceTree = "<group>"; };
		162E82521A9BDE8A00906325 /* SDLRegisterAppInterfaceSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRegisterAppInterfaceSpec.m; sourceTree = "<group>"; };
		162E82531A9BDE8A00906325 /* SDLResetGlobalPropertiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLResetGlobalPropertiesSpec.m; sourceTree = "<group>"; };
		162E82541A9BDE8A00906325 /* SDLScrollableMessageSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLScrollableMessageSpec.m; sourceTree = "<group>"; };
		162E82551A9BDE8A00906325 /* SDLSetAppIconSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetAppIconSpec.m; sourceTree = "<group>"; };
		162E82561A9BDE8A00906325 /* SDLSetDisplayLayoutSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetDisplayLayoutSpec.m; sourceTree = "<group>"; };
		162E82571A9BDE8A00906325 /* SDLSetGlobalPropertiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetGlobalPropertiesSpec.m; sourceTree = "<group>"; };
		162E82581A9BDE8A00906325 /* SDLSetMediaClockTimerSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetMediaClockTimerSpec.m; sourceTree = "<group>"; };
		162E82591A9BDE8A00906325 /* SDLShowConstantTBTSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLShowConstantTBTSpec.m; sourceTree = "<group>"; };
		162E825A1A9BDE8A00906325 /* SDLShowSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLShowSpec.m; sourceTree = "<group>"; };
		162E825B1A9BDE8A00906325 /* SDLSliderSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSliderSpec.m; sourceTree = "<group>"; };
		162E825C1A9BDE8A00906325 /* SDLSpeakSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSpeakSpec.m; sourceTree = "<group>"; };
		162E825D1A9BDE8A00906325 /* SDLSubscribeButtonSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSubscribeButtonSpec.m; sourceTree = "<group>"; };
		162E825E1A9BDE8A00906325 /* SDLSubscribeVehicleDataSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSubscribeVehicleDataSpec.m; sourceTree = "<group>"; };
		162E825F1A9BDE8A00906325 /* SDLSyncPDataSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSyncPDataSpec.m; sourceTree = "<group>"; };
		162E82601A9BDE8A00906325 /* SDLSystemRequestSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSystemRequestSpec.m; sourceTree = "<group>"; };
		162E82611A9BDE8A00906325 /* SDLUnregisterAppInterfaceSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnregisterAppInterfaceSpec.m; sourceTree = "<group>"; };
		162E82621A9BDE8A00906325 /* SDLUnsubscribeButtonSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnsubscribeButtonSpec.m; sourceTree = "<group>"; };
		162E82631A9BDE8A00906325 /* SDLUnsubscribeVehicleDataSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnsubscribeVehicleDataSpec.m; sourceTree = "<group>"; };
		162E82641A9BDE8A00906325 /* SDLUpdateTurnListSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUpdateTurnListSpec.m; sourceTree = "<group>"; };
		162E82661A9BDE8A00906325 /* SDLAddCommandResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAddCommandResponseSpec.m; sourceTree = "<group>"; };
		162E82671A9BDE8A00906325 /* SDLAddSubMenuResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAddSubMenuResponseSpec.m; sourceTree = "<group>"; };
		162E82681A9BDE8A00906325 /* SDLAlertManeuverResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAlertManeuverResponseSpec.m; sourceTree = "<group>"; };
		162E82691A9BDE8A00906325 /* SDLAlertResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAlertResponseSpec.m; sourceTree = "<group>"; };
		162E826A1A9BDE8A00906325 /* SDLChangeRegistrationResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLChangeRegistrationResponseSpec.m; sourceTree = "<group>"; };
		162E826B1A9BDE8A00906325 /* SDLCreateInteractionChoiceSetResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLCreateInteractionChoiceSetResponseSpec.m; sourceTree = "<group>"; };
		162E826C1A9BDE8A00906325 /* SDLDeleteCommandResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteCommandResponseSpec.m; sourceTree = "<group>"; };
		162E826D1A9BDE8A00906325 /* SDLDeleteFileResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteFileResponseSpec.m; sourceTree = "<group>"; };
		162E826E1A9BDE8A00906325 /* SDLDeleteInteractionChoiceSetResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteInteractionChoiceSetResponseSpec.m; sourceTree = "<group>"; };
		162E826F1A9BDE8A00906325 /* SDLDeleteSubMenuResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteSubMenuResponseSpec.m; sourceTree = "<group>"; };
		162E82701A9BDE8A00906325 /* SDLDiagnosticMessageResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDiagnosticMessageResponseSpec.m; sourceTree = "<group>"; };
		162E82711A9BDE8A00906325 /* SDLEncodedSyncPDataResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEncodedSyncPDataResponseSpec.m; sourceTree = "<group>"; };
		162E82721A9BDE8A00906325 /* SDLEndAudioPassThruResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEndAudioPassThruResponseSpec.m; sourceTree = "<group>"; };
		162E82731A9BDE8A00906325 /* SDLGenericResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGenericResponseSpec.m; sourceTree = "<group>"; };
		162E82741A9BDE8A00906325 /* SDLGetDTCsResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGetDTCsResponseSpec.m; sourceTree = "<group>"; };
		162E82751A9BDE8A00906325 /* SDLGetVehicleDataResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGetVehicleDataResponseSpec.m; sourceTree = "<group>"; };
		162E82761A9BDE8A00906325 /* SDLListFilesResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLListFilesResponseSpec.m; sourceTree = "<group>"; };
		162E82771A9BDE8A00906325 /* SDLPerformAudioPassThruResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPerformAudioPassThruResponseSpec.m; sourceTree = "<group>"; };
		162E82781A9BDE8A00906325 /* SDLPerformInteractionResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPerformInteractionResponseSpec.m; sourceTree = "<group>"; };
		162E82791A9BDE8A00906325 /* SDLPutFileResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPutFileResponseSpec.m; sourceTree = "<group>"; };
		162E827A1A9BDE8A00906325 /* SDLReadDIDResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLReadDIDResponseSpec.m; sourceTree = "<group>"; };
		162E827B1A9BDE8A00906325 /* SDLRegisterAppInterfaceResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRegisterAppInterfaceResponseSpec.m; sourceTree = "<group>"; };
		162E827C1A9BDE8A00906325 /* SDLResetGlobalPropertiesResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLResetGlobalPropertiesResponseSpec.m; sourceTree = "<group>"; };
		162E827D1A9BDE8A00906325 /* SDLScrollableMessageResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLScrollableMessageResponseSpec.m; sourceTree = "<group>"; };
		162E827E1A9BDE8A00906325 /* SDLSetAppIconResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetAppIconResponseSpec.m; sourceTree = "<group>"; };
		162E827F1A9BDE8A00906325 /* SDLSetDisplayLayoutResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetDisplayLayoutResponseSpec.m; sourceTree = "<group>"; };
		162E82801A9BDE8A00906325 /* SDLSetGlobalPropertiesResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetGlobalPropertiesResponseSpec.m; sourceTree = "<group>"; };
		162E82811A9BDE8A00906325 /* SDLSetMediaClockTimerResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetMediaClockTimerResponseSpec.m; sourceTree = "<group>"; };
		162E82821A9BDE8A00906325 /* SDLShowConstantTBTResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLShowConstantTBTResponseSpec.m; sourceTree = "<group>"; };
		162E82831A9BDE8A00906325 /* SDLShowResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLShowResponseSpec.m; sourceTree = "<group>"; };
		162E82841A9BDE8A00906325 /* SDLSliderResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSliderResponseSpec.m; sourceTree = "<group>"; };
		162E82851A9BDE8A00906325 /* SDLSpeakResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSpeakResponseSpec.m; sourceTree = "<group>"; };
		162E82861A9BDE8A00906325 /* SDLSubscribeButtonResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSubscribeButtonResponseSpec.m; sourceTree = "<group>"; };
		162E82871A9BDE8A00906325 /* SDLSubscribeVehicleDataResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSubscribeVehicleDataResponseSpec.m; sourceTree = "<group>"; };
		162E82881A9BDE8A00906325 /* SDLSyncPDataResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSyncPDataResponseSpec.m; sourceTree = "<group>"; };
		162E82891A9BDE8A00906325 /* SDLSystemRequestResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSystemRequestResponseSpec.m; sourceTree = "<group>"; };
		162E828A1A9BDE8A00906325 /* SDLUnregisterAppInterfaceResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnregisterAppInterfaceResponseSpec.m; sourceTree = "<group>"; };
		162E828B1A9BDE8A00906325 /* SDLUnsubscribeButtonResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnsubscribeButtonResponseSpec.m; sourceTree = "<group>"; };
		162E828C1A9BDE8A00906325 /* SDLUnsubscribeVehicleDataResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnsubscribeVehicleDataResponseSpec.m; sourceTree = "<group>"; };
		162E828D1A9BDE8A00906325 /* SDLUpdateTurnListResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUpdateTurnListResponseSpec.m; sourceTree = "<group>"; };
		162E828F1A9BDE8A00906325 /* SDLAirbagStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAirbagStatusSpec.m; sourceTree = "<group>"; };
		162E82901A9BDE8A00906325 /* SDLAudioPassThruCapabilitiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAudioPassThruCapabilitiesSpec.m; sourceTree = "<group>"; };
		162E82911A9BDE8A00906325 /* SDLBeltStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLBeltStatusSpec.m; sourceTree = "<group>"; };
		162E82921A9BDE8A00906325 /* SDLBodyInformationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLBodyInformationSpec.m; sourceTree = "<group>"; };
		162E82931A9BDE8A00906325 /* SDLButtonCapabilitiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLButtonCapabilitiesSpec.m; sourceTree = "<group>"; };
		162E82941A9BDE8A00906325 /* SDLChoiceSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLChoiceSpec.m; sourceTree = "<group>"; };
		162E82951A9BDE8A00906325 /* SDLClusterModeStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLClusterModeStatusSpec.m; sourceTree = "<group>"; };
		162E82961A9BDE8A00906325 /* SDLDeviceInfoSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeviceInfoSpec.m; sourceTree = "<group>"; };
		162E82971A9BDE8A00906325 /* SDLDeviceStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeviceStatusSpec.m; sourceTree = "<group>"; };
		162E82981A9BDE8A00906325 /* SDLDIDResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDIDResult.m; sourceTree = "<group>"; };
		162E82991A9BDE8A00906325 /* SDLDisplayCapabilitiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDisplayCapabilitiesSpec.m; sourceTree = "<group>"; };
		162E829A1A9BDE8A00906325 /* SDLECallInfoSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLECallInfoSpec.m; sourceTree = "<group>"; };
		162E829B1A9BDE8A00906325 /* SDLEmergencyEventSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEmergencyEventSpec.m; sourceTree = "<group>"; };
		162E829C1A9BDE8A00906325 /* SDLGPSDataSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGPSDataSpec.m; sourceTree = "<group>"; };
		162E829D1A9BDE8A00906325 /* SDLHeadLampStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHeadLampStatusSpec.m; sourceTree = "<group>"; };
		162E829E1A9BDE8A00906325 /* SDLHMIPermissionsSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHMIPermissionsSpec.m; sourceTree = "<group>"; };
		162E829F1A9BDE8A00906325 /* SDLImageFieldSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLImageFieldSpec.m; sourceTree = "<group>"; };
		162E82A01A9BDE8A00906325 /* SDLImageSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLImageSpec.m; sourceTree = "<group>"; };
		162E82A11A9BDE8A00906325 /* SDLKeyboardPropertiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLKeyboardPropertiesSpec.m; sourceTree = "<group>"; };
		162E82A21A9BDE8A00906325 /* SDLMenuParamsSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLMenuParamsSpec.m; sourceTree = "<group>"; };
		162E82A31A9BDE8A00906325 /* SDLMyKeySpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLMyKeySpec.m; sourceTree = "<group>"; };
		162E82A41A9BDE8A00906325 /* SDLParameterPermissionsSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLParameterPermissionsSpec.m; sourceTree = "<group>"; };
		162E82A51A9BDE8A00906325 /* SDLPermissionItemSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPermissionItemSpec.m; sourceTree = "<group>"; };
		162E82A61A9BDE8A00906325 /* SDLPresetBankCapabilitiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPresetBankCapabilitiesSpec.m; sourceTree = "<group>"; };
		162E82A71A9BDE8A00906325 /* SDLScreenParamsSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLScreenParamsSpec.m; sourceTree = "<group>"; };
		162E82A81A9BDE8A00906325 /* SDLSingleTireStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSingleTireStatusSpec.m; sourceTree = "<group>"; };
		162E82A91A9BDE8A00906325 /* SDLSoftButtonCapabilitiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSoftButtonCapabilitiesSpec.m; sourceTree = "<group>"; };
		162E82AA1A9BDE8A00906325 /* SDLSoftButtonSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSoftButtonSpec.m; sourceTree = "<group>"; };
		162E82AB1A9BDE8A00906325 /* SDLStartTimeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLStartTimeSpec.m; sourceTree = "<group>"; };
		162E82AC1A9BDE8A00906325 /* SDLSyncMsgVersionSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSyncMsgVersionSpec.m; sourceTree = "<group>"; };
		162E82AD1A9BDE8A00906325 /* SDLTextFieldSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTextFieldSpec.m; sourceTree = "<group>"; };
		162E82AE1A9BDE8A00906325 /* SDLTireStatusSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTireStatusSpec.m; sourceTree = "<group>"; };
		162E82AF1A9BDE8A00906325 /* SDLTouchCoordSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTouchCoordSpec.m; sourceTree = "<group>"; };
		162E82B01A9BDE8A00906325 /* SDLTouchEventCapabilitiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTouchEventCapabilitiesSpec.m; sourceTree = "<group>"; };
		162E82B11A9BDE8A00906325 /* SDLTouchEventSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTouchEventSpec.m; sourceTree = "<group>"; };
		162E82B21A9BDE8A00906325 /* SDLTTSChunkSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTTSChunkSpec.m; sourceTree = "<group>"; };
		162E82B31A9BDE8A00906325 /* SDLTurnSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTurnSpec.m; sourceTree = "<group>"; };
		162E82B41A9BDE8A00906325 /* SDLVehicleDataResultSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataResultSpec.m; sourceTree = "<group>"; };
		162E82B51A9BDE8A00906325 /* SDLVehicleTypeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleTypeSpec.m; sourceTree = "<group>"; };
		162E82B61A9BDE8A00906325 /* SDLVrHelpItemSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVrHelpItemSpec.m; sourceTree = "<group>"; };
		162E82B81A9BDE8A00906325 /* SDLEnumSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEnumSpec.m; sourceTree = "<group>"; };
		162E82B91A9BDE8A00906325 /* SDLRPCMessageSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCMessageSpec.m; sourceTree = "<group>"; };
		162E82BA1A9BDE8A00906325 /* SDLRPCNotificationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCNotificationSpec.m; sourceTree = "<group>"; };
		162E82BB1A9BDE8A00906325 /* SDLRPCRequestSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCRequestSpec.m; sourceTree = "<group>"; };
		162E82BC1A9BDE8A00906325 /* SDLRPCResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCResponseSpec.m; sourceTree = "<group>"; };
		162E82BD1A9BDE8A00906325 /* SDLRPCStructSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCStructSpec.m; sourceTree = "<group>"; };
		167ED9451A9BCE5D00797BE5 /* SwiftSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftSpec.swift; sourceTree = "<group>"; };
		1680B1061A9CD7AD00DBD79E /* SDLProtocolHeaderSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocolHeaderSpec.m; sourceTree = "<group>"; };
		1680B1071A9CD7AD00DBD79E /* SDLV1ProtocolHeaderSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLV1ProtocolHeaderSpec.m; sourceTree = "<group>"; };
		1680B1081A9CD7AD00DBD79E /* SDLV2ProtocolHeaderSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLV2ProtocolHeaderSpec.m; sourceTree = "<group>"; };
		1680B10A1A9CD7AD00DBD79E /* SDLProtocolMessageSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocolMessageSpec.m; sourceTree = "<group>"; };
		1680B10B1A9CD7AD00DBD79E /* SDLProtocolSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLProtocolSpec.m; path = MessageSpecs/SDLProtocolSpec.m; sourceTree = "<group>"; };
		1680B10C1A9CD7AD00DBD79E /* SDLV1ProtocolMessageSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLV1ProtocolMessageSpec.m; sourceTree = "<group>"; };
		1680B10D1A9CD7AD00DBD79E /* SDLV2ProtocolMessageSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLV2ProtocolMessageSpec.m; sourceTree = "<group>"; };
		1680B10E1A9CD7AD00DBD79E /* SDLAbstractProtocolSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAbstractProtocolSpec.m; sourceTree = "<group>"; };
		1680B10F1A9CD7AD00DBD79E /* SDLFunctionIDSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLFunctionIDSpec.m; sourceTree = "<group>"; };
		1680B1101A9CD7AD00DBD79E /* SDLProtocolMessageAssemblerSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocolMessageAssemblerSpec.m; sourceTree = "<group>"; };
		1680B1111A9CD7AD00DBD79E /* SDLProtocolMessageDisassemblerSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocolMessageDisassemblerSpec.m; sourceTree = "<group>"; };
		1680B1121A9CD7AD00DBD79E /* SDLProtocolReceivedMessageRouterSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocolReceivedMessageRouterSpec.m; sourceTree = "<group>"; };
		332A913C1CED87F80043824C /* SDLAppInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAppInfo.h; sourceTree = "<group>"; };
		332A913D1CED87F80043824C /* SDLAppInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAppInfo.m; sourceTree = "<group>"; };
		5D0218F41A8E79C400D1BF62 /* ConnectionTCPTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ConnectionTCPTableViewController.h; path = SmartDeviceLink_Example/Classes/ConnectionTCPTableViewController.h; sourceTree = SOURCE_ROOT; };
		5D0218F51A8E79C400D1BF62 /* ConnectionTCPTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ConnectionTCPTableViewController.m; path = SmartDeviceLink_Example/Classes/ConnectionTCPTableViewController.m; sourceTree = SOURCE_ROOT; };
		5D0218F81A8E7A7300D1BF62 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = SmartDeviceLink_Example/Base.lproj/ConnectionTCPTableViewController.storyboard; sourceTree = SOURCE_ROOT; };
		5D0218FA1A8E7E1700D1BF62 /* ConnectionContainerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ConnectionContainerViewController.h; path = SmartDeviceLink_Example/Classes/ConnectionContainerViewController.h; sourceTree = SOURCE_ROOT; };
		5D0218FB1A8E7E1700D1BF62 /* ConnectionContainerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ConnectionContainerViewController.m; path = SmartDeviceLink_Example/Classes/ConnectionContainerViewController.m; sourceTree = SOURCE_ROOT; };
		5D0218FD1A8E9E0D00D1BF62 /* ConnectionIAPTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ConnectionIAPTableViewController.h; path = SmartDeviceLink_Example/Classes/ConnectionIAPTableViewController.h; sourceTree = SOURCE_ROOT; };
		5D0218FE1A8E9E0D00D1BF62 /* ConnectionIAPTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ConnectionIAPTableViewController.m; path = SmartDeviceLink_Example/Classes/ConnectionIAPTableViewController.m; sourceTree = SOURCE_ROOT; };
		5D0219041A8E9F6D00D1BF62 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = SmartDeviceLink_Example/Base.lproj/ConnectionIAPTableViewController.storyboard; sourceTree = SOURCE_ROOT; };
		5D1654551D3E754F00554D93 /* SDLLifecycleManagerSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLLifecycleManagerSpec.m; path = DevAPISpecs/SDLLifecycleManagerSpec.m; sourceTree = "<group>"; };
		5D1654581D3E7A1600554D93 /* SDLLifecycleManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLLifecycleManager.h; sourceTree = "<group>"; };
		5D1654591D3E7A1600554D93 /* SDLLifecycleManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLifecycleManager.m; sourceTree = "<group>"; };
		5D1665A01CF5D5DA00CC4CA1 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; path = .gitignore; sourceTree = SOURCE_ROOT; };
		5D1665A11CF5D5DA00CC4CA1 /* .travis.yml */ = {isa = PBXFileReference; lastKnownFileType = text; path = .travis.yml; sourceTree = SOURCE_ROOT; };
		5D1665A21CF5D5DA00CC4CA1 /* Cartfile.private */ = {isa = PBXFileReference; lastKnownFileType = text; path = Cartfile.private; sourceTree = SOURCE_ROOT; };
		5D1665A31CF5D5DA00CC4CA1 /* CHANGELOG.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = SOURCE_ROOT; };
		5D1665A41CF5D5DA00CC4CA1 /* DEPENDENCIES.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = DEPENDENCIES.md; sourceTree = SOURCE_ROOT; };
		5D1665A51CF5D5DA00CC4CA1 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = SOURCE_ROOT; };
		5D1665A61CF5D5DA00CC4CA1 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = SOURCE_ROOT; };
		5D1665A71CF5D5DA00CC4CA1 /* SmartDeviceLink-iOS.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SmartDeviceLink-iOS.podspec"; sourceTree = SOURCE_ROOT; };
		5D1665C21CF8CA2700CC4CA1 /* SDLListFilesOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLListFilesOperation.h; sourceTree = "<group>"; };
		5D1665C31CF8CA2700CC4CA1 /* SDLListFilesOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLListFilesOperation.m; sourceTree = "<group>"; };
		5D1665C61CF8CA3D00CC4CA1 /* SDLPermissionFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPermissionFilter.h; sourceTree = "<group>"; };
		5D1665C71CF8CA3D00CC4CA1 /* SDLPermissionFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPermissionFilter.m; sourceTree = "<group>"; };
		5D1665CA1CF8CA6700CC4CA1 /* NSNumber+NumberType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumber+NumberType.h"; sourceTree = "<group>"; };
		5D1665CC1CF8CA8A00CC4CA1 /* SDLPermissionConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPermissionConstants.h; sourceTree = "<group>"; };
		5D2F58071D0717D5001085CE /* SDLManagerDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLManagerDelegate.h; sourceTree = "<group>"; };
		5D3E48731D6F3B330000BFEF /* SDLAsynchronousOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAsynchronousOperation.h; sourceTree = "<group>"; };
		5D3E48741D6F3B330000BFEF /* SDLAsynchronousOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAsynchronousOperation.m; sourceTree = "<group>"; };
		5D3E48791D6F888E0000BFEF /* SDLRPCResponseNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRPCResponseNotification.h; sourceTree = "<group>"; };
		5D3E487A1D6F888E0000BFEF /* SDLRPCResponseNotification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCResponseNotification.m; sourceTree = "<group>"; };
		5D3E487D1D6F88A30000BFEF /* SDLRPCNotificationNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRPCNotificationNotification.h; sourceTree = "<group>"; };
		5D3E487E1D6F88A30000BFEF /* SDLRPCNotificationNotification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCNotificationNotification.m; sourceTree = "<group>"; };
		5D3E48C91D7722FE0000BFEF /* NSBundle+SDLBundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+SDLBundle.h"; sourceTree = "<group>"; };
		5D3E48CA1D7722FE0000BFEF /* NSBundle+SDLBundle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+SDLBundle.m"; sourceTree = "<group>"; };
		5D4019AF1A76EC350006B0C2 /* SDL Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "SDL Example.app"; sourceTree = BUILT_PRODUCTS_DIR; };
		5D4029D31A76F0340006B0C2 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = SmartDeviceLink_Example/Images.xcassets; sourceTree = SOURCE_ROOT; };
		5D4029D51A76F0410006B0C2 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = SmartDeviceLink_Example/Info.plist; sourceTree = SOURCE_ROOT; };
		5D4029E01A76F0760006B0C2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = SmartDeviceLink_Example/Base.lproj/LaunchScreen.xib; sourceTree = SOURCE_ROOT; };
		5D4029E21A76F0760006B0C2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = SmartDeviceLink_Example/Base.lproj/Main.storyboard; sourceTree = SOURCE_ROOT; };
		5D48329B1A8EA33D00252386 /* Preferences.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Preferences.h; path = SmartDeviceLink_Example/Classes/Preferences.h; sourceTree = SOURCE_ROOT; };
		5D48329C1A8EA33D00252386 /* Preferences.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Preferences.m; path = SmartDeviceLink_Example/Classes/Preferences.m; sourceTree = SOURCE_ROOT; };
		5D48329F1A92868E00252386 /* ProxyManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ProxyManager.h; path = SmartDeviceLink_Example/Classes/ProxyManager.h; sourceTree = SOURCE_ROOT; };
		5D4832A01A92868E00252386 /* ProxyManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ProxyManager.m; path = SmartDeviceLink_Example/Classes/ProxyManager.m; sourceTree = SOURCE_ROOT; };
		5D4832A31A94F90D00252386 /* ConnectionTransitionContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ConnectionTransitionContext.h; path = SmartDeviceLink_Example/Classes/ConnectionTransitionContext.h; sourceTree = SOURCE_ROOT; };
		5D4832A41A94F90D00252386 /* ConnectionTransitionContext.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ConnectionTransitionContext.m; path = SmartDeviceLink_Example/Classes/ConnectionTransitionContext.m; sourceTree = SOURCE_ROOT; };
		5D4832A61A95191B00252386 /* ConnectionAnimatedTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ConnectionAnimatedTransition.h; path = SmartDeviceLink_Example/Classes/ConnectionAnimatedTransition.h; sourceTree = SOURCE_ROOT; };
		5D4832A71A95191B00252386 /* ConnectionAnimatedTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ConnectionAnimatedTransition.m; path = SmartDeviceLink_Example/Classes/ConnectionAnimatedTransition.m; sourceTree = SOURCE_ROOT; };
		5D4D67AA1D2ED37A00468B4A /* SDLNotificationDispatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLNotificationDispatcher.h; sourceTree = "<group>"; };
		5D4D67AB1D2ED37A00468B4A /* SDLNotificationDispatcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLNotificationDispatcher.m; sourceTree = "<group>"; };
		5D4D67AE1D2FE2F900468B4A /* SDLResponseDispatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLResponseDispatcher.h; sourceTree = "<group>"; };
		5D4D67AF1D2FE2F900468B4A /* SDLResponseDispatcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLResponseDispatcher.m; sourceTree = "<group>"; };
		5D4D67B21D30161600468B4A /* SDLLockScreenManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLLockScreenManager.h; sourceTree = "<group>"; };
		5D4D67B31D30161600468B4A /* SDLLockScreenManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLockScreenManager.m; sourceTree = "<group>"; };
		5D535DC31B72473800CF7760 /* SDLGlobals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLGlobals.h; sourceTree = "<group>"; };
		5D535DC41B72473800CF7760 /* SDLGlobals.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGlobals.m; sourceTree = "<group>"; };
		5D53C46B1B7A99B9003526EA /* SDLStreamingMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLStreamingMediaManager.h; sourceTree = "<group>"; };
		5D53C46C1B7A99B9003526EA /* SDLStreamingMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLStreamingMediaManager.m; sourceTree = "<group>"; };
		5D59350B1A855EB300687FB9 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = SmartDeviceLink_Example/Classes/AppDelegate.h; sourceTree = SOURCE_ROOT; };
		5D59350C1A855EB300687FB9 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = SmartDeviceLink_Example/Classes/AppDelegate.m; sourceTree = SOURCE_ROOT; };
		5D5935111A855EBE00687FB9 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = SmartDeviceLink_Example/Classes/main.m; sourceTree = SOURCE_ROOT; };
		5D59DD461B14FDEE00BE744D /* SDLLockScreenStatusManagerSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLLockScreenStatusManagerSpec.m; path = ProxySpecs/SDLLockScreenStatusManagerSpec.m; sourceTree = "<group>"; };
		5D5DBF071D48E39C00D4F914 /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FBSnapshotTestCase.framework; path = sdl_ios/Carthage/Build/iOS/FBSnapshotTestCase.framework; sourceTree = "<group>"; };
		5D5DBF0A1D48E5E600D4F914 /* SDLLockScreenViewControllerSnapshotTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLLockScreenViewControllerSnapshotTests.m; path = DevAPISpecs/SDLLockScreenViewControllerSnapshotTests.m; sourceTree = "<group>"; };
		5D6008881BE3ED540094A505 /* SDLStateMachine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLStateMachine.h; sourceTree = "<group>"; };
		5D6008891BE3ED540094A505 /* SDLStateMachine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLStateMachine.m; sourceTree = "<group>"; };
		5D616B471D552F7A00553F6B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/SDLLockScreen.storyboard; sourceTree = "<group>"; };
		5D616B511D59044400553F6B /* SDLErrorConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLErrorConstants.h; sourceTree = "<group>"; };
		5D616B561D5A233100553F6B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SDLLockScreen.strings; sourceTree = "<group>"; };
		5D616B571D5A23C500553F6B /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/SDLLockScreen.strings; sourceTree = "<group>"; };
		5D616B581D5A23CC00553F6B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/SDLLockScreen.strings; sourceTree = "<group>"; };
		5D616B591D5A23D400553F6B /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/SDLLockScreen.strings; sourceTree = "<group>"; };
		5D616B5A1D5A23DC00553F6B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SDLLockScreen.strings"; sourceTree = "<group>"; };
		5D616B5B1D5A23E400553F6B /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/SDLLockScreen.strings; sourceTree = "<group>"; };
		5D61FA1C1A84237100846EE7 /* SmartDeviceLink.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SmartDeviceLink.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		5D61FA1F1A84237100846EE7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		5D61FA201A84237100846EE7 /* SmartDeviceLink.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmartDeviceLink.h; sourceTree = "<group>"; };
		5D61FA261A84237100846EE7 /* SmartDeviceLinkTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SmartDeviceLinkTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
		5D61FA2E1A84237100846EE7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		5D61FA3C1A84238A00846EE7 /* SDLAbstractProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAbstractProtocol.h; sourceTree = "<group>"; };
		5D61FA3D1A84238A00846EE7 /* SDLAbstractProtocol.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAbstractProtocol.m; sourceTree = "<group>"; };
		5D61FA3E1A84238A00846EE7 /* SDLAbstractTransport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAbstractTransport.h; sourceTree = "<group>"; };
		5D61FA3F1A84238A00846EE7 /* SDLAbstractTransport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAbstractTransport.m; sourceTree = "<group>"; };
		5D61FA401A84238A00846EE7 /* SDLAddCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAddCommand.h; sourceTree = "<group>"; };
		5D61FA411A84238A00846EE7 /* SDLAddCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAddCommand.m; sourceTree = "<group>"; };
		5D61FA421A84238A00846EE7 /* SDLAddCommandResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAddCommandResponse.h; sourceTree = "<group>"; };
		5D61FA431A84238A00846EE7 /* SDLAddCommandResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAddCommandResponse.m; sourceTree = "<group>"; };
		5D61FA441A84238A00846EE7 /* SDLAddSubMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAddSubMenu.h; sourceTree = "<group>"; };
		5D61FA451A84238A00846EE7 /* SDLAddSubMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAddSubMenu.m; sourceTree = "<group>"; };
		5D61FA461A84238A00846EE7 /* SDLAddSubMenuResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAddSubMenuResponse.h; sourceTree = "<group>"; };
		5D61FA471A84238A00846EE7 /* SDLAddSubMenuResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAddSubMenuResponse.m; sourceTree = "<group>"; };
		5D61FA481A84238A00846EE7 /* SDLAirbagStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAirbagStatus.h; sourceTree = "<group>"; };
		5D61FA491A84238A00846EE7 /* SDLAirbagStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAirbagStatus.m; sourceTree = "<group>"; };
		5D61FA4A1A84238A00846EE7 /* SDLAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAlert.h; sourceTree = "<group>"; };
		5D61FA4B1A84238A00846EE7 /* SDLAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAlert.m; sourceTree = "<group>"; };
		5D61FA4C1A84238A00846EE7 /* SDLAlertManeuver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAlertManeuver.h; sourceTree = "<group>"; };
		5D61FA4D1A84238A00846EE7 /* SDLAlertManeuver.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAlertManeuver.m; sourceTree = "<group>"; };
		5D61FA4E1A84238A00846EE7 /* SDLAlertManeuverResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAlertManeuverResponse.h; sourceTree = "<group>"; };
		5D61FA4F1A84238A00846EE7 /* SDLAlertManeuverResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAlertManeuverResponse.m; sourceTree = "<group>"; };
		5D61FA501A84238A00846EE7 /* SDLAlertResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAlertResponse.h; sourceTree = "<group>"; };
		5D61FA511A84238A00846EE7 /* SDLAlertResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAlertResponse.m; sourceTree = "<group>"; };
		5D61FA521A84238A00846EE7 /* SDLAmbientLightStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAmbientLightStatus.h; sourceTree = "<group>"; };
		5D61FA531A84238A00846EE7 /* SDLAmbientLightStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAmbientLightStatus.m; sourceTree = "<group>"; };
		5D61FA541A84238A00846EE7 /* SDLAppHMIType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAppHMIType.h; sourceTree = "<group>"; };
		5D61FA551A84238A00846EE7 /* SDLAppHMIType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAppHMIType.m; sourceTree = "<group>"; };
		5D61FA561A84238A00846EE7 /* SDLAppInterfaceUnregisteredReason.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAppInterfaceUnregisteredReason.h; sourceTree = "<group>"; };
		5D61FA571A84238A00846EE7 /* SDLAppInterfaceUnregisteredReason.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAppInterfaceUnregisteredReason.m; sourceTree = "<group>"; };
		5D61FA581A84238A00846EE7 /* SDLAudioPassThruCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAudioPassThruCapabilities.h; sourceTree = "<group>"; };
		5D61FA591A84238A00846EE7 /* SDLAudioPassThruCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAudioPassThruCapabilities.m; sourceTree = "<group>"; };
		5D61FA5A1A84238A00846EE7 /* SDLAudioStreamingState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAudioStreamingState.h; sourceTree = "<group>"; };
		5D61FA5B1A84238A00846EE7 /* SDLAudioStreamingState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAudioStreamingState.m; sourceTree = "<group>"; };
		5D61FA5C1A84238A00846EE7 /* SDLAudioType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLAudioType.h; sourceTree = "<group>"; };
		5D61FA5D1A84238A00846EE7 /* SDLAudioType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAudioType.m; sourceTree = "<group>"; };
		5D61FA5E1A84238A00846EE7 /* SDLBeltStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLBeltStatus.h; sourceTree = "<group>"; };
		5D61FA5F1A84238A00846EE7 /* SDLBeltStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLBeltStatus.m; sourceTree = "<group>"; };
		5D61FA601A84238A00846EE7 /* SDLBitsPerSample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLBitsPerSample.h; sourceTree = "<group>"; };
		5D61FA611A84238A00846EE7 /* SDLBitsPerSample.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLBitsPerSample.m; sourceTree = "<group>"; };
		5D61FA621A84238A00846EE7 /* SDLBodyInformation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLBodyInformation.h; sourceTree = "<group>"; };
		5D61FA631A84238A00846EE7 /* SDLBodyInformation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLBodyInformation.m; sourceTree = "<group>"; };
		5D61FA641A84238A00846EE7 /* SDLButtonCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLButtonCapabilities.h; sourceTree = "<group>"; };
		5D61FA651A84238A00846EE7 /* SDLButtonCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLButtonCapabilities.m; sourceTree = "<group>"; };
		5D61FA661A84238A00846EE7 /* SDLButtonEventMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLButtonEventMode.h; sourceTree = "<group>"; };
		5D61FA671A84238A00846EE7 /* SDLButtonEventMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLButtonEventMode.m; sourceTree = "<group>"; };
		5D61FA681A84238A00846EE7 /* SDLButtonName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLButtonName.h; sourceTree = "<group>"; };
		5D61FA691A84238A00846EE7 /* SDLButtonName.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLButtonName.m; sourceTree = "<group>"; };
		5D61FA6A1A84238A00846EE7 /* SDLButtonPressMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLButtonPressMode.h; sourceTree = "<group>"; };
		5D61FA6B1A84238A00846EE7 /* SDLButtonPressMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLButtonPressMode.m; sourceTree = "<group>"; };
		5D61FA6C1A84238A00846EE7 /* SDLCarModeStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLCarModeStatus.h; sourceTree = "<group>"; };
		5D61FA6D1A84238A00846EE7 /* SDLCarModeStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLCarModeStatus.m; sourceTree = "<group>"; };
		5D61FA6E1A84238A00846EE7 /* SDLChangeRegistration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLChangeRegistration.h; sourceTree = "<group>"; };
		5D61FA6F1A84238A00846EE7 /* SDLChangeRegistration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLChangeRegistration.m; sourceTree = "<group>"; };
		5D61FA701A84238A00846EE7 /* SDLChangeRegistrationResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLChangeRegistrationResponse.h; sourceTree = "<group>"; };
		5D61FA711A84238A00846EE7 /* SDLChangeRegistrationResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLChangeRegistrationResponse.m; sourceTree = "<group>"; };
		5D61FA721A84238A00846EE7 /* SDLCharacterSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLCharacterSet.h; sourceTree = "<group>"; };
		5D61FA731A84238A00846EE7 /* SDLCharacterSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLCharacterSet.m; sourceTree = "<group>"; };
		5D61FA741A84238A00846EE7 /* SDLChoice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLChoice.h; sourceTree = "<group>"; };
		5D61FA751A84238A00846EE7 /* SDLChoice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLChoice.m; sourceTree = "<group>"; };
		5D61FA761A84238A00846EE7 /* SDLClusterModeStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLClusterModeStatus.h; sourceTree = "<group>"; };
		5D61FA771A84238A00846EE7 /* SDLClusterModeStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLClusterModeStatus.m; sourceTree = "<group>"; };
		5D61FA781A84238A00846EE7 /* SDLCompassDirection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLCompassDirection.h; sourceTree = "<group>"; };
		5D61FA791A84238A00846EE7 /* SDLCompassDirection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLCompassDirection.m; sourceTree = "<group>"; };
		5D61FA7A1A84238A00846EE7 /* SDLComponentVolumeStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLComponentVolumeStatus.h; sourceTree = "<group>"; };
		5D61FA7B1A84238A00846EE7 /* SDLComponentVolumeStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLComponentVolumeStatus.m; sourceTree = "<group>"; };
		5D61FA7C1A84238A00846EE7 /* SDLConsoleController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLConsoleController.h; sourceTree = "<group>"; };
		5D61FA7D1A84238A00846EE7 /* SDLConsoleController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLConsoleController.m; sourceTree = "<group>"; };
		5D61FA7E1A84238A00846EE7 /* SDLCreateInteractionChoiceSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLCreateInteractionChoiceSet.h; sourceTree = "<group>"; };
		5D61FA7F1A84238A00846EE7 /* SDLCreateInteractionChoiceSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLCreateInteractionChoiceSet.m; sourceTree = "<group>"; };
		5D61FA801A84238A00846EE7 /* SDLCreateInteractionChoiceSetResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLCreateInteractionChoiceSetResponse.h; sourceTree = "<group>"; };
		5D61FA811A84238A00846EE7 /* SDLCreateInteractionChoiceSetResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLCreateInteractionChoiceSetResponse.m; sourceTree = "<group>"; };
		5D61FA821A84238A00846EE7 /* SDLDebugTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDebugTool.h; sourceTree = "<group>"; };
		5D61FA831A84238A00846EE7 /* SDLDebugTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDebugTool.m; sourceTree = "<group>"; };
		5D61FA841A84238A00846EE7 /* SDLDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDecoder.h; sourceTree = "<group>"; };
		5D61FA851A84238A00846EE7 /* SDLDeleteCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeleteCommand.h; sourceTree = "<group>"; };
		5D61FA861A84238A00846EE7 /* SDLDeleteCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteCommand.m; sourceTree = "<group>"; };
		5D61FA871A84238A00846EE7 /* SDLDeleteCommandResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeleteCommandResponse.h; sourceTree = "<group>"; };
		5D61FA881A84238A00846EE7 /* SDLDeleteCommandResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteCommandResponse.m; sourceTree = "<group>"; };
		5D61FA891A84238A00846EE7 /* SDLDeleteFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeleteFile.h; sourceTree = "<group>"; };
		5D61FA8A1A84238A00846EE7 /* SDLDeleteFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteFile.m; sourceTree = "<group>"; };
		5D61FA8B1A84238A00846EE7 /* SDLDeleteFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeleteFileResponse.h; sourceTree = "<group>"; };
		5D61FA8C1A84238A00846EE7 /* SDLDeleteFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteFileResponse.m; sourceTree = "<group>"; };
		5D61FA8D1A84238A00846EE7 /* SDLDeleteInteractionChoiceSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeleteInteractionChoiceSet.h; sourceTree = "<group>"; };
		5D61FA8E1A84238A00846EE7 /* SDLDeleteInteractionChoiceSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteInteractionChoiceSet.m; sourceTree = "<group>"; };
		5D61FA8F1A84238A00846EE7 /* SDLDeleteInteractionChoiceSetResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeleteInteractionChoiceSetResponse.h; sourceTree = "<group>"; };
		5D61FA901A84238A00846EE7 /* SDLDeleteInteractionChoiceSetResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteInteractionChoiceSetResponse.m; sourceTree = "<group>"; };
		5D61FA911A84238A00846EE7 /* SDLDeleteSubMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeleteSubMenu.h; sourceTree = "<group>"; };
		5D61FA921A84238A00846EE7 /* SDLDeleteSubMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteSubMenu.m; sourceTree = "<group>"; };
		5D61FA931A84238A00846EE7 /* SDLDeleteSubMenuResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeleteSubMenuResponse.h; sourceTree = "<group>"; };
		5D61FA941A84238A00846EE7 /* SDLDeleteSubMenuResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteSubMenuResponse.m; sourceTree = "<group>"; };
		5D61FA951A84238A00846EE7 /* SDLDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeviceInfo.h; sourceTree = "<group>"; };
		5D61FA961A84238A00846EE7 /* SDLDeviceInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeviceInfo.m; sourceTree = "<group>"; };
		5D61FA971A84238A00846EE7 /* SDLDeviceLevelStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeviceLevelStatus.h; sourceTree = "<group>"; };
		5D61FA981A84238A00846EE7 /* SDLDeviceLevelStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeviceLevelStatus.m; sourceTree = "<group>"; };
		5D61FA991A84238A00846EE7 /* SDLDeviceStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeviceStatus.h; sourceTree = "<group>"; };
		5D61FA9A1A84238A00846EE7 /* SDLDeviceStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeviceStatus.m; sourceTree = "<group>"; };
		5D61FA9B1A84238A00846EE7 /* SDLDiagnosticMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDiagnosticMessage.h; sourceTree = "<group>"; };
		5D61FA9C1A84238A00846EE7 /* SDLDiagnosticMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDiagnosticMessage.m; sourceTree = "<group>"; };
		5D61FA9D1A84238A00846EE7 /* SDLDiagnosticMessageResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDiagnosticMessageResponse.h; sourceTree = "<group>"; };
		5D61FA9E1A84238A00846EE7 /* SDLDiagnosticMessageResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDiagnosticMessageResponse.m; sourceTree = "<group>"; };
		5D61FA9F1A84238A00846EE7 /* SDLDIDResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDIDResult.h; sourceTree = "<group>"; };
		5D61FAA01A84238A00846EE7 /* SDLDIDResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDIDResult.m; sourceTree = "<group>"; };
		5D61FAA11A84238A00846EE7 /* SDLDimension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDimension.h; sourceTree = "<group>"; };
		5D61FAA21A84238A00846EE7 /* SDLDimension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDimension.m; sourceTree = "<group>"; };
		5D61FAA31A84238A00846EE7 /* SDLDisplayCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDisplayCapabilities.h; sourceTree = "<group>"; };
		5D61FAA41A84238A00846EE7 /* SDLDisplayCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDisplayCapabilities.m; sourceTree = "<group>"; };
		5D61FAA51A84238A00846EE7 /* SDLDisplayType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDisplayType.h; sourceTree = "<group>"; };
		5D61FAA61A84238A00846EE7 /* SDLDisplayType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDisplayType.m; sourceTree = "<group>"; };
		5D61FAA71A84238A00846EE7 /* SDLDriverDistractionState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDriverDistractionState.h; sourceTree = "<group>"; };
		5D61FAA81A84238A00846EE7 /* SDLDriverDistractionState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDriverDistractionState.m; sourceTree = "<group>"; };
		5D61FAA91A84238A00846EE7 /* SDLECallConfirmationStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLECallConfirmationStatus.h; sourceTree = "<group>"; };
		5D61FAAA1A84238A00846EE7 /* SDLECallConfirmationStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLECallConfirmationStatus.m; sourceTree = "<group>"; };
		5D61FAAB1A84238A00846EE7 /* SDLECallInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLECallInfo.h; sourceTree = "<group>"; };
		5D61FAAC1A84238A00846EE7 /* SDLECallInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLECallInfo.m; sourceTree = "<group>"; };
		5D61FAAD1A84238A00846EE7 /* SDLEmergencyEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLEmergencyEvent.h; sourceTree = "<group>"; };
		5D61FAAE1A84238A00846EE7 /* SDLEmergencyEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEmergencyEvent.m; sourceTree = "<group>"; };
		5D61FAAF1A84238A00846EE7 /* SDLEmergencyEventType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLEmergencyEventType.h; sourceTree = "<group>"; };
		5D61FAB01A84238A00846EE7 /* SDLEmergencyEventType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEmergencyEventType.m; sourceTree = "<group>"; };
		5D61FAB11A84238A00846EE7 /* SDLEncodedSyncPData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLEncodedSyncPData.h; sourceTree = "<group>"; };
		5D61FAB21A84238A00846EE7 /* SDLEncodedSyncPData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEncodedSyncPData.m; sourceTree = "<group>"; };
		5D61FAB31A84238A00846EE7 /* SDLEncodedSyncPDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLEncodedSyncPDataResponse.h; sourceTree = "<group>"; };
		5D61FAB41A84238A00846EE7 /* SDLEncodedSyncPDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEncodedSyncPDataResponse.m; sourceTree = "<group>"; };
		5D61FAB51A84238A00846EE7 /* SDLEncoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLEncoder.h; sourceTree = "<group>"; };
		5D61FAB61A84238A00846EE7 /* SDLEndAudioPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLEndAudioPassThru.h; sourceTree = "<group>"; };
		5D61FAB71A84238A00846EE7 /* SDLEndAudioPassThru.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEndAudioPassThru.m; sourceTree = "<group>"; };
		5D61FAB81A84238A00846EE7 /* SDLEndAudioPassThruResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLEndAudioPassThruResponse.h; sourceTree = "<group>"; };
		5D61FAB91A84238A00846EE7 /* SDLEndAudioPassThruResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEndAudioPassThruResponse.m; sourceTree = "<group>"; };
		5D61FABA1A84238A00846EE7 /* SDLEnum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLEnum.h; sourceTree = "<group>"; };
		5D61FABB1A84238A00846EE7 /* SDLEnum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLEnum.m; sourceTree = "<group>"; };
		5D61FABC1A84238A00846EE7 /* SDLFileType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLFileType.h; sourceTree = "<group>"; };
		5D61FABD1A84238A00846EE7 /* SDLFileType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLFileType.m; sourceTree = "<group>"; };
		5D61FABE1A84238A00846EE7 /* SDLFuelCutoffStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLFuelCutoffStatus.h; sourceTree = "<group>"; };
		5D61FABF1A84238A00846EE7 /* SDLFuelCutoffStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLFuelCutoffStatus.m; sourceTree = "<group>"; };
		5D61FAC01A84238A00846EE7 /* SDLFunctionID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLFunctionID.h; sourceTree = "<group>"; };
		5D61FAC11A84238A00846EE7 /* SDLFunctionID.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLFunctionID.m; sourceTree = "<group>"; };
		5D61FAC21A84238A00846EE7 /* SDLGenericResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLGenericResponse.h; sourceTree = "<group>"; };
		5D61FAC31A84238A00846EE7 /* SDLGenericResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGenericResponse.m; sourceTree = "<group>"; };
		5D61FAC41A84238A00846EE7 /* SDLGetDTCs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLGetDTCs.h; sourceTree = "<group>"; };
		5D61FAC51A84238A00846EE7 /* SDLGetDTCs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGetDTCs.m; sourceTree = "<group>"; };
		5D61FAC61A84238A00846EE7 /* SDLGetDTCsResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLGetDTCsResponse.h; sourceTree = "<group>"; };
		5D61FAC71A84238A00846EE7 /* SDLGetDTCsResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGetDTCsResponse.m; sourceTree = "<group>"; };
		5D61FAC81A84238A00846EE7 /* SDLGetVehicleData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLGetVehicleData.h; sourceTree = "<group>"; };
		5D61FAC91A84238A00846EE7 /* SDLGetVehicleData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGetVehicleData.m; sourceTree = "<group>"; };
		5D61FACA1A84238A00846EE7 /* SDLGetVehicleDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLGetVehicleDataResponse.h; sourceTree = "<group>"; };
		5D61FACB1A84238A00846EE7 /* SDLGetVehicleDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGetVehicleDataResponse.m; sourceTree = "<group>"; };
		5D61FACC1A84238A00846EE7 /* SDLGlobalProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLGlobalProperty.h; sourceTree = "<group>"; };
		5D61FACD1A84238A00846EE7 /* SDLGlobalProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGlobalProperty.m; sourceTree = "<group>"; };
		5D61FACE1A84238A00846EE7 /* SDLGPSData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLGPSData.h; sourceTree = "<group>"; };
		5D61FACF1A84238A00846EE7 /* SDLGPSData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLGPSData.m; sourceTree = "<group>"; };
		5D61FAD01A84238A00846EE7 /* SDLHeadLampStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLHeadLampStatus.h; sourceTree = "<group>"; };
		5D61FAD11A84238A00846EE7 /* SDLHeadLampStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHeadLampStatus.m; sourceTree = "<group>"; };
		5D61FAD21A84238A00846EE7 /* SDLHexUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLHexUtility.h; sourceTree = "<group>"; };
		5D61FAD31A84238A00846EE7 /* SDLHexUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHexUtility.m; sourceTree = "<group>"; };
		5D61FAD41A84238A00846EE7 /* SDLHMILevel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLHMILevel.h; sourceTree = "<group>"; };
		5D61FAD51A84238A00846EE7 /* SDLHMILevel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHMILevel.m; sourceTree = "<group>"; };
		5D61FAD61A84238A00846EE7 /* SDLHMIPermissions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLHMIPermissions.h; sourceTree = "<group>"; };
		5D61FAD71A84238A00846EE7 /* SDLHMIPermissions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHMIPermissions.m; sourceTree = "<group>"; };
		5D61FAD81A84238A00846EE7 /* SDLHMIZoneCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLHMIZoneCapabilities.h; sourceTree = "<group>"; };
		5D61FAD91A84238A00846EE7 /* SDLHMIZoneCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHMIZoneCapabilities.m; sourceTree = "<group>"; };
		5D61FADA1A84238A00846EE7 /* SDLIAPTransport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLIAPTransport.h; sourceTree = "<group>"; };
		5D61FADB1A84238A00846EE7 /* SDLIAPTransport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLIAPTransport.m; sourceTree = "<group>"; };
		5D61FADC1A84238A00846EE7 /* SDLIgnitionStableStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLIgnitionStableStatus.h; sourceTree = "<group>"; };
		5D61FADD1A84238A00846EE7 /* SDLIgnitionStableStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLIgnitionStableStatus.m; sourceTree = "<group>"; };
		5D61FADE1A84238A00846EE7 /* SDLIgnitionStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLIgnitionStatus.h; sourceTree = "<group>"; };
		5D61FADF1A84238A00846EE7 /* SDLIgnitionStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLIgnitionStatus.m; sourceTree = "<group>"; };
		5D61FAE01A84238A00846EE7 /* SDLImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLImage.h; sourceTree = "<group>"; };
		5D61FAE11A84238A00846EE7 /* SDLImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLImage.m; sourceTree = "<group>"; };
		5D61FAE21A84238A00846EE7 /* SDLImageField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLImageField.h; sourceTree = "<group>"; };
		5D61FAE31A84238A00846EE7 /* SDLImageField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLImageField.m; sourceTree = "<group>"; };
		5D61FAE41A84238A00846EE7 /* SDLImageFieldName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLImageFieldName.h; sourceTree = "<group>"; };
		5D61FAE51A84238A00846EE7 /* SDLImageFieldName.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLImageFieldName.m; sourceTree = "<group>"; };
		5D61FAE61A84238A00846EE7 /* SDLImageResolution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLImageResolution.h; sourceTree = "<group>"; };
		5D61FAE71A84238A00846EE7 /* SDLImageResolution.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLImageResolution.m; sourceTree = "<group>"; };
		5D61FAE81A84238A00846EE7 /* SDLImageType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLImageType.h; sourceTree = "<group>"; };
		5D61FAE91A84238A00846EE7 /* SDLImageType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLImageType.m; sourceTree = "<group>"; };
		5D61FAEA1A84238A00846EE7 /* SDLInteractionMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLInteractionMode.h; sourceTree = "<group>"; };
		5D61FAEB1A84238A00846EE7 /* SDLInteractionMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLInteractionMode.m; sourceTree = "<group>"; };
		5D61FAED1A84238A00846EE7 /* SDLJingle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLJingle.h; sourceTree = "<group>"; };
		5D61FAEE1A84238A00846EE7 /* SDLJingle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLJingle.m; sourceTree = "<group>"; };
		5D61FAEF1A84238A00846EE7 /* SDLJsonDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLJsonDecoder.h; sourceTree = "<group>"; };
		5D61FAF01A84238A00846EE7 /* SDLJsonDecoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLJsonDecoder.m; sourceTree = "<group>"; };
		5D61FAF11A84238A00846EE7 /* SDLJsonEncoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLJsonEncoder.h; sourceTree = "<group>"; };
		5D61FAF21A84238A00846EE7 /* SDLJsonEncoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLJsonEncoder.m; sourceTree = "<group>"; };
		5D61FAF31A84238A00846EE7 /* SDLKeyboardEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLKeyboardEvent.h; sourceTree = "<group>"; };
		5D61FAF41A84238A00846EE7 /* SDLKeyboardEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLKeyboardEvent.m; sourceTree = "<group>"; };
		5D61FAF51A84238A00846EE7 /* SDLKeyboardLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLKeyboardLayout.h; sourceTree = "<group>"; };
		5D61FAF61A84238A00846EE7 /* SDLKeyboardLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLKeyboardLayout.m; sourceTree = "<group>"; };
		5D61FAF71A84238A00846EE7 /* SDLKeyboardProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLKeyboardProperties.h; sourceTree = "<group>"; };
		5D61FAF81A84238A00846EE7 /* SDLKeyboardProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLKeyboardProperties.m; sourceTree = "<group>"; };
		5D61FAF91A84238A00846EE7 /* SDLKeypressMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLKeypressMode.h; sourceTree = "<group>"; };
		5D61FAFA1A84238A00846EE7 /* SDLKeypressMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLKeypressMode.m; sourceTree = "<group>"; };
		5D61FAFB1A84238A00846EE7 /* SDLLanguage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLLanguage.h; sourceTree = "<group>"; };
		5D61FAFC1A84238A00846EE7 /* SDLLanguage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLanguage.m; sourceTree = "<group>"; };
		5D61FAFD1A84238A00846EE7 /* SDLLayoutMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLLayoutMode.h; sourceTree = "<group>"; };
		5D61FAFE1A84238A00846EE7 /* SDLLayoutMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLayoutMode.m; sourceTree = "<group>"; };
		5D61FAFF1A84238A00846EE7 /* SDLListFiles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLListFiles.h; sourceTree = "<group>"; };
		5D61FB001A84238A00846EE7 /* SDLListFiles.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLListFiles.m; sourceTree = "<group>"; };
		5D61FB011A84238A00846EE7 /* SDLListFilesResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLListFilesResponse.h; sourceTree = "<group>"; };
		5D61FB021A84238A00846EE7 /* SDLListFilesResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLListFilesResponse.m; sourceTree = "<group>"; };
		5D61FB031A84238A00846EE7 /* SDLLockScreenStatusManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLLockScreenStatusManager.h; sourceTree = "<group>"; };
		5D61FB041A84238A00846EE7 /* SDLLockScreenStatusManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLockScreenStatusManager.m; sourceTree = "<group>"; };
		5D61FB051A84238A00846EE7 /* SDLLockScreenStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLLockScreenStatus.h; sourceTree = "<group>"; };
		5D61FB061A84238A00846EE7 /* SDLLockScreenStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLockScreenStatus.m; sourceTree = "<group>"; };
		5D61FB071A84238A00846EE7 /* SDLMaintenanceModeStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLMaintenanceModeStatus.h; sourceTree = "<group>"; };
		5D61FB081A84238A00846EE7 /* SDLMaintenanceModeStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLMaintenanceModeStatus.m; sourceTree = "<group>"; };
		5D61FB091A84238A00846EE7 /* SDLMediaClockFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLMediaClockFormat.h; sourceTree = "<group>"; };
		5D61FB0A1A84238A00846EE7 /* SDLMediaClockFormat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLMediaClockFormat.m; sourceTree = "<group>"; };
		5D61FB0B1A84238A00846EE7 /* SDLMenuParams.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLMenuParams.h; sourceTree = "<group>"; };
		5D61FB0C1A84238A00846EE7 /* SDLMenuParams.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLMenuParams.m; sourceTree = "<group>"; };
		5D61FB0D1A84238A00846EE7 /* SDLMyKey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLMyKey.h; sourceTree = "<group>"; };
		5D61FB0E1A84238A00846EE7 /* SDLMyKey.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLMyKey.m; sourceTree = "<group>"; };
		5D61FB0F1A84238A00846EE7 /* SDLNames.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLNames.h; sourceTree = "<group>"; };
		5D61FB101A84238A00846EE7 /* SDLObjectWithPriority.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLObjectWithPriority.h; sourceTree = "<group>"; };
		5D61FB111A84238A00846EE7 /* SDLObjectWithPriority.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLObjectWithPriority.m; sourceTree = "<group>"; };
		5D61FB121A84238B00846EE7 /* SDLOnAppInterfaceUnregistered.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnAppInterfaceUnregistered.h; sourceTree = "<group>"; };
		5D61FB131A84238B00846EE7 /* SDLOnAppInterfaceUnregistered.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnAppInterfaceUnregistered.m; sourceTree = "<group>"; };
		5D61FB141A84238B00846EE7 /* SDLOnAudioPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnAudioPassThru.h; sourceTree = "<group>"; };
		5D61FB151A84238B00846EE7 /* SDLOnAudioPassThru.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnAudioPassThru.m; sourceTree = "<group>"; };
		5D61FB161A84238B00846EE7 /* SDLOnButtonEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnButtonEvent.h; sourceTree = "<group>"; };
		5D61FB171A84238B00846EE7 /* SDLOnButtonEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnButtonEvent.m; sourceTree = "<group>"; };
		5D61FB181A84238B00846EE7 /* SDLOnButtonPress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnButtonPress.h; sourceTree = "<group>"; };
		5D61FB191A84238B00846EE7 /* SDLOnButtonPress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnButtonPress.m; sourceTree = "<group>"; };
		5D61FB1A1A84238B00846EE7 /* SDLOnCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnCommand.h; sourceTree = "<group>"; };
		5D61FB1B1A84238B00846EE7 /* SDLOnCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnCommand.m; sourceTree = "<group>"; };
		5D61FB1C1A84238B00846EE7 /* SDLOnDriverDistraction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnDriverDistraction.h; sourceTree = "<group>"; };
		5D61FB1D1A84238B00846EE7 /* SDLOnDriverDistraction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnDriverDistraction.m; sourceTree = "<group>"; };
		5D61FB1E1A84238B00846EE7 /* SDLOnEncodedSyncPData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnEncodedSyncPData.h; sourceTree = "<group>"; };
		5D61FB1F1A84238B00846EE7 /* SDLOnEncodedSyncPData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnEncodedSyncPData.m; sourceTree = "<group>"; };
		5D61FB201A84238B00846EE7 /* SDLOnHashChange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnHashChange.h; sourceTree = "<group>"; };
		5D61FB211A84238B00846EE7 /* SDLOnHashChange.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnHashChange.m; sourceTree = "<group>"; };
		5D61FB221A84238B00846EE7 /* SDLOnHMIStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnHMIStatus.h; sourceTree = "<group>"; };
		5D61FB231A84238B00846EE7 /* SDLOnHMIStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnHMIStatus.m; sourceTree = "<group>"; };
		5D61FB241A84238B00846EE7 /* SDLOnKeyboardInput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnKeyboardInput.h; sourceTree = "<group>"; };
		5D61FB251A84238B00846EE7 /* SDLOnKeyboardInput.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnKeyboardInput.m; sourceTree = "<group>"; };
		5D61FB261A84238B00846EE7 /* SDLOnLanguageChange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnLanguageChange.h; sourceTree = "<group>"; };
		5D61FB271A84238B00846EE7 /* SDLOnLanguageChange.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnLanguageChange.m; sourceTree = "<group>"; };
		5D61FB281A84238B00846EE7 /* SDLOnLockScreenStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnLockScreenStatus.h; sourceTree = "<group>"; };
		5D61FB291A84238B00846EE7 /* SDLOnLockScreenStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnLockScreenStatus.m; sourceTree = "<group>"; };
		5D61FB2A1A84238B00846EE7 /* SDLOnPermissionsChange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnPermissionsChange.h; sourceTree = "<group>"; };
		5D61FB2B1A84238B00846EE7 /* SDLOnPermissionsChange.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnPermissionsChange.m; sourceTree = "<group>"; };
		5D61FB2C1A84238B00846EE7 /* SDLOnSyncPData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnSyncPData.h; sourceTree = "<group>"; };
		5D61FB2D1A84238B00846EE7 /* SDLOnSyncPData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnSyncPData.m; sourceTree = "<group>"; };
		5D61FB2E1A84238B00846EE7 /* SDLOnSystemRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnSystemRequest.h; sourceTree = "<group>"; };
		5D61FB2F1A84238B00846EE7 /* SDLOnSystemRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnSystemRequest.m; sourceTree = "<group>"; };
		5D61FB301A84238B00846EE7 /* SDLOnTBTClientState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnTBTClientState.h; sourceTree = "<group>"; };
		5D61FB311A84238B00846EE7 /* SDLOnTBTClientState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnTBTClientState.m; sourceTree = "<group>"; };
		5D61FB321A84238B00846EE7 /* SDLOnTouchEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnTouchEvent.h; sourceTree = "<group>"; };
		5D61FB331A84238B00846EE7 /* SDLOnTouchEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnTouchEvent.m; sourceTree = "<group>"; };
		5D61FB341A84238B00846EE7 /* SDLOnVehicleData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOnVehicleData.h; sourceTree = "<group>"; };
		5D61FB351A84238B00846EE7 /* SDLOnVehicleData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOnVehicleData.m; sourceTree = "<group>"; };
		5D61FB361A84238B00846EE7 /* SDLParameterPermissions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLParameterPermissions.h; sourceTree = "<group>"; };
		5D61FB371A84238B00846EE7 /* SDLParameterPermissions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLParameterPermissions.m; sourceTree = "<group>"; };
		5D61FB381A84238B00846EE7 /* SDLPerformAudioPassThru.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPerformAudioPassThru.h; sourceTree = "<group>"; };
		5D61FB391A84238B00846EE7 /* SDLPerformAudioPassThru.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPerformAudioPassThru.m; sourceTree = "<group>"; };
		5D61FB3A1A84238B00846EE7 /* SDLPerformAudioPassThruResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPerformAudioPassThruResponse.h; sourceTree = "<group>"; };
		5D61FB3B1A84238B00846EE7 /* SDLPerformAudioPassThruResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPerformAudioPassThruResponse.m; sourceTree = "<group>"; };
		5D61FB3C1A84238B00846EE7 /* SDLPerformInteraction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPerformInteraction.h; sourceTree = "<group>"; };
		5D61FB3D1A84238B00846EE7 /* SDLPerformInteraction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPerformInteraction.m; sourceTree = "<group>"; };
		5D61FB3E1A84238B00846EE7 /* SDLPerformInteractionResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPerformInteractionResponse.h; sourceTree = "<group>"; };
		5D61FB3F1A84238B00846EE7 /* SDLPerformInteractionResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPerformInteractionResponse.m; sourceTree = "<group>"; };
		5D61FB401A84238B00846EE7 /* SDLPermissionItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPermissionItem.h; sourceTree = "<group>"; };
		5D61FB411A84238B00846EE7 /* SDLPermissionItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPermissionItem.m; sourceTree = "<group>"; };
		5D61FB421A84238B00846EE7 /* SDLPermissionStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPermissionStatus.h; sourceTree = "<group>"; };
		5D61FB431A84238B00846EE7 /* SDLPermissionStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPermissionStatus.m; sourceTree = "<group>"; };
		5D61FB441A84238B00846EE7 /* SDLPolicyDataParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPolicyDataParser.h; sourceTree = "<group>"; };
		5D61FB451A84238B00846EE7 /* SDLPolicyDataParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPolicyDataParser.m; sourceTree = "<group>"; };
		5D61FB461A84238B00846EE7 /* SDLPowerModeQualificationStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPowerModeQualificationStatus.h; sourceTree = "<group>"; };
		5D61FB471A84238B00846EE7 /* SDLPowerModeQualificationStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPowerModeQualificationStatus.m; sourceTree = "<group>"; };
		5D61FB481A84238B00846EE7 /* SDLPowerModeStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPowerModeStatus.h; sourceTree = "<group>"; };
		5D61FB491A84238B00846EE7 /* SDLPowerModeStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPowerModeStatus.m; sourceTree = "<group>"; };
		5D61FB4A1A84238B00846EE7 /* SDLPredefinedLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPredefinedLayout.h; sourceTree = "<group>"; };
		5D61FB4B1A84238B00846EE7 /* SDLPredefinedLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPredefinedLayout.m; sourceTree = "<group>"; };
		5D61FB4C1A84238B00846EE7 /* SDLPrerecordedSpeech.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPrerecordedSpeech.h; sourceTree = "<group>"; };
		5D61FB4D1A84238B00846EE7 /* SDLPrerecordedSpeech.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPrerecordedSpeech.m; sourceTree = "<group>"; };
		5D61FB4E1A84238B00846EE7 /* SDLPresetBankCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPresetBankCapabilities.h; sourceTree = "<group>"; };
		5D61FB4F1A84238B00846EE7 /* SDLPresetBankCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPresetBankCapabilities.m; sourceTree = "<group>"; };
		5D61FB501A84238B00846EE7 /* SDLPrimaryAudioSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPrimaryAudioSource.h; sourceTree = "<group>"; };
		5D61FB511A84238B00846EE7 /* SDLPrimaryAudioSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPrimaryAudioSource.m; sourceTree = "<group>"; };
		5D61FB521A84238B00846EE7 /* SDLPrioritizedObjectCollection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPrioritizedObjectCollection.h; sourceTree = "<group>"; };
		5D61FB531A84238B00846EE7 /* SDLPrioritizedObjectCollection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPrioritizedObjectCollection.m; sourceTree = "<group>"; };
		5D61FB541A84238B00846EE7 /* SDLPRNDL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPRNDL.h; sourceTree = "<group>"; };
		5D61FB551A84238B00846EE7 /* SDLPRNDL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPRNDL.m; sourceTree = "<group>"; };
		5D61FB561A84238B00846EE7 /* SDLProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLProtocol.h; sourceTree = "<group>"; };
		5D61FB571A84238B00846EE7 /* SDLProtocol.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocol.m; sourceTree = "<group>"; };
		5D61FB581A84238B00846EE7 /* SDLProtocolHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLProtocolHeader.h; sourceTree = "<group>"; };
		5D61FB591A84238B00846EE7 /* SDLProtocolHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocolHeader.m; sourceTree = "<group>"; };
		5D61FB5A1A84238B00846EE7 /* SDLProtocolListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLProtocolListener.h; sourceTree = "<group>"; };
		5D61FB5B1A84238B00846EE7 /* SDLProtocolMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLProtocolMessage.h; sourceTree = "<group>"; };
		5D61FB5C1A84238B00846EE7 /* SDLProtocolMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocolMessage.m; sourceTree = "<group>"; };
		5D61FB5D1A84238B00846EE7 /* SDLProtocolMessageAssembler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLProtocolMessageAssembler.h; sourceTree = "<group>"; };
		5D61FB5E1A84238B00846EE7 /* SDLProtocolMessageAssembler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocolMessageAssembler.m; sourceTree = "<group>"; };
		5D61FB5F1A84238B00846EE7 /* SDLProtocolMessageDisassembler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLProtocolMessageDisassembler.h; sourceTree = "<group>"; };
		5D61FB601A84238B00846EE7 /* SDLProtocolMessageDisassembler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocolMessageDisassembler.m; sourceTree = "<group>"; };
		5D61FB611A84238B00846EE7 /* SDLProtocolReceivedMessageRouter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLProtocolReceivedMessageRouter.h; sourceTree = "<group>"; };
		5D61FB621A84238B00846EE7 /* SDLProtocolReceivedMessageRouter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProtocolReceivedMessageRouter.m; sourceTree = "<group>"; };
		5D61FB631A84238B00846EE7 /* SDLProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLProxy.h; sourceTree = "<group>"; };
		5D61FB641A84238B00846EE7 /* SDLProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProxy.m; sourceTree = "<group>"; };
		5D61FB651A84238B00846EE7 /* SDLProxyFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLProxyFactory.h; sourceTree = "<group>"; };
		5D61FB661A84238B00846EE7 /* SDLProxyFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLProxyFactory.m; sourceTree = "<group>"; };
		5D61FB671A84238B00846EE7 /* SDLProxyListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLProxyListener.h; sourceTree = "<group>"; };
		5D61FB681A84238B00846EE7 /* SDLPutFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPutFile.h; sourceTree = "<group>"; };
		5D61FB691A84238B00846EE7 /* SDLPutFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPutFile.m; sourceTree = "<group>"; };
		5D61FB6A1A84238B00846EE7 /* SDLPutFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPutFileResponse.h; sourceTree = "<group>"; };
		5D61FB6B1A84238B00846EE7 /* SDLPutFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPutFileResponse.m; sourceTree = "<group>"; };
		5D61FB6C1A84238B00846EE7 /* SDLReadDID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLReadDID.h; sourceTree = "<group>"; };
		5D61FB6D1A84238B00846EE7 /* SDLReadDID.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLReadDID.m; sourceTree = "<group>"; };
		5D61FB6E1A84238B00846EE7 /* SDLReadDIDResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLReadDIDResponse.h; sourceTree = "<group>"; };
		5D61FB6F1A84238B00846EE7 /* SDLReadDIDResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLReadDIDResponse.m; sourceTree = "<group>"; };
		5D61FB701A84238B00846EE7 /* SDLRegisterAppInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRegisterAppInterface.h; sourceTree = "<group>"; };
		5D61FB711A84238B00846EE7 /* SDLRegisterAppInterface.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRegisterAppInterface.m; sourceTree = "<group>"; };
		5D61FB721A84238B00846EE7 /* SDLRegisterAppInterfaceResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRegisterAppInterfaceResponse.h; sourceTree = "<group>"; };
		5D61FB731A84238B00846EE7 /* SDLRegisterAppInterfaceResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRegisterAppInterfaceResponse.m; sourceTree = "<group>"; };
		5D61FB741A84238B00846EE7 /* SDLRequestType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRequestType.h; sourceTree = "<group>"; };
		5D61FB751A84238B00846EE7 /* SDLRequestType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRequestType.m; sourceTree = "<group>"; };
		5D61FB761A84238B00846EE7 /* SDLResetGlobalProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLResetGlobalProperties.h; sourceTree = "<group>"; };
		5D61FB771A84238B00846EE7 /* SDLResetGlobalProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLResetGlobalProperties.m; sourceTree = "<group>"; };
		5D61FB781A84238B00846EE7 /* SDLResetGlobalPropertiesResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLResetGlobalPropertiesResponse.h; sourceTree = "<group>"; };
		5D61FB791A84238B00846EE7 /* SDLResetGlobalPropertiesResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLResetGlobalPropertiesResponse.m; sourceTree = "<group>"; };
		5D61FB7A1A84238B00846EE7 /* SDLResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLResult.h; sourceTree = "<group>"; };
		5D61FB7B1A84238B00846EE7 /* SDLResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLResult.m; sourceTree = "<group>"; };
		5D61FB7C1A84238B00846EE7 /* SDLRPCMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRPCMessage.h; sourceTree = "<group>"; };
		5D61FB7D1A84238B00846EE7 /* SDLRPCMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCMessage.m; sourceTree = "<group>"; };
		5D61FB7E1A84238B00846EE7 /* SDLRPCMessageType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRPCMessageType.h; sourceTree = "<group>"; };
		5D61FB801A84238B00846EE7 /* SDLRPCNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRPCNotification.h; sourceTree = "<group>"; };
		5D61FB811A84238B00846EE7 /* SDLRPCNotification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCNotification.m; sourceTree = "<group>"; };
		5D61FB821A84238B00846EE7 /* SDLRPCPayload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRPCPayload.h; sourceTree = "<group>"; };
		5D61FB831A84238B00846EE7 /* SDLRPCPayload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCPayload.m; sourceTree = "<group>"; };
		5D61FB841A84238B00846EE7 /* SDLRPCRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRPCRequest.h; sourceTree = "<group>"; };
		5D61FB851A84238B00846EE7 /* SDLRPCRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCRequest.m; sourceTree = "<group>"; };
		5D61FB861A84238B00846EE7 /* SDLRPCRequestFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRPCRequestFactory.h; sourceTree = "<group>"; };
		5D61FB871A84238B00846EE7 /* SDLRPCRequestFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCRequestFactory.m; sourceTree = "<group>"; };
		5D61FB881A84238B00846EE7 /* SDLRPCResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRPCResponse.h; sourceTree = "<group>"; };
		5D61FB891A84238B00846EE7 /* SDLRPCResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCResponse.m; sourceTree = "<group>"; };
		5D61FB8A1A84238B00846EE7 /* SDLSamplingRate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSamplingRate.h; sourceTree = "<group>"; };
		5D61FB8B1A84238B00846EE7 /* SDLSamplingRate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSamplingRate.m; sourceTree = "<group>"; };
		5D61FB8C1A84238B00846EE7 /* SDLScreenParams.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLScreenParams.h; sourceTree = "<group>"; };
		5D61FB8D1A84238B00846EE7 /* SDLScreenParams.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLScreenParams.m; sourceTree = "<group>"; };
		5D61FB8E1A84238B00846EE7 /* SDLScrollableMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLScrollableMessage.h; sourceTree = "<group>"; };
		5D61FB8F1A84238B00846EE7 /* SDLScrollableMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLScrollableMessage.m; sourceTree = "<group>"; };
		5D61FB901A84238B00846EE7 /* SDLScrollableMessageResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLScrollableMessageResponse.h; sourceTree = "<group>"; };
		5D61FB911A84238B00846EE7 /* SDLScrollableMessageResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLScrollableMessageResponse.m; sourceTree = "<group>"; };
		5D61FB921A84238B00846EE7 /* SDLSetAppIcon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSetAppIcon.h; sourceTree = "<group>"; };
		5D61FB931A84238B00846EE7 /* SDLSetAppIcon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetAppIcon.m; sourceTree = "<group>"; };
		5D61FB941A84238B00846EE7 /* SDLSetAppIconResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSetAppIconResponse.h; sourceTree = "<group>"; };
		5D61FB951A84238B00846EE7 /* SDLSetAppIconResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetAppIconResponse.m; sourceTree = "<group>"; };
		5D61FB961A84238B00846EE7 /* SDLSetDisplayLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSetDisplayLayout.h; sourceTree = "<group>"; };
		5D61FB971A84238B00846EE7 /* SDLSetDisplayLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetDisplayLayout.m; sourceTree = "<group>"; };
		5D61FB981A84238B00846EE7 /* SDLSetDisplayLayoutResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSetDisplayLayoutResponse.h; sourceTree = "<group>"; };
		5D61FB991A84238B00846EE7 /* SDLSetDisplayLayoutResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetDisplayLayoutResponse.m; sourceTree = "<group>"; };
		5D61FB9A1A84238B00846EE7 /* SDLSetGlobalProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSetGlobalProperties.h; sourceTree = "<group>"; };
		5D61FB9B1A84238B00846EE7 /* SDLSetGlobalProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetGlobalProperties.m; sourceTree = "<group>"; };
		5D61FB9C1A84238B00846EE7 /* SDLSetGlobalPropertiesResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSetGlobalPropertiesResponse.h; sourceTree = "<group>"; };
		5D61FB9D1A84238B00846EE7 /* SDLSetGlobalPropertiesResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetGlobalPropertiesResponse.m; sourceTree = "<group>"; };
		5D61FB9E1A84238B00846EE7 /* SDLSetMediaClockTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSetMediaClockTimer.h; sourceTree = "<group>"; };
		5D61FB9F1A84238B00846EE7 /* SDLSetMediaClockTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetMediaClockTimer.m; sourceTree = "<group>"; };
		5D61FBA01A84238B00846EE7 /* SDLSetMediaClockTimerResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSetMediaClockTimerResponse.h; sourceTree = "<group>"; };
		5D61FBA11A84238B00846EE7 /* SDLSetMediaClockTimerResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSetMediaClockTimerResponse.m; sourceTree = "<group>"; };
		5D61FBA21A84238B00846EE7 /* SDLShow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLShow.h; sourceTree = "<group>"; };
		5D61FBA31A84238B00846EE7 /* SDLShow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLShow.m; sourceTree = "<group>"; };
		5D61FBA41A84238B00846EE7 /* SDLShowConstantTBT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLShowConstantTBT.h; sourceTree = "<group>"; };
		5D61FBA51A84238B00846EE7 /* SDLShowConstantTBT.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLShowConstantTBT.m; sourceTree = "<group>"; };
		5D61FBA61A84238B00846EE7 /* SDLShowConstantTBTResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLShowConstantTBTResponse.h; sourceTree = "<group>"; };
		5D61FBA71A84238B00846EE7 /* SDLShowConstantTBTResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLShowConstantTBTResponse.m; sourceTree = "<group>"; };
		5D61FBA81A84238B00846EE7 /* SDLShowResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLShowResponse.h; sourceTree = "<group>"; };
		5D61FBA91A84238B00846EE7 /* SDLShowResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLShowResponse.m; sourceTree = "<group>"; };
		5D61FBAA1A84238B00846EE7 /* SDLSingleTireStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSingleTireStatus.h; sourceTree = "<group>"; };
		5D61FBAB1A84238B00846EE7 /* SDLSingleTireStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSingleTireStatus.m; sourceTree = "<group>"; };
		5D61FBAC1A84238B00846EE7 /* SDLSiphonServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSiphonServer.h; sourceTree = "<group>"; };
		5D61FBAD1A84238B00846EE7 /* SDLSiphonServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSiphonServer.m; sourceTree = "<group>"; };
		5D61FBAE1A84238B00846EE7 /* SDLSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSlider.h; sourceTree = "<group>"; };
		5D61FBAF1A84238B00846EE7 /* SDLSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSlider.m; sourceTree = "<group>"; };
		5D61FBB01A84238B00846EE7 /* SDLSliderResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSliderResponse.h; sourceTree = "<group>"; };
		5D61FBB11A84238B00846EE7 /* SDLSliderResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSliderResponse.m; sourceTree = "<group>"; };
		5D61FBB21A84238B00846EE7 /* SDLSoftButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSoftButton.h; sourceTree = "<group>"; };
		5D61FBB31A84238B00846EE7 /* SDLSoftButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSoftButton.m; sourceTree = "<group>"; };
		5D61FBB41A84238B00846EE7 /* SDLSoftButtonCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSoftButtonCapabilities.h; sourceTree = "<group>"; };
		5D61FBB51A84238B00846EE7 /* SDLSoftButtonCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSoftButtonCapabilities.m; sourceTree = "<group>"; };
		5D61FBB61A84238B00846EE7 /* SDLSoftButtonType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSoftButtonType.h; sourceTree = "<group>"; };
		5D61FBB71A84238B00846EE7 /* SDLSoftButtonType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSoftButtonType.m; sourceTree = "<group>"; };
		5D61FBB81A84238B00846EE7 /* SDLSpeak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSpeak.h; sourceTree = "<group>"; };
		5D61FBB91A84238B00846EE7 /* SDLSpeak.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSpeak.m; sourceTree = "<group>"; };
		5D61FBBA1A84238B00846EE7 /* SDLSpeakResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSpeakResponse.h; sourceTree = "<group>"; };
		5D61FBBB1A84238B00846EE7 /* SDLSpeakResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSpeakResponse.m; sourceTree = "<group>"; };
		5D61FBBC1A84238B00846EE7 /* SDLSpeechCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSpeechCapabilities.h; sourceTree = "<group>"; };
		5D61FBBD1A84238B00846EE7 /* SDLSpeechCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSpeechCapabilities.m; sourceTree = "<group>"; };
		5D61FBBE1A84238B00846EE7 /* SDLStartTime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLStartTime.h; sourceTree = "<group>"; };
		5D61FBBF1A84238B00846EE7 /* SDLStartTime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLStartTime.m; sourceTree = "<group>"; };
		5D61FBC01A84238B00846EE7 /* SDLSubscribeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSubscribeButton.h; sourceTree = "<group>"; };
		5D61FBC11A84238B00846EE7 /* SDLSubscribeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSubscribeButton.m; sourceTree = "<group>"; };
		5D61FBC21A84238B00846EE7 /* SDLSubscribeButtonResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSubscribeButtonResponse.h; sourceTree = "<group>"; };
		5D61FBC31A84238B00846EE7 /* SDLSubscribeButtonResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSubscribeButtonResponse.m; sourceTree = "<group>"; };
		5D61FBC41A84238B00846EE7 /* SDLSubscribeVehicleData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSubscribeVehicleData.h; sourceTree = "<group>"; };
		5D61FBC51A84238B00846EE7 /* SDLSubscribeVehicleData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSubscribeVehicleData.m; sourceTree = "<group>"; };
		5D61FBC61A84238B00846EE7 /* SDLSubscribeVehicleDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSubscribeVehicleDataResponse.h; sourceTree = "<group>"; };
		5D61FBC71A84238B00846EE7 /* SDLSubscribeVehicleDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSubscribeVehicleDataResponse.m; sourceTree = "<group>"; };
		5D61FBC81A84238B00846EE7 /* SDLSyncMsgVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSyncMsgVersion.h; sourceTree = "<group>"; };
		5D61FBC91A84238B00846EE7 /* SDLSyncMsgVersion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSyncMsgVersion.m; sourceTree = "<group>"; };
		5D61FBCA1A84238B00846EE7 /* SDLSyncPData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSyncPData.h; sourceTree = "<group>"; };
		5D61FBCB1A84238B00846EE7 /* SDLSyncPData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSyncPData.m; sourceTree = "<group>"; };
		5D61FBCC1A84238B00846EE7 /* SDLSyncPDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSyncPDataResponse.h; sourceTree = "<group>"; };
		5D61FBCD1A84238B00846EE7 /* SDLSyncPDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSyncPDataResponse.m; sourceTree = "<group>"; };
		5D61FBCE1A84238B00846EE7 /* SDLSystemAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSystemAction.h; sourceTree = "<group>"; };
		5D61FBCF1A84238B00846EE7 /* SDLSystemAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSystemAction.m; sourceTree = "<group>"; };
		5D61FBD01A84238B00846EE7 /* SDLSystemContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSystemContext.h; sourceTree = "<group>"; };
		5D61FBD11A84238B00846EE7 /* SDLSystemContext.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSystemContext.m; sourceTree = "<group>"; };
		5D61FBD21A84238B00846EE7 /* SDLSystemRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSystemRequest.h; sourceTree = "<group>"; };
		5D61FBD31A84238B00846EE7 /* SDLSystemRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSystemRequest.m; sourceTree = "<group>"; };
		5D61FBD41A84238B00846EE7 /* SDLSystemRequestResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSystemRequestResponse.h; sourceTree = "<group>"; };
		5D61FBD51A84238B00846EE7 /* SDLSystemRequestResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSystemRequestResponse.m; sourceTree = "<group>"; };
		5D61FBD61A84238B00846EE7 /* SDLTBTState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTBTState.h; sourceTree = "<group>"; };
		5D61FBD71A84238B00846EE7 /* SDLTBTState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTBTState.m; sourceTree = "<group>"; };
		5D61FBD81A84238B00846EE7 /* SDLTCPTransport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTCPTransport.h; sourceTree = "<group>"; };
		5D61FBD91A84238B00846EE7 /* SDLTCPTransport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTCPTransport.m; sourceTree = "<group>"; };
		5D61FBDA1A84238B00846EE7 /* SDLTextAlignment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTextAlignment.h; sourceTree = "<group>"; };
		5D61FBDB1A84238C00846EE7 /* SDLTextAlignment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTextAlignment.m; sourceTree = "<group>"; };
		5D61FBDC1A84238C00846EE7 /* SDLTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTextField.h; sourceTree = "<group>"; };
		5D61FBDD1A84238C00846EE7 /* SDLTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTextField.m; sourceTree = "<group>"; };
		5D61FBDE1A84238C00846EE7 /* SDLTextFieldName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTextFieldName.h; sourceTree = "<group>"; };
		5D61FBDF1A84238C00846EE7 /* SDLTextFieldName.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTextFieldName.m; sourceTree = "<group>"; };
		5D61FBE01A84238C00846EE7 /* SDLTimerMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTimerMode.h; sourceTree = "<group>"; };
		5D61FBE11A84238C00846EE7 /* SDLTimerMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTimerMode.m; sourceTree = "<group>"; };
		5D61FBE21A84238C00846EE7 /* SDLTireStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTireStatus.h; sourceTree = "<group>"; };
		5D61FBE31A84238C00846EE7 /* SDLTireStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTireStatus.m; sourceTree = "<group>"; };
		5D61FBE41A84238C00846EE7 /* SDLTouchCoord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTouchCoord.h; sourceTree = "<group>"; };
		5D61FBE51A84238C00846EE7 /* SDLTouchCoord.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTouchCoord.m; sourceTree = "<group>"; };
		5D61FBE61A84238C00846EE7 /* SDLTouchEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTouchEvent.h; sourceTree = "<group>"; };
		5D61FBE71A84238C00846EE7 /* SDLTouchEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTouchEvent.m; sourceTree = "<group>"; };
		5D61FBE81A84238C00846EE7 /* SDLTouchEventCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTouchEventCapabilities.h; sourceTree = "<group>"; };
		5D61FBE91A84238C00846EE7 /* SDLTouchEventCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTouchEventCapabilities.m; sourceTree = "<group>"; };
		5D61FBEA1A84238C00846EE7 /* SDLTouchType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTouchType.h; sourceTree = "<group>"; };
		5D61FBEB1A84238C00846EE7 /* SDLTouchType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTouchType.m; sourceTree = "<group>"; };
		5D61FBED1A84238C00846EE7 /* SDLTransportDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTransportDelegate.h; sourceTree = "<group>"; };
		5D61FBEE1A84238C00846EE7 /* SDLTriggerSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTriggerSource.h; sourceTree = "<group>"; };
		5D61FBEF1A84238C00846EE7 /* SDLTriggerSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTriggerSource.m; sourceTree = "<group>"; };
		5D61FBF01A84238C00846EE7 /* SDLTTSChunk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTTSChunk.h; sourceTree = "<group>"; };
		5D61FBF11A84238C00846EE7 /* SDLTTSChunk.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTTSChunk.m; sourceTree = "<group>"; };
		5D61FBF21A84238C00846EE7 /* SDLTTSChunkFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTTSChunkFactory.h; sourceTree = "<group>"; };
		5D61FBF31A84238C00846EE7 /* SDLTTSChunkFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTTSChunkFactory.m; sourceTree = "<group>"; };
		5D61FBF41A84238C00846EE7 /* SDLTurn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTurn.h; sourceTree = "<group>"; };
		5D61FBF51A84238C00846EE7 /* SDLTurn.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTurn.m; sourceTree = "<group>"; };
		5D61FBF61A84238C00846EE7 /* SDLUnregisterAppInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUnregisterAppInterface.h; sourceTree = "<group>"; };
		5D61FBF71A84238C00846EE7 /* SDLUnregisterAppInterface.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnregisterAppInterface.m; sourceTree = "<group>"; };
		5D61FBF81A84238C00846EE7 /* SDLUnregisterAppInterfaceResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUnregisterAppInterfaceResponse.h; sourceTree = "<group>"; };
		5D61FBF91A84238C00846EE7 /* SDLUnregisterAppInterfaceResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnregisterAppInterfaceResponse.m; sourceTree = "<group>"; };
		5D61FBFA1A84238C00846EE7 /* SDLUnsubscribeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUnsubscribeButton.h; sourceTree = "<group>"; };
		5D61FBFB1A84238C00846EE7 /* SDLUnsubscribeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnsubscribeButton.m; sourceTree = "<group>"; };
		5D61FBFC1A84238C00846EE7 /* SDLUnsubscribeButtonResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUnsubscribeButtonResponse.h; sourceTree = "<group>"; };
		5D61FBFD1A84238C00846EE7 /* SDLUnsubscribeButtonResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnsubscribeButtonResponse.m; sourceTree = "<group>"; };
		5D61FBFE1A84238C00846EE7 /* SDLUnsubscribeVehicleData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUnsubscribeVehicleData.h; sourceTree = "<group>"; };
		5D61FBFF1A84238C00846EE7 /* SDLUnsubscribeVehicleData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnsubscribeVehicleData.m; sourceTree = "<group>"; };
		5D61FC001A84238C00846EE7 /* SDLUnsubscribeVehicleDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUnsubscribeVehicleDataResponse.h; sourceTree = "<group>"; };
		5D61FC011A84238C00846EE7 /* SDLUnsubscribeVehicleDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUnsubscribeVehicleDataResponse.m; sourceTree = "<group>"; };
		5D61FC021A84238C00846EE7 /* SDLUpdateMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUpdateMode.h; sourceTree = "<group>"; };
		5D61FC031A84238C00846EE7 /* SDLUpdateMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUpdateMode.m; sourceTree = "<group>"; };
		5D61FC041A84238C00846EE7 /* SDLUpdateTurnList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUpdateTurnList.h; sourceTree = "<group>"; };
		5D61FC051A84238C00846EE7 /* SDLUpdateTurnList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUpdateTurnList.m; sourceTree = "<group>"; };
		5D61FC061A84238C00846EE7 /* SDLUpdateTurnListResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUpdateTurnListResponse.h; sourceTree = "<group>"; };
		5D61FC071A84238C00846EE7 /* SDLUpdateTurnListResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUpdateTurnListResponse.m; sourceTree = "<group>"; };
		5D61FC081A84238C00846EE7 /* SDLV1ProtocolHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLV1ProtocolHeader.h; sourceTree = "<group>"; };
		5D61FC091A84238C00846EE7 /* SDLV1ProtocolHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLV1ProtocolHeader.m; sourceTree = "<group>"; };
		5D61FC0A1A84238C00846EE7 /* SDLV1ProtocolMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLV1ProtocolMessage.h; sourceTree = "<group>"; };
		5D61FC0B1A84238C00846EE7 /* SDLV1ProtocolMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLV1ProtocolMessage.m; sourceTree = "<group>"; };
		5D61FC0C1A84238C00846EE7 /* SDLV2ProtocolHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLV2ProtocolHeader.h; sourceTree = "<group>"; };
		5D61FC0D1A84238C00846EE7 /* SDLV2ProtocolHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLV2ProtocolHeader.m; sourceTree = "<group>"; };
		5D61FC0E1A84238C00846EE7 /* SDLV2ProtocolMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLV2ProtocolMessage.h; sourceTree = "<group>"; };
		5D61FC0F1A84238C00846EE7 /* SDLV2ProtocolMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLV2ProtocolMessage.m; sourceTree = "<group>"; };
		5D61FC101A84238C00846EE7 /* SDLVehicleDataActiveStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLVehicleDataActiveStatus.h; sourceTree = "<group>"; };
		5D61FC111A84238C00846EE7 /* SDLVehicleDataActiveStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataActiveStatus.m; sourceTree = "<group>"; };
		5D61FC121A84238C00846EE7 /* SDLVehicleDataEventStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLVehicleDataEventStatus.h; sourceTree = "<group>"; };
		5D61FC131A84238C00846EE7 /* SDLVehicleDataEventStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataEventStatus.m; sourceTree = "<group>"; };
		5D61FC141A84238C00846EE7 /* SDLVehicleDataNotificationStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLVehicleDataNotificationStatus.h; sourceTree = "<group>"; };
		5D61FC151A84238C00846EE7 /* SDLVehicleDataNotificationStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataNotificationStatus.m; sourceTree = "<group>"; };
		5D61FC161A84238C00846EE7 /* SDLVehicleDataResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLVehicleDataResult.h; sourceTree = "<group>"; };
		5D61FC171A84238C00846EE7 /* SDLVehicleDataResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataResult.m; sourceTree = "<group>"; };
		5D61FC181A84238C00846EE7 /* SDLVehicleDataResultCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLVehicleDataResultCode.h; sourceTree = "<group>"; };
		5D61FC191A84238C00846EE7 /* SDLVehicleDataResultCode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataResultCode.m; sourceTree = "<group>"; };
		5D61FC1A1A84238C00846EE7 /* SDLVehicleDataStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLVehicleDataStatus.h; sourceTree = "<group>"; };
		5D61FC1B1A84238C00846EE7 /* SDLVehicleDataStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataStatus.m; sourceTree = "<group>"; };
		5D61FC1C1A84238C00846EE7 /* SDLVehicleDataType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLVehicleDataType.h; sourceTree = "<group>"; };
		5D61FC1D1A84238C00846EE7 /* SDLVehicleDataType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleDataType.m; sourceTree = "<group>"; };
		5D61FC1E1A84238C00846EE7 /* SDLVehicleType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLVehicleType.h; sourceTree = "<group>"; };
		5D61FC1F1A84238C00846EE7 /* SDLVehicleType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVehicleType.m; sourceTree = "<group>"; };
		5D61FC201A84238C00846EE7 /* SDLVRCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLVRCapabilities.h; sourceTree = "<group>"; };
		5D61FC211A84238C00846EE7 /* SDLVRCapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVRCapabilities.m; sourceTree = "<group>"; };
		5D61FC221A84238C00846EE7 /* SDLVRHelpItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLVRHelpItem.h; sourceTree = "<group>"; };
		5D61FC231A84238C00846EE7 /* SDLVRHelpItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLVRHelpItem.m; sourceTree = "<group>"; };
		5D61FC241A84238C00846EE7 /* SDLWarningLightStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLWarningLightStatus.h; sourceTree = "<group>"; };
		5D61FC251A84238C00846EE7 /* SDLWarningLightStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLWarningLightStatus.m; sourceTree = "<group>"; };
		5D61FC261A84238C00846EE7 /* SDLWiperStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLWiperStatus.h; sourceTree = "<group>"; };
		5D61FC271A84238C00846EE7 /* SDLWiperStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLWiperStatus.m; sourceTree = "<group>"; };
		5D6CC8EE1C610E660027F60A /* SDLSecurityType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSecurityType.h; sourceTree = "<group>"; };
		5D6EB4CB1BF28DC600693731 /* NSMapTable+SubscriptingSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSMapTable+SubscriptingSpec.m"; path = "DevAPISpecs/NSMapTable+SubscriptingSpec.m"; sourceTree = "<group>"; };
		5D6F7A2A1BC45BF70070BF37 /* SDLRequestHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRequestHandler.h; sourceTree = "<group>"; };
		5D6F7A2C1BC5650B0070BF37 /* SDLLifecycleConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLLifecycleConfiguration.h; sourceTree = "<group>"; };
		5D6F7A2D1BC5650B0070BF37 /* SDLLifecycleConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLifecycleConfiguration.m; sourceTree = "<group>"; };
		5D6F7A331BC5B9B60070BF37 /* SDLLockScreenViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLLockScreenViewController.h; sourceTree = "<group>"; };
		5D6F7A341BC5B9B60070BF37 /* SDLLockScreenViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLockScreenViewController.m; sourceTree = "<group>"; };
		5D6F7A3D1BC811FC0070BF37 /* SDLAssets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = SDLAssets.xcassets; path = Assets/SDLAssets.xcassets; sourceTree = "<group>"; };
		5D76E31B1D3805FF00647CFA /* SDLLockScreenManagerSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLLockScreenManagerSpec.m; path = DevAPISpecs/SDLLockScreenManagerSpec.m; sourceTree = "<group>"; };
		5D76E3201D39742300647CFA /* SDLViewControllerPresentable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLViewControllerPresentable.h; sourceTree = "<group>"; };
		5D76E3221D39767000647CFA /* SDLLockScreenPresenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLLockScreenPresenter.h; sourceTree = "<group>"; };
		5D76E3231D39767000647CFA /* SDLLockScreenPresenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLockScreenPresenter.m; sourceTree = "<group>"; };
		5D76E3271D3D0A8800647CFA /* SDLFakeViewControllerPresenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDLFakeViewControllerPresenter.h; path = DevAPISpecs/SDLFakeViewControllerPresenter.h; sourceTree = "<group>"; };
		5D76E3281D3D0A8800647CFA /* SDLFakeViewControllerPresenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLFakeViewControllerPresenter.m; path = DevAPISpecs/SDLFakeViewControllerPresenter.m; sourceTree = "<group>"; };
		5D79A0391CE36F030035797B /* SDLUploadFileOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUploadFileOperation.h; sourceTree = "<group>"; };
		5D79A03A1CE36F030035797B /* SDLUploadFileOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUploadFileOperation.m; sourceTree = "<group>"; };
		5D7F87E91CE3C1A1002DD7C4 /* SDLDeleteFileOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeleteFileOperation.h; sourceTree = "<group>"; };
		5D7F87EA1CE3C1A1002DD7C4 /* SDLDeleteFileOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeleteFileOperation.m; sourceTree = "<group>"; };
		5D7F87ED1CE3C294002DD7C4 /* SDLFileManagerConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLFileManagerConstants.h; sourceTree = "<group>"; };
		5D7F87F11CE3C29E002DD7C4 /* SDLFileWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLFileWrapper.h; sourceTree = "<group>"; };
		5D7F87F21CE3C29E002DD7C4 /* SDLFileWrapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLFileWrapper.m; sourceTree = "<group>"; };
		5D8204181BCD80BA00D0A41B /* SDLLockScreenConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLLockScreenConfiguration.h; sourceTree = "<group>"; };
		5D8204191BCD80BA00D0A41B /* SDLLockScreenConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLLockScreenConfiguration.m; sourceTree = "<group>"; };
		5D82041C1BCD8E6100D0A41B /* SDLConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLConfiguration.h; sourceTree = "<group>"; };
		5D82041D1BCD8E6100D0A41B /* SDLConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLConfiguration.m; sourceTree = "<group>"; };
		5D8204201BCEA89A00D0A41B /* SDLFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLFileManager.h; sourceTree = "<group>"; };
		5D8204211BCEA89A00D0A41B /* SDLFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLFileManager.m; sourceTree = "<group>"; };
		5D8204241BCEA8A600D0A41B /* SDLPermissionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPermissionManager.h; sourceTree = "<group>"; };
		5D8204251BCEA8A600D0A41B /* SDLPermissionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPermissionManager.m; sourceTree = "<group>"; };
		5D82042B1BCEC32F00D0A41B /* SDLFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLFile.h; sourceTree = "<group>"; };
		5D82042C1BCEC32F00D0A41B /* SDLFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLFile.m; sourceTree = "<group>"; };
		5D82042F1BD001C700D0A41B /* SDLArtwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLArtwork.h; sourceTree = "<group>"; };
		5D8204301BD001C700D0A41B /* SDLArtwork.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLArtwork.m; sourceTree = "<group>"; };
		5D850AAF1D4907C500E6E7EE /* TestLockScreenAppIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TestLockScreenAppIcon.png; sourceTree = "<group>"; };
		5D8B174D1AC9D266006A6E1C /* SDLDialNumber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDialNumber.h; sourceTree = "<group>"; };
		5D8B174E1AC9D266006A6E1C /* SDLDialNumber.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDialNumber.m; sourceTree = "<group>"; };
		5D8B17511AC9E11B006A6E1C /* SDLDialNumberResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDialNumberResponse.h; sourceTree = "<group>"; };
		5D8B17521AC9E11B006A6E1C /* SDLDialNumberResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDialNumberResponse.m; sourceTree = "<group>"; };
		5D8B17551AC9E399006A6E1C /* SDLDialNumberSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDialNumberSpec.m; sourceTree = "<group>"; };
		5D9F50721BE7DD4C00FEF399 /* testFileJSON.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = testFileJSON.json; sourceTree = "<group>"; };
		5D9F50731BE7DD4C00FEF399 /* testImageBMP.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = testImageBMP.bmp; sourceTree = "<group>"; };
		5D9F50741BE7DD4C00FEF399 /* testImageJPEG.jpeg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = testImageJPEG.jpeg; sourceTree = "<group>"; };
		5D9F50751BE7DD4C00FEF399 /* testImageJPG.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = testImageJPG.jpg; sourceTree = "<group>"; };
		5D9F50761BE7DD4C00FEF399 /* testImagePNG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = testImagePNG.png; sourceTree = "<group>"; };
		5D9F50771BE7DD4C00FEF399 /* testImageTIFF.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = testImageTIFF.tiff; sourceTree = "<group>"; };
		5D9F50801BE7E6E300FEF399 /* SDLPermissionsManagerSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLPermissionsManagerSpec.m; path = DevAPISpecs/SDLPermissionsManagerSpec.m; sourceTree = "<group>"; };
		5D9F50821BEA5C6100FEF399 /* SDLFileManagerSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLFileManagerSpec.m; path = DevAPISpecs/SDLFileManagerSpec.m; sourceTree = "<group>"; };
		5D9F50851BED412E00FEF399 /* TestConnectionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TestConnectionManager.h; path = TestUtilities/TestConnectionManager.h; sourceTree = "<group>"; };
		5D9F50861BED412E00FEF399 /* TestConnectionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TestConnectionManager.m; path = TestUtilities/TestConnectionManager.m; sourceTree = "<group>"; };
		5DA0268F1AD44EE700019F86 /* SDLDialNumberResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDialNumberResponseSpec.m; sourceTree = "<group>"; };
		5DA102A21D4122C700C15826 /* NSMutableDictionary+SafeRemove.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+SafeRemove.h"; sourceTree = "<group>"; };
		5DA102A31D4122C700C15826 /* NSMutableDictionary+SafeRemove.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+SafeRemove.m"; sourceTree = "<group>"; };
		5DA22CB31D075CF200245F5F /* Nimble.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Nimble.framework; path = sdl_ios/Carthage/Build/iOS/Nimble.framework; sourceTree = "<group>"; };
		5DA22CB41D075CF200245F5F /* OCMock.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OCMock.framework; path = sdl_ios/Carthage/Build/iOS/OCMock.framework; sourceTree = "<group>"; };
		5DA22CB51D075CF200245F5F /* OHHTTPStubs.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OHHTTPStubs.framework; path = sdl_ios/Carthage/Build/iOS/OHHTTPStubs.framework; sourceTree = "<group>"; };
		5DA22CB61D075CF200245F5F /* Quick.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Quick.framework; path = sdl_ios/Carthage/Build/iOS/Quick.framework; sourceTree = "<group>"; };
		5DA3F3521BC448060026F2D0 /* NSMapTable+Subscripting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMapTable+Subscripting.h"; sourceTree = "<group>"; };
		5DA3F3531BC448060026F2D0 /* NSMapTable+Subscripting.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMapTable+Subscripting.m"; sourceTree = "<group>"; };
		5DA3F3581BC448480026F2D0 /* SDLError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLError.h; sourceTree = "<group>"; };
		5DA3F3591BC448480026F2D0 /* SDLError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLError.m; sourceTree = "<group>"; };
		5DA3F35D1BC448590026F2D0 /* SDLNotificationConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLNotificationConstants.h; sourceTree = "<group>"; };
		5DA3F35E1BC448590026F2D0 /* SDLNotificationConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLNotificationConstants.m; sourceTree = "<group>"; };
		5DA3F36E1BC4489A0026F2D0 /* SDLManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLManager.h; sourceTree = "<group>"; };
		5DA3F36F1BC4489A0026F2D0 /* SDLManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLManager.m; sourceTree = "<group>"; };
		5DAE06721BDEC6C000F9B498 /* SDLFileSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLFileSpec.m; path = DevAPISpecs/SDLFileSpec.m; sourceTree = "<group>"; };
		5DAE06741BDEC6D600F9B498 /* SDLArtworkSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLArtworkSpec.m; path = DevAPISpecs/SDLArtworkSpec.m; sourceTree = "<group>"; };
		5DB1BCD01D243A8E002FFC37 /* SDLDeleteFileOperationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLDeleteFileOperationSpec.m; path = DevAPISpecs/SDLDeleteFileOperationSpec.m; sourceTree = "<group>"; };
		5DB1BCD11D243A8E002FFC37 /* SDLListFilesOperationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLListFilesOperationSpec.m; path = DevAPISpecs/SDLListFilesOperationSpec.m; sourceTree = "<group>"; };
		5DB1BCD21D243A8E002FFC37 /* SDLUploadFileOperationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLUploadFileOperationSpec.m; path = DevAPISpecs/SDLUploadFileOperationSpec.m; sourceTree = "<group>"; };
		5DB1BCD71D243AA6002FFC37 /* SDLPermissionFilterSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLPermissionFilterSpec.m; path = DevAPISpecs/SDLPermissionFilterSpec.m; sourceTree = "<group>"; };
		5DB1BCD91D243D85002FFC37 /* SDLStateMachineSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLStateMachineSpec.m; path = DevAPISpecs/SDLStateMachineSpec.m; sourceTree = "<group>"; };
		5DB1BCDC1D243DC3002FFC37 /* SDLLifecycleConfigurationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLLifecycleConfigurationSpec.m; path = DevAPISpecs/SDLLifecycleConfigurationSpec.m; sourceTree = "<group>"; };
		5DB1BCDE1D243DD3002FFC37 /* SDLLockScreenConfigurationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLLockScreenConfigurationSpec.m; path = DevAPISpecs/SDLLockScreenConfigurationSpec.m; sourceTree = "<group>"; };
		5DB1BCE01D243DDE002FFC37 /* SDLConfigurationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLConfigurationSpec.m; path = DevAPISpecs/SDLConfigurationSpec.m; sourceTree = "<group>"; };
		5DB1BCE51D245647002FFC37 /* TestStateMachineTarget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TestStateMachineTarget.h; path = TestUtilities/TestStateMachineTarget.h; sourceTree = "<group>"; };
		5DB1BCE61D245647002FFC37 /* TestStateMachineTarget.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TestStateMachineTarget.m; path = TestUtilities/TestStateMachineTarget.m; sourceTree = "<group>"; };
		5DB92D231AC47B2C00C15BB0 /* SDLHexUtilitySpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLHexUtilitySpec.m; path = UtilitiesSpecs/SDLHexUtilitySpec.m; sourceTree = "<group>"; };
		5DB92D251AC4836F00C15BB0 /* SDLJingleSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLJingleSpec.m; path = UtilitiesSpecs/SDLJingleSpec.m; sourceTree = "<group>"; };
		5DB92D2C1AC4A34F00C15BB0 /* SDLPrioritizedObjectCollectionSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLPrioritizedObjectCollectionSpec.m; path = "UtilitiesSpecs/Prioritized Objects/SDLPrioritizedObjectCollectionSpec.m"; sourceTree = "<group>"; };
		5DB92D2E1AC59F0000C15BB0 /* SDLObjectWithPrioritySpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLObjectWithPrioritySpec.m; path = "UtilitiesSpecs/Prioritized Objects/SDLObjectWithPrioritySpec.m"; sourceTree = "<group>"; };
		5DB92D301AC9C8BA00C15BB0 /* SDLRPCStruct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLRPCStruct.h; sourceTree = "<group>"; };
		5DB92D311AC9C8BA00C15BB0 /* SDLRPCStruct.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLRPCStruct.m; sourceTree = "<group>"; };
		5DBAE0AA1D3588AC00CE00BF /* SDLNotificationDispatcherSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLNotificationDispatcherSpec.m; path = DevAPISpecs/SDLNotificationDispatcherSpec.m; sourceTree = "<group>"; };
		5DBAE0AC1D368D1A00CE00BF /* SDLResponseDispatcherSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLResponseDispatcherSpec.m; path = DevAPISpecs/SDLResponseDispatcherSpec.m; sourceTree = "<group>"; };
		5DC978251B7A38640012C2F1 /* SDLGlobalsSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLGlobalsSpec.m; path = UtilitiesSpecs/SDLGlobalsSpec.m; sourceTree = "<group>"; };
		5DCC199E1B8221F3004FFAD9 /* SDLURLSession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLURLSession.h; sourceTree = "<group>"; };
		5DCC199F1B8221F3004FFAD9 /* SDLURLSession.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLURLSession.m; sourceTree = "<group>"; };
		5DCC19A21B822804004FFAD9 /* SDLURLRequestTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLURLRequestTask.h; sourceTree = "<group>"; };
		5DCC19A31B822804004FFAD9 /* SDLURLRequestTask.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLURLRequestTask.m; sourceTree = "<group>"; };
		5DCF76F31ACDBAD300BB647B /* SDLSendLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSendLocation.h; sourceTree = "<group>"; };
		5DCF76F41ACDBAD300BB647B /* SDLSendLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSendLocation.m; sourceTree = "<group>"; };
		5DCF76F71ACDD7CD00BB647B /* SDLSendLocationResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLSendLocationResponse.h; sourceTree = "<group>"; };
		5DCF76F81ACDD7CD00BB647B /* SDLSendLocationResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSendLocationResponse.m; sourceTree = "<group>"; };
		5DCF76FB1ACDDB4200BB647B /* SDLSendLocationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSendLocationSpec.m; sourceTree = "<group>"; };
		5DCF76FD1ACDDB5A00BB647B /* SDLSendLocationResponseSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLSendLocationResponseSpec.m; sourceTree = "<group>"; };
		5DE3729F1ACB2ED300849FAA /* SDLHMICapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLHMICapabilities.h; sourceTree = "<group>"; };
		5DE372A01ACB2ED300849FAA /* SDLHMICapabilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHMICapabilities.m; sourceTree = "<group>"; };
		5DE372A31ACB336600849FAA /* SDLHMICapabilitiesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLHMICapabilitiesSpec.m; sourceTree = "<group>"; };
		5DE372A51ACC35B400849FAA /* SDLDebugToolConsole.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDebugToolConsole.h; sourceTree = "<group>"; };
		5DEE55BF1B8509CB004F0D0F /* SDLURLRequestTaskSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLURLRequestTaskSpec.m; path = "UtilitiesSpecs/HTTP Connection/SDLURLRequestTaskSpec.m"; sourceTree = "<group>"; };
		5DF2BB9C1B94E38A00CE5994 /* SDLURLSessionSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLURLSessionSpec.m; path = "UtilitiesSpecs/HTTP Connection/SDLURLSessionSpec.m"; sourceTree = "<group>"; };
		5DFFB9141BD7C89700DB3F04 /* SDLConnectionManagerType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLConnectionManagerType.h; sourceTree = "<group>"; };
		DA4353DE1D271FD10099B8C4 /* CGPointUtilSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CGPointUtilSpec.m; path = UtilitiesSpecs/Touches/CGPointUtilSpec.m; sourceTree = "<group>"; };
		DA4353E21D2720A30099B8C4 /* SDLPinchGestureSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLPinchGestureSpec.m; path = UtilitiesSpecs/Touches/SDLPinchGestureSpec.m; sourceTree = "<group>"; };
		DA4353E61D2721680099B8C4 /* DispatchTimerSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DispatchTimerSpec.m; path = UtilitiesSpecs/Touches/DispatchTimerSpec.m; sourceTree = "<group>"; };
		DA4353E71D2721680099B8C4 /* SDLTouchManagerSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLTouchManagerSpec.m; path = UtilitiesSpecs/Touches/SDLTouchManagerSpec.m; sourceTree = "<group>"; };
		DA4353E81D2721680099B8C4 /* SDLTouchSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLTouchSpec.m; path = UtilitiesSpecs/Touches/SDLTouchSpec.m; sourceTree = "<group>"; };
		DA7515981D95FAA000F29323 /* lock_arrow_down_black.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = lock_arrow_down_black.png; sourceTree = "<group>"; };
		DA7515991D95FAA000F29323 /* lock_arrow_down_black@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "lock_arrow_down_black@2x.png"; sourceTree = "<group>"; };
		DA75159A1D95FAA000F29323 /* lock_arrow_down_black@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "lock_arrow_down_black@3x.png"; sourceTree = "<group>"; };
		DA75159C1D95FAA000F29323 /* lock_arrow_down_white.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = lock_arrow_down_white.png; sourceTree = "<group>"; };
		DA75159D1D95FAA000F29323 /* lock_arrow_down_white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "lock_arrow_down_white@2x.png"; sourceTree = "<group>"; };
		DA75159E1D95FAA000F29323 /* lock_arrow_down_white@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "lock_arrow_down_white@3x.png"; sourceTree = "<group>"; };
		DA7515A11D95FAA000F29323 /* lock_arrow_up_black.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = lock_arrow_up_black.png; sourceTree = "<group>"; };
		DA7515A21D95FAA000F29323 /* lock_arrow_up_black@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "lock_arrow_up_black@2x.png"; sourceTree = "<group>"; };
		DA7515A31D95FAA000F29323 /* lock_arrow_up_black@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "lock_arrow_up_black@3x.png"; sourceTree = "<group>"; };
		DA7515A51D95FAA000F29323 /* lock_arrow_up_white.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = lock_arrow_up_white.png; sourceTree = "<group>"; };
		DA7515A61D95FAA000F29323 /* lock_arrow_up_white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "lock_arrow_up_white@2x.png"; sourceTree = "<group>"; };
		DA7515A71D95FAA000F29323 /* lock_arrow_up_white@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "lock_arrow_up_white@3x.png"; sourceTree = "<group>"; };
		DA7515AA1D95FAA000F29323 /* sdl_logo_black.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sdl_logo_black.png; sourceTree = "<group>"; };
		DA7515AB1D95FAA000F29323 /* sdl_logo_black@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sdl_logo_black@2x.png"; sourceTree = "<group>"; };
		DA7515AC1D95FAA000F29323 /* sdl_logo_black@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sdl_logo_black@3x.png"; sourceTree = "<group>"; };
		DA7515AE1D95FAA000F29323 /* sdl_logo_white.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sdl_logo_white.png; sourceTree = "<group>"; };
		DA7515AF1D95FAA000F29323 /* sdl_logo_white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sdl_logo_white@2x.png"; sourceTree = "<group>"; };
		DA7515B01D95FAA000F29323 /* sdl_logo_white@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sdl_logo_white@3x.png"; sourceTree = "<group>"; };
		DA96C0651D4D4F730022F520 /* SDLAppInfoSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLAppInfoSpec.m; sourceTree = "<group>"; };
		DA9F7E611DCBFAC800ACAE48 /* SDLDateTime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDateTime.h; sourceTree = "<group>"; };
		DA9F7E621DCBFAC800ACAE48 /* SDLDateTime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDateTime.m; sourceTree = "<group>"; };
		DA9F7E651DCBFAD400ACAE48 /* SDLOasisAddress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLOasisAddress.h; sourceTree = "<group>"; };
		DA9F7E661DCBFAD400ACAE48 /* SDLOasisAddress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOasisAddress.m; sourceTree = "<group>"; };
		DA9F7E691DCBFB0700ACAE48 /* SDLDeliveryMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLDeliveryMode.h; sourceTree = "<group>"; };
		DA9F7E6A1DCBFB0700ACAE48 /* SDLDeliveryMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeliveryMode.m; sourceTree = "<group>"; };
		DA9F7EB11DCC084300ACAE48 /* SDLDeliveryModeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDeliveryModeSpec.m; sourceTree = "<group>"; };
		DA9F7EB31DCC086400ACAE48 /* SDLDateTimeSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLDateTimeSpec.m; sourceTree = "<group>"; };
		DA9F7EB51DCC086A00ACAE48 /* SDLOasisAddressSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLOasisAddressSpec.m; sourceTree = "<group>"; };
		DAC572551D1067270004288B /* SDLTouchManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTouchManager.h; sourceTree = "<group>"; };
		DAC572561D1067270004288B /* SDLTouchManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTouchManager.m; sourceTree = "<group>"; };
		DAC572591D10B81E0004288B /* SDLTouch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTouch.m; sourceTree = "<group>"; };
		DAC5725A1D10B81E0004288B /* SDLTouch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTouch.h; sourceTree = "<group>"; };
		DAC5725F1D10BD690004288B /* SDLTouchManagerDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDLTouchManagerDelegate.h; sourceTree = "<group>"; };
		DAC572601D10C5020004288B /* SDLPinchGesture.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLPinchGesture.m; sourceTree = "<group>"; };
		DAC572611D10C5020004288B /* SDLPinchGesture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLPinchGesture.h; sourceTree = "<group>"; };
		DAC572641D10C5640004288B /* CGPoint_Util.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CGPoint_Util.m; sourceTree = "<group>"; };
		DAC572651D10C5640004288B /* CGPoint_Util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CGPoint_Util.h; sourceTree = "<group>"; };
		DAC572681D10D5FC0004288B /* dispatch_timer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = dispatch_timer.m; sourceTree = "<group>"; };
		DAC572691D10D5FC0004288B /* dispatch_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dispatch_timer.h; sourceTree = "<group>"; };
		E9C32B841AB20B4300F283AF /* NSThread+ThreadIndex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSThread+ThreadIndex.h"; sourceTree = "<group>"; };
		E9C32B851AB20B4300F283AF /* NSThread+ThreadIndex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSThread+ThreadIndex.m"; sourceTree = "<group>"; };
		E9C32B891AB20BA200F283AF /* SDLIAPSession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLIAPSession.h; sourceTree = "<group>"; };
		E9C32B8A1AB20BA200F283AF /* SDLIAPSession.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLIAPSession.m; sourceTree = "<group>"; };
		E9C32B8B1AB20BA200F283AF /* SDLIAPSessionDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLIAPSessionDelegate.h; sourceTree = "<group>"; };
		E9C32B8C1AB20BA200F283AF /* SDLStreamDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLStreamDelegate.h; sourceTree = "<group>"; };
		E9C32B8D1AB20BA200F283AF /* SDLStreamDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLStreamDelegate.m; sourceTree = "<group>"; };
		E9C32B8E1AB20BA200F283AF /* SDLTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLTimer.h; sourceTree = "<group>"; };
		E9C32B8F1AB20BA200F283AF /* SDLTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLTimer.m; sourceTree = "<group>"; };
		E9C32B981AB20C5900F283AF /* EAAccessory+SDLProtocols.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "EAAccessory+SDLProtocols.h"; sourceTree = "<group>"; };
		E9C32B991AB20C5900F283AF /* EAAccessory+SDLProtocols.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "EAAccessory+SDLProtocols.m"; sourceTree = "<group>"; };
		E9C32B9A1AB20C5900F283AF /* EAAccessoryManager+SDLProtocols.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "EAAccessoryManager+SDLProtocols.h"; sourceTree = "<group>"; };
		E9C32B9B1AB20C5900F283AF /* EAAccessoryManager+SDLProtocols.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "EAAccessoryManager+SDLProtocols.m"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		5D4019AC1A76EC350006B0C2 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				5D61FA331A84237100846EE7 /* SmartDeviceLink.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		5D61FA181A84237100846EE7 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		5D61FA231A84237100846EE7 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				167ED93C1A9BCB8A00797BE5 /* SmartDeviceLink.framework in Frameworks */,
				5DA22CB91D075CF200245F5F /* OHHTTPStubs.framework in Frameworks */,
				5DA22CB81D075CF200245F5F /* OCMock.framework in Frameworks */,
				5DA22CBA1D075CF200245F5F /* Quick.framework in Frameworks */,
				5D5DBF081D48E39C00D4F914 /* FBSnapshotTestCase.framework in Frameworks */,
				5DA22CB71D075CF200245F5F /* Nimble.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		162E81E01A9BDE8A00906325 /* RPCSpecs */ = {
			isa = PBXGroup;
			children = (
				162E81E11A9BDE8A00906325 /* EnumSpecs */,
				162E82261A9BDE8A00906325 /* FactorySpecs */,
				162E82281A9BDE8A00906325 /* NotificationSpecs */,
				162E823B1A9BDE8A00906325 /* PayloadSpecs */,
				162E823D1A9BDE8A00906325 /* RequestSpecs */,
				162E82651A9BDE8A00906325 /* ResponseSpecs */,
				162E828E1A9BDE8A00906325 /* StructSpecs */,
				162E82B71A9BDE8A00906325 /* SuperclassSpecs */,
			);
			path = RPCSpecs;
			sourceTree = "<group>";
		};
		162E81E11A9BDE8A00906325 /* EnumSpecs */ = {
			isa = PBXGroup;
			children = (
				162E81E21A9BDE8A00906325 /* SDLAmbientLightStatusSpec.m */,
				162E81E31A9BDE8A00906325 /* SDLAppHMITypeSpec.m */,
				162E81E41A9BDE8A00906325 /* SDLAppInterfaceUnregisteredReasonSpec.m */,
				162E81E51A9BDE8A00906325 /* SDLAudioStreamingStateSpec.m */,
				162E81E61A9BDE8A00906325 /* SDLAudioTypeSpec.m */,
				162E81E71A9BDE8A00906325 /* SDLBitsPerSampleSpec.m */,
				162E81E81A9BDE8A00906325 /* SDLButtonEventModeSpec.m */,
				162E81E91A9BDE8A00906325 /* SDLButtonNameSpec.m */,
				162E81EA1A9BDE8A00906325 /* SDLButtonPressModeSpec.m */,
				162E81EB1A9BDE8A00906325 /* SDLCarModeStatusSpec.m */,
				162E81EC1A9BDE8A00906325 /* SDLCharacterSetSpec.m */,
				162E81ED1A9BDE8A00906325 /* SDLCompassDirectionSpec.m */,
				162E81EE1A9BDE8A00906325 /* SDLComponentVolumeStatusSpec.m */,
				DA9F7EB11DCC084300ACAE48 /* SDLDeliveryModeSpec.m */,
				162E81EF1A9BDE8A00906325 /* SDLDeviceLevelStatusSpec.m */,
				162E81F01A9BDE8A00906325 /* SDLDimensionSpec.m */,
				162E81F11A9BDE8A00906325 /* SDLDisplayTypeSpec.m */,
				162E81F21A9BDE8A00906325 /* SDLDriverDistractionStateSpec.m */,
				162E81F31A9BDE8A00906325 /* SDLECallConfirmationStatusSpec.m */,
				162E81F41A9BDE8A00906325 /* SDLEmergencyEventTypeSpec.m */,
				162E81F51A9BDE8A00906325 /* SDLFileTypeSpec.m */,
				162E81F61A9BDE8A00906325 /* SDLFuelCutoffStatusSpec.m */,
				162E81F71A9BDE8A00906325 /* SDLGlobalProperySpec.m */,
				162E81F81A9BDE8A00906325 /* SDLHMILevelSpec.m */,
				162E81F91A9BDE8A00906325 /* SDLHMIZoneCapabilitiesSpec.m */,
				162E81FA1A9BDE8A00906325 /* SDLIgnitionStableStatusSpec.m */,
				162E81FB1A9BDE8A00906325 /* SDLIgnitionStatusSpec.m */,
				162E81FC1A9BDE8A00906325 /* SDLImageFieldNameSpec.m */,
				162E81FD1A9BDE8A00906325 /* SDLImageTypeSpec.m */,
				162E81FE1A9BDE8A00906325 /* SDLInteractionModeSpec.m */,
				162E81FF1A9BDE8A00906325 /* SDLKeyboardEventSpec.m */,
				162E82001A9BDE8A00906325 /* SDLKeyboardLayoutSpec.m */,
				162E82011A9BDE8A00906325 /* SDLKeypressModeSpec.m */,
				162E82021A9BDE8A00906325 /* SDLLanguageSpec.m */,
				162E82031A9BDE8A00906325 /* SDLLayoutModeSpec.m */,
				162E82041A9BDE8A00906325 /* SDLLockScreenStatusSpec.m */,
				162E82051A9BDE8A00906325 /* SDLMaintenanceModeStatusSpec.m */,
				162E82061A9BDE8A00906325 /* SDLMediaClockFormatSpec.m */,
				162E82071A9BDE8A00906325 /* SDLPermissionStatusSpec.m */,
				162E82081A9BDE8A00906325 /* SDLPowerModeQualificationStatusSpec.m */,
				162E82091A9BDE8A00906325 /* SDLPowerModeStatusSpec.m */,
				162E820A1A9BDE8A00906325 /* SDLPredefinedLayoutSpec.m */,
				162E820B1A9BDE8A00906325 /* SDLPrerecordedSpeechSpec.m */,
				162E820C1A9BDE8A00906325 /* SDLPrimaryAudioSource.m */,
				162E820D1A9BDE8A00906325 /* SDLPRNDLSpec.m */,
				162E820E1A9BDE8A00906325 /* SDLRequestTypeSpec.m */,
				162E820F1A9BDE8A00906325 /* SDLResultSpec.m */,
				162E82111A9BDE8A00906325 /* SDLSamplingRateSpec.m */,
				162E82121A9BDE8A00906325 /* SDLSoftButtonTypeSpec.m */,
				162E82131A9BDE8A00906325 /* SDLSpeechCapabilitiesSpec.m */,
				162E82141A9BDE8A00906325 /* SDLSystemAction.m */,
				162E82151A9BDE8A00906325 /* SDLSystemContextSpec.m */,
				162E82161A9BDE8A00906325 /* SDLTBTStateSpec.m */,
				162E82171A9BDE8A00906325 /* SDLTextAlignmentSpec.m */,
				162E82181A9BDE8A00906325 /* SDLTextFieldNameSpec.m */,
				162E82191A9BDE8A00906325 /* SDLTimerModeSpec.m */,
				162E821A1A9BDE8A00906325 /* SDLTouchTypeSpec.m */,
				162E821B1A9BDE8A00906325 /* SDLTriggerSource.m */,
				162E821C1A9BDE8A00906325 /* SDLUpdateModeSpec.m */,
				162E821D1A9BDE8A00906325 /* SDLVehicleDataActiveStatusSpec.m */,
				162E821E1A9BDE8A00906325 /* SDLVehicleDataEventStatusSpec.m */,
				162E821F1A9BDE8A00906325 /* SDLVehicleDataNotificationStatusSpec.m */,
				162E82201A9BDE8A00906325 /* SDLVehicleDataResultCodeSpec.m */,
				162E82211A9BDE8A00906325 /* SDLVehicleDataStatusSpec.m */,
				162E82221A9BDE8A00906325 /* SDLVehicleDataTypeSpec.m */,
				162E82231A9BDE8A00906325 /* SDLVrCapabilitiesSpec.m */,
				162E82241A9BDE8A00906325 /* SDLWarningLightStatusSpec.m */,
				162E82251A9BDE8A00906325 /* SDLWiperStatusSpec.m */,
			);
			path = EnumSpecs;
			sourceTree = "<group>";
		};
		162E82261A9BDE8A00906325 /* FactorySpecs */ = {
			isa = PBXGroup;
			children = (
				162E82271A9BDE8A00906325 /* SDLRPCRequestFactorySpec.m */,
			);
			path = FactorySpecs;
			sourceTree = "<group>";
		};
		162E82281A9BDE8A00906325 /* NotificationSpecs */ = {
			isa = PBXGroup;
			children = (
				162E82291A9BDE8A00906325 /* SDLOnAppInterfaceUnregisteredSpec.m */,
				162E822A1A9BDE8A00906325 /* SDLOnAudioPassThruSpec.m */,
				162E822B1A9BDE8A00906325 /* SDLOnButtonEventSpec.m */,
				162E822C1A9BDE8A00906325 /* SDLOnButtonPressSpec.m */,
				162E822D1A9BDE8A00906325 /* SDLOnCommandSpec.m */,
				162E822E1A9BDE8A00906325 /* SDLOnDriverDistractionSpec.m */,
				162E822F1A9BDE8A00906325 /* SDLOnEncodedSyncPDataSpec.m */,
				162E82301A9BDE8A00906325 /* SDLOnHashChangeSpec.m */,
				162E82311A9BDE8A00906325 /* SDLOnHMIStatusSpec.m */,
				162E82321A9BDE8A00906325 /* SDLOnKeyboardInputSpec.m */,
				162E82331A9BDE8A00906325 /* SDLOnLanguageChangeSpec.m */,
				162E82341A9BDE8A00906325 /* SDLOnLockScreenStatusSpec.m */,
				162E82351A9BDE8A00906325 /* SDLOnPermissionsChangeSpec.m */,
				162E82361A9BDE8A00906325 /* SDLOnSyncPDataSpec.m */,
				162E82371A9BDE8A00906325 /* SDLOnSystemRequestSpec.m */,
				162E82381A9BDE8A00906325 /* SDLOnTBTClientStateSpec.m */,
				162E82391A9BDE8A00906325 /* SDLOnTouchEventSpec.m */,
				162E823A1A9BDE8A00906325 /* SDLOnVehicleDataSpec.m */,
			);
			path = NotificationSpecs;
			sourceTree = "<group>";
		};
		162E823B1A9BDE8A00906325 /* PayloadSpecs */ = {
			isa = PBXGroup;
			children = (
				162E823C1A9BDE8A00906325 /* SDLRPCPayloadSpec.m */,
			);
			path = PayloadSpecs;
			sourceTree = "<group>";
		};
		162E823D1A9BDE8A00906325 /* RequestSpecs */ = {
			isa = PBXGroup;
			children = (
				162E823E1A9BDE8A00906325 /* SDLAddCommandSpec.m */,
				162E823F1A9BDE8A00906325 /* SDLAddSubMenuSpec.m */,
				162E82401A9BDE8A00906325 /* SDLAlertManeuverSpec.m */,
				162E82411A9BDE8A00906325 /* SDLAlertSpec.m */,
				162E82421A9BDE8A00906325 /* SDLChangeRegistrationSpec.m */,
				162E82431A9BDE8A00906325 /* SDLCreateInteractionChoiceSetSpec.m */,
				162E82441A9BDE8A00906325 /* SDLDeleteCommandSpec.m */,
				162E82451A9BDE8A00906325 /* SDLDeleteFileSpec.m */,
				162E82461A9BDE8A00906325 /* SDLDeleteInteractionChoiceSetSpec.m */,
				162E82471A9BDE8A00906325 /* SDLDeleteSubMenuSpec.m */,
				162E82481A9BDE8A00906325 /* SDLDiagnosticMessageSpec.m */,
				5D8B17551AC9E399006A6E1C /* SDLDialNumberSpec.m */,
				162E82491A9BDE8A00906325 /* SDLEncodedSyncPDataSpec.m */,
				162E824A1A9BDE8A00906325 /* SDLEndAudioPassThruSpec.m */,
				162E824B1A9BDE8A00906325 /* SDLGetDTCsSpec.m */,
				162E824C1A9BDE8A00906325 /* SDLGetVehicleDataSpec.m */,
				162E824D1A9BDE8A00906325 /* SDLListFilesSpec.m */,
				162E824E1A9BDE8A00906325 /* SDLPerformAudioPassThruSpec.m */,
				162E824F1A9BDE8A00906325 /* SDLPerformInteractionSpec.m */,
				162E82501A9BDE8A00906325 /* SDLPutFileSpec.m */,
				162E82511A9BDE8A00906325 /* SDLReadDIDSpec.m */,
				162E82521A9BDE8A00906325 /* SDLRegisterAppInterfaceSpec.m */,
				162E82531A9BDE8A00906325 /* SDLResetGlobalPropertiesSpec.m */,
				162E82541A9BDE8A00906325 /* SDLScrollableMessageSpec.m */,
				5DCF76FB1ACDDB4200BB647B /* SDLSendLocationSpec.m */,
				162E82551A9BDE8A00906325 /* SDLSetAppIconSpec.m */,
				162E82561A9BDE8A00906325 /* SDLSetDisplayLayoutSpec.m */,
				162E82571A9BDE8A00906325 /* SDLSetGlobalPropertiesSpec.m */,
				162E82581A9BDE8A00906325 /* SDLSetMediaClockTimerSpec.m */,
				162E82591A9BDE8A00906325 /* SDLShowConstantTBTSpec.m */,
				162E825A1A9BDE8A00906325 /* SDLShowSpec.m */,
				162E825B1A9BDE8A00906325 /* SDLSliderSpec.m */,
				162E825C1A9BDE8A00906325 /* SDLSpeakSpec.m */,
				162E825D1A9BDE8A00906325 /* SDLSubscribeButtonSpec.m */,
				162E825E1A9BDE8A00906325 /* SDLSubscribeVehicleDataSpec.m */,
				162E825F1A9BDE8A00906325 /* SDLSyncPDataSpec.m */,
				162E82601A9BDE8A00906325 /* SDLSystemRequestSpec.m */,
				162E82611A9BDE8A00906325 /* SDLUnregisterAppInterfaceSpec.m */,
				162E82621A9BDE8A00906325 /* SDLUnsubscribeButtonSpec.m */,
				162E82631A9BDE8A00906325 /* SDLUnsubscribeVehicleDataSpec.m */,
				162E82641A9BDE8A00906325 /* SDLUpdateTurnListSpec.m */,
			);
			path = RequestSpecs;
			sourceTree = "<group>";
		};
		162E82651A9BDE8A00906325 /* ResponseSpecs */ = {
			isa = PBXGroup;
			children = (
				162E82661A9BDE8A00906325 /* SDLAddCommandResponseSpec.m */,
				162E82671A9BDE8A00906325 /* SDLAddSubMenuResponseSpec.m */,
				162E82681A9BDE8A00906325 /* SDLAlertManeuverResponseSpec.m */,
				162E82691A9BDE8A00906325 /* SDLAlertResponseSpec.m */,
				162E826A1A9BDE8A00906325 /* SDLChangeRegistrationResponseSpec.m */,
				162E826B1A9BDE8A00906325 /* SDLCreateInteractionChoiceSetResponseSpec.m */,
				162E826C1A9BDE8A00906325 /* SDLDeleteCommandResponseSpec.m */,
				162E826D1A9BDE8A00906325 /* SDLDeleteFileResponseSpec.m */,
				162E826E1A9BDE8A00906325 /* SDLDeleteInteractionChoiceSetResponseSpec.m */,
				162E826F1A9BDE8A00906325 /* SDLDeleteSubMenuResponseSpec.m */,
				162E82701A9BDE8A00906325 /* SDLDiagnosticMessageResponseSpec.m */,
				5DA0268F1AD44EE700019F86 /* SDLDialNumberResponseSpec.m */,
				162E82711A9BDE8A00906325 /* SDLEncodedSyncPDataResponseSpec.m */,
				162E82721A9BDE8A00906325 /* SDLEndAudioPassThruResponseSpec.m */,
				162E82731A9BDE8A00906325 /* SDLGenericResponseSpec.m */,
				162E82741A9BDE8A00906325 /* SDLGetDTCsResponseSpec.m */,
				162E82751A9BDE8A00906325 /* SDLGetVehicleDataResponseSpec.m */,
				162E82761A9BDE8A00906325 /* SDLListFilesResponseSpec.m */,
				162E82771A9BDE8A00906325 /* SDLPerformAudioPassThruResponseSpec.m */,
				162E82781A9BDE8A00906325 /* SDLPerformInteractionResponseSpec.m */,
				162E82791A9BDE8A00906325 /* SDLPutFileResponseSpec.m */,
				162E827A1A9BDE8A00906325 /* SDLReadDIDResponseSpec.m */,
				162E827B1A9BDE8A00906325 /* SDLRegisterAppInterfaceResponseSpec.m */,
				162E827C1A9BDE8A00906325 /* SDLResetGlobalPropertiesResponseSpec.m */,
				162E827D1A9BDE8A00906325 /* SDLScrollableMessageResponseSpec.m */,
				5DCF76FD1ACDDB5A00BB647B /* SDLSendLocationResponseSpec.m */,
				162E827E1A9BDE8A00906325 /* SDLSetAppIconResponseSpec.m */,
				162E827F1A9BDE8A00906325 /* SDLSetDisplayLayoutResponseSpec.m */,
				162E82801A9BDE8A00906325 /* SDLSetGlobalPropertiesResponseSpec.m */,
				162E82811A9BDE8A00906325 /* SDLSetMediaClockTimerResponseSpec.m */,
				162E82821A9BDE8A00906325 /* SDLShowConstantTBTResponseSpec.m */,
				162E82831A9BDE8A00906325 /* SDLShowResponseSpec.m */,
				162E82841A9BDE8A00906325 /* SDLSliderResponseSpec.m */,
				162E82851A9BDE8A00906325 /* SDLSpeakResponseSpec.m */,
				162E82861A9BDE8A00906325 /* SDLSubscribeButtonResponseSpec.m */,
				162E82871A9BDE8A00906325 /* SDLSubscribeVehicleDataResponseSpec.m */,
				162E82881A9BDE8A00906325 /* SDLSyncPDataResponseSpec.m */,
				162E82891A9BDE8A00906325 /* SDLSystemRequestResponseSpec.m */,
				162E828A1A9BDE8A00906325 /* SDLUnregisterAppInterfaceResponseSpec.m */,
				162E828B1A9BDE8A00906325 /* SDLUnsubscribeButtonResponseSpec.m */,
				162E828C1A9BDE8A00906325 /* SDLUnsubscribeVehicleDataResponseSpec.m */,
				162E828D1A9BDE8A00906325 /* SDLUpdateTurnListResponseSpec.m */,
			);
			path = ResponseSpecs;
			sourceTree = "<group>";
		};
		162E828E1A9BDE8A00906325 /* StructSpecs */ = {
			isa = PBXGroup;
			children = (
				162E828F1A9BDE8A00906325 /* SDLAirbagStatusSpec.m */,
				DA96C0651D4D4F730022F520 /* SDLAppInfoSpec.m */,
				162E82901A9BDE8A00906325 /* SDLAudioPassThruCapabilitiesSpec.m */,
				162E82911A9BDE8A00906325 /* SDLBeltStatusSpec.m */,
				162E82921A9BDE8A00906325 /* SDLBodyInformationSpec.m */,
				162E82931A9BDE8A00906325 /* SDLButtonCapabilitiesSpec.m */,
				162E82941A9BDE8A00906325 /* SDLChoiceSpec.m */,
				162E82951A9BDE8A00906325 /* SDLClusterModeStatusSpec.m */,
				DA9F7EB31DCC086400ACAE48 /* SDLDateTimeSpec.m */,
				162E82961A9BDE8A00906325 /* SDLDeviceInfoSpec.m */,
				162E82971A9BDE8A00906325 /* SDLDeviceStatusSpec.m */,
				162E82981A9BDE8A00906325 /* SDLDIDResult.m */,
				162E82991A9BDE8A00906325 /* SDLDisplayCapabilitiesSpec.m */,
				162E829A1A9BDE8A00906325 /* SDLECallInfoSpec.m */,
				162E829B1A9BDE8A00906325 /* SDLEmergencyEventSpec.m */,
				162E829C1A9BDE8A00906325 /* SDLGPSDataSpec.m */,
				162E829D1A9BDE8A00906325 /* SDLHeadLampStatusSpec.m */,
				5DE372A31ACB336600849FAA /* SDLHMICapabilitiesSpec.m */,
				162E829E1A9BDE8A00906325 /* SDLHMIPermissionsSpec.m */,
				162E829F1A9BDE8A00906325 /* SDLImageFieldSpec.m */,
				162E82A01A9BDE8A00906325 /* SDLImageSpec.m */,
				162E82A11A9BDE8A00906325 /* SDLKeyboardPropertiesSpec.m */,
				162E82A21A9BDE8A00906325 /* SDLMenuParamsSpec.m */,
				162E82A31A9BDE8A00906325 /* SDLMyKeySpec.m */,
				DA9F7EB51DCC086A00ACAE48 /* SDLOasisAddressSpec.m */,
				162E82A41A9BDE8A00906325 /* SDLParameterPermissionsSpec.m */,
				162E82A51A9BDE8A00906325 /* SDLPermissionItemSpec.m */,
				162E82A61A9BDE8A00906325 /* SDLPresetBankCapabilitiesSpec.m */,
				162E82A71A9BDE8A00906325 /* SDLScreenParamsSpec.m */,
				162E82A81A9BDE8A00906325 /* SDLSingleTireStatusSpec.m */,
				162E82A91A9BDE8A00906325 /* SDLSoftButtonCapabilitiesSpec.m */,
				162E82AA1A9BDE8A00906325 /* SDLSoftButtonSpec.m */,
				162E82AB1A9BDE8A00906325 /* SDLStartTimeSpec.m */,
				162E82AC1A9BDE8A00906325 /* SDLSyncMsgVersionSpec.m */,
				162E82AD1A9BDE8A00906325 /* SDLTextFieldSpec.m */,
				162E82AE1A9BDE8A00906325 /* SDLTireStatusSpec.m */,
				162E82AF1A9BDE8A00906325 /* SDLTouchCoordSpec.m */,
				162E82B01A9BDE8A00906325 /* SDLTouchEventCapabilitiesSpec.m */,
				162E82B11A9BDE8A00906325 /* SDLTouchEventSpec.m */,
				162E82B21A9BDE8A00906325 /* SDLTTSChunkSpec.m */,
				162E82B31A9BDE8A00906325 /* SDLTurnSpec.m */,
				162E82B41A9BDE8A00906325 /* SDLVehicleDataResultSpec.m */,
				162E82B51A9BDE8A00906325 /* SDLVehicleTypeSpec.m */,
				162E82B61A9BDE8A00906325 /* SDLVrHelpItemSpec.m */,
			);
			path = StructSpecs;
			sourceTree = "<group>";
		};
		162E82B71A9BDE8A00906325 /* SuperclassSpecs */ = {
			isa = PBXGroup;
			children = (
				162E82B81A9BDE8A00906325 /* SDLEnumSpec.m */,
				162E82B91A9BDE8A00906325 /* SDLRPCMessageSpec.m */,
				162E82BA1A9BDE8A00906325 /* SDLRPCNotificationSpec.m */,
				162E82BB1A9BDE8A00906325 /* SDLRPCRequestSpec.m */,
				162E82BC1A9BDE8A00906325 /* SDLRPCResponseSpec.m */,
				162E82BD1A9BDE8A00906325 /* SDLRPCStructSpec.m */,
			);
			path = SuperclassSpecs;
			sourceTree = "<group>";
		};
		167ED9231A9BB86300797BE5 /* Libraries */ = {
			isa = PBXGroup;
			children = (
				5D5DBF071D48E39C00D4F914 /* FBSnapshotTestCase.framework */,
				5DA22CB31D075CF200245F5F /* Nimble.framework */,
				5DA22CB41D075CF200245F5F /* OCMock.framework */,
				5DA22CB51D075CF200245F5F /* OHHTTPStubs.framework */,
				5DA22CB61D075CF200245F5F /* Quick.framework */,
			);
			name = Libraries;
			path = ../..;
			sourceTree = "<group>";
		};
		1680B1041A9CD7AD00DBD79E /* ProtocolSpecs */ = {
			isa = PBXGroup;
			children = (
				1680B1051A9CD7AD00DBD79E /* HeaderSpecs */,
				1680B1091A9CD7AD00DBD79E /* MessageSpecs */,
				1680B10E1A9CD7AD00DBD79E /* SDLAbstractProtocolSpec.m */,
				1680B10F1A9CD7AD00DBD79E /* SDLFunctionIDSpec.m */,
				1680B10B1A9CD7AD00DBD79E /* SDLProtocolSpec.m */,
				1680B1101A9CD7AD00DBD79E /* SDLProtocolMessageAssemblerSpec.m */,
				1680B1111A9CD7AD00DBD79E /* SDLProtocolMessageDisassemblerSpec.m */,
				1680B1121A9CD7AD00DBD79E /* SDLProtocolReceivedMessageRouterSpec.m */,
			);
			path = ProtocolSpecs;
			sourceTree = "<group>";
		};
		1680B1051A9CD7AD00DBD79E /* HeaderSpecs */ = {
			isa = PBXGroup;
			children = (
				1680B1061A9CD7AD00DBD79E /* SDLProtocolHeaderSpec.m */,
				1680B1071A9CD7AD00DBD79E /* SDLV1ProtocolHeaderSpec.m */,
				1680B1081A9CD7AD00DBD79E /* SDLV2ProtocolHeaderSpec.m */,
			);
			path = HeaderSpecs;
			sourceTree = "<group>";
		};
		1680B1091A9CD7AD00DBD79E /* MessageSpecs */ = {
			isa = PBXGroup;
			children = (
				1680B10A1A9CD7AD00DBD79E /* SDLProtocolMessageSpec.m */,
				1680B10C1A9CD7AD00DBD79E /* SDLV1ProtocolMessageSpec.m */,
				1680B10D1A9CD7AD00DBD79E /* SDLV2ProtocolMessageSpec.m */,
			);
			path = MessageSpecs;
			sourceTree = "<group>";
		};
		5D0218E71A8D611600D1BF62 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		5D0218EB1A8E795700D1BF62 /* UI */ = {
			isa = PBXGroup;
			children = (
				5D0218EC1A8E796100D1BF62 /* Connection */,
			);
			name = UI;
			sourceTree = "<group>";
		};
		5D0218EC1A8E796100D1BF62 /* Connection */ = {
			isa = PBXGroup;
			children = (
				5D4832991A8EA27200252386 /* Storyboards */,
				5D4832A21A94F8F100252386 /* Transition */,
				5D0218FA1A8E7E1700D1BF62 /* ConnectionContainerViewController.h */,
				5D0218FB1A8E7E1700D1BF62 /* ConnectionContainerViewController.m */,
				5D0218F41A8E79C400D1BF62 /* ConnectionTCPTableViewController.h */,
				5D0218F51A8E79C400D1BF62 /* ConnectionTCPTableViewController.m */,
				5D0218FD1A8E9E0D00D1BF62 /* ConnectionIAPTableViewController.h */,
				5D0218FE1A8E9E0D00D1BF62 /* ConnectionIAPTableViewController.m */,
			);
			name = Connection;
			sourceTree = "<group>";
		};
		5D1654541D3E753100554D93 /* Lifecycle */ = {
			isa = PBXGroup;
			children = (
				5D1654551D3E754F00554D93 /* SDLLifecycleManagerSpec.m */,
			);
			name = Lifecycle;
			sourceTree = "<group>";
		};
		5D1654571D3E79CA00554D93 /* Lifecycle */ = {
			isa = PBXGroup;
			children = (
				5D1654581D3E7A1600554D93 /* SDLLifecycleManager.h */,
				5D1654591D3E7A1600554D93 /* SDLLifecycleManager.m */,
			);
			name = Lifecycle;
			sourceTree = "<group>";
		};
		5D3E48771D6F3DA40000BFEF /* Superclass Operation */ = {
			isa = PBXGroup;
			children = (
				5D3E48731D6F3B330000BFEF /* SDLAsynchronousOperation.h */,
				5D3E48741D6F3B330000BFEF /* SDLAsynchronousOperation.m */,
			);
			name = "Superclass Operation";
			sourceTree = "<group>";
		};
		5D3E48781D6F86EC0000BFEF /* Notifications */ = {
			isa = PBXGroup;
			children = (
				5D4D67AA1D2ED37A00468B4A /* SDLNotificationDispatcher.h */,
				5D4D67AB1D2ED37A00468B4A /* SDLNotificationDispatcher.m */,
				5D3E48791D6F888E0000BFEF /* SDLRPCResponseNotification.h */,
				5D3E487A1D6F888E0000BFEF /* SDLRPCResponseNotification.m */,
				5D3E487D1D6F88A30000BFEF /* SDLRPCNotificationNotification.h */,
				5D3E487E1D6F88A30000BFEF /* SDLRPCNotificationNotification.m */,
			);
			name = Notifications;
			sourceTree = "<group>";
		};
		5D3E48821D74813B0000BFEF /* Responses */ = {
			isa = PBXGroup;
			children = (
				5D4D67AE1D2FE2F900468B4A /* SDLResponseDispatcher.h */,
				5D4D67AF1D2FE2F900468B4A /* SDLResponseDispatcher.m */,
			);
			name = Responses;
			sourceTree = "<group>";
		};
		5D4019A61A76EC350006B0C2 = {
			isa = PBXGroup;
			children = (
				5D4019B11A76EC350006B0C2 /* Example */,
				5D61FA1D1A84237100846EE7 /* SmartDeviceLink */,
				5D61FA2C1A84237100846EE7 /* SmartDeviceLinkTests */,
				5D4019B01A76EC350006B0C2 /* Products */,
			);
			sourceTree = "<group>";
		};
		5D4019B01A76EC350006B0C2 /* Products */ = {
			isa = PBXGroup;
			children = (
				5D4019AF1A76EC350006B0C2 /* SDL Example.app */,
				5D61FA1C1A84237100846EE7 /* SmartDeviceLink.framework */,
				5D61FA261A84237100846EE7 /* SmartDeviceLinkTests.xctest */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		5D4019B11A76EC350006B0C2 /* Example */ = {
			isa = PBXGroup;
			children = (
				5D48329E1A92865900252386 /* SDL */,
				5D48329A1A8EA31500252386 /* Utilities */,
				5D0218EB1A8E795700D1BF62 /* UI */,
				5D59350B1A855EB300687FB9 /* AppDelegate.h */,
				5D59350C1A855EB300687FB9 /* AppDelegate.m */,
				5D4029D31A76F0340006B0C2 /* Images.xcassets */,
				5D4029DF1A76F0760006B0C2 /* LaunchScreen.xib */,
				5D4029E11A76F0760006B0C2 /* Main.storyboard */,
				5D4019B21A76EC350006B0C2 /* Supporting Files */,
			);
			name = Example;
			path = "SmartDeviceLink-iOS";
			sourceTree = "<group>";
		};
		5D4019B21A76EC350006B0C2 /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				5D0218E71A8D611600D1BF62 /* Frameworks */,
				5D5935111A855EBE00687FB9 /* main.m */,
				5D4029D51A76F0410006B0C2 /* Info.plist */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		5D4832991A8EA27200252386 /* Storyboards */ = {
			isa = PBXGroup;
			children = (
				5D0218F71A8E7A7300D1BF62 /* ConnectionTCPTableViewController.storyboard */,
				5D0219031A8E9F6D00D1BF62 /* ConnectionIAPTableViewController.storyboard */,
			);
			name = Storyboards;
			sourceTree = "<group>";
		};
		5D48329A1A8EA31500252386 /* Utilities */ = {
			isa = PBXGroup;
			children = (
				5D48329B1A8EA33D00252386 /* Preferences.h */,
				5D48329C1A8EA33D00252386 /* Preferences.m */,
			);
			name = Utilities;
			sourceTree = "<group>";
		};
		5D48329E1A92865900252386 /* SDL */ = {
			isa = PBXGroup;
			children = (
				5D48329F1A92868E00252386 /* ProxyManager.h */,
				5D4832A01A92868E00252386 /* ProxyManager.m */,
			);
			name = SDL;
			sourceTree = "<group>";
		};
		5D4832A21A94F8F100252386 /* Transition */ = {
			isa = PBXGroup;
			children = (
				5D4832A31A94F90D00252386 /* ConnectionTransitionContext.h */,
				5D4832A41A94F90D00252386 /* ConnectionTransitionContext.m */,
				5D4832A61A95191B00252386 /* ConnectionAnimatedTransition.h */,
				5D4832A71A95191B00252386 /* ConnectionAnimatedTransition.m */,
			);
			name = Transition;
			sourceTree = "<group>";
		};
		5D5934ED1A85160400687FB9 /* Proxy */ = {
			isa = PBXGroup;
			children = (
				5D6CC8ED1C610E490027F60A /* Security */,
				5D5934FE1A851B2500687FB9 /* @protocols */,
				5D61FB031A84238A00846EE7 /* SDLLockScreenStatusManager.h */,
				5D61FB041A84238A00846EE7 /* SDLLockScreenStatusManager.m */,
				5D61FB441A84238B00846EE7 /* SDLPolicyDataParser.h */,
				5D61FB451A84238B00846EE7 /* SDLPolicyDataParser.m */,
				5D61FB631A84238B00846EE7 /* SDLProxy.h */,
				5D61FB641A84238B00846EE7 /* SDLProxy.m */,
				5D61FB651A84238B00846EE7 /* SDLProxyFactory.h */,
				5D61FB661A84238B00846EE7 /* SDLProxyFactory.m */,
				5D61FBF21A84238C00846EE7 /* SDLTTSChunkFactory.h */,
				5D61FBF31A84238C00846EE7 /* SDLTTSChunkFactory.m */,
				5D53C46B1B7A99B9003526EA /* SDLStreamingMediaManager.h */,
				5D53C46C1B7A99B9003526EA /* SDLStreamingMediaManager.m */,
			);
			name = Proxy;
			sourceTree = "<group>";
		};
		5D5934EE1A85160900687FB9 /* Protocol */ = {
			isa = PBXGroup;
			children = (
				5D5934FA1A851AC900687FB9 /* @protocols */,
				5D5935011A851D7E00687FB9 /* Header */,
				5D5935021A851D8700687FB9 /* Message */,
				5D61FA3C1A84238A00846EE7 /* SDLAbstractProtocol.h */,
				5D61FA3D1A84238A00846EE7 /* SDLAbstractProtocol.m */,
				5D61FAC01A84238A00846EE7 /* SDLFunctionID.h */,
				5D61FAC11A84238A00846EE7 /* SDLFunctionID.m */,
				5D61FB561A84238B00846EE7 /* SDLProtocol.h */,
				5D61FB571A84238B00846EE7 /* SDLProtocol.m */,
				5D61FB5D1A84238B00846EE7 /* SDLProtocolMessageAssembler.h */,
				5D61FB5E1A84238B00846EE7 /* SDLProtocolMessageAssembler.m */,
				5D61FB5F1A84238B00846EE7 /* SDLProtocolMessageDisassembler.h */,
				5D61FB601A84238B00846EE7 /* SDLProtocolMessageDisassembler.m */,
				5D61FB611A84238B00846EE7 /* SDLProtocolReceivedMessageRouter.h */,
				5D61FB621A84238B00846EE7 /* SDLProtocolReceivedMessageRouter.m */,
			);
			name = Protocol;
			sourceTree = "<group>";
		};
		5D5934EF1A85160F00687FB9 /* RPCs */ = {
			isa = PBXGroup;
			children = (
				5D5934FF1A851B8400687FB9 /* Superclasses */,
				5D5935041A851E1A00687FB9 /* Payload */,
				5D5935031A851E1100687FB9 /* Factories */,
				5D5934F11A85162800687FB9 /* Requests */,
				5D5934F21A85163200687FB9 /* Responses */,
				5D5934F31A85164500687FB9 /* Structs */,
				5D5934F41A85165E00687FB9 /* Enums */,
				5D5934F81A8519C300687FB9 /* Notification */,
			);
			name = RPCs;
			sourceTree = "<group>";
		};
		5D5934F01A85161A00687FB9 /* Transport */ = {
			isa = PBXGroup;
			children = (
				5D5935001A851D0B00687FB9 /* @protocols */,
				5D61FA3E1A84238A00846EE7 /* SDLAbstractTransport.h */,
				5D61FA3F1A84238A00846EE7 /* SDLAbstractTransport.m */,
				E9C32B891AB20BA200F283AF /* SDLIAPSession.h */,
				E9C32B8A1AB20BA200F283AF /* SDLIAPSession.m */,
				E9C32B8B1AB20BA200F283AF /* SDLIAPSessionDelegate.h */,
				5D61FADA1A84238A00846EE7 /* SDLIAPTransport.h */,
				5D61FADB1A84238A00846EE7 /* SDLIAPTransport.m */,
				E9C32B8C1AB20BA200F283AF /* SDLStreamDelegate.h */,
				E9C32B8D1AB20BA200F283AF /* SDLStreamDelegate.m */,
				5D61FBD81A84238B00846EE7 /* SDLTCPTransport.h */,
				5D61FBD91A84238B00846EE7 /* SDLTCPTransport.m */,
			);
			name = Transport;
			sourceTree = "<group>";
		};
		5D5934F11A85162800687FB9 /* Requests */ = {
			isa = PBXGroup;
			children = (
				5D61FA401A84238A00846EE7 /* SDLAddCommand.h */,
				5D61FA411A84238A00846EE7 /* SDLAddCommand.m */,
				5D61FA441A84238A00846EE7 /* SDLAddSubMenu.h */,
				5D61FA451A84238A00846EE7 /* SDLAddSubMenu.m */,
				5D61FA4A1A84238A00846EE7 /* SDLAlert.h */,
				5D61FA4B1A84238A00846EE7 /* SDLAlert.m */,
				5D61FA4C1A84238A00846EE7 /* SDLAlertManeuver.h */,
				5D61FA4D1A84238A00846EE7 /* SDLAlertManeuver.m */,
				5D61FA6E1A84238A00846EE7 /* SDLChangeRegistration.h */,
				5D61FA6F1A84238A00846EE7 /* SDLChangeRegistration.m */,
				5D61FA7E1A84238A00846EE7 /* SDLCreateInteractionChoiceSet.h */,
				5D61FA7F1A84238A00846EE7 /* SDLCreateInteractionChoiceSet.m */,
				5D61FA851A84238A00846EE7 /* SDLDeleteCommand.h */,
				5D61FA861A84238A00846EE7 /* SDLDeleteCommand.m */,
				5D61FA891A84238A00846EE7 /* SDLDeleteFile.h */,
				5D61FA8A1A84238A00846EE7 /* SDLDeleteFile.m */,
				5D61FA8D1A84238A00846EE7 /* SDLDeleteInteractionChoiceSet.h */,
				5D61FA8E1A84238A00846EE7 /* SDLDeleteInteractionChoiceSet.m */,
				5D61FA911A84238A00846EE7 /* SDLDeleteSubMenu.h */,
				5D61FA921A84238A00846EE7 /* SDLDeleteSubMenu.m */,
				5D61FA9B1A84238A00846EE7 /* SDLDiagnosticMessage.h */,
				5D61FA9C1A84238A00846EE7 /* SDLDiagnosticMessage.m */,
				5D8B174D1AC9D266006A6E1C /* SDLDialNumber.h */,
				5D8B174E1AC9D266006A6E1C /* SDLDialNumber.m */,
				5D61FAB11A84238A00846EE7 /* SDLEncodedSyncPData.h */,
				5D61FAB21A84238A00846EE7 /* SDLEncodedSyncPData.m */,
				5D61FAB61A84238A00846EE7 /* SDLEndAudioPassThru.h */,
				5D61FAB71A84238A00846EE7 /* SDLEndAudioPassThru.m */,
				5D61FAC41A84238A00846EE7 /* SDLGetDTCs.h */,
				5D61FAC51A84238A00846EE7 /* SDLGetDTCs.m */,
				5D61FAC81A84238A00846EE7 /* SDLGetVehicleData.h */,
				5D61FAC91A84238A00846EE7 /* SDLGetVehicleData.m */,
				5D61FAFF1A84238A00846EE7 /* SDLListFiles.h */,
				5D61FB001A84238A00846EE7 /* SDLListFiles.m */,
				5D61FB381A84238B00846EE7 /* SDLPerformAudioPassThru.h */,
				5D61FB391A84238B00846EE7 /* SDLPerformAudioPassThru.m */,
				5D61FB3C1A84238B00846EE7 /* SDLPerformInteraction.h */,
				5D61FB3D1A84238B00846EE7 /* SDLPerformInteraction.m */,
				5D61FB681A84238B00846EE7 /* SDLPutFile.h */,
				5D61FB691A84238B00846EE7 /* SDLPutFile.m */,
				5D61FB6C1A84238B00846EE7 /* SDLReadDID.h */,
				5D61FB6D1A84238B00846EE7 /* SDLReadDID.m */,
				5D61FB701A84238B00846EE7 /* SDLRegisterAppInterface.h */,
				5D61FB711A84238B00846EE7 /* SDLRegisterAppInterface.m */,
				5D61FB761A84238B00846EE7 /* SDLResetGlobalProperties.h */,
				5D61FB771A84238B00846EE7 /* SDLResetGlobalProperties.m */,
				5D61FB8E1A84238B00846EE7 /* SDLScrollableMessage.h */,
				5D61FB8F1A84238B00846EE7 /* SDLScrollableMessage.m */,
				5D61FB921A84238B00846EE7 /* SDLSetAppIcon.h */,
				5D61FB931A84238B00846EE7 /* SDLSetAppIcon.m */,
				5D61FB961A84238B00846EE7 /* SDLSetDisplayLayout.h */,
				5D61FB971A84238B00846EE7 /* SDLSetDisplayLayout.m */,
				5D61FB9A1A84238B00846EE7 /* SDLSetGlobalProperties.h */,
				5D61FB9B1A84238B00846EE7 /* SDLSetGlobalProperties.m */,
				5D61FB9E1A84238B00846EE7 /* SDLSetMediaClockTimer.h */,
				5D61FB9F1A84238B00846EE7 /* SDLSetMediaClockTimer.m */,
				5D61FBA21A84238B00846EE7 /* SDLShow.h */,
				5D61FBA31A84238B00846EE7 /* SDLShow.m */,
				5D61FBA41A84238B00846EE7 /* SDLShowConstantTBT.h */,
				5D61FBA51A84238B00846EE7 /* SDLShowConstantTBT.m */,
				5D61FBAE1A84238B00846EE7 /* SDLSlider.h */,
				5D61FBAF1A84238B00846EE7 /* SDLSlider.m */,
				5D61FBB81A84238B00846EE7 /* SDLSpeak.h */,
				5D61FBB91A84238B00846EE7 /* SDLSpeak.m */,
				5D61FBC01A84238B00846EE7 /* SDLSubscribeButton.h */,
				5D61FBC11A84238B00846EE7 /* SDLSubscribeButton.m */,
				5D61FBC41A84238B00846EE7 /* SDLSubscribeVehicleData.h */,
				5D61FBC51A84238B00846EE7 /* SDLSubscribeVehicleData.m */,
				5D61FBCA1A84238B00846EE7 /* SDLSyncPData.h */,
				5D61FBCB1A84238B00846EE7 /* SDLSyncPData.m */,
				5D61FBD21A84238B00846EE7 /* SDLSystemRequest.h */,
				5D61FBD31A84238B00846EE7 /* SDLSystemRequest.m */,
				5D61FBF61A84238C00846EE7 /* SDLUnregisterAppInterface.h */,
				5D61FBF71A84238C00846EE7 /* SDLUnregisterAppInterface.m */,
				5D61FBFA1A84238C00846EE7 /* SDLUnsubscribeButton.h */,
				5D61FBFB1A84238C00846EE7 /* SDLUnsubscribeButton.m */,
				5D61FBFE1A84238C00846EE7 /* SDLUnsubscribeVehicleData.h */,
				5D61FBFF1A84238C00846EE7 /* SDLUnsubscribeVehicleData.m */,
				5D61FC041A84238C00846EE7 /* SDLUpdateTurnList.h */,
				5D61FC051A84238C00846EE7 /* SDLUpdateTurnList.m */,
				5DCF76F31ACDBAD300BB647B /* SDLSendLocation.h */,
				5DCF76F41ACDBAD300BB647B /* SDLSendLocation.m */,
			);
			name = Requests;
			sourceTree = "<group>";
		};
		5D5934F21A85163200687FB9 /* Responses */ = {
			isa = PBXGroup;
			children = (
				5D61FA421A84238A00846EE7 /* SDLAddCommandResponse.h */,
				5D61FA431A84238A00846EE7 /* SDLAddCommandResponse.m */,
				5D61FA461A84238A00846EE7 /* SDLAddSubMenuResponse.h */,
				5D61FA471A84238A00846EE7 /* SDLAddSubMenuResponse.m */,
				5D61FA4E1A84238A00846EE7 /* SDLAlertManeuverResponse.h */,
				5D61FA4F1A84238A00846EE7 /* SDLAlertManeuverResponse.m */,
				5D61FA501A84238A00846EE7 /* SDLAlertResponse.h */,
				5D61FA511A84238A00846EE7 /* SDLAlertResponse.m */,
				5D61FA701A84238A00846EE7 /* SDLChangeRegistrationResponse.h */,
				5D61FA711A84238A00846EE7 /* SDLChangeRegistrationResponse.m */,
				5D61FA801A84238A00846EE7 /* SDLCreateInteractionChoiceSetResponse.h */,
				5D61FA811A84238A00846EE7 /* SDLCreateInteractionChoiceSetResponse.m */,
				5D61FA871A84238A00846EE7 /* SDLDeleteCommandResponse.h */,
				5D61FA881A84238A00846EE7 /* SDLDeleteCommandResponse.m */,
				5D61FA8B1A84238A00846EE7 /* SDLDeleteFileResponse.h */,
				5D61FA8C1A84238A00846EE7 /* SDLDeleteFileResponse.m */,
				5D61FA8F1A84238A00846EE7 /* SDLDeleteInteractionChoiceSetResponse.h */,
				5D61FA901A84238A00846EE7 /* SDLDeleteInteractionChoiceSetResponse.m */,
				5D61FA931A84238A00846EE7 /* SDLDeleteSubMenuResponse.h */,
				5D61FA941A84238A00846EE7 /* SDLDeleteSubMenuResponse.m */,
				5D61FA9D1A84238A00846EE7 /* SDLDiagnosticMessageResponse.h */,
				5D61FA9E1A84238A00846EE7 /* SDLDiagnosticMessageResponse.m */,
				5D8B17511AC9E11B006A6E1C /* SDLDialNumberResponse.h */,
				5D8B17521AC9E11B006A6E1C /* SDLDialNumberResponse.m */,
				5D61FAB31A84238A00846EE7 /* SDLEncodedSyncPDataResponse.h */,
				5D61FAB41A84238A00846EE7 /* SDLEncodedSyncPDataResponse.m */,
				5D61FAB81A84238A00846EE7 /* SDLEndAudioPassThruResponse.h */,
				5D61FAB91A84238A00846EE7 /* SDLEndAudioPassThruResponse.m */,
				5D61FAC21A84238A00846EE7 /* SDLGenericResponse.h */,
				5D61FAC31A84238A00846EE7 /* SDLGenericResponse.m */,
				5D61FAC61A84238A00846EE7 /* SDLGetDTCsResponse.h */,
				5D61FAC71A84238A00846EE7 /* SDLGetDTCsResponse.m */,
				5D61FACA1A84238A00846EE7 /* SDLGetVehicleDataResponse.h */,
				5D61FACB1A84238A00846EE7 /* SDLGetVehicleDataResponse.m */,
				5D61FB011A84238A00846EE7 /* SDLListFilesResponse.h */,
				5D61FB021A84238A00846EE7 /* SDLListFilesResponse.m */,
				5D61FB3A1A84238B00846EE7 /* SDLPerformAudioPassThruResponse.h */,
				5D61FB3B1A84238B00846EE7 /* SDLPerformAudioPassThruResponse.m */,
				5D61FB3E1A84238B00846EE7 /* SDLPerformInteractionResponse.h */,
				5D61FB3F1A84238B00846EE7 /* SDLPerformInteractionResponse.m */,
				5D61FB6A1A84238B00846EE7 /* SDLPutFileResponse.h */,
				5D61FB6B1A84238B00846EE7 /* SDLPutFileResponse.m */,
				5D61FB6E1A84238B00846EE7 /* SDLReadDIDResponse.h */,
				5D61FB6F1A84238B00846EE7 /* SDLReadDIDResponse.m */,
				5D61FB721A84238B00846EE7 /* SDLRegisterAppInterfaceResponse.h */,
				5D61FB731A84238B00846EE7 /* SDLRegisterAppInterfaceResponse.m */,
				5D61FB781A84238B00846EE7 /* SDLResetGlobalPropertiesResponse.h */,
				5D61FB791A84238B00846EE7 /* SDLResetGlobalPropertiesResponse.m */,
				5D61FB901A84238B00846EE7 /* SDLScrollableMessageResponse.h */,
				5D61FB911A84238B00846EE7 /* SDLScrollableMessageResponse.m */,
				5D61FB941A84238B00846EE7 /* SDLSetAppIconResponse.h */,
				5D61FB951A84238B00846EE7 /* SDLSetAppIconResponse.m */,
				5D61FB981A84238B00846EE7 /* SDLSetDisplayLayoutResponse.h */,
				5D61FB991A84238B00846EE7 /* SDLSetDisplayLayoutResponse.m */,
				5D61FB9C1A84238B00846EE7 /* SDLSetGlobalPropertiesResponse.h */,
				5D61FB9D1A84238B00846EE7 /* SDLSetGlobalPropertiesResponse.m */,
				5D61FBA01A84238B00846EE7 /* SDLSetMediaClockTimerResponse.h */,
				5D61FBA11A84238B00846EE7 /* SDLSetMediaClockTimerResponse.m */,
				5D61FBA61A84238B00846EE7 /* SDLShowConstantTBTResponse.h */,
				5D61FBA71A84238B00846EE7 /* SDLShowConstantTBTResponse.m */,
				5D61FBA81A84238B00846EE7 /* SDLShowResponse.h */,
				5D61FBA91A84238B00846EE7 /* SDLShowResponse.m */,
				5D61FBB01A84238B00846EE7 /* SDLSliderResponse.h */,
				5D61FBB11A84238B00846EE7 /* SDLSliderResponse.m */,
				5D61FBBA1A84238B00846EE7 /* SDLSpeakResponse.h */,
				5D61FBBB1A84238B00846EE7 /* SDLSpeakResponse.m */,
				5D61FBC21A84238B00846EE7 /* SDLSubscribeButtonResponse.h */,
				5D61FBC31A84238B00846EE7 /* SDLSubscribeButtonResponse.m */,
				5D61FBC61A84238B00846EE7 /* SDLSubscribeVehicleDataResponse.h */,
				5D61FBC71A84238B00846EE7 /* SDLSubscribeVehicleDataResponse.m */,
				5D61FBCC1A84238B00846EE7 /* SDLSyncPDataResponse.h */,
				5D61FBCD1A84238B00846EE7 /* SDLSyncPDataResponse.m */,
				5D61FBD41A84238B00846EE7 /* SDLSystemRequestResponse.h */,
				5D61FBD51A84238B00846EE7 /* SDLSystemRequestResponse.m */,
				5D61FBF81A84238C00846EE7 /* SDLUnregisterAppInterfaceResponse.h */,
				5D61FBF91A84238C00846EE7 /* SDLUnregisterAppInterfaceResponse.m */,
				5D61FBFC1A84238C00846EE7 /* SDLUnsubscribeButtonResponse.h */,
				5D61FBFD1A84238C00846EE7 /* SDLUnsubscribeButtonResponse.m */,
				5D61FC001A84238C00846EE7 /* SDLUnsubscribeVehicleDataResponse.h */,
				5D61FC011A84238C00846EE7 /* SDLUnsubscribeVehicleDataResponse.m */,
				5D61FC061A84238C00846EE7 /* SDLUpdateTurnListResponse.h */,
				5D61FC071A84238C00846EE7 /* SDLUpdateTurnListResponse.m */,
				5DCF76F71ACDD7CD00BB647B /* SDLSendLocationResponse.h */,
				5DCF76F81ACDD7CD00BB647B /* SDLSendLocationResponse.m */,
			);
			name = Responses;
			sourceTree = "<group>";
		};
		5D5934F31A85164500687FB9 /* Structs */ = {
			isa = PBXGroup;
			children = (
				5D61FA481A84238A00846EE7 /* SDLAirbagStatus.h */,
				5D61FA491A84238A00846EE7 /* SDLAirbagStatus.m */,
				332A913C1CED87F80043824C /* SDLAppInfo.h */,
				332A913D1CED87F80043824C /* SDLAppInfo.m */,
				5D61FA581A84238A00846EE7 /* SDLAudioPassThruCapabilities.h */,
				5D61FA591A84238A00846EE7 /* SDLAudioPassThruCapabilities.m */,
				5D61FA5E1A84238A00846EE7 /* SDLBeltStatus.h */,
				5D61FA5F1A84238A00846EE7 /* SDLBeltStatus.m */,
				5D61FA621A84238A00846EE7 /* SDLBodyInformation.h */,
				5D61FA631A84238A00846EE7 /* SDLBodyInformation.m */,
				5D61FA641A84238A00846EE7 /* SDLButtonCapabilities.h */,
				5D61FA651A84238A00846EE7 /* SDLButtonCapabilities.m */,
				5D61FA741A84238A00846EE7 /* SDLChoice.h */,
				5D61FA751A84238A00846EE7 /* SDLChoice.m */,
				5D61FA761A84238A00846EE7 /* SDLClusterModeStatus.h */,
				5D61FA771A84238A00846EE7 /* SDLClusterModeStatus.m */,
				DA9F7E611DCBFAC800ACAE48 /* SDLDateTime.h */,
				DA9F7E621DCBFAC800ACAE48 /* SDLDateTime.m */,
				5D61FA951A84238A00846EE7 /* SDLDeviceInfo.h */,
				5D61FA961A84238A00846EE7 /* SDLDeviceInfo.m */,
				5D61FA991A84238A00846EE7 /* SDLDeviceStatus.h */,
				5D61FA9A1A84238A00846EE7 /* SDLDeviceStatus.m */,
				5D61FA9F1A84238A00846EE7 /* SDLDIDResult.h */,
				5D61FAA01A84238A00846EE7 /* SDLDIDResult.m */,
				5D61FAA31A84238A00846EE7 /* SDLDisplayCapabilities.h */,
				5D61FAA41A84238A00846EE7 /* SDLDisplayCapabilities.m */,
				5D61FAAB1A84238A00846EE7 /* SDLECallInfo.h */,
				5D61FAAC1A84238A00846EE7 /* SDLECallInfo.m */,
				5D61FAAD1A84238A00846EE7 /* SDLEmergencyEvent.h */,
				5D61FAAE1A84238A00846EE7 /* SDLEmergencyEvent.m */,
				5D61FACE1A84238A00846EE7 /* SDLGPSData.h */,
				5D61FACF1A84238A00846EE7 /* SDLGPSData.m */,
				5D61FAD01A84238A00846EE7 /* SDLHeadLampStatus.h */,
				5D61FAD11A84238A00846EE7 /* SDLHeadLampStatus.m */,
				5DE3729F1ACB2ED300849FAA /* SDLHMICapabilities.h */,
				5DE372A01ACB2ED300849FAA /* SDLHMICapabilities.m */,
				5D61FAD61A84238A00846EE7 /* SDLHMIPermissions.h */,
				5D61FAD71A84238A00846EE7 /* SDLHMIPermissions.m */,
				5D61FAE01A84238A00846EE7 /* SDLImage.h */,
				5D61FAE11A84238A00846EE7 /* SDLImage.m */,
				5D61FAE21A84238A00846EE7 /* SDLImageField.h */,
				5D61FAE31A84238A00846EE7 /* SDLImageField.m */,
				5D61FAE61A84238A00846EE7 /* SDLImageResolution.h */,
				5D61FAE71A84238A00846EE7 /* SDLImageResolution.m */,
				5D61FAF71A84238A00846EE7 /* SDLKeyboardProperties.h */,
				5D61FAF81A84238A00846EE7 /* SDLKeyboardProperties.m */,
				5D61FB0B1A84238A00846EE7 /* SDLMenuParams.h */,
				5D61FB0C1A84238A00846EE7 /* SDLMenuParams.m */,
				5D61FB0D1A84238A00846EE7 /* SDLMyKey.h */,
				5D61FB0E1A84238A00846EE7 /* SDLMyKey.m */,
				DA9F7E651DCBFAD400ACAE48 /* SDLOasisAddress.h */,
				DA9F7E661DCBFAD400ACAE48 /* SDLOasisAddress.m */,
				5D61FB361A84238B00846EE7 /* SDLParameterPermissions.h */,
				5D61FB371A84238B00846EE7 /* SDLParameterPermissions.m */,
				5D61FB401A84238B00846EE7 /* SDLPermissionItem.h */,
				5D61FB411A84238B00846EE7 /* SDLPermissionItem.m */,
				5D61FB4E1A84238B00846EE7 /* SDLPresetBankCapabilities.h */,
				5D61FB4F1A84238B00846EE7 /* SDLPresetBankCapabilities.m */,
				5D61FB8C1A84238B00846EE7 /* SDLScreenParams.h */,
				5D61FB8D1A84238B00846EE7 /* SDLScreenParams.m */,
				5D61FBAA1A84238B00846EE7 /* SDLSingleTireStatus.h */,
				5D61FBAB1A84238B00846EE7 /* SDLSingleTireStatus.m */,
				5D61FBB21A84238B00846EE7 /* SDLSoftButton.h */,
				5D61FBB31A84238B00846EE7 /* SDLSoftButton.m */,
				5D61FBB41A84238B00846EE7 /* SDLSoftButtonCapabilities.h */,
				5D61FBB51A84238B00846EE7 /* SDLSoftButtonCapabilities.m */,
				5D61FBBE1A84238B00846EE7 /* SDLStartTime.h */,
				5D61FBBF1A84238B00846EE7 /* SDLStartTime.m */,
				5D61FBC81A84238B00846EE7 /* SDLSyncMsgVersion.h */,
				5D61FBC91A84238B00846EE7 /* SDLSyncMsgVersion.m */,
				5D61FBDC1A84238C00846EE7 /* SDLTextField.h */,
				5D61FBDD1A84238C00846EE7 /* SDLTextField.m */,
				5D61FBE21A84238C00846EE7 /* SDLTireStatus.h */,
				5D61FBE31A84238C00846EE7 /* SDLTireStatus.m */,
				5D61FBE41A84238C00846EE7 /* SDLTouchCoord.h */,
				5D61FBE51A84238C00846EE7 /* SDLTouchCoord.m */,
				5D61FBE61A84238C00846EE7 /* SDLTouchEvent.h */,
				5D61FBE71A84238C00846EE7 /* SDLTouchEvent.m */,
				5D61FBE81A84238C00846EE7 /* SDLTouchEventCapabilities.h */,
				5D61FBE91A84238C00846EE7 /* SDLTouchEventCapabilities.m */,
				5D61FBF01A84238C00846EE7 /* SDLTTSChunk.h */,
				5D61FBF11A84238C00846EE7 /* SDLTTSChunk.m */,
				5D61FBF41A84238C00846EE7 /* SDLTurn.h */,
				5D61FBF51A84238C00846EE7 /* SDLTurn.m */,
				5D61FC161A84238C00846EE7 /* SDLVehicleDataResult.h */,
				5D61FC171A84238C00846EE7 /* SDLVehicleDataResult.m */,
				5D61FC1E1A84238C00846EE7 /* SDLVehicleType.h */,
				5D61FC1F1A84238C00846EE7 /* SDLVehicleType.m */,
				5D61FC221A84238C00846EE7 /* SDLVRHelpItem.h */,
				5D61FC231A84238C00846EE7 /* SDLVRHelpItem.m */,
			);
			name = Structs;
			sourceTree = "<group>";
		};
		5D5934F41A85165E00687FB9 /* Enums */ = {
			isa = PBXGroup;
			children = (
				5D61FA521A84238A00846EE7 /* SDLAmbientLightStatus.h */,
				5D61FA531A84238A00846EE7 /* SDLAmbientLightStatus.m */,
				5D61FA541A84238A00846EE7 /* SDLAppHMIType.h */,
				5D61FA551A84238A00846EE7 /* SDLAppHMIType.m */,
				5D61FA561A84238A00846EE7 /* SDLAppInterfaceUnregisteredReason.h */,
				5D61FA571A84238A00846EE7 /* SDLAppInterfaceUnregisteredReason.m */,
				5D61FA5A1A84238A00846EE7 /* SDLAudioStreamingState.h */,
				5D61FA5B1A84238A00846EE7 /* SDLAudioStreamingState.m */,
				5D61FA5C1A84238A00846EE7 /* SDLAudioType.h */,
				5D61FA5D1A84238A00846EE7 /* SDLAudioType.m */,
				5D61FA601A84238A00846EE7 /* SDLBitsPerSample.h */,
				5D61FA611A84238A00846EE7 /* SDLBitsPerSample.m */,
				5D61FA661A84238A00846EE7 /* SDLButtonEventMode.h */,
				5D61FA671A84238A00846EE7 /* SDLButtonEventMode.m */,
				5D61FA681A84238A00846EE7 /* SDLButtonName.h */,
				5D61FA691A84238A00846EE7 /* SDLButtonName.m */,
				5D61FA6A1A84238A00846EE7 /* SDLButtonPressMode.h */,
				5D61FA6B1A84238A00846EE7 /* SDLButtonPressMode.m */,
				5D61FA6C1A84238A00846EE7 /* SDLCarModeStatus.h */,
				5D61FA6D1A84238A00846EE7 /* SDLCarModeStatus.m */,
				5D61FA721A84238A00846EE7 /* SDLCharacterSet.h */,
				5D61FA731A84238A00846EE7 /* SDLCharacterSet.m */,
				5D61FA781A84238A00846EE7 /* SDLCompassDirection.h */,
				5D61FA791A84238A00846EE7 /* SDLCompassDirection.m */,
				5D61FA7A1A84238A00846EE7 /* SDLComponentVolumeStatus.h */,
				5D61FA7B1A84238A00846EE7 /* SDLComponentVolumeStatus.m */,
				DA9F7E691DCBFB0700ACAE48 /* SDLDeliveryMode.h */,
				DA9F7E6A1DCBFB0700ACAE48 /* SDLDeliveryMode.m */,
				5D61FA971A84238A00846EE7 /* SDLDeviceLevelStatus.h */,
				5D61FA981A84238A00846EE7 /* SDLDeviceLevelStatus.m */,
				5D61FAA11A84238A00846EE7 /* SDLDimension.h */,
				5D61FAA21A84238A00846EE7 /* SDLDimension.m */,
				5D61FAA51A84238A00846EE7 /* SDLDisplayType.h */,
				5D61FAA61A84238A00846EE7 /* SDLDisplayType.m */,
				5D61FAA71A84238A00846EE7 /* SDLDriverDistractionState.h */,
				5D61FAA81A84238A00846EE7 /* SDLDriverDistractionState.m */,
				5D61FAA91A84238A00846EE7 /* SDLECallConfirmationStatus.h */,
				5D61FAAA1A84238A00846EE7 /* SDLECallConfirmationStatus.m */,
				5D61FAAF1A84238A00846EE7 /* SDLEmergencyEventType.h */,
				5D61FAB01A84238A00846EE7 /* SDLEmergencyEventType.m */,
				5D61FABC1A84238A00846EE7 /* SDLFileType.h */,
				5D61FABD1A84238A00846EE7 /* SDLFileType.m */,
				5D61FABE1A84238A00846EE7 /* SDLFuelCutoffStatus.h */,
				5D61FABF1A84238A00846EE7 /* SDLFuelCutoffStatus.m */,
				5D61FACC1A84238A00846EE7 /* SDLGlobalProperty.h */,
				5D61FACD1A84238A00846EE7 /* SDLGlobalProperty.m */,
				5D61FAD41A84238A00846EE7 /* SDLHMILevel.h */,
				5D61FAD51A84238A00846EE7 /* SDLHMILevel.m */,
				5D61FAD81A84238A00846EE7 /* SDLHMIZoneCapabilities.h */,
				5D61FAD91A84238A00846EE7 /* SDLHMIZoneCapabilities.m */,
				5D61FADC1A84238A00846EE7 /* SDLIgnitionStableStatus.h */,
				5D61FADD1A84238A00846EE7 /* SDLIgnitionStableStatus.m */,
				5D61FADE1A84238A00846EE7 /* SDLIgnitionStatus.h */,
				5D61FADF1A84238A00846EE7 /* SDLIgnitionStatus.m */,
				5D61FAE41A84238A00846EE7 /* SDLImageFieldName.h */,
				5D61FAE51A84238A00846EE7 /* SDLImageFieldName.m */,
				5D61FAE81A84238A00846EE7 /* SDLImageType.h */,
				5D61FAE91A84238A00846EE7 /* SDLImageType.m */,
				5D61FAEA1A84238A00846EE7 /* SDLInteractionMode.h */,
				5D61FAEB1A84238A00846EE7 /* SDLInteractionMode.m */,
				5D61FAF31A84238A00846EE7 /* SDLKeyboardEvent.h */,
				5D61FAF41A84238A00846EE7 /* SDLKeyboardEvent.m */,
				5D61FAF51A84238A00846EE7 /* SDLKeyboardLayout.h */,
				5D61FAF61A84238A00846EE7 /* SDLKeyboardLayout.m */,
				5D61FAF91A84238A00846EE7 /* SDLKeypressMode.h */,
				5D61FAFA1A84238A00846EE7 /* SDLKeypressMode.m */,
				5D61FAFB1A84238A00846EE7 /* SDLLanguage.h */,
				5D61FAFC1A84238A00846EE7 /* SDLLanguage.m */,
				5D61FAFD1A84238A00846EE7 /* SDLLayoutMode.h */,
				5D61FAFE1A84238A00846EE7 /* SDLLayoutMode.m */,
				5D61FB051A84238A00846EE7 /* SDLLockScreenStatus.h */,
				5D61FB061A84238A00846EE7 /* SDLLockScreenStatus.m */,
				5D61FB071A84238A00846EE7 /* SDLMaintenanceModeStatus.h */,
				5D61FB081A84238A00846EE7 /* SDLMaintenanceModeStatus.m */,
				5D61FB091A84238A00846EE7 /* SDLMediaClockFormat.h */,
				5D61FB0A1A84238A00846EE7 /* SDLMediaClockFormat.m */,
				5D61FB421A84238B00846EE7 /* SDLPermissionStatus.h */,
				5D61FB431A84238B00846EE7 /* SDLPermissionStatus.m */,
				5D61FB461A84238B00846EE7 /* SDLPowerModeQualificationStatus.h */,
				5D61FB471A84238B00846EE7 /* SDLPowerModeQualificationStatus.m */,
				5D61FB481A84238B00846EE7 /* SDLPowerModeStatus.h */,
				5D61FB491A84238B00846EE7 /* SDLPowerModeStatus.m */,
				5D61FB4A1A84238B00846EE7 /* SDLPredefinedLayout.h */,
				5D61FB4B1A84238B00846EE7 /* SDLPredefinedLayout.m */,
				5D61FB4C1A84238B00846EE7 /* SDLPrerecordedSpeech.h */,
				5D61FB4D1A84238B00846EE7 /* SDLPrerecordedSpeech.m */,
				5D61FB501A84238B00846EE7 /* SDLPrimaryAudioSource.h */,
				5D61FB511A84238B00846EE7 /* SDLPrimaryAudioSource.m */,
				5D61FB541A84238B00846EE7 /* SDLPRNDL.h */,
				5D61FB551A84238B00846EE7 /* SDLPRNDL.m */,
				5D61FB741A84238B00846EE7 /* SDLRequestType.h */,
				5D61FB751A84238B00846EE7 /* SDLRequestType.m */,
				5D61FB7A1A84238B00846EE7 /* SDLResult.h */,
				5D61FB7B1A84238B00846EE7 /* SDLResult.m */,
				5D61FB7E1A84238B00846EE7 /* SDLRPCMessageType.h */,
				5D61FB8A1A84238B00846EE7 /* SDLSamplingRate.h */,
				5D61FB8B1A84238B00846EE7 /* SDLSamplingRate.m */,
				5D61FBB61A84238B00846EE7 /* SDLSoftButtonType.h */,
				5D61FBB71A84238B00846EE7 /* SDLSoftButtonType.m */,
				5D61FBBC1A84238B00846EE7 /* SDLSpeechCapabilities.h */,
				5D61FBBD1A84238B00846EE7 /* SDLSpeechCapabilities.m */,
				5D61FBCE1A84238B00846EE7 /* SDLSystemAction.h */,
				5D61FBCF1A84238B00846EE7 /* SDLSystemAction.m */,
				5D61FBD01A84238B00846EE7 /* SDLSystemContext.h */,
				5D61FBD11A84238B00846EE7 /* SDLSystemContext.m */,
				5D61FBD61A84238B00846EE7 /* SDLTBTState.h */,
				5D61FBD71A84238B00846EE7 /* SDLTBTState.m */,
				5D61FBDA1A84238B00846EE7 /* SDLTextAlignment.h */,
				5D61FBDB1A84238C00846EE7 /* SDLTextAlignment.m */,
				5D61FBDE1A84238C00846EE7 /* SDLTextFieldName.h */,
				5D61FBDF1A84238C00846EE7 /* SDLTextFieldName.m */,
				5D61FBE01A84238C00846EE7 /* SDLTimerMode.h */,
				5D61FBE11A84238C00846EE7 /* SDLTimerMode.m */,
				5D61FBEA1A84238C00846EE7 /* SDLTouchType.h */,
				5D61FBEB1A84238C00846EE7 /* SDLTouchType.m */,
				5D61FBEE1A84238C00846EE7 /* SDLTriggerSource.h */,
				5D61FBEF1A84238C00846EE7 /* SDLTriggerSource.m */,
				5D61FC021A84238C00846EE7 /* SDLUpdateMode.h */,
				5D61FC031A84238C00846EE7 /* SDLUpdateMode.m */,
				5D61FC101A84238C00846EE7 /* SDLVehicleDataActiveStatus.h */,
				5D61FC111A84238C00846EE7 /* SDLVehicleDataActiveStatus.m */,
				5D61FC121A84238C00846EE7 /* SDLVehicleDataEventStatus.h */,
				5D61FC131A84238C00846EE7 /* SDLVehicleDataEventStatus.m */,
				5D61FC141A84238C00846EE7 /* SDLVehicleDataNotificationStatus.h */,
				5D61FC151A84238C00846EE7 /* SDLVehicleDataNotificationStatus.m */,
				5D61FC181A84238C00846EE7 /* SDLVehicleDataResultCode.h */,
				5D61FC191A84238C00846EE7 /* SDLVehicleDataResultCode.m */,
				5D61FC1A1A84238C00846EE7 /* SDLVehicleDataStatus.h */,
				5D61FC1B1A84238C00846EE7 /* SDLVehicleDataStatus.m */,
				5D61FC1C1A84238C00846EE7 /* SDLVehicleDataType.h */,
				5D61FC1D1A84238C00846EE7 /* SDLVehicleDataType.m */,
				5D61FC201A84238C00846EE7 /* SDLVRCapabilities.h */,
				5D61FC211A84238C00846EE7 /* SDLVRCapabilities.m */,
				5D61FC241A84238C00846EE7 /* SDLWarningLightStatus.h */,
				5D61FC251A84238C00846EE7 /* SDLWarningLightStatus.m */,
				5D61FC261A84238C00846EE7 /* SDLWiperStatus.h */,
				5D61FC271A84238C00846EE7 /* SDLWiperStatus.m */,
			);
			name = Enums;
			sourceTree = "<group>";
		};
		5D5934F51A8516C800687FB9 /* Debug */ = {
			isa = PBXGroup;
			children = (
				5DE372A71ACC35C100849FAA /* @protocols */,
				5D61FA7C1A84238A00846EE7 /* SDLConsoleController.h */,
				5D61FA7D1A84238A00846EE7 /* SDLConsoleController.m */,
				5D61FA821A84238A00846EE7 /* SDLDebugTool.h */,
				5D61FA831A84238A00846EE7 /* SDLDebugTool.m */,
				5D61FBAC1A84238B00846EE7 /* SDLSiphonServer.h */,
				5D61FBAD1A84238B00846EE7 /* SDLSiphonServer.m */,
			);
			name = Debug;
			sourceTree = "<group>";
		};
		5D5934F61A85189500687FB9 /* Utilities */ = {
			isa = PBXGroup;
			children = (
				DAC5724C1D0FE3B60004288B /* Touches */,
				5DCC199D1B8221D2004FFAD9 /* HTTP Connection */,
				E9C32B831AB20B2900F283AF /* @categories */,
				5D5934F71A8519A700687FB9 /* JSON */,
				5D5934F91A851A8000687FB9 /* Prioritized Objects */,
				5D61FAD21A84238A00846EE7 /* SDLHexUtility.h */,
				5D61FAD31A84238A00846EE7 /* SDLHexUtility.m */,
				5D61FAED1A84238A00846EE7 /* SDLJingle.h */,
				5D61FAEE1A84238A00846EE7 /* SDLJingle.m */,
				E9C32B8E1AB20BA200F283AF /* SDLTimer.h */,
				E9C32B8F1AB20BA200F283AF /* SDLTimer.m */,
				5D61FB0F1A84238A00846EE7 /* SDLNames.h */,
				5D535DC31B72473800CF7760 /* SDLGlobals.h */,
				5D535DC41B72473800CF7760 /* SDLGlobals.m */,
			);
			name = Utilities;
			sourceTree = "<group>";
		};
		5D5934F71A8519A700687FB9 /* JSON */ = {
			isa = PBXGroup;
			children = (
				5D5934FD1A851B1500687FB9 /* @protocols */,
				5D61FAEF1A84238A00846EE7 /* SDLJsonDecoder.h */,
				5D61FAF01A84238A00846EE7 /* SDLJsonDecoder.m */,
				5D61FAF11A84238A00846EE7 /* SDLJsonEncoder.h */,
				5D61FAF21A84238A00846EE7 /* SDLJsonEncoder.m */,
			);
			name = JSON;
			sourceTree = "<group>";
		};
		5D5934F81A8519C300687FB9 /* Notification */ = {
			isa = PBXGroup;
			children = (
				5D61FB121A84238B00846EE7 /* SDLOnAppInterfaceUnregistered.h */,
				5D61FB131A84238B00846EE7 /* SDLOnAppInterfaceUnregistered.m */,
				5D61FB141A84238B00846EE7 /* SDLOnAudioPassThru.h */,
				5D61FB151A84238B00846EE7 /* SDLOnAudioPassThru.m */,
				5D61FB161A84238B00846EE7 /* SDLOnButtonEvent.h */,
				5D61FB171A84238B00846EE7 /* SDLOnButtonEvent.m */,
				5D61FB181A84238B00846EE7 /* SDLOnButtonPress.h */,
				5D61FB191A84238B00846EE7 /* SDLOnButtonPress.m */,
				5D61FB1A1A84238B00846EE7 /* SDLOnCommand.h */,
				5D61FB1B1A84238B00846EE7 /* SDLOnCommand.m */,
				5D61FB1C1A84238B00846EE7 /* SDLOnDriverDistraction.h */,
				5D61FB1D1A84238B00846EE7 /* SDLOnDriverDistraction.m */,
				5D61FB1E1A84238B00846EE7 /* SDLOnEncodedSyncPData.h */,
				5D61FB1F1A84238B00846EE7 /* SDLOnEncodedSyncPData.m */,
				5D61FB201A84238B00846EE7 /* SDLOnHashChange.h */,
				5D61FB211A84238B00846EE7 /* SDLOnHashChange.m */,
				5D61FB221A84238B00846EE7 /* SDLOnHMIStatus.h */,
				5D61FB231A84238B00846EE7 /* SDLOnHMIStatus.m */,
				5D61FB241A84238B00846EE7 /* SDLOnKeyboardInput.h */,
				5D61FB251A84238B00846EE7 /* SDLOnKeyboardInput.m */,
				5D61FB261A84238B00846EE7 /* SDLOnLanguageChange.h */,
				5D61FB271A84238B00846EE7 /* SDLOnLanguageChange.m */,
				5D61FB281A84238B00846EE7 /* SDLOnLockScreenStatus.h */,
				5D61FB291A84238B00846EE7 /* SDLOnLockScreenStatus.m */,
				5D61FB2A1A84238B00846EE7 /* SDLOnPermissionsChange.h */,
				5D61FB2B1A84238B00846EE7 /* SDLOnPermissionsChange.m */,
				5D61FB2C1A84238B00846EE7 /* SDLOnSyncPData.h */,
				5D61FB2D1A84238B00846EE7 /* SDLOnSyncPData.m */,
				5D61FB2E1A84238B00846EE7 /* SDLOnSystemRequest.h */,
				5D61FB2F1A84238B00846EE7 /* SDLOnSystemRequest.m */,
				5D61FB301A84238B00846EE7 /* SDLOnTBTClientState.h */,
				5D61FB311A84238B00846EE7 /* SDLOnTBTClientState.m */,
				5D61FB321A84238B00846EE7 /* SDLOnTouchEvent.h */,
				5D61FB331A84238B00846EE7 /* SDLOnTouchEvent.m */,
				5D61FB341A84238B00846EE7 /* SDLOnVehicleData.h */,
				5D61FB351A84238B00846EE7 /* SDLOnVehicleData.m */,
			);
			name = Notification;
			sourceTree = "<group>";
		};
		5D5934F91A851A8000687FB9 /* Prioritized Objects */ = {
			isa = PBXGroup;
			children = (
				5D61FB101A84238A00846EE7 /* SDLObjectWithPriority.h */,
				5D61FB111A84238A00846EE7 /* SDLObjectWithPriority.m */,
				5D61FB521A84238B00846EE7 /* SDLPrioritizedObjectCollection.h */,
				5D61FB531A84238B00846EE7 /* SDLPrioritizedObjectCollection.m */,
			);
			name = "Prioritized Objects";
			sourceTree = "<group>";
		};
		5D5934FA1A851AC900687FB9 /* @protocols */ = {
			isa = PBXGroup;
			children = (
				5D61FB5A1A84238B00846EE7 /* SDLProtocolListener.h */,
			);
			name = "@protocols";
			sourceTree = "<group>";
		};
		5D5934FD1A851B1500687FB9 /* @protocols */ = {
			isa = PBXGroup;
			children = (
				5D61FA841A84238A00846EE7 /* SDLDecoder.h */,
				5D61FAB51A84238A00846EE7 /* SDLEncoder.h */,
			);
			name = "@protocols";
			sourceTree = "<group>";
		};
		5D5934FE1A851B2500687FB9 /* @protocols */ = {
			isa = PBXGroup;
			children = (
				5D61FB671A84238B00846EE7 /* SDLProxyListener.h */,
			);
			name = "@protocols";
			sourceTree = "<group>";
		};
		5D5934FF1A851B8400687FB9 /* Superclasses */ = {
			isa = PBXGroup;
			children = (
				5D61FABA1A84238A00846EE7 /* SDLEnum.h */,
				5D61FABB1A84238A00846EE7 /* SDLEnum.m */,
				5DB92D301AC9C8BA00C15BB0 /* SDLRPCStruct.h */,
				5DB92D311AC9C8BA00C15BB0 /* SDLRPCStruct.m */,
				5D61FB7C1A84238B00846EE7 /* SDLRPCMessage.h */,
				5D61FB7D1A84238B00846EE7 /* SDLRPCMessage.m */,
				5D61FB801A84238B00846EE7 /* SDLRPCNotification.h */,
				5D61FB811A84238B00846EE7 /* SDLRPCNotification.m */,
				5D61FB841A84238B00846EE7 /* SDLRPCRequest.h */,
				5D61FB851A84238B00846EE7 /* SDLRPCRequest.m */,
				5D61FB881A84238B00846EE7 /* SDLRPCResponse.h */,
				5D61FB891A84238B00846EE7 /* SDLRPCResponse.m */,
			);
			name = Superclasses;
			sourceTree = "<group>";
		};
		5D5935001A851D0B00687FB9 /* @protocols */ = {
			isa = PBXGroup;
			children = (
				5D61FBED1A84238C00846EE7 /* SDLTransportDelegate.h */,
			);
			name = "@protocols";
			sourceTree = "<group>";
		};
		5D5935011A851D7E00687FB9 /* Header */ = {
			isa = PBXGroup;
			children = (
				5D61FB581A84238B00846EE7 /* SDLProtocolHeader.h */,
				5D61FB591A84238B00846EE7 /* SDLProtocolHeader.m */,
				5D61FC081A84238C00846EE7 /* SDLV1ProtocolHeader.h */,
				5D61FC091A84238C00846EE7 /* SDLV1ProtocolHeader.m */,
				5D61FC0C1A84238C00846EE7 /* SDLV2ProtocolHeader.h */,
				5D61FC0D1A84238C00846EE7 /* SDLV2ProtocolHeader.m */,
			);
			name = Header;
			sourceTree = "<group>";
		};
		5D5935021A851D8700687FB9 /* Message */ = {
			isa = PBXGroup;
			children = (
				5D61FB5B1A84238B00846EE7 /* SDLProtocolMessage.h */,
				5D61FB5C1A84238B00846EE7 /* SDLProtocolMessage.m */,
				5D61FC0A1A84238C00846EE7 /* SDLV1ProtocolMessage.h */,
				5D61FC0B1A84238C00846EE7 /* SDLV1ProtocolMessage.m */,
				5D61FC0E1A84238C00846EE7 /* SDLV2ProtocolMessage.h */,
				5D61FC0F1A84238C00846EE7 /* SDLV2ProtocolMessage.m */,
			);
			name = Message;
			sourceTree = "<group>";
		};
		5D5935031A851E1100687FB9 /* Factories */ = {
			isa = PBXGroup;
			children = (
				5D61FB861A84238B00846EE7 /* SDLRPCRequestFactory.h */,
				5D61FB871A84238B00846EE7 /* SDLRPCRequestFactory.m */,
			);
			name = Factories;
			sourceTree = "<group>";
		};
		5D5935041A851E1A00687FB9 /* Payload */ = {
			isa = PBXGroup;
			children = (
				5D61FB821A84238B00846EE7 /* SDLRPCPayload.h */,
				5D61FB831A84238B00846EE7 /* SDLRPCPayload.m */,
			);
			name = Payload;
			sourceTree = "<group>";
		};
		5D59DD451B14FDD000BE744D /* ProxySpecs */ = {
			isa = PBXGroup;
			children = (
				5D59DD461B14FDEE00BE744D /* SDLLockScreenStatusManagerSpec.m */,
			);
			name = ProxySpecs;
			sourceTree = "<group>";
		};
		5D6008871BE3ED470094A505 /* State Machine */ = {
			isa = PBXGroup;
			children = (
				5D6008881BE3ED540094A505 /* SDLStateMachine.h */,
				5D6008891BE3ED540094A505 /* SDLStateMachine.m */,
			);
			name = "State Machine";
			sourceTree = "<group>";
		};
		5D616B501D59042B00553F6B /* Errors */ = {
			isa = PBXGroup;
			children = (
				5DA3F3581BC448480026F2D0 /* SDLError.h */,
				5DA3F3591BC448480026F2D0 /* SDLError.m */,
				5D616B511D59044400553F6B /* SDLErrorConstants.h */,
			);
			name = Errors;
			sourceTree = "<group>";
		};
		5D61FA1D1A84237100846EE7 /* SmartDeviceLink */ = {
			isa = PBXGroup;
			children = (
				5DA3F3511BC4477B0026F2D0 /* Developer API */,
				5D5934F61A85189500687FB9 /* Utilities */,
				5D5934F51A8516C800687FB9 /* Debug */,
				5D5934F01A85161A00687FB9 /* Transport */,
				5D5934EF1A85160F00687FB9 /* RPCs */,
				5D5934EE1A85160900687FB9 /* Protocol */,
				5D5934ED1A85160400687FB9 /* Proxy */,
				5D61FA201A84237100846EE7 /* SmartDeviceLink.h */,
				5D1665A01CF5D5DA00CC4CA1 /* .gitignore */,
				5D1665A11CF5D5DA00CC4CA1 /* .travis.yml */,
				5D1665A21CF5D5DA00CC4CA1 /* Cartfile.private */,
				5D1665A31CF5D5DA00CC4CA1 /* CHANGELOG.md */,
				5D1665A41CF5D5DA00CC4CA1 /* DEPENDENCIES.md */,
				5D1665A51CF5D5DA00CC4CA1 /* LICENSE */,
				5D1665A61CF5D5DA00CC4CA1 /* README.md */,
				5D1665A71CF5D5DA00CC4CA1 /* SmartDeviceLink-iOS.podspec */,
				5D61FA1E1A84237100846EE7 /* Supporting Files */,
			);
			path = SmartDeviceLink;
			sourceTree = "<group>";
		};
		5D61FA1E1A84237100846EE7 /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				5D61FA1F1A84237100846EE7 /* Info.plist */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		5D61FA2C1A84237100846EE7 /* SmartDeviceLinkTests */ = {
			isa = PBXGroup;
			children = (
				167ED9231A9BB86300797BE5 /* Libraries */,
				5DAE06711BDEC68700F9B498 /* Developer API Tests */,
				5D59DD451B14FDD000BE744D /* ProxySpecs */,
				5DB92D201AC47AC400C15BB0 /* UtilitiesSpecs */,
				1680B1041A9CD7AD00DBD79E /* ProtocolSpecs */,
				162E81E01A9BDE8A00906325 /* RPCSpecs */,
				5D61FA2D1A84237100846EE7 /* Supporting Files */,
				167ED9451A9BCE5D00797BE5 /* SwiftSpec.swift */,
			);
			path = SmartDeviceLinkTests;
			sourceTree = "<group>";
		};
		5D61FA2D1A84237100846EE7 /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				5D9F50711BE7DD4C00FEF399 /* Assets */,
				5D61FA2E1A84237100846EE7 /* Info.plist */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		5D6CC8ED1C610E490027F60A /* Security */ = {
			isa = PBXGroup;
			children = (
				5D6CC8EE1C610E660027F60A /* SDLSecurityType.h */,
			);
			name = Security;
			sourceTree = "<group>";
		};
		5D6EB4C61BF274F400693731 /* Utilities */ = {
			isa = PBXGroup;
			children = (
				5DB1BCE41D245629002FFC37 /* State Machine */,
				5D6EB4C71BF28D6800693731 /* Categories */,
			);
			name = Utilities;
			sourceTree = "<group>";
		};
		5D6EB4C71BF28D6800693731 /* Categories */ = {
			isa = PBXGroup;
			children = (
				5D6EB4CB1BF28DC600693731 /* NSMapTable+SubscriptingSpec.m */,
			);
			name = Categories;
			sourceTree = "<group>";
		};
		5D6F7A301BC5B7100070BF37 /* Lock Screen UI */ = {
			isa = PBXGroup;
			children = (
				DA7515951D95FAA000F29323 /* iOS 7 Assets */,
				5D6F7A3D1BC811FC0070BF37 /* SDLAssets.xcassets */,
				5D616B481D552F7A00553F6B /* SDLLockScreen.storyboard */,
				5D6F7A331BC5B9B60070BF37 /* SDLLockScreenViewController.h */,
				5D6F7A341BC5B9B60070BF37 /* SDLLockScreenViewController.m */,
			);
			name = "Lock Screen UI";
			sourceTree = "<group>";
		};
		5D76E31A1D3805E600647CFA /* LockScreen */ = {
			isa = PBXGroup;
			children = (
				5D76E3261D3D0A4700647CFA /* Utilities */,
				5D76E31B1D3805FF00647CFA /* SDLLockScreenManagerSpec.m */,
			);
			name = LockScreen;
			sourceTree = "<group>";
		};
		5D76E31F1D39731100647CFA /* Utilities */ = {
			isa = PBXGroup;
			children = (
				5D76E3201D39742300647CFA /* SDLViewControllerPresentable.h */,
				5D76E3221D39767000647CFA /* SDLLockScreenPresenter.h */,
				5D76E3231D39767000647CFA /* SDLLockScreenPresenter.m */,
			);
			name = Utilities;
			sourceTree = "<group>";
		};
		5D76E3261D3D0A4700647CFA /* Utilities */ = {
			isa = PBXGroup;
			children = (
				5D76E3271D3D0A8800647CFA /* SDLFakeViewControllerPresenter.h */,
				5D76E3281D3D0A8800647CFA /* SDLFakeViewControllerPresenter.m */,
			);
			name = Utilities;
			sourceTree = "<group>";
		};
		5D7F87F51CE51CD8002DD7C4 /* File Types */ = {
			isa = PBXGroup;
			children = (
				5D82042B1BCEC32F00D0A41B /* SDLFile.h */,
				5D82042C1BCEC32F00D0A41B /* SDLFile.m */,
				5D82042F1BD001C700D0A41B /* SDLArtwork.h */,
				5D8204301BD001C700D0A41B /* SDLArtwork.m */,
			);
			name = "File Types";
			sourceTree = "<group>";
		};
		5D7F87F61CE51CE1002DD7C4 /* Transaction Operations */ = {
			isa = PBXGroup;
			children = (
				5D3E48771D6F3DA40000BFEF /* Superclass Operation */,
				5D1665C21CF8CA2700CC4CA1 /* SDLListFilesOperation.h */,
				5D1665C31CF8CA2700CC4CA1 /* SDLListFilesOperation.m */,
				5D79A0391CE36F030035797B /* SDLUploadFileOperation.h */,
				5D79A03A1CE36F030035797B /* SDLUploadFileOperation.m */,
				5D7F87E91CE3C1A1002DD7C4 /* SDLDeleteFileOperation.h */,
				5D7F87EA1CE3C1A1002DD7C4 /* SDLDeleteFileOperation.m */,
			);
			name = "Transaction Operations";
			sourceTree = "<group>";
		};
		5D7F87F71CE51CEE002DD7C4 /* Utilities */ = {
			isa = PBXGroup;
			children = (
				5D7F87ED1CE3C294002DD7C4 /* SDLFileManagerConstants.h */,
				5D7F87F11CE3C29E002DD7C4 /* SDLFileWrapper.h */,
				5D7F87F21CE3C29E002DD7C4 /* SDLFileWrapper.m */,
			);
			name = Utilities;
			sourceTree = "<group>";
		};
		5D8204171BCD80A200D0A41B /* Configurations */ = {
			isa = PBXGroup;
			children = (
				5D6F7A2C1BC5650B0070BF37 /* SDLLifecycleConfiguration.h */,
				5D6F7A2D1BC5650B0070BF37 /* SDLLifecycleConfiguration.m */,
				5D8204181BCD80BA00D0A41B /* SDLLockScreenConfiguration.h */,
				5D8204191BCD80BA00D0A41B /* SDLLockScreenConfiguration.m */,
				5D82041C1BCD8E6100D0A41B /* SDLConfiguration.h */,
				5D82041D1BCD8E6100D0A41B /* SDLConfiguration.m */,
			);
			name = Configurations;
			sourceTree = "<group>";
		};
		5D8204291BCEA91400D0A41B /* Permissions */ = {
			isa = PBXGroup;
			children = (
				5D1665CC1CF8CA8A00CC4CA1 /* SDLPermissionConstants.h */,
				5D1665C61CF8CA3D00CC4CA1 /* SDLPermissionFilter.h */,
				5D1665C71CF8CA3D00CC4CA1 /* SDLPermissionFilter.m */,
				5D8204241BCEA8A600D0A41B /* SDLPermissionManager.h */,
				5D8204251BCEA8A600D0A41B /* SDLPermissionManager.m */,
			);
			name = Permissions;
			sourceTree = "<group>";
		};
		5D82042A1BCEA91E00D0A41B /* Files */ = {
			isa = PBXGroup;
			children = (
				5D8204201BCEA89A00D0A41B /* SDLFileManager.h */,
				5D8204211BCEA89A00D0A41B /* SDLFileManager.m */,
				5D7F87F51CE51CD8002DD7C4 /* File Types */,
				5D7F87F61CE51CE1002DD7C4 /* Transaction Operations */,
				5D7F87F71CE51CEE002DD7C4 /* Utilities */,
			);
			name = Files;
			sourceTree = "<group>";
		};
		5D9F50711BE7DD4C00FEF399 /* Assets */ = {
			isa = PBXGroup;
			children = (
				5D850AAF1D4907C500E6E7EE /* TestLockScreenAppIcon.png */,
				5D9F50721BE7DD4C00FEF399 /* testFileJSON.json */,
				5D9F50731BE7DD4C00FEF399 /* testImageBMP.bmp */,
				5D9F50741BE7DD4C00FEF399 /* testImageJPEG.jpeg */,
				5D9F50751BE7DD4C00FEF399 /* testImageJPG.jpg */,
				5D9F50761BE7DD4C00FEF399 /* testImagePNG.png */,
				5D9F50771BE7DD4C00FEF399 /* testImageTIFF.tiff */,
			);
			path = Assets;
			sourceTree = "<group>";
		};
		5D9F507E1BE7E46600FEF399 /* Files */ = {
			isa = PBXGroup;
			children = (
				5DB1BCE21D2455FD002FFC37 /* Connection Manager */,
				5DB1BCD61D243A91002FFC37 /* Operations */,
				5DAE06721BDEC6C000F9B498 /* SDLFileSpec.m */,
				5DAE06741BDEC6D600F9B498 /* SDLArtworkSpec.m */,
				5D9F50821BEA5C6100FEF399 /* SDLFileManagerSpec.m */,
			);
			name = Files;
			sourceTree = "<group>";
		};
		5D9F507F1BE7E6C900FEF399 /* Permissions */ = {
			isa = PBXGroup;
			children = (
				5D9F50801BE7E6E300FEF399 /* SDLPermissionsManagerSpec.m */,
				5DB1BCD71D243AA6002FFC37 /* SDLPermissionFilterSpec.m */,
			);
			name = Permissions;
			sourceTree = "<group>";
		};
		5DA3F3511BC4477B0026F2D0 /* Developer API */ = {
			isa = PBXGroup;
			children = (
				5D6F7A301BC5B7100070BF37 /* Lock Screen UI */,
				5DA3F3611BC448690026F2D0 /* Handler Additions */,
				5DA3F3561BC4480E0026F2D0 /* Utilities */,
				5D8204171BCD80A200D0A41B /* Configurations */,
				5DBAE0A61D355EF200CE00BF /* Managers */,
				5DBAE0A71D355F0C00CE00BF /* Dispatchers */,
			);
			name = "Developer API";
			sourceTree = "<group>";
		};
		5DA3F3561BC4480E0026F2D0 /* Utilities */ = {
			isa = PBXGroup;
			children = (
				5DFFB9141BD7C89700DB3F04 /* SDLConnectionManagerType.h */,
				5D616B501D59042B00553F6B /* Errors */,
				5DA3F35C1BC4484B0026F2D0 /* Notifications */,
				5DA3F3571BC448160026F2D0 /* Categories */,
				5D6008871BE3ED470094A505 /* State Machine */,
			);
			name = Utilities;
			sourceTree = "<group>";
		};
		5DA3F3571BC448160026F2D0 /* Categories */ = {
			isa = PBXGroup;
			children = (
				5D1665CA1CF8CA6700CC4CA1 /* NSNumber+NumberType.h */,
				5DA3F3521BC448060026F2D0 /* NSMapTable+Subscripting.h */,
				5DA3F3531BC448060026F2D0 /* NSMapTable+Subscripting.m */,
				5DA102A21D4122C700C15826 /* NSMutableDictionary+SafeRemove.h */,
				5DA102A31D4122C700C15826 /* NSMutableDictionary+SafeRemove.m */,
				5D3E48C91D7722FE0000BFEF /* NSBundle+SDLBundle.h */,
				5D3E48CA1D7722FE0000BFEF /* NSBundle+SDLBundle.m */,
			);
			name = Categories;
			sourceTree = "<group>";
		};
		5DA3F35C1BC4484B0026F2D0 /* Notifications */ = {
			isa = PBXGroup;
			children = (
				5DA3F35D1BC448590026F2D0 /* SDLNotificationConstants.h */,
				5DA3F35E1BC448590026F2D0 /* SDLNotificationConstants.m */,
			);
			name = Notifications;
			sourceTree = "<group>";
		};
		5DA3F3611BC448690026F2D0 /* Handler Additions */ = {
			isa = PBXGroup;
			children = (
				5D6F7A2A1BC45BF70070BF37 /* SDLRequestHandler.h */,
			);
			name = "Handler Additions";
			sourceTree = "<group>";
		};
		5DAE06711BDEC68700F9B498 /* Developer API Tests */ = {
			isa = PBXGroup;
			children = (
				5DBAE0A91D35888D00CE00BF /* Dispatchers */,
				5DBAE0A81D35886E00CE00BF /* Managers */,
				5DB1BCDB1D243DA8002FFC37 /* Configurations */,
				5D6EB4C61BF274F400693731 /* Utilities */,
			);
			name = "Developer API Tests";
			sourceTree = "<group>";
		};
		5DB1BCD61D243A91002FFC37 /* Operations */ = {
			isa = PBXGroup;
			children = (
				5DB1BCD01D243A8E002FFC37 /* SDLDeleteFileOperationSpec.m */,
				5DB1BCD11D243A8E002FFC37 /* SDLListFilesOperationSpec.m */,
				5DB1BCD21D243A8E002FFC37 /* SDLUploadFileOperationSpec.m */,
			);
			name = Operations;
			sourceTree = "<group>";
		};
		5DB1BCDB1D243DA8002FFC37 /* Configurations */ = {
			isa = PBXGroup;
			children = (
				5DB1BCDC1D243DC3002FFC37 /* SDLLifecycleConfigurationSpec.m */,
				5DB1BCDE1D243DD3002FFC37 /* SDLLockScreenConfigurationSpec.m */,
				5DB1BCE01D243DDE002FFC37 /* SDLConfigurationSpec.m */,
			);
			name = Configurations;
			sourceTree = "<group>";
		};
		5DB1BCE21D2455FD002FFC37 /* Connection Manager */ = {
			isa = PBXGroup;
			children = (
				5D9F50851BED412E00FEF399 /* TestConnectionManager.h */,
				5D9F50861BED412E00FEF399 /* TestConnectionManager.m */,
			);
			name = "Connection Manager";
			sourceTree = "<group>";
		};
		5DB1BCE31D245614002FFC37 /* Utilities */ = {
			isa = PBXGroup;
			children = (
				5DB1BCE51D245647002FFC37 /* TestStateMachineTarget.h */,
				5DB1BCE61D245647002FFC37 /* TestStateMachineTarget.m */,
			);
			name = Utilities;
			sourceTree = "<group>";
		};
		5DB1BCE41D245629002FFC37 /* State Machine */ = {
			isa = PBXGroup;
			children = (
				5DB1BCE31D245614002FFC37 /* Utilities */,
				5DB1BCD91D243D85002FFC37 /* SDLStateMachineSpec.m */,
			);
			name = "State Machine";
			sourceTree = "<group>";
		};
		5DB92D201AC47AC400C15BB0 /* UtilitiesSpecs */ = {
			isa = PBXGroup;
			children = (
				DA1166D71D14601C00438CEA /* Touches */,
				5DEE55BE1B8509A5004F0D0F /* HTTP Connection */,
				5DB92D2B1AC4A32A00C15BB0 /* Prioritized Objects */,
				5DB92D231AC47B2C00C15BB0 /* SDLHexUtilitySpec.m */,
				5DB92D251AC4836F00C15BB0 /* SDLJingleSpec.m */,
				5DC978251B7A38640012C2F1 /* SDLGlobalsSpec.m */,
			);
			name = UtilitiesSpecs;
			sourceTree = "<group>";
		};
		5DB92D2B1AC4A32A00C15BB0 /* Prioritized Objects */ = {
			isa = PBXGroup;
			children = (
				5DB92D2C1AC4A34F00C15BB0 /* SDLPrioritizedObjectCollectionSpec.m */,
				5DB92D2E1AC59F0000C15BB0 /* SDLObjectWithPrioritySpec.m */,
			);
			name = "Prioritized Objects";
			sourceTree = "<group>";
		};
		5DBAE0A51D355EE700CE00BF /* Lock Screen */ = {
			isa = PBXGroup;
			children = (
				5D76E31F1D39731100647CFA /* Utilities */,
				5D4D67B21D30161600468B4A /* SDLLockScreenManager.h */,
				5D4D67B31D30161600468B4A /* SDLLockScreenManager.m */,
			);
			name = "Lock Screen";
			sourceTree = "<group>";
		};
		5DBAE0A61D355EF200CE00BF /* Managers */ = {
			isa = PBXGroup;
			children = (
				5DA3F36E1BC4489A0026F2D0 /* SDLManager.h */,
				5DA3F36F1BC4489A0026F2D0 /* SDLManager.m */,
				5D2F58071D0717D5001085CE /* SDLManagerDelegate.h */,
				5D1654571D3E79CA00554D93 /* Lifecycle */,
				5DBAE0A51D355EE700CE00BF /* Lock Screen */,
				5D82042A1BCEA91E00D0A41B /* Files */,
				5D8204291BCEA91400D0A41B /* Permissions */,
			);
			name = Managers;
			sourceTree = "<group>";
		};
		5DBAE0A71D355F0C00CE00BF /* Dispatchers */ = {
			isa = PBXGroup;
			children = (
				5D3E48781D6F86EC0000BFEF /* Notifications */,
				5D3E48821D74813B0000BFEF /* Responses */,
			);
			name = Dispatchers;
			sourceTree = "<group>";
		};
		5DBAE0A81D35886E00CE00BF /* Managers */ = {
			isa = PBXGroup;
			children = (
				5D1654541D3E753100554D93 /* Lifecycle */,
				5D76E31A1D3805E600647CFA /* LockScreen */,
				5D9F507F1BE7E6C900FEF399 /* Permissions */,
				5D9F507E1BE7E46600FEF399 /* Files */,
				5D5DBF0A1D48E5E600D4F914 /* SDLLockScreenViewControllerSnapshotTests.m */,
			);
			name = Managers;
			sourceTree = "<group>";
		};
		5DBAE0A91D35888D00CE00BF /* Dispatchers */ = {
			isa = PBXGroup;
			children = (
				5DBAE0AA1D3588AC00CE00BF /* SDLNotificationDispatcherSpec.m */,
				5DBAE0AC1D368D1A00CE00BF /* SDLResponseDispatcherSpec.m */,
			);
			name = Dispatchers;
			sourceTree = "<group>";
		};
		5DCC199D1B8221D2004FFAD9 /* HTTP Connection */ = {
			isa = PBXGroup;
			children = (
				5DCC199E1B8221F3004FFAD9 /* SDLURLSession.h */,
				5DCC199F1B8221F3004FFAD9 /* SDLURLSession.m */,
				5DCC19A21B822804004FFAD9 /* SDLURLRequestTask.h */,
				5DCC19A31B822804004FFAD9 /* SDLURLRequestTask.m */,
			);
			name = "HTTP Connection";
			sourceTree = "<group>";
		};
		5DE372A71ACC35C100849FAA /* @protocols */ = {
			isa = PBXGroup;
			children = (
				5DE372A51ACC35B400849FAA /* SDLDebugToolConsole.h */,
			);
			name = "@protocols";
			sourceTree = "<group>";
		};
		5DEE55BE1B8509A5004F0D0F /* HTTP Connection */ = {
			isa = PBXGroup;
			children = (
				5DEE55BF1B8509CB004F0D0F /* SDLURLRequestTaskSpec.m */,
				5DF2BB9C1B94E38A00CE5994 /* SDLURLSessionSpec.m */,
			);
			name = "HTTP Connection";
			sourceTree = "<group>";
		};
		DA1166D71D14601C00438CEA /* Touches */ = {
			isa = PBXGroup;
			children = (
				DA4353E61D2721680099B8C4 /* DispatchTimerSpec.m */,
				DA4353E71D2721680099B8C4 /* SDLTouchManagerSpec.m */,
				DA4353E81D2721680099B8C4 /* SDLTouchSpec.m */,
				DA4353DE1D271FD10099B8C4 /* CGPointUtilSpec.m */,
				DA4353E21D2720A30099B8C4 /* SDLPinchGestureSpec.m */,
			);
			name = Touches;
			sourceTree = "<group>";
		};
		DA7515951D95FAA000F29323 /* iOS 7 Assets */ = {
			isa = PBXGroup;
			children = (
				DA7515961D95FAA000F29323 /* lock_arrow_down */,
				DA75159F1D95FAA000F29323 /* lock_arrow_up */,
				DA7515A81D95FAA000F29323 /* sdl_logo */,
			);
			path = "iOS 7 Assets";
			sourceTree = "<group>";
		};
		DA7515961D95FAA000F29323 /* lock_arrow_down */ = {
			isa = PBXGroup;
			children = (
				DA7515971D95FAA000F29323 /* black */,
				DA75159B1D95FAA000F29323 /* white */,
			);
			path = lock_arrow_down;
			sourceTree = "<group>";
		};
		DA7515971D95FAA000F29323 /* black */ = {
			isa = PBXGroup;
			children = (
				DA7515981D95FAA000F29323 /* lock_arrow_down_black.png */,
				DA7515991D95FAA000F29323 /* lock_arrow_down_black@2x.png */,
				DA75159A1D95FAA000F29323 /* lock_arrow_down_black@3x.png */,
			);
			path = black;
			sourceTree = "<group>";
		};
		DA75159B1D95FAA000F29323 /* white */ = {
			isa = PBXGroup;
			children = (
				DA75159C1D95FAA000F29323 /* lock_arrow_down_white.png */,
				DA75159D1D95FAA000F29323 /* lock_arrow_down_white@2x.png */,
				DA75159E1D95FAA000F29323 /* lock_arrow_down_white@3x.png */,
			);
			path = white;
			sourceTree = "<group>";
		};
		DA75159F1D95FAA000F29323 /* lock_arrow_up */ = {
			isa = PBXGroup;
			children = (
				DA7515A01D95FAA000F29323 /* black */,
				DA7515A41D95FAA000F29323 /* white */,
			);
			path = lock_arrow_up;
			sourceTree = "<group>";
		};
		DA7515A01D95FAA000F29323 /* black */ = {
			isa = PBXGroup;
			children = (
				DA7515A11D95FAA000F29323 /* lock_arrow_up_black.png */,
				DA7515A21D95FAA000F29323 /* lock_arrow_up_black@2x.png */,
				DA7515A31D95FAA000F29323 /* lock_arrow_up_black@3x.png */,
			);
			path = black;
			sourceTree = "<group>";
		};
		DA7515A41D95FAA000F29323 /* white */ = {
			isa = PBXGroup;
			children = (
				DA7515A51D95FAA000F29323 /* lock_arrow_up_white.png */,
				DA7515A61D95FAA000F29323 /* lock_arrow_up_white@2x.png */,
				DA7515A71D95FAA000F29323 /* lock_arrow_up_white@3x.png */,
			);
			path = white;
			sourceTree = "<group>";
		};
		DA7515A81D95FAA000F29323 /* sdl_logo */ = {
			isa = PBXGroup;
			children = (
				DA7515A91D95FAA000F29323 /* black */,
				DA7515AD1D95FAA000F29323 /* white */,
			);
			path = sdl_logo;
			sourceTree = "<group>";
		};
		DA7515A91D95FAA000F29323 /* black */ = {
			isa = PBXGroup;
			children = (
				DA7515AA1D95FAA000F29323 /* sdl_logo_black.png */,
				DA7515AB1D95FAA000F29323 /* sdl_logo_black@2x.png */,
				DA7515AC1D95FAA000F29323 /* sdl_logo_black@3x.png */,
			);
			path = black;
			sourceTree = "<group>";
		};
		DA7515AD1D95FAA000F29323 /* white */ = {
			isa = PBXGroup;
			children = (
				DA7515AE1D95FAA000F29323 /* sdl_logo_white.png */,
				DA7515AF1D95FAA000F29323 /* sdl_logo_white@2x.png */,
				DA7515B01D95FAA000F29323 /* sdl_logo_white@3x.png */,
			);
			path = white;
			sourceTree = "<group>";
		};
		DAC5724C1D0FE3B60004288B /* Touches */ = {
			isa = PBXGroup;
			children = (
				DAC572551D1067270004288B /* SDLTouchManager.h */,
				DAC572561D1067270004288B /* SDLTouchManager.m */,
				DAC5725F1D10BD690004288B /* SDLTouchManagerDelegate.h */,
				DAC5725A1D10B81E0004288B /* SDLTouch.h */,
				DAC572591D10B81E0004288B /* SDLTouch.m */,
				DAC572611D10C5020004288B /* SDLPinchGesture.h */,
				DAC572601D10C5020004288B /* SDLPinchGesture.m */,
				DAC572651D10C5640004288B /* CGPoint_Util.h */,
				DAC572641D10C5640004288B /* CGPoint_Util.m */,
				DAC572691D10D5FC0004288B /* dispatch_timer.h */,
				DAC572681D10D5FC0004288B /* dispatch_timer.m */,
			);
			name = Touches;
			sourceTree = "<group>";
		};
		E9C32B831AB20B2900F283AF /* @categories */ = {
			isa = PBXGroup;
			children = (
				E9C32B981AB20C5900F283AF /* EAAccessory+SDLProtocols.h */,
				E9C32B991AB20C5900F283AF /* EAAccessory+SDLProtocols.m */,
				E9C32B9A1AB20C5900F283AF /* EAAccessoryManager+SDLProtocols.h */,
				E9C32B9B1AB20C5900F283AF /* EAAccessoryManager+SDLProtocols.m */,
				E9C32B841AB20B4300F283AF /* NSThread+ThreadIndex.h */,
				E9C32B851AB20B4300F283AF /* NSThread+ThreadIndex.m */,
			);
			name = "@categories";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		5D61FA191A84237100846EE7 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				5DA3F35A1BC448480026F2D0 /* SDLError.h in Headers */,
				5DA3F35F1BC448590026F2D0 /* SDLNotificationConstants.h in Headers */,
				5DE5ABB71B0E38C90067BB02 /* SDLSystemRequest.h in Headers */,
				5DA3F3701BC4489A0026F2D0 /* SDLManager.h in Headers */,
				E9C32B931AB20BA200F283AF /* SDLIAPSessionDelegate.h in Headers */,
				5DE5ABB81B0E38C90067BB02 /* SDLSystemRequestResponse.h in Headers */,
				5D61FCA51A84238C00846EE7 /* SDLEndAudioPassThruResponse.h in Headers */,
				5D3E48CB1D7722FE0000BFEF /* NSBundle+SDLBundle.h in Headers */,
				5D61FD851A84238C00846EE7 /* SDLSetDisplayLayoutResponse.h in Headers */,
				5D61FD751A84238C00846EE7 /* SDLRPCResponse.h in Headers */,
				5D61FC901A84238C00846EE7 /* SDLDisplayCapabilities.h in Headers */,
				5D61FCE81A84238C00846EE7 /* SDLLanguage.h in Headers */,
				5D61FC841A84238C00846EE7 /* SDLDeviceLevelStatus.h in Headers */,
				5DB92D321AC9C8BA00C15BB0 /* SDLRPCStruct.h in Headers */,
				5D61FD151A84238C00846EE7 /* SDLOnLockScreenStatus.h in Headers */,
				5D61FD291A84238C00846EE7 /* SDLPerformInteraction.h in Headers */,
				DAC572571D1067270004288B /* SDLTouchManager.h in Headers */,
				5D61FD521A84238C00846EE7 /* SDLProxyFactory.h in Headers */,
				5D61FCDA1A84238C00846EE7 /* SDLJingle.h in Headers */,
				5D61FE0D1A84238C00846EE7 /* SDLVRCapabilities.h in Headers */,
				5D61FC531A84238C00846EE7 /* SDLButtonEventMode.h in Headers */,
				5D61FC781A84238C00846EE7 /* SDLDeleteFileResponse.h in Headers */,
				5D61FC5F1A84238C00846EE7 /* SDLCharacterSet.h in Headers */,
				5D61FCFF1A84238C00846EE7 /* SDLOnAppInterfaceUnregistered.h in Headers */,
				5D61FDC51A84238C00846EE7 /* SDLTCPTransport.h in Headers */,
				5D6CC8EF1C610E660027F60A /* SDLSecurityType.h in Headers */,
				5D61FCF61A84238C00846EE7 /* SDLMediaClockFormat.h in Headers */,
				5D61FD831A84238C00846EE7 /* SDLSetDisplayLayout.h in Headers */,
				5D61FCC91A84238C00846EE7 /* SDLIgnitionStableStatus.h in Headers */,
				DA9F7E6B1DCBFB0700ACAE48 /* SDLDeliveryMode.h in Headers */,
				E9C32B941AB20BA200F283AF /* SDLStreamDelegate.h in Headers */,
				5D61FDBB1A84238C00846EE7 /* SDLSystemAction.h in Headers */,
				5D61FC9C1A84238C00846EE7 /* SDLEmergencyEventType.h in Headers */,
				5D61FD131A84238C00846EE7 /* SDLOnLanguageChange.h in Headers */,
				5D61FDE71A84238C00846EE7 /* SDLUnsubscribeButton.h in Headers */,
				5D61FC691A84238C00846EE7 /* SDLConsoleController.h in Headers */,
				5D61FCAB1A84238C00846EE7 /* SDLFuelCutoffStatus.h in Headers */,
				5D1665C81CF8CA3D00CC4CA1 /* SDLPermissionFilter.h in Headers */,
				E9C32B911AB20BA200F283AF /* SDLIAPSession.h in Headers */,
				5D61FCD71A84238C00846EE7 /* SDLInteractionMode.h in Headers */,
				5D61FC391A84238C00846EE7 /* SDLAlertManeuver.h in Headers */,
				5D61FC861A84238C00846EE7 /* SDLDeviceStatus.h in Headers */,
				5D61FCC71A84238C00846EE7 /* SDLIAPTransport.h in Headers */,
				5D61FC6D1A84238C00846EE7 /* SDLCreateInteractionChoiceSetResponse.h in Headers */,
				5D8204221BCEA89A00D0A41B /* SDLFileManager.h in Headers */,
				5D4D67B41D30161600468B4A /* SDLLockScreenManager.h in Headers */,
				5D61FE111A84238C00846EE7 /* SDLWarningLightStatus.h in Headers */,
				5D61FC7A1A84238C00846EE7 /* SDLDeleteInteractionChoiceSet.h in Headers */,
				5D61FC3B1A84238C00846EE7 /* SDLAlertManeuverResponse.h in Headers */,
				5D61FC6F1A84238C00846EE7 /* SDLDebugTool.h in Headers */,
				5D61FDB71A84238C00846EE7 /* SDLSyncPData.h in Headers */,
				5D61FD011A84238C00846EE7 /* SDLOnAudioPassThru.h in Headers */,
				5D61FDCB1A84238C00846EE7 /* SDLTextFieldName.h in Headers */,
				5D61FD8B1A84238C00846EE7 /* SDLSetMediaClockTimer.h in Headers */,
				5D61FD031A84238C00846EE7 /* SDLOnButtonEvent.h in Headers */,
				5D61FDAF1A84238C00846EE7 /* SDLSubscribeButtonResponse.h in Headers */,
				5D61FCB51A84238C00846EE7 /* SDLGetVehicleData.h in Headers */,
				5D61FDEB1A84238C00846EE7 /* SDLUnsubscribeVehicleData.h in Headers */,
				5DA3F3541BC448060026F2D0 /* NSMapTable+Subscripting.h in Headers */,
				5D61FC591A84238C00846EE7 /* SDLCarModeStatus.h in Headers */,
				5D1665C41CF8CA2700CC4CA1 /* SDLListFilesOperation.h in Headers */,
				5D61FC2B1A84238C00846EE7 /* SDLAbstractTransport.h in Headers */,
				5D61FD791A84238C00846EE7 /* SDLScreenParams.h in Headers */,
				5D61FDCF1A84238C00846EE7 /* SDLTireStatus.h in Headers */,
				5D61FDFD1A84238C00846EE7 /* SDLVehicleDataActiveStatus.h in Headers */,
				5D61FD811A84238C00846EE7 /* SDLSetAppIconResponse.h in Headers */,
				5D61FC551A84238C00846EE7 /* SDLButtonName.h in Headers */,
				5D616B531D59044400553F6B /* SDLErrorConstants.h in Headers */,
				5D61FD9F1A84238C00846EE7 /* SDLSoftButton.h in Headers */,
				5D61FD551A84238C00846EE7 /* SDLPutFile.h in Headers */,
				5DE372A61ACC35B400849FAA /* SDLDebugToolConsole.h in Headers */,
				5D61FD091A84238C00846EE7 /* SDLOnDriverDistraction.h in Headers */,
				E9C32B9E1AB20C5900F283AF /* EAAccessoryManager+SDLProtocols.h in Headers */,
				5D61FC4B1A84238C00846EE7 /* SDLBeltStatus.h in Headers */,
				DAC5726B1D10D5FC0004288B /* dispatch_timer.h in Headers */,
				5D61FC351A84238C00846EE7 /* SDLAirbagStatus.h in Headers */,
				5D61FC8A1A84238C00846EE7 /* SDLDiagnosticMessageResponse.h in Headers */,
				5D61FC2D1A84238C00846EE7 /* SDLAddCommand.h in Headers */,
				5D61FD931A84238C00846EE7 /* SDLShowConstantTBTResponse.h in Headers */,
				5D61FCCB1A84238C00846EE7 /* SDLIgnitionStatus.h in Headers */,
				5D61FCB71A84238C00846EE7 /* SDLGetVehicleDataResponse.h in Headers */,
				5D61FDA91A84238C00846EE7 /* SDLSpeechCapabilities.h in Headers */,
				5D61FCE01A84238C00846EE7 /* SDLKeyboardEvent.h in Headers */,
				5D3E48751D6F3B330000BFEF /* SDLAsynchronousOperation.h in Headers */,
				DA9F7E631DCBFAC800ACAE48 /* SDLDateTime.h in Headers */,
				5D61FCEA1A84238C00846EE7 /* SDLLayoutMode.h in Headers */,
				5D61FD7F1A84238C00846EE7 /* SDLSetAppIcon.h in Headers */,
				5D61FDD11A84238C00846EE7 /* SDLTouchCoord.h in Headers */,
				5D61FC7E1A84238C00846EE7 /* SDLDeleteSubMenu.h in Headers */,
				5D61FC451A84238C00846EE7 /* SDLAudioPassThruCapabilities.h in Headers */,
				5D61FDC71A84238C00846EE7 /* SDLTextAlignment.h in Headers */,
				5D61FD051A84238C00846EE7 /* SDLOnButtonPress.h in Headers */,
				5D61FCC51A84238C00846EE7 /* SDLHMIZoneCapabilities.h in Headers */,
				5D61FCAF1A84238C00846EE7 /* SDLGenericResponse.h in Headers */,
				5D61FC4F1A84238C00846EE7 /* SDLBodyInformation.h in Headers */,
				5D61FDAB1A84238C00846EE7 /* SDLStartTime.h in Headers */,
				5D61FD071A84238C00846EE7 /* SDLOnCommand.h in Headers */,
				5D61FD1D1A84238C00846EE7 /* SDLOnTBTClientState.h in Headers */,
				5D61FD9D1A84238C00846EE7 /* SDLSliderResponse.h in Headers */,
				5D61FDF31A84238C00846EE7 /* SDLUpdateTurnListResponse.h in Headers */,
				5D61FDDA1A84238C00846EE7 /* SDLTransportDelegate.h in Headers */,
				5D61FC411A84238C00846EE7 /* SDLAppHMIType.h in Headers */,
				5D61FCEE1A84238C00846EE7 /* SDLListFilesResponse.h in Headers */,
				5D61FC491A84238C00846EE7 /* SDLAudioType.h in Headers */,
				5D61FC761A84238C00846EE7 /* SDLDeleteFile.h in Headers */,
				5D61FD211A84238C00846EE7 /* SDLOnVehicleData.h in Headers */,
				5D61FD7D1A84238C00846EE7 /* SDLScrollableMessageResponse.h in Headers */,
				5D61FD431A84238C00846EE7 /* SDLProtocol.h in Headers */,
				5D8B17531AC9E11B006A6E1C /* SDLDialNumberResponse.h in Headers */,
				5D61FC921A84238C00846EE7 /* SDLDisplayType.h in Headers */,
				5D61FD0D1A84238C00846EE7 /* SDLOnHashChange.h in Headers */,
				5D61FDDF1A84238C00846EE7 /* SDLTTSChunkFactory.h in Headers */,
				5D61FC6B1A84238C00846EE7 /* SDLCreateInteractionChoiceSet.h in Headers */,
				5D61FCE61A84238C00846EE7 /* SDLKeypressMode.h in Headers */,
				5D61FD871A84238C00846EE7 /* SDLSetGlobalProperties.h in Headers */,
				E9C32B861AB20B4300F283AF /* NSThread+ThreadIndex.h in Headers */,
				5D61FC741A84238C00846EE7 /* SDLDeleteCommandResponse.h in Headers */,
				5D61FDF11A84238C00846EE7 /* SDLUpdateTurnList.h in Headers */,
				5D61FD671A84238C00846EE7 /* SDLResult.h in Headers */,
				5D61FD351A84238C00846EE7 /* SDLPowerModeStatus.h in Headers */,
				5D61FD971A84238C00846EE7 /* SDLSingleTireStatus.h in Headers */,
				5D61FCE21A84238C00846EE7 /* SDLKeyboardLayout.h in Headers */,
				5D76E3241D39767000647CFA /* SDLLockScreenPresenter.h in Headers */,
				5D61FD891A84238C00846EE7 /* SDLSetGlobalPropertiesResponse.h in Headers */,
				5D61FD8D1A84238C00846EE7 /* SDLSetMediaClockTimerResponse.h in Headers */,
				5D61FD3B1A84238C00846EE7 /* SDLPresetBankCapabilities.h in Headers */,
				5D8204311BD001C700D0A41B /* SDLArtwork.h in Headers */,
				5D53C46D1B7A99B9003526EA /* SDLStreamingMediaManager.h in Headers */,
				5D61FD0F1A84238C00846EE7 /* SDLOnHMIStatus.h in Headers */,
				5D61FD5F1A84238C00846EE7 /* SDLRegisterAppInterfaceResponse.h in Headers */,
				5D61FD191A84238C00846EE7 /* SDLOnSyncPData.h in Headers */,
				5D61FE091A84238C00846EE7 /* SDLVehicleDataType.h in Headers */,
				5DCC19A01B8221F3004FFAD9 /* SDLURLSession.h in Headers */,
				5D61FDB11A84238C00846EE7 /* SDLSubscribeVehicleData.h in Headers */,
				5DCF76F51ACDBAD300BB647B /* SDLSendLocation.h in Headers */,
				5D61FC9E1A84238C00846EE7 /* SDLEncodedSyncPData.h in Headers */,
				5D61FC291A84238C00846EE7 /* SDLAbstractProtocol.h in Headers */,
				5D61FDE11A84238C00846EE7 /* SDLTurn.h in Headers */,
				5D61FC801A84238C00846EE7 /* SDLDeleteSubMenuResponse.h in Headers */,
				5D61FDBD1A84238C00846EE7 /* SDLSystemContext.h in Headers */,
				5D61FC511A84238C00846EE7 /* SDLButtonCapabilities.h in Headers */,
				5D61FDE91A84238C00846EE7 /* SDLUnsubscribeButtonResponse.h in Headers */,
				5D61FCD51A84238C00846EE7 /* SDLImageType.h in Headers */,
				5D61FC2F1A84238C00846EE7 /* SDLAddCommandResponse.h in Headers */,
				5D61FD631A84238C00846EE7 /* SDLResetGlobalProperties.h in Headers */,
				5D61FDD71A84238C00846EE7 /* SDLTouchType.h in Headers */,
				5D61FDD31A84238C00846EE7 /* SDLTouchEvent.h in Headers */,
				5D61FD451A84238C00846EE7 /* SDLProtocolHeader.h in Headers */,
				5D61FCFA1A84238C00846EE7 /* SDLMyKey.h in Headers */,
				5D61FC981A84238C00846EE7 /* SDLECallInfo.h in Headers */,
				5D61FD7B1A84238C00846EE7 /* SDLScrollableMessage.h in Headers */,
				5D61FD3D1A84238C00846EE7 /* SDLPrimaryAudioSource.h in Headers */,
				DAC5725C1D10B81E0004288B /* SDLTouch.h in Headers */,
				5D6F7A2E1BC5650B0070BF37 /* SDLLifecycleConfiguration.h in Headers */,
				5D61FCCD1A84238C00846EE7 /* SDLImage.h in Headers */,
				5D61FD481A84238C00846EE7 /* SDLProtocolMessage.h in Headers */,
				5D1665CD1CF8CA8A00CC4CA1 /* SDLPermissionConstants.h in Headers */,
				5D61FC8C1A84238C00846EE7 /* SDLDIDResult.h in Headers */,
				5D61FD1F1A84238C00846EE7 /* SDLOnTouchEvent.h in Headers */,
				5D61FCB31A84238C00846EE7 /* SDLGetDTCsResponse.h in Headers */,
				5D61FC4D1A84238C00846EE7 /* SDLBitsPerSample.h in Headers */,
				5D61FD9B1A84238C00846EE7 /* SDLSlider.h in Headers */,
				5D61FD111A84238C00846EE7 /* SDLOnKeyboardInput.h in Headers */,
				5D76E3211D39742300647CFA /* SDLViewControllerPresentable.h in Headers */,
				5DFFB9151BD7C89700DB3F04 /* SDLConnectionManagerType.h in Headers */,
				5D61FC941A84238C00846EE7 /* SDLDriverDistractionState.h in Headers */,
				5D61FD571A84238C00846EE7 /* SDLPutFileResponse.h in Headers */,
				5D61FD411A84238C00846EE7 /* SDLPRNDL.h in Headers */,
				5D61FDE51A84238C00846EE7 /* SDLUnregisterAppInterfaceResponse.h in Headers */,
				5D61FCF81A84238C00846EE7 /* SDLMenuParams.h in Headers */,
				5D61FD651A84238C00846EE7 /* SDLResetGlobalPropertiesResponse.h in Headers */,
				DA9F7E671DCBFAD400ACAE48 /* SDLOasisAddress.h in Headers */,
				5D61FD611A84238C00846EE7 /* SDLRequestType.h in Headers */,
				5D61FCEC1A84238C00846EE7 /* SDLListFiles.h in Headers */,
				5D2F58081D0717D5001085CE /* SDLManagerDelegate.h in Headers */,
				5D61FC881A84238C00846EE7 /* SDLDiagnosticMessage.h in Headers */,
				5D61FDB31A84238C00846EE7 /* SDLSubscribeVehicleDataResponse.h in Headers */,
				5D61FD991A84238C00846EE7 /* SDLSiphonServer.h in Headers */,
				5D61FC961A84238C00846EE7 /* SDLECallConfirmationStatus.h in Headers */,
				5D4D67AC1D2ED37A00468B4A /* SDLNotificationDispatcher.h in Headers */,
				5D61FDA51A84238C00846EE7 /* SDLSpeak.h in Headers */,
				5D82042D1BCEC32F00D0A41B /* SDLFile.h in Headers */,
				5D61FD1B1A84238C00846EE7 /* SDLOnSystemRequest.h in Headers */,
				5D61FD2F1A84238C00846EE7 /* SDLPermissionStatus.h in Headers */,
				5D3E487F1D6F88A30000BFEF /* SDLRPCNotificationNotification.h in Headers */,
				5D4D67B01D2FE2F900468B4A /* SDLResponseDispatcher.h in Headers */,
				5D61FCF21A84238C00846EE7 /* SDLLockScreenStatus.h in Headers */,
				5D61FCD31A84238C00846EE7 /* SDLImageResolution.h in Headers */,
				5D61FD541A84238C00846EE7 /* SDLProxyListener.h in Headers */,
				5D61FD731A84238C00846EE7 /* SDLRPCRequestFactory.h in Headers */,
				5D61FC5D1A84238C00846EE7 /* SDLChangeRegistrationResponse.h in Headers */,
				5D61FDCD1A84238C00846EE7 /* SDLTimerMode.h in Headers */,
				E9C32B961AB20BA200F283AF /* SDLTimer.h in Headers */,
				5D61FC3D1A84238C00846EE7 /* SDLAlertResponse.h in Headers */,
				5D61FDAD1A84238C00846EE7 /* SDLSubscribeButton.h in Headers */,
				5D8204261BCEA8A600D0A41B /* SDLPermissionManager.h in Headers */,
				5D61FCF41A84238C00846EE7 /* SDLMaintenanceModeStatus.h in Headers */,
				5D61FC571A84238C00846EE7 /* SDLButtonPressMode.h in Headers */,
				5D3E487B1D6F888E0000BFEF /* SDLRPCResponseNotification.h in Headers */,
				5D61FC471A84238C00846EE7 /* SDLAudioStreamingState.h in Headers */,
				5D61FE071A84238C00846EE7 /* SDLVehicleDataStatus.h in Headers */,
				5D61FD2D1A84238C00846EE7 /* SDLPermissionItem.h in Headers */,
				5D61FCD11A84238C00846EE7 /* SDLImageFieldName.h in Headers */,
				5DCF76F91ACDD7CD00BB647B /* SDLSendLocationResponse.h in Headers */,
				5D61FD391A84238C00846EE7 /* SDLPrerecordedSpeech.h in Headers */,
				5D61FC671A84238C00846EE7 /* SDLComponentVolumeStatus.h in Headers */,
				5D61FE0F1A84238C00846EE7 /* SDLVRHelpItem.h in Headers */,
				5D60088A1BE3ED540094A505 /* SDLStateMachine.h in Headers */,
				5D61FC721A84238C00846EE7 /* SDLDeleteCommand.h in Headers */,
				5D61FC821A84238C00846EE7 /* SDLDeviceInfo.h in Headers */,
				5D61FCA91A84238C00846EE7 /* SDLFileType.h in Headers */,
				5D61FD591A84238C00846EE7 /* SDLReadDID.h in Headers */,
				5D82041A1BCD80BA00D0A41B /* SDLLockScreenConfiguration.h in Headers */,
				5D61FC611A84238C00846EE7 /* SDLChoice.h in Headers */,
				5D7F87F31CE3C29E002DD7C4 /* SDLFileWrapper.h in Headers */,
				5D61FC7C1A84238C00846EE7 /* SDLDeleteInteractionChoiceSetResponse.h in Headers */,
				5D61FDB91A84238C00846EE7 /* SDLSyncPDataResponse.h in Headers */,
				DAC572631D10C5020004288B /* SDLPinchGesture.h in Headers */,
				5D61FC311A84238C00846EE7 /* SDLAddSubMenu.h in Headers */,
				5D61FD171A84238C00846EE7 /* SDLOnPermissionsChange.h in Headers */,
				5D61FDD51A84238C00846EE7 /* SDLTouchEventCapabilities.h in Headers */,
				5D61FD0B1A84238C00846EE7 /* SDLOnEncodedSyncPData.h in Headers */,
				5D61FC631A84238C00846EE7 /* SDLClusterModeStatus.h in Headers */,
				5D61FD371A84238C00846EE7 /* SDLPredefinedLayout.h in Headers */,
				5D61FDE31A84238C00846EE7 /* SDLUnregisterAppInterface.h in Headers */,
				5D61FD331A84238C00846EE7 /* SDLPowerModeQualificationStatus.h in Headers */,
				5D61FE011A84238C00846EE7 /* SDLVehicleDataNotificationStatus.h in Headers */,
				5D61FDC91A84238C00846EE7 /* SDLTextField.h in Headers */,
				5D6F7A351BC5B9B60070BF37 /* SDLLockScreenViewController.h in Headers */,
				5D61FCE41A84238C00846EE7 /* SDLKeyboardProperties.h in Headers */,
				5D61FDED1A84238C00846EE7 /* SDLUnsubscribeVehicleDataResponse.h in Headers */,
				5DCC19A41B822804004FFAD9 /* SDLURLRequestTask.h in Headers */,
				5D61FCCF1A84238C00846EE7 /* SDLImageField.h in Headers */,
				5D535DC51B72473800CF7760 /* SDLGlobals.h in Headers */,
				5D79A03B1CE36F030035797B /* SDLUploadFileOperation.h in Headers */,
				5D61FD231A84238C00846EE7 /* SDLParameterPermissions.h in Headers */,
				5D61FCB91A84238C00846EE7 /* SDLGlobalProperty.h in Headers */,
				5D61FE051A84238C00846EE7 /* SDLVehicleDataResultCode.h in Headers */,
				5D61FD2B1A84238C00846EE7 /* SDLPerformInteractionResponse.h in Headers */,
				5D61FDA11A84238C00846EE7 /* SDLSoftButtonCapabilities.h in Headers */,
				5D6F7A2B1BC45BF70070BF37 /* SDLRequestHandler.h in Headers */,
				5D61FDB51A84238C00846EE7 /* SDLSyncMsgVersion.h in Headers */,
				5DA102A41D4122C700C15826 /* NSMutableDictionary+SafeRemove.h in Headers */,
				5D61FE031A84238C00846EE7 /* SDLVehicleDataResult.h in Headers */,
				5D61FD911A84238C00846EE7 /* SDLShowConstantTBT.h in Headers */,
				5D61FC331A84238C00846EE7 /* SDLAddSubMenuResponse.h in Headers */,
				5D61FD5D1A84238C00846EE7 /* SDLRegisterAppInterface.h in Headers */,
				5D61FC9A1A84238C00846EE7 /* SDLEmergencyEvent.h in Headers */,
				5D61FC651A84238C00846EE7 /* SDLCompassDirection.h in Headers */,
				5D61FC8E1A84238C00846EE7 /* SDLDimension.h in Headers */,
				5D61FD6B1A84238C00846EE7 /* SDLRPCMessageType.h in Headers */,
				5D61FD501A84238C00846EE7 /* SDLProxy.h in Headers */,
				5D61FC3F1A84238C00846EE7 /* SDLAmbientLightStatus.h in Headers */,
				5DE372A11ACB2ED300849FAA /* SDLHMICapabilities.h in Headers */,
				E9C32B9C1AB20C5900F283AF /* EAAccessory+SDLProtocols.h in Headers */,
				5D61FE0B1A84238C00846EE7 /* SDLVehicleType.h in Headers */,
				5D61FCC31A84238C00846EE7 /* SDLHMIPermissions.h in Headers */,
				5D61FE131A84238C00846EE7 /* SDLWiperStatus.h in Headers */,
				5D16545A1D3E7A1600554D93 /* SDLLifecycleManager.h in Headers */,
				5D61FCBD1A84238C00846EE7 /* SDLHeadLampStatus.h in Headers */,
				5D61FDC31A84238C00846EE7 /* SDLTBTState.h in Headers */,
				5D61FD951A84238C00846EE7 /* SDLShowResponse.h in Headers */,
				5D61FCA31A84238C00846EE7 /* SDLEndAudioPassThru.h in Headers */,
				5D61FCB11A84238C00846EE7 /* SDLGetDTCs.h in Headers */,
				5D61FDFF1A84238C00846EE7 /* SDLVehicleDataEventStatus.h in Headers */,
				5D61FC5B1A84238C00846EE7 /* SDLChangeRegistration.h in Headers */,
				5D61FD5B1A84238C00846EE7 /* SDLReadDIDResponse.h in Headers */,
				5D61FDEF1A84238C00846EE7 /* SDLUpdateMode.h in Headers */,
				5D61FDDB1A84238C00846EE7 /* SDLTriggerSource.h in Headers */,
				5D61FD8F1A84238C00846EE7 /* SDLShow.h in Headers */,
				5D61FDDD1A84238C00846EE7 /* SDLTTSChunk.h in Headers */,
				5D61FC371A84238C00846EE7 /* SDLAlert.h in Headers */,
				5D61FCC11A84238C00846EE7 /* SDLHMILevel.h in Headers */,
				5D61FD471A84238C00846EE7 /* SDLProtocolListener.h in Headers */,
				5D61FCA01A84238C00846EE7 /* SDLEncodedSyncPDataResponse.h in Headers */,
				5D61FD271A84238C00846EE7 /* SDLPerformAudioPassThruResponse.h in Headers */,
				5D61FD251A84238C00846EE7 /* SDLPerformAudioPassThru.h in Headers */,
				332A91501CED9CF10043824C /* SDLAppInfo.h in Headers */,
				5D61FDA71A84238C00846EE7 /* SDLSpeakResponse.h in Headers */,
				5D1665CB1CF8CA6700CC4CA1 /* NSNumber+NumberType.h in Headers */,
				5D61FD771A84238C00846EE7 /* SDLSamplingRate.h in Headers */,
				5D61FCBB1A84238C00846EE7 /* SDLGPSData.h in Headers */,
				5D61FDA31A84238C00846EE7 /* SDLSoftButtonType.h in Headers */,
				5D61FC431A84238C00846EE7 /* SDLAppInterfaceUnregisteredReason.h in Headers */,
				5D61FA211A84237100846EE7 /* SmartDeviceLink.h in Headers */,
				5D61FD711A84238C00846EE7 /* SDLRPCRequest.h in Headers */,
				5D61FD6D1A84238C00846EE7 /* SDLRPCNotification.h in Headers */,
				5D61FD691A84238C00846EE7 /* SDLRPCMessage.h in Headers */,
				5D61FCA71A84238C00846EE7 /* SDLEnum.h in Headers */,
				5D8B174F1AC9D266006A6E1C /* SDLDialNumber.h in Headers */,
				5D7F87EF1CE3C294002DD7C4 /* SDLFileManagerConstants.h in Headers */,
				5D61FCAD1A84238C00846EE7 /* SDLFunctionID.h in Headers */,
				5D61FDF51A84238C00846EE7 /* SDLV1ProtocolHeader.h in Headers */,
				DAC572671D10C5640004288B /* CGPoint_Util.h in Headers */,
				5D61FDF91A84238C00846EE7 /* SDLV2ProtocolHeader.h in Headers */,
				5D82041E1BCD8E6100D0A41B /* SDLConfiguration.h in Headers */,
				5D61FD4A1A84238C00846EE7 /* SDLProtocolMessageAssembler.h in Headers */,
				5D61FD4C1A84238C00846EE7 /* SDLProtocolMessageDisassembler.h in Headers */,
				5D61FD4E1A84238C00846EE7 /* SDLProtocolReceivedMessageRouter.h in Headers */,
				5D61FDF71A84238C00846EE7 /* SDLV1ProtocolMessage.h in Headers */,
				5D61FDFB1A84238C00846EE7 /* SDLV2ProtocolMessage.h in Headers */,
				5D7F87EB1CE3C1A1002DD7C4 /* SDLDeleteFileOperation.h in Headers */,
				5D61FCFC1A84238C00846EE7 /* SDLNames.h in Headers */,
				5D61FCFD1A84238C00846EE7 /* SDLObjectWithPriority.h in Headers */,
				DAC5726C1D11B4840004288B /* SDLTouchManagerDelegate.h in Headers */,
				5D61FD3F1A84238C00846EE7 /* SDLPrioritizedObjectCollection.h in Headers */,
				5D61FCBF1A84238C00846EE7 /* SDLHexUtility.h in Headers */,
				5D61FCA21A84238C00846EE7 /* SDLEncoder.h in Headers */,
				5D61FCDE1A84238C00846EE7 /* SDLJsonEncoder.h in Headers */,
				5D61FCDC1A84238C00846EE7 /* SDLJsonDecoder.h in Headers */,
				5D61FC711A84238C00846EE7 /* SDLDecoder.h in Headers */,
				5D61FD6F1A84238C00846EE7 /* SDLRPCPayload.h in Headers */,
				5D61FCF01A84238C00846EE7 /* SDLLockScreenStatusManager.h in Headers */,
				5D61FD311A84238C00846EE7 /* SDLPolicyDataParser.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		5D4019AE1A76EC350006B0C2 /* SmartDeviceLink-Example */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 5D4019D21A76EC350006B0C2 /* Build configuration list for PBXNativeTarget "SmartDeviceLink-Example" */;
			buildPhases = (
				5D4019AB1A76EC350006B0C2 /* Sources */,
				5D4019AC1A76EC350006B0C2 /* Frameworks */,
				5D4019AD1A76EC350006B0C2 /* Resources */,
				5D401CE11A76ED0B0006B0C2 /* Embed Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				5D61FA321A84237100846EE7 /* PBXTargetDependency */,
			);
			name = "SmartDeviceLink-Example";
			productName = "SmartDeviceLink-iOS";
			productReference = 5D4019AF1A76EC350006B0C2 /* SDL Example.app */;
			productType = "com.apple.product-type.application";
		};
		5D61FA1B1A84237100846EE7 /* SmartDeviceLink */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 5D61FA351A84237100846EE7 /* Build configuration list for PBXNativeTarget "SmartDeviceLink" */;
			buildPhases = (
				5D61FA171A84237100846EE7 /* Sources */,
				5D61FA181A84237100846EE7 /* Frameworks */,
				5D61FA191A84237100846EE7 /* Headers */,
				5D61FA1A1A84237100846EE7 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = SmartDeviceLink;
			productName = SmartDeviceLink;
			productReference = 5D61FA1C1A84237100846EE7 /* SmartDeviceLink.framework */;
			productType = "com.apple.product-type.framework";
		};
		5D61FA251A84237100846EE7 /* SmartDeviceLinkTests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 5D61FA381A84237100846EE7 /* Build configuration list for PBXNativeTarget "SmartDeviceLinkTests" */;
			buildPhases = (
				5D61FA221A84237100846EE7 /* Sources */,
				5D61FA231A84237100846EE7 /* Frameworks */,
				5D61FA241A84237100846EE7 /* Resources */,
				5DA22C861D0745B000245F5F /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				5D61FA291A84237100846EE7 /* PBXTargetDependency */,
				5D61FA2B1A84237100846EE7 /* PBXTargetDependency */,
			);
			name = SmartDeviceLinkTests;
			productName = SmartDeviceLinkTests;
			productReference = 5D61FA261A84237100846EE7 /* SmartDeviceLinkTests.xctest */;
			productType = "com.apple.product-type.bundle.unit-test";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		5D4019A71A76EC350006B0C2 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastSwiftUpdateCheck = 0710;
				LastUpgradeCheck = 0800;
				ORGANIZATIONNAME = smartdevicelink;
				TargetAttributes = {
					5D4019AE1A76EC350006B0C2 = {
						CreatedOnToolsVersion = 6.1.1;
						SystemCapabilities = {
							com.apple.BackgroundModes = {
								enabled = 1;
							};
							com.apple.WAC = {
								enabled = 0;
							};
						};
					};
					5D61FA1B1A84237100846EE7 = {
						CreatedOnToolsVersion = 6.1.1;
					};
					5D61FA251A84237100846EE7 = {
						CreatedOnToolsVersion = 6.1.1;
					};
				};
			};
			buildConfigurationList = 5D4019AA1A76EC350006B0C2 /* Build configuration list for PBXProject "SmartDeviceLink-iOS" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = 5D4019A61A76EC350006B0C2;
			productRefGroup = 5D4019B01A76EC350006B0C2 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				5D4019AE1A76EC350006B0C2 /* SmartDeviceLink-Example */,
				5D61FA1B1A84237100846EE7 /* SmartDeviceLink */,
				5D61FA251A84237100846EE7 /* SmartDeviceLinkTests */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		5D4019AD1A76EC350006B0C2 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				5D0218F91A8E7A7300D1BF62 /* ConnectionTCPTableViewController.storyboard in Resources */,
				5D0219051A8E9F6D00D1BF62 /* ConnectionIAPTableViewController.storyboard in Resources */,
				5D4029E31A76F0760006B0C2 /* LaunchScreen.xib in Resources */,
				5D4029D41A76F0340006B0C2 /* Images.xcassets in Resources */,
				5D4029E41A76F0760006B0C2 /* Main.storyboard in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		5D61FA1A1A84237100846EE7 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				DA7515B51D95FAA000F29323 /* lock_arrow_down_white@2x.png in Resources */,
				DA7515BE1D95FAA000F29323 /* sdl_logo_black@2x.png in Resources */,
				DA7515B91D95FAA000F29323 /* lock_arrow_up_black@3x.png in Resources */,
				DA7515B71D95FAA000F29323 /* lock_arrow_up_black.png in Resources */,
				DA7515BC1D95FAA000F29323 /* lock_arrow_up_white@3x.png in Resources */,
				DA7515B81D95FAA000F29323 /* lock_arrow_up_black@2x.png in Resources */,
				DA7515C21D95FAA000F29323 /* sdl_logo_white@3x.png in Resources */,
				DA7515C01D95FAA000F29323 /* sdl_logo_white.png in Resources */,
				DA7515C11D95FAA000F29323 /* sdl_logo_white@2x.png in Resources */,
				DA7515BD1D95FAA000F29323 /* sdl_logo_black.png in Resources */,
				DA7515B11D95FAA000F29323 /* lock_arrow_down_black.png in Resources */,
				DA7515BA1D95FAA000F29323 /* lock_arrow_up_white.png in Resources */,
				5D6F7A3E1BC811FC0070BF37 /* SDLAssets.xcassets in Resources */,
				5D616B451D552F7A00553F6B /* SDLLockScreen.storyboard in Resources */,
				DA7515BB1D95FAA000F29323 /* lock_arrow_up_white@2x.png in Resources */,
				DA7515B61D95FAA000F29323 /* lock_arrow_down_white@3x.png in Resources */,
				DA7515B21D95FAA000F29323 /* lock_arrow_down_black@2x.png in Resources */,
				DA7515B41D95FAA000F29323 /* lock_arrow_down_white.png in Resources */,
				DA7515B31D95FAA000F29323 /* lock_arrow_down_black@3x.png in Resources */,
				DA7515BF1D95FAA000F29323 /* sdl_logo_black@3x.png in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		5D61FA241A84237100846EE7 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				5D9F50781BE7DD4C00FEF399 /* testFileJSON.json in Resources */,
				5D9F50791BE7DD4C00FEF399 /* testImageBMP.bmp in Resources */,
				5D9F507A1BE7DD4C00FEF399 /* testImageJPEG.jpeg in Resources */,
				5D850AB01D4907C500E6E7EE /* TestLockScreenAppIcon.png in Resources */,
				5D9F507D1BE7DD4C00FEF399 /* testImageTIFF.tiff in Resources */,
				5D76E32B1D3D52CA00647CFA /* SDLAssets.xcassets in Resources */,
				5D9F507B1BE7DD4C00FEF399 /* testImageJPG.jpg in Resources */,
				5D9F507C1BE7DD4C00FEF399 /* testImagePNG.png in Resources */,
				5D616B461D552F7A00553F6B /* SDLLockScreen.storyboard in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		5D4019AB1A76EC350006B0C2 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				5D4832A51A94F90D00252386 /* ConnectionTransitionContext.m in Sources */,
				5D0218FC1A8E7E1700D1BF62 /* ConnectionContainerViewController.m in Sources */,
				5D0218FF1A8E9E0D00D1BF62 /* ConnectionIAPTableViewController.m in Sources */,
				5D48329D1A8EA33D00252386 /* Preferences.m in Sources */,
				5D59350F1A855EB300687FB9 /* AppDelegate.m in Sources */,
				5D5935121A855EBE00687FB9 /* main.m in Sources */,
				5D4832A81A95191B00252386 /* ConnectionAnimatedTransition.m in Sources */,
				5D4832A11A92868E00252386 /* ProxyManager.m in Sources */,
				5D0218F61A8E79C400D1BF62 /* ConnectionTCPTableViewController.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		5D61FA171A84237100846EE7 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				332A914F1CED9CC60043824C /* SDLAppInfo.m in Sources */,
				5DCC19A51B822804004FFAD9 /* SDLURLRequestTask.m in Sources */,
				5D61FC561A84238C00846EE7 /* SDLButtonName.m in Sources */,
				5D61FCC21A84238C00846EE7 /* SDLHMILevel.m in Sources */,
				5D61FDEC1A84238C00846EE7 /* SDLUnsubscribeVehicleData.m in Sources */,
				5D61FDBE1A84238C00846EE7 /* SDLSystemContext.m in Sources */,
				5D61FC441A84238C00846EE7 /* SDLAppInterfaceUnregisteredReason.m in Sources */,
				5D61FD531A84238C00846EE7 /* SDLProxyFactory.m in Sources */,
				5D61FDCA1A84238C00846EE7 /* SDLTextField.m in Sources */,
				5D61FC9D1A84238C00846EE7 /* SDLEmergencyEventType.m in Sources */,
				5D61FCAC1A84238C00846EE7 /* SDLFuelCutoffStatus.m in Sources */,
				5D61FC871A84238C00846EE7 /* SDLDeviceStatus.m in Sources */,
				5D61FD561A84238C00846EE7 /* SDLPutFile.m in Sources */,
				5D61FCE71A84238C00846EE7 /* SDLKeypressMode.m in Sources */,
				5D61FD9A1A84238C00846EE7 /* SDLSiphonServer.m in Sources */,
				5D61FCDF1A84238C00846EE7 /* SDLJsonEncoder.m in Sources */,
				5D7F87F41CE3C29E002DD7C4 /* SDLFileWrapper.m in Sources */,
				5D61FD941A84238C00846EE7 /* SDLShowConstantTBTResponse.m in Sources */,
				5D61FE0A1A84238C00846EE7 /* SDLVehicleDataType.m in Sources */,
				5D61FD1A1A84238C00846EE7 /* SDLOnSyncPData.m in Sources */,
				5D61FC461A84238C00846EE7 /* SDLAudioPassThruCapabilities.m in Sources */,
				5D61FD301A84238C00846EE7 /* SDLPermissionStatus.m in Sources */,
				5D61FDEE1A84238C00846EE7 /* SDLUnsubscribeVehicleDataResponse.m in Sources */,
				5D535DC61B72473800CF7760 /* SDLGlobals.m in Sources */,
				5D61FCAE1A84238C00846EE7 /* SDLFunctionID.m in Sources */,
				5D61FC421A84238C00846EE7 /* SDLAppHMIType.m in Sources */,
				5D61FD421A84238C00846EE7 /* SDLPRNDL.m in Sources */,
				E9C32B921AB20BA200F283AF /* SDLIAPSession.m in Sources */,
				5D61FD0C1A84238C00846EE7 /* SDLOnEncodedSyncPData.m in Sources */,
				5D61FCA81A84238C00846EE7 /* SDLEnum.m in Sources */,
				5D61FDE01A84238C00846EE7 /* SDLTTSChunkFactory.m in Sources */,
				5D61FD0A1A84238C00846EE7 /* SDLOnDriverDistraction.m in Sources */,
				5D61FCED1A84238C00846EE7 /* SDLListFiles.m in Sources */,
				5D61FC6E1A84238C00846EE7 /* SDLCreateInteractionChoiceSetResponse.m in Sources */,
				5D61FD061A84238C00846EE7 /* SDLOnButtonPress.m in Sources */,
				5D61FD5E1A84238C00846EE7 /* SDLRegisterAppInterface.m in Sources */,
				5D61FCE11A84238C00846EE7 /* SDLKeyboardEvent.m in Sources */,
				5D61FD491A84238C00846EE7 /* SDLProtocolMessage.m in Sources */,
				5D61FCCE1A84238C00846EE7 /* SDLImage.m in Sources */,
				5D61FD241A84238C00846EE7 /* SDLParameterPermissions.m in Sources */,
				5D61FDD21A84238C00846EE7 /* SDLTouchCoord.m in Sources */,
				5D61FCEF1A84238C00846EE7 /* SDLListFilesResponse.m in Sources */,
				5D61FD1C1A84238C00846EE7 /* SDLOnSystemRequest.m in Sources */,
				5D61FC911A84238C00846EE7 /* SDLDisplayCapabilities.m in Sources */,
				5D61FD261A84238C00846EE7 /* SDLPerformAudioPassThru.m in Sources */,
				5D61FC971A84238C00846EE7 /* SDLECallConfirmationStatus.m in Sources */,
				5D61FC4A1A84238C00846EE7 /* SDLAudioType.m in Sources */,
				5D61FDE61A84238C00846EE7 /* SDLUnregisterAppInterfaceResponse.m in Sources */,
				5D61FC481A84238C00846EE7 /* SDLAudioStreamingState.m in Sources */,
				5D61FCC81A84238C00846EE7 /* SDLIAPTransport.m in Sources */,
				5D61FE101A84238C00846EE7 /* SDLVRHelpItem.m in Sources */,
				5D61FCC01A84238C00846EE7 /* SDLHexUtility.m in Sources */,
				5D61FD821A84238C00846EE7 /* SDLSetAppIconResponse.m in Sources */,
				5D61FDF81A84238C00846EE7 /* SDLV1ProtocolMessage.m in Sources */,
				5D61FDC81A84238C00846EE7 /* SDLTextAlignment.m in Sources */,
				5D82042E1BCEC32F00D0A41B /* SDLFile.m in Sources */,
				5DA3F3601BC448590026F2D0 /* SDLNotificationConstants.m in Sources */,
				5D61FD5A1A84238C00846EE7 /* SDLReadDID.m in Sources */,
				5D61FC8F1A84238C00846EE7 /* SDLDimension.m in Sources */,
				5D61FC9B1A84238C00846EE7 /* SDLEmergencyEvent.m in Sources */,
				5D61FDFE1A84238C00846EE7 /* SDLVehicleDataActiveStatus.m in Sources */,
				5D61FCD01A84238C00846EE7 /* SDLImageField.m in Sources */,
				5D61FC3C1A84238C00846EE7 /* SDLAlertManeuverResponse.m in Sources */,
				5D61FC6A1A84238C00846EE7 /* SDLConsoleController.m in Sources */,
				5D61FD4D1A84238C00846EE7 /* SDLProtocolMessageDisassembler.m in Sources */,
				5D61FC701A84238C00846EE7 /* SDLDebugTool.m in Sources */,
				5D61FD4B1A84238C00846EE7 /* SDLProtocolMessageAssembler.m in Sources */,
				5D61FCC41A84238C00846EE7 /* SDLHMIPermissions.m in Sources */,
				5D61FE141A84238C00846EE7 /* SDLWiperStatus.m in Sources */,
				5D61FC8B1A84238C00846EE7 /* SDLDiagnosticMessageResponse.m in Sources */,
				5D61FD2E1A84238C00846EE7 /* SDLPermissionItem.m in Sources */,
				5D61FD041A84238C00846EE7 /* SDLOnButtonEvent.m in Sources */,
				5D61FD201A84238C00846EE7 /* SDLOnTouchEvent.m in Sources */,
				5DA3F35B1BC448480026F2D0 /* SDLError.m in Sources */,
				5D61FD781A84238C00846EE7 /* SDLSamplingRate.m in Sources */,
				5D61FC681A84238C00846EE7 /* SDLComponentVolumeStatus.m in Sources */,
				5D61FDB61A84238C00846EE7 /* SDLSyncMsgVersion.m in Sources */,
				5D61FC501A84238C00846EE7 /* SDLBodyInformation.m in Sources */,
				5D79A03C1CE36F030035797B /* SDLUploadFileOperation.m in Sources */,
				5D61FD901A84238C00846EE7 /* SDLShow.m in Sources */,
				5D8204271BCEA8A600D0A41B /* SDLPermissionManager.m in Sources */,
				5D61FDB21A84238C00846EE7 /* SDLSubscribeVehicleData.m in Sources */,
				5D61FC991A84238C00846EE7 /* SDLECallInfo.m in Sources */,
				5D61FD601A84238C00846EE7 /* SDLRegisterAppInterfaceResponse.m in Sources */,
				DAC572621D10C5020004288B /* SDLPinchGesture.m in Sources */,
				5D61FCF51A84238C00846EE7 /* SDLMaintenanceModeStatus.m in Sources */,
				5D61FCD81A84238C00846EE7 /* SDLInteractionMode.m in Sources */,
				5D61FCB01A84238C00846EE7 /* SDLGenericResponse.m in Sources */,
				5D61FD681A84238C00846EE7 /* SDLResult.m in Sources */,
				E9C32B871AB20B4300F283AF /* NSThread+ThreadIndex.m in Sources */,
				5D61FDE21A84238C00846EE7 /* SDLTurn.m in Sources */,
				5D61FC5A1A84238C00846EE7 /* SDLCarModeStatus.m in Sources */,
				5D82041B1BCD80BA00D0A41B /* SDLLockScreenConfiguration.m in Sources */,
				5D3E48CC1D7722FE0000BFEF /* NSBundle+SDLBundle.m in Sources */,
				5D61FCBC1A84238C00846EE7 /* SDLGPSData.m in Sources */,
				5D61FD341A84238C00846EE7 /* SDLPowerModeQualificationStatus.m in Sources */,
				5D61FC891A84238C00846EE7 /* SDLDiagnosticMessage.m in Sources */,
				5D61FD6E1A84238C00846EE7 /* SDLRPCNotification.m in Sources */,
				5D8B17501AC9D266006A6E1C /* SDLDialNumber.m in Sources */,
				5D6F7A361BC5B9B60070BF37 /* SDLLockScreenViewController.m in Sources */,
				5D61FDE81A84238C00846EE7 /* SDLUnsubscribeButton.m in Sources */,
				5D61FCF71A84238C00846EE7 /* SDLMediaClockFormat.m in Sources */,
				5D61FD8A1A84238C00846EE7 /* SDLSetGlobalPropertiesResponse.m in Sources */,
				5D61FC4C1A84238C00846EE7 /* SDLBeltStatus.m in Sources */,
				5D61FDA41A84238C00846EE7 /* SDLSoftButtonType.m in Sources */,
				5D61FC521A84238C00846EE7 /* SDLButtonCapabilities.m in Sources */,
				5D61FC791A84238C00846EE7 /* SDLDeleteFileResponse.m in Sources */,
				5D3E48801D6F88A30000BFEF /* SDLRPCNotificationNotification.m in Sources */,
				DAC572581D1067270004288B /* SDLTouchManager.m in Sources */,
				5D61FC641A84238C00846EE7 /* SDLClusterModeStatus.m in Sources */,
				5D61FCF91A84238C00846EE7 /* SDLMenuParams.m in Sources */,
				5D61FD7C1A84238C00846EE7 /* SDLScrollableMessage.m in Sources */,
				5D4D67B11D2FE2F900468B4A /* SDLResponseDispatcher.m in Sources */,
				5D61FD801A84238C00846EE7 /* SDLSetAppIcon.m in Sources */,
				5D61FD3C1A84238C00846EE7 /* SDLPresetBankCapabilities.m in Sources */,
				5D61FDB81A84238C00846EE7 /* SDLSyncPData.m in Sources */,
				5D61FD221A84238C00846EE7 /* SDLOnVehicleData.m in Sources */,
				5D61FCD41A84238C00846EE7 /* SDLImageResolution.m in Sources */,
				5D61FDF41A84238C00846EE7 /* SDLUpdateTurnListResponse.m in Sources */,
				5D61FCF31A84238C00846EE7 /* SDLLockScreenStatus.m in Sources */,
				5D61FC731A84238C00846EE7 /* SDLDeleteCommand.m in Sources */,
				5D61FD2A1A84238C00846EE7 /* SDLPerformInteraction.m in Sources */,
				5D61FC541A84238C00846EE7 /* SDLButtonEventMode.m in Sources */,
				5D61FC8D1A84238C00846EE7 /* SDLDIDResult.m in Sources */,
				5D61FC601A84238C00846EE7 /* SDLCharacterSet.m in Sources */,
				5D61FCBE1A84238C00846EE7 /* SDLHeadLampStatus.m in Sources */,
				5D61FD921A84238C00846EE7 /* SDLShowConstantTBT.m in Sources */,
				5D61FC4E1A84238C00846EE7 /* SDLBitsPerSample.m in Sources */,
				5D61FDEA1A84238C00846EE7 /* SDLUnsubscribeButtonResponse.m in Sources */,
				5D61FCA61A84238C00846EE7 /* SDLEndAudioPassThruResponse.m in Sources */,
				5DCC19A11B8221F3004FFAD9 /* SDLURLSession.m in Sources */,
				5D61FD281A84238C00846EE7 /* SDLPerformAudioPassThruResponse.m in Sources */,
				5D61FDCE1A84238C00846EE7 /* SDLTimerMode.m in Sources */,
				5D61FD701A84238C00846EE7 /* SDLRPCPayload.m in Sources */,
				5D61FD9C1A84238C00846EE7 /* SDLSlider.m in Sources */,
				5DCF76FA1ACDD7CD00BB647B /* SDLSendLocationResponse.m in Sources */,
				5D61FD661A84238C00846EE7 /* SDLResetGlobalPropertiesResponse.m in Sources */,
				5D61FCFE1A84238C00846EE7 /* SDLObjectWithPriority.m in Sources */,
				5D61FC401A84238C00846EE7 /* SDLAmbientLightStatus.m in Sources */,
				5D61FC951A84238C00846EE7 /* SDLDriverDistractionState.m in Sources */,
				5D61FD961A84238C00846EE7 /* SDLShowResponse.m in Sources */,
				5D61FD981A84238C00846EE7 /* SDLSingleTireStatus.m in Sources */,
				5D61FD511A84238C00846EE7 /* SDLProxy.m in Sources */,
				5D61FD461A84238C00846EE7 /* SDLProtocolHeader.m in Sources */,
				5D61FDBC1A84238C00846EE7 /* SDLSystemAction.m in Sources */,
				5D61FC381A84238C00846EE7 /* SDLAlert.m in Sources */,
				5D61FD2C1A84238C00846EE7 /* SDLPerformInteractionResponse.m in Sources */,
				5D61FDF21A84238C00846EE7 /* SDLUpdateTurnList.m in Sources */,
				5D61FD101A84238C00846EE7 /* SDLOnHMIStatus.m in Sources */,
				5D61FC301A84238C00846EE7 /* SDLAddCommandResponse.m in Sources */,
				5D61FCCC1A84238C00846EE7 /* SDLIgnitionStatus.m in Sources */,
				5D61FC3A1A84238C00846EE7 /* SDLAlertManeuver.m in Sources */,
				5D61FC5E1A84238C00846EE7 /* SDLChangeRegistrationResponse.m in Sources */,
				5D8204231BCEA89A00D0A41B /* SDLFileManager.m in Sources */,
				5D61FC7D1A84238C00846EE7 /* SDLDeleteInteractionChoiceSetResponse.m in Sources */,
				DAC572661D10C5640004288B /* CGPoint_Util.m in Sources */,
				E9C32B9D1AB20C5900F283AF /* EAAccessory+SDLProtocols.m in Sources */,
				5D61FCC61A84238C00846EE7 /* SDLHMIZoneCapabilities.m in Sources */,
				5D61FD161A84238C00846EE7 /* SDLOnLockScreenStatus.m in Sources */,
				5D61FDAE1A84238C00846EE7 /* SDLSubscribeButton.m in Sources */,
				DA9F7E6C1DCBFB0700ACAE48 /* SDLDeliveryMode.m in Sources */,
				5D61FC581A84238C00846EE7 /* SDLButtonPressMode.m in Sources */,
				5D61FDB01A84238C00846EE7 /* SDLSubscribeButtonResponse.m in Sources */,
				5DCF76F61ACDBAD300BB647B /* SDLSendLocation.m in Sources */,
				5D76E3251D39767000647CFA /* SDLLockScreenPresenter.m in Sources */,
				5D61FC771A84238C00846EE7 /* SDLDeleteFile.m in Sources */,
				5D61FC811A84238C00846EE7 /* SDLDeleteSubMenuResponse.m in Sources */,
				DA9F7E681DCBFAD400ACAE48 /* SDLOasisAddress.m in Sources */,
				5D61FC7B1A84238C00846EE7 /* SDLDeleteInteractionChoiceSet.m in Sources */,
				5D61FDC01A84238C00846EE7 /* SDLSystemRequest.m in Sources */,
				5D61FD021A84238C00846EE7 /* SDLOnAudioPassThru.m in Sources */,
				5D61FCE51A84238C00846EE7 /* SDLKeyboardProperties.m in Sources */,
				5D61FDFA1A84238C00846EE7 /* SDLV2ProtocolHeader.m in Sources */,
				5D61FDD01A84238C00846EE7 /* SDLTireStatus.m in Sources */,
				5D61FC321A84238C00846EE7 /* SDLAddSubMenu.m in Sources */,
				5D61FDF61A84238C00846EE7 /* SDLV1ProtocolHeader.m in Sources */,
				5D61FDAA1A84238C00846EE7 /* SDLSpeechCapabilities.m in Sources */,
				5D61FDB41A84238C00846EE7 /* SDLSubscribeVehicleDataResponse.m in Sources */,
				5D61FD121A84238C00846EE7 /* SDLOnKeyboardInput.m in Sources */,
				5D61FCCA1A84238C00846EE7 /* SDLIgnitionStableStatus.m in Sources */,
				5D61FCFB1A84238C00846EE7 /* SDLMyKey.m in Sources */,
				5D61FCAA1A84238C00846EE7 /* SDLFileType.m in Sources */,
				5DE372A21ACB2ED300849FAA /* SDLHMICapabilities.m in Sources */,
				5D61FDD41A84238C00846EE7 /* SDLTouchEvent.m in Sources */,
				5D61FD881A84238C00846EE7 /* SDLSetGlobalProperties.m in Sources */,
				5D61FC7F1A84238C00846EE7 /* SDLDeleteSubMenu.m in Sources */,
				5D61FCE91A84238C00846EE7 /* SDLLanguage.m in Sources */,
				5D61FC3E1A84238C00846EE7 /* SDLAlertResponse.m in Sources */,
				5D61FD8C1A84238C00846EE7 /* SDLSetMediaClockTimer.m in Sources */,
				5D2996EA1BFCC0E3006106BF /* (null) in Sources */,
				5D61FE121A84238C00846EE7 /* SDLWarningLightStatus.m in Sources */,
				5D61FCDD1A84238C00846EE7 /* SDLJsonDecoder.m in Sources */,
				5D61FCB81A84238C00846EE7 /* SDLGetVehicleDataResponse.m in Sources */,
				5D61FC661A84238C00846EE7 /* SDLCompassDirection.m in Sources */,
				5D61FD841A84238C00846EE7 /* SDLSetDisplayLayout.m in Sources */,
				5D61FE001A84238C00846EE7 /* SDLVehicleDataEventStatus.m in Sources */,
				5D61FDC41A84238C00846EE7 /* SDLTBTState.m in Sources */,
				5D61FDA61A84238C00846EE7 /* SDLSpeak.m in Sources */,
				5D61FDDE1A84238C00846EE7 /* SDLTTSChunk.m in Sources */,
				5D61FD9E1A84238C00846EE7 /* SDLSliderResponse.m in Sources */,
				5D61FC5C1A84238C00846EE7 /* SDLChangeRegistration.m in Sources */,
				5D1665C91CF8CA3D00CC4CA1 /* SDLPermissionFilter.m in Sources */,
				5D61FDBA1A84238C00846EE7 /* SDLSyncPDataResponse.m in Sources */,
				5D61FDDC1A84238C00846EE7 /* SDLTriggerSource.m in Sources */,
				5D16545B1D3E7A1600554D93 /* SDLLifecycleManager.m in Sources */,
				E9C32B971AB20BA200F283AF /* SDLTimer.m in Sources */,
				5D61FCB61A84238C00846EE7 /* SDLGetVehicleData.m in Sources */,
				5D61FC9F1A84238C00846EE7 /* SDLEncodedSyncPData.m in Sources */,
				5D61FE061A84238C00846EE7 /* SDLVehicleDataResultCode.m in Sources */,
				5D61FCA41A84238C00846EE7 /* SDLEndAudioPassThru.m in Sources */,
				5D8B17541AC9E11B006A6E1C /* SDLDialNumberResponse.m in Sources */,
				5D61FC851A84238C00846EE7 /* SDLDeviceLevelStatus.m in Sources */,
				5D1665AB1CF5F7D000CC4CA1 /* (null) in Sources */,
				5D61FD1E1A84238C00846EE7 /* SDLOnTBTClientState.m in Sources */,
				DA9F7E641DCBFAC800ACAE48 /* SDLDateTime.m in Sources */,
				5D61FD581A84238C00846EE7 /* SDLPutFileResponse.m in Sources */,
				5D61FCB21A84238C00846EE7 /* SDLGetDTCs.m in Sources */,
				5D61FD441A84238C00846EE7 /* SDLProtocol.m in Sources */,
				5D61FC341A84238C00846EE7 /* SDLAddSubMenuResponse.m in Sources */,
				5D6F7A2F1BC5650B0070BF37 /* SDLLifecycleConfiguration.m in Sources */,
				5D61FD141A84238C00846EE7 /* SDLOnLanguageChange.m in Sources */,
				5D61FE041A84238C00846EE7 /* SDLVehicleDataResult.m in Sources */,
				5D61FD5C1A84238C00846EE7 /* SDLReadDIDResponse.m in Sources */,
				5D61FD321A84238C00846EE7 /* SDLPolicyDataParser.m in Sources */,
				5D61FC621A84238C00846EE7 /* SDLChoice.m in Sources */,
				DAC5725B1D10B81E0004288B /* SDLTouch.m in Sources */,
				5D61FCEB1A84238C00846EE7 /* SDLLayoutMode.m in Sources */,
				5D61FC2E1A84238C00846EE7 /* SDLAddCommand.m in Sources */,
				5D1665C51CF8CA2700CC4CA1 /* SDLListFilesOperation.m in Sources */,
				5D61FE021A84238C00846EE7 /* SDLVehicleDataNotificationStatus.m in Sources */,
				5D61FDD81A84238C00846EE7 /* SDLTouchType.m in Sources */,
				5D61FDD61A84238C00846EE7 /* SDLTouchEventCapabilities.m in Sources */,
				5DA102A51D4122C700C15826 /* NSMutableDictionary+SafeRemove.m in Sources */,
				5D61FCF11A84238C00846EE7 /* SDLLockScreenStatusManager.m in Sources */,
				5D61FDAC1A84238C00846EE7 /* SDLStartTime.m in Sources */,
				5D61FDA01A84238C00846EE7 /* SDLSoftButton.m in Sources */,
				E9C32B951AB20BA200F283AF /* SDLStreamDelegate.m in Sources */,
				5D61FCD21A84238C00846EE7 /* SDLImageFieldName.m in Sources */,
				5D61FD761A84238C00846EE7 /* SDLRPCResponse.m in Sources */,
				5D3E48761D6F3B330000BFEF /* SDLAsynchronousOperation.m in Sources */,
				5D61FE081A84238C00846EE7 /* SDLVehicleDataStatus.m in Sources */,
				E9C32B9F1AB20C5900F283AF /* EAAccessoryManager+SDLProtocols.m in Sources */,
				5D61FDA81A84238C00846EE7 /* SDLSpeakResponse.m in Sources */,
				5DB92D331AC9C8BA00C15BB0 /* SDLRPCStruct.m in Sources */,
				5DA3F3551BC448060026F2D0 /* NSMapTable+Subscripting.m in Sources */,
				5D61FCD61A84238C00846EE7 /* SDLImageType.m in Sources */,
				5D4D67AD1D2ED37A00468B4A /* SDLNotificationDispatcher.m in Sources */,
				5D61FD7A1A84238C00846EE7 /* SDLScreenParams.m in Sources */,
				5D61FC831A84238C00846EE7 /* SDLDeviceInfo.m in Sources */,
				5D7F87EC1CE3C1A1002DD7C4 /* SDLDeleteFileOperation.m in Sources */,
				5D61FD641A84238C00846EE7 /* SDLResetGlobalProperties.m in Sources */,
				5D60088B1BE3ED540094A505 /* SDLStateMachine.m in Sources */,
				5D61FD181A84238C00846EE7 /* SDLOnPermissionsChange.m in Sources */,
				5D61FD3E1A84238C00846EE7 /* SDLPrimaryAudioSource.m in Sources */,
				5D61FC2A1A84238C00846EE7 /* SDLAbstractProtocol.m in Sources */,
				5D82041F1BCD8E6100D0A41B /* SDLConfiguration.m in Sources */,
				5D61FD381A84238C00846EE7 /* SDLPredefinedLayout.m in Sources */,
				5D3E487C1D6F888E0000BFEF /* SDLRPCResponseNotification.m in Sources */,
				5D61FD0E1A84238C00846EE7 /* SDLOnHashChange.m in Sources */,
				5D4D67B51D30161600468B4A /* SDLLockScreenManager.m in Sources */,
				5D61FDE41A84238C00846EE7 /* SDLUnregisterAppInterface.m in Sources */,
				5D61FC361A84238C00846EE7 /* SDLAirbagStatus.m in Sources */,
				5D61FD7E1A84238C00846EE7 /* SDLScrollableMessageResponse.m in Sources */,
				5D61FD3A1A84238C00846EE7 /* SDLPrerecordedSpeech.m in Sources */,
				5D61FCA11A84238C00846EE7 /* SDLEncodedSyncPDataResponse.m in Sources */,
				5D61FD401A84238C00846EE7 /* SDLPrioritizedObjectCollection.m in Sources */,
				5D61FD741A84238C00846EE7 /* SDLRPCRequestFactory.m in Sources */,
				5D61FDC61A84238C00846EE7 /* SDLTCPTransport.m in Sources */,
				5D61FE0E1A84238C00846EE7 /* SDLVRCapabilities.m in Sources */,
				5D61FDC21A84238C00846EE7 /* SDLSystemRequestResponse.m in Sources */,
				5D61FD001A84238C00846EE7 /* SDLOnAppInterfaceUnregistered.m in Sources */,
				DAC5726A1D10D5FC0004288B /* dispatch_timer.m in Sources */,
				5D61FC6C1A84238C00846EE7 /* SDLCreateInteractionChoiceSet.m in Sources */,
				5D61FD081A84238C00846EE7 /* SDLOnCommand.m in Sources */,
				5D53C46E1B7A99B9003526EA /* SDLStreamingMediaManager.m in Sources */,
				5D61FD6A1A84238C00846EE7 /* SDLRPCMessage.m in Sources */,
				5D61FCDB1A84238C00846EE7 /* SDLJingle.m in Sources */,
				5D61FDA21A84238C00846EE7 /* SDLSoftButtonCapabilities.m in Sources */,
				5D8204321BD001C700D0A41B /* SDLArtwork.m in Sources */,
				5D61FC2C1A84238C00846EE7 /* SDLAbstractTransport.m in Sources */,
				5D61FD8E1A84238C00846EE7 /* SDLSetMediaClockTimerResponse.m in Sources */,
				5D61FD721A84238C00846EE7 /* SDLRPCRequest.m in Sources */,
				5D61FDF01A84238C00846EE7 /* SDLUpdateMode.m in Sources */,
				5D61FC931A84238C00846EE7 /* SDLDisplayType.m in Sources */,
				5D61FCE31A84238C00846EE7 /* SDLKeyboardLayout.m in Sources */,
				5D61FE0C1A84238C00846EE7 /* SDLVehicleType.m in Sources */,
				5D61FDCC1A84238C00846EE7 /* SDLTextFieldName.m in Sources */,
				5D61FC751A84238C00846EE7 /* SDLDeleteCommandResponse.m in Sources */,
				5DA3F3711BC4489A0026F2D0 /* SDLManager.m in Sources */,
				5D61FD861A84238C00846EE7 /* SDLSetDisplayLayoutResponse.m in Sources */,
				5D61FCB41A84238C00846EE7 /* SDLGetDTCsResponse.m in Sources */,
				5D61FDFC1A84238C00846EE7 /* SDLV2ProtocolMessage.m in Sources */,
				5D61FD361A84238C00846EE7 /* SDLPowerModeStatus.m in Sources */,
				5D61FD621A84238C00846EE7 /* SDLRequestType.m in Sources */,
				5D61FCBA1A84238C00846EE7 /* SDLGlobalProperty.m in Sources */,
				5D61FD4F1A84238C00846EE7 /* SDLProtocolReceivedMessageRouter.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		5D61FA221A84237100846EE7 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				5DBAE0AD1D368D1A00CE00BF /* SDLResponseDispatcherSpec.m in Sources */,
				162E83951A9BDE8B00906325 /* SDLTurnSpec.m in Sources */,
				162E83481A9BDE8B00906325 /* SDLUpdateTurnListSpec.m in Sources */,
				1680B11E1A9CD7AD00DBD79E /* SDLProtocolReceivedMessageRouterSpec.m in Sources */,
				162E82FD1A9BDE8B00906325 /* SDLSystemContextSpec.m in Sources */,
				162E82E21A9BDE8B00906325 /* SDLIgnitionStableStatusSpec.m in Sources */,
				162E82EE1A9BDE8B00906325 /* SDLMediaClockFormatSpec.m in Sources */,
				5DA026901AD44EE700019F86 /* SDLDialNumberResponseSpec.m in Sources */,
				162E83901A9BDE8B00906325 /* SDLTireStatusSpec.m in Sources */,
				162E82E01A9BDE8B00906325 /* SDLHMILevelSpec.m in Sources */,
				162E83041A9BDE8B00906325 /* SDLUpdateModeSpec.m in Sources */,
				162E83801A9BDE8B00906325 /* SDLHMIPermissionsSpec.m in Sources */,
				5D1654561D3E754F00554D93 /* SDLLifecycleManagerSpec.m in Sources */,
				162E83021A9BDE8B00906325 /* SDLTouchTypeSpec.m in Sources */,
				5DB92D2F1AC59F0000C15BB0 /* SDLObjectWithPrioritySpec.m in Sources */,
				162E838A1A9BDE8B00906325 /* SDLSingleTireStatusSpec.m in Sources */,
				5D6EB4CC1BF28DC600693731 /* NSMapTable+SubscriptingSpec.m in Sources */,
				162E83051A9BDE8B00906325 /* SDLVehicleDataActiveStatusSpec.m in Sources */,
				162E82E61A9BDE8B00906325 /* SDLInteractionModeSpec.m in Sources */,
				162E83931A9BDE8B00906325 /* SDLTouchEventSpec.m in Sources */,
				5DCF76FE1ACDDB5A00BB647B /* SDLSendLocationResponseSpec.m in Sources */,
				162E837D1A9BDE8B00906325 /* SDLEmergencyEventSpec.m in Sources */,
				162E82D31A9BDE8A00906325 /* SDLCarModeStatusSpec.m in Sources */,
				162E82EA1A9BDE8B00906325 /* SDLLanguageSpec.m in Sources */,
				5D76E3291D3D0A8800647CFA /* SDLFakeViewControllerPresenter.m in Sources */,
				162E83331A9BDE8B00906325 /* SDLPerformInteractionSpec.m in Sources */,
				1680B11A1A9CD7AD00DBD79E /* SDLAbstractProtocolSpec.m in Sources */,
				1680B1151A9CD7AD00DBD79E /* SDLV2ProtocolHeaderSpec.m in Sources */,
				162E83101A9BDE8B00906325 /* SDLOnAudioPassThruSpec.m in Sources */,
				162E82D91A9BDE8A00906325 /* SDLDisplayTypeSpec.m in Sources */,
				162E83871A9BDE8B00906325 /* SDLPermissionItemSpec.m in Sources */,
				162E82E31A9BDE8B00906325 /* SDLIgnitionStatusSpec.m in Sources */,
				162E83511A9BDE8B00906325 /* SDLDeleteInteractionChoiceSetResponseSpec.m in Sources */,
				DA9F7EB41DCC086400ACAE48 /* SDLDateTimeSpec.m in Sources */,
				162E830E1A9BDE8B00906325 /* SDLRPCRequestFactorySpec.m in Sources */,
				162E82E41A9BDE8B00906325 /* SDLImageFieldNameSpec.m in Sources */,
				162E83991A9BDE8B00906325 /* SDLEnumSpec.m in Sources */,
				162E82ED1A9BDE8B00906325 /* SDLMaintenanceModeStatusSpec.m in Sources */,
				5DB92D2D1AC4A34F00C15BB0 /* SDLPrioritizedObjectCollectionSpec.m in Sources */,
				1680B11C1A9CD7AD00DBD79E /* SDLProtocolMessageAssemblerSpec.m in Sources */,
				162E83181A9BDE8B00906325 /* SDLOnKeyboardInputSpec.m in Sources */,
				162E83701A9BDE8B00906325 /* SDLUpdateTurnListResponseSpec.m in Sources */,
				162E833B1A9BDE8B00906325 /* SDLSetGlobalPropertiesSpec.m in Sources */,
				162E82F11A9BDE8B00906325 /* SDLPowerModeStatusSpec.m in Sources */,
				162E83881A9BDE8B00906325 /* SDLPresetBankCapabilitiesSpec.m in Sources */,
				162E837E1A9BDE8B00906325 /* SDLGPSDataSpec.m in Sources */,
				5DAE06731BDEC6C000F9B498 /* SDLFileSpec.m in Sources */,
				162E82E11A9BDE8B00906325 /* SDLHMIZoneCapabilitiesSpec.m in Sources */,
				162E83721A9BDE8B00906325 /* SDLAudioPassThruCapabilitiesSpec.m in Sources */,
				162E83681A9BDE8B00906325 /* SDLSpeakResponseSpec.m in Sources */,
				162E83661A9BDE8B00906325 /* SDLShowResponseSpec.m in Sources */,
				5D9F50831BEA5C6100FEF399 /* SDLFileManagerSpec.m in Sources */,
				162E83221A9BDE8B00906325 /* SDLAddCommandSpec.m in Sources */,
				162E83121A9BDE8B00906325 /* SDLOnButtonPressSpec.m in Sources */,
				162E838D1A9BDE8B00906325 /* SDLStartTimeSpec.m in Sources */,
				162E836E1A9BDE8B00906325 /* SDLUnsubscribeButtonResponseSpec.m in Sources */,
				DACBA1DC1D22D46D002356F8 /* SDLOnTouchEvent.m in Sources */,
				162E835B1A9BDE8B00906325 /* SDLPerformInteractionResponseSpec.m in Sources */,
				162E832D1A9BDE8B00906325 /* SDLEncodedSyncPDataSpec.m in Sources */,
				5DB92D241AC47B2C00C15BB0 /* SDLHexUtilitySpec.m in Sources */,
				162E83281A9BDE8B00906325 /* SDLDeleteCommandSpec.m in Sources */,
				5DB92D261AC4836F00C15BB0 /* SDLJingleSpec.m in Sources */,
				162E83531A9BDE8B00906325 /* SDLDiagnosticMessageResponseSpec.m in Sources */,
				162E83671A9BDE8B00906325 /* SDLSliderResponseSpec.m in Sources */,
				162E836C1A9BDE8B00906325 /* SDLSystemRequestResponseSpec.m in Sources */,
				162E833C1A9BDE8B00906325 /* SDLSetMediaClockTimerSpec.m in Sources */,
				162E83061A9BDE8B00906325 /* SDLVehicleDataEventStatusSpec.m in Sources */,
				5DEE55C01B8509CB004F0D0F /* SDLURLRequestTaskSpec.m in Sources */,
				162E83911A9BDE8B00906325 /* SDLTouchCoordSpec.m in Sources */,
				162E832B1A9BDE8B00906325 /* SDLDeleteSubMenuSpec.m in Sources */,
				162E83411A9BDE8B00906325 /* SDLSubscribeButtonSpec.m in Sources */,
				5D59DD471B14FDEE00BE744D /* SDLLockScreenStatusManagerSpec.m in Sources */,
				162E82F31A9BDE8B00906325 /* SDLPrerecordedSpeechSpec.m in Sources */,
				162E83691A9BDE8B00906325 /* SDLSubscribeButtonResponseSpec.m in Sources */,
				5DAE06751BDEC6D600F9B498 /* SDLArtworkSpec.m in Sources */,
				162E83591A9BDE8B00906325 /* SDLListFilesResponseSpec.m in Sources */,
				162E832A1A9BDE8B00906325 /* SDLDeleteInteractionChoiceSetSpec.m in Sources */,
				162E839D1A9BDE8B00906325 /* SDLRPCResponseSpec.m in Sources */,
				5DB1BCDF1D243DD3002FFC37 /* SDLLockScreenConfigurationSpec.m in Sources */,
				162E82E51A9BDE8B00906325 /* SDLImageTypeSpec.m in Sources */,
				162E83421A9BDE8B00906325 /* SDLSubscribeVehicleDataSpec.m in Sources */,
				162E83811A9BDE8B00906325 /* SDLImageFieldSpec.m in Sources */,
				162E834F1A9BDE8B00906325 /* SDLDeleteCommandResponseSpec.m in Sources */,
				162E83231A9BDE8B00906325 /* SDLAddSubMenuSpec.m in Sources */,
				DA4353E91D2721680099B8C4 /* DispatchTimerSpec.m in Sources */,
				162E82F21A9BDE8B00906325 /* SDLPredefinedLayoutSpec.m in Sources */,
				162E83521A9BDE8B00906325 /* SDLDeleteSubMenuResponseSpec.m in Sources */,
				162E82E91A9BDE8B00906325 /* SDLKeypressModeSpec.m in Sources */,
				162E83211A9BDE8B00906325 /* SDLRPCPayloadSpec.m in Sources */,
				162E83851A9BDE8B00906325 /* SDLMyKeySpec.m in Sources */,
				162E83941A9BDE8B00906325 /* SDLTTSChunkSpec.m in Sources */,
				162E82DC1A9BDE8B00906325 /* SDLEmergencyEventTypeSpec.m in Sources */,
				162E82CE1A9BDE8A00906325 /* SDLAudioTypeSpec.m in Sources */,
				162E831C1A9BDE8B00906325 /* SDLOnSyncPDataSpec.m in Sources */,
				5D9F50871BED412E00FEF399 /* TestConnectionManager.m in Sources */,
				162E83341A9BDE8B00906325 /* SDLPutFileSpec.m in Sources */,
				162E837A1A9BDE8B00906325 /* SDLDIDResult.m in Sources */,
				162E83171A9BDE8B00906325 /* SDLOnHMIStatusSpec.m in Sources */,
				5DE372A41ACB336600849FAA /* SDLHMICapabilitiesSpec.m in Sources */,
				162E82F71A9BDE8B00906325 /* SDLResultSpec.m in Sources */,
				1680B1141A9CD7AD00DBD79E /* SDLV1ProtocolHeaderSpec.m in Sources */,
				1680B1161A9CD7AD00DBD79E /* SDLProtocolMessageSpec.m in Sources */,
				DA9F7EB21DCC084300ACAE48 /* SDLDeliveryModeSpec.m in Sources */,
				162E83771A9BDE8B00906325 /* SDLClusterModeStatusSpec.m in Sources */,
				162E83981A9BDE8B00906325 /* SDLVrHelpItemSpec.m in Sources */,
				162E83831A9BDE8B00906325 /* SDLKeyboardPropertiesSpec.m in Sources */,
				162E82D11A9BDE8A00906325 /* SDLButtonNameSpec.m in Sources */,
				162E839E1A9BDE8B00906325 /* SDLRPCStructSpec.m in Sources */,
				DA4353DF1D271FD10099B8C4 /* CGPointUtilSpec.m in Sources */,
				162E83291A9BDE8B00906325 /* SDLDeleteFileSpec.m in Sources */,
				1680B11D1A9CD7AD00DBD79E /* SDLProtocolMessageDisassemblerSpec.m in Sources */,
				162E838E1A9BDE8B00906325 /* SDLSyncMsgVersionSpec.m in Sources */,
				5D76E31C1D3805FF00647CFA /* SDLLockScreenManagerSpec.m in Sources */,
				162E82DA1A9BDE8B00906325 /* SDLDriverDistractionStateSpec.m in Sources */,
				162E83631A9BDE8B00906325 /* SDLSetGlobalPropertiesResponseSpec.m in Sources */,
				162E837B1A9BDE8B00906325 /* SDLDisplayCapabilitiesSpec.m in Sources */,
				162E82DE1A9BDE8B00906325 /* SDLFuelCutoffStatusSpec.m in Sources */,
				162E83271A9BDE8B00906325 /* SDLCreateInteractionChoiceSetSpec.m in Sources */,
				162E83111A9BDE8B00906325 /* SDLOnButtonEventSpec.m in Sources */,
				162E82FA1A9BDE8B00906325 /* SDLSoftButtonTypeSpec.m in Sources */,
				162E83751A9BDE8B00906325 /* SDLButtonCapabilitiesSpec.m in Sources */,
				162E83151A9BDE8B00906325 /* SDLOnEncodedSyncPDataSpec.m in Sources */,
				162E83261A9BDE8B00906325 /* SDLChangeRegistrationSpec.m in Sources */,
				162E82D21A9BDE8A00906325 /* SDLButtonPressModeSpec.m in Sources */,
				162E82D71A9BDE8A00906325 /* SDLDeviceLevelStatusSpec.m in Sources */,
				162E83841A9BDE8B00906325 /* SDLMenuParamsSpec.m in Sources */,
				5DB1BCE11D243DDE002FFC37 /* SDLConfigurationSpec.m in Sources */,
				162E83071A9BDE8B00906325 /* SDLVehicleDataNotificationStatusSpec.m in Sources */,
				5D9F50811BE7E6E300FEF399 /* SDLPermissionsManagerSpec.m in Sources */,
				162E83361A9BDE8B00906325 /* SDLRegisterAppInterfaceSpec.m in Sources */,
				162E82DD1A9BDE8B00906325 /* SDLFileTypeSpec.m in Sources */,
				162E836A1A9BDE8B00906325 /* SDLSubscribeVehicleDataResponseSpec.m in Sources */,
				162E83761A9BDE8B00906325 /* SDLChoiceSpec.m in Sources */,
				162E83571A9BDE8B00906325 /* SDLGetDTCsResponseSpec.m in Sources */,
				162E83201A9BDE8B00906325 /* SDLOnVehicleDataSpec.m in Sources */,
				162E83141A9BDE8B00906325 /* SDLOnDriverDistractionSpec.m in Sources */,
				162E83371A9BDE8B00906325 /* SDLResetGlobalPropertiesSpec.m in Sources */,
				162E82DF1A9BDE8B00906325 /* SDLGlobalProperySpec.m in Sources */,
				162E82F61A9BDE8B00906325 /* SDLRequestTypeSpec.m in Sources */,
				162E82FB1A9BDE8B00906325 /* SDLSpeechCapabilitiesSpec.m in Sources */,
				162E830D1A9BDE8B00906325 /* SDLWiperStatusSpec.m in Sources */,
				162E832C1A9BDE8B00906325 /* SDLDiagnosticMessageSpec.m in Sources */,
				5DF2BB9D1B94E38A00CE5994 /* SDLURLSessionSpec.m in Sources */,
				162E83381A9BDE8B00906325 /* SDLScrollableMessageSpec.m in Sources */,
				162E82E81A9BDE8B00906325 /* SDLKeyboardLayoutSpec.m in Sources */,
				DA4353EB1D2721680099B8C4 /* SDLTouchSpec.m in Sources */,
				5DB1BCE71D245647002FFC37 /* TestStateMachineTarget.m in Sources */,
				162E83541A9BDE8B00906325 /* SDLEncodedSyncPDataResponseSpec.m in Sources */,
				162E83161A9BDE8B00906325 /* SDLOnHashChangeSpec.m in Sources */,
				162E82FE1A9BDE8B00906325 /* SDLTBTStateSpec.m in Sources */,
				5D5DBF0B1D48E5E600D4F914 /* SDLLockScreenViewControllerSnapshotTests.m in Sources */,
				5DB1BCD41D243A8E002FFC37 /* SDLListFilesOperationSpec.m in Sources */,
				162E834B1A9BDE8B00906325 /* SDLAlertManeuverResponseSpec.m in Sources */,
				162E833E1A9BDE8B00906325 /* SDLShowSpec.m in Sources */,
				162E83241A9BDE8B00906325 /* SDLAlertManeuverSpec.m in Sources */,
				162E83451A9BDE8B00906325 /* SDLUnregisterAppInterfaceSpec.m in Sources */,
				162E82EF1A9BDE8B00906325 /* SDLPermissionStatusSpec.m in Sources */,
				162E82F01A9BDE8B00906325 /* SDLPowerModeQualificationStatusSpec.m in Sources */,
				162E82CD1A9BDE8A00906325 /* SDLAudioStreamingStateSpec.m in Sources */,
				162E831A1A9BDE8B00906325 /* SDLOnLockScreenStatusSpec.m in Sources */,
				162E83431A9BDE8B00906325 /* SDLSyncPDataSpec.m in Sources */,
				DACBA1E01D22E856002356F8 /* SDLTouchCoord.m in Sources */,
				167ED9461A9BCE5D00797BE5 /* SwiftSpec.swift in Sources */,
				162E838B1A9BDE8B00906325 /* SDLSoftButtonCapabilitiesSpec.m in Sources */,
				162E834C1A9BDE8B00906325 /* SDLAlertResponseSpec.m in Sources */,
				1680B11B1A9CD7AD00DBD79E /* SDLFunctionIDSpec.m in Sources */,
				5DB1BCDA1D243D85002FFC37 /* SDLStateMachineSpec.m in Sources */,
				162E83131A9BDE8B00906325 /* SDLOnCommandSpec.m in Sources */,
				162E833A1A9BDE8B00906325 /* SDLSetDisplayLayoutSpec.m in Sources */,
				162E838F1A9BDE8B00906325 /* SDLTextFieldSpec.m in Sources */,
				162E82CA1A9BDE8A00906325 /* SDLAmbientLightStatusSpec.m in Sources */,
				162E83091A9BDE8B00906325 /* SDLVehicleDataStatusSpec.m in Sources */,
				162E83741A9BDE8B00906325 /* SDLBodyInformationSpec.m in Sources */,
				162E83641A9BDE8B00906325 /* SDLSetMediaClockTimerResponseSpec.m in Sources */,
				162E839C1A9BDE8B00906325 /* SDLRPCRequestSpec.m in Sources */,
				DA4353E31D2720A30099B8C4 /* SDLPinchGestureSpec.m in Sources */,
				5D8B17561AC9E399006A6E1C /* SDLDialNumberSpec.m in Sources */,
				162E833D1A9BDE8B00906325 /* SDLShowConstantTBTSpec.m in Sources */,
				162E83651A9BDE8B00906325 /* SDLShowConstantTBTResponseSpec.m in Sources */,
				162E82F91A9BDE8B00906325 /* SDLSamplingRateSpec.m in Sources */,
				162E82CB1A9BDE8A00906325 /* SDLAppHMITypeSpec.m in Sources */,
				162E83031A9BDE8B00906325 /* SDLTriggerSource.m in Sources */,
				162E82D61A9BDE8A00906325 /* SDLComponentVolumeStatusSpec.m in Sources */,
				162E835C1A9BDE8B00906325 /* SDLPutFileResponseSpec.m in Sources */,
				162E835F1A9BDE8B00906325 /* SDLResetGlobalPropertiesResponseSpec.m in Sources */,
				162E835E1A9BDE8B00906325 /* SDLRegisterAppInterfaceResponseSpec.m in Sources */,
				162E835A1A9BDE8B00906325 /* SDLPerformAudioPassThruResponseSpec.m in Sources */,
				162E83501A9BDE8B00906325 /* SDLDeleteFileResponseSpec.m in Sources */,
				162E83601A9BDE8B00906325 /* SDLScrollableMessageResponseSpec.m in Sources */,
				162E83791A9BDE8B00906325 /* SDLDeviceStatusSpec.m in Sources */,
				162E83821A9BDE8B00906325 /* SDLImageSpec.m in Sources */,
				162E834A1A9BDE8B00906325 /* SDLAddSubMenuResponseSpec.m in Sources */,
				162E830C1A9BDE8B00906325 /* SDLWarningLightStatusSpec.m in Sources */,
				162E82E71A9BDE8B00906325 /* SDLKeyboardEventSpec.m in Sources */,
				162E834E1A9BDE8B00906325 /* SDLCreateInteractionChoiceSetResponseSpec.m in Sources */,
				DA9F7EB61DCC086A00ACAE48 /* SDLOasisAddressSpec.m in Sources */,
				162E83301A9BDE8B00906325 /* SDLGetVehicleDataSpec.m in Sources */,
				162E833F1A9BDE8B00906325 /* SDLSliderSpec.m in Sources */,
				162E838C1A9BDE8B00906325 /* SDLSoftButtonSpec.m in Sources */,
				162E83191A9BDE8B00906325 /* SDLOnLanguageChangeSpec.m in Sources */,
				5DB1BCDD1D243DC3002FFC37 /* SDLLifecycleConfigurationSpec.m in Sources */,
				162E83611A9BDE8B00906325 /* SDLSetAppIconResponseSpec.m in Sources */,
				162E83471A9BDE8B00906325 /* SDLUnsubscribeVehicleDataSpec.m in Sources */,
				162E839A1A9BDE8B00906325 /* SDLRPCMessageSpec.m in Sources */,
				162E83311A9BDE8B00906325 /* SDLListFilesSpec.m in Sources */,
				5DC978261B7A38640012C2F1 /* SDLGlobalsSpec.m in Sources */,
				162E82FF1A9BDE8B00906325 /* SDLTextAlignmentSpec.m in Sources */,
				162E831F1A9BDE8B00906325 /* SDLOnTouchEventSpec.m in Sources */,
				162E83921A9BDE8B00906325 /* SDLTouchEventCapabilitiesSpec.m in Sources */,
				162E837F1A9BDE8B00906325 /* SDLHeadLampStatusSpec.m in Sources */,
				162E834D1A9BDE8B00906325 /* SDLChangeRegistrationResponseSpec.m in Sources */,
				162E836B1A9BDE8B00906325 /* SDLSyncPDataResponseSpec.m in Sources */,
				162E839B1A9BDE8B00906325 /* SDLRPCNotificationSpec.m in Sources */,
				162E83581A9BDE8B00906325 /* SDLGetVehicleDataResponseSpec.m in Sources */,
				162E831D1A9BDE8B00906325 /* SDLOnSystemRequestSpec.m in Sources */,
				162E835D1A9BDE8B00906325 /* SDLReadDIDResponseSpec.m in Sources */,
				162E82D41A9BDE8A00906325 /* SDLCharacterSetSpec.m in Sources */,
				162E830F1A9BDE8B00906325 /* SDLOnAppInterfaceUnregisteredSpec.m in Sources */,
				162E83971A9BDE8B00906325 /* SDLVehicleTypeSpec.m in Sources */,
				1680B1131A9CD7AD00DBD79E /* SDLProtocolHeaderSpec.m in Sources */,
				162E82D01A9BDE8A00906325 /* SDLButtonEventModeSpec.m in Sources */,
				162E83781A9BDE8B00906325 /* SDLDeviceInfoSpec.m in Sources */,
				162E83391A9BDE8B00906325 /* SDLSetAppIconSpec.m in Sources */,
				162E83011A9BDE8B00906325 /* SDLTimerModeSpec.m in Sources */,
				162E83891A9BDE8B00906325 /* SDLScreenParamsSpec.m in Sources */,
				162E83441A9BDE8B00906325 /* SDLSystemRequestSpec.m in Sources */,
				162E83001A9BDE8B00906325 /* SDLTextFieldNameSpec.m in Sources */,
				DA4353EA1D2721680099B8C4 /* SDLTouchManagerSpec.m in Sources */,
				162E82FC1A9BDE8B00906325 /* SDLSystemAction.m in Sources */,
				162E82CC1A9BDE8A00906325 /* SDLAppInterfaceUnregisteredReasonSpec.m in Sources */,
				162E83321A9BDE8B00906325 /* SDLPerformAudioPassThruSpec.m in Sources */,
				162E830B1A9BDE8B00906325 /* SDLVrCapabilitiesSpec.m in Sources */,
				162E83081A9BDE8B00906325 /* SDLVehicleDataResultCodeSpec.m in Sources */,
				162E83621A9BDE8B00906325 /* SDLSetDisplayLayoutResponseSpec.m in Sources */,
				162E832E1A9BDE8B00906325 /* SDLEndAudioPassThruSpec.m in Sources */,
				1680B1191A9CD7AD00DBD79E /* SDLV2ProtocolMessageSpec.m in Sources */,
				162E83961A9BDE8B00906325 /* SDLVehicleDataResultSpec.m in Sources */,
				162E83491A9BDE8B00906325 /* SDLAddCommandResponseSpec.m in Sources */,
				162E82F51A9BDE8B00906325 /* SDLPRNDLSpec.m in Sources */,
				1680B1171A9CD7AD00DBD79E /* SDLProtocolSpec.m in Sources */,
				162E836D1A9BDE8B00906325 /* SDLUnregisterAppInterfaceResponseSpec.m in Sources */,
				162E837C1A9BDE8B00906325 /* SDLECallInfoSpec.m in Sources */,
				5DB1BCD51D243A8E002FFC37 /* SDLUploadFileOperationSpec.m in Sources */,
				162E83401A9BDE8B00906325 /* SDLSpeakSpec.m in Sources */,
				5DCF76FC1ACDDB4200BB647B /* SDLSendLocationSpec.m in Sources */,
				5DB1BCD81D243AA6002FFC37 /* SDLPermissionFilterSpec.m in Sources */,
				162E83561A9BDE8B00906325 /* SDLGenericResponseSpec.m in Sources */,
				162E82D51A9BDE8A00906325 /* SDLCompassDirectionSpec.m in Sources */,
				162E83861A9BDE8B00906325 /* SDLParameterPermissionsSpec.m in Sources */,
				DACBA1DF1D22D6CE002356F8 /* SDLTouchEvent.m in Sources */,
				162E831B1A9BDE8B00906325 /* SDLOnPermissionsChangeSpec.m in Sources */,
				162E83711A9BDE8B00906325 /* SDLAirbagStatusSpec.m in Sources */,
				162E82CF1A9BDE8A00906325 /* SDLBitsPerSampleSpec.m in Sources */,
				162E831E1A9BDE8B00906325 /* SDLOnTBTClientStateSpec.m in Sources */,
				162E83351A9BDE8B00906325 /* SDLReadDIDSpec.m in Sources */,
				162E836F1A9BDE8B00906325 /* SDLUnsubscribeVehicleDataResponseSpec.m in Sources */,
				162E82DB1A9BDE8B00906325 /* SDLECallConfirmationStatusSpec.m in Sources */,
				162E82D81A9BDE8A00906325 /* SDLDimensionSpec.m in Sources */,
				162E83731A9BDE8B00906325 /* SDLBeltStatusSpec.m in Sources */,
				162E83551A9BDE8B00906325 /* SDLEndAudioPassThruResponseSpec.m in Sources */,
				162E83251A9BDE8B00906325 /* SDLAlertSpec.m in Sources */,
				162E830A1A9BDE8B00906325 /* SDLVehicleDataTypeSpec.m in Sources */,
				5DB1BCD31D243A8E002FFC37 /* SDLDeleteFileOperationSpec.m in Sources */,
				162E82F41A9BDE8B00906325 /* SDLPrimaryAudioSource.m in Sources */,
				5DBAE0AB1D3588AC00CE00BF /* SDLNotificationDispatcherSpec.m in Sources */,
				162E83461A9BDE8B00906325 /* SDLUnsubscribeButtonSpec.m in Sources */,
				162E82EB1A9BDE8B00906325 /* SDLLayoutModeSpec.m in Sources */,
				DACBA1DE1D22D642002356F8 /* SDLTouchType.m in Sources */,
				1680B1181A9CD7AD00DBD79E /* SDLV1ProtocolMessageSpec.m in Sources */,
				162E82EC1A9BDE8B00906325 /* SDLLockScreenStatusSpec.m in Sources */,
				DA96C0661D4D4F730022F520 /* SDLAppInfoSpec.m in Sources */,
				162E832F1A9BDE8B00906325 /* SDLGetDTCsSpec.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		5D61FA291A84237100846EE7 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 5D61FA1B1A84237100846EE7 /* SmartDeviceLink */;
			targetProxy = 5D61FA281A84237100846EE7 /* PBXContainerItemProxy */;
		};
		5D61FA2B1A84237100846EE7 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 5D4019AE1A76EC350006B0C2 /* SmartDeviceLink-Example */;
			targetProxy = 5D61FA2A1A84237100846EE7 /* PBXContainerItemProxy */;
		};
		5D61FA321A84237100846EE7 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 5D61FA1B1A84237100846EE7 /* SmartDeviceLink */;
			targetProxy = 5D61FA311A84237100846EE7 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		5D0218F71A8E7A7300D1BF62 /* ConnectionTCPTableViewController.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				5D0218F81A8E7A7300D1BF62 /* Base */,
			);
			name = ConnectionTCPTableViewController.storyboard;
			sourceTree = "<group>";
		};
		5D0219031A8E9F6D00D1BF62 /* ConnectionIAPTableViewController.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				5D0219041A8E9F6D00D1BF62 /* Base */,
			);
			name = ConnectionIAPTableViewController.storyboard;
			sourceTree = "<group>";
		};
		5D4029DF1A76F0760006B0C2 /* LaunchScreen.xib */ = {
			isa = PBXVariantGroup;
			children = (
				5D4029E01A76F0760006B0C2 /* Base */,
			);
			name = LaunchScreen.xib;
			sourceTree = "<group>";
		};
		5D4029E11A76F0760006B0C2 /* Main.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				5D4029E21A76F0760006B0C2 /* Base */,
			);
			name = Main.storyboard;
			sourceTree = "<group>";
		};
		5D616B481D552F7A00553F6B /* SDLLockScreen.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				5D616B471D552F7A00553F6B /* Base */,
				5D616B561D5A233100553F6B /* en */,
				5D616B571D5A23C500553F6B /* fr */,
				5D616B581D5A23CC00553F6B /* de */,
				5D616B591D5A23D400553F6B /* ja */,
				5D616B5A1D5A23DC00553F6B /* zh-Hans */,
				5D616B5B1D5A23E400553F6B /* es */,
			);
			name = SDLLockScreen.storyboard;
			path = Assets;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		5D4019D01A76EC350006B0C2 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				MTL_ENABLE_DEBUG_INFO = YES;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = iphoneos;
			};
			name = Debug;
		};
		5D4019D11A76EC350006B0C2 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = YES;
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				SDKROOT = iphoneos;
				SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		5D4019D31A76EC350006B0C2 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				INFOPLIST_FILE = "$(SRCROOT)/SmartDeviceLink_Example/Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.smartdevicelink.SDLTestApp;
				PRODUCT_NAME = "SDL Example";
			};
			name = Debug;
		};
		5D4019D41A76EC350006B0C2 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				INFOPLIST_FILE = "$(SRCROOT)/SmartDeviceLink_Example/Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.smartdevicelink.SDLTestApp;
				PRODUCT_NAME = "SDL Example";
			};
			name = Release;
		};
		5D61FA361A84237100846EE7 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_SECURITY_FLOATLOOPCOUNTER = YES;
				CLANG_ANALYZER_SECURITY_INSECUREAPI_RAND = YES;
				CLANG_ANALYZER_SECURITY_INSECUREAPI_STRCPY = YES;
				CLANG_STATIC_ANALYZER_MODE = deep;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				CURRENT_PROJECT_VERSION = 1;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				FRAMEWORK_SEARCH_PATHS = "$(inherited)";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				INFOPLIST_FILE = SmartDeviceLink/Info.plist;
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				LIBRARY_SEARCH_PATHS = "$(inherited)";
				PRODUCT_BUNDLE_IDENTIFIER = com.smartdevicelink.smartdevicelink;
				PRODUCT_NAME = "$(TARGET_NAME)";
				RUN_CLANG_STATIC_ANALYZER = YES;
				SKIP_INSTALL = YES;
				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
		5D61FA371A84237100846EE7 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_SECURITY_FLOATLOOPCOUNTER = YES;
				CLANG_ANALYZER_SECURITY_INSECUREAPI_RAND = YES;
				CLANG_ANALYZER_SECURITY_INSECUREAPI_STRCPY = YES;
				CLANG_STATIC_ANALYZER_MODE = deep;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = NO;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				CURRENT_PROJECT_VERSION = 1;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				FRAMEWORK_SEARCH_PATHS = "$(inherited)";
				INFOPLIST_FILE = SmartDeviceLink/Info.plist;
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				LIBRARY_SEARCH_PATHS = "$(inherited)";
				PRODUCT_BUNDLE_IDENTIFIER = com.smartdevicelink.smartdevicelink;
				PRODUCT_NAME = "$(TARGET_NAME)";
				RUN_CLANG_STATIC_ANALYZER = YES;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
		5D61FA391A84237100846EE7 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_MODULES = YES;
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"$(DEVELOPER_FRAMEWORKS_DIR)",
					"$(PROJECT_DIR)/Carthage/Build/iOS",
				);
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
				);
				INFOPLIST_FILE = SmartDeviceLinkTests/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				OTHER_LDFLAGS = (
					"$(inherited)",
					"-framework",
					XCTest,
					"-all_load",
					"-ObjC",
				);
				PRODUCT_BUNDLE_IDENTIFIER = "com.smartdevicelink.$(PRODUCT_NAME:rfc1034identifier)";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
				SWIFT_VERSION = 2.3;
			};
			name = Debug;
		};
		5D61FA3A1A84237100846EE7 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_MODULES = YES;
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"$(DEVELOPER_FRAMEWORKS_DIR)",
					"$(PROJECT_DIR)/Carthage/Build/iOS",
				);
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
				);
				INFOPLIST_FILE = SmartDeviceLinkTests/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				OTHER_LDFLAGS = (
					"$(inherited)",
					"-framework",
					XCTest,
					"-all_load",
					"-ObjC",
				);
				PRODUCT_BUNDLE_IDENTIFIER = "com.smartdevicelink.$(PRODUCT_NAME:rfc1034identifier)";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SWIFT_VERSION = 2.3;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		5D4019AA1A76EC350006B0C2 /* Build configuration list for PBXProject "SmartDeviceLink-iOS" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				5D4019D01A76EC350006B0C2 /* Debug */,
				5D4019D11A76EC350006B0C2 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		5D4019D21A76EC350006B0C2 /* Build configuration list for PBXNativeTarget "SmartDeviceLink-Example" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				5D4019D31A76EC350006B0C2 /* Debug */,
				5D4019D41A76EC350006B0C2 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		5D61FA351A84237100846EE7 /* Build configuration list for PBXNativeTarget "SmartDeviceLink" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				5D61FA361A84237100846EE7 /* Debug */,
				5D61FA371A84237100846EE7 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		5D61FA381A84237100846EE7 /* Build configuration list for PBXNativeTarget "SmartDeviceLinkTests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				5D61FA391A84237100846EE7 /* Debug */,
				5D61FA3A1A84237100846EE7 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 5D4019A71A76EC350006B0C2 /* Project object */;
}