project.pbxproj 99.9 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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		02F644AE4A1F1DA210A76600 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B68285C86EF90EEAE2CCCAA8 /* Foundation.framework */; };
		02F8DF57772467E4068F9B14 /* EXPMatchers+beLessThanOrEqualTo.m in Sources */ = {isa = PBXBuildFile; fileRef = 713B5F64E856A5CC49C97974 /* EXPMatchers+beLessThanOrEqualTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		038B768B868AF65B816904C1 /* EXPMatchers+conformTo.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A849D26AF02CAFC6BB166C /* EXPMatchers+conformTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		03A8D2EE7AD362B8EFC4F49E /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 4852B11E0A97D0B514D52C56 /* MASViewAttribute.m */; };
		044623C0EFBA9B0DCB2354F8 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C94DCF3AD40F8B538A1246 /* MASCompositeConstraint.h */; };
		0652C35A54FA67EEF5EA0C3A /* EXPMatchers+beSubclassOf.m in Sources */ = {isa = PBXBuildFile; fileRef = ED3D6A78B6EFF2F08F517075 /* EXPMatchers+beSubclassOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		0D207CDF3D1A41D89801DF8D /* EXPBlockDefinedMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = B0891D6888654BFE7187A8D2 /* EXPBlockDefinedMatcher.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		10739F0C653A20D67C0E4D21 /* EXPMatchers+postNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A5346CBE79A558D0ADECC86 /* EXPMatchers+postNotification.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		138F91BA0154921CEEEFBB83 /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 264C65E5197E10217DD8ED1F /* MASLayoutConstraint.h */; };
		14BF42870BEB85B273CB0D3F /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B1987AB6F5059EB63E7AB0D /* NSLayoutConstraint+MASDebugAdditions.m */; };
		1910EE2D9B732011433E585D /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = FD0DD8D88972AF9F70AC7BB8 /* MASCompositeConstraint.m */; };
		1A2218E9DB21D6CA5445A764 /* ExpectaSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = D336E58D75C7E5CF42884EAC /* ExpectaSupport.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		1A94EC141166D8027F448217 /* Pods-Masonry iOS Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A5E901BFE0A63F61E00F31B /* Pods-Masonry iOS Tests-dummy.m */; };
		240901ADC011ED47174577A0 /* EXPMatchers+beCloseTo.h in Headers */ = {isa = PBXBuildFile; fileRef = EB459B5D34D030173758DF43 /* EXPMatchers+beCloseTo.h */; };
		2492218D203078B5E8A11639 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B68285C86EF90EEAE2CCCAA8 /* Foundation.framework */; };
		2D6CA875955F4BBE0A5D122A /* EXPMatchers+respondTo.m in Sources */ = {isa = PBXBuildFile; fileRef = 02F5E7AB6111D003674965E1 /* EXPMatchers+respondTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		2DF1B85405F3139F29489D7F /* EXPMatchers+beGreaterThanOrEqualTo.m in Sources */ = {isa = PBXBuildFile; fileRef = D297522157C1DC296CC602FA /* EXPMatchers+beGreaterThanOrEqualTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		30A54BE79A6661DC1361F623 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A0515CB9BA8E498ED05FC88 /* MASViewConstraint.m */; };
		31D0E884EC378EA5F98CDA61 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = FB0F91F25E0B3298692DB0C1 /* View+MASShorthandAdditions.h */; };
		39F1205772FA7031CEE293A9 /* EXPMatchers+beInTheRangeOf.h in Headers */ = {isa = PBXBuildFile; fileRef = F73C782C376DD43DDDE8C5D5 /* EXPMatchers+beInTheRangeOf.h */; };
		3A61148E9AE49BC50C28899F /* EXPBlockDefinedMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = A25C7D57AB43488E848698D8 /* EXPBlockDefinedMatcher.h */; };
		3BAF1CDFC71D02B82AE2AC93 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BCC75C44542F7CEABBF003 /* MASViewAttribute.h */; };
		3D01664471C4B510F7255DD6 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB63E279AF4764EC3C23B28 /* ViewController+MASAdditions.m */; };
		3F7176F7A46D568632BAB44A /* EXPMatchers+beIdenticalTo.h in Headers */ = {isa = PBXBuildFile; fileRef = 640836119626B9D884379853 /* EXPMatchers+beIdenticalTo.h */; };
		4126D25976811D5AA814AC78 /* EXPMatcherHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = A5454307AEF27160F9616F35 /* EXPMatcherHelpers.h */; };
		467A065E3E4FBF9CCAEFEF4B /* EXPMatchers+raiseWithReason.m in Sources */ = {isa = PBXBuildFile; fileRef = AA37379A0FBF6A1AAED94CE1 /* EXPMatchers+raiseWithReason.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		4C188A465DC664DD43C004B4 /* EXPMatchers+beKindOf.m in Sources */ = {isa = PBXBuildFile; fileRef = 297E7DAFA32D90A72C08F222 /* EXPMatchers+beKindOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		4C7ED3730BB7BA806C3BA660 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3534D8FD53942413F475F2 /* MASViewConstraint.h */; };
		4D5CBFA0F6D1BE81BE715859 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 774AF5E88EB60D96F23E2FF8 /* NSArray+MASAdditions.h */; };
		4E30AC55949C10155EEE2568 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7F054524ED88030A3B65E57 /* UIKit.framework */; };
		4EFF7C9AB26363BA3CDC9506 /* EXPDoubleTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 58AF5C04B3F124A3CDBD4761 /* EXPDoubleTuple.h */; };
		4F3446F3CB09A05F0EC1D0D4 /* EXPMatchers+respondTo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D153D6C17F6C007428430D3 /* EXPMatchers+respondTo.h */; };
		4F9B9E4DEA3491BC2B909D53 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9486D1800768A0EDE1CCF029 /* MASConstraint+Private.h */; };
		4FA2C1041C1535A34EF1DB21 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B2C08757CBC763C8020B55 /* View+MASAdditions.h */; };
		4FBCA8029BA013578B4DC357 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = D4FE36A9E53FC9D1E0F2822F /* NSLayoutConstraint+MASDebugAdditions.h */; };
		5297CB30AF8CDC10550A59C7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B68285C86EF90EEAE2CCCAA8 /* Foundation.framework */; };
		536FB753272B98E739A348BD /* EXPMatchers+haveCountOf.h in Headers */ = {isa = PBXBuildFile; fileRef = 761447D940B654D298D26952 /* EXPMatchers+haveCountOf.h */; };
		5478CA6CC028899A7BF8B2A4 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3FD696C7E2B36831DB9C0DC1 /* XCTest.framework */; };
		5505DDE20B6E9B7301735497 /* EXPMatchers+contain.m in Sources */ = {isa = PBXBuildFile; fileRef = B53EF7274BCBC6003BE89772 /* EXPMatchers+contain.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		55B6490CA293C4EA15C84ADA /* EXPMatchers+beLessThan.h in Headers */ = {isa = PBXBuildFile; fileRef = C8CFF39F4F23184580C72135 /* EXPMatchers+beLessThan.h */; };
		56AD11B9042AD087366025E6 /* EXPMatchers+endWith.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B113BE09FD5ABC26A253BD5 /* EXPMatchers+endWith.h */; };
		57664A66F58670007FCABFCA /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B3FB865C3AD03C7548D84D /* MASConstraint.h */; };
		580DA3E7270D919DCEA41E5D /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A0515CB9BA8E498ED05FC88 /* MASViewConstraint.m */; };
		5A30D552B086FB03253D957C /* EXPMatchers+beTruthy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AE497AFB9475FD25767A07A /* EXPMatchers+beTruthy.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		5A3542B5C77771E6AF8F5804 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 4852B11E0A97D0B514D52C56 /* MASViewAttribute.m */; };
		5A8FDAF6181F4FE8B39F22B0 /* EXPUnsupportedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 255573F7BA6883F508AFC016 /* EXPUnsupportedObject.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		5EBF6AFF3596D4D5934DFB8E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B68285C86EF90EEAE2CCCAA8 /* Foundation.framework */; };
		5FFFB1C1B2D229D593A942F7 /* EXPDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E0EEFBF70FAF822157388E2 /* EXPDefines.h */; };
		61E9825EE7E8225A91E763DF /* EXPMatchers+beSupersetOf.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6CE6CD20CD95E8D05BD7A3 /* EXPMatchers+beSupersetOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		622EAD52DB26F027A11ABFD3 /* EXPMatchers+match.h in Headers */ = {isa = PBXBuildFile; fileRef = B12AE9AA15FB9E47949169AB /* EXPMatchers+match.h */; };
		64E41C1C0AC751B3819C81A2 /* ExpectaObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 655EB9AD15092DD3620691EC /* ExpectaObject.h */; };
		655C95F65A8F7C66E79D011E /* EXPMatchers+beginWith.m in Sources */ = {isa = PBXBuildFile; fileRef = 400D7551278767CAE24BD9D9 /* EXPMatchers+beginWith.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		6742BF4B500E5E40997450B0 /* NSValue+Expecta.m in Sources */ = {isa = PBXBuildFile; fileRef = 3899636CE8CCC0A15552B8F7 /* NSValue+Expecta.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		689A2C2B7160FFC09573C0C5 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B3FB865C3AD03C7548D84D /* MASConstraint.h */; };
		698E299216C412113B0D9099 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = FB0F91F25E0B3298692DB0C1 /* View+MASShorthandAdditions.h */; };
		6C1CE5D492F0A09CC9946A3E /* EXPMatchers+endWith.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A20E8A13D5B2940498E3FF /* EXPMatchers+endWith.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		728073836A80E69B329D9333 /* EXPMatchers+beTruthy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ECD1A2FB0CBDBC9DC488DE0 /* EXPMatchers+beTruthy.h */; };
		75BF62B575CFF942AC355B3B /* EXPMatchers+beLessThan.m in Sources */ = {isa = PBXBuildFile; fileRef = F958FE7A78DC968A68BD2052 /* EXPMatchers+beLessThan.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		76C9A7129C563C84771E3CB4 /* EXPMatchers+beNil.h in Headers */ = {isa = PBXBuildFile; fileRef = B22FA2E1A36F0D76EF0B91B0 /* EXPMatchers+beNil.h */; };
		7BFE1D58752D4D605E8D00FF /* Pods-MasonryTestsLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17C8230715E980FD66DC1EE4 /* Pods-MasonryTestsLoader-dummy.m */; };
		7D8167C8EF9EE17F953D74A4 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B1987AB6F5059EB63E7AB0D /* NSLayoutConstraint+MASDebugAdditions.m */; };
		7E72A59B430BEDBB5C4B8C44 /* EXPMatchers+contain.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CBAE29D8199AA9AB8E3855 /* EXPMatchers+contain.h */; };
		7F93A16A4D06EA0D255A2D1C /* EXPMatchers+beNil.m in Sources */ = {isa = PBXBuildFile; fileRef = FEB30837ADCE88E58B42D0CF /* EXPMatchers+beNil.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		88DB490AA818FC1BAA3B489F /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 264C65E5197E10217DD8ED1F /* MASLayoutConstraint.h */; };
		8BF6E2C6235DE50859F316F0 /* EXPMatchers+beFalsy.h in Headers */ = {isa = PBXBuildFile; fileRef = E48021D7998F95253DD0CA01 /* EXPMatchers+beFalsy.h */; };
		8C839D717A6E797F33FDF6DE /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E5063D3B4D9C3BC7C71D3A00 /* View+MASAdditions.m */; };
		8E169452A08ACAE22EDA8326 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9486D1800768A0EDE1CCF029 /* MASConstraint+Private.h */; };
		904D0CF0801E18C5995430BA /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = FB76F2255A05DA3C6231CF13 /* MASConstraintMaker.m */; };
		90815905AA2C28FAFFDB75B2 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = A397516C25B050CAE35656E7 /* NSArray+MASShorthandAdditions.h */; };
		916D3F9C89CDAEE9FD20E195 /* EXPMatchers+raise.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8D6D37A3B612DC15E39FB3 /* EXPMatchers+raise.h */; };
		9304EC754316344F664B2C7A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7F054524ED88030A3B65E57 /* UIKit.framework */; };
		94D960B9A90104E50575D503 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AC527CAC0BAA2D6E46FB570 /* NSArray+MASAdditions.m */; };
		95ABA6BEDE6F8C16C6A7C560 /* EXPMatchers+beKindOf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE95CF7AE6D860826E250A7 /* EXPMatchers+beKindOf.h */; };
		9C2648FA88F86B2C8FB0607C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B68285C86EF90EEAE2CCCAA8 /* Foundation.framework */; };
		9FB4D98A6F2300486C352584 /* EXPMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 97C2967A2DBAE1B0158F1B2F /* EXPMatcher.h */; };
		A0A3804A65C2B10A7BBF3C19 /* EXPDoubleTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = 3254A1042B50DBD3B2BF119F /* EXPDoubleTuple.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		A26C2B81E381E1EB87448D1E /* EXPMatchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E43B576435829276C885914 /* EXPMatchers.h */; };
		A28BF9248BFDD9D76854EB7E /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E5063D3B4D9C3BC7C71D3A00 /* View+MASAdditions.m */; };
		A91623ED24329B6E98F00553 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = FB76F2255A05DA3C6231CF13 /* MASConstraintMaker.m */; };
		A926E958D9BD3C618E3A44B0 /* EXPMatchers+haveCountOf.m in Sources */ = {isa = PBXBuildFile; fileRef = 48B279251F455CB10DDE1E77 /* EXPMatchers+haveCountOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		AA3A948D0F76F64C0338617A /* EXPMatchers+beIdenticalTo.m in Sources */ = {isa = PBXBuildFile; fileRef = C52AA4F05A0054DE5F88E065 /* EXPMatchers+beIdenticalTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		AACE0DA71E0FB9C430159042 /* EXPExpect.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D42288B829F00D2FFD3EFA6 /* EXPExpect.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		ABB4A841252B184FFDA33BB3 /* EXPMatchers+equal.m in Sources */ = {isa = PBXBuildFile; fileRef = A45D691FDEEFB089FA2F053A /* EXPMatchers+equal.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		B40BA01A2B1B40BD3165B7AC /* EXPMatchers+postNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BCED18BB580FC5A9691E108 /* EXPMatchers+postNotification.h */; };
		B471E77C685943CAD36C8AEF /* EXPMatchers+beCloseTo.m in Sources */ = {isa = PBXBuildFile; fileRef = CA5C2B40184A6CE48B77F034 /* EXPMatchers+beCloseTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		B59AE90FD160697C683FFAD0 /* EXPMatchers+beGreaterThan.h in Headers */ = {isa = PBXBuildFile; fileRef = 29E992F2D0398067483545CA /* EXPMatchers+beGreaterThan.h */; };
		BA01DC1B52ED609490668CF2 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AC527CAC0BAA2D6E46FB570 /* NSArray+MASAdditions.m */; };
		BA39A6A641046ABF18ED561F /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = EAF7C06B26F7C85996DBCB52 /* MASLayoutConstraint.m */; };
		BBCDCAACFE9E1DD98E2D2528 /* EXPMatchers+conformTo.h in Headers */ = {isa = PBXBuildFile; fileRef = 863B0A6B0B352A8DE6A41DA7 /* EXPMatchers+conformTo.h */; };
		BC882C6C6DD4D1009D0A4CC0 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F76D402514F759603B60FE /* Masonry.h */; };
		BE4D684E405BA3D857E43B03 /* EXPMatchers+beInTheRangeOf.m in Sources */ = {isa = PBXBuildFile; fileRef = 00B007A4BA109771E02FD1AB /* EXPMatchers+beInTheRangeOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		BF804E3E2D92D7476DE2C9D2 /* EXPUnsupportedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4D954937DC2A27A4C34ED9 /* EXPUnsupportedObject.h */; };
		BFAB4ED39FB834E3F7E599D1 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = CAF4AB4A573EE399A6D32C2A /* MASConstraint.m */; };
		C31B6FDCDAB3195D7A6AB051 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB63E279AF4764EC3C23B28 /* ViewController+MASAdditions.m */; };
		C4E33445F25CA4C9C6B55CCF /* Pods-MasonryTestsLoader-Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CF798A4E38488E64E392990 /* Pods-MasonryTestsLoader-Masonry-dummy.m */; };
		C6F87F7E81F877A972E76D21 /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = ED3A6352036BFB49ED162CAD /* MASConstraintMaker.h */; };
		C8091C1EC0B383030957016F /* EXPMatchers+beInstanceOf.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C097CA49DAFF4E7330D5F3 /* EXPMatchers+beInstanceOf.h */; };
		C85C85158E4EBE3A9BCCE91A /* ExpectaSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A14A55EBCB6CBDF6914C55A /* ExpectaSupport.h */; };
		CD89AB41E5B6E2C606F94661 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3534D8FD53942413F475F2 /* MASViewConstraint.h */; };
		CEEBD8C5C3F44ABC724938AF /* EXPFloatTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = D71D223CA522539703C624B7 /* EXPFloatTuple.h */; };
		CF0030941F7FC5AC0F6F8DCF /* EXPMatchers+equal.h in Headers */ = {isa = PBXBuildFile; fileRef = AB295E506E014DEAEB5DE736 /* EXPMatchers+equal.h */; };
		D07D9D47DC42FA5432E29A72 /* Expecta.h in Headers */ = {isa = PBXBuildFile; fileRef = B8678B355B68061CA20E2CA2 /* Expecta.h */; };
		D0C0578D185ADA77E99FD404 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F76D402514F759603B60FE /* Masonry.h */; };
		D21B6FF384F05EC24A27C507 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C94DCF3AD40F8B538A1246 /* MASCompositeConstraint.h */; };
		D22C1D9B0C4D2705A0A312C5 /* EXPMatchers+beLessThanOrEqualTo.h in Headers */ = {isa = PBXBuildFile; fileRef = EB17AFE5CD508D0536600F94 /* EXPMatchers+beLessThanOrEqualTo.h */; };
		D2819A860F6DDD69C6B87ACE /* Pods-Masonry iOS Examples-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE7BFD517087021D512A080D /* Pods-Masonry iOS Examples-dummy.m */; };
		D290FE974C73BF150127E8B6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B68285C86EF90EEAE2CCCAA8 /* Foundation.framework */; };
		D4D25C64CF816F54B2100FF5 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA87F1AE827D198AC91DBCB /* ViewController+MASAdditions.h */; };
		D63CBC3A67626F86466BE87B /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA87F1AE827D198AC91DBCB /* ViewController+MASAdditions.h */; };
		D6F84883B2D307963F676974 /* EXPMatchers+match.m in Sources */ = {isa = PBXBuildFile; fileRef = 5735F3AC3FD9FB7C7CD573D9 /* EXPMatchers+match.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		DABA7ACAAA6F48F209B8C010 /* EXPMatchers+beInstanceOf.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D0E4001A237C9109E22D45A /* EXPMatchers+beInstanceOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		DBC94B42D56201A64D06C7AA /* EXPMatchers+beGreaterThanOrEqualTo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CE0C28CC734CD17287CFA66 /* EXPMatchers+beGreaterThanOrEqualTo.h */; };
		DC39E68928A9E3BF9166B094 /* EXPMatchers+raiseWithReason.h in Headers */ = {isa = PBXBuildFile; fileRef = 78BF07FBA3C5C8B0EF599A06 /* EXPMatchers+raiseWithReason.h */; };
		DD14C48B687D9C7C2A275CB9 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = FF53673C5F27EAAAAE6A5CFA /* MASUtilities.h */; };
		DD2C07F044D49F51CE43AADB /* EXPMatchers+beGreaterThan.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DEFD14EA168A173146A853B /* EXPMatchers+beGreaterThan.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		DD85A683CC70192EE37CB9A4 /* EXPFloatTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = 47028905B1496A2D70A45F81 /* EXPFloatTuple.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		E0156B50E62E1E6099182457 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = FF53673C5F27EAAAAE6A5CFA /* MASUtilities.h */; };
		E0370C20824977124857E13E /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = D4FE36A9E53FC9D1E0F2822F /* NSLayoutConstraint+MASDebugAdditions.h */; };
		E0C8C48B2FDD970EE5A18542 /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = ED3A6352036BFB49ED162CAD /* MASConstraintMaker.h */; };
		E3570BA42DE394DD00D7F732 /* EXPMatcherHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = D264D7C760647E00E085C5E3 /* EXPMatcherHelpers.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		E7041748678B425A995A9A96 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = A397516C25B050CAE35656E7 /* NSArray+MASShorthandAdditions.h */; };
		E8EE16DF0614C05C7D284CAD /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = EAF7C06B26F7C85996DBCB52 /* MASLayoutConstraint.m */; };
		E99A0B8DB144F981A9A004BB /* EXPExpect.h in Headers */ = {isa = PBXBuildFile; fileRef = 15192F5DBCABF5C5DB1B641F /* EXPExpect.h */; };
		EB1B15A66134ED662E8351AD /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BCC75C44542F7CEABBF003 /* MASViewAttribute.h */; };
		EB1DD09D8D1409696C163B5F /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 774AF5E88EB60D96F23E2FF8 /* NSArray+MASAdditions.h */; };
		EF6A7B10C9AAA0AE6BF0DDA3 /* NSValue+Expecta.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C213AC0F652B3B8715CF1FC /* NSValue+Expecta.h */; };
		F2554B537F1C2CE428E988D8 /* EXPMatchers+beFalsy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18743EBB4B3906DC4C68CF68 /* EXPMatchers+beFalsy.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		F2F94C54EFFEED61DE91F88F /* Pods-Masonry iOS Tests-Expecta-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A050971A2440A4244F9FBEFF /* Pods-Masonry iOS Tests-Expecta-dummy.m */; };
		F5E2188072CEB8142EAE4AAE /* ExpectaObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA421B4D542CD9394851844 /* ExpectaObject.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		F79E429379779F8CD9DCE6E7 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B2C08757CBC763C8020B55 /* View+MASAdditions.h */; };
		F801C9D4B75FCB8F01FF0B97 /* EXPMatchers+raise.m in Sources */ = {isa = PBXBuildFile; fileRef = B04735965FDCC092956E1874 /* EXPMatchers+raise.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		F9B367883735C115D738DF32 /* EXPMatchers+beSubclassOf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EC96A232B780FB093EEBBED /* EXPMatchers+beSubclassOf.h */; };
		FBBCC85FDEE44BE06801F184 /* EXPMatchers+beSupersetOf.h in Headers */ = {isa = PBXBuildFile; fileRef = 631891B971E0AFC2BB896699 /* EXPMatchers+beSupersetOf.h */; };
		FC1ACC76810797BAB52423EC /* Pods-Masonry iOS Examples-Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3058B579B56590F0C890FD42 /* Pods-Masonry iOS Examples-Masonry-dummy.m */; };
		FC3B66371F006A7D3BCFB524 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = FD0DD8D88972AF9F70AC7BB8 /* MASCompositeConstraint.m */; };
		FE2125B83CC37C21A300A451 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = CAF4AB4A573EE399A6D32C2A /* MASConstraint.m */; };
		FE35D71FF8E5C54F4449EF85 /* EXPMatchers+beginWith.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B93EFB6D72AF9C558D8665 /* EXPMatchers+beginWith.h */; };
		FEC3658A2515BBE243A7674E /* NSObject+Expecta.h in Headers */ = {isa = PBXBuildFile; fileRef = A5414ED4FC0B9128F64C166B /* NSObject+Expecta.h */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		67D7D19AF53EE83BFC7C593D /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 6586C0F29D9181D0C9E54B9E /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = E277628BD9774F96B09FE373;
			remoteInfo = "Pods-Masonry iOS Examples-Masonry";
		};
		740D8CD6F9D20C68B56C21AE /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 6586C0F29D9181D0C9E54B9E /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 7C779FF1ABDAF25168139DA1;
			remoteInfo = "Pods-MasonryTestsLoader-Masonry";
		};
		A00FA6673ADC47EA2B66D5F5 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 6586C0F29D9181D0C9E54B9E /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = CA8E6CA5AC9FC867A335BA08;
			remoteInfo = "Pods-Masonry iOS Tests-Expecta";
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		002D26513105C499FB3BAE6F /* Pods-Masonry iOS Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Masonry iOS Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
		00B007A4BA109771E02FD1AB /* EXPMatchers+beInTheRangeOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beInTheRangeOf.m"; path = "Expecta/Matchers/EXPMatchers+beInTheRangeOf.m"; sourceTree = "<group>"; };
		02F5E7AB6111D003674965E1 /* EXPMatchers+respondTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+respondTo.m"; path = "Expecta/Matchers/EXPMatchers+respondTo.m"; sourceTree = "<group>"; };
		051C2518E08F3334D26D7085 /* Pods-Masonry iOS Tests-Expecta-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Masonry iOS Tests-Expecta-Private.xcconfig"; sourceTree = "<group>"; };
		07A7A82BFFD78D4319CAB9B0 /* Pods-MasonryTestsLoader-Masonry-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MasonryTestsLoader-Masonry-Private.xcconfig"; path = "../Pods-MasonryTestsLoader-Masonry/Pods-MasonryTestsLoader-Masonry-Private.xcconfig"; sourceTree = "<group>"; };
		0CEBA557793B834B1F9779B6 /* Pods-Masonry iOS Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Masonry iOS Tests-acknowledgements.plist"; sourceTree = "<group>"; };
		14E2971D2E70CE7D8A79471C /* Pods-Masonry iOS Examples.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Masonry iOS Examples.release.xcconfig"; sourceTree = "<group>"; };
		15192F5DBCABF5C5DB1B641F /* EXPExpect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPExpect.h; path = Expecta/EXPExpect.h; sourceTree = "<group>"; };
		166D2E2A332D45B8C63D3109 /* Pods-Masonry iOS Examples-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Masonry iOS Examples-acknowledgements.markdown"; sourceTree = "<group>"; };
		17C8230715E980FD66DC1EE4 /* Pods-MasonryTestsLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-MasonryTestsLoader-dummy.m"; sourceTree = "<group>"; };
		18743EBB4B3906DC4C68CF68 /* EXPMatchers+beFalsy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beFalsy.m"; path = "Expecta/Matchers/EXPMatchers+beFalsy.m"; sourceTree = "<group>"; };
		19BCC75C44542F7CEABBF003 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MASViewAttribute.h; sourceTree = "<group>"; };
		1A4C887472A3FC939C90F9A9 /* Pods-Masonry iOS Examples-Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Masonry iOS Examples-Masonry-prefix.pch"; sourceTree = "<group>"; };
		1AA421B4D542CD9394851844 /* ExpectaObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ExpectaObject.m; path = Expecta/ExpectaObject.m; sourceTree = "<group>"; };
		1D3534D8FD53942413F475F2 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MASViewConstraint.h; sourceTree = "<group>"; };
		1EC96A232B780FB093EEBBED /* EXPMatchers+beSubclassOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beSubclassOf.h"; path = "Expecta/Matchers/EXPMatchers+beSubclassOf.h"; sourceTree = "<group>"; };
		1FE95CF7AE6D860826E250A7 /* EXPMatchers+beKindOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beKindOf.h"; path = "Expecta/Matchers/EXPMatchers+beKindOf.h"; sourceTree = "<group>"; };
		21B5402D59B74B19CCFDC491 /* Pods-MasonryTestsLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MasonryTestsLoader.release.xcconfig"; sourceTree = "<group>"; };
		24CBAE29D8199AA9AB8E3855 /* EXPMatchers+contain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+contain.h"; path = "Expecta/Matchers/EXPMatchers+contain.h"; sourceTree = "<group>"; };
		255573F7BA6883F508AFC016 /* EXPUnsupportedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPUnsupportedObject.m; path = Expecta/EXPUnsupportedObject.m; sourceTree = "<group>"; };
		264C65E5197E10217DD8ED1F /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MASLayoutConstraint.h; sourceTree = "<group>"; };
		26B470853F2DBD17C40EE576 /* Pods-Masonry iOS Examples-Masonry-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Masonry iOS Examples-Masonry-Private.xcconfig"; sourceTree = "<group>"; };
		297E7DAFA32D90A72C08F222 /* EXPMatchers+beKindOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beKindOf.m"; path = "Expecta/Matchers/EXPMatchers+beKindOf.m"; sourceTree = "<group>"; };
		29E992F2D0398067483545CA /* EXPMatchers+beGreaterThan.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beGreaterThan.h"; path = "Expecta/Matchers/EXPMatchers+beGreaterThan.h"; sourceTree = "<group>"; };
		2AE497AFB9475FD25767A07A /* EXPMatchers+beTruthy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beTruthy.m"; path = "Expecta/Matchers/EXPMatchers+beTruthy.m"; sourceTree = "<group>"; };
		2B4D954937DC2A27A4C34ED9 /* EXPUnsupportedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPUnsupportedObject.h; path = Expecta/EXPUnsupportedObject.h; sourceTree = "<group>"; };
		2BADFA39C53634B7408D8AD2 /* Pods-Masonry iOS Examples-Masonry.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Masonry iOS Examples-Masonry.xcconfig"; sourceTree = "<group>"; };
		2C8E1B8DA0E006A888A4B200 /* Pods-MasonryTestsLoader-Masonry.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MasonryTestsLoader-Masonry.xcconfig"; path = "../Pods-MasonryTestsLoader-Masonry/Pods-MasonryTestsLoader-Masonry.xcconfig"; sourceTree = "<group>"; };
		2CF798A4E38488E64E392990 /* Pods-MasonryTestsLoader-Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Pods-MasonryTestsLoader-Masonry-dummy.m"; path = "../Pods-MasonryTestsLoader-Masonry/Pods-MasonryTestsLoader-Masonry-dummy.m"; sourceTree = "<group>"; };
		2E0EEFBF70FAF822157388E2 /* EXPDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPDefines.h; path = Expecta/EXPDefines.h; sourceTree = "<group>"; };
		3058B579B56590F0C890FD42 /* Pods-Masonry iOS Examples-Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Masonry iOS Examples-Masonry-dummy.m"; sourceTree = "<group>"; };
		3254A1042B50DBD3B2BF119F /* EXPDoubleTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPDoubleTuple.m; path = Expecta/EXPDoubleTuple.m; sourceTree = "<group>"; };
		3899636CE8CCC0A15552B8F7 /* NSValue+Expecta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSValue+Expecta.m"; path = "Expecta/NSValue+Expecta.m"; sourceTree = "<group>"; };
		38B2C08757CBC763C8020B55 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "View+MASAdditions.h"; sourceTree = "<group>"; };
		3AC527CAC0BAA2D6E46FB570 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSArray+MASAdditions.m"; sourceTree = "<group>"; };
		3B113BE09FD5ABC26A253BD5 /* EXPMatchers+endWith.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+endWith.h"; path = "Expecta/Matchers/EXPMatchers+endWith.h"; sourceTree = "<group>"; };
		3BCED18BB580FC5A9691E108 /* EXPMatchers+postNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+postNotification.h"; path = "Expecta/Matchers/EXPMatchers+postNotification.h"; sourceTree = "<group>"; };
		3C213AC0F652B3B8715CF1FC /* NSValue+Expecta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSValue+Expecta.h"; path = "Expecta/NSValue+Expecta.h"; sourceTree = "<group>"; };
		3FD696C7E2B36831DB9C0DC1 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
		400D7551278767CAE24BD9D9 /* EXPMatchers+beginWith.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beginWith.m"; path = "Expecta/Matchers/EXPMatchers+beginWith.m"; sourceTree = "<group>"; };
		43C097CA49DAFF4E7330D5F3 /* EXPMatchers+beInstanceOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beInstanceOf.h"; path = "Expecta/Matchers/EXPMatchers+beInstanceOf.h"; sourceTree = "<group>"; };
		47028905B1496A2D70A45F81 /* EXPFloatTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPFloatTuple.m; path = Expecta/EXPFloatTuple.m; sourceTree = "<group>"; };
		476395AFEB2E68FCCAF63B41 /* Pods-Masonry iOS Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Masonry iOS Tests.release.xcconfig"; sourceTree = "<group>"; };
		4852B11E0A97D0B514D52C56 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MASViewAttribute.m; sourceTree = "<group>"; };
		48B279251F455CB10DDE1E77 /* EXPMatchers+haveCountOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+haveCountOf.m"; path = "Expecta/Matchers/EXPMatchers+haveCountOf.m"; sourceTree = "<group>"; };
		4A14A55EBCB6CBDF6914C55A /* ExpectaSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExpectaSupport.h; path = Expecta/ExpectaSupport.h; sourceTree = "<group>"; };
		4A5E901BFE0A63F61E00F31B /* Pods-Masonry iOS Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Masonry iOS Tests-dummy.m"; sourceTree = "<group>"; };
		4B8D6D37A3B612DC15E39FB3 /* EXPMatchers+raise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+raise.h"; path = "Expecta/Matchers/EXPMatchers+raise.h"; sourceTree = "<group>"; };
		5735F3AC3FD9FB7C7CD573D9 /* EXPMatchers+match.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+match.m"; path = "Expecta/Matchers/EXPMatchers+match.m"; sourceTree = "<group>"; };
		58AF5C04B3F124A3CDBD4761 /* EXPDoubleTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPDoubleTuple.h; path = Expecta/EXPDoubleTuple.h; sourceTree = "<group>"; };
		59E6A7857125C864062CAAB2 /* Pods-Masonry iOS Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Masonry iOS Tests.debug.xcconfig"; sourceTree = "<group>"; };
		5A0515CB9BA8E498ED05FC88 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MASViewConstraint.m; sourceTree = "<group>"; };
		5DEFD14EA168A173146A853B /* EXPMatchers+beGreaterThan.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beGreaterThan.m"; path = "Expecta/Matchers/EXPMatchers+beGreaterThan.m"; sourceTree = "<group>"; };
		631891B971E0AFC2BB896699 /* EXPMatchers+beSupersetOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beSupersetOf.h"; path = "Expecta/Matchers/EXPMatchers+beSupersetOf.h"; sourceTree = "<group>"; };
		640836119626B9D884379853 /* EXPMatchers+beIdenticalTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beIdenticalTo.h"; path = "Expecta/Matchers/EXPMatchers+beIdenticalTo.h"; sourceTree = "<group>"; };
		655EB9AD15092DD3620691EC /* ExpectaObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExpectaObject.h; path = Expecta/ExpectaObject.h; sourceTree = "<group>"; };
		6CA87F1AE827D198AC91DBCB /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ViewController+MASAdditions.h"; sourceTree = "<group>"; };
		6D0E4001A237C9109E22D45A /* EXPMatchers+beInstanceOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beInstanceOf.m"; path = "Expecta/Matchers/EXPMatchers+beInstanceOf.m"; sourceTree = "<group>"; };
		6D153D6C17F6C007428430D3 /* EXPMatchers+respondTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+respondTo.h"; path = "Expecta/Matchers/EXPMatchers+respondTo.h"; sourceTree = "<group>"; };
		6E52FFF17E3E4A453B1396E1 /* Pods-MasonryTestsLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MasonryTestsLoader.debug.xcconfig"; sourceTree = "<group>"; };
		713B5F64E856A5CC49C97974 /* EXPMatchers+beLessThanOrEqualTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beLessThanOrEqualTo.m"; path = "Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m"; sourceTree = "<group>"; };
		7227E6971C978030E37230EC /* Pods-Masonry iOS Tests-Expecta-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Masonry iOS Tests-Expecta-prefix.pch"; sourceTree = "<group>"; };
		7294AB8E98F0E6BF4A723170 /* libPods-Masonry iOS Tests-Expecta.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Masonry iOS Tests-Expecta.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		74B93EFB6D72AF9C558D8665 /* EXPMatchers+beginWith.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beginWith.h"; path = "Expecta/Matchers/EXPMatchers+beginWith.h"; sourceTree = "<group>"; };
		761447D940B654D298D26952 /* EXPMatchers+haveCountOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+haveCountOf.h"; path = "Expecta/Matchers/EXPMatchers+haveCountOf.h"; sourceTree = "<group>"; };
		774AF5E88EB60D96F23E2FF8 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASAdditions.h"; sourceTree = "<group>"; };
		78A20E8A13D5B2940498E3FF /* EXPMatchers+endWith.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+endWith.m"; path = "Expecta/Matchers/EXPMatchers+endWith.m"; sourceTree = "<group>"; };
		78BF07FBA3C5C8B0EF599A06 /* EXPMatchers+raiseWithReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+raiseWithReason.h"; path = "Expecta/Matchers/EXPMatchers+raiseWithReason.h"; sourceTree = "<group>"; };
		79C5AA9B140BC63588753F9F /* libPods-Masonry iOS Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Masonry iOS Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		7A5346CBE79A558D0ADECC86 /* EXPMatchers+postNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+postNotification.m"; path = "Expecta/Matchers/EXPMatchers+postNotification.m"; sourceTree = "<group>"; };
		83D5CDBCEF45C6A06352A31F /* Pods-Masonry iOS Tests-Expecta.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Masonry iOS Tests-Expecta.xcconfig"; sourceTree = "<group>"; };
		841B8518DF82A9F5D2915126 /* Pods-MasonryTestsLoader-Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-MasonryTestsLoader-Masonry-prefix.pch"; path = "../Pods-MasonryTestsLoader-Masonry/Pods-MasonryTestsLoader-Masonry-prefix.pch"; sourceTree = "<group>"; };
		863B0A6B0B352A8DE6A41DA7 /* EXPMatchers+conformTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+conformTo.h"; path = "Expecta/Matchers/EXPMatchers+conformTo.h"; sourceTree = "<group>"; };
		889A935DED408579F264EE4E /* Pods-MasonryTestsLoader-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-MasonryTestsLoader-acknowledgements.markdown"; sourceTree = "<group>"; };
		88F76D402514F759603B60FE /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Masonry.h; sourceTree = "<group>"; };
		8AB63E279AF4764EC3C23B28 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ViewController+MASAdditions.m"; sourceTree = "<group>"; };
		8B1987AB6F5059EB63E7AB0D /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
		8CE0C28CC734CD17287CFA66 /* EXPMatchers+beGreaterThanOrEqualTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beGreaterThanOrEqualTo.h"; path = "Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h"; sourceTree = "<group>"; };
		8D42288B829F00D2FFD3EFA6 /* EXPExpect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPExpect.m; path = Expecta/EXPExpect.m; sourceTree = "<group>"; };
		9486D1800768A0EDE1CCF029 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MASConstraint+Private.h"; sourceTree = "<group>"; };
		97C2967A2DBAE1B0158F1B2F /* EXPMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPMatcher.h; path = Expecta/EXPMatcher.h; sourceTree = "<group>"; };
		9D78FAF69F5F97F456E450DE /* libPods-MasonryTestsLoader-Masonry.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MasonryTestsLoader-Masonry.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		9E43B576435829276C885914 /* EXPMatchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPMatchers.h; path = Expecta/Matchers/EXPMatchers.h; sourceTree = "<group>"; };
		9ECD1A2FB0CBDBC9DC488DE0 /* EXPMatchers+beTruthy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beTruthy.h"; path = "Expecta/Matchers/EXPMatchers+beTruthy.h"; sourceTree = "<group>"; };
		A050971A2440A4244F9FBEFF /* Pods-Masonry iOS Tests-Expecta-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Masonry iOS Tests-Expecta-dummy.m"; sourceTree = "<group>"; };
		A25C7D57AB43488E848698D8 /* EXPBlockDefinedMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPBlockDefinedMatcher.h; path = Expecta/EXPBlockDefinedMatcher.h; sourceTree = "<group>"; };
		A397516C25B050CAE35656E7 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
		A45D691FDEEFB089FA2F053A /* EXPMatchers+equal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+equal.m"; path = "Expecta/Matchers/EXPMatchers+equal.m"; sourceTree = "<group>"; };
		A5414ED4FC0B9128F64C166B /* NSObject+Expecta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+Expecta.h"; path = "Expecta/NSObject+Expecta.h"; sourceTree = "<group>"; };
		A5454307AEF27160F9616F35 /* EXPMatcherHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPMatcherHelpers.h; path = Expecta/Matchers/EXPMatcherHelpers.h; sourceTree = "<group>"; };
		A7F054524ED88030A3B65E57 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
		AA37379A0FBF6A1AAED94CE1 /* EXPMatchers+raiseWithReason.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+raiseWithReason.m"; path = "Expecta/Matchers/EXPMatchers+raiseWithReason.m"; sourceTree = "<group>"; };
		AB295E506E014DEAEB5DE736 /* EXPMatchers+equal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+equal.h"; path = "Expecta/Matchers/EXPMatchers+equal.h"; sourceTree = "<group>"; };
		AE7BFD517087021D512A080D /* Pods-Masonry iOS Examples-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Masonry iOS Examples-dummy.m"; sourceTree = "<group>"; };
		B04735965FDCC092956E1874 /* EXPMatchers+raise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+raise.m"; path = "Expecta/Matchers/EXPMatchers+raise.m"; sourceTree = "<group>"; };
		B0891D6888654BFE7187A8D2 /* EXPBlockDefinedMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPBlockDefinedMatcher.m; path = Expecta/EXPBlockDefinedMatcher.m; sourceTree = "<group>"; };
		B12AE9AA15FB9E47949169AB /* EXPMatchers+match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+match.h"; path = "Expecta/Matchers/EXPMatchers+match.h"; sourceTree = "<group>"; };
		B22FA2E1A36F0D76EF0B91B0 /* EXPMatchers+beNil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beNil.h"; path = "Expecta/Matchers/EXPMatchers+beNil.h"; sourceTree = "<group>"; };
		B53EF7274BCBC6003BE89772 /* EXPMatchers+contain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+contain.m"; path = "Expecta/Matchers/EXPMatchers+contain.m"; sourceTree = "<group>"; };
		B68285C86EF90EEAE2CCCAA8 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
		B8678B355B68061CA20E2CA2 /* Expecta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expecta.h; path = Expecta/Expecta.h; sourceTree = "<group>"; };
		C52AA4F05A0054DE5F88E065 /* EXPMatchers+beIdenticalTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beIdenticalTo.m"; path = "Expecta/Matchers/EXPMatchers+beIdenticalTo.m"; sourceTree = "<group>"; };
		C5A192E4AA42560C655ACBD7 /* libPods-Masonry iOS Examples-Masonry.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Masonry iOS Examples-Masonry.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		C768F01A9BC05E4E8132CE45 /* Pods-MasonryTestsLoader-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-MasonryTestsLoader-environment.h"; sourceTree = "<group>"; };
		C8CFF39F4F23184580C72135 /* EXPMatchers+beLessThan.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beLessThan.h"; path = "Expecta/Matchers/EXPMatchers+beLessThan.h"; sourceTree = "<group>"; };
		CA5C2B40184A6CE48B77F034 /* EXPMatchers+beCloseTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beCloseTo.m"; path = "Expecta/Matchers/EXPMatchers+beCloseTo.m"; sourceTree = "<group>"; };
		CA8404896759C41F4CB17330 /* Pods-Masonry iOS Examples-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Masonry iOS Examples-environment.h"; sourceTree = "<group>"; };
		CAF4AB4A573EE399A6D32C2A /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MASConstraint.m; sourceTree = "<group>"; };
		CF264A7228466192D589DC5C /* Pods-Masonry iOS Examples.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Masonry iOS Examples.debug.xcconfig"; sourceTree = "<group>"; };
		D264D7C760647E00E085C5E3 /* EXPMatcherHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPMatcherHelpers.m; path = Expecta/Matchers/EXPMatcherHelpers.m; sourceTree = "<group>"; };
		D297522157C1DC296CC602FA /* EXPMatchers+beGreaterThanOrEqualTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beGreaterThanOrEqualTo.m"; path = "Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m"; sourceTree = "<group>"; };
		D336E58D75C7E5CF42884EAC /* ExpectaSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ExpectaSupport.m; path = Expecta/ExpectaSupport.m; sourceTree = "<group>"; };
		D4FE36A9E53FC9D1E0F2822F /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
		D71D223CA522539703C624B7 /* EXPFloatTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPFloatTuple.h; path = Expecta/EXPFloatTuple.h; sourceTree = "<group>"; };
		DC6CE6CD20CD95E8D05BD7A3 /* EXPMatchers+beSupersetOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beSupersetOf.m"; path = "Expecta/Matchers/EXPMatchers+beSupersetOf.m"; sourceTree = "<group>"; };
		DE83472332399026B9040A3C /* libPods-Masonry iOS Examples.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Masonry iOS Examples.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		E2B8CABC41360CAE34D55E6E /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
		E48021D7998F95253DD0CA01 /* EXPMatchers+beFalsy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beFalsy.h"; path = "Expecta/Matchers/EXPMatchers+beFalsy.h"; sourceTree = "<group>"; };
		E4B3FB865C3AD03C7548D84D /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MASConstraint.h; sourceTree = "<group>"; };
		E5063D3B4D9C3BC7C71D3A00 /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "View+MASAdditions.m"; sourceTree = "<group>"; };
		E6C7C222A93AE9C40922DF6E /* Pods-MasonryTestsLoader-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-MasonryTestsLoader-acknowledgements.plist"; sourceTree = "<group>"; };
		EA6B2FF35A16B29BFB1CBB08 /* Pods-Masonry iOS Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Masonry iOS Tests-resources.sh"; sourceTree = "<group>"; };
		EAF7C06B26F7C85996DBCB52 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MASLayoutConstraint.m; sourceTree = "<group>"; };
		EB17AFE5CD508D0536600F94 /* EXPMatchers+beLessThanOrEqualTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beLessThanOrEqualTo.h"; path = "Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h"; sourceTree = "<group>"; };
		EB459B5D34D030173758DF43 /* EXPMatchers+beCloseTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beCloseTo.h"; path = "Expecta/Matchers/EXPMatchers+beCloseTo.h"; sourceTree = "<group>"; };
		EB5EDC0B73314527DF299DB2 /* libPods-MasonryTestsLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MasonryTestsLoader.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		ED3A6352036BFB49ED162CAD /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MASConstraintMaker.h; sourceTree = "<group>"; };
		ED3D6A78B6EFF2F08F517075 /* EXPMatchers+beSubclassOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beSubclassOf.m"; path = "Expecta/Matchers/EXPMatchers+beSubclassOf.m"; sourceTree = "<group>"; };
		EE6133699315A6979DEAF2ED /* Pods-Masonry iOS Tests-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Masonry iOS Tests-environment.h"; sourceTree = "<group>"; };
		F2C94DCF3AD40F8B538A1246 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MASCompositeConstraint.h; sourceTree = "<group>"; };
		F5A5F4DD2BA29DB3BB7FC4A7 /* Pods-Masonry iOS Examples-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Masonry iOS Examples-resources.sh"; sourceTree = "<group>"; };
		F73C782C376DD43DDDE8C5D5 /* EXPMatchers+beInTheRangeOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beInTheRangeOf.h"; path = "Expecta/Matchers/EXPMatchers+beInTheRangeOf.h"; sourceTree = "<group>"; };
		F7A849D26AF02CAFC6BB166C /* EXPMatchers+conformTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+conformTo.m"; path = "Expecta/Matchers/EXPMatchers+conformTo.m"; sourceTree = "<group>"; };
		F7DFBE5B66DB524FC3FD6CD8 /* Pods-Masonry iOS Examples-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Masonry iOS Examples-acknowledgements.plist"; sourceTree = "<group>"; };
		F958FE7A78DC968A68BD2052 /* EXPMatchers+beLessThan.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beLessThan.m"; path = "Expecta/Matchers/EXPMatchers+beLessThan.m"; sourceTree = "<group>"; };
		FB0F91F25E0B3298692DB0C1 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
		FB76F2255A05DA3C6231CF13 /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MASConstraintMaker.m; sourceTree = "<group>"; };
		FD0DD8D88972AF9F70AC7BB8 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MASCompositeConstraint.m; sourceTree = "<group>"; };
		FEB30837ADCE88E58B42D0CF /* EXPMatchers+beNil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beNil.m"; path = "Expecta/Matchers/EXPMatchers+beNil.m"; sourceTree = "<group>"; };
		FF53673C5F27EAAAAE6A5CFA /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MASUtilities.h; sourceTree = "<group>"; };
		FFA85DD5B5A9C7591E5ED225 /* Pods-MasonryTestsLoader-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-MasonryTestsLoader-resources.sh"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		2AF6E1AB95E1E9D0679F5FFF /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				9C2648FA88F86B2C8FB0607C /* Foundation.framework in Frameworks */,
				4E30AC55949C10155EEE2568 /* UIKit.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		7F57D040433AF7B7D0DC3D72 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				5EBF6AFF3596D4D5934DFB8E /* Foundation.framework in Frameworks */,
				5478CA6CC028899A7BF8B2A4 /* XCTest.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		956ED3363BBE6CD190FDE991 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D290FE974C73BF150127E8B6 /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B30CE199F2281CE1295A4A0F /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2492218D203078B5E8A11639 /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5EC22DE16D476CCD273D9B8 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				5297CB30AF8CDC10550A59C7 /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		CC7C9949B20FDC3EAF0505E3 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				02F644AE4A1F1DA210A76600 /* Foundation.framework in Frameworks */,
				9304EC754316344F664B2C7A /* UIKit.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		0381436B26AAFF95A06428DA /* Support Files */ = {
			isa = PBXGroup;
			children = (
				83D5CDBCEF45C6A06352A31F /* Pods-Masonry iOS Tests-Expecta.xcconfig */,
				051C2518E08F3334D26D7085 /* Pods-Masonry iOS Tests-Expecta-Private.xcconfig */,
				A050971A2440A4244F9FBEFF /* Pods-Masonry iOS Tests-Expecta-dummy.m */,
				7227E6971C978030E37230EC /* Pods-Masonry iOS Tests-Expecta-prefix.pch */,
			);
			name = "Support Files";
			path = "../Target Support Files/Pods-Masonry iOS Tests-Expecta";
			sourceTree = "<group>";
		};
		0D571ED2157070FC9E952E8D /* Support Files */ = {
			isa = PBXGroup;
			children = (
				2BADFA39C53634B7408D8AD2 /* Pods-Masonry iOS Examples-Masonry.xcconfig */,
				26B470853F2DBD17C40EE576 /* Pods-Masonry iOS Examples-Masonry-Private.xcconfig */,
				3058B579B56590F0C890FD42 /* Pods-Masonry iOS Examples-Masonry-dummy.m */,
				1A4C887472A3FC939C90F9A9 /* Pods-Masonry iOS Examples-Masonry-prefix.pch */,
				2C8E1B8DA0E006A888A4B200 /* Pods-MasonryTestsLoader-Masonry.xcconfig */,
				07A7A82BFFD78D4319CAB9B0 /* Pods-MasonryTestsLoader-Masonry-Private.xcconfig */,
				2CF798A4E38488E64E392990 /* Pods-MasonryTestsLoader-Masonry-dummy.m */,
				841B8518DF82A9F5D2915126 /* Pods-MasonryTestsLoader-Masonry-prefix.pch */,
			);
			name = "Support Files";
			path = "Pods/Target Support Files/Pods-Masonry iOS Examples-Masonry";
			sourceTree = "<group>";
		};
		1AB5C1E22CCA59A717A6DE61 /* iOS */ = {
			isa = PBXGroup;
			children = (
				B68285C86EF90EEAE2CCCAA8 /* Foundation.framework */,
				A7F054524ED88030A3B65E57 /* UIKit.framework */,
				3FD696C7E2B36831DB9C0DC1 /* XCTest.framework */,
			);
			name = iOS;
			sourceTree = "<group>";
		};
		1C102AF16FB45B13369D8291 /* Pods-Masonry iOS Examples */ = {
			isa = PBXGroup;
			children = (
				166D2E2A332D45B8C63D3109 /* Pods-Masonry iOS Examples-acknowledgements.markdown */,
				F7DFBE5B66DB524FC3FD6CD8 /* Pods-Masonry iOS Examples-acknowledgements.plist */,
				AE7BFD517087021D512A080D /* Pods-Masonry iOS Examples-dummy.m */,
				CA8404896759C41F4CB17330 /* Pods-Masonry iOS Examples-environment.h */,
				F5A5F4DD2BA29DB3BB7FC4A7 /* Pods-Masonry iOS Examples-resources.sh */,
				CF264A7228466192D589DC5C /* Pods-Masonry iOS Examples.debug.xcconfig */,
				14E2971D2E70CE7D8A79471C /* Pods-Masonry iOS Examples.release.xcconfig */,
			);
			name = "Pods-Masonry iOS Examples";
			path = "Target Support Files/Pods-Masonry iOS Examples";
			sourceTree = "<group>";
		};
		1E424D9461520F54A95BBE7A /* Pods-MasonryTestsLoader */ = {
			isa = PBXGroup;
			children = (
				889A935DED408579F264EE4E /* Pods-MasonryTestsLoader-acknowledgements.markdown */,
				E6C7C222A93AE9C40922DF6E /* Pods-MasonryTestsLoader-acknowledgements.plist */,
				17C8230715E980FD66DC1EE4 /* Pods-MasonryTestsLoader-dummy.m */,
				C768F01A9BC05E4E8132CE45 /* Pods-MasonryTestsLoader-environment.h */,
				FFA85DD5B5A9C7591E5ED225 /* Pods-MasonryTestsLoader-resources.sh */,
				6E52FFF17E3E4A453B1396E1 /* Pods-MasonryTestsLoader.debug.xcconfig */,
				21B5402D59B74B19CCFDC491 /* Pods-MasonryTestsLoader.release.xcconfig */,
			);
			name = "Pods-MasonryTestsLoader";
			path = "Target Support Files/Pods-MasonryTestsLoader";
			sourceTree = "<group>";
		};
		4645C9F810E9C589713F4E34 /* Development Pods */ = {
			isa = PBXGroup;
			children = (
				D92C53F673B94E2EB55540D8 /* Masonry */,
			);
			name = "Development Pods";
			sourceTree = "<group>";
		};
		504E709EAEA3C2195A3E8FF2 /* Pods */ = {
			isa = PBXGroup;
			children = (
				B3CC71C10D5CA1791144E7EB /* Expecta */,
			);
			name = Pods;
			sourceTree = "<group>";
		};
		55B7FD92CA7F9A83D2D57D6A /* Targets Support Files */ = {
			isa = PBXGroup;
			children = (
				1C102AF16FB45B13369D8291 /* Pods-Masonry iOS Examples */,
				DA0B7D8782B3831E6BA86304 /* Pods-Masonry iOS Tests */,
				1E424D9461520F54A95BBE7A /* Pods-MasonryTestsLoader */,
			);
			name = "Targets Support Files";
			sourceTree = "<group>";
		};
		7682F82AB78DB68A5BDCD0E7 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				1AB5C1E22CCA59A717A6DE61 /* iOS */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		90038432CE4EBA3258079732 /* Masonry */ = {
			isa = PBXGroup;
			children = (
				F2C94DCF3AD40F8B538A1246 /* MASCompositeConstraint.h */,
				FD0DD8D88972AF9F70AC7BB8 /* MASCompositeConstraint.m */,
				E4B3FB865C3AD03C7548D84D /* MASConstraint.h */,
				CAF4AB4A573EE399A6D32C2A /* MASConstraint.m */,
				9486D1800768A0EDE1CCF029 /* MASConstraint+Private.h */,
				ED3A6352036BFB49ED162CAD /* MASConstraintMaker.h */,
				FB76F2255A05DA3C6231CF13 /* MASConstraintMaker.m */,
				264C65E5197E10217DD8ED1F /* MASLayoutConstraint.h */,
				EAF7C06B26F7C85996DBCB52 /* MASLayoutConstraint.m */,
				FF53673C5F27EAAAAE6A5CFA /* MASUtilities.h */,
				19BCC75C44542F7CEABBF003 /* MASViewAttribute.h */,
				4852B11E0A97D0B514D52C56 /* MASViewAttribute.m */,
				1D3534D8FD53942413F475F2 /* MASViewConstraint.h */,
				5A0515CB9BA8E498ED05FC88 /* MASViewConstraint.m */,
				88F76D402514F759603B60FE /* Masonry.h */,
				774AF5E88EB60D96F23E2FF8 /* NSArray+MASAdditions.h */,
				3AC527CAC0BAA2D6E46FB570 /* NSArray+MASAdditions.m */,
				A397516C25B050CAE35656E7 /* NSArray+MASShorthandAdditions.h */,
				D4FE36A9E53FC9D1E0F2822F /* NSLayoutConstraint+MASDebugAdditions.h */,
				8B1987AB6F5059EB63E7AB0D /* NSLayoutConstraint+MASDebugAdditions.m */,
				38B2C08757CBC763C8020B55 /* View+MASAdditions.h */,
				E5063D3B4D9C3BC7C71D3A00 /* View+MASAdditions.m */,
				FB0F91F25E0B3298692DB0C1 /* View+MASShorthandAdditions.h */,
				6CA87F1AE827D198AC91DBCB /* ViewController+MASAdditions.h */,
				8AB63E279AF4764EC3C23B28 /* ViewController+MASAdditions.m */,
			);
			path = Masonry;
			sourceTree = "<group>";
		};
		B3CC71C10D5CA1791144E7EB /* Expecta */ = {
			isa = PBXGroup;
			children = (
				A25C7D57AB43488E848698D8 /* EXPBlockDefinedMatcher.h */,
				B0891D6888654BFE7187A8D2 /* EXPBlockDefinedMatcher.m */,
				2E0EEFBF70FAF822157388E2 /* EXPDefines.h */,
				58AF5C04B3F124A3CDBD4761 /* EXPDoubleTuple.h */,
				3254A1042B50DBD3B2BF119F /* EXPDoubleTuple.m */,
				15192F5DBCABF5C5DB1B641F /* EXPExpect.h */,
				8D42288B829F00D2FFD3EFA6 /* EXPExpect.m */,
				D71D223CA522539703C624B7 /* EXPFloatTuple.h */,
				47028905B1496A2D70A45F81 /* EXPFloatTuple.m */,
				97C2967A2DBAE1B0158F1B2F /* EXPMatcher.h */,
				A5454307AEF27160F9616F35 /* EXPMatcherHelpers.h */,
				D264D7C760647E00E085C5E3 /* EXPMatcherHelpers.m */,
				9E43B576435829276C885914 /* EXPMatchers.h */,
				EB459B5D34D030173758DF43 /* EXPMatchers+beCloseTo.h */,
				CA5C2B40184A6CE48B77F034 /* EXPMatchers+beCloseTo.m */,
				E48021D7998F95253DD0CA01 /* EXPMatchers+beFalsy.h */,
				18743EBB4B3906DC4C68CF68 /* EXPMatchers+beFalsy.m */,
				29E992F2D0398067483545CA /* EXPMatchers+beGreaterThan.h */,
				5DEFD14EA168A173146A853B /* EXPMatchers+beGreaterThan.m */,
				8CE0C28CC734CD17287CFA66 /* EXPMatchers+beGreaterThanOrEqualTo.h */,
				D297522157C1DC296CC602FA /* EXPMatchers+beGreaterThanOrEqualTo.m */,
				640836119626B9D884379853 /* EXPMatchers+beIdenticalTo.h */,
				C52AA4F05A0054DE5F88E065 /* EXPMatchers+beIdenticalTo.m */,
				F73C782C376DD43DDDE8C5D5 /* EXPMatchers+beInTheRangeOf.h */,
				00B007A4BA109771E02FD1AB /* EXPMatchers+beInTheRangeOf.m */,
				43C097CA49DAFF4E7330D5F3 /* EXPMatchers+beInstanceOf.h */,
				6D0E4001A237C9109E22D45A /* EXPMatchers+beInstanceOf.m */,
				1FE95CF7AE6D860826E250A7 /* EXPMatchers+beKindOf.h */,
				297E7DAFA32D90A72C08F222 /* EXPMatchers+beKindOf.m */,
				C8CFF39F4F23184580C72135 /* EXPMatchers+beLessThan.h */,
				F958FE7A78DC968A68BD2052 /* EXPMatchers+beLessThan.m */,
				EB17AFE5CD508D0536600F94 /* EXPMatchers+beLessThanOrEqualTo.h */,
				713B5F64E856A5CC49C97974 /* EXPMatchers+beLessThanOrEqualTo.m */,
				B22FA2E1A36F0D76EF0B91B0 /* EXPMatchers+beNil.h */,
				FEB30837ADCE88E58B42D0CF /* EXPMatchers+beNil.m */,
				1EC96A232B780FB093EEBBED /* EXPMatchers+beSubclassOf.h */,
				ED3D6A78B6EFF2F08F517075 /* EXPMatchers+beSubclassOf.m */,
				631891B971E0AFC2BB896699 /* EXPMatchers+beSupersetOf.h */,
				DC6CE6CD20CD95E8D05BD7A3 /* EXPMatchers+beSupersetOf.m */,
				9ECD1A2FB0CBDBC9DC488DE0 /* EXPMatchers+beTruthy.h */,
				2AE497AFB9475FD25767A07A /* EXPMatchers+beTruthy.m */,
				74B93EFB6D72AF9C558D8665 /* EXPMatchers+beginWith.h */,
				400D7551278767CAE24BD9D9 /* EXPMatchers+beginWith.m */,
				863B0A6B0B352A8DE6A41DA7 /* EXPMatchers+conformTo.h */,
				F7A849D26AF02CAFC6BB166C /* EXPMatchers+conformTo.m */,
				24CBAE29D8199AA9AB8E3855 /* EXPMatchers+contain.h */,
				B53EF7274BCBC6003BE89772 /* EXPMatchers+contain.m */,
				3B113BE09FD5ABC26A253BD5 /* EXPMatchers+endWith.h */,
				78A20E8A13D5B2940498E3FF /* EXPMatchers+endWith.m */,
				AB295E506E014DEAEB5DE736 /* EXPMatchers+equal.h */,
				A45D691FDEEFB089FA2F053A /* EXPMatchers+equal.m */,
				761447D940B654D298D26952 /* EXPMatchers+haveCountOf.h */,
				48B279251F455CB10DDE1E77 /* EXPMatchers+haveCountOf.m */,
				B12AE9AA15FB9E47949169AB /* EXPMatchers+match.h */,
				5735F3AC3FD9FB7C7CD573D9 /* EXPMatchers+match.m */,
				3BCED18BB580FC5A9691E108 /* EXPMatchers+postNotification.h */,
				7A5346CBE79A558D0ADECC86 /* EXPMatchers+postNotification.m */,
				4B8D6D37A3B612DC15E39FB3 /* EXPMatchers+raise.h */,
				B04735965FDCC092956E1874 /* EXPMatchers+raise.m */,
				78BF07FBA3C5C8B0EF599A06 /* EXPMatchers+raiseWithReason.h */,
				AA37379A0FBF6A1AAED94CE1 /* EXPMatchers+raiseWithReason.m */,
				6D153D6C17F6C007428430D3 /* EXPMatchers+respondTo.h */,
				02F5E7AB6111D003674965E1 /* EXPMatchers+respondTo.m */,
				2B4D954937DC2A27A4C34ED9 /* EXPUnsupportedObject.h */,
				255573F7BA6883F508AFC016 /* EXPUnsupportedObject.m */,
				B8678B355B68061CA20E2CA2 /* Expecta.h */,
				655EB9AD15092DD3620691EC /* ExpectaObject.h */,
				1AA421B4D542CD9394851844 /* ExpectaObject.m */,
				4A14A55EBCB6CBDF6914C55A /* ExpectaSupport.h */,
				D336E58D75C7E5CF42884EAC /* ExpectaSupport.m */,
				A5414ED4FC0B9128F64C166B /* NSObject+Expecta.h */,
				3C213AC0F652B3B8715CF1FC /* NSValue+Expecta.h */,
				3899636CE8CCC0A15552B8F7 /* NSValue+Expecta.m */,
				0381436B26AAFF95A06428DA /* Support Files */,
			);
			path = Expecta;
			sourceTree = "<group>";
		};
		B50FB24875460B6080D881E6 /* Products */ = {
			isa = PBXGroup;
			children = (
				DE83472332399026B9040A3C /* libPods-Masonry iOS Examples.a */,
				C5A192E4AA42560C655ACBD7 /* libPods-Masonry iOS Examples-Masonry.a */,
				79C5AA9B140BC63588753F9F /* libPods-Masonry iOS Tests.a */,
				7294AB8E98F0E6BF4A723170 /* libPods-Masonry iOS Tests-Expecta.a */,
				EB5EDC0B73314527DF299DB2 /* libPods-MasonryTestsLoader.a */,
				9D78FAF69F5F97F456E450DE /* libPods-MasonryTestsLoader-Masonry.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		D92C53F673B94E2EB55540D8 /* Masonry */ = {
			isa = PBXGroup;
			children = (
				90038432CE4EBA3258079732 /* Masonry */,
				0D571ED2157070FC9E952E8D /* Support Files */,
			);
			name = Masonry;
			path = ..;
			sourceTree = "<group>";
		};
		DA0B7D8782B3831E6BA86304 /* Pods-Masonry iOS Tests */ = {
			isa = PBXGroup;
			children = (
				002D26513105C499FB3BAE6F /* Pods-Masonry iOS Tests-acknowledgements.markdown */,
				0CEBA557793B834B1F9779B6 /* Pods-Masonry iOS Tests-acknowledgements.plist */,
				4A5E901BFE0A63F61E00F31B /* Pods-Masonry iOS Tests-dummy.m */,
				EE6133699315A6979DEAF2ED /* Pods-Masonry iOS Tests-environment.h */,
				EA6B2FF35A16B29BFB1CBB08 /* Pods-Masonry iOS Tests-resources.sh */,
				59E6A7857125C864062CAAB2 /* Pods-Masonry iOS Tests.debug.xcconfig */,
				476395AFEB2E68FCCAF63B41 /* Pods-Masonry iOS Tests.release.xcconfig */,
			);
			name = "Pods-Masonry iOS Tests";
			path = "Target Support Files/Pods-Masonry iOS Tests";
			sourceTree = "<group>";
		};
		E21A3DC41F315B8F11C48DB6 = {
			isa = PBXGroup;
			children = (
				E2B8CABC41360CAE34D55E6E /* Podfile */,
				4645C9F810E9C589713F4E34 /* Development Pods */,
				7682F82AB78DB68A5BDCD0E7 /* Frameworks */,
				504E709EAEA3C2195A3E8FF2 /* Pods */,
				B50FB24875460B6080D881E6 /* Products */,
				55B7FD92CA7F9A83D2D57D6A /* Targets Support Files */,
			);
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		135407FD73B5109B6A9AABF7 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				3A61148E9AE49BC50C28899F /* EXPBlockDefinedMatcher.h in Headers */,
				5FFFB1C1B2D229D593A942F7 /* EXPDefines.h in Headers */,
				4EFF7C9AB26363BA3CDC9506 /* EXPDoubleTuple.h in Headers */,
				E99A0B8DB144F981A9A004BB /* EXPExpect.h in Headers */,
				CEEBD8C5C3F44ABC724938AF /* EXPFloatTuple.h in Headers */,
				9FB4D98A6F2300486C352584 /* EXPMatcher.h in Headers */,
				4126D25976811D5AA814AC78 /* EXPMatcherHelpers.h in Headers */,
				240901ADC011ED47174577A0 /* EXPMatchers+beCloseTo.h in Headers */,
				8BF6E2C6235DE50859F316F0 /* EXPMatchers+beFalsy.h in Headers */,
				B59AE90FD160697C683FFAD0 /* EXPMatchers+beGreaterThan.h in Headers */,
				DBC94B42D56201A64D06C7AA /* EXPMatchers+beGreaterThanOrEqualTo.h in Headers */,
				3F7176F7A46D568632BAB44A /* EXPMatchers+beIdenticalTo.h in Headers */,
				39F1205772FA7031CEE293A9 /* EXPMatchers+beInTheRangeOf.h in Headers */,
				C8091C1EC0B383030957016F /* EXPMatchers+beInstanceOf.h in Headers */,
				95ABA6BEDE6F8C16C6A7C560 /* EXPMatchers+beKindOf.h in Headers */,
				55B6490CA293C4EA15C84ADA /* EXPMatchers+beLessThan.h in Headers */,
				D22C1D9B0C4D2705A0A312C5 /* EXPMatchers+beLessThanOrEqualTo.h in Headers */,
				76C9A7129C563C84771E3CB4 /* EXPMatchers+beNil.h in Headers */,
				F9B367883735C115D738DF32 /* EXPMatchers+beSubclassOf.h in Headers */,
				FBBCC85FDEE44BE06801F184 /* EXPMatchers+beSupersetOf.h in Headers */,
				728073836A80E69B329D9333 /* EXPMatchers+beTruthy.h in Headers */,
				FE35D71FF8E5C54F4449EF85 /* EXPMatchers+beginWith.h in Headers */,
				BBCDCAACFE9E1DD98E2D2528 /* EXPMatchers+conformTo.h in Headers */,
				7E72A59B430BEDBB5C4B8C44 /* EXPMatchers+contain.h in Headers */,
				56AD11B9042AD087366025E6 /* EXPMatchers+endWith.h in Headers */,
				CF0030941F7FC5AC0F6F8DCF /* EXPMatchers+equal.h in Headers */,
				536FB753272B98E739A348BD /* EXPMatchers+haveCountOf.h in Headers */,
				622EAD52DB26F027A11ABFD3 /* EXPMatchers+match.h in Headers */,
				B40BA01A2B1B40BD3165B7AC /* EXPMatchers+postNotification.h in Headers */,
				916D3F9C89CDAEE9FD20E195 /* EXPMatchers+raise.h in Headers */,
				DC39E68928A9E3BF9166B094 /* EXPMatchers+raiseWithReason.h in Headers */,
				4F3446F3CB09A05F0EC1D0D4 /* EXPMatchers+respondTo.h in Headers */,
				A26C2B81E381E1EB87448D1E /* EXPMatchers.h in Headers */,
				BF804E3E2D92D7476DE2C9D2 /* EXPUnsupportedObject.h in Headers */,
				D07D9D47DC42FA5432E29A72 /* Expecta.h in Headers */,
				64E41C1C0AC751B3819C81A2 /* ExpectaObject.h in Headers */,
				C85C85158E4EBE3A9BCCE91A /* ExpectaSupport.h in Headers */,
				FEC3658A2515BBE243A7674E /* NSObject+Expecta.h in Headers */,
				EF6A7B10C9AAA0AE6BF0DDA3 /* NSValue+Expecta.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		321BD6EF3C96BCD71A03ED4E /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D21B6FF384F05EC24A27C507 /* MASCompositeConstraint.h in Headers */,
				4F9B9E4DEA3491BC2B909D53 /* MASConstraint+Private.h in Headers */,
				57664A66F58670007FCABFCA /* MASConstraint.h in Headers */,
				C6F87F7E81F877A972E76D21 /* MASConstraintMaker.h in Headers */,
				88DB490AA818FC1BAA3B489F /* MASLayoutConstraint.h in Headers */,
				E0156B50E62E1E6099182457 /* MASUtilities.h in Headers */,
				EB1B15A66134ED662E8351AD /* MASViewAttribute.h in Headers */,
				4C7ED3730BB7BA806C3BA660 /* MASViewConstraint.h in Headers */,
				BC882C6C6DD4D1009D0A4CC0 /* Masonry.h in Headers */,
				EB1DD09D8D1409696C163B5F /* NSArray+MASAdditions.h in Headers */,
				E7041748678B425A995A9A96 /* NSArray+MASShorthandAdditions.h in Headers */,
				4FBCA8029BA013578B4DC357 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */,
				4FA2C1041C1535A34EF1DB21 /* View+MASAdditions.h in Headers */,
				31D0E884EC378EA5F98CDA61 /* View+MASShorthandAdditions.h in Headers */,
				D4D25C64CF816F54B2100FF5 /* ViewController+MASAdditions.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		F13DD47C7CB4DDB2901F6981 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				044623C0EFBA9B0DCB2354F8 /* MASCompositeConstraint.h in Headers */,
				8E169452A08ACAE22EDA8326 /* MASConstraint+Private.h in Headers */,
				689A2C2B7160FFC09573C0C5 /* MASConstraint.h in Headers */,
				E0C8C48B2FDD970EE5A18542 /* MASConstraintMaker.h in Headers */,
				138F91BA0154921CEEEFBB83 /* MASLayoutConstraint.h in Headers */,
				DD14C48B687D9C7C2A275CB9 /* MASUtilities.h in Headers */,
				3BAF1CDFC71D02B82AE2AC93 /* MASViewAttribute.h in Headers */,
				CD89AB41E5B6E2C606F94661 /* MASViewConstraint.h in Headers */,
				D0C0578D185ADA77E99FD404 /* Masonry.h in Headers */,
				4D5CBFA0F6D1BE81BE715859 /* NSArray+MASAdditions.h in Headers */,
				90815905AA2C28FAFFDB75B2 /* NSArray+MASShorthandAdditions.h in Headers */,
				E0370C20824977124857E13E /* NSLayoutConstraint+MASDebugAdditions.h in Headers */,
				F79E429379779F8CD9DCE6E7 /* View+MASAdditions.h in Headers */,
				698E299216C412113B0D9099 /* View+MASShorthandAdditions.h in Headers */,
				D63CBC3A67626F86466BE87B /* ViewController+MASAdditions.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		0192781566DC4A8535853D1D /* Pods-MasonryTestsLoader */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 9A078E67D4ED8AD015105F81 /* Build configuration list for PBXNativeTarget "Pods-MasonryTestsLoader" */;
			buildPhases = (
				D24D4AE6DE462F5FE2571215 /* Sources */,
				956ED3363BBE6CD190FDE991 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				B9805A0471211FF06A2E75CF /* PBXTargetDependency */,
			);
			name = "Pods-MasonryTestsLoader";
			productName = "Pods-MasonryTestsLoader";
			productReference = EB5EDC0B73314527DF299DB2 /* libPods-MasonryTestsLoader.a */;
			productType = "com.apple.product-type.library.static";
		};
		0E25EC6C44700B880E48590D /* Pods-Masonry iOS Tests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 0D722B0F516612B7B903154B /* Build configuration list for PBXNativeTarget "Pods-Masonry iOS Tests" */;
			buildPhases = (
				0B07098E37124B565E1A395E /* Sources */,
				B30CE199F2281CE1295A4A0F /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				D87DF6D39B746DE196126E11 /* PBXTargetDependency */,
			);
			name = "Pods-Masonry iOS Tests";
			productName = "Pods-Masonry iOS Tests";
			productReference = 79C5AA9B140BC63588753F9F /* libPods-Masonry iOS Tests.a */;
			productType = "com.apple.product-type.library.static";
		};
		7C779FF1ABDAF25168139DA1 /* Pods-MasonryTestsLoader-Masonry */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = DE69C17E50F4FEA2F7D04CB9 /* Build configuration list for PBXNativeTarget "Pods-MasonryTestsLoader-Masonry" */;
			buildPhases = (
				8BBF4D4C0203A8F912EC1F47 /* Sources */,
				2AF6E1AB95E1E9D0679F5FFF /* Frameworks */,
				321BD6EF3C96BCD71A03ED4E /* Headers */,
				203DAF56BC4351EC9BB586A6 /* Export Environment Vars */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "Pods-MasonryTestsLoader-Masonry";
			productName = "Pods-MasonryTestsLoader-Masonry";
			productReference = 9D78FAF69F5F97F456E450DE /* libPods-MasonryTestsLoader-Masonry.a */;
			productType = "com.apple.product-type.library.static";
		};
		7DF5619B8B071634BB0098B2 /* Pods-Masonry iOS Examples */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 9A31057CB5E5E2F898DC4A9B /* Build configuration list for PBXNativeTarget "Pods-Masonry iOS Examples" */;
			buildPhases = (
				C737FA37D5FE97D4876BA39A /* Sources */,
				B5EC22DE16D476CCD273D9B8 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				7A65F389D97690028AF85E05 /* PBXTargetDependency */,
			);
			name = "Pods-Masonry iOS Examples";
			productName = "Pods-Masonry iOS Examples";
			productReference = DE83472332399026B9040A3C /* libPods-Masonry iOS Examples.a */;
			productType = "com.apple.product-type.library.static";
		};
		CA8E6CA5AC9FC867A335BA08 /* Pods-Masonry iOS Tests-Expecta */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 68FE9988135BB520C4F59AB3 /* Build configuration list for PBXNativeTarget "Pods-Masonry iOS Tests-Expecta" */;
			buildPhases = (
				D6B37F4F61FC1717B0204889 /* Sources */,
				7F57D040433AF7B7D0DC3D72 /* Frameworks */,
				135407FD73B5109B6A9AABF7 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "Pods-Masonry iOS Tests-Expecta";
			productName = "Pods-Masonry iOS Tests-Expecta";
			productReference = 7294AB8E98F0E6BF4A723170 /* libPods-Masonry iOS Tests-Expecta.a */;
			productType = "com.apple.product-type.library.static";
		};
		E277628BD9774F96B09FE373 /* Pods-Masonry iOS Examples-Masonry */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 2BCFB488A3D0745BB623AC8D /* Build configuration list for PBXNativeTarget "Pods-Masonry iOS Examples-Masonry" */;
			buildPhases = (
				B8810E88A7ED2B4235CE2A3C /* Sources */,
				CC7C9949B20FDC3EAF0505E3 /* Frameworks */,
				F13DD47C7CB4DDB2901F6981 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "Pods-Masonry iOS Examples-Masonry";
			productName = "Pods-Masonry iOS Examples-Masonry";
			productReference = C5A192E4AA42560C655ACBD7 /* libPods-Masonry iOS Examples-Masonry.a */;
			productType = "com.apple.product-type.library.static";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		6586C0F29D9181D0C9E54B9E /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0640;
			};
			buildConfigurationList = 6856E01391B2ED3EEB073EF1 /* Build configuration list for PBXProject "Pods" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = E21A3DC41F315B8F11C48DB6;
			productRefGroup = B50FB24875460B6080D881E6 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				7DF5619B8B071634BB0098B2 /* Pods-Masonry iOS Examples */,
				E277628BD9774F96B09FE373 /* Pods-Masonry iOS Examples-Masonry */,
				0E25EC6C44700B880E48590D /* Pods-Masonry iOS Tests */,
				CA8E6CA5AC9FC867A335BA08 /* Pods-Masonry iOS Tests-Expecta */,
				0192781566DC4A8535853D1D /* Pods-MasonryTestsLoader */,
				7C779FF1ABDAF25168139DA1 /* Pods-MasonryTestsLoader-Masonry */,
			);
		};
