project.pbxproj 84 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		2381E9EBA834CB171E43657A /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 083F3F95EB690FA24FEC0C8E /* libPods.a */; };
		8408261A1BE5CEDD0022B795 /* OnLineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 840826191BE5CEDD0022B795 /* OnLineViewController.m */; };
		8408261E1BE5D22A0022B795 /* OnLineTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8408261D1BE5D22A0022B795 /* OnLineTableViewCell.m */; };
		840826211BE5D2400022B795 /* OnLineFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 840826201BE5D2400022B795 /* OnLineFooterView.m */; };
		840ABECC1BE1C29F006E49C5 /* RankDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 840ABECB1BE1C29F006E49C5 /* RankDetailViewController.m */; };
		8419EAD41BEDC98F002635ED /* HttpClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 8419EAD31BEDC98F002635ED /* HttpClient.m */; };
		841D24F81BEB473C0005CC9F /* CheckPicViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 841D24F71BEB473C0005CC9F /* CheckPicViewController.m */; };
		841D24FB1BEB75CA0005CC9F /* QuestionDetailFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 841D24FA1BEB75CA0005CC9F /* QuestionDetailFooterView.m */; };
		842547FC1BF03977006C79C5 /* QuestionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 842547FB1BF03977006C79C5 /* QuestionModel.m */; };
		8442BA5C1BDB8FDB005E5657 /* MineTableHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8442BA5B1BDB8FDB005E5657 /* MineTableHeaderView.m */; };
		8474A01C1BE368D700315F30 /* HomeCellItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474A01B1BE368D700315F30 /* HomeCellItem.m */; };
		8474C5831BE751A2007DCF19 /* CommonFunc.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474C5821BE751A2007DCF19 /* CommonFunc.m */; };
		8474C5911BE78A85007DCF19 /* QuestionListTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474C58C1BE78A85007DCF19 /* QuestionListTableCell.m */; };
		8474C5921BE78A85007DCF19 /* QuestionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474C5901BE78A85007DCF19 /* QuestionViewController.m */; };
		8474C5951BE78AE1007DCF19 /* QuestionDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474C5941BE78AE1007DCF19 /* QuestionDetailViewController.m */; };
		8474C5991BE78BBC007DCF19 /* QuestionDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8474C5981BE78BBC007DCF19 /* QuestionDetailCell.m */; };
		84846E971BE069BC0010550A /* DateButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 84846E961BE069BC0010550A /* DateButton.m */; };
		84846E9A1BE07CDF0010550A /* RankingListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84846E991BE07CDF0010550A /* RankingListCell.m */; };
		848699B01BDF810900859DFE /* InspectListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8486999F1BDF810900859DFE /* InspectListCell.m */; };
		848699B11BDF810900859DFE /* MenuButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 848699A11BDF810900859DFE /* MenuButton.m */; };
		848699B21BDF810900859DFE /* InspectListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 848699A41BDF810900859DFE /* InspectListViewController.m */; };
		848699B31BDF810900859DFE /* InspectTaskViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 848699A81BDF810900859DFE /* InspectTaskViewController.m */; };
		848699B61BDF812F00859DFE /* RankingListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 848699B51BDF812F00859DFE /* RankingListViewController.m */; };
		8487D7721BF19A9C00E63E90 /* SearchToolBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 8487D7711BF19A9C00E63E90 /* SearchToolBar.m */; };
		8487D8091BF20FAD00E63E90 /* TaxisView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8487D8081BF20FAD00E63E90 /* TaxisView.m */; };
		8487D80C1BF218F900E63E90 /* MenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8487D80B1BF218F900E63E90 /* MenuView.m */; };
		84970DEF1BD8DD8A00C1728A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970DEE1BD8DD8A00C1728A /* main.m */; };
		84970DFA1BD8DD8A00C1728A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 84970DF91BD8DD8A00C1728A /* Assets.xcassets */; };
		84970DFD1BD8DD8A00C1728A /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 84970DFB1BD8DD8A00C1728A /* LaunchScreen.storyboard */; };
		84970E081BD8DD8A00C1728A /* redstarTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970E071BD8DD8A00C1728A /* redstarTests.m */; };
		84970E131BD8DD8A00C1728A /* redstarUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970E121BD8DD8A00C1728A /* redstarUITests.m */; };
		84970E281BD8DEFE00C1728A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970E231BD8DEFE00C1728A /* AppDelegate.m */; };
		84970E361BD8E09D00C1728A /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970E351BD8E09D00C1728A /* LoginViewController.m */; };
		84970E391BD8E0B300C1728A /* LoginView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84970E381BD8E0B300C1728A /* LoginView.m */; };
		84AB20A51BE648EC00B66F13 /* PictureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AB20A41BE648EC00B66F13 /* PictureViewController.m */; };
		84AB20A91BE64DC600B66F13 /* PictureTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AB20A81BE64DC600B66F13 /* PictureTableCell.m */; };
		84AD4F201BF425AC00BFB37C /* InspectDetailView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F1F1BF425AC00BFB37C /* InspectDetailView.m */; };
		84AD4F221BF42F8E00BFB37C /* classfiy.plist in Resources */ = {isa = PBXBuildFile; fileRef = 84AD4F211BF42F8E00BFB37C /* classfiy.plist */; };
		84AD4F261BF4356A00BFB37C /* TaskModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F251BF4356A00BFB37C /* TaskModel.m */; };
		84AD4F291BF4360E00BFB37C /* TaskGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F281BF4360E00BFB37C /* TaskGroup.m */; };
		84AD4F2F1BF4370E00BFB37C /* InspectHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F2E1BF4370E00BFB37C /* InspectHeaderView.m */; };
		84AD4F321BF443E700BFB37C /* InspectDetailHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F311BF443E700BFB37C /* InspectDetailHeaderView.m */; };
		84AD4F361BF45BEB00BFB37C /* InspectSortTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F351BF45BEB00BFB37C /* InspectSortTableCell.m */; };
		84AD4F3A1BF4844600BFB37C /* RankDetailHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F391BF4844600BFB37C /* RankDetailHeaderView.m */; };
		84AD4F3D1BF4894D00BFB37C /* RankDetailView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F3C1BF4894D00BFB37C /* RankDetailView.m */; };
		84AD4F3F1BF498A900BFB37C /* ranking.plist in Resources */ = {isa = PBXBuildFile; fileRef = 84AD4F3E1BF498A900BFB37C /* ranking.plist */; };
		84AD4F431BF4A66F00BFB37C /* WorkModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F421BF4A66F00BFB37C /* WorkModel.m */; };
		84AD4F461BF4A9E800BFB37C /* RankHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F451BF4A9E800BFB37C /* RankHeadView.m */; };
		84AD4F491BF4BC0600BFB37C /* RankDetailTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84AD4F481BF4BC0600BFB37C /* RankDetailTableCell.m */; };
		84C582EC1BDDFB0400AF838D /* HomeFunctionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C582EB1BDDFB0400AF838D /* HomeFunctionCell.m */; };
		84C9574D1BDB344900083584 /* UIBarButtonItem+Create.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C9574A1BDB344900083584 /* UIBarButtonItem+Create.m */; };
		84C9574E1BDB344900083584 /* UIView+Frame.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C9574C1BDB344900083584 /* UIView+Frame.m */; };
		84C957551BDB54D600083584 /* AnnounceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84C957541BDB54D600083584 /* AnnounceViewController.m */; };
		84CF0ED51BE9AC1400C855CE /* InspectSettleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CF0ED41BE9AC1400C855CE /* InspectSettleCell.m */; };
		84CF0ED81BE9AC7E00C855CE /* InspectSettleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CF0ED71BE9AC7E00C855CE /* InspectSettleViewController.m */; };
		84CF0F1E1BE9B40400C855CE /* InspectDetailFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CF0F1D1BE9B40400C855CE /* InspectDetailFooterView.m */; };
		84CF0FA21BE9EDA900C855CE /* TakePhotoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CF0FA11BE9EDA900C855CE /* TakePhotoView.m */; };
		84D8257F1BDD2F7E00CC61F7 /* MineTableFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D8257E1BDD2F7E00CC61F7 /* MineTableFooterView.m */; };
		84D825821BDD35E000CC61F7 /* HomeHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D825811BDD35E000CC61F7 /* HomeHeaderView.m */; };
		84DB06111BE33F33003E581E /* NewAnnounceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DB06101BE33F33003E581E /* NewAnnounceCell.m */; };
		84DB9BC41BDCD4B600822CC4 /* CustomDropMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DB9BC31BDCD4B600822CC4 /* CustomDropMenuView.m */; };
		84DB9BC71BDCD67200822CC4 /* UIView+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DB9BC61BDCD67200822CC4 /* UIView+Extension.m */; };
		84E420411BE849FC00689976 /* QuestionDescribeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E420401BE849FC00689976 /* QuestionDescribeCell.m */; };
		84E420441BE84A2300689976 /* QuestionCommentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E420431BE84A2300689976 /* QuestionCommentCell.m */; };
		84E420471BE88AE000689976 /* RootTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E420461BE88AE000689976 /* RootTabBarController.m */; };
		84ED5DD81BF2E64300A1BB6D /* ScreenView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84ED5DD71BF2E64300A1BB6D /* ScreenView.m */; };
		84F1669B1BE715E40061D350 /* ZanButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F1669A1BE715E40061D350 /* ZanButton.m */; };
		84F57C461BEC388A00DDEEB1 /* CommentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F57C451BEC388A00DDEEB1 /* CommentView.m */; };
		84F57C4C1BEC785E00DDEEB1 /* AddQuestionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F57C4B1BEC785E00DDEEB1 /* AddQuestionViewController.m */; };
		84F57C501BEC7AA300DDEEB1 /* AddQuestionFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F57C4F1BEC7AA300DDEEB1 /* AddQuestionFooterView.m */; };
		84F57C9C1BECA73800DDEEB1 /* StarBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F57C9B1BECA73800DDEEB1 /* StarBar.m */; };
		84FD89F21BD9FC71006E442A /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84FD89F11BD9FC71006E442A /* HomeViewController.m */; };
		84FD8A071BDA01C4006E442A /* ChartViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84FD8A061BDA01C4006E442A /* ChartViewController.m */; };
		84FD8A0A1BDA01D1006E442A /* MineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 84FD8A091BDA01D1006E442A /* MineViewController.m */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		84970E041BD8DD8A00C1728A /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 84970DE21BD8DD8A00C1728A /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 84970DE91BD8DD8A00C1728A;
			remoteInfo = redstar;
		};
		84970E0F1BD8DD8A00C1728A /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 84970DE21BD8DD8A00C1728A /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 84970DE91BD8DD8A00C1728A;
			remoteInfo = redstar;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		083F3F95EB690FA24FEC0C8E /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
		13B0DDED3E0E584D79B395CF /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
		6C6D8B0ECF8531E34D0DFF6B /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
		840826181BE5CEDD0022B795 /* OnLineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineViewController.h; sourceTree = "<group>"; };
		840826191BE5CEDD0022B795 /* OnLineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineViewController.m; sourceTree = "<group>"; };
		8408261C1BE5D22A0022B795 /* OnLineTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineTableViewCell.h; sourceTree = "<group>"; };
		8408261D1BE5D22A0022B795 /* OnLineTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineTableViewCell.m; sourceTree = "<group>"; };
		8408261F1BE5D2400022B795 /* OnLineFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnLineFooterView.h; sourceTree = "<group>"; };
		840826201BE5D2400022B795 /* OnLineFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnLineFooterView.m; sourceTree = "<group>"; };
		840ABECA1BE1C29F006E49C5 /* RankDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankDetailViewController.h; sourceTree = "<group>"; };
		840ABECB1BE1C29F006E49C5 /* RankDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankDetailViewController.m; sourceTree = "<group>"; };
		8419EAD21BEDC98F002635ED /* HttpClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpClient.h; sourceTree = "<group>"; };
		8419EAD31BEDC98F002635ED /* HttpClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HttpClient.m; sourceTree = "<group>"; };
		841D24F61BEB473C0005CC9F /* CheckPicViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CheckPicViewController.h; sourceTree = "<group>"; };
		841D24F71BEB473C0005CC9F /* CheckPicViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CheckPicViewController.m; sourceTree = "<group>"; };
		841D24F91BEB75CA0005CC9F /* QuestionDetailFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionDetailFooterView.h; sourceTree = "<group>"; };
		841D24FA1BEB75CA0005CC9F /* QuestionDetailFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionDetailFooterView.m; sourceTree = "<group>"; };
		842547FA1BF03977006C79C5 /* QuestionModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionModel.h; sourceTree = "<group>"; };
		842547FB1BF03977006C79C5 /* QuestionModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionModel.m; sourceTree = "<group>"; };
		8442BA5A1BDB8FDB005E5657 /* MineTableHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineTableHeaderView.h; sourceTree = "<group>"; };
		8442BA5B1BDB8FDB005E5657 /* MineTableHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineTableHeaderView.m; sourceTree = "<group>"; };
		8474A01A1BE368D700315F30 /* HomeCellItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeCellItem.h; sourceTree = "<group>"; };
		8474A01B1BE368D700315F30 /* HomeCellItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeCellItem.m; sourceTree = "<group>"; };
		8474C5811BE751A2007DCF19 /* CommonFunc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonFunc.h; sourceTree = "<group>"; };
		8474C5821BE751A2007DCF19 /* CommonFunc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommonFunc.m; sourceTree = "<group>"; };
		8474C5851BE77311007DCF19 /* Url.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Url.h; sourceTree = "<group>"; };
		8474C58B1BE78A85007DCF19 /* QuestionListTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionListTableCell.h; sourceTree = "<group>"; };
		8474C58C1BE78A85007DCF19 /* QuestionListTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionListTableCell.m; sourceTree = "<group>"; };
		8474C58F1BE78A85007DCF19 /* QuestionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionViewController.h; sourceTree = "<group>"; };
		8474C5901BE78A85007DCF19 /* QuestionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionViewController.m; sourceTree = "<group>"; };
		8474C5931BE78AE1007DCF19 /* QuestionDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionDetailViewController.h; sourceTree = "<group>"; };
		8474C5941BE78AE1007DCF19 /* QuestionDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionDetailViewController.m; sourceTree = "<group>"; };
		8474C5971BE78BBC007DCF19 /* QuestionDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionDetailCell.h; sourceTree = "<group>"; };
		8474C5981BE78BBC007DCF19 /* QuestionDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionDetailCell.m; sourceTree = "<group>"; };
		84846E951BE069BC0010550A /* DateButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DateButton.h; sourceTree = "<group>"; };
		84846E961BE069BC0010550A /* DateButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DateButton.m; sourceTree = "<group>"; };
		84846E981BE07CDF0010550A /* RankingListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankingListCell.h; sourceTree = "<group>"; };
		84846E991BE07CDF0010550A /* RankingListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankingListCell.m; sourceTree = "<group>"; };
		8486999E1BDF810900859DFE /* InspectListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectListCell.h; sourceTree = "<group>"; };
		8486999F1BDF810900859DFE /* InspectListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectListCell.m; sourceTree = "<group>"; };
		848699A01BDF810900859DFE /* MenuButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MenuButton.h; sourceTree = "<group>"; };
		848699A11BDF810900859DFE /* MenuButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MenuButton.m; sourceTree = "<group>"; };
		848699A31BDF810900859DFE /* InspectListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectListViewController.h; sourceTree = "<group>"; };
		848699A41BDF810900859DFE /* InspectListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectListViewController.m; sourceTree = "<group>"; };
		848699A71BDF810900859DFE /* InspectTaskViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectTaskViewController.h; sourceTree = "<group>"; };
		848699A81BDF810900859DFE /* InspectTaskViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectTaskViewController.m; sourceTree = "<group>"; };
		848699B41BDF812F00859DFE /* RankingListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankingListViewController.h; sourceTree = "<group>"; };
		848699B51BDF812F00859DFE /* RankingListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankingListViewController.m; sourceTree = "<group>"; };
		8487D7701BF19A9C00E63E90 /* SearchToolBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchToolBar.h; sourceTree = "<group>"; };
		8487D7711BF19A9C00E63E90 /* SearchToolBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchToolBar.m; sourceTree = "<group>"; };
		8487D8071BF20FAD00E63E90 /* TaxisView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaxisView.h; sourceTree = "<group>"; };
		8487D8081BF20FAD00E63E90 /* TaxisView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TaxisView.m; sourceTree = "<group>"; };
		8487D80A1BF218F900E63E90 /* MenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MenuView.h; sourceTree = "<group>"; };
		8487D80B1BF218F900E63E90 /* MenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MenuView.m; sourceTree = "<group>"; };
		84970DEA1BD8DD8A00C1728A /* redstar.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = redstar.app; sourceTree = BUILT_PRODUCTS_DIR; };
		84970DEE1BD8DD8A00C1728A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		84970DF91BD8DD8A00C1728A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
		84970DFC1BD8DD8A00C1728A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
		84970DFE1BD8DD8A00C1728A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		84970E031BD8DD8A00C1728A /* redstarTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = redstarTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
		84970E071BD8DD8A00C1728A /* redstarTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = redstarTests.m; sourceTree = "<group>"; };
		84970E091BD8DD8A00C1728A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		84970E0E1BD8DD8A00C1728A /* redstarUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = redstarUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
		84970E121BD8DD8A00C1728A /* redstarUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = redstarUITests.m; sourceTree = "<group>"; };
		84970E141BD8DD8A00C1728A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		84970E221BD8DEFE00C1728A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
		84970E231BD8DEFE00C1728A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
		84970E341BD8E09D00C1728A /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
		84970E351BD8E09D00C1728A /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
		84970E371BD8E0B300C1728A /* LoginView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginView.h; sourceTree = "<group>"; };
		84970E381BD8E0B300C1728A /* LoginView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginView.m; sourceTree = "<group>"; };
		84970E3F1BD9127A00C1728A /* Constant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Constant.h; sourceTree = "<group>"; };
		84AB20A31BE648EC00B66F13 /* PictureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureViewController.h; sourceTree = "<group>"; };
		84AB20A41BE648EC00B66F13 /* PictureViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureViewController.m; sourceTree = "<group>"; };
		84AB20A71BE64DC600B66F13 /* PictureTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureTableCell.h; sourceTree = "<group>"; };
		84AB20A81BE64DC600B66F13 /* PictureTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureTableCell.m; sourceTree = "<group>"; };
		84AD4F1E1BF425AC00BFB37C /* InspectDetailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectDetailView.h; sourceTree = "<group>"; };
		84AD4F1F1BF425AC00BFB37C /* InspectDetailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectDetailView.m; sourceTree = "<group>"; };
		84AD4F211BF42F8E00BFB37C /* classfiy.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = classfiy.plist; sourceTree = "<group>"; };
		84AD4F241BF4356A00BFB37C /* TaskModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaskModel.h; sourceTree = "<group>"; };
		84AD4F251BF4356A00BFB37C /* TaskModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TaskModel.m; sourceTree = "<group>"; };
		84AD4F271BF4360E00BFB37C /* TaskGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TaskGroup.h; sourceTree = "<group>"; };
		84AD4F281BF4360E00BFB37C /* TaskGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TaskGroup.m; sourceTree = "<group>"; };
		84AD4F2D1BF4370E00BFB37C /* InspectHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectHeaderView.h; sourceTree = "<group>"; };
		84AD4F2E1BF4370E00BFB37C /* InspectHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectHeaderView.m; sourceTree = "<group>"; };
		84AD4F301BF443E700BFB37C /* InspectDetailHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectDetailHeaderView.h; sourceTree = "<group>"; };
		84AD4F311BF443E700BFB37C /* InspectDetailHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectDetailHeaderView.m; sourceTree = "<group>"; };
		84AD4F341BF45BEB00BFB37C /* InspectSortTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectSortTableCell.h; sourceTree = "<group>"; };
		84AD4F351BF45BEB00BFB37C /* InspectSortTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectSortTableCell.m; sourceTree = "<group>"; };
		84AD4F381BF4844600BFB37C /* RankDetailHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankDetailHeaderView.h; sourceTree = "<group>"; };
		84AD4F391BF4844600BFB37C /* RankDetailHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankDetailHeaderView.m; sourceTree = "<group>"; };
		84AD4F3B1BF4894D00BFB37C /* RankDetailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankDetailView.h; sourceTree = "<group>"; };
		84AD4F3C1BF4894D00BFB37C /* RankDetailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankDetailView.m; sourceTree = "<group>"; };
		84AD4F3E1BF498A900BFB37C /* ranking.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = ranking.plist; sourceTree = "<group>"; };
		84AD4F411BF4A66F00BFB37C /* WorkModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WorkModel.h; sourceTree = "<group>"; };
		84AD4F421BF4A66F00BFB37C /* WorkModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WorkModel.m; sourceTree = "<group>"; };
		84AD4F441BF4A9E800BFB37C /* RankHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankHeadView.h; sourceTree = "<group>"; };
		84AD4F451BF4A9E800BFB37C /* RankHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankHeadView.m; sourceTree = "<group>"; };
		84AD4F471BF4BC0600BFB37C /* RankDetailTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RankDetailTableCell.h; sourceTree = "<group>"; };
		84AD4F481BF4BC0600BFB37C /* RankDetailTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RankDetailTableCell.m; sourceTree = "<group>"; };
		84C582EA1BDDFB0400AF838D /* HomeFunctionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeFunctionCell.h; sourceTree = "<group>"; };
		84C582EB1BDDFB0400AF838D /* HomeFunctionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeFunctionCell.m; sourceTree = "<group>"; };
		84C957491BDB344900083584 /* UIBarButtonItem+Create.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+Create.h"; sourceTree = "<group>"; };
		84C9574A1BDB344900083584 /* UIBarButtonItem+Create.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+Create.m"; sourceTree = "<group>"; };
		84C9574B1BDB344900083584 /* UIView+Frame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Frame.h"; sourceTree = "<group>"; };
		84C9574C1BDB344900083584 /* UIView+Frame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Frame.m"; sourceTree = "<group>"; };
		84C9574F1BDB38AA00083584 /* redstar.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = redstar.pch; sourceTree = "<group>"; };
		84C957531BDB54D600083584 /* AnnounceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnnounceViewController.h; sourceTree = "<group>"; };
		84C957541BDB54D600083584 /* AnnounceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnnounceViewController.m; sourceTree = "<group>"; };
		84CF0ED31BE9AC1400C855CE /* InspectSettleCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectSettleCell.h; sourceTree = "<group>"; };
		84CF0ED41BE9AC1400C855CE /* InspectSettleCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectSettleCell.m; sourceTree = "<group>"; };
		84CF0ED61BE9AC7E00C855CE /* InspectSettleViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectSettleViewController.h; sourceTree = "<group>"; };
		84CF0ED71BE9AC7E00C855CE /* InspectSettleViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectSettleViewController.m; sourceTree = "<group>"; };
		84CF0F1C1BE9B40400C855CE /* InspectDetailFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectDetailFooterView.h; sourceTree = "<group>"; };
		84CF0F1D1BE9B40400C855CE /* InspectDetailFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InspectDetailFooterView.m; sourceTree = "<group>"; };
		84CF0FA01BE9EDA900C855CE /* TakePhotoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TakePhotoView.h; sourceTree = "<group>"; };
		84CF0FA11BE9EDA900C855CE /* TakePhotoView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TakePhotoView.m; sourceTree = "<group>"; };
		84D8257D1BDD2F7E00CC61F7 /* MineTableFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineTableFooterView.h; sourceTree = "<group>"; };
		84D8257E1BDD2F7E00CC61F7 /* MineTableFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineTableFooterView.m; sourceTree = "<group>"; };
		84D825801BDD35E000CC61F7 /* HomeHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeHeaderView.h; sourceTree = "<group>"; };
		84D825811BDD35E000CC61F7 /* HomeHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeHeaderView.m; sourceTree = "<group>"; };
		84DB060F1BE33F33003E581E /* NewAnnounceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewAnnounceCell.h; sourceTree = "<group>"; };
		84DB06101BE33F33003E581E /* NewAnnounceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewAnnounceCell.m; sourceTree = "<group>"; };
		84DB9BC21BDCD4B600822CC4 /* CustomDropMenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomDropMenuView.h; sourceTree = "<group>"; };
		84DB9BC31BDCD4B600822CC4 /* CustomDropMenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomDropMenuView.m; sourceTree = "<group>"; };
		84DB9BC51BDCD67200822CC4 /* UIView+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Extension.h"; sourceTree = "<group>"; };
		84DB9BC61BDCD67200822CC4 /* UIView+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Extension.m"; sourceTree = "<group>"; };
		84E4203F1BE849FC00689976 /* QuestionDescribeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionDescribeCell.h; sourceTree = "<group>"; };
		84E420401BE849FC00689976 /* QuestionDescribeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionDescribeCell.m; sourceTree = "<group>"; };
		84E420421BE84A2300689976 /* QuestionCommentCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuestionCommentCell.h; sourceTree = "<group>"; };
		84E420431BE84A2300689976 /* QuestionCommentCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuestionCommentCell.m; sourceTree = "<group>"; };
		84E420451BE88AE000689976 /* RootTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RootTabBarController.h; sourceTree = "<group>"; };
		84E420461BE88AE000689976 /* RootTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RootTabBarController.m; sourceTree = "<group>"; };
		84ED5DD61BF2E64300A1BB6D /* ScreenView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScreenView.h; sourceTree = "<group>"; };
		84ED5DD71BF2E64300A1BB6D /* ScreenView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScreenView.m; sourceTree = "<group>"; };
		84F166991BE715E40061D350 /* ZanButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZanButton.h; sourceTree = "<group>"; };
		84F1669A1BE715E40061D350 /* ZanButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZanButton.m; sourceTree = "<group>"; };
		84F57C441BEC388A00DDEEB1 /* CommentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommentView.h; sourceTree = "<group>"; };
		84F57C451BEC388A00DDEEB1 /* CommentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommentView.m; sourceTree = "<group>"; };
		84F57C4A1BEC785E00DDEEB1 /* AddQuestionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddQuestionViewController.h; sourceTree = "<group>"; };
		84F57C4B1BEC785E00DDEEB1 /* AddQuestionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddQuestionViewController.m; sourceTree = "<group>"; };
		84F57C4E1BEC7AA300DDEEB1 /* AddQuestionFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddQuestionFooterView.h; sourceTree = "<group>"; };
		84F57C4F1BEC7AA300DDEEB1 /* AddQuestionFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddQuestionFooterView.m; sourceTree = "<group>"; };
		84F57C9A1BECA73800DDEEB1 /* StarBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StarBar.h; sourceTree = "<group>"; };
		84F57C9B1BECA73800DDEEB1 /* StarBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StarBar.m; sourceTree = "<group>"; };
		84FD89F01BD9FC71006E442A /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
		84FD89F11BD9FC71006E442A /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
		84FD8A051BDA01C4006E442A /* ChartViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChartViewController.h; sourceTree = "<group>"; };
		84FD8A061BDA01C4006E442A /* ChartViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChartViewController.m; sourceTree = "<group>"; };
		84FD8A081BDA01D1006E442A /* MineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineViewController.h; sourceTree = "<group>"; };
		84FD8A091BDA01D1006E442A /* MineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineViewController.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		84970DE71BD8DD8A00C1728A /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2381E9EBA834CB171E43657A /* libPods.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		84970E001BD8DD8A00C1728A /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		84970E0B1BD8DD8A00C1728A /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		3804675908937B1280E059D9 /* Pods */ = {
			isa = PBXGroup;
			children = (
				6C6D8B0ECF8531E34D0DFF6B /* Pods.debug.xcconfig */,
				13B0DDED3E0E584D79B395CF /* Pods.release.xcconfig */,
			);
			name = Pods;
			sourceTree = "<group>";
		};
		8408261B1BE5D2130022B795 /* Cell */ = {
			isa = PBXGroup;
			children = (
				8408261C1BE5D22A0022B795 /* OnLineTableViewCell.h */,
				8408261D1BE5D22A0022B795 /* OnLineTableViewCell.m */,
			);
			path = Cell;
			sourceTree = "<group>";
		};
		8419EABB1BEDA8F9002635ED /* Menu */ = {
			isa = PBXGroup;
			children = (
				8487D80A1BF218F900E63E90 /* MenuView.h */,
				8487D80B1BF218F900E63E90 /* MenuView.m */,
				8419EAC81BEDABF0002635ED /* Screen */,
				8419EACB1BEDABF0002635ED /* Taxis */,
			);
			path = Menu;
			sourceTree = "<group>";
		};
		8419EAC81BEDABF0002635ED /* Screen */ = {
			isa = PBXGroup;
			children = (
				8419EAC91BEDABF0002635ED /* View */,
			);
			path = Screen;
			sourceTree = "<group>";
		};
		8419EAC91BEDABF0002635ED /* View */ = {
			isa = PBXGroup;
			children = (
				84ED5DD61BF2E64300A1BB6D /* ScreenView.h */,
				84ED5DD71BF2E64300A1BB6D /* ScreenView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		8419EACB1BEDABF0002635ED /* Taxis */ = {
			isa = PBXGroup;
			children = (
				8419EACC1BEDABF0002635ED /* View */,
			);
			path = Taxis;
			sourceTree = "<group>";
		};
		8419EACC1BEDABF0002635ED /* View */ = {
			isa = PBXGroup;
			children = (
				8487D8071BF20FAD00E63E90 /* TaxisView.h */,
				8487D8081BF20FAD00E63E90 /* TaxisView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		8419EAD11BEDC976002635ED /* HttpClient */ = {
			isa = PBXGroup;
			children = (
				8419EAD21BEDC98F002635ED /* HttpClient.h */,
				8419EAD31BEDC98F002635ED /* HttpClient.m */,
			);
			path = HttpClient;
			sourceTree = "<group>";
		};
		841D24F51BEB473B0005CC9F /* Check */ = {
			isa = PBXGroup;
			children = (
				841D24F61BEB473C0005CC9F /* CheckPicViewController.h */,
				841D24F71BEB473C0005CC9F /* CheckPicViewController.m */,
			);
			path = Check;
			sourceTree = "<group>";
		};
		842547F91BF03962006C79C5 /* Model */ = {
			isa = PBXGroup;
			children = (
				842547FA1BF03977006C79C5 /* QuestionModel.h */,
				842547FB1BF03977006C79C5 /* QuestionModel.m */,
			);
			path = Model;
			sourceTree = "<group>";
		};
		8426A4A01BDF0CD600E5FDF5 /* Function */ = {
			isa = PBXGroup;
			children = (
				8426A4A11BDF0CD600E5FDF5 /* Case */,
				8426A4A41BDF0CD600E5FDF5 /* OnLine */,
				8426A4A71BDF0CD600E5FDF5 /* Picture */,
				8426A4AA1BDF0CD600E5FDF5 /* Question */,
				8426A4AD1BDF0CD600E5FDF5 /* Standard */,
				8426A4B01BDF0CD600E5FDF5 /* WordOfMouth */,
			);
			path = Function;
			sourceTree = "<group>";
		};
		8426A4A11BDF0CD600E5FDF5 /* Case */ = {
			isa = PBXGroup;
			children = (
				8426A4A21BDF0CD600E5FDF5 /* View */,
				8426A4A31BDF0CD600E5FDF5 /* ViewController */,
			);
			path = Case;
			sourceTree = "<group>";
		};
		8426A4A21BDF0CD600E5FDF5 /* View */ = {
			isa = PBXGroup;
			children = (
			);
			path = View;
			sourceTree = "<group>";
		};
		8426A4A31BDF0CD600E5FDF5 /* ViewController */ = {
			isa = PBXGroup;
			children = (
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		8426A4A41BDF0CD600E5FDF5 /* OnLine */ = {
			isa = PBXGroup;
			children = (
				8408261B1BE5D2130022B795 /* Cell */,
				8426A4A51BDF0CD600E5FDF5 /* View */,
				8426A4A61BDF0CD600E5FDF5 /* ViewController */,
			);
			path = OnLine;
			sourceTree = "<group>";
		};
		8426A4A51BDF0CD600E5FDF5 /* View */ = {
			isa = PBXGroup;
			children = (
				8408261F1BE5D2400022B795 /* OnLineFooterView.h */,
				840826201BE5D2400022B795 /* OnLineFooterView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		8426A4A61BDF0CD600E5FDF5 /* ViewController */ = {
			isa = PBXGroup;
			children = (
				840826181BE5CEDD0022B795 /* OnLineViewController.h */,
				840826191BE5CEDD0022B795 /* OnLineViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		8426A4A71BDF0CD600E5FDF5 /* Picture */ = {
			isa = PBXGroup;
			children = (
				84AB20A61BE64D9800B66F13 /* Cell */,
				8426A4A81BDF0CD600E5FDF5 /* View */,
				8426A4A91BDF0CD600E5FDF5 /* ViewController */,
			);
			path = Picture;
			sourceTree = "<group>";
		};
		8426A4A81BDF0CD600E5FDF5 /* View */ = {
			isa = PBXGroup;
			children = (
			);
			path = View;
			sourceTree = "<group>";
		};
		8426A4A91BDF0CD600E5FDF5 /* ViewController */ = {
			isa = PBXGroup;
			children = (
				84AB20A31BE648EC00B66F13 /* PictureViewController.h */,
				84AB20A41BE648EC00B66F13 /* PictureViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		8426A4AA1BDF0CD600E5FDF5 /* Question */ = {
			isa = PBXGroup;
			children = (
				84F57C471BEC782D00DDEEB1 /* AddQuestion */,
				8474C5861BE78A85007DCF19 /* QuestionDetail */,
				8474C5891BE78A85007DCF19 /* QuestionList */,
			);
			path = Question;
			sourceTree = "<group>";
		};
		8426A4AD1BDF0CD600E5FDF5 /* Standard */ = {
			isa = PBXGroup;
			children = (
				8426A4AE1BDF0CD600E5FDF5 /* View */,
				8426A4AF1BDF0CD600E5FDF5 /* ViewController */,
			);
			name = Standard;
			path = Standar;
			sourceTree = "<group>";
		};
		8426A4AE1BDF0CD600E5FDF5 /* View */ = {
			isa = PBXGroup;
			children = (
			);
			path = View;
			sourceTree = "<group>";
		};
		8426A4AF1BDF0CD600E5FDF5 /* ViewController */ = {
			isa = PBXGroup;
			children = (
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		8426A4B01BDF0CD600E5FDF5 /* WordOfMouth */ = {
			isa = PBXGroup;
			children = (
				8486999B1BDF810900859DFE /* Inspect */,
				848699A91BDF810900859DFE /* Ranking */,
			);
			path = WordOfMouth;
			sourceTree = "<group>";
		};
		8474C5801BE751A2007DCF19 /* CommonFunc */ = {
			isa = PBXGroup;
			children = (
				8474C5811BE751A2007DCF19 /* CommonFunc.h */,
				8474C5821BE751A2007DCF19 /* CommonFunc.m */,
			);
			path = CommonFunc;
			sourceTree = "<group>";
		};
		8474C5861BE78A85007DCF19 /* QuestionDetail */ = {
			isa = PBXGroup;
			children = (
				8474C5961BE78BA3007DCF19 /* Cell */,
				8474C5871BE78A85007DCF19 /* View */,
				8474C5881BE78A85007DCF19 /* ViewController */,
			);
			path = QuestionDetail;
			sourceTree = "<group>";
		};
		8474C5871BE78A85007DCF19 /* View */ = {
			isa = PBXGroup;
			children = (
				841D24F91BEB75CA0005CC9F /* QuestionDetailFooterView.h */,
				841D24FA1BEB75CA0005CC9F /* QuestionDetailFooterView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		8474C5881BE78A85007DCF19 /* ViewController */ = {
			isa = PBXGroup;
			children = (
				8474C5931BE78AE1007DCF19 /* QuestionDetailViewController.h */,
				8474C5941BE78AE1007DCF19 /* QuestionDetailViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		8474C5891BE78A85007DCF19 /* QuestionList */ = {
			isa = PBXGroup;
			children = (
				842547F91BF03962006C79C5 /* Model */,
				8474C58A1BE78A85007DCF19 /* Cell */,
				8474C58D1BE78A85007DCF19 /* View */,
				8474C58E1BE78A85007DCF19 /* ViewController */,
			);
			path = QuestionList;
			sourceTree = "<group>";
		};
		8474C58A1BE78A85007DCF19 /* Cell */ = {
			isa = PBXGroup;
			children = (
				8474C58B1BE78A85007DCF19 /* QuestionListTableCell.h */,
				8474C58C1BE78A85007DCF19 /* QuestionListTableCell.m */,
			);
			path = Cell;
			sourceTree = "<group>";
		};
		8474C58D1BE78A85007DCF19 /* View */ = {
			isa = PBXGroup;
			children = (
				8487D7701BF19A9C00E63E90 /* SearchToolBar.h */,
				8487D7711BF19A9C00E63E90 /* SearchToolBar.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		8474C58E1BE78A85007DCF19 /* ViewController */ = {
			isa = PBXGroup;
			children = (
				8474C58F1BE78A85007DCF19 /* QuestionViewController.h */,
				8474C5901BE78A85007DCF19 /* QuestionViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		8474C5961BE78BA3007DCF19 /* Cell */ = {
			isa = PBXGroup;
			children = (
				8474C5971BE78BBC007DCF19 /* QuestionDetailCell.h */,
				8474C5981BE78BBC007DCF19 /* QuestionDetailCell.m */,
				84E4203F1BE849FC00689976 /* QuestionDescribeCell.h */,
				84E420401BE849FC00689976 /* QuestionDescribeCell.m */,
				84E420421BE84A2300689976 /* QuestionCommentCell.h */,
				84E420431BE84A2300689976 /* QuestionCommentCell.m */,
			);
			path = Cell;
			sourceTree = "<group>";
		};
		8486999B1BDF810900859DFE /* Inspect */ = {
			isa = PBXGroup;
			children = (
				84CF0ECA1BE9A7EF00C855CE /* InspectDetail */,
				8486999C1BDF810900859DFE /* InspectList */,
				848699A51BDF810900859DFE /* InspectTask */,
			);
			path = Inspect;
			sourceTree = "<group>";
		};
		8486999C1BDF810900859DFE /* InspectList */ = {
			isa = PBXGroup;
			children = (
				8486999D1BDF810900859DFE /* Cell */,
				848699A21BDF810900859DFE /* ViewController */,
			);
			path = InspectList;
			sourceTree = "<group>";
		};
		8486999D1BDF810900859DFE /* Cell */ = {
			isa = PBXGroup;
			children = (
				8486999E1BDF810900859DFE /* InspectListCell.h */,
				8486999F1BDF810900859DFE /* InspectListCell.m */,
				848699A01BDF810900859DFE /* MenuButton.h */,
				848699A11BDF810900859DFE /* MenuButton.m */,
			);
			path = Cell;
			sourceTree = "<group>";
		};
		848699A21BDF810900859DFE /* ViewController */ = {
			isa = PBXGroup;
			children = (
				848699A31BDF810900859DFE /* InspectListViewController.h */,
				848699A41BDF810900859DFE /* InspectListViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		848699A51BDF810900859DFE /* InspectTask */ = {
			isa = PBXGroup;
			children = (
				84AD4F331BF448D800BFB37C /* Cell */,
				84AD4F231BF4355700BFB37C /* Model */,
				84AD4F1D1BF4257C00BFB37C /* View */,
				848699A61BDF810900859DFE /* ViewController */,
			);
			path = InspectTask;
			sourceTree = "<group>";
		};
		848699A61BDF810900859DFE /* ViewController */ = {
			isa = PBXGroup;
			children = (
				848699A71BDF810900859DFE /* InspectTaskViewController.h */,
				848699A81BDF810900859DFE /* InspectTaskViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		848699A91BDF810900859DFE /* Ranking */ = {
			isa = PBXGroup;
			children = (
				848699AA1BDF810900859DFE /* RankDetail */,
				848699AD1BDF810900859DFE /* RankingList */,
			);
			path = Ranking;
			sourceTree = "<group>";
		};
		848699AA1BDF810900859DFE /* RankDetail */ = {
			isa = PBXGroup;
			children = (
				84AD4F401BF49FC100BFB37C /* Model */,
				84AD4F371BF4842C00BFB37C /* View */,
				848699AB1BDF810900859DFE /* Cell */,
				848699AC1BDF810900859DFE /* ViewController */,
			);
			path = RankDetail;
			sourceTree = "<group>";
		};
		848699AB1BDF810900859DFE /* Cell */ = {
			isa = PBXGroup;
			children = (
				84AD4F471BF4BC0600BFB37C /* RankDetailTableCell.h */,
				84AD4F481BF4BC0600BFB37C /* RankDetailTableCell.m */,
			);
			path = Cell;
			sourceTree = "<group>";
		};
		848699AC1BDF810900859DFE /* ViewController */ = {
			isa = PBXGroup;
			children = (
				840ABECA1BE1C29F006E49C5 /* RankDetailViewController.h */,
				840ABECB1BE1C29F006E49C5 /* RankDetailViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		848699AD1BDF810900859DFE /* RankingList */ = {
			isa = PBXGroup;
			children = (
				848699AE1BDF810900859DFE /* Cell */,
				848699AF1BDF810900859DFE /* ViewController */,
			);
			path = RankingList;
			sourceTree = "<group>";
		};
		848699AE1BDF810900859DFE /* Cell */ = {
			isa = PBXGroup;
			children = (
				84846E951BE069BC0010550A /* DateButton.h */,
				84846E961BE069BC0010550A /* DateButton.m */,
				84846E981BE07CDF0010550A /* RankingListCell.h */,
				84846E991BE07CDF0010550A /* RankingListCell.m */,
			);
			path = Cell;
			sourceTree = "<group>";
		};
		848699AF1BDF810900859DFE /* ViewController */ = {
			isa = PBXGroup;
			children = (
				848699B41BDF812F00859DFE /* RankingListViewController.h */,
				848699B51BDF812F00859DFE /* RankingListViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		84970DE11BD8DD8A00C1728A = {
			isa = PBXGroup;
			children = (
				84970DEC1BD8DD8A00C1728A /* redstar */,
				84970E061BD8DD8A00C1728A /* redstarTests */,
				84970E111BD8DD8A00C1728A /* redstarUITests */,
				84970DEB1BD8DD8A00C1728A /* Products */,
				3804675908937B1280E059D9 /* Pods */,
				DA794C35494A6C844D6EE3C9 /* Frameworks */,
			);
			sourceTree = "<group>";
		};
		84970DEB1BD8DD8A00C1728A /* Products */ = {
			isa = PBXGroup;
			children = (
				84970DEA1BD8DD8A00C1728A /* redstar.app */,
				84970E031BD8DD8A00C1728A /* redstarTests.xctest */,
				84970E0E1BD8DD8A00C1728A /* redstarUITests.xctest */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		84970DEC1BD8DD8A00C1728A /* redstar */ = {
			isa = PBXGroup;
			children = (
				84970E201BD8DEFE00C1728A /* Classes */,
				84970DF91BD8DD8A00C1728A /* Assets.xcassets */,
				84970DFB1BD8DD8A00C1728A /* LaunchScreen.storyboard */,
				84970DFE1BD8DD8A00C1728A /* Info.plist */,
				84AD4F3E1BF498A900BFB37C /* ranking.plist */,
				84AD4F211BF42F8E00BFB37C /* classfiy.plist */,
				84970DED1BD8DD8A00C1728A /* Supporting Files */,
			);
			path = redstar;
			sourceTree = "<group>";
		};
		84970DED1BD8DD8A00C1728A /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				84970DEE1BD8DD8A00C1728A /* main.m */,
				84C9574F1BDB38AA00083584 /* redstar.pch */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		84970E061BD8DD8A00C1728A /* redstarTests */ = {
			isa = PBXGroup;
			children = (
				84970E071BD8DD8A00C1728A /* redstarTests.m */,
				84970E091BD8DD8A00C1728A /* Info.plist */,
			);
			path = redstarTests;
			sourceTree = "<group>";
		};
		84970E111BD8DD8A00C1728A /* redstarUITests */ = {
			isa = PBXGroup;
			children = (
				84970E121BD8DD8A00C1728A /* redstarUITests.m */,
				84970E141BD8DD8A00C1728A /* Info.plist */,
			);
			path = redstarUITests;
			sourceTree = "<group>";
		};
		84970E201BD8DEFE00C1728A /* Classes */ = {
			isa = PBXGroup;
			children = (
				84970E211BD8DEFE00C1728A /* AppDelegate */,
				84970E241BD8DEFE00C1728A /* Module */,
				84970E3E1BD9124D00C1728A /* Macro */,
				84970E251BD8DEFE00C1728A /* Resource */,
				84970E261BD8DEFE00C1728A /* Tools */,
				84970E271BD8DEFE00C1728A /* Vendors */,
				84C957471BDB344900083584 /* Other */,
			);
			path = Classes;
			sourceTree = "<group>";
		};
		84970E211BD8DEFE00C1728A /* AppDelegate */ = {
			isa = PBXGroup;
			children = (
				84970E221BD8DEFE00C1728A /* AppDelegate.h */,
				84970E231BD8DEFE00C1728A /* AppDelegate.m */,
				84E420451BE88AE000689976 /* RootTabBarController.h */,
				84E420461BE88AE000689976 /* RootTabBarController.m */,
			);
			path = AppDelegate;
			sourceTree = "<group>";
		};
		84970E241BD8DEFE00C1728A /* Module */ = {
			isa = PBXGroup;
			children = (
				84F57C421BEC388A00DDEEB1 /* Comment */,
				841D24F51BEB473B0005CC9F /* Check */,
				8426A4A01BDF0CD600E5FDF5 /* Function */,
				84C957501BDB54BB00083584 /* Announce */,
				84FD89F31BDA0136006E442A /* Chart */,
				84FD89F81BDA0136006E442A /* Mine */,
				84FD89ED1BD9FC5B006E442A /* Home */,
				84970E2E1BD8E04000C1728A /* Login */,
			);
			path = Module;
			sourceTree = "<group>";
		};
		84970E251BD8DEFE00C1728A /* Resource */ = {
			isa = PBXGroup;
			children = (
			);
			path = Resource;
			sourceTree = "<group>";
		};
		84970E261BD8DEFE00C1728A /* Tools */ = {
			isa = PBXGroup;
			children = (
				8419EAD11BEDC976002635ED /* HttpClient */,
				8419EABB1BEDA8F9002635ED /* Menu */,
				84F57C991BECA72C00DDEEB1 /* StarBar */,
				8474C5801BE751A2007DCF19 /* CommonFunc */,
				84F166981BE715D20061D350 /* ZanButton */,
				84DB9BC11BDCD49900822CC4 /* CustomDropMenu */,
			);
			path = Tools;
			sourceTree = "<group>";
		};
		84970E271BD8DEFE00C1728A /* Vendors */ = {
			isa = PBXGroup;
			children = (
			);
			path = Vendors;
			sourceTree = "<group>";
		};
		84970E2E1BD8E04000C1728A /* Login */ = {
			isa = PBXGroup;
			children = (
				84970E321BD8E09D00C1728A /* View */,
				84970E331BD8E09D00C1728A /* ViewController */,
			);
			path = Login;
			sourceTree = "<group>";
		};
		84970E321BD8E09D00C1728A /* View */ = {
			isa = PBXGroup;
			children = (
				84970E371BD8E0B300C1728A /* LoginView.h */,
				84970E381BD8E0B300C1728A /* LoginView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		84970E331BD8E09D00C1728A /* ViewController */ = {
			isa = PBXGroup;
			children = (
				84970E341BD8E09D00C1728A /* LoginViewController.h */,
				84970E351BD8E09D00C1728A /* LoginViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		84970E3E1BD9124D00C1728A /* Macro */ = {
			isa = PBXGroup;
			children = (
				84970E3F1BD9127A00C1728A /* Constant.h */,
				8474C5851BE77311007DCF19 /* Url.h */,
			);
			path = Macro;
			sourceTree = "<group>";
		};
		84AB20A61BE64D9800B66F13 /* Cell */ = {
			isa = PBXGroup;
			children = (
				84AB20A71BE64DC600B66F13 /* PictureTableCell.h */,
				84AB20A81BE64DC600B66F13 /* PictureTableCell.m */,
			);
			path = Cell;
			sourceTree = "<group>";
		};
		84AD4F1D1BF4257C00BFB37C /* View */ = {
			isa = PBXGroup;
			children = (
				84AD4F301BF443E700BFB37C /* InspectDetailHeaderView.h */,
				84AD4F311BF443E700BFB37C /* InspectDetailHeaderView.m */,
				84AD4F1E1BF425AC00BFB37C /* InspectDetailView.h */,
				84AD4F1F1BF425AC00BFB37C /* InspectDetailView.m */,
				84AD4F2D1BF4370E00BFB37C /* InspectHeaderView.h */,
				84AD4F2E1BF4370E00BFB37C /* InspectHeaderView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		84AD4F231BF4355700BFB37C /* Model */ = {
			isa = PBXGroup;
			children = (
				84AD4F241BF4356A00BFB37C /* TaskModel.h */,
				84AD4F251BF4356A00BFB37C /* TaskModel.m */,
				84AD4F271BF4360E00BFB37C /* TaskGroup.h */,
				84AD4F281BF4360E00BFB37C /* TaskGroup.m */,
			);
			path = Model;
			sourceTree = "<group>";
		};
		84AD4F331BF448D800BFB37C /* Cell */ = {
			isa = PBXGroup;
			children = (
				84AD4F341BF45BEB00BFB37C /* InspectSortTableCell.h */,
				84AD4F351BF45BEB00BFB37C /* InspectSortTableCell.m */,
			);
			path = Cell;
			sourceTree = "<group>";
		};
		84AD4F371BF4842C00BFB37C /* View */ = {
			isa = PBXGroup;
			children = (
				84AD4F381BF4844600BFB37C /* RankDetailHeaderView.h */,
				84AD4F391BF4844600BFB37C /* RankDetailHeaderView.m */,
				84AD4F3B1BF4894D00BFB37C /* RankDetailView.h */,
				84AD4F3C1BF4894D00BFB37C /* RankDetailView.m */,
				84AD4F441BF4A9E800BFB37C /* RankHeadView.h */,
				84AD4F451BF4A9E800BFB37C /* RankHeadView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		84AD4F401BF49FC100BFB37C /* Model */ = {
			isa = PBXGroup;
			children = (
				84AD4F411BF4A66F00BFB37C /* WorkModel.h */,
				84AD4F421BF4A66F00BFB37C /* WorkModel.m */,
			);
			path = Model;
			sourceTree = "<group>";
		};
		84C582E91BDDFACD00AF838D /* Cell */ = {
			isa = PBXGroup;
			children = (
				84C582EA1BDDFB0400AF838D /* HomeFunctionCell.h */,
				84C582EB1BDDFB0400AF838D /* HomeFunctionCell.m */,
				84DB060F1BE33F33003E581E /* NewAnnounceCell.h */,
				84DB06101BE33F33003E581E /* NewAnnounceCell.m */,
				8474A01A1BE368D700315F30 /* HomeCellItem.h */,
				8474A01B1BE368D700315F30 /* HomeCellItem.m */,
			);
			path = Cell;
			sourceTree = "<group>";
		};
		84C957471BDB344900083584 /* Other */ = {
			isa = PBXGroup;
			children = (
				84C957481BDB344900083584 /* Category */,
			);
			path = Other;
			sourceTree = "<group>";
		};
		84C957481BDB344900083584 /* Category */ = {
			isa = PBXGroup;
			children = (
				84DB9BC51BDCD67200822CC4 /* UIView+Extension.h */,
				84DB9BC61BDCD67200822CC4 /* UIView+Extension.m */,
				84C957491BDB344900083584 /* UIBarButtonItem+Create.h */,
				84C9574A1BDB344900083584 /* UIBarButtonItem+Create.m */,
				84C9574B1BDB344900083584 /* UIView+Frame.h */,
				84C9574C1BDB344900083584 /* UIView+Frame.m */,
			);
			path = Category;
			sourceTree = "<group>";
		};
		84C957501BDB54BB00083584 /* Announce */ = {
			isa = PBXGroup;
			children = (
				84C957511BDB54BB00083584 /* View */,
				84C957521BDB54BB00083584 /* ViewController */,
			);
			path = Announce;
			sourceTree = "<group>";
		};
		84C957511BDB54BB00083584 /* View */ = {
			isa = PBXGroup;
			children = (
			);
			path = View;
			sourceTree = "<group>";
		};
		84C957521BDB54BB00083584 /* ViewController */ = {
			isa = PBXGroup;
			children = (
				84C957531BDB54D600083584 /* AnnounceViewController.h */,
				84C957541BDB54D600083584 /* AnnounceViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		84CF0ECA1BE9A7EF00C855CE /* InspectDetail */ = {
			isa = PBXGroup;
			children = (
				84CF0F1B1BE9B3EE00C855CE /* View */,
				84CF0ECB1BE9A7EF00C855CE /* Cell */,
				84CF0ECC1BE9A7EF00C855CE /* ViewController */,
			);
			path = InspectDetail;
			sourceTree = "<group>";
		};
		84CF0ECB1BE9A7EF00C855CE /* Cell */ = {
			isa = PBXGroup;
			children = (
				84CF0ED31BE9AC1400C855CE /* InspectSettleCell.h */,
				84CF0ED41BE9AC1400C855CE /* InspectSettleCell.m */,
			);
			path = Cell;
			sourceTree = "<group>";
		};
		84CF0ECC1BE9A7EF00C855CE /* ViewController */ = {
			isa = PBXGroup;
			children = (
				84CF0ED61BE9AC7E00C855CE /* InspectSettleViewController.h */,
				84CF0ED71BE9AC7E00C855CE /* InspectSettleViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		84CF0F1B1BE9B3EE00C855CE /* View */ = {
			isa = PBXGroup;
			children = (
				84CF0F1C1BE9B40400C855CE /* InspectDetailFooterView.h */,
				84CF0F1D1BE9B40400C855CE /* InspectDetailFooterView.m */,
				84CF0FA01BE9EDA900C855CE /* TakePhotoView.h */,
				84CF0FA11BE9EDA900C855CE /* TakePhotoView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		84DB9BC11BDCD49900822CC4 /* CustomDropMenu */ = {
			isa = PBXGroup;
			children = (
				84DB9BC21BDCD4B600822CC4 /* CustomDropMenuView.h */,
				84DB9BC31BDCD4B600822CC4 /* CustomDropMenuView.m */,
			);
			path = CustomDropMenu;
			sourceTree = "<group>";
		};
		84F166981BE715D20061D350 /* ZanButton */ = {
			isa = PBXGroup;
			children = (
				84F166991BE715E40061D350 /* ZanButton.h */,
				84F1669A1BE715E40061D350 /* ZanButton.m */,
			);
			path = ZanButton;
			sourceTree = "<group>";
		};
		84F57C421BEC388A00DDEEB1 /* Comment */ = {
			isa = PBXGroup;
			children = (
				84F57C431BEC388A00DDEEB1 /* View */,
			);
			path = Comment;
			sourceTree = "<group>";
		};
		84F57C431BEC388A00DDEEB1 /* View */ = {
			isa = PBXGroup;
			children = (
				84F57C441BEC388A00DDEEB1 /* CommentView.h */,
				84F57C451BEC388A00DDEEB1 /* CommentView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		84F57C471BEC782D00DDEEB1 /* AddQuestion */ = {
			isa = PBXGroup;
			children = (
				84F57C4D1BEC7A8C00DDEEB1 /* View */,
				84F57C481BEC784A00DDEEB1 /* Cell */,
				84F57C491BEC784A00DDEEB1 /* ViewController */,
			);
			path = AddQuestion;
			sourceTree = "<group>";
		};
		84F57C481BEC784A00DDEEB1 /* Cell */ = {
			isa = PBXGroup;
			children = (
			);
			path = Cell;
			sourceTree = "<group>";
		};
		84F57C491BEC784A00DDEEB1 /* ViewController */ = {
			isa = PBXGroup;
			children = (
				84F57C4A1BEC785E00DDEEB1 /* AddQuestionViewController.h */,
				84F57C4B1BEC785E00DDEEB1 /* AddQuestionViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		84F57C4D1BEC7A8C00DDEEB1 /* View */ = {
			isa = PBXGroup;
			children = (
				84F57C4E1BEC7AA300DDEEB1 /* AddQuestionFooterView.h */,
				84F57C4F1BEC7AA300DDEEB1 /* AddQuestionFooterView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		84F57C991BECA72C00DDEEB1 /* StarBar */ = {
			isa = PBXGroup;
			children = (
				84F57C9A1BECA73800DDEEB1 /* StarBar.h */,
				84F57C9B1BECA73800DDEEB1 /* StarBar.m */,
			);
			path = StarBar;
			sourceTree = "<group>";
		};
		84FD89ED1BD9FC5B006E442A /* Home */ = {
			isa = PBXGroup;
			children = (
				84C582E91BDDFACD00AF838D /* Cell */,
				84FD89EE1BD9FC5B006E442A /* View */,
				84FD89EF1BD9FC5B006E442A /* ViewController */,
			);
			path = Home;
			sourceTree = "<group>";
		};
		84FD89EE1BD9FC5B006E442A /* View */ = {
			isa = PBXGroup;
			children = (
				84D825801BDD35E000CC61F7 /* HomeHeaderView.h */,
				84D825811BDD35E000CC61F7 /* HomeHeaderView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		84FD89EF1BD9FC5B006E442A /* ViewController */ = {
			isa = PBXGroup;
			children = (
				84FD89F01BD9FC71006E442A /* HomeViewController.h */,
				84FD89F11BD9FC71006E442A /* HomeViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		84FD89F31BDA0136006E442A /* Chart */ = {
			isa = PBXGroup;
			children = (
				84FD89F41BDA0136006E442A /* View */,
				84FD89F51BDA0136006E442A /* ViewController */,
			);
			path = Chart;
			sourceTree = "<group>";
		};
		84FD89F41BDA0136006E442A /* View */ = {
			isa = PBXGroup;
			children = (
			);
			path = View;
			sourceTree = "<group>";
		};
		84FD89F51BDA0136006E442A /* ViewController */ = {
			isa = PBXGroup;
			children = (
				84FD8A051BDA01C4006E442A /* ChartViewController.h */,
				84FD8A061BDA01C4006E442A /* ChartViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		84FD89F81BDA0136006E442A /* Mine */ = {
			isa = PBXGroup;
			children = (
				84FD89F91BDA0136006E442A /* View */,
				84FD89FA1BDA0136006E442A /* ViewController */,
			);
			path = Mine;
			sourceTree = "<group>";
		};
		84FD89F91BDA0136006E442A /* View */ = {
			isa = PBXGroup;
			children = (
				8442BA5A1BDB8FDB005E5657 /* MineTableHeaderView.h */,
				8442BA5B1BDB8FDB005E5657 /* MineTableHeaderView.m */,
				84D8257D1BDD2F7E00CC61F7 /* MineTableFooterView.h */,
				84D8257E1BDD2F7E00CC61F7 /* MineTableFooterView.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		84FD89FA1BDA0136006E442A /* ViewController */ = {
			isa = PBXGroup;
			children = (
				84FD8A081BDA01D1006E442A /* MineViewController.h */,
				84FD8A091BDA01D1006E442A /* MineViewController.m */,
			);
			path = ViewController;
			sourceTree = "<group>";
		};
		DA794C35494A6C844D6EE3C9 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				083F3F95EB690FA24FEC0C8E /* libPods.a */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		84970DE91BD8DD8A00C1728A /* redstar */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 84970E171BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstar" */;
			buildPhases = (
				BC0FD901EAA939388DD7E146 /* Check Pods Manifest.lock */,
				84970DE61BD8DD8A00C1728A /* Sources */,
				84970DE71BD8DD8A00C1728A /* Frameworks */,
				84970DE81BD8DD8A00C1728A /* Resources */,
				23955BAECB0FED236FD29A26 /* Copy Pods Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = redstar;
			productName = redstar;
			productReference = 84970DEA1BD8DD8A00C1728A /* redstar.app */;
			productType = "com.apple.product-type.application";
		};
		84970E021BD8DD8A00C1728A /* redstarTests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 84970E1A1BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstarTests" */;
			buildPhases = (
				84970DFF1BD8DD8A00C1728A /* Sources */,
				84970E001BD8DD8A00C1728A /* Frameworks */,
				84970E011BD8DD8A00C1728A /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
				84970E051BD8DD8A00C1728A /* PBXTargetDependency */,
			);
			name = redstarTests;
			productName = redstarTests;
			productReference = 84970E031BD8DD8A00C1728A /* redstarTests.xctest */;
			productType = "com.apple.product-type.bundle.unit-test";
		};
		84970E0D1BD8DD8A00C1728A /* redstarUITests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 84970E1D1BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstarUITests" */;
			buildPhases = (
				84970E0A1BD8DD8A00C1728A /* Sources */,
				84970E0B1BD8DD8A00C1728A /* Frameworks */,
				84970E0C1BD8DD8A00C1728A /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
				84970E101BD8DD8A00C1728A /* PBXTargetDependency */,
			);
			name = redstarUITests;
			productName = redstarUITests;
			productReference = 84970E0E1BD8DD8A00C1728A /* redstarUITests.xctest */;
			productType = "com.apple.product-type.bundle.ui-testing";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		84970DE21BD8DD8A00C1728A /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0700;
				ORGANIZATIONNAME = ZWF;
				TargetAttributes = {
					84970DE91BD8DD8A00C1728A = {
						CreatedOnToolsVersion = 7.0.1;
					};
					84970E021BD8DD8A00C1728A = {
						CreatedOnToolsVersion = 7.0.1;
						TestTargetID = 84970DE91BD8DD8A00C1728A;
					};
					84970E0D1BD8DD8A00C1728A = {
						CreatedOnToolsVersion = 7.0.1;
						TestTargetID = 84970DE91BD8DD8A00C1728A;
					};
				};
			};
			buildConfigurationList = 84970DE51BD8DD8A00C1728A /* Build configuration list for PBXProject "redstar" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = 84970DE11BD8DD8A00C1728A;
			productRefGroup = 84970DEB1BD8DD8A00C1728A /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				84970DE91BD8DD8A00C1728A /* redstar */,
				84970E021BD8DD8A00C1728A /* redstarTests */,
				84970E0D1BD8DD8A00C1728A /* redstarUITests */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		84970DE81BD8DD8A00C1728A /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				84970DFD1BD8DD8A00C1728A /* LaunchScreen.storyboard in Resources */,
				84AD4F3F1BF498A900BFB37C /* ranking.plist in Resources */,
				84970DFA1BD8DD8A00C1728A /* Assets.xcassets in Resources */,
				84AD4F221BF42F8E00BFB37C /* classfiy.plist in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		84970E011BD8DD8A00C1728A /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		84970E0C1BD8DD8A00C1728A /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		23955BAECB0FED236FD29A26 /* Copy Pods Resources */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Copy Pods Resources";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n";
			showEnvVarsInLog = 0;
		};
		BC0FD901EAA939388DD7E146 /* Check Pods Manifest.lock */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Check Pods Manifest.lock";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n    cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n    exit 1\nfi\n";
			showEnvVarsInLog = 0;
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		84970DE61BD8DD8A00C1728A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				840ABECC1BE1C29F006E49C5 /* RankDetailViewController.m in Sources */,
				84AB20A91BE64DC600B66F13 /* PictureTableCell.m in Sources */,
				84C582EC1BDDFB0400AF838D /* HomeFunctionCell.m in Sources */,
				84AD4F261BF4356A00BFB37C /* TaskModel.m in Sources */,
				841D24FB1BEB75CA0005CC9F /* QuestionDetailFooterView.m in Sources */,
				84CF0FA21BE9EDA900C855CE /* TakePhotoView.m in Sources */,
				841D24F81BEB473C0005CC9F /* CheckPicViewController.m in Sources */,
				8487D7721BF19A9C00E63E90 /* SearchToolBar.m in Sources */,
				84970E361BD8E09D00C1728A /* LoginViewController.m in Sources */,
				84FD8A0A1BDA01D1006E442A /* MineViewController.m in Sources */,
				848699B21BDF810900859DFE /* InspectListViewController.m in Sources */,
				84846E971BE069BC0010550A /* DateButton.m in Sources */,
				84AD4F201BF425AC00BFB37C /* InspectDetailView.m in Sources */,
				84C9574E1BDB344900083584 /* UIView+Frame.m in Sources */,
				848699B01BDF810900859DFE /* InspectListCell.m in Sources */,
				84AD4F3A1BF4844600BFB37C /* RankDetailHeaderView.m in Sources */,
				8474C5951BE78AE1007DCF19 /* QuestionDetailViewController.m in Sources */,
				84FD8A071BDA01C4006E442A /* ChartViewController.m in Sources */,
				84970DEF1BD8DD8A00C1728A /* main.m in Sources */,
				8474A01C1BE368D700315F30 /* HomeCellItem.m in Sources */,
				84D8257F1BDD2F7E00CC61F7 /* MineTableFooterView.m in Sources */,
				84F57C501BEC7AA300DDEEB1 /* AddQuestionFooterView.m in Sources */,
				84CF0F1E1BE9B40400C855CE /* InspectDetailFooterView.m in Sources */,
				8487D8091BF20FAD00E63E90 /* TaxisView.m in Sources */,
				84AD4F361BF45BEB00BFB37C /* InspectSortTableCell.m in Sources */,
				84970E281BD8DEFE00C1728A /* AppDelegate.m in Sources */,
				84AB20A51BE648EC00B66F13 /* PictureViewController.m in Sources */,
				84F57C461BEC388A00DDEEB1 /* CommentView.m in Sources */,
				84ED5DD81BF2E64300A1BB6D /* ScreenView.m in Sources */,
				8474C5831BE751A2007DCF19 /* CommonFunc.m in Sources */,
				84AD4F491BF4BC0600BFB37C /* RankDetailTableCell.m in Sources */,
				848699B31BDF810900859DFE /* InspectTaskViewController.m in Sources */,
				84AD4F321BF443E700BFB37C /* InspectDetailHeaderView.m in Sources */,
				848699B11BDF810900859DFE /* MenuButton.m in Sources */,
				84E420471BE88AE000689976 /* RootTabBarController.m in Sources */,
				840826211BE5D2400022B795 /* OnLineFooterView.m in Sources */,
				8487D80C1BF218F900E63E90 /* MenuView.m in Sources */,
				84DB06111BE33F33003E581E /* NewAnnounceCell.m in Sources */,
				8474C5921BE78A85007DCF19 /* QuestionViewController.m in Sources */,
				84AD4F291BF4360E00BFB37C /* TaskGroup.m in Sources */,
				84AD4F2F1BF4370E00BFB37C /* InspectHeaderView.m in Sources */,
				8408261E1BE5D22A0022B795 /* OnLineTableViewCell.m in Sources */,
				8408261A1BE5CEDD0022B795 /* OnLineViewController.m in Sources */,
				84F57C9C1BECA73800DDEEB1 /* StarBar.m in Sources */,
				84F57C4C1BEC785E00DDEEB1 /* AddQuestionViewController.m in Sources */,
				84CF0ED51BE9AC1400C855CE /* InspectSettleCell.m in Sources */,
				84C957551BDB54D600083584 /* AnnounceViewController.m in Sources */,
				84C9574D1BDB344900083584 /* UIBarButtonItem+Create.m in Sources */,
				84AD4F3D1BF4894D00BFB37C /* RankDetailView.m in Sources */,
				84AD4F431BF4A66F00BFB37C /* WorkModel.m in Sources */,
				84970E391BD8E0B300C1728A /* LoginView.m in Sources */,
				84DB9BC41BDCD4B600822CC4 /* CustomDropMenuView.m in Sources */,
				84CF0ED81BE9AC7E00C855CE /* InspectSettleViewController.m in Sources */,
				84846E9A1BE07CDF0010550A /* RankingListCell.m in Sources */,
				848699B61BDF812F00859DFE /* RankingListViewController.m in Sources */,
				84D825821BDD35E000CC61F7 /* HomeHeaderView.m in Sources */,
				84FD89F21BD9FC71006E442A /* HomeViewController.m in Sources */,
				84AD4F461BF4A9E800BFB37C /* RankHeadView.m in Sources */,
				84E420411BE849FC00689976 /* QuestionDescribeCell.m in Sources */,
				84DB9BC71BDCD67200822CC4 /* UIView+Extension.m in Sources */,
				8442BA5C1BDB8FDB005E5657 /* MineTableHeaderView.m in Sources */,
				8474C5991BE78BBC007DCF19 /* QuestionDetailCell.m in Sources */,
				8474C5911BE78A85007DCF19 /* QuestionListTableCell.m in Sources */,
				84F1669B1BE715E40061D350 /* ZanButton.m in Sources */,
				8419EAD41BEDC98F002635ED /* HttpClient.m in Sources */,
				842547FC1BF03977006C79C5 /* QuestionModel.m in Sources */,
				84E420441BE84A2300689976 /* QuestionCommentCell.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		84970DFF1BD8DD8A00C1728A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				84970E081BD8DD8A00C1728A /* redstarTests.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		84970E0A1BD8DD8A00C1728A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				84970E131BD8DD8A00C1728A /* redstarUITests.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		84970E051BD8DD8A00C1728A /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 84970DE91BD8DD8A00C1728A /* redstar */;
			targetProxy = 84970E041BD8DD8A00C1728A /* PBXContainerItemProxy */;
		};
		84970E101BD8DD8A00C1728A /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 84970DE91BD8DD8A00C1728A /* redstar */;
			targetProxy = 84970E0F1BD8DD8A00C1728A /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		84970DFB1BD8DD8A00C1728A /* LaunchScreen.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				84970DFC1BD8DD8A00C1728A /* Base */,
			);
			name = LaunchScreen.storyboard;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		84970E151BD8DD8A00C1728A /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
				MTL_ENABLE_DEBUG_INFO = YES;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Debug;
		};
		84970E161BD8DD8A00C1728A /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 9.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		84970E181BD8DD8A00C1728A /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 6C6D8B0ECF8531E34D0DFF6B /* Pods.debug.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				GCC_PREFIX_HEADER = "$(SRCROOT)/redstar/redstar.pch";
				INFOPLIST_FILE = redstar/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 7.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstar;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		84970E191BD8DD8A00C1728A /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 13B0DDED3E0E584D79B395CF /* Pods.release.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				GCC_PREFIX_HEADER = "$(SRCROOT)/redstar/redstar.pch";
				INFOPLIST_FILE = redstar/Info.plist;
				IPHONEOS_DEPLOYMENT_TARGET = 7.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstar;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		84970E1B1BD8DD8A00C1728A /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				INFOPLIST_FILE = redstarTests/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstarTests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/redstar.app/redstar";
			};
			name = Debug;
		};
		84970E1C1BD8DD8A00C1728A /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				INFOPLIST_FILE = redstarTests/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstarTests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/redstar.app/redstar";
			};
			name = Release;
		};
		84970E1E1BD8DD8A00C1728A /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				INFOPLIST_FILE = redstarUITests/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstarUITests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_TARGET_NAME = redstar;
				USES_XCTRUNNER = YES;
			};
			name = Debug;
		};
		84970E1F1BD8DD8A00C1728A /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				INFOPLIST_FILE = redstarUITests/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = mobi.moobox.redstarUITests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_TARGET_NAME = redstar;
				USES_XCTRUNNER = YES;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		84970DE51BD8DD8A00C1728A /* Build configuration list for PBXProject "redstar" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				84970E151BD8DD8A00C1728A /* Debug */,
				84970E161BD8DD8A00C1728A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		84970E171BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstar" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				84970E181BD8DD8A00C1728A /* Debug */,
				84970E191BD8DD8A00C1728A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		84970E1A1BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstarTests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				84970E1B1BD8DD8A00C1728A /* Debug */,
				84970E1C1BD8DD8A00C1728A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		84970E1D1BD8DD8A00C1728A /* Build configuration list for PBXNativeTarget "redstarUITests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				84970E1E1BD8DD8A00C1728A /* Debug */,
				84970E1F1BD8DD8A00C1728A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 84970DE21BD8DD8A00C1728A /* Project object */;
}