Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project.pbxproj « Mumble.xcodeproj - github.com/mumble-voip/mumble-iphoneos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b8eec3837c7068cdcc58f16e4818dcebfef8fa7 (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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 45;
	objects = {

/* Begin PBXBuildFile section */
		1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
		1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
		1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
		2801C35B11CA9F1A00E664E8 /* PreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2801C35A11CA9F1A00E664E8 /* PreferencesViewController.m */; };
		280D4A191254DAB400493267 /* down@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4A171254DAB400493267 /* down@2x.png */; };
		280D4A1A1254DAB400493267 /* up@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4A181254DAB400493267 /* up@2x.png */; };
		280D4A261254E1B700493267 /* cloud@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4A211254E1B700493267 /* cloud@2x.png */; };
		280D4A271254E1B700493267 /* diagnostics@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4A221254E1B700493267 /* diagnostics@2x.png */; };
		280D4A281254E1B700493267 /* globe@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4A231254E1B700493267 /* globe@2x.png */; };
		280D4A291254E1B700493267 /* person@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4A241254E1B700493267 /* person@2x.png */; };
		280D4A2A1254E1B700493267 /* star@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4A251254E1B700493267 /* star@2x.png */; };
		280D4A311254EC1900493267 /* certificatecell.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4A2F1254EC1900493267 /* certificatecell.png */; };
		280D4A321254EC1900493267 /* certificatecell@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4A301254EC1900493267 /* certificatecell@2x.png */; };
		280D4B361255457B00493267 /* talking_alt.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4B2E1255457B00493267 /* talking_alt.png */; };
		280D4B371255457B00493267 /* talking_alt@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4B2F1255457B00493267 /* talking_alt@2x.png */; };
		280D4B381255457B00493267 /* talking_off.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4B301255457B00493267 /* talking_off.png */; };
		280D4B391255457B00493267 /* talking_off@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4B311255457B00493267 /* talking_off@2x.png */; };
		280D4B3A1255457B00493267 /* talking_on.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4B321255457B00493267 /* talking_on.png */; };
		280D4B3B1255457B00493267 /* talking_on@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4B331255457B00493267 /* talking_on@2x.png */; };
		280D4B3C1255457B00493267 /* talking_whisper.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4B341255457B00493267 /* talking_whisper.png */; };
		280D4B3D1255457B00493267 /* talking_whisper@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4B351255457B00493267 /* talking_whisper@2x.png */; };
		280D4B401255463000493267 /* channel.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4B3E1255463000493267 /* channel.png */; };
		280D4B411255463000493267 /* channel@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 280D4B3F1255463000493267 /* channel@2x.png */; };
		280EDE8912FE1E7C00774B3B /* ServerRootViewControllerPad.m in Sources */ = {isa = PBXBuildFile; fileRef = 280EDE8812FE1E7C00774B3B /* ServerRootViewControllerPad.m */; };
		281EF08811CD721D001C6B73 /* AdvancedAudioPreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 281EF08711CD721D001C6B73 /* AdvancedAudioPreferencesViewController.m */; };
		2821B821124E9F4E001DF8E4 /* globe.png in Resources */ = {isa = PBXBuildFile; fileRef = 2821B820124E9F4E001DF8E4 /* globe.png */; };
		2821B829124EA09F001DF8E4 /* star.png in Resources */ = {isa = PBXBuildFile; fileRef = 2821B828124EA09F001DF8E4 /* star.png */; };
		2821B82F124EA784001DF8E4 /* person.png in Resources */ = {isa = PBXBuildFile; fileRef = 2821B82E124EA784001DF8E4 /* person.png */; };
		2821B837124EAA67001DF8E4 /* diagnostics.png in Resources */ = {isa = PBXBuildFile; fileRef = 2821B836124EAA67001DF8E4 /* diagnostics.png */; };
		2821B843124EAC1B001DF8E4 /* cloud.png in Resources */ = {isa = PBXBuildFile; fileRef = 2821B842124EAC1B001DF8E4 /* cloud.png */; };
		2821B871124EB3F3001DF8E4 /* Splash.png in Resources */ = {isa = PBXBuildFile; fileRef = 2821B870124EB3F3001DF8E4 /* Splash.png */; };
		2830A18C11CE983B00970A41 /* DiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2830A18B11CE983B00970A41 /* DiagnosticsViewController.m */; };
		2838EA0F129316C200035C5D /* CertificatePreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2838EA0E129316C200035C5D /* CertificatePreferencesViewController.m */; };
		283A68BE1253856E00267F6D /* down.png in Resources */ = {isa = PBXBuildFile; fileRef = 283A68BC1253856E00267F6D /* down.png */; };
		283A68BF1253856E00267F6D /* up.png in Resources */ = {isa = PBXBuildFile; fileRef = 283A68BD1253856E00267F6D /* up.png */; };
		284BBBA512495C4400366F4C /* MumbleApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 284BBBA412495C4400366F4C /* MumbleApplication.m */; };
		2858A580123B9E5700A82155 /* CertificateCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2858A57F123B9E5700A82155 /* CertificateCell.xib */; };
		2858A591123B9EE000A82155 /* certificate16.png in Resources */ = {isa = PBXBuildFile; fileRef = 2858A58B123B9EE000A82155 /* certificate16.png */; };
		2858A593123B9EE000A82155 /* certificate64.png in Resources */ = {isa = PBXBuildFile; fileRef = 2858A58D123B9EE000A82155 /* certificate64.png */; };
		2858A594123B9EE000A82155 /* certificate128.png in Resources */ = {isa = PBXBuildFile; fileRef = 2858A58E123B9EE000A82155 /* certificate128.png */; };
		2858A595123B9EE000A82155 /* certificate256.png in Resources */ = {isa = PBXBuildFile; fileRef = 2858A58F123B9EE000A82155 /* certificate256.png */; };
		2858A596123B9EE000A82155 /* certificate512.png in Resources */ = {isa = PBXBuildFile; fileRef = 2858A590123B9EE000A82155 /* certificate512.png */; };
		2858A598123BA05E00A82155 /* certificate32.png in Resources */ = {isa = PBXBuildFile; fileRef = 2858A597123BA05E00A82155 /* certificate32.png */; };
		2858A5AD123BA08D00A82155 /* CertificateCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2858A5AC123BA08D00A82155 /* CertificateCell.m */; };
		2858A62C123BB9B300A82155 /* AvatarCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2858A62B123BB9B300A82155 /* AvatarCell.xib */; };
		2858DBA31233E31B000D6F75 /* VersionChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2858DBA21233E31B000D6F75 /* VersionChecker.m */; };
		285C9E96116BEE1500A9A6A7 /* MainWindow-iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 285C9E95116BEE1500A9A6A7 /* MainWindow-iPad.xib */; };
		285C9EF2116BF5B100A9A6A7 /* WelcomeScreenPad.m in Sources */ = {isa = PBXBuildFile; fileRef = 285C9EF0116BF5B100A9A6A7 /* WelcomeScreenPad.m */; };
		2861C274116BE905002B8514 /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2861C25B116BE905002B8514 /* AboutViewController.m */; };
		2861C275116BE905002B8514 /* AboutViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2861C25C116BE905002B8514 /* AboutViewController.xib */; };
		2861C276116BE905002B8514 /* MumbleApplicationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2861C25E116BE905002B8514 /* MumbleApplicationDelegate.m */; };
		2861C27B116BE905002B8514 /* PublicServerList.m in Sources */ = {isa = PBXBuildFile; fileRef = 2861C267116BE905002B8514 /* PublicServerList.m */; };
		2861C27C116BE905002B8514 /* PublicServerListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2861C269116BE905002B8514 /* PublicServerListController.m */; };
		2861C281116BE905002B8514 /* WelcomeScreenPhone.m in Sources */ = {isa = PBXBuildFile; fileRef = 2861C271116BE905002B8514 /* WelcomeScreenPhone.m */; };
		2861C282116BE905002B8514 /* WelcomeScreenPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2861C272116BE905002B8514 /* WelcomeScreenPhone.xib */; };
		2861C2AE116BE9B5002B8514 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2861C2AD116BE9B5002B8514 /* AudioToolbox.framework */; };
		2861C2B2116BE9B7002B8514 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2861C2B1116BE9B7002B8514 /* CFNetwork.framework */; };
		2861C2B6116BE9BA002B8514 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2861C2B5116BE9BA002B8514 /* Security.framework */; };
		2861C3E5116BEA12002B8514 /* Contributors.html in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2BC116BEA11002B8514 /* Contributors.html */; };
		2861C3E6116BEA12002B8514 /* Legal.html in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2BD116BEA11002B8514 /* Legal.html */; };
		2861C3E7116BEA12002B8514 /* authenticated.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2BF116BEA11002B8514 /* authenticated.pdf */; };
		2861C3E8116BEA12002B8514 /* channel.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2C0116BEA11002B8514 /* channel.pdf */; };
		2861C3E9116BEA12002B8514 /* channel_active.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2C1116BEA11002B8514 /* channel_active.pdf */; };
		2861C3EA116BEA12002B8514 /* channel_linked.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2C2116BEA11002B8514 /* channel_linked.pdf */; };
		2861C3EB116BEA12002B8514 /* comment.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2C3116BEA11002B8514 /* comment.pdf */; };
		2861C3EC116BEA12002B8514 /* comment_seen.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2C4116BEA11002B8514 /* comment_seen.pdf */; };
		2861C3ED116BEA12002B8514 /* deafened_self.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2C5116BEA11002B8514 /* deafened_self.pdf */; };
		2861C3EE116BEA12002B8514 /* deafened_server.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2C6116BEA11002B8514 /* deafened_server.pdf */; };
		2861C3EF116BEA12002B8514 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 2861C2C7116BEA11002B8514 /* Default.png */; };
		2861C4E2116BEA12002B8514 /* icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3BB116BEA11002B8514 /* icon.png */; };
		2861C4E3116BEA12002B8514 /* layout_classic.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3BC116BEA11002B8514 /* layout_classic.pdf */; };
		2861C4E4116BEA12002B8514 /* layout_custom.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3BD116BEA11002B8514 /* layout_custom.pdf */; };
		2861C4E5116BEA12002B8514 /* layout_hybrid.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3BE116BEA11002B8514 /* layout_hybrid.pdf */; };
		2861C4E6116BEA12002B8514 /* layout_stacked.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3BF116BEA11002B8514 /* layout_stacked.pdf */; };
		2861C4E7116BEA12002B8514 /* mumble.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3C0116BEA11002B8514 /* mumble.pdf */; };
		2861C4E8116BEA12002B8514 /* muted_local.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3C1116BEA11002B8514 /* muted_local.pdf */; };
		2861C4E9116BEA12002B8514 /* muted_self.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3C2116BEA11002B8514 /* muted_self.pdf */; };
		2861C4EA116BEA12002B8514 /* muted_server.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3C3116BEA11002B8514 /* muted_server.pdf */; };
		2861C4EB116BEA12002B8514 /* muted_suppressed.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3C4116BEA11002B8514 /* muted_suppressed.pdf */; };
		2861C4EC116BEA12002B8514 /* rec.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3C5116BEA11002B8514 /* rec.pdf */; };
		2861C504116BEA12002B8514 /* talking_alt.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3DE116BEA12002B8514 /* talking_alt.pdf */; };
		2861C505116BEA12002B8514 /* talking_off.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3DF116BEA12002B8514 /* talking_off.pdf */; };
		2861C506116BEA12002B8514 /* talking_on.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3E0116BEA12002B8514 /* talking_on.pdf */; };
		2861C507116BEA12002B8514 /* talking_whisper.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3E1116BEA12002B8514 /* talking_whisper.pdf */; };
		2861C508116BEA12002B8514 /* Continents.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3E3116BEA12002B8514 /* Continents.plist */; };
		2861C509116BEA12002B8514 /* Countries.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2861C3E4116BEA12002B8514 /* Countries.plist */; };
		287639F911D29D99009DB8B6 /* CertificateCreationProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 287639F811D29D99009DB8B6 /* CertificateCreationProgressView.m */; };
		287639FF11D2A242009DB8B6 /* CertificateCreationProgressView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 287639FE11D2A242009DB8B6 /* CertificateCreationProgressView.xib */; };
		28763A4511D2AA91009DB8B6 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28763A4411D2AA91009DB8B6 /* QuartzCore.framework */; };
		28763A9511D2B056009DB8B6 /* DefaultAvatar.png in Resources */ = {isa = PBXBuildFile; fileRef = 28763A9411D2B056009DB8B6 /* DefaultAvatar.png */; };
		28763AE411D2B77E009DB8B6 /* UINavigationController-AnimationAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 28763AE311D2B77E009DB8B6 /* UINavigationController-AnimationAdditions.m */; };
		287852DB117BC866009E26B1 /* ServerRootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 287852DA117BC866009E26B1 /* ServerRootViewController.m */; };
		287A60581176201E00DD4FFB /* ChannelViewController.m in Resources */ = {isa = PBXBuildFile; fileRef = 287A60561176201E00DD4FFB /* ChannelViewController.m */; };
		287A60591176201E00DD4FFB /* ChannelViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 287A60571176201E00DD4FFB /* ChannelViewController.xib */; };
		287A60AA117628FE00DD4FFB /* ChannelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 287A60561176201E00DD4FFB /* ChannelViewController.m */; };
		287BA29011B96C960010E031 /* Database.m in Sources */ = {isa = PBXBuildFile; fileRef = 287BA28F11B96C960010E031 /* Database.m */; };
		287BA33B11B97C470010E031 /* FavouriteServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 287BA33A11B97C470010E031 /* FavouriteServer.m */; };
		287BA34011B97EEE0010E031 /* FavouriteServerListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 287BA33F11B97EEE0010E031 /* FavouriteServerListController.m */; };
		287BA3A611B996D90010E031 /* FavouriteServerEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 287BA3A511B996D90010E031 /* FavouriteServerEditViewController.m */; };
		287BA42B11B9A1DB0010E031 /* TableViewTextFieldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 287BA42A11B9A1DB0010E031 /* TableViewTextFieldCell.m */; };
		287EAB841245305400A0159D /* libMumbleKitCombined.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 287EAB671245303200A0159D /* libMumbleKitCombined.a */; };
		288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765FC0DF74451002DB57D /* CoreGraphics.framework */; };
		288B55E01252903300563A28 /* ServerCertificateTrustViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 288B55DF1252903300563A28 /* ServerCertificateTrustViewController.m */; };
		288D6B60123D08EE00D37EDE /* CertificateViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 288D6B5F123D08EE00D37EDE /* CertificateViewController.m */; };
		288DC2BD12FD9C810044DEF5 /* WelcomeScreenPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 288DC2BC12FD9C810044DEF5 /* WelcomeScreenPad.xib */; };
		28942C0F1245476400C63A07 /* CertificatePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28942C0E1245476400C63A07 /* CertificatePickerViewController.m */; };
		28942D7C12456F9200C63A07 /* CertificateCreationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 28942D7B12456F9200C63A07 /* CertificateCreationView.m */; };
		289CBA18125693040015E58E /* ChannelNavigationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 289CBA17125693040015E58E /* ChannelNavigationViewController.m */; };
		289CBB541257BCD10015E58E /* authenticated.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBB521257BCD10015E58E /* authenticated.png */; };
		289CBB551257BCD10015E58E /* authenticated@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBB531257BCD10015E58E /* authenticated@2x.png */; };
		289CBB5B1257BDAC0015E58E /* muted_self.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBB591257BDAC0015E58E /* muted_self.png */; };
		289CBB5C1257BDAC0015E58E /* muted_self@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBB5A1257BDAC0015E58E /* muted_self@2x.png */; };
		289CBB821257C5B80015E58E /* deafened_self.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBB801257C5B80015E58E /* deafened_self.png */; };
		289CBB831257C5B80015E58E /* deafened_self@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBB811257C5B80015E58E /* deafened_self@2x.png */; };
		289CBC5B1257DFD60015E58E /* muted_local.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBC551257DFD60015E58E /* muted_local.png */; };
		289CBC5C1257DFD60015E58E /* muted_local@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBC561257DFD60015E58E /* muted_local@2x.png */; };
		289CBC5D1257DFD60015E58E /* muted_server.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBC571257DFD60015E58E /* muted_server.png */; };
		289CBC5E1257DFD60015E58E /* muted_server@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBC581257DFD60015E58E /* muted_server@2x.png */; };
		289CBC5F1257DFD60015E58E /* muted_suppressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBC591257DFD60015E58E /* muted_suppressed.png */; };
		289CBC601257DFD60015E58E /* muted_suppressed@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBC5A1257DFD60015E58E /* muted_suppressed@2x.png */; };
		289CBE91125934540015E58E /* deafened_server.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBE8F125934540015E58E /* deafened_server.png */; };
		289CBE92125934540015E58E /* deafened_server@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBE90125934540015E58E /* deafened_server@2x.png */; };
		289CBE99125935990015E58E /* priorityspeaker.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBE97125935990015E58E /* priorityspeaker.png */; };
		289CBE9A125935990015E58E /* priorityspeaker@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 289CBE98125935990015E58E /* priorityspeaker@2x.png */; };
		289D254C11BC28BC00E39F2C /* LanServerListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 289D254B11BC28BC00E39F2C /* LanServerListController.m */; };
		28A4CCD3117E064B006EB479 /* LogViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28A4CCD2117E064B006EB479 /* LogViewController.m */; };
		28A4CCF5117E1D4D006EB479 /* LogEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 28A4CCF4117E1D4D006EB479 /* LogEntry.m */; };
		28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28AD733E0D9D9553002E5188 /* MainWindow.xib */; };
		28C6EF0A11BBF38100E426C8 /* CountryServerListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28C6EF0911BBF38100E426C8 /* CountryServerListController.m */; };
		28F8B04511D97E0B006EFCBC /* sqlite3.c in Sources */ = {isa = PBXBuildFile; fileRef = 28F8B04211D97E0B006EFCBC /* sqlite3.c */; };
		28F9174811B946250030D649 /* FMDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F9174211B946250030D649 /* FMDatabase.m */; };
		28F9174911B946250030D649 /* FMDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F9174411B946250030D649 /* FMDatabaseAdditions.m */; };
		28F9174B11B946250030D649 /* FMResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F9174711B946250030D649 /* FMResultSet.m */; };
		28FEA682124AA5A000A3F6B5 /* ServerConnectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28FEA681124AA5A000A3F6B5 /* ServerConnectionViewController.m */; };
		28FEA6A2124AAA7100A3F6B5 /* ServerConnectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28FEA6A1124AAA7100A3F6B5 /* ServerConnectionView.xib */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		2861C2A6116BE91B002B8514 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 28D1E663115018A800469C69;
			remoteInfo = MumbleKit;
		};
		287EAB661245303200A0159D /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 1009A41501009A41501009A4;
			remoteInfo = MumbleKitCombined;
		};
		287EAB681245303200A0159D /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 1009C31B01009C31B01009C3;
			remoteInfo = "CELT-0.7.0";
		};
		287EAB6A1245303200A0159D /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 1009F1CE01009F1CE01009F1;
			remoteInfo = Speex;
		};
		287EAB6C1245303200A0159D /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 100A08C80100A08C80100A08;
			remoteInfo = SpeexDSP;
		};
		287EAB6E1245303200A0159D /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 100A27BF0100A27BF0100A27;
			remoteInfo = ProtocolBuffers;
		};
		287EAB701245303200A0159D /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 100CB7450100CB7450100CB7;
			remoteInfo = OpenSSL;
		};
		287EAB821245303E00A0159D /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 100669490100669490100669;
			remoteInfo = MumbleKitCombined;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		1D6058910D05DD3D006BFB54 /* Mumble.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Mumble.app; sourceTree = BUILT_PRODUCTS_DIR; };
		1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
		2801C35911CA9F1A00E664E8 /* PreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PreferencesViewController.h; sourceTree = "<group>"; };
		2801C35A11CA9F1A00E664E8 /* PreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PreferencesViewController.m; sourceTree = "<group>"; };
		280D4A171254DAB400493267 /* down@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "down@2x.png"; path = "Resources/icons/ios/down@2x.png"; sourceTree = "<group>"; };
		280D4A181254DAB400493267 /* up@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "up@2x.png"; path = "Resources/icons/ios/up@2x.png"; sourceTree = "<group>"; };
		280D4A211254E1B700493267 /* cloud@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "cloud@2x.png"; path = "Resources/icons/ios/cloud@2x.png"; sourceTree = "<group>"; };
		280D4A221254E1B700493267 /* diagnostics@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "diagnostics@2x.png"; path = "Resources/icons/ios/diagnostics@2x.png"; sourceTree = "<group>"; };
		280D4A231254E1B700493267 /* globe@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "globe@2x.png"; path = "Resources/icons/ios/globe@2x.png"; sourceTree = "<group>"; };
		280D4A241254E1B700493267 /* person@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "person@2x.png"; path = "Resources/icons/ios/person@2x.png"; sourceTree = "<group>"; };
		280D4A251254E1B700493267 /* star@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "star@2x.png"; path = "Resources/icons/ios/star@2x.png"; sourceTree = "<group>"; };
		280D4A2F1254EC1900493267 /* certificatecell.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificatecell.png; path = Resources/icons/ios/certificatecell.png; sourceTree = "<group>"; };
		280D4A301254EC1900493267 /* certificatecell@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "certificatecell@2x.png"; path = "Resources/icons/ios/certificatecell@2x.png"; sourceTree = "<group>"; };
		280D4B2E1255457B00493267 /* talking_alt.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = talking_alt.png; path = Resources/icons/ios/talking_alt.png; sourceTree = "<group>"; };
		280D4B2F1255457B00493267 /* talking_alt@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "talking_alt@2x.png"; path = "Resources/icons/ios/talking_alt@2x.png"; sourceTree = "<group>"; };
		280D4B301255457B00493267 /* talking_off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = talking_off.png; path = Resources/icons/ios/talking_off.png; sourceTree = "<group>"; };
		280D4B311255457B00493267 /* talking_off@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "talking_off@2x.png"; path = "Resources/icons/ios/talking_off@2x.png"; sourceTree = "<group>"; };
		280D4B321255457B00493267 /* talking_on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = talking_on.png; path = Resources/icons/ios/talking_on.png; sourceTree = "<group>"; };
		280D4B331255457B00493267 /* talking_on@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "talking_on@2x.png"; path = "Resources/icons/ios/talking_on@2x.png"; sourceTree = "<group>"; };
		280D4B341255457B00493267 /* talking_whisper.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = talking_whisper.png; path = Resources/icons/ios/talking_whisper.png; sourceTree = "<group>"; };
		280D4B351255457B00493267 /* talking_whisper@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "talking_whisper@2x.png"; path = "Resources/icons/ios/talking_whisper@2x.png"; sourceTree = "<group>"; };
		280D4B3E1255463000493267 /* channel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = channel.png; path = Resources/icons/ios/channel.png; sourceTree = "<group>"; };
		280D4B3F1255463000493267 /* channel@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "channel@2x.png"; path = "Resources/icons/ios/channel@2x.png"; sourceTree = "<group>"; };
		280EDE8712FE1E7C00774B3B /* ServerRootViewControllerPad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServerRootViewControllerPad.h; sourceTree = "<group>"; };
		280EDE8812FE1E7C00774B3B /* ServerRootViewControllerPad.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ServerRootViewControllerPad.m; sourceTree = "<group>"; };
		281EF08611CD721D001C6B73 /* AdvancedAudioPreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AdvancedAudioPreferencesViewController.h; sourceTree = "<group>"; };
		281EF08711CD721D001C6B73 /* AdvancedAudioPreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AdvancedAudioPreferencesViewController.m; sourceTree = "<group>"; };
		2821B820124E9F4E001DF8E4 /* globe.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = globe.png; path = Resources/icons/ios/globe.png; sourceTree = "<group>"; };
		2821B828124EA09F001DF8E4 /* star.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = star.png; path = Resources/icons/ios/star.png; sourceTree = "<group>"; };
		2821B82E124EA784001DF8E4 /* person.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = person.png; path = Resources/icons/ios/person.png; sourceTree = "<group>"; };
		2821B836124EAA67001DF8E4 /* diagnostics.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = diagnostics.png; path = Resources/icons/ios/diagnostics.png; sourceTree = "<group>"; };
		2821B842124EAC1B001DF8E4 /* cloud.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cloud.png; path = Resources/icons/ios/cloud.png; sourceTree = "<group>"; };
		2821B870124EB3F3001DF8E4 /* Splash.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Splash.png; path = Resources/icons/Splash.png; sourceTree = "<group>"; };
		2830A18A11CE983B00970A41 /* DiagnosticsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiagnosticsViewController.h; sourceTree = "<group>"; };
		2830A18B11CE983B00970A41 /* DiagnosticsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DiagnosticsViewController.m; sourceTree = "<group>"; };
		2838EA0D129316C200035C5D /* CertificatePreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CertificatePreferencesViewController.h; sourceTree = "<group>"; };
		2838EA0E129316C200035C5D /* CertificatePreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CertificatePreferencesViewController.m; sourceTree = "<group>"; };
		283A68BC1253856E00267F6D /* down.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = down.png; path = Resources/icons/ios/down.png; sourceTree = "<group>"; };
		283A68BD1253856E00267F6D /* up.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = up.png; path = Resources/icons/ios/up.png; sourceTree = "<group>"; };
		284BBBA312495C4400366F4C /* MumbleApplication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MumbleApplication.h; sourceTree = "<group>"; };
		284BBBA412495C4400366F4C /* MumbleApplication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MumbleApplication.m; sourceTree = "<group>"; };
		2858A57F123B9E5700A82155 /* CertificateCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = CertificateCell.xib; path = Resources/CertificateCell.xib; sourceTree = "<group>"; };
		2858A58B123B9EE000A82155 /* certificate16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate16.png; path = Resources/icons/ios/certificate16.png; sourceTree = "<group>"; };
		2858A58D123B9EE000A82155 /* certificate64.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate64.png; path = Resources/icons/ios/certificate64.png; sourceTree = "<group>"; };
		2858A58E123B9EE000A82155 /* certificate128.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate128.png; path = Resources/icons/ios/certificate128.png; sourceTree = "<group>"; };
		2858A58F123B9EE000A82155 /* certificate256.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate256.png; path = Resources/icons/ios/certificate256.png; sourceTree = "<group>"; };
		2858A590123B9EE000A82155 /* certificate512.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate512.png; path = Resources/icons/ios/certificate512.png; sourceTree = "<group>"; };
		2858A597123BA05E00A82155 /* certificate32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = certificate32.png; path = Resources/icons/ios/certificate32.png; sourceTree = "<group>"; };
		2858A5AB123BA08D00A82155 /* CertificateCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CertificateCell.h; sourceTree = "<group>"; };
		2858A5AC123BA08D00A82155 /* CertificateCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CertificateCell.m; sourceTree = "<group>"; };
		2858A62B123BB9B300A82155 /* AvatarCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = AvatarCell.xib; path = Resources/AvatarCell.xib; sourceTree = "<group>"; };
		2858DBA11233E31B000D6F75 /* VersionChecker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VersionChecker.h; sourceTree = "<group>"; };
		2858DBA21233E31B000D6F75 /* VersionChecker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VersionChecker.m; sourceTree = "<group>"; };
		285C9E95116BEE1500A9A6A7 /* MainWindow-iPad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "MainWindow-iPad.xib"; path = "../../Resources-iPad/Source/MainWindow-iPad.xib"; sourceTree = "<group>"; };
		285C9EEF116BF5B100A9A6A7 /* WelcomeScreenPad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WelcomeScreenPad.h; sourceTree = "<group>"; };
		285C9EF0116BF5B100A9A6A7 /* WelcomeScreenPad.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WelcomeScreenPad.m; sourceTree = "<group>"; };
		2861C25A116BE905002B8514 /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutViewController.h; sourceTree = "<group>"; };
		2861C25B116BE905002B8514 /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutViewController.m; sourceTree = "<group>"; };
		2861C25C116BE905002B8514 /* AboutViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AboutViewController.xib; sourceTree = "<group>"; };
		2861C25D116BE905002B8514 /* MumbleApplicationDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MumbleApplicationDelegate.h; sourceTree = "<group>"; };
		2861C25E116BE905002B8514 /* MumbleApplicationDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MumbleApplicationDelegate.m; sourceTree = "<group>"; };
		2861C25F116BE905002B8514 /* CountryServerListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CountryServerListController.h; sourceTree = "<group>"; };
		2861C266116BE905002B8514 /* PublicServerList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublicServerList.h; sourceTree = "<group>"; };
		2861C267116BE905002B8514 /* PublicServerList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublicServerList.m; sourceTree = "<group>"; };
		2861C268116BE905002B8514 /* PublicServerListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PublicServerListController.h; sourceTree = "<group>"; };
		2861C269116BE905002B8514 /* PublicServerListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PublicServerListController.m; sourceTree = "<group>"; };
		2861C270116BE905002B8514 /* WelcomeScreenPhone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WelcomeScreenPhone.h; sourceTree = "<group>"; };
		2861C271116BE905002B8514 /* WelcomeScreenPhone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WelcomeScreenPhone.m; sourceTree = "<group>"; };
		2861C272116BE905002B8514 /* WelcomeScreenPhone.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WelcomeScreenPhone.xib; sourceTree = "<group>"; };
		2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = MumbleKit.xcodeproj; path = MumbleKit/MumbleKit.xcodeproj; sourceTree = "<group>"; };
		2861C2AD116BE9B5002B8514 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
		2861C2B1116BE9B7002B8514 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
		2861C2B5116BE9BA002B8514 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
		2861C2BC116BEA11002B8514 /* Contributors.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = Contributors.html; sourceTree = "<group>"; };
		2861C2BD116BEA11002B8514 /* Legal.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = Legal.html; sourceTree = "<group>"; };
		2861C2BF116BEA11002B8514 /* authenticated.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = authenticated.pdf; sourceTree = "<group>"; };
		2861C2C0116BEA11002B8514 /* channel.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = channel.pdf; sourceTree = "<group>"; };
		2861C2C1116BEA11002B8514 /* channel_active.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = channel_active.pdf; sourceTree = "<group>"; };
		2861C2C2116BEA11002B8514 /* channel_linked.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = channel_linked.pdf; sourceTree = "<group>"; };
		2861C2C3116BEA11002B8514 /* comment.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = comment.pdf; sourceTree = "<group>"; };
		2861C2C4116BEA11002B8514 /* comment_seen.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = comment_seen.pdf; sourceTree = "<group>"; };
		2861C2C5116BEA11002B8514 /* deafened_self.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = deafened_self.pdf; sourceTree = "<group>"; };
		2861C2C6116BEA11002B8514 /* deafened_server.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = deafened_server.pdf; sourceTree = "<group>"; };
		2861C2C7116BEA11002B8514 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Default.png; path = Resources/icons/Default.png; sourceTree = "<group>"; };
		2861C3BB116BEA11002B8514 /* icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon.png; sourceTree = "<group>"; };
		2861C3BC116BEA11002B8514 /* layout_classic.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = layout_classic.pdf; sourceTree = "<group>"; };
		2861C3BD116BEA11002B8514 /* layout_custom.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = layout_custom.pdf; sourceTree = "<group>"; };
		2861C3BE116BEA11002B8514 /* layout_hybrid.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = layout_hybrid.pdf; sourceTree = "<group>"; };
		2861C3BF116BEA11002B8514 /* layout_stacked.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = layout_stacked.pdf; sourceTree = "<group>"; };
		2861C3C0116BEA11002B8514 /* mumble.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = mumble.pdf; sourceTree = "<group>"; };
		2861C3C1116BEA11002B8514 /* muted_local.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = muted_local.pdf; sourceTree = "<group>"; };
		2861C3C2116BEA11002B8514 /* muted_self.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = muted_self.pdf; sourceTree = "<group>"; };
		2861C3C3116BEA11002B8514 /* muted_server.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = muted_server.pdf; sourceTree = "<group>"; };
		2861C3C4116BEA11002B8514 /* muted_suppressed.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = muted_suppressed.pdf; sourceTree = "<group>"; };
		2861C3C5116BEA11002B8514 /* rec.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = rec.pdf; sourceTree = "<group>"; };
		2861C3DE116BEA12002B8514 /* talking_alt.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = talking_alt.pdf; sourceTree = "<group>"; };
		2861C3DF116BEA12002B8514 /* talking_off.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = talking_off.pdf; sourceTree = "<group>"; };
		2861C3E0116BEA12002B8514 /* talking_on.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = talking_on.pdf; sourceTree = "<group>"; };
		2861C3E1116BEA12002B8514 /* talking_whisper.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = talking_whisper.pdf; sourceTree = "<group>"; };
		2861C3E3116BEA12002B8514 /* Continents.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Continents.plist; sourceTree = "<group>"; };
		2861C3E4116BEA12002B8514 /* Countries.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Countries.plist; sourceTree = "<group>"; };
		287639F711D29D99009DB8B6 /* CertificateCreationProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CertificateCreationProgressView.h; sourceTree = "<group>"; };
		287639F811D29D99009DB8B6 /* CertificateCreationProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CertificateCreationProgressView.m; sourceTree = "<group>"; };
		287639FE11D2A242009DB8B6 /* CertificateCreationProgressView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = CertificateCreationProgressView.xib; path = Resources/CertificateCreationProgressView.xib; sourceTree = "<group>"; };
		28763A4411D2AA91009DB8B6 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
		28763A9411D2B056009DB8B6 /* DefaultAvatar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = DefaultAvatar.png; path = Resources/DefaultAvatar.png; sourceTree = "<group>"; };
		28763AE311D2B77E009DB8B6 /* UINavigationController-AnimationAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController-AnimationAdditions.m"; sourceTree = "<group>"; };
		28763AE911D2B920009DB8B6 /* UINavigationController-AnimationAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController-AnimationAdditions.h"; sourceTree = "<group>"; };
		287852D9117BC866009E26B1 /* ServerRootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServerRootViewController.h; sourceTree = "<group>"; };
		287852DA117BC866009E26B1 /* ServerRootViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ServerRootViewController.m; sourceTree = "<group>"; };
		287A60551176201E00DD4FFB /* ChannelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChannelViewController.h; sourceTree = "<group>"; };
		287A60561176201E00DD4FFB /* ChannelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChannelViewController.m; sourceTree = "<group>"; };
		287A60571176201E00DD4FFB /* ChannelViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChannelViewController.xib; sourceTree = "<group>"; };
		287BA28E11B96C960010E031 /* Database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Database.h; sourceTree = "<group>"; };
		287BA28F11B96C960010E031 /* Database.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Database.m; sourceTree = "<group>"; };
		287BA33911B97C470010E031 /* FavouriteServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FavouriteServer.h; sourceTree = "<group>"; };
		287BA33A11B97C470010E031 /* FavouriteServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FavouriteServer.m; sourceTree = "<group>"; };
		287BA33E11B97EEE0010E031 /* FavouriteServerListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FavouriteServerListController.h; sourceTree = "<group>"; };
		287BA33F11B97EEE0010E031 /* FavouriteServerListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FavouriteServerListController.m; sourceTree = "<group>"; };
		287BA3A411B996D90010E031 /* FavouriteServerEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FavouriteServerEditViewController.h; sourceTree = "<group>"; };
		287BA3A511B996D90010E031 /* FavouriteServerEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FavouriteServerEditViewController.m; sourceTree = "<group>"; };
		287BA42911B9A1DB0010E031 /* TableViewTextFieldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableViewTextFieldCell.h; sourceTree = "<group>"; };
		287BA42A11B9A1DB0010E031 /* TableViewTextFieldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableViewTextFieldCell.m; sourceTree = "<group>"; };
		288765FC0DF74451002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		288B55DE1252903300563A28 /* ServerCertificateTrustViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServerCertificateTrustViewController.h; sourceTree = "<group>"; };
		288B55DF1252903300563A28 /* ServerCertificateTrustViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ServerCertificateTrustViewController.m; sourceTree = "<group>"; };
		288D6B5E123D08EE00D37EDE /* CertificateViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CertificateViewController.h; sourceTree = "<group>"; };
		288D6B5F123D08EE00D37EDE /* CertificateViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CertificateViewController.m; sourceTree = "<group>"; };
		288DC2BC12FD9C810044DEF5 /* WelcomeScreenPad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WelcomeScreenPad.xib; sourceTree = "<group>"; };
		28942C0D1245476400C63A07 /* CertificatePickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CertificatePickerViewController.h; sourceTree = "<group>"; };
		28942C0E1245476400C63A07 /* CertificatePickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CertificatePickerViewController.m; sourceTree = "<group>"; };
		28942D7A12456F9200C63A07 /* CertificateCreationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CertificateCreationView.h; sourceTree = "<group>"; };
		28942D7B12456F9200C63A07 /* CertificateCreationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CertificateCreationView.m; sourceTree = "<group>"; };
		289CBA16125693040015E58E /* ChannelNavigationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChannelNavigationViewController.h; sourceTree = "<group>"; };
		289CBA17125693040015E58E /* ChannelNavigationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChannelNavigationViewController.m; sourceTree = "<group>"; };
		289CBB521257BCD10015E58E /* authenticated.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = authenticated.png; path = Resources/icons/ios/authenticated.png; sourceTree = "<group>"; };
		289CBB531257BCD10015E58E /* authenticated@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "authenticated@2x.png"; path = "Resources/icons/ios/authenticated@2x.png"; sourceTree = "<group>"; };
		289CBB591257BDAC0015E58E /* muted_self.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = muted_self.png; path = Resources/icons/ios/muted_self.png; sourceTree = "<group>"; };
		289CBB5A1257BDAC0015E58E /* muted_self@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "muted_self@2x.png"; path = "Resources/icons/ios/muted_self@2x.png"; sourceTree = "<group>"; };
		289CBB801257C5B80015E58E /* deafened_self.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = deafened_self.png; path = Resources/icons/ios/deafened_self.png; sourceTree = "<group>"; };
		289CBB811257C5B80015E58E /* deafened_self@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "deafened_self@2x.png"; path = "Resources/icons/ios/deafened_self@2x.png"; sourceTree = "<group>"; };
		289CBC551257DFD60015E58E /* muted_local.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = muted_local.png; path = Resources/icons/ios/muted_local.png; sourceTree = "<group>"; };
		289CBC561257DFD60015E58E /* muted_local@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "muted_local@2x.png"; path = "Resources/icons/ios/muted_local@2x.png"; sourceTree = "<group>"; };
		289CBC571257DFD60015E58E /* muted_server.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = muted_server.png; path = Resources/icons/ios/muted_server.png; sourceTree = "<group>"; };
		289CBC581257DFD60015E58E /* muted_server@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "muted_server@2x.png"; path = "Resources/icons/ios/muted_server@2x.png"; sourceTree = "<group>"; };
		289CBC591257DFD60015E58E /* muted_suppressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = muted_suppressed.png; path = Resources/icons/ios/muted_suppressed.png; sourceTree = "<group>"; };
		289CBC5A1257DFD60015E58E /* muted_suppressed@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "muted_suppressed@2x.png"; path = "Resources/icons/ios/muted_suppressed@2x.png"; sourceTree = "<group>"; };
		289CBE8F125934540015E58E /* deafened_server.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = deafened_server.png; path = Resources/icons/ios/deafened_server.png; sourceTree = "<group>"; };
		289CBE90125934540015E58E /* deafened_server@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "deafened_server@2x.png"; path = "Resources/icons/ios/deafened_server@2x.png"; sourceTree = "<group>"; };
		289CBE97125935990015E58E /* priorityspeaker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = priorityspeaker.png; path = Resources/icons/ios/priorityspeaker.png; sourceTree = "<group>"; };
		289CBE98125935990015E58E /* priorityspeaker@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "priorityspeaker@2x.png"; path = "Resources/icons/ios/priorityspeaker@2x.png"; sourceTree = "<group>"; };
		289D254A11BC28BC00E39F2C /* LanServerListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LanServerListController.h; sourceTree = "<group>"; };
		289D254B11BC28BC00E39F2C /* LanServerListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LanServerListController.m; sourceTree = "<group>"; };
		28A4CCD1117E064B006EB479 /* LogViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LogViewController.h; sourceTree = "<group>"; };
		28A4CCD2117E064B006EB479 /* LogViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LogViewController.m; sourceTree = "<group>"; };
		28A4CCF3117E1D4D006EB479 /* LogEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LogEntry.h; sourceTree = "<group>"; };
		28A4CCF4117E1D4D006EB479 /* LogEntry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LogEntry.m; sourceTree = "<group>"; };
		28AD733E0D9D9553002E5188 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = MainWindow.xib; path = ../MainWindow.xib; sourceTree = "<group>"; };
		28C6EF0911BBF38100E426C8 /* CountryServerListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CountryServerListController.m; sourceTree = "<group>"; };
		28F8B04211D97E0B006EFCBC /* sqlite3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sqlite3.c; path = Dependencies/sqlite/sqlite3.c; sourceTree = "<group>"; };
		28F8B04311D97E0B006EFCBC /* sqlite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sqlite3.h; path = Dependencies/sqlite/sqlite3.h; sourceTree = "<group>"; };
		28F8B04411D97E0B006EFCBC /* sqlite3ext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sqlite3ext.h; path = Dependencies/sqlite/sqlite3ext.h; sourceTree = "<group>"; };
		28F9174111B946250030D649 /* FMDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FMDatabase.h; path = Dependencies/fmdb/src/FMDatabase.h; sourceTree = "<group>"; };
		28F9174211B946250030D649 /* FMDatabase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FMDatabase.m; path = Dependencies/fmdb/src/FMDatabase.m; sourceTree = "<group>"; };
		28F9174311B946250030D649 /* FMDatabaseAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FMDatabaseAdditions.h; path = Dependencies/fmdb/src/FMDatabaseAdditions.h; sourceTree = "<group>"; };
		28F9174411B946250030D649 /* FMDatabaseAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FMDatabaseAdditions.m; path = Dependencies/fmdb/src/FMDatabaseAdditions.m; sourceTree = "<group>"; };
		28F9174611B946250030D649 /* FMResultSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FMResultSet.h; path = Dependencies/fmdb/src/FMResultSet.h; sourceTree = "<group>"; };
		28F9174711B946250030D649 /* FMResultSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FMResultSet.m; path = Dependencies/fmdb/src/FMResultSet.m; sourceTree = "<group>"; };
		28FEA680124AA5A000A3F6B5 /* ServerConnectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServerConnectionViewController.h; sourceTree = "<group>"; };
		28FEA681124AA5A000A3F6B5 /* ServerConnectionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ServerConnectionViewController.m; sourceTree = "<group>"; };
		28FEA6A1124AAA7100A3F6B5 /* ServerConnectionView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ServerConnectionView.xib; sourceTree = "<group>"; };
		29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Source/main.m; sourceTree = "<group>"; };
		32CA4F630368D1EE00C91783 /* Mumble.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Mumble.pch; path = Source/Mumble.pch; sourceTree = "<group>"; };
		8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Source/Info.plist; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				287EAB841245305400A0159D /* libMumbleKitCombined.a in Frameworks */,
				1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
				1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
				288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */,
				2861C2AE116BE9B5002B8514 /* AudioToolbox.framework in Frameworks */,
				2861C2B2116BE9B7002B8514 /* CFNetwork.framework in Frameworks */,
				2861C2B6116BE9BA002B8514 /* Security.framework in Frameworks */,
				28763A4511D2AA91009DB8B6 /* QuartzCore.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		080E96DDFE201D6D7F000001 /* Classes */ = {
			isa = PBXGroup;
			children = (
				2872F7C4124668880078C0B1 /* Certificates */,
				28BF8E1C11D93A1900B72770 /* Database */,
				2838EA0C1293165700035C5D /* Preferences */,
				285C9E95116BEE1500A9A6A7 /* MainWindow-iPad.xib */,
				28AD733E0D9D9553002E5188 /* MainWindow.xib */,
				2861C25A116BE905002B8514 /* AboutViewController.h */,
				2861C25B116BE905002B8514 /* AboutViewController.m */,
				2861C25C116BE905002B8514 /* AboutViewController.xib */,
				284BBBA312495C4400366F4C /* MumbleApplication.h */,
				284BBBA412495C4400366F4C /* MumbleApplication.m */,
				2861C25D116BE905002B8514 /* MumbleApplicationDelegate.h */,
				2861C25E116BE905002B8514 /* MumbleApplicationDelegate.m */,
				2861C25F116BE905002B8514 /* CountryServerListController.h */,
				28C6EF0911BBF38100E426C8 /* CountryServerListController.m */,
				2861C266116BE905002B8514 /* PublicServerList.h */,
				2861C267116BE905002B8514 /* PublicServerList.m */,
				2861C268116BE905002B8514 /* PublicServerListController.h */,
				2861C269116BE905002B8514 /* PublicServerListController.m */,
				2861C270116BE905002B8514 /* WelcomeScreenPhone.h */,
				2861C271116BE905002B8514 /* WelcomeScreenPhone.m */,
				2861C272116BE905002B8514 /* WelcomeScreenPhone.xib */,
				285C9EEF116BF5B100A9A6A7 /* WelcomeScreenPad.h */,
				285C9EF0116BF5B100A9A6A7 /* WelcomeScreenPad.m */,
				288DC2BC12FD9C810044DEF5 /* WelcomeScreenPad.xib */,
				287A60551176201E00DD4FFB /* ChannelViewController.h */,
				287A60561176201E00DD4FFB /* ChannelViewController.m */,
				287A60571176201E00DD4FFB /* ChannelViewController.xib */,
				287852D9117BC866009E26B1 /* ServerRootViewController.h */,
				287852DA117BC866009E26B1 /* ServerRootViewController.m */,
				280EDE8712FE1E7C00774B3B /* ServerRootViewControllerPad.h */,
				280EDE8812FE1E7C00774B3B /* ServerRootViewControllerPad.m */,
				28A4CCD1117E064B006EB479 /* LogViewController.h */,
				28A4CCD2117E064B006EB479 /* LogViewController.m */,
				28A4CCF3117E1D4D006EB479 /* LogEntry.h */,
				28A4CCF4117E1D4D006EB479 /* LogEntry.m */,
				287BA33E11B97EEE0010E031 /* FavouriteServerListController.h */,
				287BA33F11B97EEE0010E031 /* FavouriteServerListController.m */,
				287BA42911B9A1DB0010E031 /* TableViewTextFieldCell.h */,
				287BA42A11B9A1DB0010E031 /* TableViewTextFieldCell.m */,
				287BA3A411B996D90010E031 /* FavouriteServerEditViewController.h */,
				287BA3A511B996D90010E031 /* FavouriteServerEditViewController.m */,
				289D254A11BC28BC00E39F2C /* LanServerListController.h */,
				289D254B11BC28BC00E39F2C /* LanServerListController.m */,
				28763AE911D2B920009DB8B6 /* UINavigationController-AnimationAdditions.h */,
				28763AE311D2B77E009DB8B6 /* UINavigationController-AnimationAdditions.m */,
				2858DBA11233E31B000D6F75 /* VersionChecker.h */,
				2858DBA21233E31B000D6F75 /* VersionChecker.m */,
				28FEA680124AA5A000A3F6B5 /* ServerConnectionViewController.h */,
				28FEA681124AA5A000A3F6B5 /* ServerConnectionViewController.m */,
				288B55DE1252903300563A28 /* ServerCertificateTrustViewController.h */,
				288B55DF1252903300563A28 /* ServerCertificateTrustViewController.m */,
				289CBA16125693040015E58E /* ChannelNavigationViewController.h */,
				289CBA17125693040015E58E /* ChannelNavigationViewController.m */,
			);
			name = Classes;
			path = Source/Classes;
			sourceTree = "<group>";
		};
		19C28FACFE9D520D11CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				1D6058910D05DD3D006BFB54 /* Mumble.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		2838EA0C1293165700035C5D /* Preferences */ = {
			isa = PBXGroup;
			children = (
				2801C35911CA9F1A00E664E8 /* PreferencesViewController.h */,
				2801C35A11CA9F1A00E664E8 /* PreferencesViewController.m */,
				281EF08611CD721D001C6B73 /* AdvancedAudioPreferencesViewController.h */,
				281EF08711CD721D001C6B73 /* AdvancedAudioPreferencesViewController.m */,
				2838EA0D129316C200035C5D /* CertificatePreferencesViewController.h */,
				2838EA0E129316C200035C5D /* CertificatePreferencesViewController.m */,
				2830A18A11CE983B00970A41 /* DiagnosticsViewController.h */,
				2830A18B11CE983B00970A41 /* DiagnosticsViewController.m */,
			);
			name = Preferences;
			sourceTree = "<group>";
		};
		2858A58A123B9EC700A82155 /* icons */ = {
			isa = PBXGroup;
			children = (
				283A68BC1253856E00267F6D /* down.png */,
				280D4A171254DAB400493267 /* down@2x.png */,
				283A68BD1253856E00267F6D /* up.png */,
				280D4A181254DAB400493267 /* up@2x.png */,
				2861C2C7116BEA11002B8514 /* Default.png */,
				2821B870124EB3F3001DF8E4 /* Splash.png */,
				2821B842124EAC1B001DF8E4 /* cloud.png */,
				280D4A211254E1B700493267 /* cloud@2x.png */,
				2821B836124EAA67001DF8E4 /* diagnostics.png */,
				280D4A221254E1B700493267 /* diagnostics@2x.png */,
				289CBB521257BCD10015E58E /* authenticated.png */,
				289CBB531257BCD10015E58E /* authenticated@2x.png */,
				289CBB591257BDAC0015E58E /* muted_self.png */,
				289CBB5A1257BDAC0015E58E /* muted_self@2x.png */,
				289CBC551257DFD60015E58E /* muted_local.png */,
				289CBC561257DFD60015E58E /* muted_local@2x.png */,
				289CBC571257DFD60015E58E /* muted_server.png */,
				289CBC581257DFD60015E58E /* muted_server@2x.png */,
				289CBC591257DFD60015E58E /* muted_suppressed.png */,
				289CBC5A1257DFD60015E58E /* muted_suppressed@2x.png */,
				289CBB801257C5B80015E58E /* deafened_self.png */,
				289CBB811257C5B80015E58E /* deafened_self@2x.png */,
				289CBE8F125934540015E58E /* deafened_server.png */,
				289CBE90125934540015E58E /* deafened_server@2x.png */,
				289CBE97125935990015E58E /* priorityspeaker.png */,
				289CBE98125935990015E58E /* priorityspeaker@2x.png */,
				2821B82E124EA784001DF8E4 /* person.png */,
				280D4A241254E1B700493267 /* person@2x.png */,
				2821B828124EA09F001DF8E4 /* star.png */,
				280D4A251254E1B700493267 /* star@2x.png */,
				2821B820124E9F4E001DF8E4 /* globe.png */,
				280D4A231254E1B700493267 /* globe@2x.png */,
				2858A58B123B9EE000A82155 /* certificate16.png */,
				2858A597123BA05E00A82155 /* certificate32.png */,
				2858A58D123B9EE000A82155 /* certificate64.png */,
				2858A58E123B9EE000A82155 /* certificate128.png */,
				2858A58F123B9EE000A82155 /* certificate256.png */,
				2858A590123B9EE000A82155 /* certificate512.png */,
				280D4A2F1254EC1900493267 /* certificatecell.png */,
				280D4A301254EC1900493267 /* certificatecell@2x.png */,
				280D4B2E1255457B00493267 /* talking_alt.png */,
				280D4B2F1255457B00493267 /* talking_alt@2x.png */,
				280D4B301255457B00493267 /* talking_off.png */,
				280D4B311255457B00493267 /* talking_off@2x.png */,
				280D4B321255457B00493267 /* talking_on.png */,
				280D4B331255457B00493267 /* talking_on@2x.png */,
				280D4B341255457B00493267 /* talking_whisper.png */,
				280D4B351255457B00493267 /* talking_whisper@2x.png */,
				280D4B3E1255463000493267 /* channel.png */,
				280D4B3F1255463000493267 /* channel@2x.png */,
			);
			name = icons;
			sourceTree = "<group>";
		};
		2861C28C116BE90B002B8514 /* Dependencies */ = {
			isa = PBXGroup;
			children = (
				28F8B04011D97E00006EFCBC /* sqlite */,
				28F9173911B9460D0030D649 /* fmdb */,
				2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */,
			);
			name = Dependencies;
			sourceTree = "<group>";
		};
		2861C28F116BE91B002B8514 /* Products */ = {
			isa = PBXGroup;
			children = (
				2861C2A7116BE91B002B8514 /* libMumbleKit.a */,
				287EAB671245303200A0159D /* libMumbleKitCombined.a */,
				287EAB691245303200A0159D /* libCELT-0.7.0.a */,
				287EAB6B1245303200A0159D /* libSpeex.a */,
				287EAB6D1245303200A0159D /* libSpeexDSP.a */,
				287EAB6F1245303200A0159D /* libProtocolBuffers.a */,
				287EAB711245303200A0159D /* libOpenSSL.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		2861C2BB116BEA11002B8514 /* about */ = {
			isa = PBXGroup;
			children = (
				2861C2BC116BEA11002B8514 /* Contributors.html */,
				2861C2BD116BEA11002B8514 /* Legal.html */,
			);
			name = about;
			path = Resources/about;
			sourceTree = "<group>";
		};
		2861C2BE116BEA11002B8514 /* mumble-icons */ = {
			isa = PBXGroup;
			children = (
				2861C2BF116BEA11002B8514 /* authenticated.pdf */,
				2861C2C0116BEA11002B8514 /* channel.pdf */,
				2861C2C1116BEA11002B8514 /* channel_active.pdf */,
				2861C2C2116BEA11002B8514 /* channel_linked.pdf */,
				2861C2C3116BEA11002B8514 /* comment.pdf */,
				2861C2C4116BEA11002B8514 /* comment_seen.pdf */,
				2861C2C5116BEA11002B8514 /* deafened_self.pdf */,
				2861C2C6116BEA11002B8514 /* deafened_server.pdf */,
				2861C3BB116BEA11002B8514 /* icon.png */,
				2861C3BC116BEA11002B8514 /* layout_classic.pdf */,
				2861C3BD116BEA11002B8514 /* layout_custom.pdf */,
				2861C3BE116BEA11002B8514 /* layout_hybrid.pdf */,
				2861C3BF116BEA11002B8514 /* layout_stacked.pdf */,
				2861C3C0116BEA11002B8514 /* mumble.pdf */,
				2861C3C1116BEA11002B8514 /* muted_local.pdf */,
				2861C3C2116BEA11002B8514 /* muted_self.pdf */,
				2861C3C3116BEA11002B8514 /* muted_server.pdf */,
				2861C3C4116BEA11002B8514 /* muted_suppressed.pdf */,
				2861C3C5116BEA11002B8514 /* rec.pdf */,
				2861C3DE116BEA12002B8514 /* talking_alt.pdf */,
				2861C3DF116BEA12002B8514 /* talking_off.pdf */,
				2861C3E0116BEA12002B8514 /* talking_on.pdf */,
				2861C3E1116BEA12002B8514 /* talking_whisper.pdf */,
			);
			name = "mumble-icons";
			path = Resources/icons;
			sourceTree = "<group>";
		};
		2861C3E2116BEA12002B8514 /* serverlist */ = {
			isa = PBXGroup;
			children = (
				2861C3E3116BEA12002B8514 /* Continents.plist */,
				2861C3E4116BEA12002B8514 /* Countries.plist */,
			);
			name = serverlist;
			path = Resources/serverlist;
			sourceTree = "<group>";
		};
		2872F7C4124668880078C0B1 /* Certificates */ = {
			isa = PBXGroup;
			children = (
				287639F711D29D99009DB8B6 /* CertificateCreationProgressView.h */,
				287639F811D29D99009DB8B6 /* CertificateCreationProgressView.m */,
				2858A5AB123BA08D00A82155 /* CertificateCell.h */,
				2858A5AC123BA08D00A82155 /* CertificateCell.m */,
				288D6B5E123D08EE00D37EDE /* CertificateViewController.h */,
				288D6B5F123D08EE00D37EDE /* CertificateViewController.m */,
				28942C0D1245476400C63A07 /* CertificatePickerViewController.h */,
				28942C0E1245476400C63A07 /* CertificatePickerViewController.m */,
				28942D7A12456F9200C63A07 /* CertificateCreationView.h */,
				28942D7B12456F9200C63A07 /* CertificateCreationView.m */,
			);
			name = Certificates;
			sourceTree = "<group>";
		};
		28BF8E1C11D93A1900B72770 /* Database */ = {
			isa = PBXGroup;
			children = (
				287BA28E11B96C960010E031 /* Database.h */,
				287BA28F11B96C960010E031 /* Database.m */,
				287BA33911B97C470010E031 /* FavouriteServer.h */,
				287BA33A11B97C470010E031 /* FavouriteServer.m */,
			);
			name = Database;
			sourceTree = "<group>";
		};
		28F8B04011D97E00006EFCBC /* sqlite */ = {
			isa = PBXGroup;
			children = (
				28F8B04211D97E0B006EFCBC /* sqlite3.c */,
				28F8B04311D97E0B006EFCBC /* sqlite3.h */,
				28F8B04411D97E0B006EFCBC /* sqlite3ext.h */,
			);
			name = sqlite;
			sourceTree = "<group>";
		};
		28F9173911B9460D0030D649 /* fmdb */ = {
			isa = PBXGroup;
			children = (
				28F9174111B946250030D649 /* FMDatabase.h */,
				28F9174211B946250030D649 /* FMDatabase.m */,
				28F9174311B946250030D649 /* FMDatabaseAdditions.h */,
				28F9174411B946250030D649 /* FMDatabaseAdditions.m */,
				28F9174611B946250030D649 /* FMResultSet.h */,
				28F9174711B946250030D649 /* FMResultSet.m */,
			);
			name = fmdb;
			sourceTree = "<group>";
		};
		29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
			isa = PBXGroup;
			children = (
				2861C28C116BE90B002B8514 /* Dependencies */,
				080E96DDFE201D6D7F000001 /* Classes */,
				29B97315FDCFA39411CA2CEA /* Other Sources */,
				29B97317FDCFA39411CA2CEA /* Resources */,
				29B97323FDCFA39411CA2CEA /* Frameworks */,
				19C28FACFE9D520D11CA2CBB /* Products */,
			);
			name = CustomTemplate;
			sourceTree = "<group>";
		};
		29B97315FDCFA39411CA2CEA /* Other Sources */ = {
			isa = PBXGroup;
			children = (
				8D1107310486CEB800E47090 /* Info.plist */,
				32CA4F630368D1EE00C91783 /* Mumble.pch */,
				29B97316FDCFA39411CA2CEA /* main.m */,
			);
			name = "Other Sources";
			sourceTree = "<group>";
		};
		29B97317FDCFA39411CA2CEA /* Resources */ = {
			isa = PBXGroup;
			children = (
				2858A58A123B9EC700A82155 /* icons */,
				28FEA6A1124AAA7100A3F6B5 /* ServerConnectionView.xib */,
				2858A62B123BB9B300A82155 /* AvatarCell.xib */,
				2858A57F123B9E5700A82155 /* CertificateCell.xib */,
				28763A9411D2B056009DB8B6 /* DefaultAvatar.png */,
				287639FE11D2A242009DB8B6 /* CertificateCreationProgressView.xib */,
				2861C2BB116BEA11002B8514 /* about */,
				2861C2BE116BEA11002B8514 /* mumble-icons */,
				2861C3E2116BEA12002B8514 /* serverlist */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		29B97323FDCFA39411CA2CEA /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				28763A4411D2AA91009DB8B6 /* QuartzCore.framework */,
				2861C2B1116BE9B7002B8514 /* CFNetwork.framework */,
				2861C2B5116BE9BA002B8514 /* Security.framework */,
				2861C2AD116BE9B5002B8514 /* AudioToolbox.framework */,
				1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
				1D30AB110D05D00D00671497 /* Foundation.framework */,
				288765FC0DF74451002DB57D /* CoreGraphics.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		1D6058900D05DD3D006BFB54 /* Mumble */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Mumble" */;
			buildPhases = (
				1D60588D0D05DD3D006BFB54 /* Resources */,
				1D60588E0D05DD3D006BFB54 /* Sources */,
				1D60588F0D05DD3D006BFB54 /* Frameworks */,
				2830A26311CEA89100970A41 /* Info.plist Extras */,
			);
			buildRules = (
			);
			dependencies = (
				287EAB831245303E00A0159D /* PBXTargetDependency */,
			);
			name = Mumble;
			productName = Mumble;
			productReference = 1D6058910D05DD3D006BFB54 /* Mumble.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		29B97313FDCFA39411CA2CEA /* Project object */ = {
			isa = PBXProject;
			buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Mumble" */;
			compatibilityVersion = "Xcode 3.1";
			developmentRegion = English;
			hasScannedForEncodings = 1;
			knownRegions = (
				English,
				Japanese,
				French,
				German,
			);
			mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
			projectDirPath = "";
			projectReferences = (
				{
					ProductGroup = 2861C28F116BE91B002B8514 /* Products */;
					ProjectRef = 2861C28E116BE91B002B8514 /* MumbleKit.xcodeproj */;
				},
			);
			projectRoot = "";
			targets = (
				1D6058900D05DD3D006BFB54 /* Mumble */,
			);
		};
/* End PBXProject section */

/* Begin PBXReferenceProxy section */
		2861C2A7116BE91B002B8514 /* libMumbleKit.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libMumbleKit.a;
			remoteRef = 2861C2A6116BE91B002B8514 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		287EAB671245303200A0159D /* libMumbleKitCombined.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libMumbleKitCombined.a;
			remoteRef = 287EAB661245303200A0159D /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		287EAB691245303200A0159D /* libCELT-0.7.0.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = "libCELT-0.7.0.a";
			remoteRef = 287EAB681245303200A0159D /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		287EAB6B1245303200A0159D /* libSpeex.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libSpeex.a;
			remoteRef = 287EAB6A1245303200A0159D /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		287EAB6D1245303200A0159D /* libSpeexDSP.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libSpeexDSP.a;
			remoteRef = 287EAB6C1245303200A0159D /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		287EAB6F1245303200A0159D /* libProtocolBuffers.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libProtocolBuffers.a;
			remoteRef = 287EAB6E1245303200A0159D /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		287EAB711245303200A0159D /* libOpenSSL.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libOpenSSL.a;
			remoteRef = 287EAB701245303200A0159D /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
/* End PBXReferenceProxy section */

/* Begin PBXResourcesBuildPhase section */
		1D60588D0D05DD3D006BFB54 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */,
				2861C275116BE905002B8514 /* AboutViewController.xib in Resources */,
				2861C282116BE905002B8514 /* WelcomeScreenPhone.xib in Resources */,
				2861C3E5116BEA12002B8514 /* Contributors.html in Resources */,
				2861C3E6116BEA12002B8514 /* Legal.html in Resources */,
				2861C3E7116BEA12002B8514 /* authenticated.pdf in Resources */,
				2861C3E8116BEA12002B8514 /* channel.pdf in Resources */,
				2861C3E9116BEA12002B8514 /* channel_active.pdf in Resources */,
				2861C3EA116BEA12002B8514 /* channel_linked.pdf in Resources */,
				2861C3EB116BEA12002B8514 /* comment.pdf in Resources */,
				2861C3EC116BEA12002B8514 /* comment_seen.pdf in Resources */,
				2861C3ED116BEA12002B8514 /* deafened_self.pdf in Resources */,
				2861C3EE116BEA12002B8514 /* deafened_server.pdf in Resources */,
				2861C3EF116BEA12002B8514 /* Default.png in Resources */,
				2861C4E2116BEA12002B8514 /* icon.png in Resources */,
				2861C4E3116BEA12002B8514 /* layout_classic.pdf in Resources */,
				2861C4E4116BEA12002B8514 /* layout_custom.pdf in Resources */,
				2861C4E5116BEA12002B8514 /* layout_hybrid.pdf in Resources */,
				2861C4E6116BEA12002B8514 /* layout_stacked.pdf in Resources */,
				2861C4E7116BEA12002B8514 /* mumble.pdf in Resources */,
				2861C4E8116BEA12002B8514 /* muted_local.pdf in Resources */,
				2861C4E9116BEA12002B8514 /* muted_self.pdf in Resources */,
				2861C4EA116BEA12002B8514 /* muted_server.pdf in Resources */,
				2861C4EB116BEA12002B8514 /* muted_suppressed.pdf in Resources */,
				2861C4EC116BEA12002B8514 /* rec.pdf in Resources */,
				2861C504116BEA12002B8514 /* talking_alt.pdf in Resources */,
				2861C505116BEA12002B8514 /* talking_off.pdf in Resources */,
				2861C506116BEA12002B8514 /* talking_on.pdf in Resources */,
				2861C507116BEA12002B8514 /* talking_whisper.pdf in Resources */,
				2861C508116BEA12002B8514 /* Continents.plist in Resources */,
				2861C509116BEA12002B8514 /* Countries.plist in Resources */,
				285C9E96116BEE1500A9A6A7 /* MainWindow-iPad.xib in Resources */,
				287A60581176201E00DD4FFB /* ChannelViewController.m in Resources */,
				287A60591176201E00DD4FFB /* ChannelViewController.xib in Resources */,
				287639FF11D2A242009DB8B6 /* CertificateCreationProgressView.xib in Resources */,
				28763A9511D2B056009DB8B6 /* DefaultAvatar.png in Resources */,
				2858A580123B9E5700A82155 /* CertificateCell.xib in Resources */,
				2858A591123B9EE000A82155 /* certificate16.png in Resources */,
				2858A593123B9EE000A82155 /* certificate64.png in Resources */,
				2858A594123B9EE000A82155 /* certificate128.png in Resources */,
				2858A595123B9EE000A82155 /* certificate256.png in Resources */,
				2858A596123B9EE000A82155 /* certificate512.png in Resources */,
				2858A598123BA05E00A82155 /* certificate32.png in Resources */,
				2858A62C123BB9B300A82155 /* AvatarCell.xib in Resources */,
				28FEA6A2124AAA7100A3F6B5 /* ServerConnectionView.xib in Resources */,
				2821B821124E9F4E001DF8E4 /* globe.png in Resources */,
				2821B829124EA09F001DF8E4 /* star.png in Resources */,
				2821B82F124EA784001DF8E4 /* person.png in Resources */,
				2821B837124EAA67001DF8E4 /* diagnostics.png in Resources */,
				2821B843124EAC1B001DF8E4 /* cloud.png in Resources */,
				2821B871124EB3F3001DF8E4 /* Splash.png in Resources */,
				283A68BE1253856E00267F6D /* down.png in Resources */,
				283A68BF1253856E00267F6D /* up.png in Resources */,
				280D4A191254DAB400493267 /* down@2x.png in Resources */,
				280D4A1A1254DAB400493267 /* up@2x.png in Resources */,
				280D4A261254E1B700493267 /* cloud@2x.png in Resources */,
				280D4A271254E1B700493267 /* diagnostics@2x.png in Resources */,
				280D4A281254E1B700493267 /* globe@2x.png in Resources */,
				280D4A291254E1B700493267 /* person@2x.png in Resources */,
				280D4A2A1254E1B700493267 /* star@2x.png in Resources */,
				280D4A311254EC1900493267 /* certificatecell.png in Resources */,
				280D4A321254EC1900493267 /* certificatecell@2x.png in Resources */,
				280D4B361255457B00493267 /* talking_alt.png in Resources */,
				280D4B371255457B00493267 /* talking_alt@2x.png in Resources */,
				280D4B381255457B00493267 /* talking_off.png in Resources */,
				280D4B391255457B00493267 /* talking_off@2x.png in Resources */,
				280D4B3A1255457B00493267 /* talking_on.png in Resources */,
				280D4B3B1255457B00493267 /* talking_on@2x.png in Resources */,
				280D4B3C1255457B00493267 /* talking_whisper.png in Resources */,
				280D4B3D1255457B00493267 /* talking_whisper@2x.png in Resources */,
				280D4B401255463000493267 /* channel.png in Resources */,
				280D4B411255463000493267 /* channel@2x.png in Resources */,
				289CBB541257BCD10015E58E /* authenticated.png in Resources */,
				289CBB551257BCD10015E58E /* authenticated@2x.png in Resources */,
				289CBB5B1257BDAC0015E58E /* muted_self.png in Resources */,
				289CBB5C1257BDAC0015E58E /* muted_self@2x.png in Resources */,
				289CBB821257C5B80015E58E /* deafened_self.png in Resources */,
				289CBB831257C5B80015E58E /* deafened_self@2x.png in Resources */,
				289CBC5B1257DFD60015E58E /* muted_local.png in Resources */,
				289CBC5C1257DFD60015E58E /* muted_local@2x.png in Resources */,
				289CBC5D1257DFD60015E58E /* muted_server.png in Resources */,
				289CBC5E1257DFD60015E58E /* muted_server@2x.png in Resources */,
				289CBC5F1257DFD60015E58E /* muted_suppressed.png in Resources */,
				289CBC601257DFD60015E58E /* muted_suppressed@2x.png in Resources */,
				289CBE91125934540015E58E /* deafened_server.png in Resources */,
				289CBE92125934540015E58E /* deafened_server@2x.png in Resources */,
				289CBE99125935990015E58E /* priorityspeaker.png in Resources */,
				289CBE9A125935990015E58E /* priorityspeaker@2x.png in Resources */,
				288DC2BD12FD9C810044DEF5 /* WelcomeScreenPad.xib in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		2830A26311CEA89100970A41 /* Info.plist Extras */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Info.plist Extras";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "PLIST=${TARGET_BUILD_DIR}/Mumble.app/Info\n\nexport PATH=$PATH:$HOME/.local/bin\ncd ${PROJECT_DIR}\n\n# Git revision\ngitrev=$(git show HEAD | grep commit | sed 's,commit\\ ,,' | head -c12)\ndefaults write ${PLIST} MumbleGitRevision -string \"${gitrev}\"\n\n# Build date\nbuilddate=$(python -B -c 'import datetime; print datetime.datetime.utcnow().strftime(\"%Y-%m-%dT%H:%M:%SZ\")')\ndefaults write ${PLIST} MumbleBuildDate -date \"${builddate}\"";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		1D60588E0D05DD3D006BFB54 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				287A60AA117628FE00DD4FFB /* ChannelViewController.m in Sources */,
				1D60589B0D05DD56006BFB54 /* main.m in Sources */,
				2861C274116BE905002B8514 /* AboutViewController.m in Sources */,
				2861C276116BE905002B8514 /* MumbleApplicationDelegate.m in Sources */,
				2861C27B116BE905002B8514 /* PublicServerList.m in Sources */,
				2861C27C116BE905002B8514 /* PublicServerListController.m in Sources */,
				2861C281116BE905002B8514 /* WelcomeScreenPhone.m in Sources */,
				285C9EF2116BF5B100A9A6A7 /* WelcomeScreenPad.m in Sources */,
				287852DB117BC866009E26B1 /* ServerRootViewController.m in Sources */,
				28A4CCD3117E064B006EB479 /* LogViewController.m in Sources */,
				28A4CCF5117E1D4D006EB479 /* LogEntry.m in Sources */,
				28F9174811B946250030D649 /* FMDatabase.m in Sources */,
				28F9174911B946250030D649 /* FMDatabaseAdditions.m in Sources */,
				28F9174B11B946250030D649 /* FMResultSet.m in Sources */,
				287BA29011B96C960010E031 /* Database.m in Sources */,
				287BA33B11B97C470010E031 /* FavouriteServer.m in Sources */,
				287BA34011B97EEE0010E031 /* FavouriteServerListController.m in Sources */,
				287BA3A611B996D90010E031 /* FavouriteServerEditViewController.m in Sources */,
				287BA42B11B9A1DB0010E031 /* TableViewTextFieldCell.m in Sources */,
				28C6EF0A11BBF38100E426C8 /* CountryServerListController.m in Sources */,
				289D254C11BC28BC00E39F2C /* LanServerListController.m in Sources */,
				2801C35B11CA9F1A00E664E8 /* PreferencesViewController.m in Sources */,
				281EF08811CD721D001C6B73 /* AdvancedAudioPreferencesViewController.m in Sources */,
				2830A18C11CE983B00970A41 /* DiagnosticsViewController.m in Sources */,
				287639F911D29D99009DB8B6 /* CertificateCreationProgressView.m in Sources */,
				28763AE411D2B77E009DB8B6 /* UINavigationController-AnimationAdditions.m in Sources */,
				28F8B04511D97E0B006EFCBC /* sqlite3.c in Sources */,
				2858DBA31233E31B000D6F75 /* VersionChecker.m in Sources */,
				2858A5AD123BA08D00A82155 /* CertificateCell.m in Sources */,
				288D6B60123D08EE00D37EDE /* CertificateViewController.m in Sources */,
				28942C0F1245476400C63A07 /* CertificatePickerViewController.m in Sources */,
				28942D7C12456F9200C63A07 /* CertificateCreationView.m in Sources */,
				284BBBA512495C4400366F4C /* MumbleApplication.m in Sources */,
				28FEA682124AA5A000A3F6B5 /* ServerConnectionViewController.m in Sources */,
				288B55E01252903300563A28 /* ServerCertificateTrustViewController.m in Sources */,
				289CBA18125693040015E58E /* ChannelNavigationViewController.m in Sources */,
				2838EA0F129316C200035C5D /* CertificatePreferencesViewController.m in Sources */,
				280EDE8912FE1E7C00774B3B /* ServerRootViewControllerPad.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		287EAB831245303E00A0159D /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = MumbleKitCombined;
			targetProxy = 287EAB821245303E00A0159D /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		1D6058940D05DD3E006BFB54 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				COPY_PHASE_STRIP = NO;
				FRAMEWORK_SEARCH_PATHS = "";
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Source/Mumble.pch;
				"GCC_THUMB_SUPPORT[arch=armv6]" = NO;
				HEADER_SEARCH_PATHS = (
					"${PROJECT_DIR}/MumbleKit/src/",
					"${PROJECT_DIR}/Dependencies/fmdb/src/",
					"${PROJECT_DIR}/Dependencies/sqlite/",
				);
				INFOPLIST_FILE = Source/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 4.0;
				OTHER_LDFLAGS = (
					"-all_load",
					"-ObjC",
				);
				PRODUCT_NAME = Mumble;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				USER_HEADER_SEARCH_PATHS = "${PROJECT_DIR}/Dependencies/sqlite/";
			};
			name = Debug;
		};
		1D6058950D05DD3E006BFB54 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				COPY_PHASE_STRIP = YES;
				FRAMEWORK_SEARCH_PATHS = "";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Source/Mumble.pch;
				"GCC_THUMB_SUPPORT[arch=armv6]" = NO;
				HEADER_SEARCH_PATHS = (
					"${PROJECT_DIR}/MumbleKit/src/",
					"${PROJECT_DIR}/Dependencies/fmdb/src/",
					"${PROJECT_DIR}/Dependencies/sqlite/",
				);
				INFOPLIST_FILE = Source/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 4.0;
				OTHER_LDFLAGS = (
					"-all_load",
					"-ObjC",
				);
				PRODUCT_NAME = Mumble;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				USER_HEADER_SEARCH_PATHS = "${PROJECT_DIR}/Dependencies/sqlite/";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		28BC1E7A1227155500C03FCF /* BetaDist */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 4.0;
				OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
				PREBINDING = NO;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = BetaDist;
		};
		28BC1E7B1227155500C03FCF /* BetaDist */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				CODE_SIGN_IDENTITY = "iPhone Distribution";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
				COPY_PHASE_STRIP = YES;
				FRAMEWORK_SEARCH_PATHS = "";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Source/Mumble.pch;
				GCC_PREPROCESSOR_DEFINITIONS = "MUMBLE_BETA_DIST=1";
				"GCC_THUMB_SUPPORT[arch=armv6]" = NO;
				HEADER_SEARCH_PATHS = (
					"${PROJECT_DIR}/MumbleKit/src/",
					"${PROJECT_DIR}/Dependencies/fmdb/src/",
					"${PROJECT_DIR}/Dependencies/sqlite/",
				);
				INFOPLIST_FILE = Source/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 4.0;
				OTHER_LDFLAGS = (
					"-all_load",
					"-ObjC",
				);
				PRODUCT_NAME = Mumble;
				PROVISIONING_PROFILE = "";
				"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				USER_HEADER_SEARCH_PATHS = "${PROJECT_DIR}/Dependencies/sqlite/";
				VALIDATE_PRODUCT = YES;
			};
			name = BetaDist;
		};
		C01FCF4F08A954540054247B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 4.0;
				PREBINDING = NO;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = Debug;
		};
		C01FCF5008A954540054247B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 4.0;
				OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
				PREBINDING = NO;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Mumble" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1D6058940D05DD3E006BFB54 /* Debug */,
				1D6058950D05DD3E006BFB54 /* Release */,
				28BC1E7B1227155500C03FCF /* BetaDist */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Mumble" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C01FCF4F08A954540054247B /* Debug */,
				C01FCF5008A954540054247B /* Release */,
				28BC1E7A1227155500C03FCF /* BetaDist */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
}