/* End PBXProject section */

/* Begin PBXShellScriptBuildPhase section */
		203DAF56BC4351EC9BB586A6 /* Export Environment Vars */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Export Environment Vars";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "export | egrep '( BUILT_PRODUCTS_DIR)|(CURRENT_ARCH)|(OBJECT_FILE_DIR_normal)|(SRCROOT)|(OBJROOT)' > $SRCROOT/../script/env.sh";
			showEnvVarsInLog = 0;
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		0B07098E37124B565E1A395E /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1A94EC141166D8027F448217 /* Pods-Masonry iOS Tests-dummy.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		8BBF4D4C0203A8F912EC1F47 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				FC3B66371F006A7D3BCFB524 /* MASCompositeConstraint.m in Sources */,
				FE2125B83CC37C21A300A451 /* MASConstraint.m in Sources */,
				A91623ED24329B6E98F00553 /* MASConstraintMaker.m in Sources */,
				E8EE16DF0614C05C7D284CAD /* MASLayoutConstraint.m in Sources */,
				03A8D2EE7AD362B8EFC4F49E /* MASViewAttribute.m in Sources */,
				580DA3E7270D919DCEA41E5D /* MASViewConstraint.m in Sources */,
				BA01DC1B52ED609490668CF2 /* NSArray+MASAdditions.m in Sources */,
				14BF42870BEB85B273CB0D3F /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
				C4E33445F25CA4C9C6B55CCF /* Pods-MasonryTestsLoader-Masonry-dummy.m in Sources */,
				8C839D717A6E797F33FDF6DE /* View+MASAdditions.m in Sources */,
				C31B6FDCDAB3195D7A6AB051 /* ViewController+MASAdditions.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B8810E88A7ED2B4235CE2A3C /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1910EE2D9B732011433E585D /* MASCompositeConstraint.m in Sources */,
				BFAB4ED39FB834E3F7E599D1 /* MASConstraint.m in Sources */,
				904D0CF0801E18C5995430BA /* MASConstraintMaker.m in Sources */,
				BA39A6A641046ABF18ED561F /* MASLayoutConstraint.m in Sources */,
				5A3542B5C77771E6AF8F5804 /* MASViewAttribute.m in Sources */,
				30A54BE79A6661DC1361F623 /* MASViewConstraint.m in Sources */,
				94D960B9A90104E50575D503 /* NSArray+MASAdditions.m in Sources */,
				7D8167C8EF9EE17F953D74A4 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
				FC1ACC76810797BAB52423EC /* Pods-Masonry iOS Examples-Masonry-dummy.m in Sources */,
				A28BF9248BFDD9D76854EB7E /* View+MASAdditions.m in Sources */,
				3D01664471C4B510F7255DD6 /* ViewController+MASAdditions.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		C737FA37D5FE97D4876BA39A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D2819A860F6DDD69C6B87ACE /* Pods-Masonry iOS Examples-dummy.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D24D4AE6DE462F5FE2571215 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7BFE1D58752D4D605E8D00FF /* Pods-MasonryTestsLoader-dummy.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D6B37F4F61FC1717B0204889 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				0D207CDF3D1A41D89801DF8D /* EXPBlockDefinedMatcher.m in Sources */,
				A0A3804A65C2B10A7BBF3C19 /* EXPDoubleTuple.m in Sources */,
				AACE0DA71E0FB9C430159042 /* EXPExpect.m in Sources */,
				DD85A683CC70192EE37CB9A4 /* EXPFloatTuple.m in Sources */,
				E3570BA42DE394DD00D7F732 /* EXPMatcherHelpers.m in Sources */,
				B471E77C685943CAD36C8AEF /* EXPMatchers+beCloseTo.m in Sources */,
				F2554B537F1C2CE428E988D8 /* EXPMatchers+beFalsy.m in Sources */,
				DD2C07F044D49F51CE43AADB /* EXPMatchers+beGreaterThan.m in Sources */,
				2DF1B85405F3139F29489D7F /* EXPMatchers+beGreaterThanOrEqualTo.m in Sources */,
				AA3A948D0F76F64C0338617A /* EXPMatchers+beIdenticalTo.m in Sources */,
				BE4D684E405BA3D857E43B03 /* EXPMatchers+beInTheRangeOf.m in Sources */,
				DABA7ACAAA6F48F209B8C010 /* EXPMatchers+beInstanceOf.m in Sources */,
				4C188A465DC664DD43C004B4 /* EXPMatchers+beKindOf.m in Sources */,
				75BF62B575CFF942AC355B3B /* EXPMatchers+beLessThan.m in Sources */,
				02F8DF57772467E4068F9B14 /* EXPMatchers+beLessThanOrEqualTo.m in Sources */,
				7F93A16A4D06EA0D255A2D1C /* EXPMatchers+beNil.m in Sources */,
				0652C35A54FA67EEF5EA0C3A /* EXPMatchers+beSubclassOf.m in Sources */,
				61E9825EE7E8225A91E763DF /* EXPMatchers+beSupersetOf.m in Sources */,
				5A30D552B086FB03253D957C /* EXPMatchers+beTruthy.m in Sources */,
				655C95F65A8F7C66E79D011E /* EXPMatchers+beginWith.m in Sources */,
				038B768B868AF65B816904C1 /* EXPMatchers+conformTo.m in Sources */,
				5505DDE20B6E9B7301735497 /* EXPMatchers+contain.m in Sources */,
				6C1CE5D492F0A09CC9946A3E /* EXPMatchers+endWith.m in Sources */,
				ABB4A841252B184FFDA33BB3 /* EXPMatchers+equal.m in Sources */,
				A926E958D9BD3C618E3A44B0 /* EXPMatchers+haveCountOf.m in Sources */,
				D6F84883B2D307963F676974 /* EXPMatchers+match.m in Sources */,
				10739F0C653A20D67C0E4D21 /* EXPMatchers+postNotification.m in Sources */,
				F801C9D4B75FCB8F01FF0B97 /* EXPMatchers+raise.m in Sources */,
				467A065E3E4FBF9CCAEFEF4B /* EXPMatchers+raiseWithReason.m in Sources */,
				2D6CA875955F4BBE0A5D122A /* EXPMatchers+respondTo.m in Sources */,
				5A8FDAF6181F4FE8B39F22B0 /* EXPUnsupportedObject.m in Sources */,
				F5E2188072CEB8142EAE4AAE /* ExpectaObject.m in Sources */,
				1A2218E9DB21D6CA5445A764 /* ExpectaSupport.m in Sources */,
				6742BF4B500E5E40997450B0 /* NSValue+Expecta.m in Sources */,
				F2F94C54EFFEED61DE91F88F /* Pods-Masonry iOS Tests-Expecta-dummy.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		7A65F389D97690028AF85E05 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "Pods-Masonry iOS Examples-Masonry";
			target = E277628BD9774F96B09FE373 /* Pods-Masonry iOS Examples-Masonry */;
			targetProxy = 67D7D19AF53EE83BFC7C593D /* PBXContainerItemProxy */;
		};
		B9805A0471211FF06A2E75CF /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "Pods-MasonryTestsLoader-Masonry";
			target = 7C779FF1ABDAF25168139DA1 /* Pods-MasonryTestsLoader-Masonry */;
			targetProxy = 740D8CD6F9D20C68B56C21AE /* PBXContainerItemProxy */;
		};
		D87DF6D39B746DE196126E11 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "Pods-Masonry iOS Tests-Expecta";
			target = CA8E6CA5AC9FC867A335BA08 /* Pods-Masonry iOS Tests-Expecta */;
			targetProxy = A00FA6673ADC47EA2B66D5F5 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		057AC37510B1F283985E5B9A /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 59E6A7857125C864062CAAB2 /* Pods-Masonry iOS Tests.debug.xcconfig */;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
		1004B5CB3E5ECCAC8485404A /* 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;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				ONLY_ACTIVE_ARCH = YES;
				STRIP_INSTALLED_PRODUCT = NO;
				SYMROOT = "${SRCROOT}/../build";
			};
			name = Debug;
		};
		128BBF69F9A153F87EC792E4 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 21B5402D59B74B19CCFDC491 /* Pods-MasonryTestsLoader.release.xcconfig */;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
		1778D880E8F2815C032D5E30 /* 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;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = YES;
				ENABLE_NS_ASSERTIONS = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1";
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				STRIP_INSTALLED_PRODUCT = NO;
				SYMROOT = "${SRCROOT}/../build";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		2EF8F671335142E067954A96 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 6E52FFF17E3E4A453B1396E1 /* Pods-MasonryTestsLoader.debug.xcconfig */;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
		43F7BE096B15FE9CD8D96E43 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 07A7A82BFFD78D4319CAB9B0 /* Pods-MasonryTestsLoader-Masonry-Private.xcconfig */;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_GENERATE_TEST_COVERAGE_FILES = YES;
				GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/Pods-MasonryTestsLoader-Masonry/Pods-MasonryTestsLoader-Masonry-prefix.pch";
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
		5A0250A9282F9B7879A08907 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 051C2518E08F3334D26D7085 /* Pods-Masonry iOS Tests-Expecta-Private.xcconfig */;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_PREFIX_HEADER = "Target Support Files/Pods-Masonry iOS Tests-Expecta/Pods-Masonry iOS Tests-Expecta-prefix.pch";
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
		61F105E5E43C93A1D8F38BD2 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 051C2518E08F3334D26D7085 /* Pods-Masonry iOS Tests-Expecta-Private.xcconfig */;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_PREFIX_HEADER = "Target Support Files/Pods-Masonry iOS Tests-Expecta/Pods-Masonry iOS Tests-Expecta-prefix.pch";
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
		64270BA4DE5F14C5023C00A1 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 26B470853F2DBD17C40EE576 /* Pods-Masonry iOS Examples-Masonry-Private.xcconfig */;
			buildSettings = {
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_PREFIX_HEADER = "Target Support Files/Pods-Masonry iOS Examples-Masonry/Pods-Masonry iOS Examples-Masonry-prefix.pch";
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
		6F93D60642E28C916E57531E /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 26B470853F2DBD17C40EE576 /* Pods-Masonry iOS Examples-Masonry-Private.xcconfig */;
			buildSettings = {
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_PREFIX_HEADER = "Target Support Files/Pods-Masonry iOS Examples-Masonry/Pods-Masonry iOS Examples-Masonry-prefix.pch";
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
		9E39AF689C9EE37C99936B60 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = CF264A7228466192D589DC5C /* Pods-Masonry iOS Examples.debug.xcconfig */;
			buildSettings = {
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
		CAA200AA4AE750DDB5BFB1F6 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 476395AFEB2E68FCCAF63B41 /* Pods-Masonry iOS Tests.release.xcconfig */;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
		E2037BBEB64046F0A4CFE40A /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 14E2971D2E70CE7D8A79471C /* Pods-Masonry iOS Examples.release.xcconfig */;
			buildSettings = {
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
		EE06C6A1AC0B5823C85BE01C /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 07A7A82BFFD78D4319CAB9B0 /* Pods-MasonryTestsLoader-Masonry-Private.xcconfig */;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_GENERATE_TEST_COVERAGE_FILES = YES;
				GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/Pods-MasonryTestsLoader-Masonry/Pods-MasonryTestsLoader-Masonry-prefix.pch";
				IPHONEOS_DEPLOYMENT_TARGET = 6.0;
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		0D722B0F516612B7B903154B /* Build configuration list for PBXNativeTarget "Pods-Masonry iOS Tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				057AC37510B1F283985E5B9A /* Debug */,
				CAA200AA4AE750DDB5BFB1F6 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		2BCFB488A3D0745BB623AC8D /* Build configuration list for PBXNativeTarget "Pods-Masonry iOS Examples-Masonry" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				64270BA4DE5F14C5023C00A1 /* Debug */,
				6F93D60642E28C916E57531E /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		6856E01391B2ED3EEB073EF1 /* Build configuration list for PBXProject "Pods" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1004B5CB3E5ECCAC8485404A /* Debug */,
				1778D880E8F2815C032D5E30 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		68FE9988135BB520C4F59AB3 /* Build configuration list for PBXNativeTarget "Pods-Masonry iOS Tests-Expecta" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				5A0250A9282F9B7879A08907 /* Debug */,
				61F105E5E43C93A1D8F38BD2 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		9A078E67D4ED8AD015105F81 /* Build configuration list for PBXNativeTarget "Pods-MasonryTestsLoader" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				2EF8F671335142E067954A96 /* Debug */,
				128BBF69F9A153F87EC792E4 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		9A31057CB5E5E2F898DC4A9B /* Build configuration list for PBXNativeTarget "Pods-Masonry iOS Examples" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				9E39AF689C9EE37C99936B60 /* Debug */,
				E2037BBEB64046F0A4CFE40A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		DE69C17E50F4FEA2F7D04CB9 /* Build configuration list for PBXNativeTarget "Pods-MasonryTestsLoader-Masonry" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				EE06C6A1AC0B5823C85BE01C /* Debug */,
				43F7BE096B15FE9CD8D96E43 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 6586C0F29D9181D0C9E54B9E /* Project object */;
}